frontend
BIN
about/__pycache__/__init__.cpython-310.pyc
Normal file
BIN
about/__pycache__/admin.cpython-310.pyc
Normal file
BIN
about/__pycache__/apps.cpython-310.pyc
Normal file
BIN
about/__pycache__/models.cpython-310.pyc
Normal file
3
about/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
6
about/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class AboutConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'about'
|
||||
29
about/migrations/0001_initial.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-07 14:49
|
||||
|
||||
import django.db.models.deletion
|
||||
import wagtail.fields
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
('wagtailcore', '0094_alter_page_locale'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='AboutPage',
|
||||
fields=[
|
||||
('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')),
|
||||
('about', wagtail.fields.RichTextField(blank=True)),
|
||||
('origin', wagtail.fields.RichTextField(blank=True)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
},
|
||||
bases=('wagtailcore.page',),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,44 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-08 18:02
|
||||
|
||||
import wagtail.fields
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('about', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='aboutpage',
|
||||
old_name='about',
|
||||
new_name='af1img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='aboutpage',
|
||||
old_name='origin',
|
||||
new_name='af1text',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='aboutpage',
|
||||
name='af1title',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='aboutpage',
|
||||
name='af2img',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='aboutpage',
|
||||
name='af2text',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='aboutpage',
|
||||
name='af2title',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,43 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-10 16:07
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('about', '0002_rename_about_aboutpage_af1img_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='aboutpage',
|
||||
old_name='af1img',
|
||||
new_name='section_one_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='aboutpage',
|
||||
old_name='af1text',
|
||||
new_name='section_one_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='aboutpage',
|
||||
old_name='af1title',
|
||||
new_name='section_one_title',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='aboutpage',
|
||||
old_name='af2img',
|
||||
new_name='section_two_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='aboutpage',
|
||||
old_name='af2text',
|
||||
new_name='section_two_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='aboutpage',
|
||||
old_name='af2title',
|
||||
new_name='section_two_title',
|
||||
),
|
||||
]
|
||||
BIN
about/migrations/__pycache__/0001_initial.cpython-310.pyc
Normal file
BIN
about/migrations/__pycache__/__init__.cpython-310.pyc
Normal file
32
about/models.py
Normal file
@@ -0,0 +1,32 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models
|
||||
|
||||
from wagtail.models import Page
|
||||
from wagtail.fields import RichTextField
|
||||
from wagtail.admin.panels import FieldPanel, MultiFieldPanel
|
||||
|
||||
class AboutPage(Page):
|
||||
|
||||
section_one_title = RichTextField(blank=True)
|
||||
section_one_text = RichTextField(blank=True)
|
||||
section_one_img = RichTextField(blank=True)
|
||||
|
||||
section_two_title = RichTextField(blank=True)
|
||||
section_two_text = RichTextField(blank=True)
|
||||
section_two_img = RichTextField(blank=True)
|
||||
|
||||
content_panels = Page.content_panels + [
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_one_title', classname="full"),
|
||||
FieldPanel('section_one_text', classname="full"),
|
||||
FieldPanel('section_one_img', classname="full"),
|
||||
], heading="Section One"),
|
||||
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_two_title', classname="full"),
|
||||
FieldPanel('section_two_text', classname="full"),
|
||||
FieldPanel('section_two_img', classname="full"),
|
||||
], heading="Section Two"),
|
||||
]
|
||||
|
||||
3
about/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
3
about/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
0
contact/__init__.py
Normal file
BIN
contact/__pycache__/__init__.cpython-310.pyc
Normal file
BIN
contact/__pycache__/admin.cpython-310.pyc
Normal file
BIN
contact/__pycache__/apps.cpython-310.pyc
Normal file
BIN
contact/__pycache__/models.cpython-310.pyc
Normal file
3
contact/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
6
contact/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ContactConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'contact'
|
||||
28
contact/migrations/0001_initial.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-06 19:06
|
||||
|
||||
import django.db.models.deletion
|
||||
import wagtail.fields
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
('wagtailcore', '0094_alter_page_locale'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ContactPage',
|
||||
fields=[
|
||||
('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')),
|
||||
('contact', wagtail.fields.RichTextField(blank=True)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
},
|
||||
bases=('wagtailcore.page',),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,31 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-07 14:11
|
||||
|
||||
import django.db.models.deletion
|
||||
import wagtail.fields
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('contact', '0001_initial'),
|
||||
('wagtailcore', '0094_alter_page_locale'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ContactContactpage',
|
||||
fields=[
|
||||
('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')),
|
||||
('letsconnect', wagtail.fields.RichTextField(blank=True)),
|
||||
('mailus', wagtail.fields.RichTextField(blank=True)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
},
|
||||
bases=('wagtailcore.page',),
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='ContactPage',
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-07 14:12
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('contact', '0002_contactcontactpage_delete_contactpage'),
|
||||
('wagtailcore', '0094_alter_page_locale'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameModel(
|
||||
old_name='ContactContactpage',
|
||||
new_name='Contactpage',
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,44 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-08 17:39
|
||||
|
||||
import wagtail.fields
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('contact', '0003_rename_contactcontactpage_contactpage'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='contactpage',
|
||||
old_name='letsconnect',
|
||||
new_name='cf1img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='contactpage',
|
||||
old_name='mailus',
|
||||
new_name='cf1text',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='contactpage',
|
||||
name='cf1title',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='contactpage',
|
||||
name='cf2img',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='contactpage',
|
||||
name='cf2text',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='contactpage',
|
||||
name='cf2title',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,50 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-09 22:40
|
||||
|
||||
import django.db.models.deletion
|
||||
import modelcluster.fields
|
||||
import wagtail.contrib.forms.models
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('contact', '0004_rename_letsconnect_contactpage_cf1img_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='contactpage',
|
||||
name='from_address',
|
||||
field=models.EmailField(blank=True, max_length=255, verbose_name='from address'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='contactpage',
|
||||
name='subject',
|
||||
field=models.CharField(blank=True, max_length=255, verbose_name='subject'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='contactpage',
|
||||
name='to_address',
|
||||
field=models.CharField(blank=True, help_text='Optional - form submissions will be emailed to these addresses. Separate multiple addresses by comma.', max_length=255, validators=[wagtail.contrib.forms.models.validate_to_address], verbose_name='to address'),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='FormField',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('sort_order', models.IntegerField(blank=True, editable=False, null=True)),
|
||||
('clean_name', models.CharField(blank=True, default='', help_text='Safe name of the form field, the label converted to ascii_snake_case', max_length=255, verbose_name='name')),
|
||||
('label', models.CharField(help_text='The label of the form field', max_length=255, verbose_name='label')),
|
||||
('field_type', models.CharField(choices=[('singleline', 'Single line text'), ('multiline', 'Multi-line text'), ('email', 'Email'), ('number', 'Number'), ('url', 'URL'), ('checkbox', 'Checkbox'), ('checkboxes', 'Checkboxes'), ('dropdown', 'Drop down'), ('multiselect', 'Multiple select'), ('radio', 'Radio buttons'), ('date', 'Date'), ('datetime', 'Date/time'), ('hidden', 'Hidden field')], max_length=16, verbose_name='field type')),
|
||||
('required', models.BooleanField(default=True, verbose_name='required')),
|
||||
('choices', models.TextField(blank=True, help_text='Comma or new line separated list of choices. Only applicable in checkboxes, radio and dropdown.', verbose_name='choices')),
|
||||
('default_value', models.TextField(blank=True, help_text='Default value. Comma or new line separated values supported for checkboxes.', verbose_name='default value')),
|
||||
('help_text', models.CharField(blank=True, max_length=255, verbose_name='help text')),
|
||||
('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='form_fields', to='contact.contactpage')),
|
||||
],
|
||||
options={
|
||||
'ordering': ['sort_order'],
|
||||
'abstract': False,
|
||||
},
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,43 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-10 16:36
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('contact', '0005_contactpage_from_address_contactpage_subject_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='contactpage',
|
||||
old_name='cf1img',
|
||||
new_name='section_one_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='contactpage',
|
||||
old_name='cf1text',
|
||||
new_name='section_one_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='contactpage',
|
||||
old_name='cf1title',
|
||||
new_name='section_one_title',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='contactpage',
|
||||
old_name='cf2img',
|
||||
new_name='section_two_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='contactpage',
|
||||
old_name='cf2text',
|
||||
new_name='section_two_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='contactpage',
|
||||
old_name='cf2title',
|
||||
new_name='section_two_title',
|
||||
),
|
||||
]
|
||||
0
contact/migrations/__init__.py
Normal file
BIN
contact/migrations/__pycache__/0001_initial.cpython-310.pyc
Normal file
BIN
contact/migrations/__pycache__/__init__.cpython-310.pyc
Normal file
52
contact/models.py
Normal file
@@ -0,0 +1,52 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models
|
||||
|
||||
from modelcluster.fields import ParentalKey
|
||||
|
||||
from wagtail.models import Page
|
||||
from wagtail.contrib.forms.models import AbstractEmailForm, AbstractFormField
|
||||
from wagtail.fields import RichTextField
|
||||
from wagtail.admin.panels import FieldPanel, FieldRowPanel,InlinePanel, MultiFieldPanel
|
||||
|
||||
|
||||
class FormField(AbstractFormField):
|
||||
page = ParentalKey(
|
||||
'ContactPage',
|
||||
on_delete = models.CASCADE,
|
||||
related_name= 'form_fields'
|
||||
)
|
||||
|
||||
class ContactPage(AbstractEmailForm):
|
||||
|
||||
section_one_title = RichTextField(blank=True)
|
||||
section_one_text = RichTextField(blank=True)
|
||||
section_one_img = RichTextField(blank=True)
|
||||
|
||||
section_two_title = RichTextField(blank=True)
|
||||
section_two_text = RichTextField(blank=True)
|
||||
section_two_img = RichTextField(blank=True)
|
||||
|
||||
content_panels = AbstractEmailForm.content_panels + [
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_one_title', classname="full"),
|
||||
FieldPanel('section_one_text', classname="full"),
|
||||
FieldPanel('section_one_img', classname="full"),
|
||||
], heading="Section One"),
|
||||
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_two_title', classname="full"),
|
||||
FieldPanel('section_two_text', classname="full"),
|
||||
FieldPanel('section_two_img', classname="full"),
|
||||
], heading="Section Two"),
|
||||
|
||||
InlinePanel('form_fields',label='Form Fields'),
|
||||
MultiFieldPanel([
|
||||
FieldRowPanel([
|
||||
FieldPanel('from_address', classname='saburly-input'),
|
||||
FieldPanel('to_address', classname='saburly-input'),
|
||||
]),
|
||||
FieldPanel('subject'),
|
||||
], heading = 'Email Settings'),
|
||||
]
|
||||
|
||||
3
contact/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
3
contact/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
BIN
db.sqlite3
@@ -0,0 +1,89 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-08 14:34
|
||||
|
||||
import wagtail.fields
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('home', '0003_homepage_body'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf1img',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf1text',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf1title',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf2img',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf2text',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf2title',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf3img',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf3text',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf3title',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf4img',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf4text',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='hf4title',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='introimg',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='introtext',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='homepage',
|
||||
name='introtitle',
|
||||
field=wagtail.fields.RichTextField(blank=True),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,92 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-10 16:31
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('home', '0004_homepage_hf1img_homepage_hf1text_homepage_hf1title_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf4img',
|
||||
new_name='section_five_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf4text',
|
||||
new_name='section_five_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf4title',
|
||||
new_name='section_five_title',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf3img',
|
||||
new_name='section_four_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf3text',
|
||||
new_name='section_four_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf3title',
|
||||
new_name='section_four_title',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='introimg',
|
||||
new_name='section_one_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='introtext',
|
||||
new_name='section_one_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='introtitle',
|
||||
new_name='section_one_title',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf2img',
|
||||
new_name='section_three_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf2text',
|
||||
new_name='section_three_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf2title',
|
||||
new_name='section_three_title',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf1img',
|
||||
new_name='section_two_img',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf1text',
|
||||
new_name='section_two_text',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='homepage',
|
||||
old_name='hf1title',
|
||||
new_name='section_two_title',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='homepage',
|
||||
name='body',
|
||||
),
|
||||
]
|
||||
@@ -4,12 +4,59 @@ from django.db import models
|
||||
|
||||
from wagtail.models import Page
|
||||
from wagtail.fields import RichTextField
|
||||
from wagtail.admin.panels import FieldPanel
|
||||
from wagtail.admin.panels import FieldPanel, MultiFieldPanel
|
||||
|
||||
|
||||
class HomePage(Page):
|
||||
body = RichTextField(blank=True)
|
||||
|
||||
section_one_title = RichTextField(blank=True)
|
||||
section_one_text = RichTextField(blank=True)
|
||||
section_one_img = RichTextField(blank=True)
|
||||
|
||||
section_two_title = RichTextField(blank=True)
|
||||
section_two_text = RichTextField(blank=True)
|
||||
section_two_img = RichTextField(blank=True)
|
||||
|
||||
section_three_title = RichTextField(blank=True)
|
||||
section_three_text = RichTextField(blank=True)
|
||||
section_three_img = RichTextField(blank=True)
|
||||
|
||||
section_four_title = RichTextField(blank=True)
|
||||
section_four_text = RichTextField(blank=True)
|
||||
section_four_img = RichTextField(blank=True)
|
||||
|
||||
section_five_title = RichTextField(blank=True)
|
||||
section_five_text = RichTextField(blank=True)
|
||||
section_five_img = RichTextField(blank=True)
|
||||
|
||||
content_panels = Page.content_panels + [
|
||||
FieldPanel('body', classname="full")
|
||||
]
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_one_title', classname="full"),
|
||||
FieldPanel('section_one_text', classname="full"),
|
||||
FieldPanel('section_one_img', classname="full"),
|
||||
], heading="Section One"),
|
||||
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_two_title', classname="full"),
|
||||
FieldPanel('section_two_text', classname="full"),
|
||||
FieldPanel('section_two_img', classname="full"),
|
||||
], heading="Section Two"),
|
||||
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_three_title', classname="full"),
|
||||
FieldPanel('section_three_text', classname="full"),
|
||||
FieldPanel('section_three_img', classname="full"),
|
||||
], heading="Section Three"),
|
||||
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_four_title', classname="full"),
|
||||
FieldPanel('section_four_text', classname="full"),
|
||||
FieldPanel('section_four_img', classname="full"),
|
||||
], heading="Section Four"),
|
||||
|
||||
MultiFieldPanel([
|
||||
FieldPanel('section_five_title', classname="full"),
|
||||
FieldPanel('section_five_text', classname="full"),
|
||||
FieldPanel('section_five_img', classname="full"),
|
||||
], heading="Section Five"),
|
||||
]
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% load wagtailcore_tags %}
|
||||
|
||||
{% block body_class %}template-homepage{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<center> {{ page.body|richtext }} </center>
|
||||
{% endblock %}
|
||||
@@ -1,52 +0,0 @@
|
||||
{% load i18n wagtailcore_tags %}
|
||||
|
||||
<header class="header">
|
||||
<div class="logo">
|
||||
<a href="https://wagtail.org/">
|
||||
<svg class="figure-logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 342.5 126.2"><title>{% trans "Visit the Wagtail website" %}</title><path fill="#FFF" d="M84 1.9v5.7s-10.2-3.8-16.8 3.1c-4.8 5-5.2 10.6-3 18.1 21.6 0 25 12.1 25 12.1L87 27l6.8-8.3c0-9.8-8.1-16.3-9.8-16.8z"/><circle cx="85.9" cy="15.9" r="2.6"/><path d="M89.2 40.9s-3.3-16.6-24.9-12.1c-2.2-7.5-1.8-13 3-18.1C73.8 3.8 84 7.6 84 7.6V1.9C80.4.3 77 0 73.2 0 59.3 0 51.6 10.4 48.3 17.4L9.2 89.3l11-2.1-20.2 39 14.1-2.5L24.9 93c30.6 0 69.8-11 64.3-52.1z"/><path d="M102.4 27l-8.6-8.3L87 27z"/><path fill="#FFF" d="M30 84.1s1-.2 2.8-.6c1.8-.4 4.3-1 7.3-1.8 1.5-.4 3.1-.9 4.8-1.5 1.7-.6 3.5-1.2 5.2-2 1.8-.7 3.6-1.6 5.4-2.6 1.8-1 3.5-2.1 5.1-3.4.4-.3.8-.6 1.2-1l1.2-1c.7-.7 1.5-1.4 2.2-2.2.7-.7 1.3-1.5 1.9-2.3l.9-1.2.4-.6.4-.6c.2-.4.5-.8.7-1.2.2-.4.4-.8.7-1.2l.3-.6.3-.6c.2-.4.4-.8.5-1.2l.9-2.4c.2-.8.5-1.6.7-2.3.2-.7.3-1.5.5-2.1.1-.7.2-1.3.3-2 .1-.6.2-1.2.2-1.7.1-.5.1-1 .2-1.5.1-1.8.1-2.8.1-2.8l1.6.1s-.1 1.1-.2 2.9c-.1.5-.1 1-.2 1.5-.1.6-.1 1.2-.3 1.8-.1.6-.3 1.3-.4 2-.2.7-.4 1.4-.6 2.2-.2.8-.5 1.5-.8 2.4-.3.8-.6 1.6-1 2.5l-.6 1.2-.3.6-.3.6c-.2.4-.5.8-.7 1.3-.3.4-.5.8-.8 1.2-.1.2-.3.4-.4.6l-.4.6-.9 1.2c-.7.8-1.3 1.6-2.1 2.3-.7.8-1.5 1.4-2.3 2.2l-1.2 1c-.4.3-.8.6-1.3.9-1.7 1.2-3.5 2.3-5.3 3.3-1.8.9-3.7 1.8-5.5 2.5-1.8.7-3.6 1.3-5.3 1.8-1.7.5-3.3 1-4.9 1.3-3 .7-5.6 1.3-7.4 1.6-1.6.6-2.6.8-2.6.8z"/><g fill="#231F20"><path d="M127 83.9h-8.8l-12.6-36.4h7.9l9 27.5 9-27.5h7.9l9 27.5 9-27.5h7.9L153 83.9h-8.8L135.6 59 127 83.9zM200.1 83.9h-7V79c-3 3.6-7 5.4-12.1 5.4-3.8 0-6.9-1.1-9.4-3.2s-3.7-5-3.7-8.6c0-3.6 1.3-6.3 4-8 2.6-1.8 6.2-2.7 10.7-2.7h9.9v-1.4c0-4.8-2.7-7.3-8.1-7.3-3.4 0-6.9 1.2-10.5 3.7l-3.4-4.8c4.4-3.5 9.4-5.3 15.1-5.3 4.3 0 7.8 1.1 10.5 3.2 2.7 2.2 4.1 5.6 4.1 10.2v23.7zm-7.7-13.6v-3.1h-8.6c-5.5 0-8.3 1.7-8.3 5.2 0 1.8.7 3.1 2.1 4.1 1.4.9 3.3 1.4 5.7 1.4 2.4 0 4.6-.7 6.4-2.1 1.8-1.3 2.7-3.1 2.7-5.5zM241.7 47.5v31.7c0 6.4-1.7 11.3-5.2 14.5-3.5 3.2-8 4.8-13.4 4.8-5.5 0-10.4-1.7-14.8-5.1l3.6-5.8c3.6 2.7 7.1 4 10.8 4 3.6 0 6.5-.9 8.6-2.8 2.1-1.9 3.2-4.9 3.2-9v-4.7c-1.1 2.1-2.8 3.9-4.9 5.1-2.1 1.3-4.5 1.9-7.1 1.9-4.8 0-8.8-1.7-11.9-5.1-3.1-3.4-4.7-7.6-4.7-12.6s1.6-9.2 4.7-12.6c3.1-3.4 7.1-5.1 11.9-5.1 4.8 0 8.7 2 11.7 6v-5.4h7.5zm-28.4 16.8c0 3 .9 5.6 2.8 7.7 1.8 2.2 4.3 3.2 7.5 3.2 3.1 0 5.7-1 7.6-3.1 1.9-2.1 2.9-4.7 2.9-7.8 0-3.1-1-5.8-2.9-7.9-2-2.2-4.5-3.2-7.6-3.2-3.1 0-5.6 1.1-7.4 3.4-2 2.1-2.9 4.7-2.9 7.7zM260.9 53.6v18.5c0 1.7.5 3.1 1.4 4.1.9 1 2.2 1.5 3.8 1.5 1.6 0 3.2-.8 4.7-2.4l3.1 5.4c-2.7 2.4-5.7 3.6-8.9 3.6-3.3 0-6-1.1-8.3-3.4-2.3-2.3-3.5-5.3-3.5-9.1V53.6h-4.6v-6.2h4.6V36.1h7.7v11.4h9.6v6.2h-9.6zM309.5 83.9h-7V79c-3 3.6-7 5.4-12.1 5.4-3.8 0-6.9-1.1-9.4-3.2s-3.7-5-3.7-8.6c0-3.6 1.3-6.3 4-8 2.6-1.8 6.2-2.7 10.7-2.7h9.9v-1.4c0-4.8-2.7-7.3-8.1-7.3-3.4 0-6.9 1.2-10.5 3.7l-3.4-4.8c4.4-3.5 9.4-5.3 15.1-5.3 4.3 0 7.8 1.1 10.5 3.2 2.7 2.2 4.1 5.6 4.1 10.2v23.7zm-7.7-13.6v-3.1h-8.6c-5.5 0-8.3 1.7-8.3 5.2 0 1.8.7 3.1 2.1 4.1 1.4.9 3.3 1.4 5.7 1.4 2.4 0 4.6-.7 6.4-2.1 1.8-1.3 2.7-3.1 2.7-5.5zM319.3 40.2c-1-1-1.4-2.1-1.4-3.4 0-1.3.5-2.5 1.4-3.4 1-1 2.1-1.4 3.4-1.4 1.3 0 2.5.5 3.4 1.4 1 1 1.4 2.1 1.4 3.4 0 1.3-.5 2.5-1.4 3.4s-2.1 1.4-3.4 1.4c-1.3.1-2.4-.4-3.4-1.4zm7.2 43.7h-7.7V47.5h7.7v36.4zM342.5 83.9h-7.7V33.1h7.7v50.8z"/></g></svg>
|
||||
</a>
|
||||
</div>
|
||||
<div class="header-link">
|
||||
{% comment %}
|
||||
This works for all cases but prerelease versions:
|
||||
{% endcomment %}
|
||||
<a href="{% wagtail_documentation_path %}/releases/{% wagtail_release_notes_path %}">
|
||||
{% trans "View the release notes" %}
|
||||
</a>
|
||||
</div>
|
||||
</header>
|
||||
<main class="main">
|
||||
<div class="figure">
|
||||
<svg class="figure-space" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" aria-hidden="true">
|
||||
<path class="egg" fill="currentColor" d="M150 250c-42.741 0-75-32.693-75-90s42.913-110 75-110c32.088 0 75 52.693 75 110s-32.258 90-75 90z"/>
|
||||
<ellipse fill="#ddd" cx="150" cy="270" rx="40" ry="7"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="main-text">
|
||||
<h1>{% trans "Welcome to your new Wagtail site!" %}</h1>
|
||||
<p>{% trans 'Please feel free to <a href="https://github.com/wagtail/wagtail/wiki/Slack">join our community on Slack</a>, or get started with one of the links below.' %}</p>
|
||||
</div>
|
||||
</main>
|
||||
<footer class="footer" role="contentinfo">
|
||||
<a class="option option-one" href="{% wagtail_documentation_path %}/">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true"><path d="M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7zm2.9 11.1l-.9.6V16h-4v-2.3l-.9-.6C7.8 12.2 7 10.6 7 9c0-2.8 2.2-5 5-5s5 2.2 5 5c0 1.6-.8 3.2-2.1 4.1z"/></svg>
|
||||
<div>
|
||||
<h2>{% trans "Wagtail Documentation" %}</h2>
|
||||
<p>{% trans "Topics, references, & how-tos" %}</p>
|
||||
</div>
|
||||
</a>
|
||||
<a class="option option-two" href="{% wagtail_documentation_path %}/getting_started/tutorial.html">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"/></svg>
|
||||
<div>
|
||||
<h2>{% trans "Tutorial" %}</h2>
|
||||
<p>{% trans "Build your first Wagtail site" %}</p>
|
||||
</div>
|
||||
</a>
|
||||
<a class="option option-three" href="{% url 'wagtailadmin_home' %}">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"/><path d="M16.5 13c-1.2 0-3.07.34-4.5 1-1.43-.67-3.3-1-4.5-1C5.33 13 1 14.08 1 16.25V19h22v-2.75c0-2.17-4.33-3.25-6.5-3.25zm-4 4.5h-10v-1.25c0-.54 2.56-1.75 5-1.75s5 1.21 5 1.75v1.25zm9 0H14v-1.25c0-.46-.2-.86-.52-1.22.88-.3 1.96-.53 3.02-.53 2.44 0 5 1.21 5 1.75v1.25zM7.5 12c1.93 0 3.5-1.57 3.5-3.5S9.43 5 7.5 5 4 6.57 4 8.5 5.57 12 7.5 12zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 5.5c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z"/></svg>
|
||||
<div>
|
||||
<h2>{% trans "Admin Interface" %}</h2>
|
||||
<p>{% trans "Create your superuser first!" %}</p>
|
||||
</div>
|
||||
</a>
|
||||
</footer>
|
||||
BIN
media/images/Screenshot_from_2024-08-26_16-52-16.width-500.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 26 KiB |
BIN
media/images/Screenshot_from_2024-08-26_16-52-41.width-500.png
Normal file
|
After Width: | Height: | Size: 232 KiB |
BIN
media/images/Screenshot_from_2024-08-26_16-53-18.width-500.png
Normal file
|
After Width: | Height: | Size: 216 KiB |
BIN
media/images/agile-practitioners.max-800x600.jpg
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
media/images/agile-practitioners.width-800.jpg
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
media/images/agile-practitioners_S8G4McZ.max-165x165.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
media/images/agile-practitioners_S8G4McZ.max-800x600.jpg
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
media/images/agile-practitioners_S8G4McZ.width-800.jpg
Normal file
|
After Width: | Height: | Size: 84 KiB |
280
media/images/best-web-development-sweden.max-165x165.svg
Normal file
@@ -0,0 +1,280 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:ns1="http://www.w3.org/1999/xlink" width="165" height="85" viewBox="0.0 0.0 1358.0 701.0" version="1.1">
|
||||
|
||||
<title>best-web-development-sweden@2x</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<polygon id="path-1" points="0.962868649 0.880108503 21.1824401 0.880108503 21.1824401 263.178848 0.962868649 263.178848" />
|
||||
<polygon id="path-3" points="-66.4358301 263.09523 88.5810118 263.09523 88.5810118 283.333302 -66.4358301 283.333302" />
|
||||
<polygon id="path-5" points="-123.243281 -19.2743822 146.351234 -19.2743822 146.351234 0.963702438 -123.243281 0.963702438" />
|
||||
<linearGradient x1="93.3958167%" y1="100%" x2="47.2239242%" y2="13.4126393%" id="linearGradient-7">
|
||||
<stop stop-color="#C6C9DC" offset="0%" />
|
||||
<stop stop-color="#FCFDFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<polygon id="path-8" points="0.962936047 141.630301 29.2576186 0.927463662 192.567566 3.81858736 165.608079 141.630301" />
|
||||
<linearGradient x1="0%" y1="71.6702355%" x2="104.617679%" y2="57.107133%" id="linearGradient-10">
|
||||
<stop stop-color="#54CBD1" offset="0%" />
|
||||
<stop stop-color="#57EBF3" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="42.0546178%" cy="45.5410746%" fx="42.0546178%" fy="45.5410746%" r="40.697833%" gradientTransform="translate(0.420546,0.455411),scale(0.938979,1.000000),rotate(-69.910157),scale(1.000000,1.538504),translate(-0.420546,-0.455411)" id="radialGradient-11">
|
||||
<stop stop-color="#5763AB" offset="0%" />
|
||||
<stop stop-color="#323C77" offset="100%" />
|
||||
</radialGradient>
|
||||
<radialGradient cx="52.9469765%" cy="28.6240847%" fx="52.9469765%" fy="28.6240847%" r="54.1473232%" gradientTransform="translate(0.529470,0.286241),scale(0.837410,1.000000),rotate(108.260519),scale(1.000000,3.925275),translate(-0.529470,-0.286241)" id="radialGradient-12">
|
||||
<stop stop-color="#EDE9F5" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</radialGradient>
|
||||
<filter x="-49.1%" y="-58.6%" width="198.2%" height="217.2%" filterUnits="objectBoundingBox" id="filter-13">
|
||||
<feGaussianBlur stdDeviation="36.78125" in="SourceGraphic" />
|
||||
</filter>
|
||||
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-14">
|
||||
<stop stop-color="#323C78" offset="0%" />
|
||||
<stop stop-color="#3C4681" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M4.00405319,43.3626991 C2.10004146,34.6822469 -0.764213708,28.2253388 2.10004146,16.50728 C4.96429662,4.78922132 37.9203107,-1.85217394 42.0782419,1.90096147 C46.2363242,5.65402659 45.5596345,7.66286276 62.0315956,16.4111359 C78.5035568,25.1593388 125.717667,35.3343122 135.823424,46.6829048 C145.929181,58.031427 147.810219,65.5350272 126.806991,65.5350272 L61.8394865,65.5350272 C50.179474,61.3086208 46.2576361,59.0324365 39.7210884,55.1201854 C38.3879628,60.0224119 39.7210884,64.1968807 39.7210884,64.1968807 L11.7422277,64.1968807 C11.7422277,64.1968807 5.90791377,52.043081 4.00405319,43.3626991 Z" id="path-15" />
|
||||
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-17">
|
||||
<stop stop-color="#323C78" offset="0%" />
|
||||
<stop stop-color="#424C8C" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M17.3039278,73.2095411 C11.1044075,67.3568399 5.34318273,63.7837206 1.28920291,52.9535115 C-2.76463153,42.1231195 19.8156595,19.0956291 25.1438221,19.8285087 C30.47213,20.5614797 31.019745,22.5181116 48.8225415,20.5719977 C66.6256287,18.6258838 98.4688573,-3.0270345 112.621516,0.519012264 C126.774176,4.06524195 139.478787,4.13758785 122.802331,15.4590356 C114.964181,20.7803466 84.6179898,53.2106093 75.1987776,59.6054017 C63.6585928,62.5411271 59.3153234,62.8512724 52.0124321,63.274464 C53.6013445,67.8778036 56.9142195,70.4675308 56.9142195,70.4675308 L34.6991021,85.5490448 C34.6991021,85.5490448 23.5034481,79.0622423 17.3039278,73.2095411 Z" id="path-18" />
|
||||
<linearGradient x1="87.5676604%" y1="16.2692604%" x2="57.9084106%" y2="80.0144172%" id="linearGradient-20">
|
||||
<stop stop-color="#025AA2" offset="0%" />
|
||||
<stop stop-color="#025AA2" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M295.627195,147.906775 C338.893679,124.867538 363.548498,57.6108976 381.418624,38.6995968 C399.28887,19.7882961 407.179736,55.9697658 404.22561,66.621786 C401.271485,77.2738063 379.493171,148.86946 334.032874,206.69124 C334.032874,244.465219 290.037365,178.215797 295.627195,147.906775 Z" id="path-21" />
|
||||
<filter x="-5.9%" y="-3.5%" width="111.9%" height="107.0%" filterUnits="objectBoundingBox" id="filter-22">
|
||||
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.000825005467 0 0 0 0 0.17067045 0 0 0 0 0.462517679 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-23">
|
||||
<stop stop-color="#FABFA8" offset="0%" />
|
||||
<stop stop-color="#D9A08A" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-24">
|
||||
<stop stop-color="#434D8A" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M7.7535465,79.467341 C20.3549118,62.4662802 51.2064486,27.0038408 117.619689,14.0853099 C184.032536,1.16677905 245.029459,-10.8958645 356.98879,22.4099371 C366.206635,130.511947 376.71047,239.351992 387.311011,261.393861 C379.225217,271.233065 350.015706,278.750813 332.879823,278.750813 C326.663018,254.412575 307.182906,195.776709 297.286936,166.773973 C287.390572,137.770945 283.881531,101.768836 285.793544,89.0746323 C252.053857,98.6603369 182.940746,127.79697 158.709811,136.428188 C134.478481,145.059698 51.3402579,172.423588 23.8217181,150.393387 C-3.69721644,128.363477 -4.8482135,96.4684019 7.7535465,79.467341 Z" id="path-25" />
|
||||
<linearGradient x1="50%" y1="100%" x2="100%" y2="39.0738882%" id="linearGradient-27">
|
||||
<stop stop-color="#7B6ABA" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="16.3760257%" x2="50%" y2="76.5597425%" id="linearGradient-28">
|
||||
<stop stop-color="#DDA793" offset="0%" />
|
||||
<stop stop-color="#FABFA8" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M11.4223686,53.8418888 C8.08207902,37.0881009 1.63832081,7.72152756 0.351925921,1.44674201 C-0.934550799,-4.82804355 61.3875173,16.8463441 61.3875173,16.8463441 L69.2244608,57.9250687 L78.1947738,127.398027 C78.1947738,127.398027 14.7628219,70.5956768 11.4223686,53.8418888 Z" id="path-29" />
|
||||
<linearGradient x1="76.2362807%" y1="86.2362536%" x2="67.0850084%" y2="62.8012707%" id="linearGradient-31">
|
||||
<stop stop-color="#000000" stop-opacity="0.25" offset="0%" />
|
||||
<stop stop-color="#000000" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M106.791661,0.248552894 C106.791661,0.248552894 130.455304,4.0999216 132.085393,7.06050714 C147.473687,18.2378157 162.279077,51.5031174 168.600677,68.736671 C174.922277,85.9702246 187.044634,103.767565 197.972378,117.605008 C208.899861,131.442451 214.141806,134.297326 228.459872,144.53546 C242.777938,154.773593 248.037427,162.896352 239.934383,170.528851 C231.831339,178.161585 185.169967,175.197711 151.953091,216.701112 C122.935164,228.597484 122.971039,232.948039 114.349248,207.242414 C105.727718,181.536789 34.8349865,117.264856 23.3363838,108.205507 C11.8375192,99.1461575 16.2797386,90.4415239 13.3814549,62.693581 C10.4831712,34.9458731 -10.4235934,12.4472553 7.16119555,12.4472553 C21.0191709,17.6056698 34.5183959,7.06050714 40.6113906,7.06050714 C62.8107039,12.5874973 67.8656793,34.4368205 77.081373,29.8548781 C86.2970667,25.2729356 92.197855,25.2729356 92.197855,25.2729356 C94.3480002,29.635471 95.0395766,37.1075257 97.1897218,41.4700611 C99.3401289,45.8325965 108.336906,54.582568 112.335009,62.693581 L105.267103,39.090176 L107.238921,24.9769475 L106.791661,0.248552894 Z" id="path-32" />
|
||||
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-34">
|
||||
<stop stop-color="#6570B1" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-35">
|
||||
<stop stop-color="#DDA48E" offset="0%" />
|
||||
<stop stop-color="#FABFA8" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M54.1259962,47.7073389 C70.9829679,54.5326244 125.574396,27.3648534 142.898063,29.7775086 C158.822482,31.9954812 138.61673,7.09131425 132.636467,2.68432188 C126.656204,-1.72255303 7.0832687,0.274720504 0.80700754,9.47231519 C-5.46908611,18.6699686 40.1464189,42.0469192 54.1259962,47.7073389 Z" id="path-36" />
|
||||
<linearGradient x1="110.009435%" y1="19.1840632%" x2="13.8996672%" y2="50%" id="linearGradient-38">
|
||||
<stop stop-color="#482D20" offset="0%" />
|
||||
<stop stop-color="#050504" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M218.351692,74.2173318 C218.351692,74.2173318 210.215457,61.8549617 216.504964,49.5938587 C222.79447,37.3327556 266,35 266,35 C266,35 278,5 251,1 C224,-3 221.612427,7.85051356 203.173211,15.3340471 C184.733994,22.8177664 169.683178,42.9540924 172.932372,74.2173318 C176.181565,105.480571 205.18408,131.078251 214.414588,135.788185 C211.730627,117.313194 211.611226,108.824796 211.611226,103.67932 C201.023135,108.571535 188.690618,84.309836 195.870789,77.9270461 C209.587105,65.7339498 216.504964,93.5058026 216.504964,93.5058026 C216.504964,93.5058026 218.351692,89.5515611 221.612427,85.8039413 C220.370113,79.1153068 218.351692,74.2173318 218.351692,74.2173318 Z" id="path-39" />
|
||||
<filter x="-16.1%" y="-11.4%" width="132.2%" height="122.9%" filterUnits="objectBoundingBox" id="filter-40">
|
||||
<feGaussianBlur stdDeviation="9" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="13" dy="12" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13988904 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M162.493394,151.288531 C134.019625,135.63564 77.1415596,91.1348981 62.1918016,94.7669733 C47.2422063,98.3990486 51.1218056,105.14626 51.1218056,120.622338 C51.1218056,136.098581 129.252331,188.361645 141.282098,214.222113 C146.43174,225.292189 159.624818,252.637458 183.240831,248.181737 C206.856681,243.726016 199.692642,220.259438 194.602875,201.331555 C188.620043,179.082419 180.027003,160.92731 162.493394,151.288531 Z" id="path-41" />
|
||||
<filter x="-10.1%" y="-9.7%" width="120.1%" height="119.5%" filterUnits="objectBoundingBox" id="filter-42">
|
||||
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="18" dy="-8" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.00392156863 0 0 0 0 0.278431373 0 0 0 0 0.501960784 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M182.408255,305.255012 C312.694417,386.669283 447.251019,395.566339 492.494172,323.160855 C546.828869,217.608904 360.519372,263.280276 230.233209,181.866005 C99.9464644,100.452132 103.166738,32.4947781 13.2985516,0.130422418 C-31.9440202,72.5363044 52.1215103,223.841138 182.408255,305.255012 Z" id="path-43" />
|
||||
<path d="M-50.646727,202.478338 C17.355951,246.641031 95.2545331,247.376512 123.343996,204.121188 C151.433763,160.865863 119.07752,89.9995404 51.074842,45.836848 C-16.927836,1.67415564 -94.8264181,0.938425398 -122.916186,44.1939987 C-151.005648,87.4493236 -118.64971,158.315646 -50.646727,202.478338 Z" id="path-45" />
|
||||
<filter x="-11.3%" y="-13.5%" width="122.6%" height="126.9%" filterUnits="objectBoundingBox" id="filter-46">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-27.5" dy="-39.3" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M187.922615,378.503665 C238.038252,355.133714 253.61836,282.473728 222.721315,216.213131 C191.824271,149.952533 126.150375,115.182903 76.0344918,138.552854 C25.9186092,161.922804 10.3387468,234.58279 41.2357917,300.843388 C72.1328365,367.103986 137.806732,401.873615 187.922615,378.503665 Z" id="path-47" />
|
||||
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-48">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-14.9" dy="-24.9" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M317.890666,490.182748 C368.006303,466.812797 383.586411,394.152812 352.689366,327.892214 C321.792322,261.631616 256.118426,226.861986 206.002543,250.231937 C155.88666,273.601887 140.306798,346.261873 171.203843,412.522471 C202.100888,478.783069 267.774784,513.552698 317.890666,490.182748 Z" id="path-49" />
|
||||
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-50">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-24.9" dy="-12.7" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M560.49745,527.730026 C610.613332,504.360075 626.193195,431.700089 595.296395,365.439492 C564.39935,299.178894 498.725209,264.409264 448.609572,287.779215 C398.493689,311.149165 382.913827,383.809151 413.810872,450.069749 C444.707916,516.330347 510.381812,551.099976 560.49745,527.730026 Z" id="path-51" />
|
||||
<filter x="-7.9%" y="-6.6%" width="115.8%" height="113.2%" filterUnits="objectBoundingBox" id="filter-52">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-9.9" dy="12.6" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M388.833934,454.299677 C443.718672,461.038783 492.387509,432.488752 497.539116,390.531534 C502.690722,348.574317 462.373997,309.098051 407.489471,302.358944 C352.604945,295.619837 303.936107,324.169869 298.784713,366.126919 C293.633107,408.084136 333.94962,447.560402 388.833934,454.299677 Z" id="path-53" />
|
||||
<filter x="-10.0%" y="-12.9%" width="119.9%" height="125.9%" filterUnits="objectBoundingBox" id="filter-54">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-18.8" dy="2.6" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<linearGradient x1="75.5386921%" y1="0%" x2="50%" y2="100%" id="linearGradient-55">
|
||||
<stop stop-color="#BB3043" offset="0%" />
|
||||
<stop stop-color="#F25267" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="StartUp" transform="translate(-47.000000, -4304.000000)">
|
||||
<g id="best-web-development-sweden" transform="translate(725.500000, 4651.000000) scale(-1, 1) translate(-725.500000, -4651.000000) translate(46.000000, 4303.000000)">
|
||||
<g id="laptop" transform="translate(855.000000, 258.000000)">
|
||||
<g id="table" opacity="0.784688794" transform="translate(124.168919, 159.941043)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use ns1:href="#path-1" />
|
||||
</mask>
|
||||
<use id="Rectangle-3" fill="#333C72" ns1:href="#path-1" />
|
||||
<mask id="mask-4" fill="white">
|
||||
<use ns1:href="#path-3" />
|
||||
</mask>
|
||||
<use id="Rectangle-2-copy" fill="#5763AB" ns1:href="#path-3" />
|
||||
<mask id="mask-6" fill="white">
|
||||
<use ns1:href="#path-5" />
|
||||
</mask>
|
||||
<use id="Rectangle-2" fill="#5763AB" ns1:href="#path-5" />
|
||||
</g>
|
||||
<polygon id="front" fill="#D2D2D2" points="80.8411739 140.666641 109.135983 0.927463662 272.445988 3.81858736 244.523719 140.666641" />
|
||||
<polygon id="bottom" fill="#D2D2D2" points="0.925769071 132.811437 255.092067 132.811437 255.092067 141.630366 8.6283312 141.630366" />
|
||||
<g id="back" transform="translate(89.506757, 0.000000)">
|
||||
<mask id="mask-9" fill="white">
|
||||
<use ns1:href="#path-8" />
|
||||
</mask>
|
||||
<use id="Shape-9" fill="url(#linearGradient-7)" ns1:href="#path-8" />
|
||||
<path d="M98.2094441,57.7868404 C106.185901,57.7868404 112.652061,63.1802118 112.652061,69.8333102 C112.652061,76.4864086 106.185901,81.879834 98.2094441,81.879834 C90.2330826,81.879834 83.7669227,76.4864086 83.7669227,69.8333102 C83.7669227,63.1802118 90.2330826,57.7868404 98.2094441,57.7868404 Z" id="Ellipse-5" fill-opacity="0.1" fill="#000000" mask="url(#mask-9)" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="message" transform="translate(1134.000000, 20.000000)">
|
||||
<g id="rocket">
|
||||
<g id="Group-7" transform="translate(70.111195, 64.264561) scale(-1, 1) rotate(-10.000000) translate(-70.111195, -64.264561) translate(9.111195, 9.764561)">
|
||||
<polygon id="Shape-5" fill="url(#linearGradient-10)" points="0.971974 66.588645 20.983268 40.339047 85.84713 81.095019 36.164094 23.760365 60.315702 0.96465 121.039372 108.03535" />
|
||||
<polygon id="Shape-6" fill="#4DBBC2" points="20.2932571 41.0298157 35.474159 38.9574604 88.6073512 83.1673752" />
|
||||
<polygon id="Shape-7" fill="#4DBBC2" points="34.7841318 38.9574247 36.8541788 23.7603283 87.2273122 81.7857491" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Person" transform="translate(0.000000, 75.000000)">
|
||||
<path d="M164.089593,563.097922 C285.92073,621.542865 464.798296,613.823139 545.037787,455.217337 C598.047976,353.164719 484.945462,230.96384 360.710277,145.991953 C249.207285,69.7291333 150.031499,52.4350939 91.8402222,95.3691007 C85.1950607,100.271776 73.3837847,99.3081683 68.0182405,105.979078 C-79.6822664,274.574945 42.2591359,504.652407 164.089593,563.097922 Z" id="chair" fill="url(#radialGradient-11)" />
|
||||
<path d="M239.345129,417.071637 C369.631579,498.485917 504.188158,507.382814 549.431044,434.977478 C591.409743,356.751355 489.569011,215.274312 359.282561,133.860032 C228.996111,52.4462233 115.478951,39.5415329 70.2354954,111.94734 C24.9931778,184.352676 109.058679,335.657828 239.345129,417.071637 Z" id="cushion" fill="url(#radialGradient-12)" />
|
||||
<path d="M268.78836,359.956512 C327.205524,396.481892 387.537307,400.47336 407.823079,367.989718 C426.64527,332.89466 380.98245,269.422962 322.565285,232.897583 C264.14812,196.372415 213.249883,190.582906 192.963857,223.066759 C172.67834,255.550402 210.371195,323.431344 268.78836,359.956512 Z" id="shadow" fill="#94B0D7" filter="url(#filter-13)" />
|
||||
<g id="shoe" transform="translate(640.156550, 554.756447)">
|
||||
<mask id="mask-16" fill="white">
|
||||
<use ns1:href="#path-15" />
|
||||
</mask>
|
||||
<use id="Path-17" fill="url(#linearGradient-14)" ns1:href="#path-15" />
|
||||
<path d="M4.07438743,57.6183138 C10.1020976,42.0870263 33.5945278,13.1115189 40.4011624,3.68183696 C44.9389187,-2.60461768 29.9043591,1.09992201 -4.70251657,14.795456 C-2.86972066,53.6982196 0.0559140052,67.9725055 4.07438743,57.6183138 Z" id="Path-21" fill="#3D82F0" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-16)" />
|
||||
</g>
|
||||
<g id="shoe" transform="translate(681.628328, 289.074499)">
|
||||
<mask id="mask-19" fill="white">
|
||||
<use ns1:href="#path-18" />
|
||||
</mask>
|
||||
<use id="Path-17-Copy" fill="url(#linearGradient-17)" ns1:href="#path-18" />
|
||||
<path d="M26.4768595,83.2628267 C17.1500804,63.9393405 26.7565233,20.3425332 22.5022349,16.4818273 C19.6660426,13.9080233 11.3134865,24.3078603 -2.5554333,47.6813383 C-9.15184812,54.2247026 -7.15018576,62.3881846 3.44955379,72.1717843 C19.3491631,86.8471838 35.8036385,102.586313 26.4768595,83.2628267 Z" id="Path-19" fill="#5763AB" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-19)" />
|
||||
</g>
|
||||
<g id="sleeve">
|
||||
<use fill="url(#linearGradient-20)" fill-rule="evenodd" ns1:href="#path-21" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-22)" ns1:href="#path-21" />
|
||||
</g>
|
||||
<path d="M277.118998,71.5913936 C277.118998,71.5913936 379.673163,31.0324812 393.537208,33.7138671 C407.40112,36.3951741 365.964615,83.6575117 357.486649,87.4711348 C349.008683,91.2849158 337.4858,100.588966 324.734995,100.920379 C311.984189,101.25195 282.675028,107.565069 282.675028,107.565069 L277.118998,71.5913936 Z" id="arm" fill="url(#linearGradient-23)" />
|
||||
<g id="leg" transform="translate(294.686901, 296.111748)">
|
||||
<mask id="mask-26" fill="white">
|
||||
<use ns1:href="#path-25" />
|
||||
</mask>
|
||||
<use id="Path-7" fill="url(#linearGradient-24)" ns1:href="#path-25" />
|
||||
<path d="M236.671156,108.800007 C236.671156,93.7353609 274.816424,14.2268459 285.030845,5.7268689 C291.840458,0.0602175617 285.133884,-2.35179575 264.911121,-1.50917104 C218.8415,46.3086312 192.781804,83.0783573 186.732033,108.800007 C177.657376,147.382483 236.671156,123.864654 236.671156,108.800007 Z" id="Path" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" opacity="0.300000012" mask="url(#mask-26)" />
|
||||
</g>
|
||||
<g id="neck" transform="translate(207.892439, 103.338109)">
|
||||
<mask id="mask-30" fill="white">
|
||||
<use ns1:href="#path-29" />
|
||||
</mask>
|
||||
<use id="Path-4" fill="url(#linearGradient-28)" ns1:href="#path-29" />
|
||||
<path d="M3.75252576,3.19261919 C3.75252576,9.49979504 27.4019056,36.4712707 40.1780516,43.8650255 C48.6954824,48.7941954 60.6269618,51.0303993 75.9724899,50.5736373 L72.4658045,14.2533367 L3.75252576,-3.09723455 C3.75252576,-3.10878263 3.75252576,-1.01216472 3.75252576,3.19261919 Z" id="Path-22" fill="#7B6ABA" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-30)" />
|
||||
</g>
|
||||
<g id="shirt" transform="translate(166.867945, 142.624642)">
|
||||
<mask id="mask-33" fill="white">
|
||||
<use ns1:href="#path-32" />
|
||||
</mask>
|
||||
<g id="Path-9">
|
||||
<use fill="#025AA2" ns1:href="#path-32" />
|
||||
<use fill="url(#linearGradient-31)" ns1:href="#path-32" />
|
||||
</g>
|
||||
</g>
|
||||
<path d="M404.144321,302.649906 C439.019466,270.636673 538.843848,208.678365 595.770779,199.216937 C628.382083,204.641613 713.249169,296.627607 713.249169,296.627607 C709.422386,300.660062 699.335615,336.41422 683.404461,347.653234 C643.281416,314.345432 601.449495,298.792941 590.216621,281.570548 C576.20564,290.100327 540.189326,315.00943 519.473153,351.60427 C498.75739,388.19911 485.014436,429.890807 461.406286,430.934436 C437.798135,431.978066 404.505253,434.674407 373.836733,414.941429 C356.025279,403.480606 304.745412,377.934963 329.657932,361.196779 C343.935295,351.60427 389.523703,316.070489 404.144321,302.649906 Z" id="leg" fill="url(#linearGradient-34)" />
|
||||
<path d="M268.202361,35.4722042 C270.564565,41.4337155 283.524895,67.5973433 284.773304,74.1189743 C286.021598,80.6408344 298.355375,124.143312 291.008244,130.842408 C283.660998,137.541733 261.629341,140.933613 255.47242,138.78834 C249.315384,136.643181 236.079068,135.268946 230.923325,126.220647 C226.960999,119.266524 214.372201,103.123643 211.070111,104.047972 C209.863747,106.527324 205.658889,109.176464 203.553309,107.474452 C194.455519,100.120489 186.657004,92.1559972 190.358809,74.1189743 C194.060615,56.0820658 207.039161,47.1830481 220.954386,41.3276261 C234.869611,35.4722042 265.840043,29.5108075 268.202361,35.4722042 Z" id="face" fill="#FABFA8" />
|
||||
<g id="arm" transform="translate(55.005325, 87.822350)">
|
||||
<mask id="mask-37" fill="white">
|
||||
<use ns1:href="#path-36" />
|
||||
</mask>
|
||||
<use id="Path-13" fill="url(#linearGradient-35)" ns1:href="#path-36" />
|
||||
<path d="M20.9357307,10.3300824 C24.4799379,11.6197539 96.3756542,42.9506507 114.163568,38.6108732 C126.022177,35.7176882 111.24641,41.1863916 69.8362671,55.0169834 C34.8731047,24.365935 18.5729259,9.47030132 20.9357307,10.3300824 Z" id="Path-24" fill="#DBA28C" opacity="0.5" mask="url(#mask-37)" />
|
||||
</g>
|
||||
<g id="hair">
|
||||
<use fill="url(#linearGradient-38)" fill-rule="evenodd" ns1:href="#path-39" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-40)" ns1:href="#path-39" />
|
||||
</g>
|
||||
<g id="sleeve">
|
||||
<use fill="url(#linearGradient-20)" fill-rule="evenodd" ns1:href="#path-41" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-42)" ns1:href="#path-41" />
|
||||
</g>
|
||||
<g id="cushion" transform="translate(56.937167, 111.816619)">
|
||||
<g id="Mask-by-Oval">
|
||||
<g id="Oval-3-+-Oval-3-Copy-+-Oval-3-Copy-2-+-Oval-3-Copy-4-+-Oval-3-Copy-3-Mask">
|
||||
<mask id="mask-44" fill="white">
|
||||
<use ns1:href="#path-43" />
|
||||
</mask>
|
||||
<use id="Mask" fill-opacity="0" fill="#000000" ns1:href="#path-43" />
|
||||
<g id="Oval-3" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-45" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-46)" ns1:href="#path-45" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-47" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-48)" ns1:href="#path-47" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-2" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-49" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-50)" ns1:href="#path-49" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-4" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-51" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-52)" ns1:href="#path-51" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-3" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-53" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-54)" ns1:href="#path-53" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M218,210.830938 C218,210.830938 232.708406,209.24795 234.472265,208.122078 C236.236185,206.996205 241.240268,214.02846 241.240268,214.02846 L237.240268,215.057639 L227.240268,218.10555 L218,210.830938 Z" id="pocket" fill="url(#linearGradient-55)" />
|
||||
</g>
|
||||
<g id="Group-4" transform="translate(1305.000000, 27.000000) scale(1, -1) translate(-1305.000000, -27.000000) translate(1251.000000, 0.000000)" fill="#5763AB" fill-rule="nonzero">
|
||||
<path d="M105.164005,45.6352861 C107.022285,46.8298948 107.560297,49.3047502 106.365688,51.1630304 C105.17108,53.0213105 102.696224,53.5593226 100.837944,52.3647139 L30.8379441,7.3647139 C28.9796639,6.17010522 28.4416518,3.69524981 29.6362605,1.83696963 C30.8308692,-0.0213105406 33.3057246,-0.559322586 35.1640048,0.635286098 L105.164005,45.6352861 Z" id="Path-44" />
|
||||
<path d="M44.3730582,45.7800386 C46.1515384,47.0904978 46.5309445,49.5945779 45.2204853,51.3730582 C43.9100262,53.1515384 41.4059461,53.5309445 39.6274658,52.2204853 L1.62746585,24.2204853 C-0.151014401,22.9100262 -0.530420481,20.4059461 0.780038648,18.6274658 C2.09049778,16.8489856 4.5945779,16.4695795 6.37305815,17.7800386 L44.3730582,45.7800386 Z" id="Path-44-Copy" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 31 KiB |
280
media/images/best-web-development-sweden.max-800x600.svg
Normal file
@@ -0,0 +1,280 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:ns1="http://www.w3.org/1999/xlink" width="800" height="412" viewBox="0.0 0.0 1358.0 701.0" version="1.1">
|
||||
|
||||
<title>best-web-development-sweden@2x</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<polygon id="path-1" points="0.962868649 0.880108503 21.1824401 0.880108503 21.1824401 263.178848 0.962868649 263.178848" />
|
||||
<polygon id="path-3" points="-66.4358301 263.09523 88.5810118 263.09523 88.5810118 283.333302 -66.4358301 283.333302" />
|
||||
<polygon id="path-5" points="-123.243281 -19.2743822 146.351234 -19.2743822 146.351234 0.963702438 -123.243281 0.963702438" />
|
||||
<linearGradient x1="93.3958167%" y1="100%" x2="47.2239242%" y2="13.4126393%" id="linearGradient-7">
|
||||
<stop stop-color="#C6C9DC" offset="0%" />
|
||||
<stop stop-color="#FCFDFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<polygon id="path-8" points="0.962936047 141.630301 29.2576186 0.927463662 192.567566 3.81858736 165.608079 141.630301" />
|
||||
<linearGradient x1="0%" y1="71.6702355%" x2="104.617679%" y2="57.107133%" id="linearGradient-10">
|
||||
<stop stop-color="#54CBD1" offset="0%" />
|
||||
<stop stop-color="#57EBF3" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="42.0546178%" cy="45.5410746%" fx="42.0546178%" fy="45.5410746%" r="40.697833%" gradientTransform="translate(0.420546,0.455411),scale(0.938979,1.000000),rotate(-69.910157),scale(1.000000,1.538504),translate(-0.420546,-0.455411)" id="radialGradient-11">
|
||||
<stop stop-color="#5763AB" offset="0%" />
|
||||
<stop stop-color="#323C77" offset="100%" />
|
||||
</radialGradient>
|
||||
<radialGradient cx="52.9469765%" cy="28.6240847%" fx="52.9469765%" fy="28.6240847%" r="54.1473232%" gradientTransform="translate(0.529470,0.286241),scale(0.837410,1.000000),rotate(108.260519),scale(1.000000,3.925275),translate(-0.529470,-0.286241)" id="radialGradient-12">
|
||||
<stop stop-color="#EDE9F5" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</radialGradient>
|
||||
<filter x="-49.1%" y="-58.6%" width="198.2%" height="217.2%" filterUnits="objectBoundingBox" id="filter-13">
|
||||
<feGaussianBlur stdDeviation="36.78125" in="SourceGraphic" />
|
||||
</filter>
|
||||
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-14">
|
||||
<stop stop-color="#323C78" offset="0%" />
|
||||
<stop stop-color="#3C4681" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M4.00405319,43.3626991 C2.10004146,34.6822469 -0.764213708,28.2253388 2.10004146,16.50728 C4.96429662,4.78922132 37.9203107,-1.85217394 42.0782419,1.90096147 C46.2363242,5.65402659 45.5596345,7.66286276 62.0315956,16.4111359 C78.5035568,25.1593388 125.717667,35.3343122 135.823424,46.6829048 C145.929181,58.031427 147.810219,65.5350272 126.806991,65.5350272 L61.8394865,65.5350272 C50.179474,61.3086208 46.2576361,59.0324365 39.7210884,55.1201854 C38.3879628,60.0224119 39.7210884,64.1968807 39.7210884,64.1968807 L11.7422277,64.1968807 C11.7422277,64.1968807 5.90791377,52.043081 4.00405319,43.3626991 Z" id="path-15" />
|
||||
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-17">
|
||||
<stop stop-color="#323C78" offset="0%" />
|
||||
<stop stop-color="#424C8C" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M17.3039278,73.2095411 C11.1044075,67.3568399 5.34318273,63.7837206 1.28920291,52.9535115 C-2.76463153,42.1231195 19.8156595,19.0956291 25.1438221,19.8285087 C30.47213,20.5614797 31.019745,22.5181116 48.8225415,20.5719977 C66.6256287,18.6258838 98.4688573,-3.0270345 112.621516,0.519012264 C126.774176,4.06524195 139.478787,4.13758785 122.802331,15.4590356 C114.964181,20.7803466 84.6179898,53.2106093 75.1987776,59.6054017 C63.6585928,62.5411271 59.3153234,62.8512724 52.0124321,63.274464 C53.6013445,67.8778036 56.9142195,70.4675308 56.9142195,70.4675308 L34.6991021,85.5490448 C34.6991021,85.5490448 23.5034481,79.0622423 17.3039278,73.2095411 Z" id="path-18" />
|
||||
<linearGradient x1="87.5676604%" y1="16.2692604%" x2="57.9084106%" y2="80.0144172%" id="linearGradient-20">
|
||||
<stop stop-color="#025AA2" offset="0%" />
|
||||
<stop stop-color="#025AA2" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M295.627195,147.906775 C338.893679,124.867538 363.548498,57.6108976 381.418624,38.6995968 C399.28887,19.7882961 407.179736,55.9697658 404.22561,66.621786 C401.271485,77.2738063 379.493171,148.86946 334.032874,206.69124 C334.032874,244.465219 290.037365,178.215797 295.627195,147.906775 Z" id="path-21" />
|
||||
<filter x="-5.9%" y="-3.5%" width="111.9%" height="107.0%" filterUnits="objectBoundingBox" id="filter-22">
|
||||
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.000825005467 0 0 0 0 0.17067045 0 0 0 0 0.462517679 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-23">
|
||||
<stop stop-color="#FABFA8" offset="0%" />
|
||||
<stop stop-color="#D9A08A" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-24">
|
||||
<stop stop-color="#434D8A" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M7.7535465,79.467341 C20.3549118,62.4662802 51.2064486,27.0038408 117.619689,14.0853099 C184.032536,1.16677905 245.029459,-10.8958645 356.98879,22.4099371 C366.206635,130.511947 376.71047,239.351992 387.311011,261.393861 C379.225217,271.233065 350.015706,278.750813 332.879823,278.750813 C326.663018,254.412575 307.182906,195.776709 297.286936,166.773973 C287.390572,137.770945 283.881531,101.768836 285.793544,89.0746323 C252.053857,98.6603369 182.940746,127.79697 158.709811,136.428188 C134.478481,145.059698 51.3402579,172.423588 23.8217181,150.393387 C-3.69721644,128.363477 -4.8482135,96.4684019 7.7535465,79.467341 Z" id="path-25" />
|
||||
<linearGradient x1="50%" y1="100%" x2="100%" y2="39.0738882%" id="linearGradient-27">
|
||||
<stop stop-color="#7B6ABA" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="16.3760257%" x2="50%" y2="76.5597425%" id="linearGradient-28">
|
||||
<stop stop-color="#DDA793" offset="0%" />
|
||||
<stop stop-color="#FABFA8" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M11.4223686,53.8418888 C8.08207902,37.0881009 1.63832081,7.72152756 0.351925921,1.44674201 C-0.934550799,-4.82804355 61.3875173,16.8463441 61.3875173,16.8463441 L69.2244608,57.9250687 L78.1947738,127.398027 C78.1947738,127.398027 14.7628219,70.5956768 11.4223686,53.8418888 Z" id="path-29" />
|
||||
<linearGradient x1="76.2362807%" y1="86.2362536%" x2="67.0850084%" y2="62.8012707%" id="linearGradient-31">
|
||||
<stop stop-color="#000000" stop-opacity="0.25" offset="0%" />
|
||||
<stop stop-color="#000000" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M106.791661,0.248552894 C106.791661,0.248552894 130.455304,4.0999216 132.085393,7.06050714 C147.473687,18.2378157 162.279077,51.5031174 168.600677,68.736671 C174.922277,85.9702246 187.044634,103.767565 197.972378,117.605008 C208.899861,131.442451 214.141806,134.297326 228.459872,144.53546 C242.777938,154.773593 248.037427,162.896352 239.934383,170.528851 C231.831339,178.161585 185.169967,175.197711 151.953091,216.701112 C122.935164,228.597484 122.971039,232.948039 114.349248,207.242414 C105.727718,181.536789 34.8349865,117.264856 23.3363838,108.205507 C11.8375192,99.1461575 16.2797386,90.4415239 13.3814549,62.693581 C10.4831712,34.9458731 -10.4235934,12.4472553 7.16119555,12.4472553 C21.0191709,17.6056698 34.5183959,7.06050714 40.6113906,7.06050714 C62.8107039,12.5874973 67.8656793,34.4368205 77.081373,29.8548781 C86.2970667,25.2729356 92.197855,25.2729356 92.197855,25.2729356 C94.3480002,29.635471 95.0395766,37.1075257 97.1897218,41.4700611 C99.3401289,45.8325965 108.336906,54.582568 112.335009,62.693581 L105.267103,39.090176 L107.238921,24.9769475 L106.791661,0.248552894 Z" id="path-32" />
|
||||
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-34">
|
||||
<stop stop-color="#6570B1" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-35">
|
||||
<stop stop-color="#DDA48E" offset="0%" />
|
||||
<stop stop-color="#FABFA8" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M54.1259962,47.7073389 C70.9829679,54.5326244 125.574396,27.3648534 142.898063,29.7775086 C158.822482,31.9954812 138.61673,7.09131425 132.636467,2.68432188 C126.656204,-1.72255303 7.0832687,0.274720504 0.80700754,9.47231519 C-5.46908611,18.6699686 40.1464189,42.0469192 54.1259962,47.7073389 Z" id="path-36" />
|
||||
<linearGradient x1="110.009435%" y1="19.1840632%" x2="13.8996672%" y2="50%" id="linearGradient-38">
|
||||
<stop stop-color="#482D20" offset="0%" />
|
||||
<stop stop-color="#050504" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M218.351692,74.2173318 C218.351692,74.2173318 210.215457,61.8549617 216.504964,49.5938587 C222.79447,37.3327556 266,35 266,35 C266,35 278,5 251,1 C224,-3 221.612427,7.85051356 203.173211,15.3340471 C184.733994,22.8177664 169.683178,42.9540924 172.932372,74.2173318 C176.181565,105.480571 205.18408,131.078251 214.414588,135.788185 C211.730627,117.313194 211.611226,108.824796 211.611226,103.67932 C201.023135,108.571535 188.690618,84.309836 195.870789,77.9270461 C209.587105,65.7339498 216.504964,93.5058026 216.504964,93.5058026 C216.504964,93.5058026 218.351692,89.5515611 221.612427,85.8039413 C220.370113,79.1153068 218.351692,74.2173318 218.351692,74.2173318 Z" id="path-39" />
|
||||
<filter x="-16.1%" y="-11.4%" width="132.2%" height="122.9%" filterUnits="objectBoundingBox" id="filter-40">
|
||||
<feGaussianBlur stdDeviation="9" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="13" dy="12" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13988904 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M162.493394,151.288531 C134.019625,135.63564 77.1415596,91.1348981 62.1918016,94.7669733 C47.2422063,98.3990486 51.1218056,105.14626 51.1218056,120.622338 C51.1218056,136.098581 129.252331,188.361645 141.282098,214.222113 C146.43174,225.292189 159.624818,252.637458 183.240831,248.181737 C206.856681,243.726016 199.692642,220.259438 194.602875,201.331555 C188.620043,179.082419 180.027003,160.92731 162.493394,151.288531 Z" id="path-41" />
|
||||
<filter x="-10.1%" y="-9.7%" width="120.1%" height="119.5%" filterUnits="objectBoundingBox" id="filter-42">
|
||||
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="18" dy="-8" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.00392156863 0 0 0 0 0.278431373 0 0 0 0 0.501960784 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M182.408255,305.255012 C312.694417,386.669283 447.251019,395.566339 492.494172,323.160855 C546.828869,217.608904 360.519372,263.280276 230.233209,181.866005 C99.9464644,100.452132 103.166738,32.4947781 13.2985516,0.130422418 C-31.9440202,72.5363044 52.1215103,223.841138 182.408255,305.255012 Z" id="path-43" />
|
||||
<path d="M-50.646727,202.478338 C17.355951,246.641031 95.2545331,247.376512 123.343996,204.121188 C151.433763,160.865863 119.07752,89.9995404 51.074842,45.836848 C-16.927836,1.67415564 -94.8264181,0.938425398 -122.916186,44.1939987 C-151.005648,87.4493236 -118.64971,158.315646 -50.646727,202.478338 Z" id="path-45" />
|
||||
<filter x="-11.3%" y="-13.5%" width="122.6%" height="126.9%" filterUnits="objectBoundingBox" id="filter-46">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-27.5" dy="-39.3" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M187.922615,378.503665 C238.038252,355.133714 253.61836,282.473728 222.721315,216.213131 C191.824271,149.952533 126.150375,115.182903 76.0344918,138.552854 C25.9186092,161.922804 10.3387468,234.58279 41.2357917,300.843388 C72.1328365,367.103986 137.806732,401.873615 187.922615,378.503665 Z" id="path-47" />
|
||||
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-48">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-14.9" dy="-24.9" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M317.890666,490.182748 C368.006303,466.812797 383.586411,394.152812 352.689366,327.892214 C321.792322,261.631616 256.118426,226.861986 206.002543,250.231937 C155.88666,273.601887 140.306798,346.261873 171.203843,412.522471 C202.100888,478.783069 267.774784,513.552698 317.890666,490.182748 Z" id="path-49" />
|
||||
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-50">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-24.9" dy="-12.7" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M560.49745,527.730026 C610.613332,504.360075 626.193195,431.700089 595.296395,365.439492 C564.39935,299.178894 498.725209,264.409264 448.609572,287.779215 C398.493689,311.149165 382.913827,383.809151 413.810872,450.069749 C444.707916,516.330347 510.381812,551.099976 560.49745,527.730026 Z" id="path-51" />
|
||||
<filter x="-7.9%" y="-6.6%" width="115.8%" height="113.2%" filterUnits="objectBoundingBox" id="filter-52">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-9.9" dy="12.6" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M388.833934,454.299677 C443.718672,461.038783 492.387509,432.488752 497.539116,390.531534 C502.690722,348.574317 462.373997,309.098051 407.489471,302.358944 C352.604945,295.619837 303.936107,324.169869 298.784713,366.126919 C293.633107,408.084136 333.94962,447.560402 388.833934,454.299677 Z" id="path-53" />
|
||||
<filter x="-10.0%" y="-12.9%" width="119.9%" height="125.9%" filterUnits="objectBoundingBox" id="filter-54">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-18.8" dy="2.6" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<linearGradient x1="75.5386921%" y1="0%" x2="50%" y2="100%" id="linearGradient-55">
|
||||
<stop stop-color="#BB3043" offset="0%" />
|
||||
<stop stop-color="#F25267" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="StartUp" transform="translate(-47.000000, -4304.000000)">
|
||||
<g id="best-web-development-sweden" transform="translate(725.500000, 4651.000000) scale(-1, 1) translate(-725.500000, -4651.000000) translate(46.000000, 4303.000000)">
|
||||
<g id="laptop" transform="translate(855.000000, 258.000000)">
|
||||
<g id="table" opacity="0.784688794" transform="translate(124.168919, 159.941043)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use ns1:href="#path-1" />
|
||||
</mask>
|
||||
<use id="Rectangle-3" fill="#333C72" ns1:href="#path-1" />
|
||||
<mask id="mask-4" fill="white">
|
||||
<use ns1:href="#path-3" />
|
||||
</mask>
|
||||
<use id="Rectangle-2-copy" fill="#5763AB" ns1:href="#path-3" />
|
||||
<mask id="mask-6" fill="white">
|
||||
<use ns1:href="#path-5" />
|
||||
</mask>
|
||||
<use id="Rectangle-2" fill="#5763AB" ns1:href="#path-5" />
|
||||
</g>
|
||||
<polygon id="front" fill="#D2D2D2" points="80.8411739 140.666641 109.135983 0.927463662 272.445988 3.81858736 244.523719 140.666641" />
|
||||
<polygon id="bottom" fill="#D2D2D2" points="0.925769071 132.811437 255.092067 132.811437 255.092067 141.630366 8.6283312 141.630366" />
|
||||
<g id="back" transform="translate(89.506757, 0.000000)">
|
||||
<mask id="mask-9" fill="white">
|
||||
<use ns1:href="#path-8" />
|
||||
</mask>
|
||||
<use id="Shape-9" fill="url(#linearGradient-7)" ns1:href="#path-8" />
|
||||
<path d="M98.2094441,57.7868404 C106.185901,57.7868404 112.652061,63.1802118 112.652061,69.8333102 C112.652061,76.4864086 106.185901,81.879834 98.2094441,81.879834 C90.2330826,81.879834 83.7669227,76.4864086 83.7669227,69.8333102 C83.7669227,63.1802118 90.2330826,57.7868404 98.2094441,57.7868404 Z" id="Ellipse-5" fill-opacity="0.1" fill="#000000" mask="url(#mask-9)" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="message" transform="translate(1134.000000, 20.000000)">
|
||||
<g id="rocket">
|
||||
<g id="Group-7" transform="translate(70.111195, 64.264561) scale(-1, 1) rotate(-10.000000) translate(-70.111195, -64.264561) translate(9.111195, 9.764561)">
|
||||
<polygon id="Shape-5" fill="url(#linearGradient-10)" points="0.971974 66.588645 20.983268 40.339047 85.84713 81.095019 36.164094 23.760365 60.315702 0.96465 121.039372 108.03535" />
|
||||
<polygon id="Shape-6" fill="#4DBBC2" points="20.2932571 41.0298157 35.474159 38.9574604 88.6073512 83.1673752" />
|
||||
<polygon id="Shape-7" fill="#4DBBC2" points="34.7841318 38.9574247 36.8541788 23.7603283 87.2273122 81.7857491" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Person" transform="translate(0.000000, 75.000000)">
|
||||
<path d="M164.089593,563.097922 C285.92073,621.542865 464.798296,613.823139 545.037787,455.217337 C598.047976,353.164719 484.945462,230.96384 360.710277,145.991953 C249.207285,69.7291333 150.031499,52.4350939 91.8402222,95.3691007 C85.1950607,100.271776 73.3837847,99.3081683 68.0182405,105.979078 C-79.6822664,274.574945 42.2591359,504.652407 164.089593,563.097922 Z" id="chair" fill="url(#radialGradient-11)" />
|
||||
<path d="M239.345129,417.071637 C369.631579,498.485917 504.188158,507.382814 549.431044,434.977478 C591.409743,356.751355 489.569011,215.274312 359.282561,133.860032 C228.996111,52.4462233 115.478951,39.5415329 70.2354954,111.94734 C24.9931778,184.352676 109.058679,335.657828 239.345129,417.071637 Z" id="cushion" fill="url(#radialGradient-12)" />
|
||||
<path d="M268.78836,359.956512 C327.205524,396.481892 387.537307,400.47336 407.823079,367.989718 C426.64527,332.89466 380.98245,269.422962 322.565285,232.897583 C264.14812,196.372415 213.249883,190.582906 192.963857,223.066759 C172.67834,255.550402 210.371195,323.431344 268.78836,359.956512 Z" id="shadow" fill="#94B0D7" filter="url(#filter-13)" />
|
||||
<g id="shoe" transform="translate(640.156550, 554.756447)">
|
||||
<mask id="mask-16" fill="white">
|
||||
<use ns1:href="#path-15" />
|
||||
</mask>
|
||||
<use id="Path-17" fill="url(#linearGradient-14)" ns1:href="#path-15" />
|
||||
<path d="M4.07438743,57.6183138 C10.1020976,42.0870263 33.5945278,13.1115189 40.4011624,3.68183696 C44.9389187,-2.60461768 29.9043591,1.09992201 -4.70251657,14.795456 C-2.86972066,53.6982196 0.0559140052,67.9725055 4.07438743,57.6183138 Z" id="Path-21" fill="#3D82F0" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-16)" />
|
||||
</g>
|
||||
<g id="shoe" transform="translate(681.628328, 289.074499)">
|
||||
<mask id="mask-19" fill="white">
|
||||
<use ns1:href="#path-18" />
|
||||
</mask>
|
||||
<use id="Path-17-Copy" fill="url(#linearGradient-17)" ns1:href="#path-18" />
|
||||
<path d="M26.4768595,83.2628267 C17.1500804,63.9393405 26.7565233,20.3425332 22.5022349,16.4818273 C19.6660426,13.9080233 11.3134865,24.3078603 -2.5554333,47.6813383 C-9.15184812,54.2247026 -7.15018576,62.3881846 3.44955379,72.1717843 C19.3491631,86.8471838 35.8036385,102.586313 26.4768595,83.2628267 Z" id="Path-19" fill="#5763AB" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-19)" />
|
||||
</g>
|
||||
<g id="sleeve">
|
||||
<use fill="url(#linearGradient-20)" fill-rule="evenodd" ns1:href="#path-21" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-22)" ns1:href="#path-21" />
|
||||
</g>
|
||||
<path d="M277.118998,71.5913936 C277.118998,71.5913936 379.673163,31.0324812 393.537208,33.7138671 C407.40112,36.3951741 365.964615,83.6575117 357.486649,87.4711348 C349.008683,91.2849158 337.4858,100.588966 324.734995,100.920379 C311.984189,101.25195 282.675028,107.565069 282.675028,107.565069 L277.118998,71.5913936 Z" id="arm" fill="url(#linearGradient-23)" />
|
||||
<g id="leg" transform="translate(294.686901, 296.111748)">
|
||||
<mask id="mask-26" fill="white">
|
||||
<use ns1:href="#path-25" />
|
||||
</mask>
|
||||
<use id="Path-7" fill="url(#linearGradient-24)" ns1:href="#path-25" />
|
||||
<path d="M236.671156,108.800007 C236.671156,93.7353609 274.816424,14.2268459 285.030845,5.7268689 C291.840458,0.0602175617 285.133884,-2.35179575 264.911121,-1.50917104 C218.8415,46.3086312 192.781804,83.0783573 186.732033,108.800007 C177.657376,147.382483 236.671156,123.864654 236.671156,108.800007 Z" id="Path" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" opacity="0.300000012" mask="url(#mask-26)" />
|
||||
</g>
|
||||
<g id="neck" transform="translate(207.892439, 103.338109)">
|
||||
<mask id="mask-30" fill="white">
|
||||
<use ns1:href="#path-29" />
|
||||
</mask>
|
||||
<use id="Path-4" fill="url(#linearGradient-28)" ns1:href="#path-29" />
|
||||
<path d="M3.75252576,3.19261919 C3.75252576,9.49979504 27.4019056,36.4712707 40.1780516,43.8650255 C48.6954824,48.7941954 60.6269618,51.0303993 75.9724899,50.5736373 L72.4658045,14.2533367 L3.75252576,-3.09723455 C3.75252576,-3.10878263 3.75252576,-1.01216472 3.75252576,3.19261919 Z" id="Path-22" fill="#7B6ABA" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-30)" />
|
||||
</g>
|
||||
<g id="shirt" transform="translate(166.867945, 142.624642)">
|
||||
<mask id="mask-33" fill="white">
|
||||
<use ns1:href="#path-32" />
|
||||
</mask>
|
||||
<g id="Path-9">
|
||||
<use fill="#025AA2" ns1:href="#path-32" />
|
||||
<use fill="url(#linearGradient-31)" ns1:href="#path-32" />
|
||||
</g>
|
||||
</g>
|
||||
<path d="M404.144321,302.649906 C439.019466,270.636673 538.843848,208.678365 595.770779,199.216937 C628.382083,204.641613 713.249169,296.627607 713.249169,296.627607 C709.422386,300.660062 699.335615,336.41422 683.404461,347.653234 C643.281416,314.345432 601.449495,298.792941 590.216621,281.570548 C576.20564,290.100327 540.189326,315.00943 519.473153,351.60427 C498.75739,388.19911 485.014436,429.890807 461.406286,430.934436 C437.798135,431.978066 404.505253,434.674407 373.836733,414.941429 C356.025279,403.480606 304.745412,377.934963 329.657932,361.196779 C343.935295,351.60427 389.523703,316.070489 404.144321,302.649906 Z" id="leg" fill="url(#linearGradient-34)" />
|
||||
<path d="M268.202361,35.4722042 C270.564565,41.4337155 283.524895,67.5973433 284.773304,74.1189743 C286.021598,80.6408344 298.355375,124.143312 291.008244,130.842408 C283.660998,137.541733 261.629341,140.933613 255.47242,138.78834 C249.315384,136.643181 236.079068,135.268946 230.923325,126.220647 C226.960999,119.266524 214.372201,103.123643 211.070111,104.047972 C209.863747,106.527324 205.658889,109.176464 203.553309,107.474452 C194.455519,100.120489 186.657004,92.1559972 190.358809,74.1189743 C194.060615,56.0820658 207.039161,47.1830481 220.954386,41.3276261 C234.869611,35.4722042 265.840043,29.5108075 268.202361,35.4722042 Z" id="face" fill="#FABFA8" />
|
||||
<g id="arm" transform="translate(55.005325, 87.822350)">
|
||||
<mask id="mask-37" fill="white">
|
||||
<use ns1:href="#path-36" />
|
||||
</mask>
|
||||
<use id="Path-13" fill="url(#linearGradient-35)" ns1:href="#path-36" />
|
||||
<path d="M20.9357307,10.3300824 C24.4799379,11.6197539 96.3756542,42.9506507 114.163568,38.6108732 C126.022177,35.7176882 111.24641,41.1863916 69.8362671,55.0169834 C34.8731047,24.365935 18.5729259,9.47030132 20.9357307,10.3300824 Z" id="Path-24" fill="#DBA28C" opacity="0.5" mask="url(#mask-37)" />
|
||||
</g>
|
||||
<g id="hair">
|
||||
<use fill="url(#linearGradient-38)" fill-rule="evenodd" ns1:href="#path-39" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-40)" ns1:href="#path-39" />
|
||||
</g>
|
||||
<g id="sleeve">
|
||||
<use fill="url(#linearGradient-20)" fill-rule="evenodd" ns1:href="#path-41" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-42)" ns1:href="#path-41" />
|
||||
</g>
|
||||
<g id="cushion" transform="translate(56.937167, 111.816619)">
|
||||
<g id="Mask-by-Oval">
|
||||
<g id="Oval-3-+-Oval-3-Copy-+-Oval-3-Copy-2-+-Oval-3-Copy-4-+-Oval-3-Copy-3-Mask">
|
||||
<mask id="mask-44" fill="white">
|
||||
<use ns1:href="#path-43" />
|
||||
</mask>
|
||||
<use id="Mask" fill-opacity="0" fill="#000000" ns1:href="#path-43" />
|
||||
<g id="Oval-3" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-45" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-46)" ns1:href="#path-45" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-47" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-48)" ns1:href="#path-47" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-2" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-49" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-50)" ns1:href="#path-49" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-4" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-51" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-52)" ns1:href="#path-51" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-3" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-53" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-54)" ns1:href="#path-53" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M218,210.830938 C218,210.830938 232.708406,209.24795 234.472265,208.122078 C236.236185,206.996205 241.240268,214.02846 241.240268,214.02846 L237.240268,215.057639 L227.240268,218.10555 L218,210.830938 Z" id="pocket" fill="url(#linearGradient-55)" />
|
||||
</g>
|
||||
<g id="Group-4" transform="translate(1305.000000, 27.000000) scale(1, -1) translate(-1305.000000, -27.000000) translate(1251.000000, 0.000000)" fill="#5763AB" fill-rule="nonzero">
|
||||
<path d="M105.164005,45.6352861 C107.022285,46.8298948 107.560297,49.3047502 106.365688,51.1630304 C105.17108,53.0213105 102.696224,53.5593226 100.837944,52.3647139 L30.8379441,7.3647139 C28.9796639,6.17010522 28.4416518,3.69524981 29.6362605,1.83696963 C30.8308692,-0.0213105406 33.3057246,-0.559322586 35.1640048,0.635286098 L105.164005,45.6352861 Z" id="Path-44" />
|
||||
<path d="M44.3730582,45.7800386 C46.1515384,47.0904978 46.5309445,49.5945779 45.2204853,51.3730582 C43.9100262,53.1515384 41.4059461,53.5309445 39.6274658,52.2204853 L1.62746585,24.2204853 C-0.151014401,22.9100262 -0.530420481,20.4059461 0.780038648,18.6274658 C2.09049778,16.8489856 4.5945779,16.4695795 6.37305815,17.7800386 L44.3730582,45.7800386 Z" id="Path-44-Copy" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 31 KiB |
280
media/images/best-web-development-sweden.width-800.svg
Normal file
@@ -0,0 +1,280 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:ns1="http://www.w3.org/1999/xlink" width="800" height="412" viewBox="0.0 0.0 1358.0 701.0" version="1.1">
|
||||
|
||||
<title>best-web-development-sweden@2x</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<polygon id="path-1" points="0.962868649 0.880108503 21.1824401 0.880108503 21.1824401 263.178848 0.962868649 263.178848" />
|
||||
<polygon id="path-3" points="-66.4358301 263.09523 88.5810118 263.09523 88.5810118 283.333302 -66.4358301 283.333302" />
|
||||
<polygon id="path-5" points="-123.243281 -19.2743822 146.351234 -19.2743822 146.351234 0.963702438 -123.243281 0.963702438" />
|
||||
<linearGradient x1="93.3958167%" y1="100%" x2="47.2239242%" y2="13.4126393%" id="linearGradient-7">
|
||||
<stop stop-color="#C6C9DC" offset="0%" />
|
||||
<stop stop-color="#FCFDFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<polygon id="path-8" points="0.962936047 141.630301 29.2576186 0.927463662 192.567566 3.81858736 165.608079 141.630301" />
|
||||
<linearGradient x1="0%" y1="71.6702355%" x2="104.617679%" y2="57.107133%" id="linearGradient-10">
|
||||
<stop stop-color="#54CBD1" offset="0%" />
|
||||
<stop stop-color="#57EBF3" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="42.0546178%" cy="45.5410746%" fx="42.0546178%" fy="45.5410746%" r="40.697833%" gradientTransform="translate(0.420546,0.455411),scale(0.938979,1.000000),rotate(-69.910157),scale(1.000000,1.538504),translate(-0.420546,-0.455411)" id="radialGradient-11">
|
||||
<stop stop-color="#5763AB" offset="0%" />
|
||||
<stop stop-color="#323C77" offset="100%" />
|
||||
</radialGradient>
|
||||
<radialGradient cx="52.9469765%" cy="28.6240847%" fx="52.9469765%" fy="28.6240847%" r="54.1473232%" gradientTransform="translate(0.529470,0.286241),scale(0.837410,1.000000),rotate(108.260519),scale(1.000000,3.925275),translate(-0.529470,-0.286241)" id="radialGradient-12">
|
||||
<stop stop-color="#EDE9F5" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</radialGradient>
|
||||
<filter x="-49.1%" y="-58.6%" width="198.2%" height="217.2%" filterUnits="objectBoundingBox" id="filter-13">
|
||||
<feGaussianBlur stdDeviation="36.78125" in="SourceGraphic" />
|
||||
</filter>
|
||||
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-14">
|
||||
<stop stop-color="#323C78" offset="0%" />
|
||||
<stop stop-color="#3C4681" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M4.00405319,43.3626991 C2.10004146,34.6822469 -0.764213708,28.2253388 2.10004146,16.50728 C4.96429662,4.78922132 37.9203107,-1.85217394 42.0782419,1.90096147 C46.2363242,5.65402659 45.5596345,7.66286276 62.0315956,16.4111359 C78.5035568,25.1593388 125.717667,35.3343122 135.823424,46.6829048 C145.929181,58.031427 147.810219,65.5350272 126.806991,65.5350272 L61.8394865,65.5350272 C50.179474,61.3086208 46.2576361,59.0324365 39.7210884,55.1201854 C38.3879628,60.0224119 39.7210884,64.1968807 39.7210884,64.1968807 L11.7422277,64.1968807 C11.7422277,64.1968807 5.90791377,52.043081 4.00405319,43.3626991 Z" id="path-15" />
|
||||
<linearGradient x1="78.2262224%" y1="24.9293251%" x2="50%" y2="123.255884%" id="linearGradient-17">
|
||||
<stop stop-color="#323C78" offset="0%" />
|
||||
<stop stop-color="#424C8C" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M17.3039278,73.2095411 C11.1044075,67.3568399 5.34318273,63.7837206 1.28920291,52.9535115 C-2.76463153,42.1231195 19.8156595,19.0956291 25.1438221,19.8285087 C30.47213,20.5614797 31.019745,22.5181116 48.8225415,20.5719977 C66.6256287,18.6258838 98.4688573,-3.0270345 112.621516,0.519012264 C126.774176,4.06524195 139.478787,4.13758785 122.802331,15.4590356 C114.964181,20.7803466 84.6179898,53.2106093 75.1987776,59.6054017 C63.6585928,62.5411271 59.3153234,62.8512724 52.0124321,63.274464 C53.6013445,67.8778036 56.9142195,70.4675308 56.9142195,70.4675308 L34.6991021,85.5490448 C34.6991021,85.5490448 23.5034481,79.0622423 17.3039278,73.2095411 Z" id="path-18" />
|
||||
<linearGradient x1="87.5676604%" y1="16.2692604%" x2="57.9084106%" y2="80.0144172%" id="linearGradient-20">
|
||||
<stop stop-color="#025AA2" offset="0%" />
|
||||
<stop stop-color="#025AA2" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M295.627195,147.906775 C338.893679,124.867538 363.548498,57.6108976 381.418624,38.6995968 C399.28887,19.7882961 407.179736,55.9697658 404.22561,66.621786 C401.271485,77.2738063 379.493171,148.86946 334.032874,206.69124 C334.032874,244.465219 290.037365,178.215797 295.627195,147.906775 Z" id="path-21" />
|
||||
<filter x="-5.9%" y="-3.5%" width="111.9%" height="107.0%" filterUnits="objectBoundingBox" id="filter-22">
|
||||
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.000825005467 0 0 0 0 0.17067045 0 0 0 0 0.462517679 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-23">
|
||||
<stop stop-color="#FABFA8" offset="0%" />
|
||||
<stop stop-color="#D9A08A" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-24">
|
||||
<stop stop-color="#434D8A" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M7.7535465,79.467341 C20.3549118,62.4662802 51.2064486,27.0038408 117.619689,14.0853099 C184.032536,1.16677905 245.029459,-10.8958645 356.98879,22.4099371 C366.206635,130.511947 376.71047,239.351992 387.311011,261.393861 C379.225217,271.233065 350.015706,278.750813 332.879823,278.750813 C326.663018,254.412575 307.182906,195.776709 297.286936,166.773973 C287.390572,137.770945 283.881531,101.768836 285.793544,89.0746323 C252.053857,98.6603369 182.940746,127.79697 158.709811,136.428188 C134.478481,145.059698 51.3402579,172.423588 23.8217181,150.393387 C-3.69721644,128.363477 -4.8482135,96.4684019 7.7535465,79.467341 Z" id="path-25" />
|
||||
<linearGradient x1="50%" y1="100%" x2="100%" y2="39.0738882%" id="linearGradient-27">
|
||||
<stop stop-color="#7B6ABA" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="16.3760257%" x2="50%" y2="76.5597425%" id="linearGradient-28">
|
||||
<stop stop-color="#DDA793" offset="0%" />
|
||||
<stop stop-color="#FABFA8" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M11.4223686,53.8418888 C8.08207902,37.0881009 1.63832081,7.72152756 0.351925921,1.44674201 C-0.934550799,-4.82804355 61.3875173,16.8463441 61.3875173,16.8463441 L69.2244608,57.9250687 L78.1947738,127.398027 C78.1947738,127.398027 14.7628219,70.5956768 11.4223686,53.8418888 Z" id="path-29" />
|
||||
<linearGradient x1="76.2362807%" y1="86.2362536%" x2="67.0850084%" y2="62.8012707%" id="linearGradient-31">
|
||||
<stop stop-color="#000000" stop-opacity="0.25" offset="0%" />
|
||||
<stop stop-color="#000000" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M106.791661,0.248552894 C106.791661,0.248552894 130.455304,4.0999216 132.085393,7.06050714 C147.473687,18.2378157 162.279077,51.5031174 168.600677,68.736671 C174.922277,85.9702246 187.044634,103.767565 197.972378,117.605008 C208.899861,131.442451 214.141806,134.297326 228.459872,144.53546 C242.777938,154.773593 248.037427,162.896352 239.934383,170.528851 C231.831339,178.161585 185.169967,175.197711 151.953091,216.701112 C122.935164,228.597484 122.971039,232.948039 114.349248,207.242414 C105.727718,181.536789 34.8349865,117.264856 23.3363838,108.205507 C11.8375192,99.1461575 16.2797386,90.4415239 13.3814549,62.693581 C10.4831712,34.9458731 -10.4235934,12.4472553 7.16119555,12.4472553 C21.0191709,17.6056698 34.5183959,7.06050714 40.6113906,7.06050714 C62.8107039,12.5874973 67.8656793,34.4368205 77.081373,29.8548781 C86.2970667,25.2729356 92.197855,25.2729356 92.197855,25.2729356 C94.3480002,29.635471 95.0395766,37.1075257 97.1897218,41.4700611 C99.3401289,45.8325965 108.336906,54.582568 112.335009,62.693581 L105.267103,39.090176 L107.238921,24.9769475 L106.791661,0.248552894 Z" id="path-32" />
|
||||
<linearGradient x1="51.1067829%" y1="56.1417042%" x2="86.1217409%" y2="30.0186078%" id="linearGradient-34">
|
||||
<stop stop-color="#6570B1" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="0%" y1="100%" x2="62.3886698%" y2="0%" id="linearGradient-35">
|
||||
<stop stop-color="#DDA48E" offset="0%" />
|
||||
<stop stop-color="#FABFA8" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M54.1259962,47.7073389 C70.9829679,54.5326244 125.574396,27.3648534 142.898063,29.7775086 C158.822482,31.9954812 138.61673,7.09131425 132.636467,2.68432188 C126.656204,-1.72255303 7.0832687,0.274720504 0.80700754,9.47231519 C-5.46908611,18.6699686 40.1464189,42.0469192 54.1259962,47.7073389 Z" id="path-36" />
|
||||
<linearGradient x1="110.009435%" y1="19.1840632%" x2="13.8996672%" y2="50%" id="linearGradient-38">
|
||||
<stop stop-color="#482D20" offset="0%" />
|
||||
<stop stop-color="#050504" offset="100%" />
|
||||
</linearGradient>
|
||||
<path d="M218.351692,74.2173318 C218.351692,74.2173318 210.215457,61.8549617 216.504964,49.5938587 C222.79447,37.3327556 266,35 266,35 C266,35 278,5 251,1 C224,-3 221.612427,7.85051356 203.173211,15.3340471 C184.733994,22.8177664 169.683178,42.9540924 172.932372,74.2173318 C176.181565,105.480571 205.18408,131.078251 214.414588,135.788185 C211.730627,117.313194 211.611226,108.824796 211.611226,103.67932 C201.023135,108.571535 188.690618,84.309836 195.870789,77.9270461 C209.587105,65.7339498 216.504964,93.5058026 216.504964,93.5058026 C216.504964,93.5058026 218.351692,89.5515611 221.612427,85.8039413 C220.370113,79.1153068 218.351692,74.2173318 218.351692,74.2173318 Z" id="path-39" />
|
||||
<filter x="-16.1%" y="-11.4%" width="132.2%" height="122.9%" filterUnits="objectBoundingBox" id="filter-40">
|
||||
<feGaussianBlur stdDeviation="9" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="13" dy="12" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13988904 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M162.493394,151.288531 C134.019625,135.63564 77.1415596,91.1348981 62.1918016,94.7669733 C47.2422063,98.3990486 51.1218056,105.14626 51.1218056,120.622338 C51.1218056,136.098581 129.252331,188.361645 141.282098,214.222113 C146.43174,225.292189 159.624818,252.637458 183.240831,248.181737 C206.856681,243.726016 199.692642,220.259438 194.602875,201.331555 C188.620043,179.082419 180.027003,160.92731 162.493394,151.288531 Z" id="path-41" />
|
||||
<filter x="-10.1%" y="-9.7%" width="120.1%" height="119.5%" filterUnits="objectBoundingBox" id="filter-42">
|
||||
<feGaussianBlur stdDeviation="6" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="18" dy="-8" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.00392156863 0 0 0 0 0.278431373 0 0 0 0 0.501960784 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M182.408255,305.255012 C312.694417,386.669283 447.251019,395.566339 492.494172,323.160855 C546.828869,217.608904 360.519372,263.280276 230.233209,181.866005 C99.9464644,100.452132 103.166738,32.4947781 13.2985516,0.130422418 C-31.9440202,72.5363044 52.1215103,223.841138 182.408255,305.255012 Z" id="path-43" />
|
||||
<path d="M-50.646727,202.478338 C17.355951,246.641031 95.2545331,247.376512 123.343996,204.121188 C151.433763,160.865863 119.07752,89.9995404 51.074842,45.836848 C-16.927836,1.67415564 -94.8264181,0.938425398 -122.916186,44.1939987 C-151.005648,87.4493236 -118.64971,158.315646 -50.646727,202.478338 Z" id="path-45" />
|
||||
<filter x="-11.3%" y="-13.5%" width="122.6%" height="126.9%" filterUnits="objectBoundingBox" id="filter-46">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-27.5" dy="-39.3" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M187.922615,378.503665 C238.038252,355.133714 253.61836,282.473728 222.721315,216.213131 C191.824271,149.952533 126.150375,115.182903 76.0344918,138.552854 C25.9186092,161.922804 10.3387468,234.58279 41.2357917,300.843388 C72.1328365,367.103986 137.806732,401.873615 187.922615,378.503665 Z" id="path-47" />
|
||||
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-48">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-14.9" dy="-24.9" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M317.890666,490.182748 C368.006303,466.812797 383.586411,394.152812 352.689366,327.892214 C321.792322,261.631616 256.118426,226.861986 206.002543,250.231937 C155.88666,273.601887 140.306798,346.261873 171.203843,412.522471 C202.100888,478.783069 267.774784,513.552698 317.890666,490.182748 Z" id="path-49" />
|
||||
<filter x="-10.8%" y="-9.0%" width="121.5%" height="118.0%" filterUnits="objectBoundingBox" id="filter-50">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-24.9" dy="-12.7" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M560.49745,527.730026 C610.613332,504.360075 626.193195,431.700089 595.296395,365.439492 C564.39935,299.178894 498.725209,264.409264 448.609572,287.779215 C398.493689,311.149165 382.913827,383.809151 413.810872,450.069749 C444.707916,516.330347 510.381812,551.099976 560.49745,527.730026 Z" id="path-51" />
|
||||
<filter x="-7.9%" y="-6.6%" width="115.8%" height="113.2%" filterUnits="objectBoundingBox" id="filter-52">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-9.9" dy="12.6" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<path d="M388.833934,454.299677 C443.718672,461.038783 492.387509,432.488752 497.539116,390.531534 C502.690722,348.574317 462.373997,309.098051 407.489471,302.358944 C352.604945,295.619837 303.936107,324.169869 298.784713,366.126919 C293.633107,408.084136 333.94962,447.560402 388.833934,454.299677 Z" id="path-53" />
|
||||
<filter x="-10.0%" y="-12.9%" width="119.9%" height="125.9%" filterUnits="objectBoundingBox" id="filter-54">
|
||||
<feGaussianBlur stdDeviation="10.5" in="SourceAlpha" result="shadowBlurInner1" />
|
||||
<feOffset dx="-18.8" dy="2.6" in="shadowBlurInner1" result="shadowOffsetInner1" />
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1" />
|
||||
<feColorMatrix values="0 0 0 0 0.705882353 0 0 0 0 0.666666667 0 0 0 0 0.843137255 0 0 0 1 0" type="matrix" in="shadowInnerInner1" />
|
||||
</filter>
|
||||
<linearGradient x1="75.5386921%" y1="0%" x2="50%" y2="100%" id="linearGradient-55">
|
||||
<stop stop-color="#BB3043" offset="0%" />
|
||||
<stop stop-color="#F25267" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="StartUp" transform="translate(-47.000000, -4304.000000)">
|
||||
<g id="best-web-development-sweden" transform="translate(725.500000, 4651.000000) scale(-1, 1) translate(-725.500000, -4651.000000) translate(46.000000, 4303.000000)">
|
||||
<g id="laptop" transform="translate(855.000000, 258.000000)">
|
||||
<g id="table" opacity="0.784688794" transform="translate(124.168919, 159.941043)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use ns1:href="#path-1" />
|
||||
</mask>
|
||||
<use id="Rectangle-3" fill="#333C72" ns1:href="#path-1" />
|
||||
<mask id="mask-4" fill="white">
|
||||
<use ns1:href="#path-3" />
|
||||
</mask>
|
||||
<use id="Rectangle-2-copy" fill="#5763AB" ns1:href="#path-3" />
|
||||
<mask id="mask-6" fill="white">
|
||||
<use ns1:href="#path-5" />
|
||||
</mask>
|
||||
<use id="Rectangle-2" fill="#5763AB" ns1:href="#path-5" />
|
||||
</g>
|
||||
<polygon id="front" fill="#D2D2D2" points="80.8411739 140.666641 109.135983 0.927463662 272.445988 3.81858736 244.523719 140.666641" />
|
||||
<polygon id="bottom" fill="#D2D2D2" points="0.925769071 132.811437 255.092067 132.811437 255.092067 141.630366 8.6283312 141.630366" />
|
||||
<g id="back" transform="translate(89.506757, 0.000000)">
|
||||
<mask id="mask-9" fill="white">
|
||||
<use ns1:href="#path-8" />
|
||||
</mask>
|
||||
<use id="Shape-9" fill="url(#linearGradient-7)" ns1:href="#path-8" />
|
||||
<path d="M98.2094441,57.7868404 C106.185901,57.7868404 112.652061,63.1802118 112.652061,69.8333102 C112.652061,76.4864086 106.185901,81.879834 98.2094441,81.879834 C90.2330826,81.879834 83.7669227,76.4864086 83.7669227,69.8333102 C83.7669227,63.1802118 90.2330826,57.7868404 98.2094441,57.7868404 Z" id="Ellipse-5" fill-opacity="0.1" fill="#000000" mask="url(#mask-9)" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="message" transform="translate(1134.000000, 20.000000)">
|
||||
<g id="rocket">
|
||||
<g id="Group-7" transform="translate(70.111195, 64.264561) scale(-1, 1) rotate(-10.000000) translate(-70.111195, -64.264561) translate(9.111195, 9.764561)">
|
||||
<polygon id="Shape-5" fill="url(#linearGradient-10)" points="0.971974 66.588645 20.983268 40.339047 85.84713 81.095019 36.164094 23.760365 60.315702 0.96465 121.039372 108.03535" />
|
||||
<polygon id="Shape-6" fill="#4DBBC2" points="20.2932571 41.0298157 35.474159 38.9574604 88.6073512 83.1673752" />
|
||||
<polygon id="Shape-7" fill="#4DBBC2" points="34.7841318 38.9574247 36.8541788 23.7603283 87.2273122 81.7857491" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Person" transform="translate(0.000000, 75.000000)">
|
||||
<path d="M164.089593,563.097922 C285.92073,621.542865 464.798296,613.823139 545.037787,455.217337 C598.047976,353.164719 484.945462,230.96384 360.710277,145.991953 C249.207285,69.7291333 150.031499,52.4350939 91.8402222,95.3691007 C85.1950607,100.271776 73.3837847,99.3081683 68.0182405,105.979078 C-79.6822664,274.574945 42.2591359,504.652407 164.089593,563.097922 Z" id="chair" fill="url(#radialGradient-11)" />
|
||||
<path d="M239.345129,417.071637 C369.631579,498.485917 504.188158,507.382814 549.431044,434.977478 C591.409743,356.751355 489.569011,215.274312 359.282561,133.860032 C228.996111,52.4462233 115.478951,39.5415329 70.2354954,111.94734 C24.9931778,184.352676 109.058679,335.657828 239.345129,417.071637 Z" id="cushion" fill="url(#radialGradient-12)" />
|
||||
<path d="M268.78836,359.956512 C327.205524,396.481892 387.537307,400.47336 407.823079,367.989718 C426.64527,332.89466 380.98245,269.422962 322.565285,232.897583 C264.14812,196.372415 213.249883,190.582906 192.963857,223.066759 C172.67834,255.550402 210.371195,323.431344 268.78836,359.956512 Z" id="shadow" fill="#94B0D7" filter="url(#filter-13)" />
|
||||
<g id="shoe" transform="translate(640.156550, 554.756447)">
|
||||
<mask id="mask-16" fill="white">
|
||||
<use ns1:href="#path-15" />
|
||||
</mask>
|
||||
<use id="Path-17" fill="url(#linearGradient-14)" ns1:href="#path-15" />
|
||||
<path d="M4.07438743,57.6183138 C10.1020976,42.0870263 33.5945278,13.1115189 40.4011624,3.68183696 C44.9389187,-2.60461768 29.9043591,1.09992201 -4.70251657,14.795456 C-2.86972066,53.6982196 0.0559140052,67.9725055 4.07438743,57.6183138 Z" id="Path-21" fill="#3D82F0" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-16)" />
|
||||
</g>
|
||||
<g id="shoe" transform="translate(681.628328, 289.074499)">
|
||||
<mask id="mask-19" fill="white">
|
||||
<use ns1:href="#path-18" />
|
||||
</mask>
|
||||
<use id="Path-17-Copy" fill="url(#linearGradient-17)" ns1:href="#path-18" />
|
||||
<path d="M26.4768595,83.2628267 C17.1500804,63.9393405 26.7565233,20.3425332 22.5022349,16.4818273 C19.6660426,13.9080233 11.3134865,24.3078603 -2.5554333,47.6813383 C-9.15184812,54.2247026 -7.15018576,62.3881846 3.44955379,72.1717843 C19.3491631,86.8471838 35.8036385,102.586313 26.4768595,83.2628267 Z" id="Path-19" fill="#5763AB" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-19)" />
|
||||
</g>
|
||||
<g id="sleeve">
|
||||
<use fill="url(#linearGradient-20)" fill-rule="evenodd" ns1:href="#path-21" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-22)" ns1:href="#path-21" />
|
||||
</g>
|
||||
<path d="M277.118998,71.5913936 C277.118998,71.5913936 379.673163,31.0324812 393.537208,33.7138671 C407.40112,36.3951741 365.964615,83.6575117 357.486649,87.4711348 C349.008683,91.2849158 337.4858,100.588966 324.734995,100.920379 C311.984189,101.25195 282.675028,107.565069 282.675028,107.565069 L277.118998,71.5913936 Z" id="arm" fill="url(#linearGradient-23)" />
|
||||
<g id="leg" transform="translate(294.686901, 296.111748)">
|
||||
<mask id="mask-26" fill="white">
|
||||
<use ns1:href="#path-25" />
|
||||
</mask>
|
||||
<use id="Path-7" fill="url(#linearGradient-24)" ns1:href="#path-25" />
|
||||
<path d="M236.671156,108.800007 C236.671156,93.7353609 274.816424,14.2268459 285.030845,5.7268689 C291.840458,0.0602175617 285.133884,-2.35179575 264.911121,-1.50917104 C218.8415,46.3086312 192.781804,83.0783573 186.732033,108.800007 C177.657376,147.382483 236.671156,123.864654 236.671156,108.800007 Z" id="Path" fill="url(#linearGradient-27)" style="mix-blend-mode: multiply;" opacity="0.300000012" mask="url(#mask-26)" />
|
||||
</g>
|
||||
<g id="neck" transform="translate(207.892439, 103.338109)">
|
||||
<mask id="mask-30" fill="white">
|
||||
<use ns1:href="#path-29" />
|
||||
</mask>
|
||||
<use id="Path-4" fill="url(#linearGradient-28)" ns1:href="#path-29" />
|
||||
<path d="M3.75252576,3.19261919 C3.75252576,9.49979504 27.4019056,36.4712707 40.1780516,43.8650255 C48.6954824,48.7941954 60.6269618,51.0303993 75.9724899,50.5736373 L72.4658045,14.2533367 L3.75252576,-3.09723455 C3.75252576,-3.10878263 3.75252576,-1.01216472 3.75252576,3.19261919 Z" id="Path-22" fill="#7B6ABA" style="mix-blend-mode: multiply;" opacity="0.200000003" mask="url(#mask-30)" />
|
||||
</g>
|
||||
<g id="shirt" transform="translate(166.867945, 142.624642)">
|
||||
<mask id="mask-33" fill="white">
|
||||
<use ns1:href="#path-32" />
|
||||
</mask>
|
||||
<g id="Path-9">
|
||||
<use fill="#025AA2" ns1:href="#path-32" />
|
||||
<use fill="url(#linearGradient-31)" ns1:href="#path-32" />
|
||||
</g>
|
||||
</g>
|
||||
<path d="M404.144321,302.649906 C439.019466,270.636673 538.843848,208.678365 595.770779,199.216937 C628.382083,204.641613 713.249169,296.627607 713.249169,296.627607 C709.422386,300.660062 699.335615,336.41422 683.404461,347.653234 C643.281416,314.345432 601.449495,298.792941 590.216621,281.570548 C576.20564,290.100327 540.189326,315.00943 519.473153,351.60427 C498.75739,388.19911 485.014436,429.890807 461.406286,430.934436 C437.798135,431.978066 404.505253,434.674407 373.836733,414.941429 C356.025279,403.480606 304.745412,377.934963 329.657932,361.196779 C343.935295,351.60427 389.523703,316.070489 404.144321,302.649906 Z" id="leg" fill="url(#linearGradient-34)" />
|
||||
<path d="M268.202361,35.4722042 C270.564565,41.4337155 283.524895,67.5973433 284.773304,74.1189743 C286.021598,80.6408344 298.355375,124.143312 291.008244,130.842408 C283.660998,137.541733 261.629341,140.933613 255.47242,138.78834 C249.315384,136.643181 236.079068,135.268946 230.923325,126.220647 C226.960999,119.266524 214.372201,103.123643 211.070111,104.047972 C209.863747,106.527324 205.658889,109.176464 203.553309,107.474452 C194.455519,100.120489 186.657004,92.1559972 190.358809,74.1189743 C194.060615,56.0820658 207.039161,47.1830481 220.954386,41.3276261 C234.869611,35.4722042 265.840043,29.5108075 268.202361,35.4722042 Z" id="face" fill="#FABFA8" />
|
||||
<g id="arm" transform="translate(55.005325, 87.822350)">
|
||||
<mask id="mask-37" fill="white">
|
||||
<use ns1:href="#path-36" />
|
||||
</mask>
|
||||
<use id="Path-13" fill="url(#linearGradient-35)" ns1:href="#path-36" />
|
||||
<path d="M20.9357307,10.3300824 C24.4799379,11.6197539 96.3756542,42.9506507 114.163568,38.6108732 C126.022177,35.7176882 111.24641,41.1863916 69.8362671,55.0169834 C34.8731047,24.365935 18.5729259,9.47030132 20.9357307,10.3300824 Z" id="Path-24" fill="#DBA28C" opacity="0.5" mask="url(#mask-37)" />
|
||||
</g>
|
||||
<g id="hair">
|
||||
<use fill="url(#linearGradient-38)" fill-rule="evenodd" ns1:href="#path-39" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-40)" ns1:href="#path-39" />
|
||||
</g>
|
||||
<g id="sleeve">
|
||||
<use fill="url(#linearGradient-20)" fill-rule="evenodd" ns1:href="#path-41" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-42)" ns1:href="#path-41" />
|
||||
</g>
|
||||
<g id="cushion" transform="translate(56.937167, 111.816619)">
|
||||
<g id="Mask-by-Oval">
|
||||
<g id="Oval-3-+-Oval-3-Copy-+-Oval-3-Copy-2-+-Oval-3-Copy-4-+-Oval-3-Copy-3-Mask">
|
||||
<mask id="mask-44" fill="white">
|
||||
<use ns1:href="#path-43" />
|
||||
</mask>
|
||||
<use id="Mask" fill-opacity="0" fill="#000000" ns1:href="#path-43" />
|
||||
<g id="Oval-3" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-45" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-46)" ns1:href="#path-45" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-47" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-48)" ns1:href="#path-47" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-2" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-49" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-50)" ns1:href="#path-49" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-4" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-51" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-52)" ns1:href="#path-51" />
|
||||
</g>
|
||||
<g id="Oval-3-Copy-3" mask="url(#mask-44)">
|
||||
<use fill="#EDE9F5" fill-rule="evenodd" ns1:href="#path-53" />
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-54)" ns1:href="#path-53" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M218,210.830938 C218,210.830938 232.708406,209.24795 234.472265,208.122078 C236.236185,206.996205 241.240268,214.02846 241.240268,214.02846 L237.240268,215.057639 L227.240268,218.10555 L218,210.830938 Z" id="pocket" fill="url(#linearGradient-55)" />
|
||||
</g>
|
||||
<g id="Group-4" transform="translate(1305.000000, 27.000000) scale(1, -1) translate(-1305.000000, -27.000000) translate(1251.000000, 0.000000)" fill="#5763AB" fill-rule="nonzero">
|
||||
<path d="M105.164005,45.6352861 C107.022285,46.8298948 107.560297,49.3047502 106.365688,51.1630304 C105.17108,53.0213105 102.696224,53.5593226 100.837944,52.3647139 L30.8379441,7.3647139 C28.9796639,6.17010522 28.4416518,3.69524981 29.6362605,1.83696963 C30.8308692,-0.0213105406 33.3057246,-0.559322586 35.1640048,0.635286098 L105.164005,45.6352861 Z" id="Path-44" />
|
||||
<path d="M44.3730582,45.7800386 C46.1515384,47.0904978 46.5309445,49.5945779 45.2204853,51.3730582 C43.9100262,53.1515384 41.4059461,53.5309445 39.6274658,52.2204853 L1.62746585,24.2204853 C-0.151014401,22.9100262 -0.530420481,20.4059461 0.780038648,18.6274658 C2.09049778,16.8489856 4.5945779,16.4695795 6.37305815,17.7800386 L44.3730582,45.7800386 Z" id="Path-44-Copy" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 31 KiB |
BIN
media/images/buslogic.max-165x165.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
media/images/buslogic.max-800x600.png
Normal file
|
After Width: | Height: | Size: 232 KiB |
BIN
media/images/buslogic.width-800.png
Normal file
|
After Width: | Height: | Size: 232 KiB |
62
media/images/code-reviews.max-165x165.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:#92DEE2;}
|
||||
.st1{fill:#FFFFFF;stroke:#5763AB;}
|
||||
.st2{fill:none;stroke:#5763AB;}
|
||||
.st3{fill:none;stroke:#646EF2;stroke-width:2;}
|
||||
.st4{fill:none;stroke:#646EF2;}
|
||||
.st5{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
|
||||
.st6{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st7{fill:none;}
|
||||
.st8{fill:#5763AB;}
|
||||
</style>
|
||||
<title>Code_reviews</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Code_reviews">
|
||||
<g id="Group-42" transform="translate(18.000000, 14.000000)">
|
||||
<g id="Group-38">
|
||||
<circle id="Oval-7" class="st0" cx="55" cy="55" r="55" />
|
||||
<g id="Group-35" transform="translate(9.000000, 2.000000)">
|
||||
<g id="Group-34">
|
||||
<polygon id="Path-10" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_1_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_2_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_3_" class="st2" d="M9,39.5h14" />
|
||||
<polyline id="Path-11" class="st3" points="19,46.4 23.2,53 35,38 " />
|
||||
<path id="Path-2_4_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
<g id="Group-34_1_" transform="translate(13.000000, 9.000000)">
|
||||
<polygon id="Path-10_1_" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2_5_" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_6_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_7_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_8_" class="st2" d="M9,39.5h14" />
|
||||
<polyline id="Path-11_1_" class="st3" points="19,46.4 23.2,53 35,38 " />
|
||||
<path id="Path-2_9_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
<g id="Group-34_2_" transform="translate(29.000000, 14.000000)">
|
||||
<polygon id="Path-10_2_" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2_10_" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_11_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_12_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_13_" class="st4" d="M9,39.5h14" />
|
||||
<path id="Path-2_14_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-40" transform="translate(37.000000, 43.000000)">
|
||||
<g id="Group-39" transform="translate(4.000000, 2.000000)">
|
||||
<ellipse id="Oval-8" class="st5" cx="30.2" cy="30.1" rx="30.2" ry="30.1" />
|
||||
<path id="Path-19" class="st6" d="M55.2,47.7l31.5,19" />
|
||||
</g>
|
||||
<g id="ic_code">
|
||||
<polygon id="Bounds" class="st7" points="0,0 63,0 63,63 0,63 " />
|
||||
<path id="Icon" class="st8" d="M29.1,42.8l-10-10.3l10-10.4L26.1,19L13,32.5L26.1,46L29.1,42.8L29.1,42.8z M39.9,42.8l10-10.3 l-10-10.4l3.1-3.1L56,32.5L42.9,46L39.9,42.8L39.9,42.8z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
62
media/images/code-reviews.max-800x600.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:#92DEE2;}
|
||||
.st1{fill:#FFFFFF;stroke:#5763AB;}
|
||||
.st2{fill:none;stroke:#5763AB;}
|
||||
.st3{fill:none;stroke:#646EF2;stroke-width:2;}
|
||||
.st4{fill:none;stroke:#646EF2;}
|
||||
.st5{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
|
||||
.st6{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st7{fill:none;}
|
||||
.st8{fill:#5763AB;}
|
||||
</style>
|
||||
<title>Code_reviews</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Code_reviews">
|
||||
<g id="Group-42" transform="translate(18.000000, 14.000000)">
|
||||
<g id="Group-38">
|
||||
<circle id="Oval-7" class="st0" cx="55" cy="55" r="55" />
|
||||
<g id="Group-35" transform="translate(9.000000, 2.000000)">
|
||||
<g id="Group-34">
|
||||
<polygon id="Path-10" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_1_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_2_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_3_" class="st2" d="M9,39.5h14" />
|
||||
<polyline id="Path-11" class="st3" points="19,46.4 23.2,53 35,38 " />
|
||||
<path id="Path-2_4_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
<g id="Group-34_1_" transform="translate(13.000000, 9.000000)">
|
||||
<polygon id="Path-10_1_" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2_5_" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_6_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_7_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_8_" class="st2" d="M9,39.5h14" />
|
||||
<polyline id="Path-11_1_" class="st3" points="19,46.4 23.2,53 35,38 " />
|
||||
<path id="Path-2_9_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
<g id="Group-34_2_" transform="translate(29.000000, 14.000000)">
|
||||
<polygon id="Path-10_2_" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2_10_" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_11_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_12_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_13_" class="st4" d="M9,39.5h14" />
|
||||
<path id="Path-2_14_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-40" transform="translate(37.000000, 43.000000)">
|
||||
<g id="Group-39" transform="translate(4.000000, 2.000000)">
|
||||
<ellipse id="Oval-8" class="st5" cx="30.2" cy="30.1" rx="30.2" ry="30.1" />
|
||||
<path id="Path-19" class="st6" d="M55.2,47.7l31.5,19" />
|
||||
</g>
|
||||
<g id="ic_code">
|
||||
<polygon id="Bounds" class="st7" points="0,0 63,0 63,63 0,63 " />
|
||||
<path id="Icon" class="st8" d="M29.1,42.8l-10-10.3l10-10.4L26.1,19L13,32.5L26.1,46L29.1,42.8L29.1,42.8z M39.9,42.8l10-10.3 l-10-10.4l3.1-3.1L56,32.5L42.9,46L39.9,42.8L39.9,42.8z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
62
media/images/code-reviews.width-800.svg
Normal file
@@ -0,0 +1,62 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:#92DEE2;}
|
||||
.st1{fill:#FFFFFF;stroke:#5763AB;}
|
||||
.st2{fill:none;stroke:#5763AB;}
|
||||
.st3{fill:none;stroke:#646EF2;stroke-width:2;}
|
||||
.st4{fill:none;stroke:#646EF2;}
|
||||
.st5{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
|
||||
.st6{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st7{fill:none;}
|
||||
.st8{fill:#5763AB;}
|
||||
</style>
|
||||
<title>Code_reviews</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Code_reviews">
|
||||
<g id="Group-42" transform="translate(18.000000, 14.000000)">
|
||||
<g id="Group-38">
|
||||
<circle id="Oval-7" class="st0" cx="55" cy="55" r="55" />
|
||||
<g id="Group-35" transform="translate(9.000000, 2.000000)">
|
||||
<g id="Group-34">
|
||||
<polygon id="Path-10" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_1_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_2_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_3_" class="st2" d="M9,39.5h14" />
|
||||
<polyline id="Path-11" class="st3" points="19,46.4 23.2,53 35,38 " />
|
||||
<path id="Path-2_4_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
<g id="Group-34_1_" transform="translate(13.000000, 9.000000)">
|
||||
<polygon id="Path-10_1_" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2_5_" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_6_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_7_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_8_" class="st2" d="M9,39.5h14" />
|
||||
<polyline id="Path-11_1_" class="st3" points="19,46.4 23.2,53 35,38 " />
|
||||
<path id="Path-2_9_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
<g id="Group-34_2_" transform="translate(29.000000, 14.000000)">
|
||||
<polygon id="Path-10_2_" class="st1" points="0,0 44,0 44,58 0,58 " />
|
||||
<path id="Path-2_10_" class="st2" d="M9,18.5h14" />
|
||||
<path id="Path-2_11_" class="st2" d="M9,25.5h14" />
|
||||
<path id="Path-2_12_" class="st2" d="M9,32.5h14" />
|
||||
<path id="Path-2_13_" class="st4" d="M9,39.5h14" />
|
||||
<path id="Path-2_14_" class="st2" d="M9,10.5h14" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-40" transform="translate(37.000000, 43.000000)">
|
||||
<g id="Group-39" transform="translate(4.000000, 2.000000)">
|
||||
<ellipse id="Oval-8" class="st5" cx="30.2" cy="30.1" rx="30.2" ry="30.1" />
|
||||
<path id="Path-19" class="st6" d="M55.2,47.7l31.5,19" />
|
||||
</g>
|
||||
<g id="ic_code">
|
||||
<polygon id="Bounds" class="st7" points="0,0 63,0 63,63 0,63 " />
|
||||
<path id="Icon" class="st8" d="M29.1,42.8l-10-10.3l10-10.4L26.1,19L13,32.5L26.1,46L29.1,42.8L29.1,42.8z M39.9,42.8l10-10.3 l-10-10.4l3.1-3.1L56,32.5L42.9,46L39.9,42.8L39.9,42.8z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
34
media/images/coder-awards.max-165x165.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#92DEE2;}
|
||||
.st2{fill:#5763AB;}
|
||||
.st3{fill:none;}
|
||||
</style>
|
||||
<title>High_quality_code</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="High_quality_code">
|
||||
<g id="Group-36" transform="translate(30.000000, 1.000000)">
|
||||
<path id="Path-17" class="st0" d="M12.7,55.9C7.5,64.3,4.9,69.8,5,72.2c0.2,3.6,31,14.9,33.9,14.1c1.9-0.6,5-6.4,9.2-17.4 L12.7,55.9z" />
|
||||
<path id="Path-17_1_" class="st0" d="M50,68.7c3.3,9.6,5.8,15.3,7.5,17C60,88.3,91.3,76.3,93,73.8c1.1-1.7-1.4-7.7-7.4-17.9 L50,68.7z" />
|
||||
<path id="Path-17_2_" class="st0" d="M46.6,43.7c-1-9.9-2.4-15.7-4-17.5c-2.4-2.8-35.7,9-37.4,11.4c-1.2,1.6,1.2,7.5,7,17.6 L46.6,43.7z" />
|
||||
<path id="Path-17_3_" class="st0" d="M85.3,55.7c5.7-8.1,8.5-13.4,8.5-15.8c0-3.6-32.8-16.6-35.7-16c-2,0.5-4,6.4-6.3,17.9 L85.3,55.7z" />
|
||||
<polygon id="Path-18" class="st0" points="49,69 85.5,55.8 49.8,44 13,55.8 " />
|
||||
<g id="Group-19" transform="translate(3.000000, 0.000000)">
|
||||
<g id="Page-1" transform="translate(0.000000, 24.000000)">
|
||||
<g id="Group-3">
|
||||
<path id="Fill-1" class="st1" d="M96.9,106.2c0-0.1,0.1-0.2,0.1-0.3c-1.9-2.5-3.8-5.1-5.7-7.6c-0.1-0.2-0.5-0.3-0.8-0.3 c-0.8,0-1.6,0.1-2.4,0.1c-1,0.1-2.4,1.7-2.2,2.6c0.5,2.9,1.1,5.7,1.7,8.6c0,0.2,0.2,0.4,0.3,0.7c0.9-1.4,1.8-2.6,2.6-3.8 c0.5-0.7,1-0.9,1.8-0.7C93.9,105.7,95.4,105.9,96.9,106.2 M73.2,111c0.6-3.2,1.1-6.1,1.7-8.9c0.3-1.4,0.2-2.6-1-3.4 c-0.4-0.2-0.8-0.5-1.3-0.6s-1.2,0-1.7-0.1c-0.7-0.2-1.1,0.1-1.5,0.7c-1.3,1.9-2.6,3.8-3.9,5.7c-0.5,0.7-0.9,1.3-1.5,2.2 c0.5,0,0.9,0,1.2-0.1c1.1-0.2,2.2-0.4,3.3-0.6c0.9-0.2,1.5-0.1,2,0.8C71.2,108.1,72.1,109.4,73.2,111 M73.7,65.8 c-5.8-1.1-9.6,2.4-9.1,8.2c0,0.4-0.3,0.9-0.6,1.2c-4,3-4.1,8.6,0,11.6c0.6,0.4,0.7,0.8,0.6,1.5c-0.8,4.9,3.2,8.9,8.1,8.1 c0.7-0.1,1.1,0,1.5,0.6c2.9,4,8.5,4,11.5,0c0.4-0.6,0.8-0.8,1.5-0.7c5,0.8,8.9-3.1,8.1-8.2c-0.1-0.7,0-1,0.6-1.4 c4.1-2.9,4.1-8.7,0-11.6c-0.6-0.4-0.6-0.7-0.5-1.4c0.8-4.9-3.1-8.9-8-8.1c-0.9,0.1-1.2-0.1-1.7-0.8c-1.2-1.7-2.9-2.7-5.1-2.9 C77.5,61.8,75.3,63.2,73.7,65.8 M45,18.8c-0.1-0.3-0.1-0.5-0.2-0.6c-2.1-4.7-4.3-9.5-6.4-14.2c-0.8-1.8-2.4-2.4-4.2-1.7 c-10,3.5-20.1,6.9-30.1,10.4c-2,0.7-2.5,2-1.7,3.9c2,4.5,4.1,9,6.1,13.6c0.4,1,0.8,1,1.7,0.7c8.3-2.9,16.6-5.8,25-8.7 C38.4,21,41.7,19.9,45,18.8 M47,45.8c2.3,5.1,4.4,10,6.6,15c0.9,2,2.4,2.7,4.5,1.9c10-3.5,20-7.1,30-10.7 c1.9-0.7,2.5-2,1.6-3.9c-1.8-4.2-3.7-8.4-5.5-12.5c-0.4-0.9-0.8-1.7-1.2-2.6C71,37.3,59,41.5,47,45.8 M9.1,33 c-0.2,0.4-0.4,0.7-0.5,1c-2.1,4.7-4.1,9.4-6.2,14c-0.9,2-0.3,3.3,1.7,4c10,3.6,20,7.1,30,10.7c2,0.7,3.5,0.1,4.4-1.9 c2.1-4.7,4.2-9.5,6.3-14.2c0.1-0.2,0.1-0.5,0.2-0.8C33,41.5,21.1,37.3,9.1,33 M82.9,31c0.2-0.3,0.4-0.6,0.5-0.9 c2.1-4.5,4.1-9,6.2-13.6c1-2.1,0.5-3.3-1.8-4C77.9,9.1,68,5.7,58.1,2.3c-2.2-0.8-3.6-0.1-4.6,2c-2,4.4-4,8.8-6,13.2 c-0.2,0.4-0.3,0.7-0.5,1.2C59,22.8,70.9,26.9,82.9,31 M81,32.1c-0.6-0.2-0.8-0.4-1-0.5c-11.1-3.8-22.2-7.7-33.3-11.5 c-0.5-0.2-1.2-0.1-1.7,0c-11,3.8-22,7.6-32.9,11.4c-0.3,0.1-0.6,0.3-1.1,0.5c0.5,0.2,0.7,0.3,0.9,0.4 c11,3.8,22.1,7.7,33.1,11.4c0.6,0.2,1.4,0.2,2,0c7.9-2.7,15.9-5.5,23.8-8.2C74.1,34.5,77.4,33.3,81,32.1 M50.5,6.3 C51,5.2,51.5,4.1,52,3c1.2-2.6,3.6-3.6,6.4-2.7C67.2,3.4,76.1,6.5,85,9.6c1.2,0.4,2.4,0.8,3.6,1.3c2.6,0.9,3.6,3.2,2.4,5.8 c-2.1,4.8-4.2,9.5-6.4,14.3c-0.4,0.8-0.4,1.4,0,2.2c2.1,4.6,4.2,9.2,6.2,13.8c1.4,3.2,0.5,5.3-2.8,6.4c-2.8,1-2.8,1-2.8,3.9 c0,0.8,0.1,1.6,0,2.3c-0.3,1.8,0.4,3.2,1.9,4.2c0.3,0.2,0.6,0.3,0.9,0.3c5.7-0.2,9.7,3.8,9.4,9.4c0,0.3,0.2,0.8,0.5,1.1 c4.1,3.9,4.1,9.4,0,13.3c-0.2,0.2-0.5,0.6-0.5,0.9c0.2,3.8-1.3,6.7-4.6,8.5c-0.1,0-0.1,0.1-0.3,0.3c2.7,3.7,5.4,7.3,8.3,11.3 c-2.6-0.4-4.9-0.7-7.2-1.2c-1.3-0.3-2.1-0.1-2.8,1.1c-1.2,2-2.6,3.9-4.1,6.1c-0.9-4.8-1.8-9.3-2.7-13.9c-2.5,1-4.8,1.1-7.3,0 c-0.9,4.6-1.8,9.1-2.7,13.8c-0.3-0.3-0.5-0.5-0.6-0.7c-1.3-1.8-2.6-3.7-3.8-5.6c-0.5-0.9-1.1-1.1-2.1-0.9 c-2.1,0.4-4.3,0.7-6.4,1.1c-0.3,0-0.6,0-1.2,0.1c2.8-3.9,5.5-7.5,8.2-11.2c-3.9-2.9-4.3-3.5-5-8.2c-0.3,0.1-0.6,0.2-1,0.3 c-4.2,1.4-8.3,2.9-12.5,4.3c-2.7,0.9-5.4,0.9-8.1,0C31.3,90.4,21,86.8,10.6,83.3c-2.9-1-4.4-3.1-4.4-6.2c0-7.2,0-14.4,0-21.6 c0-0.8-0.2-1.3-1-1.5s-1.5-0.5-2.3-0.8c-2.6-1-3.6-3.2-2.5-5.8c2.1-4.8,4.2-9.5,6.4-14.3c0.4-0.8,0.3-1.4,0-2.2 c-2.1-4.6-4.2-9.3-6.2-14c-1.3-3-0.4-5.2,2.7-6.2c9.9-3.5,19.9-6.9,29.8-10.4c2.9-1,5.2,0,6.5,2.8c1.9,4.3,3.8,8.5,5.7,12.8 c0.1,0.2,0.2,0.5,0.5,0.9C47.4,13.2,49,9.7,50.5,6.3z" />
|
||||
<path id="Fill-4" class="st2" d="M80.4,92C74.7,91.9,70,87,70,81c0-6.2,4.7-11,10.6-11C86.4,70,91,74.9,91,81 S86.2,92.1,80.4,92z" />
|
||||
</g>
|
||||
</g>
|
||||
<circle id="Oval-3" class="st2" cx="47" cy="29" r="28" />
|
||||
<g id="ic_code" transform="translate(17.000000, 0.000000)">
|
||||
<polygon id="Bounds" class="st3" points="0,0 58,0 58,58 0,58 " />
|
||||
<path id="Icon" class="st0" d="M24,38.2L14.7,29l9.3-9.2L21.2,17L9,29l12.2,12L24,38.2L24,38.2z M34,38.2l9.3-9.2L34,19.8 l2.8-2.8L49,29L36.8,41L34,38.2L34,38.2z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
34
media/images/coder-awards.max-800x600.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#92DEE2;}
|
||||
.st2{fill:#5763AB;}
|
||||
.st3{fill:none;}
|
||||
</style>
|
||||
<title>High_quality_code</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="High_quality_code">
|
||||
<g id="Group-36" transform="translate(30.000000, 1.000000)">
|
||||
<path id="Path-17" class="st0" d="M12.7,55.9C7.5,64.3,4.9,69.8,5,72.2c0.2,3.6,31,14.9,33.9,14.1c1.9-0.6,5-6.4,9.2-17.4 L12.7,55.9z" />
|
||||
<path id="Path-17_1_" class="st0" d="M50,68.7c3.3,9.6,5.8,15.3,7.5,17C60,88.3,91.3,76.3,93,73.8c1.1-1.7-1.4-7.7-7.4-17.9 L50,68.7z" />
|
||||
<path id="Path-17_2_" class="st0" d="M46.6,43.7c-1-9.9-2.4-15.7-4-17.5c-2.4-2.8-35.7,9-37.4,11.4c-1.2,1.6,1.2,7.5,7,17.6 L46.6,43.7z" />
|
||||
<path id="Path-17_3_" class="st0" d="M85.3,55.7c5.7-8.1,8.5-13.4,8.5-15.8c0-3.6-32.8-16.6-35.7-16c-2,0.5-4,6.4-6.3,17.9 L85.3,55.7z" />
|
||||
<polygon id="Path-18" class="st0" points="49,69 85.5,55.8 49.8,44 13,55.8 " />
|
||||
<g id="Group-19" transform="translate(3.000000, 0.000000)">
|
||||
<g id="Page-1" transform="translate(0.000000, 24.000000)">
|
||||
<g id="Group-3">
|
||||
<path id="Fill-1" class="st1" d="M96.9,106.2c0-0.1,0.1-0.2,0.1-0.3c-1.9-2.5-3.8-5.1-5.7-7.6c-0.1-0.2-0.5-0.3-0.8-0.3 c-0.8,0-1.6,0.1-2.4,0.1c-1,0.1-2.4,1.7-2.2,2.6c0.5,2.9,1.1,5.7,1.7,8.6c0,0.2,0.2,0.4,0.3,0.7c0.9-1.4,1.8-2.6,2.6-3.8 c0.5-0.7,1-0.9,1.8-0.7C93.9,105.7,95.4,105.9,96.9,106.2 M73.2,111c0.6-3.2,1.1-6.1,1.7-8.9c0.3-1.4,0.2-2.6-1-3.4 c-0.4-0.2-0.8-0.5-1.3-0.6s-1.2,0-1.7-0.1c-0.7-0.2-1.1,0.1-1.5,0.7c-1.3,1.9-2.6,3.8-3.9,5.7c-0.5,0.7-0.9,1.3-1.5,2.2 c0.5,0,0.9,0,1.2-0.1c1.1-0.2,2.2-0.4,3.3-0.6c0.9-0.2,1.5-0.1,2,0.8C71.2,108.1,72.1,109.4,73.2,111 M73.7,65.8 c-5.8-1.1-9.6,2.4-9.1,8.2c0,0.4-0.3,0.9-0.6,1.2c-4,3-4.1,8.6,0,11.6c0.6,0.4,0.7,0.8,0.6,1.5c-0.8,4.9,3.2,8.9,8.1,8.1 c0.7-0.1,1.1,0,1.5,0.6c2.9,4,8.5,4,11.5,0c0.4-0.6,0.8-0.8,1.5-0.7c5,0.8,8.9-3.1,8.1-8.2c-0.1-0.7,0-1,0.6-1.4 c4.1-2.9,4.1-8.7,0-11.6c-0.6-0.4-0.6-0.7-0.5-1.4c0.8-4.9-3.1-8.9-8-8.1c-0.9,0.1-1.2-0.1-1.7-0.8c-1.2-1.7-2.9-2.7-5.1-2.9 C77.5,61.8,75.3,63.2,73.7,65.8 M45,18.8c-0.1-0.3-0.1-0.5-0.2-0.6c-2.1-4.7-4.3-9.5-6.4-14.2c-0.8-1.8-2.4-2.4-4.2-1.7 c-10,3.5-20.1,6.9-30.1,10.4c-2,0.7-2.5,2-1.7,3.9c2,4.5,4.1,9,6.1,13.6c0.4,1,0.8,1,1.7,0.7c8.3-2.9,16.6-5.8,25-8.7 C38.4,21,41.7,19.9,45,18.8 M47,45.8c2.3,5.1,4.4,10,6.6,15c0.9,2,2.4,2.7,4.5,1.9c10-3.5,20-7.1,30-10.7 c1.9-0.7,2.5-2,1.6-3.9c-1.8-4.2-3.7-8.4-5.5-12.5c-0.4-0.9-0.8-1.7-1.2-2.6C71,37.3,59,41.5,47,45.8 M9.1,33 c-0.2,0.4-0.4,0.7-0.5,1c-2.1,4.7-4.1,9.4-6.2,14c-0.9,2-0.3,3.3,1.7,4c10,3.6,20,7.1,30,10.7c2,0.7,3.5,0.1,4.4-1.9 c2.1-4.7,4.2-9.5,6.3-14.2c0.1-0.2,0.1-0.5,0.2-0.8C33,41.5,21.1,37.3,9.1,33 M82.9,31c0.2-0.3,0.4-0.6,0.5-0.9 c2.1-4.5,4.1-9,6.2-13.6c1-2.1,0.5-3.3-1.8-4C77.9,9.1,68,5.7,58.1,2.3c-2.2-0.8-3.6-0.1-4.6,2c-2,4.4-4,8.8-6,13.2 c-0.2,0.4-0.3,0.7-0.5,1.2C59,22.8,70.9,26.9,82.9,31 M81,32.1c-0.6-0.2-0.8-0.4-1-0.5c-11.1-3.8-22.2-7.7-33.3-11.5 c-0.5-0.2-1.2-0.1-1.7,0c-11,3.8-22,7.6-32.9,11.4c-0.3,0.1-0.6,0.3-1.1,0.5c0.5,0.2,0.7,0.3,0.9,0.4 c11,3.8,22.1,7.7,33.1,11.4c0.6,0.2,1.4,0.2,2,0c7.9-2.7,15.9-5.5,23.8-8.2C74.1,34.5,77.4,33.3,81,32.1 M50.5,6.3 C51,5.2,51.5,4.1,52,3c1.2-2.6,3.6-3.6,6.4-2.7C67.2,3.4,76.1,6.5,85,9.6c1.2,0.4,2.4,0.8,3.6,1.3c2.6,0.9,3.6,3.2,2.4,5.8 c-2.1,4.8-4.2,9.5-6.4,14.3c-0.4,0.8-0.4,1.4,0,2.2c2.1,4.6,4.2,9.2,6.2,13.8c1.4,3.2,0.5,5.3-2.8,6.4c-2.8,1-2.8,1-2.8,3.9 c0,0.8,0.1,1.6,0,2.3c-0.3,1.8,0.4,3.2,1.9,4.2c0.3,0.2,0.6,0.3,0.9,0.3c5.7-0.2,9.7,3.8,9.4,9.4c0,0.3,0.2,0.8,0.5,1.1 c4.1,3.9,4.1,9.4,0,13.3c-0.2,0.2-0.5,0.6-0.5,0.9c0.2,3.8-1.3,6.7-4.6,8.5c-0.1,0-0.1,0.1-0.3,0.3c2.7,3.7,5.4,7.3,8.3,11.3 c-2.6-0.4-4.9-0.7-7.2-1.2c-1.3-0.3-2.1-0.1-2.8,1.1c-1.2,2-2.6,3.9-4.1,6.1c-0.9-4.8-1.8-9.3-2.7-13.9c-2.5,1-4.8,1.1-7.3,0 c-0.9,4.6-1.8,9.1-2.7,13.8c-0.3-0.3-0.5-0.5-0.6-0.7c-1.3-1.8-2.6-3.7-3.8-5.6c-0.5-0.9-1.1-1.1-2.1-0.9 c-2.1,0.4-4.3,0.7-6.4,1.1c-0.3,0-0.6,0-1.2,0.1c2.8-3.9,5.5-7.5,8.2-11.2c-3.9-2.9-4.3-3.5-5-8.2c-0.3,0.1-0.6,0.2-1,0.3 c-4.2,1.4-8.3,2.9-12.5,4.3c-2.7,0.9-5.4,0.9-8.1,0C31.3,90.4,21,86.8,10.6,83.3c-2.9-1-4.4-3.1-4.4-6.2c0-7.2,0-14.4,0-21.6 c0-0.8-0.2-1.3-1-1.5s-1.5-0.5-2.3-0.8c-2.6-1-3.6-3.2-2.5-5.8c2.1-4.8,4.2-9.5,6.4-14.3c0.4-0.8,0.3-1.4,0-2.2 c-2.1-4.6-4.2-9.3-6.2-14c-1.3-3-0.4-5.2,2.7-6.2c9.9-3.5,19.9-6.9,29.8-10.4c2.9-1,5.2,0,6.5,2.8c1.9,4.3,3.8,8.5,5.7,12.8 c0.1,0.2,0.2,0.5,0.5,0.9C47.4,13.2,49,9.7,50.5,6.3z" />
|
||||
<path id="Fill-4" class="st2" d="M80.4,92C74.7,91.9,70,87,70,81c0-6.2,4.7-11,10.6-11C86.4,70,91,74.9,91,81 S86.2,92.1,80.4,92z" />
|
||||
</g>
|
||||
</g>
|
||||
<circle id="Oval-3" class="st2" cx="47" cy="29" r="28" />
|
||||
<g id="ic_code" transform="translate(17.000000, 0.000000)">
|
||||
<polygon id="Bounds" class="st3" points="0,0 58,0 58,58 0,58 " />
|
||||
<path id="Icon" class="st0" d="M24,38.2L14.7,29l9.3-9.2L21.2,17L9,29l12.2,12L24,38.2L24,38.2z M34,38.2l9.3-9.2L34,19.8 l2.8-2.8L49,29L36.8,41L34,38.2L34,38.2z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
34
media/images/coder-awards.width-500.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#92DEE2;}
|
||||
.st2{fill:#5763AB;}
|
||||
.st3{fill:none;}
|
||||
</style>
|
||||
<title>High_quality_code</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="High_quality_code">
|
||||
<g id="Group-36" transform="translate(30.000000, 1.000000)">
|
||||
<path id="Path-17" class="st0" d="M12.7,55.9C7.5,64.3,4.9,69.8,5,72.2c0.2,3.6,31,14.9,33.9,14.1c1.9-0.6,5-6.4,9.2-17.4 L12.7,55.9z" />
|
||||
<path id="Path-17_1_" class="st0" d="M50,68.7c3.3,9.6,5.8,15.3,7.5,17C60,88.3,91.3,76.3,93,73.8c1.1-1.7-1.4-7.7-7.4-17.9 L50,68.7z" />
|
||||
<path id="Path-17_2_" class="st0" d="M46.6,43.7c-1-9.9-2.4-15.7-4-17.5c-2.4-2.8-35.7,9-37.4,11.4c-1.2,1.6,1.2,7.5,7,17.6 L46.6,43.7z" />
|
||||
<path id="Path-17_3_" class="st0" d="M85.3,55.7c5.7-8.1,8.5-13.4,8.5-15.8c0-3.6-32.8-16.6-35.7-16c-2,0.5-4,6.4-6.3,17.9 L85.3,55.7z" />
|
||||
<polygon id="Path-18" class="st0" points="49,69 85.5,55.8 49.8,44 13,55.8 " />
|
||||
<g id="Group-19" transform="translate(3.000000, 0.000000)">
|
||||
<g id="Page-1" transform="translate(0.000000, 24.000000)">
|
||||
<g id="Group-3">
|
||||
<path id="Fill-1" class="st1" d="M96.9,106.2c0-0.1,0.1-0.2,0.1-0.3c-1.9-2.5-3.8-5.1-5.7-7.6c-0.1-0.2-0.5-0.3-0.8-0.3 c-0.8,0-1.6,0.1-2.4,0.1c-1,0.1-2.4,1.7-2.2,2.6c0.5,2.9,1.1,5.7,1.7,8.6c0,0.2,0.2,0.4,0.3,0.7c0.9-1.4,1.8-2.6,2.6-3.8 c0.5-0.7,1-0.9,1.8-0.7C93.9,105.7,95.4,105.9,96.9,106.2 M73.2,111c0.6-3.2,1.1-6.1,1.7-8.9c0.3-1.4,0.2-2.6-1-3.4 c-0.4-0.2-0.8-0.5-1.3-0.6s-1.2,0-1.7-0.1c-0.7-0.2-1.1,0.1-1.5,0.7c-1.3,1.9-2.6,3.8-3.9,5.7c-0.5,0.7-0.9,1.3-1.5,2.2 c0.5,0,0.9,0,1.2-0.1c1.1-0.2,2.2-0.4,3.3-0.6c0.9-0.2,1.5-0.1,2,0.8C71.2,108.1,72.1,109.4,73.2,111 M73.7,65.8 c-5.8-1.1-9.6,2.4-9.1,8.2c0,0.4-0.3,0.9-0.6,1.2c-4,3-4.1,8.6,0,11.6c0.6,0.4,0.7,0.8,0.6,1.5c-0.8,4.9,3.2,8.9,8.1,8.1 c0.7-0.1,1.1,0,1.5,0.6c2.9,4,8.5,4,11.5,0c0.4-0.6,0.8-0.8,1.5-0.7c5,0.8,8.9-3.1,8.1-8.2c-0.1-0.7,0-1,0.6-1.4 c4.1-2.9,4.1-8.7,0-11.6c-0.6-0.4-0.6-0.7-0.5-1.4c0.8-4.9-3.1-8.9-8-8.1c-0.9,0.1-1.2-0.1-1.7-0.8c-1.2-1.7-2.9-2.7-5.1-2.9 C77.5,61.8,75.3,63.2,73.7,65.8 M45,18.8c-0.1-0.3-0.1-0.5-0.2-0.6c-2.1-4.7-4.3-9.5-6.4-14.2c-0.8-1.8-2.4-2.4-4.2-1.7 c-10,3.5-20.1,6.9-30.1,10.4c-2,0.7-2.5,2-1.7,3.9c2,4.5,4.1,9,6.1,13.6c0.4,1,0.8,1,1.7,0.7c8.3-2.9,16.6-5.8,25-8.7 C38.4,21,41.7,19.9,45,18.8 M47,45.8c2.3,5.1,4.4,10,6.6,15c0.9,2,2.4,2.7,4.5,1.9c10-3.5,20-7.1,30-10.7 c1.9-0.7,2.5-2,1.6-3.9c-1.8-4.2-3.7-8.4-5.5-12.5c-0.4-0.9-0.8-1.7-1.2-2.6C71,37.3,59,41.5,47,45.8 M9.1,33 c-0.2,0.4-0.4,0.7-0.5,1c-2.1,4.7-4.1,9.4-6.2,14c-0.9,2-0.3,3.3,1.7,4c10,3.6,20,7.1,30,10.7c2,0.7,3.5,0.1,4.4-1.9 c2.1-4.7,4.2-9.5,6.3-14.2c0.1-0.2,0.1-0.5,0.2-0.8C33,41.5,21.1,37.3,9.1,33 M82.9,31c0.2-0.3,0.4-0.6,0.5-0.9 c2.1-4.5,4.1-9,6.2-13.6c1-2.1,0.5-3.3-1.8-4C77.9,9.1,68,5.7,58.1,2.3c-2.2-0.8-3.6-0.1-4.6,2c-2,4.4-4,8.8-6,13.2 c-0.2,0.4-0.3,0.7-0.5,1.2C59,22.8,70.9,26.9,82.9,31 M81,32.1c-0.6-0.2-0.8-0.4-1-0.5c-11.1-3.8-22.2-7.7-33.3-11.5 c-0.5-0.2-1.2-0.1-1.7,0c-11,3.8-22,7.6-32.9,11.4c-0.3,0.1-0.6,0.3-1.1,0.5c0.5,0.2,0.7,0.3,0.9,0.4 c11,3.8,22.1,7.7,33.1,11.4c0.6,0.2,1.4,0.2,2,0c7.9-2.7,15.9-5.5,23.8-8.2C74.1,34.5,77.4,33.3,81,32.1 M50.5,6.3 C51,5.2,51.5,4.1,52,3c1.2-2.6,3.6-3.6,6.4-2.7C67.2,3.4,76.1,6.5,85,9.6c1.2,0.4,2.4,0.8,3.6,1.3c2.6,0.9,3.6,3.2,2.4,5.8 c-2.1,4.8-4.2,9.5-6.4,14.3c-0.4,0.8-0.4,1.4,0,2.2c2.1,4.6,4.2,9.2,6.2,13.8c1.4,3.2,0.5,5.3-2.8,6.4c-2.8,1-2.8,1-2.8,3.9 c0,0.8,0.1,1.6,0,2.3c-0.3,1.8,0.4,3.2,1.9,4.2c0.3,0.2,0.6,0.3,0.9,0.3c5.7-0.2,9.7,3.8,9.4,9.4c0,0.3,0.2,0.8,0.5,1.1 c4.1,3.9,4.1,9.4,0,13.3c-0.2,0.2-0.5,0.6-0.5,0.9c0.2,3.8-1.3,6.7-4.6,8.5c-0.1,0-0.1,0.1-0.3,0.3c2.7,3.7,5.4,7.3,8.3,11.3 c-2.6-0.4-4.9-0.7-7.2-1.2c-1.3-0.3-2.1-0.1-2.8,1.1c-1.2,2-2.6,3.9-4.1,6.1c-0.9-4.8-1.8-9.3-2.7-13.9c-2.5,1-4.8,1.1-7.3,0 c-0.9,4.6-1.8,9.1-2.7,13.8c-0.3-0.3-0.5-0.5-0.6-0.7c-1.3-1.8-2.6-3.7-3.8-5.6c-0.5-0.9-1.1-1.1-2.1-0.9 c-2.1,0.4-4.3,0.7-6.4,1.1c-0.3,0-0.6,0-1.2,0.1c2.8-3.9,5.5-7.5,8.2-11.2c-3.9-2.9-4.3-3.5-5-8.2c-0.3,0.1-0.6,0.2-1,0.3 c-4.2,1.4-8.3,2.9-12.5,4.3c-2.7,0.9-5.4,0.9-8.1,0C31.3,90.4,21,86.8,10.6,83.3c-2.9-1-4.4-3.1-4.4-6.2c0-7.2,0-14.4,0-21.6 c0-0.8-0.2-1.3-1-1.5s-1.5-0.5-2.3-0.8c-2.6-1-3.6-3.2-2.5-5.8c2.1-4.8,4.2-9.5,6.4-14.3c0.4-0.8,0.3-1.4,0-2.2 c-2.1-4.6-4.2-9.3-6.2-14c-1.3-3-0.4-5.2,2.7-6.2c9.9-3.5,19.9-6.9,29.8-10.4c2.9-1,5.2,0,6.5,2.8c1.9,4.3,3.8,8.5,5.7,12.8 c0.1,0.2,0.2,0.5,0.5,0.9C47.4,13.2,49,9.7,50.5,6.3z" />
|
||||
<path id="Fill-4" class="st2" d="M80.4,92C74.7,91.9,70,87,70,81c0-6.2,4.7-11,10.6-11C86.4,70,91,74.9,91,81 S86.2,92.1,80.4,92z" />
|
||||
</g>
|
||||
</g>
|
||||
<circle id="Oval-3" class="st2" cx="47" cy="29" r="28" />
|
||||
<g id="ic_code" transform="translate(17.000000, 0.000000)">
|
||||
<polygon id="Bounds" class="st3" points="0,0 58,0 58,58 0,58 " />
|
||||
<path id="Icon" class="st0" d="M24,38.2L14.7,29l9.3-9.2L21.2,17L9,29l12.2,12L24,38.2L24,38.2z M34,38.2l9.3-9.2L34,19.8 l2.8-2.8L49,29L36.8,41L34,38.2L34,38.2z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
34
media/images/coder-awards.width-800.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#92DEE2;}
|
||||
.st2{fill:#5763AB;}
|
||||
.st3{fill:none;}
|
||||
</style>
|
||||
<title>High_quality_code</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="High_quality_code">
|
||||
<g id="Group-36" transform="translate(30.000000, 1.000000)">
|
||||
<path id="Path-17" class="st0" d="M12.7,55.9C7.5,64.3,4.9,69.8,5,72.2c0.2,3.6,31,14.9,33.9,14.1c1.9-0.6,5-6.4,9.2-17.4 L12.7,55.9z" />
|
||||
<path id="Path-17_1_" class="st0" d="M50,68.7c3.3,9.6,5.8,15.3,7.5,17C60,88.3,91.3,76.3,93,73.8c1.1-1.7-1.4-7.7-7.4-17.9 L50,68.7z" />
|
||||
<path id="Path-17_2_" class="st0" d="M46.6,43.7c-1-9.9-2.4-15.7-4-17.5c-2.4-2.8-35.7,9-37.4,11.4c-1.2,1.6,1.2,7.5,7,17.6 L46.6,43.7z" />
|
||||
<path id="Path-17_3_" class="st0" d="M85.3,55.7c5.7-8.1,8.5-13.4,8.5-15.8c0-3.6-32.8-16.6-35.7-16c-2,0.5-4,6.4-6.3,17.9 L85.3,55.7z" />
|
||||
<polygon id="Path-18" class="st0" points="49,69 85.5,55.8 49.8,44 13,55.8 " />
|
||||
<g id="Group-19" transform="translate(3.000000, 0.000000)">
|
||||
<g id="Page-1" transform="translate(0.000000, 24.000000)">
|
||||
<g id="Group-3">
|
||||
<path id="Fill-1" class="st1" d="M96.9,106.2c0-0.1,0.1-0.2,0.1-0.3c-1.9-2.5-3.8-5.1-5.7-7.6c-0.1-0.2-0.5-0.3-0.8-0.3 c-0.8,0-1.6,0.1-2.4,0.1c-1,0.1-2.4,1.7-2.2,2.6c0.5,2.9,1.1,5.7,1.7,8.6c0,0.2,0.2,0.4,0.3,0.7c0.9-1.4,1.8-2.6,2.6-3.8 c0.5-0.7,1-0.9,1.8-0.7C93.9,105.7,95.4,105.9,96.9,106.2 M73.2,111c0.6-3.2,1.1-6.1,1.7-8.9c0.3-1.4,0.2-2.6-1-3.4 c-0.4-0.2-0.8-0.5-1.3-0.6s-1.2,0-1.7-0.1c-0.7-0.2-1.1,0.1-1.5,0.7c-1.3,1.9-2.6,3.8-3.9,5.7c-0.5,0.7-0.9,1.3-1.5,2.2 c0.5,0,0.9,0,1.2-0.1c1.1-0.2,2.2-0.4,3.3-0.6c0.9-0.2,1.5-0.1,2,0.8C71.2,108.1,72.1,109.4,73.2,111 M73.7,65.8 c-5.8-1.1-9.6,2.4-9.1,8.2c0,0.4-0.3,0.9-0.6,1.2c-4,3-4.1,8.6,0,11.6c0.6,0.4,0.7,0.8,0.6,1.5c-0.8,4.9,3.2,8.9,8.1,8.1 c0.7-0.1,1.1,0,1.5,0.6c2.9,4,8.5,4,11.5,0c0.4-0.6,0.8-0.8,1.5-0.7c5,0.8,8.9-3.1,8.1-8.2c-0.1-0.7,0-1,0.6-1.4 c4.1-2.9,4.1-8.7,0-11.6c-0.6-0.4-0.6-0.7-0.5-1.4c0.8-4.9-3.1-8.9-8-8.1c-0.9,0.1-1.2-0.1-1.7-0.8c-1.2-1.7-2.9-2.7-5.1-2.9 C77.5,61.8,75.3,63.2,73.7,65.8 M45,18.8c-0.1-0.3-0.1-0.5-0.2-0.6c-2.1-4.7-4.3-9.5-6.4-14.2c-0.8-1.8-2.4-2.4-4.2-1.7 c-10,3.5-20.1,6.9-30.1,10.4c-2,0.7-2.5,2-1.7,3.9c2,4.5,4.1,9,6.1,13.6c0.4,1,0.8,1,1.7,0.7c8.3-2.9,16.6-5.8,25-8.7 C38.4,21,41.7,19.9,45,18.8 M47,45.8c2.3,5.1,4.4,10,6.6,15c0.9,2,2.4,2.7,4.5,1.9c10-3.5,20-7.1,30-10.7 c1.9-0.7,2.5-2,1.6-3.9c-1.8-4.2-3.7-8.4-5.5-12.5c-0.4-0.9-0.8-1.7-1.2-2.6C71,37.3,59,41.5,47,45.8 M9.1,33 c-0.2,0.4-0.4,0.7-0.5,1c-2.1,4.7-4.1,9.4-6.2,14c-0.9,2-0.3,3.3,1.7,4c10,3.6,20,7.1,30,10.7c2,0.7,3.5,0.1,4.4-1.9 c2.1-4.7,4.2-9.5,6.3-14.2c0.1-0.2,0.1-0.5,0.2-0.8C33,41.5,21.1,37.3,9.1,33 M82.9,31c0.2-0.3,0.4-0.6,0.5-0.9 c2.1-4.5,4.1-9,6.2-13.6c1-2.1,0.5-3.3-1.8-4C77.9,9.1,68,5.7,58.1,2.3c-2.2-0.8-3.6-0.1-4.6,2c-2,4.4-4,8.8-6,13.2 c-0.2,0.4-0.3,0.7-0.5,1.2C59,22.8,70.9,26.9,82.9,31 M81,32.1c-0.6-0.2-0.8-0.4-1-0.5c-11.1-3.8-22.2-7.7-33.3-11.5 c-0.5-0.2-1.2-0.1-1.7,0c-11,3.8-22,7.6-32.9,11.4c-0.3,0.1-0.6,0.3-1.1,0.5c0.5,0.2,0.7,0.3,0.9,0.4 c11,3.8,22.1,7.7,33.1,11.4c0.6,0.2,1.4,0.2,2,0c7.9-2.7,15.9-5.5,23.8-8.2C74.1,34.5,77.4,33.3,81,32.1 M50.5,6.3 C51,5.2,51.5,4.1,52,3c1.2-2.6,3.6-3.6,6.4-2.7C67.2,3.4,76.1,6.5,85,9.6c1.2,0.4,2.4,0.8,3.6,1.3c2.6,0.9,3.6,3.2,2.4,5.8 c-2.1,4.8-4.2,9.5-6.4,14.3c-0.4,0.8-0.4,1.4,0,2.2c2.1,4.6,4.2,9.2,6.2,13.8c1.4,3.2,0.5,5.3-2.8,6.4c-2.8,1-2.8,1-2.8,3.9 c0,0.8,0.1,1.6,0,2.3c-0.3,1.8,0.4,3.2,1.9,4.2c0.3,0.2,0.6,0.3,0.9,0.3c5.7-0.2,9.7,3.8,9.4,9.4c0,0.3,0.2,0.8,0.5,1.1 c4.1,3.9,4.1,9.4,0,13.3c-0.2,0.2-0.5,0.6-0.5,0.9c0.2,3.8-1.3,6.7-4.6,8.5c-0.1,0-0.1,0.1-0.3,0.3c2.7,3.7,5.4,7.3,8.3,11.3 c-2.6-0.4-4.9-0.7-7.2-1.2c-1.3-0.3-2.1-0.1-2.8,1.1c-1.2,2-2.6,3.9-4.1,6.1c-0.9-4.8-1.8-9.3-2.7-13.9c-2.5,1-4.8,1.1-7.3,0 c-0.9,4.6-1.8,9.1-2.7,13.8c-0.3-0.3-0.5-0.5-0.6-0.7c-1.3-1.8-2.6-3.7-3.8-5.6c-0.5-0.9-1.1-1.1-2.1-0.9 c-2.1,0.4-4.3,0.7-6.4,1.1c-0.3,0-0.6,0-1.2,0.1c2.8-3.9,5.5-7.5,8.2-11.2c-3.9-2.9-4.3-3.5-5-8.2c-0.3,0.1-0.6,0.2-1,0.3 c-4.2,1.4-8.3,2.9-12.5,4.3c-2.7,0.9-5.4,0.9-8.1,0C31.3,90.4,21,86.8,10.6,83.3c-2.9-1-4.4-3.1-4.4-6.2c0-7.2,0-14.4,0-21.6 c0-0.8-0.2-1.3-1-1.5s-1.5-0.5-2.3-0.8c-2.6-1-3.6-3.2-2.5-5.8c2.1-4.8,4.2-9.5,6.4-14.3c0.4-0.8,0.3-1.4,0-2.2 c-2.1-4.6-4.2-9.3-6.2-14c-1.3-3-0.4-5.2,2.7-6.2c9.9-3.5,19.9-6.9,29.8-10.4c2.9-1,5.2,0,6.5,2.8c1.9,4.3,3.8,8.5,5.7,12.8 c0.1,0.2,0.2,0.5,0.5,0.9C47.4,13.2,49,9.7,50.5,6.3z" />
|
||||
<path id="Fill-4" class="st2" d="M80.4,92C74.7,91.9,70,87,70,81c0-6.2,4.7-11,10.6-11C86.4,70,91,74.9,91,81 S86.2,92.1,80.4,92z" />
|
||||
</g>
|
||||
</g>
|
||||
<circle id="Oval-3" class="st2" cx="47" cy="29" r="28" />
|
||||
<g id="ic_code" transform="translate(17.000000, 0.000000)">
|
||||
<polygon id="Bounds" class="st3" points="0,0 58,0 58,58 0,58 " />
|
||||
<path id="Icon" class="st0" d="M24,38.2L14.7,29l9.3-9.2L21.2,17L9,29l12.2,12L24,38.2L24,38.2z M34,38.2l9.3-9.2L34,19.8 l2.8-2.8L49,29L36.8,41L34,38.2L34,38.2z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
BIN
media/images/coding-tutorials-patience.max-165x165.jpg
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
435
media/images/coding-tutorials-patience.max-165x165.svg
Normal file
|
After Width: | Height: | Size: 113 KiB |
BIN
media/images/coding-tutorials-patience.max-800x600.jpg
Normal file
|
After Width: | Height: | Size: 33 KiB |
435
media/images/coding-tutorials-patience.max-800x600.svg
Normal file
|
After Width: | Height: | Size: 113 KiB |
BIN
media/images/coding-tutorials-patience.width-800.jpg
Normal file
|
After Width: | Height: | Size: 33 KiB |
435
media/images/coding-tutorials-patience.width-800.svg
Normal file
|
After Width: | Height: | Size: 113 KiB |
26
media/images/continuous-delivery.max-165x165.svg
Normal file
@@ -0,0 +1,26 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st1{fill:#92DEE2;}
|
||||
</style>
|
||||
<title>Continuous_delivery</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Continuous_delivery">
|
||||
<g id="Group-44" transform="translate(30.000000, 17.000000)">
|
||||
<g id="Group-43" transform="translate(56.000000, 6.000000)">
|
||||
<path id="Oval-9" class="st0" d="M12,85.3C5.3,91.1,2,94,2,94c26,0,47-21,47-47S28,0,2,0" />
|
||||
<path id="Path-20" class="st0" d="M14.4,99.7l-14-5" />
|
||||
</g>
|
||||
<g id="Group-43_1_" transform="translate(24.500000, 50.500000) scale(-1, -1) translate(-24.500000, -50.500000) ">
|
||||
<path id="Oval-9_1_" class="st0" d="M12,85.3C5.3,91.1,2,94,2,94c26,0,47-21,47-47S28,0,2,0" />
|
||||
<path id="Path-20_1_" class="st0" d="M15,100L0.1,94.7" />
|
||||
</g>
|
||||
<g id="ic_swap_horiz" transform="translate(23.000000, 31.000000)">
|
||||
<polygon id="Path" class="st1" points="13.1,20 0,33 13.1,46 13.1,36.2 36,36.2 36,29.8 13.1,29.8 " />
|
||||
<polygon id="Path_1_" class="st1" points="59,13 45.9,0 45.9,9.8 23,9.8 23,16.2 45.9,16.2 45.9,26 " />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
26
media/images/continuous-delivery.max-800x600.svg
Normal file
@@ -0,0 +1,26 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st1{fill:#92DEE2;}
|
||||
</style>
|
||||
<title>Continuous_delivery</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Continuous_delivery">
|
||||
<g id="Group-44" transform="translate(30.000000, 17.000000)">
|
||||
<g id="Group-43" transform="translate(56.000000, 6.000000)">
|
||||
<path id="Oval-9" class="st0" d="M12,85.3C5.3,91.1,2,94,2,94c26,0,47-21,47-47S28,0,2,0" />
|
||||
<path id="Path-20" class="st0" d="M14.4,99.7l-14-5" />
|
||||
</g>
|
||||
<g id="Group-43_1_" transform="translate(24.500000, 50.500000) scale(-1, -1) translate(-24.500000, -50.500000) ">
|
||||
<path id="Oval-9_1_" class="st0" d="M12,85.3C5.3,91.1,2,94,2,94c26,0,47-21,47-47S28,0,2,0" />
|
||||
<path id="Path-20_1_" class="st0" d="M15,100L0.1,94.7" />
|
||||
</g>
|
||||
<g id="ic_swap_horiz" transform="translate(23.000000, 31.000000)">
|
||||
<polygon id="Path" class="st1" points="13.1,20 0,33 13.1,46 13.1,36.2 36,36.2 36,29.8 13.1,29.8 " />
|
||||
<polygon id="Path_1_" class="st1" points="59,13 45.9,0 45.9,9.8 23,9.8 23,16.2 45.9,16.2 45.9,26 " />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
26
media/images/continuous-delivery.width-800.svg
Normal file
@@ -0,0 +1,26 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st1{fill:#92DEE2;}
|
||||
</style>
|
||||
<title>Continuous_delivery</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Continuous_delivery">
|
||||
<g id="Group-44" transform="translate(30.000000, 17.000000)">
|
||||
<g id="Group-43" transform="translate(56.000000, 6.000000)">
|
||||
<path id="Oval-9" class="st0" d="M12,85.3C5.3,91.1,2,94,2,94c26,0,47-21,47-47S28,0,2,0" />
|
||||
<path id="Path-20" class="st0" d="M14.4,99.7l-14-5" />
|
||||
</g>
|
||||
<g id="Group-43_1_" transform="translate(24.500000, 50.500000) scale(-1, -1) translate(-24.500000, -50.500000) ">
|
||||
<path id="Oval-9_1_" class="st0" d="M12,85.3C5.3,91.1,2,94,2,94c26,0,47-21,47-47S28,0,2,0" />
|
||||
<path id="Path-20_1_" class="st0" d="M15,100L0.1,94.7" />
|
||||
</g>
|
||||
<g id="ic_swap_horiz" transform="translate(23.000000, 31.000000)">
|
||||
<polygon id="Path" class="st1" points="13.1,20 0,33 13.1,46 13.1,36.2 36,36.2 36,29.8 13.1,29.8 " />
|
||||
<polygon id="Path_1_" class="st1" points="59,13 45.9,0 45.9,9.8 23,9.8 23,16.2 45.9,16.2 45.9,26 " />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
371
media/images/custom-software-development.max-165x165.svg
Normal file
@@ -0,0 +1,371 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="133" height="165" viewBox="0.0 0.0 495.0 610.0" version="1.1">
|
||||
|
||||
<title>custom-software-development</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
|
||||
<stop stop-color="#FD99BE" offset="0%" />
|
||||
<stop stop-color="#F94C8C" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
|
||||
<stop stop-color="#9AE1E5" offset="0%" />
|
||||
<stop stop-color="#39BAC1" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
|
||||
<stop stop-color="#FFDB71" offset="0%" />
|
||||
<stop stop-color="#FEB856" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="81.253561%" x2="50%" y2="38.5969009%" id="linearGradient-4">
|
||||
<stop stop-color="#434D8E" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-5">
|
||||
<stop stop-color="#72669D" offset="0%" />
|
||||
<stop stop-color="#ADA7C7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-6">
|
||||
<stop stop-color="#EAE9F1" offset="0%" />
|
||||
<stop stop-color="#ECE7F9" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="15.4820432%" y1="76.2997855%" x2="100%" y2="25.92039%" id="linearGradient-7">
|
||||
<stop stop-color="#444F90" offset="0%" />
|
||||
<stop stop-color="#828BC0" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="6" transform="translate(-161.000000, -282.000000)">
|
||||
<g id="custom-software-development" transform="translate(408.500000, 587.500000) scale(-1, 1) translate(-408.500000, -587.500000) translate(161.000000, 282.000000)">
|
||||
<g id="Group-3">
|
||||
<g id="server" transform="translate(82.252252, 162.063063) scale(-1, 1) translate(-82.252252, -162.063063) translate(0.000000, 114.000000)">
|
||||
<path d="M59.0486296,40.3303712 C57.4965773,39.4167326 55.8857024,38.7502567 52.9089567,38.7502567 C49.9332903,38.7502567 46.7288095,40.8387277 46.7288095,40.8387277 L0.475383483,67.2236173 L1.85474571,68.0654816 L47.933323,41.8074113 C47.933323,41.8074113 50.7325217,40.0017204 52.9089567,40.0017204 C55.7529469,40.0017204 57.6115241,41.253184 57.6115241,41.253184 L62.008646,43.732906 L62.008646,42.0723827 L59.0486296,40.3303712 Z" id="Fill-115" fill="#DDDDFC" />
|
||||
<polygon id="Fill-118" fill="#DDDDFC" points="113.561877 79.1812739 164.098558 50.1639395 164.098558 66.4297285 113.561877 95.447063 62.0926705 65.9375617 62.0926705 49.6717727" />
|
||||
<polygon id="Fill-120" fill="#5763AB" points="112.189531 20.269933 164.098558 50.1642093 113.561877 79.1815437 62.0926705 49.6715029" />
|
||||
<polygon id="Fill-122" fill="#EAEAF9" points="113.561877 95.4471709 113.561877 79.1813818 62.0926705 49.6718806 62.0926705 65.9376697" />
|
||||
<polygon id="Fill-124" fill="#D7D7F2" points="65.4180883 53.4711709 66.8551938 54.2952265 66.8551938 66.7834195 65.4180883 65.9599035" />
|
||||
<polygon id="Fill-126" fill="#D7D7F2" points="68.2928929 55.1139935 69.7299984 55.9380491 69.7299984 68.426242 68.2928929 67.6021864" />
|
||||
<polygon id="Fill-128" fill="#D7D7F2" points="71.1672118 56.7743549 72.6048569 57.5984105 72.6048569 70.0866034 71.1672118 69.2625478" />
|
||||
<polygon id="Fill-130" fill="#D7D7F2" points="74.0420164 58.4167457 75.4791218 59.2408013 75.4791218 71.7289943 74.0420164 70.9049387" />
|
||||
<polygon id="Fill-132" fill="#D7D7F2" points="76.9163352 60.0326934 78.3534407 60.856749 78.3534407 73.3444023 76.9163352 72.5208863" />
|
||||
<polygon id="Fill-134" fill="#D7D7F2" points="79.7911938 61.6751382 81.2282993 62.4991938 81.2282993 74.9873868 79.7911938 74.1633312" />
|
||||
<polygon id="Fill-136" fill="#D7D7F2" points="82.6654587 63.3356075 84.1025642 64.1596631 84.1025642 76.6478561 82.6654587 75.8238005" />
|
||||
<polygon id="Fill-138" fill="#D7D7F2" points="85.5397776 64.9781603 86.9774227 65.8022159 86.9774227 78.2904088 85.5397776 77.4663532" />
|
||||
<polygon id="Fill-140" fill="#D7D7F2" points="88.4146361 66.6885478 89.8517416 67.5126034 89.8517416 80.0007964 88.4146361 79.1767408" />
|
||||
<polygon id="Fill-142" fill="#D7D7F2" points="91.2889011 68.3313704 92.7260065 69.155426 92.7260065 81.643619 91.2889011 80.8195634" />
|
||||
<polygon id="Fill-144" fill="#D7D7F2" points="94.1637596 69.991462 95.6008651 70.8155176 95.6008651 83.3037105 94.1637596 82.4801946" />
|
||||
<polygon id="Fill-146" fill="#D7D7F2" points="97.0380785 71.6342845 98.4757236 72.4583401 98.4757236 84.9465331 97.0380785 84.1224775" />
|
||||
<polygon id="Fill-148" fill="#D7D7F2" points="99.9128831 73.2502322 101.349989 74.0742878 101.349989 86.5619411 99.9128831 85.7378855" />
|
||||
<polygon id="Fill-150" fill="#D7D7F2" points="102.787202 74.8926231 104.224307 75.7166787 104.224307 88.204332 102.787202 87.380816" />
|
||||
<polygon id="Fill-152" fill="#D7D7F2" points="105.662007 76.5529845 107.099112 77.3770401 107.099112 89.865233 105.662007 89.0411774" />
|
||||
<polygon id="Fill-154" fill="#D7D7F2" points="108.536325 78.1953753 109.973431 79.0194309 109.973431 91.5076239 108.536325 90.6835683" />
|
||||
<polygon id="Fill-156" fill="#DDDDFC" points="113.561877 59.1382666 164.098558 30.1209321 164.098558 46.3861815 113.561877 75.4035159 62.0926705 45.8940147 62.0926705 29.6287653" />
|
||||
<polygon id="Fill-158" fill="#5763AB" points="112.189531 0.226601799 164.098558 30.1208782 113.561877 59.1382126 62.0926705 29.6287114" />
|
||||
<polygon id="Fill-160" fill="#EAEAF9" points="113.561877 75.4036778 113.561877 59.1384285 62.0926705 29.6289272 62.0926705 45.8941766" />
|
||||
<polygon id="Fill-162" fill="#D7D7F2" points="65.4180883 37.2055977 66.8551938 38.0296533 66.8551938 39.9405773 65.4180883 39.1165217" />
|
||||
<polygon id="Fill-164" fill="#D7D7F2" points="68.2928929 38.8481504 69.7299984 39.6722061 69.7299984 41.58313 68.2928929 40.7596141" />
|
||||
<polygon id="Fill-166" fill="#D7D7F2" points="71.1672118 40.50835 72.6048569 41.3324056 72.6048569 43.2433295 71.1672118 42.4192739" />
|
||||
<polygon id="Fill-168" fill="#D7D7F2" points="74.0420164 42.1513344 75.4791218 42.97539 75.4791218 44.886314 74.0420164 44.0622584" />
|
||||
<polygon id="Fill-170" fill="#D7D7F2" points="76.9163352 43.7667424 78.3534407 44.590798 78.3534407 46.501722 76.9163352 45.6782061" />
|
||||
<polygon id="Fill-172" fill="#D7D7F2" points="79.7911938 45.4094031 81.2282993 46.2334587 81.2282993 48.1443827 79.7911938 47.3203271" />
|
||||
<polygon id="Fill-174" fill="#D7D7F2" points="82.6654587 47.0698724 84.1025642 47.893928 84.1025642 49.804852 82.6654587 48.9807964" />
|
||||
<polygon id="Fill-176" fill="#D7D7F2" points="85.5397776 48.7125871 86.9774227 49.5366427 86.9774227 51.4475666 85.5397776 50.623511" />
|
||||
<polygon id="Fill-178" fill="#D7D7F2" points="88.4146361 50.4229747 89.8517416 51.2470303 89.8517416 53.1579542 88.4146361 52.3338986" />
|
||||
<polygon id="Fill-180" fill="#D7D7F2" points="91.2889011 52.0656353 92.7260065 52.8896909 92.7260065 54.8006149 91.2889011 53.9765593" />
|
||||
<polygon id="Fill-182" fill="#D7D7F2" points="94.1637596 53.7258888 95.6008651 54.5499444 95.6008651 56.4608684 94.1637596 55.6368128" />
|
||||
<polygon id="Fill-184" fill="#D7D7F2" points="97.0380785 55.3685495 98.4757236 56.1926051 98.4757236 58.103529 97.0380785 57.2794734" />
|
||||
<polygon id="Fill-186" fill="#D7D7F2" points="99.9128831 56.9842273 101.349989 57.8082829 101.349989 59.7192069 99.9128831 58.8951513" />
|
||||
<polygon id="Fill-188" fill="#D7D7F2" points="102.787202 58.6266721 104.224307 59.4507277 104.224307 61.3616517 102.787202 60.5381357" />
|
||||
<polygon id="Fill-190" fill="#D7D7F2" points="65.4180883 40.9830859 66.8551938 41.8071415 66.8551938 43.7180654 65.4180883 42.8940098" />
|
||||
<polygon id="Fill-192" fill="#D7D7F2" points="68.2928929 42.6254767 69.7299984 43.4495323 69.7299984 45.3609959 68.2928929 44.5369403" />
|
||||
<polygon id="Fill-194" fill="#D7D7F2" points="71.1672118 44.2862159 72.6048569 45.1102715 72.6048569 47.0211954 71.1672118 46.1971398" />
|
||||
<polygon id="Fill-196" fill="#D7D7F2" points="74.0420164 45.9286607 75.4791218 46.7527163 75.4791218 48.6636402 74.0420164 47.8395846" />
|
||||
<polygon id="Fill-198" fill="#D7D7F2" points="76.9163352 47.5441766 78.3534407 48.3682322 78.3534407 50.2796958 76.9163352 49.4556402" />
|
||||
<polygon id="Fill-200" fill="#D7D7F2" points="79.7911938 49.1869992 81.2282993 50.0110548 81.2282993 51.9219787 79.7911938 51.0979231" />
|
||||
<polygon id="Fill-202" fill="#D7D7F2" points="82.6654587 50.8473606 84.1025642 51.6714162 84.1025642 53.5823401 82.6654587 52.7582845" />
|
||||
<polygon id="Fill-204" fill="#D7D7F2" points="85.5397776 52.4897514 86.9774227 53.313807 86.9774227 55.224731 85.5397776 54.4006754" />
|
||||
<polygon id="Fill-206" fill="#D7D7F2" points="88.4146361 54.2003009 89.8517416 55.0243565 89.8517416 56.9352805 88.4146361 56.1112249" />
|
||||
<polygon id="Fill-208" fill="#D7D7F2" points="91.2889011 55.8430155 92.7260065 56.6670711 92.7260065 58.5779951 91.2889011 57.7539395" />
|
||||
<polygon id="Fill-210" fill="#D7D7F2" points="94.1637596 57.5030531 95.6008651 58.3271087 95.6008651 60.2380327 94.1637596 59.4145168" />
|
||||
<polygon id="Fill-212" fill="#D7D7F2" points="97.0380785 59.1458757 98.4757236 59.9699313 98.4757236 61.8808553 97.0380785 61.0573393" />
|
||||
<polygon id="Fill-214" fill="#D7D7F2" points="99.9128831 60.7615536 101.349989 61.5856092 101.349989 63.4965331 99.9128831 62.6724775" />
|
||||
<polygon id="Fill-216" fill="#D7D7F2" points="102.787202 62.4042682 104.224307 63.2283238 104.224307 65.1392478 102.787202 64.3151922" />
|
||||
<path d="M107.399539,66.1606558 C107.540389,66.025202 107.721174,65.9523483 107.919768,65.9275241 C107.60137,65.8865102 107.30402,65.9577449 107.093554,66.1606558 C106.646718,66.5929207 106.765982,67.4407212 107.360684,68.0543107 C107.768664,68.4747032 108.290512,68.6689796 108.723856,68.6144742 C108.365524,68.5680638 107.980749,68.379184 107.666669,68.0543107 C107.071967,67.4407212 106.953243,66.5929207 107.399539,66.1606558" id="Fill-218" fill="#CECEEA" />
|
||||
<path d="M108.977441,66.4877956 C108.662281,66.1629223 108.278585,65.9735029 107.919714,65.9270924 C107.72112,65.9524563 107.540335,66.0253099 107.399485,66.1607637 C106.953189,66.5930286 107.071913,67.4408291 107.666615,68.0544186 C107.980695,68.3787522 108.36547,68.5681717 108.723802,68.6140425 C108.921856,68.5892183 109.10426,68.5169043 109.244571,68.3814505 C109.690867,67.9491856 109.572682,67.1008455 108.977441,66.4877956" id="Fill-220" fill="#D7D7F2" />
|
||||
<path d="M107.399539,61.5730352 C107.540389,61.4375814 107.721174,61.3647277 107.919768,61.3399035 C107.60137,61.2988896 107.30402,61.3701243 107.093554,61.5730352 C106.646718,62.0058397 106.765982,62.8531006 107.360684,63.4666901 C107.768664,63.8870826 108.290512,64.0818986 108.723856,64.0268536 C108.365524,63.9809828 107.980749,63.7915634 107.666669,63.4666901 C107.071967,62.8531006 106.953243,62.0058397 107.399539,61.5730352" id="Fill-222" fill="#2DB48F" />
|
||||
<path d="M108.977441,61.900175 C108.662281,61.5753017 108.278585,61.3858823 107.919714,61.3394718 C107.72112,61.3648357 107.540335,61.4376893 107.399485,61.5731431 C106.953189,62.0059477 107.071913,62.8532085 107.666615,63.4662584 C107.980695,63.7916713 108.36547,63.9810908 108.723802,64.0269616 C108.921856,64.0015977 109.10426,63.9292837 109.244571,63.7938299 C109.690867,63.361565 109.572682,62.5132249 108.977441,61.900175" id="Fill-224" fill="#3BE2B4" />
|
||||
</g>
|
||||
<g id="ipad" transform="translate(223.774775, 105.189189) scale(-1, 1) translate(-223.774775, -105.189189) translate(144.000000, 71.000000)">
|
||||
<path d="M59.0144154,5.98392805 C57.4618234,5.07028945 55.8514881,4.40381357 52.8747424,4.40381357 C49.8985364,4.40381357 46.6951349,6.49228455 46.6951349,6.49228455 L0.441169256,32.8771742 L1.82053148,33.7190384 L47.8991087,7.46096811 C47.8991087,7.46096811 50.6977678,5.65527719 52.8747424,5.65527719 C55.7187326,5.65527719 57.5773099,6.9067408 57.5773099,6.9067408 L80.6568029,21.4990548 L80.6568029,19.8385315 L59.0144154,5.98392805 Z" id="Fill-590" fill="#DDDDFC" />
|
||||
<path d="M158.026612,41.606767 L117.907462,64.5896615 C117.907462,64.5896615 114.739678,66.9355487 111.211403,64.9064399 C109.192008,63.7445593 47.6457939,28.3241995 47.6457939,28.3241995 C47.6457939,28.3241995 45.9129567,27.5255078 45.7785822,26.3674047 L45.7785822,27.779686 C45.7785822,29.3657367 47.6457939,30.257789 47.6457939,30.257789 C47.6457939,30.257789 108.971828,66.0089583 110.979351,67.1902666 C114.503848,69.2614685 117.569097,67.1843303 117.569097,67.1843303 L157.785385,43.7421881 C157.785385,43.7421881 159.213316,42.926767 159.213316,41.9575437 L159.213316,39.7222862 C159.213316,39.7293017 159.211158,39.7352379 159.211158,39.7411742 C159.185794,41.0816811 158.026612,41.606767 158.026612,41.606767" id="Fill-233" fill="#DDDDFC" />
|
||||
<path d="M157.964983,37.8434178 L93.3972314,1.17591169 C89.6072232,-1.02372854 86.3034456,1.38367948 86.3034456,1.38367948 L48.2797825,23.5948651 C48.2797825,23.5948651 45.6262911,25.043843 45.7784742,26.3670809 C45.9128487,27.5257236 47.645686,28.3238757 47.645686,28.3238757 C47.645686,28.3238757 109.1919,63.7447751 111.211295,64.9061161 C114.73957,66.9352249 117.907354,64.5898774 117.907354,64.5898774 L158.026504,41.6069828 C158.026504,41.6069828 159.186226,41.081897 159.21159,39.74139 C159.21159,39.727359 159.213209,39.7138675 159.213209,39.6987572 C159.213209,38.4424366 157.964983,37.8434178 157.964983,37.8434178" id="Fill-235" fill="#5763AB" />
|
||||
<polygon id="Fill-237" fill="#DDDDFC" points="51.8302371 26.5108994 106.459673 57.8660262 145.62417 35.4109158 91.329861 3.76383483" />
|
||||
<path d="M132.593191,51.1076909 C131.000664,51.1076909 129.710345,50.3322044 129.710345,49.374314 C129.710345,48.4164235 131.000664,47.6403974 132.593191,47.6403974 C134.185717,47.6403974 135.477115,48.4164235 135.477115,49.374314 C135.477115,50.3322044 134.185717,51.1076909 132.593191,51.1076909 M132.593191,47.5038643 C130.875464,47.5038643 129.48261,48.3408716 129.48261,49.374314 C129.48261,50.4072167 130.875464,51.2447637 132.593191,51.2447637 C134.311997,51.2447637 135.70485,50.4072167 135.70485,49.374314 C135.70485,48.3408716 134.311997,47.5038643 132.593191,47.5038643" id="Fill-239" fill="#D8D8D8" />
|
||||
</g>
|
||||
<g id="harddisc" transform="translate(369.882883, 31.261261) scale(-1, 1) translate(-369.882883, -31.261261) translate(302.000000, 5.000000)">
|
||||
<path d="M59.0154407,2.02452167 C57.4628487,1.11088307 55.8525135,0.443867539 52.8757678,0.443867539 C49.8995617,0.443867539 46.6961603,2.53233851 46.6961603,2.53233851 L0.442194603,28.9172281 L1.82155683,29.7596321 L47.9001341,3.50102208 C47.9001341,3.50102208 50.6987931,1.69587081 52.8757678,1.69587081 C55.719758,1.69587081 57.5783352,2.94679477 57.5783352,2.94679477 L78.2790221,15.10148 L78.2790221,13.4414963 L59.0154407,2.02452167 Z" id="Fill-605" fill="#DDDDFC" />
|
||||
<path d="M60.1748929,21.4136811 L103.657722,46.3490531 C103.657722,46.3490531 104.651769,47.0041962 105.849267,46.3490531 C107.135269,45.6458806 133.634026,30.355251 133.634026,30.355251 C133.634026,30.355251 134.808859,29.7945478 134.808859,28.7972625 L134.808859,34.015202 C134.808859,35.013027 133.634026,35.5737302 133.634026,35.5737302 C133.634026,35.5737302 107.135269,50.8638201 105.849267,51.5675323 C104.651769,52.2221357 103.657722,51.5675323 103.657722,51.5675323 L60.1748929,26.6316206 C60.1748929,26.6316206 59.3832167,26.202054 59.3832167,25.592242 L59.3832167,20.3743025 C59.3832167,20.9841145 60.1748929,21.4136811 60.1748929,21.4136811" id="Fill-608" fill="#DDDDFC" />
|
||||
<path d="M60.061565,19.2210564 L88.886242,2.52731971 C89.9250809,1.94017334 90.6703467,2.52731971 90.6703467,2.52731971 L133.634026,27.1923238 C133.634026,27.1923238 134.808859,27.8474669 134.808859,28.7961832 C134.808859,29.7934685 133.634026,30.3547114 133.634026,30.3547114 C133.634026,30.3547114 107.135269,45.6448013 105.849267,46.3479738 C104.651769,47.0031169 103.657722,46.3479738 103.657722,46.3479738 L60.1748929,21.4126018 C60.1748929,21.4126018 59.3832167,20.9835748 59.3832167,20.3726836 C59.3832167,19.5826263 60.061565,19.2210564 60.061565,19.2210564" id="Fill-610" fill="#5763AB" />
|
||||
</g>
|
||||
<g id="browser-(gallery)" transform="translate(116.000000, 144.000000)">
|
||||
<path d="M114.397859,98.816085 C114.279675,102.274204 111.700656,103.229936 111.700656,103.229936 L8.11951104,163.78642 C8.11951104,163.78642 6.7714489,164.546796 5.18593786,164.750247 C4.25556991,164.869511 3.24479313,164.797737 2.377565,164.267794 C0.27506296,162.65584 0.29718888,159.006682 0.29718888,159.006682 L0.29718888,67.3632805 C0.487147997,63.411915 3.80927392,61.9435094 3.80927392,61.9435094 L110.627279,0.774515127 C110.627279,0.774515127 112.687688,-0.386286182 113.587835,0.635823385 C114.544646,1.72215209 114.435635,2.38431071 114.435635,4.81762224 L114.397859,98.816085 Z" id="Fill-230" fill="url(#linearGradient-1)" />
|
||||
<polygon id="Fill-250" fill="#FFFFFF" points="85.6014603 23.3502927 85.6014603 112.740628 29.1355732 145.007235 29.1355732 55.6168994" />
|
||||
<polygon id="Fill-252" fill="#DDDDFC" points="85.6014603 29.9352363 29.1355732 62.2013034 29.1355732 75.2021701 85.6014603 42.9355634" />
|
||||
<polygon id="Fill-254" fill="#DDDDFC" points="79.1050204 51.8274309 79.1050204 60.5617727 67.7382339 67.0225413 67.7382339 58.4080033" />
|
||||
<polygon id="Fill-256" fill="#DDDDFC" points="78.8035683 62.4755029 78.8035683 63.5958299 67.5992183 69.9643173 67.5992183 68.962175" />
|
||||
<polygon id="Fill-258" fill="#DDDDFC" points="76.5959411 66.3955683 76.5959411 67.5158953 67.6840523 72.6356173 67.6840523 71.6334751" />
|
||||
<polygon id="Fill-260" fill="#DDDDFC" points="63.7210842 60.6638217 63.7210842 69.3981635 52.3542976 75.8589321 52.3542976 67.2443941" />
|
||||
<polygon id="Fill-262" fill="#DDDDFC" points="63.6404595 71.1855061 63.6404595 72.3058332 52.4361096 78.6743205 52.4361096 77.6716386" />
|
||||
<polygon id="Fill-264" fill="#DDDDFC" points="61.3490237 74.966556 61.3490237 76.0868831 52.4360556 81.2066051 52.4360556 80.2039231" />
|
||||
<polygon id="Fill-266" fill="#DDDDFC" points="48.3899264 69.4999967 48.3899264 78.2343385 37.0236795 84.6951071 37.0236795 76.0800294" />
|
||||
<polygon id="Fill-268" fill="#DDDDFC" points="63.6404595 117.846427 63.6404595 121.928389 53.7582682 127.544595 53.7582682 123.580278" />
|
||||
<polygon id="Fill-270" fill="#DDDDFC" points="48.5285102 79.8954015 48.5285102 81.0157285 37.3246999 87.3842159 37.3246999 86.3815339" />
|
||||
<polygon id="Fill-272" fill="#DDDDFC" points="46.2370744 83.7031643 46.2370744 84.8234914 37.324646 89.9432134 37.324646 88.9410711" />
|
||||
<polygon id="Fill-274" fill="#DDDDFC" points="79.1050204 70.7860523 79.1050204 79.5203941 67.7382339 85.9811627 67.7382339 77.3666247" />
|
||||
<polygon id="Fill-276" fill="#DDDDFC" points="78.8035683 81.1630008 78.8035683 82.2833279 67.5992183 88.6518152 67.5992183 87.6496729" />
|
||||
<polygon id="Fill-278" fill="#DDDDFC" points="76.5959411 85.0830123 76.5959411 86.2033393 67.6840523 91.3230613 67.6840523 90.3209191" />
|
||||
<polygon id="Fill-280" fill="#DDDDFC" points="63.7210842 79.6223892 63.7210842 88.356731 52.3542976 94.8174996 52.3542976 86.2029616" />
|
||||
<polygon id="Fill-282" fill="#DDDDFC" points="63.6404595 89.873112 63.6404595 90.9934391 52.4361096 97.3619264 52.4361096 96.3592445" />
|
||||
<polygon id="Fill-284" fill="#DDDDFC" points="61.3490237 93.6538921 61.3490237 94.7742191 52.4360556 99.8939411 52.4360556 98.8917989" />
|
||||
<polygon id="Fill-286" fill="#DDDDFC" points="48.3899264 88.4587261 48.3899264 97.1930679 37.0236795 103.653836 37.0236795 95.0392984" />
|
||||
<polygon id="Fill-288" fill="#DDDDFC" points="48.5285102 98.5829534 48.5285102 99.7032805 37.3246999 106.071768 37.3246999 105.069086" />
|
||||
<polygon id="Fill-290" fill="#DDDDFC" points="46.2370744 102.39077 46.2370744 103.511097 37.324646 108.630819 37.324646 107.628137" />
|
||||
<polygon id="Fill-292" fill="#DDDDFC" points="78.8035683 89.9437531 78.8035683 98.5534342 67.5992183 104.921382 67.5992183 96.4304252" />
|
||||
<polygon id="Fill-294" fill="#DDDDFC" points="78.8035683 99.8505527 78.8035683 100.97034 67.5992183 107.339367 67.5992183 106.336685" />
|
||||
<polygon id="Fill-296" fill="#DDDDFC" points="76.5959411 103.770564 76.5959411 104.890891 67.6840523 110.010613 67.6840523 109.008471" />
|
||||
<polygon id="Fill-298" fill="#DDDDFC" points="63.6404595 98.6537024 63.6404595 107.262844 52.4361096 113.631331 52.4361096 105.139835" />
|
||||
<polygon id="Fill-300" fill="#DDDDFC" points="63.6404595 108.560556 63.6404595 109.680883 52.4361096 116.04937 52.4361096 115.046688" />
|
||||
<polygon id="Fill-302" fill="#DDDDFC" points="61.3490237 112.341444 61.3490237 113.461771 52.4360556 118.581493 52.4360556 117.578811" />
|
||||
<polygon id="Fill-304" fill="#DDDDFC" points="48.5285102 107.363598 48.5285102 115.972739 37.3246999 122.341226 37.3246999 113.84973" />
|
||||
<polygon id="Fill-306" fill="#DDDDFC" points="48.5285102 117.270289 48.5285102 118.390617 37.3246999 124.759104 37.3246999 123.756422" />
|
||||
<polygon id="Fill-308" fill="#DDDDFC" points="46.2370744 121.078214 46.2370744 122.198541 37.324646 127.318263 37.324646 126.315581" />
|
||||
<polygon id="Fill-310" fill="#CECEEF" points="63.6404595 117.846427 62.9302715 117.487016 53.1678839 123.220327 53.7582682 123.580278" />
|
||||
<polygon id="Fill-312" fill="#E4E4F4" points="53.7579984 123.580548 53.1676141 123.220597 53.1676141 127.184374 53.7579984 127.544325" />
|
||||
<path d="M33.7611856,56.1263892 C34.1405642,56.5861766 34.0331725,57.3012216 33.5204988,57.724852 C33.007825,58.1474031 32.2852249,58.1182617 31.9058463,57.6590139 C31.5253884,57.1997661 31.6338594,56.4836419 32.1470728,56.0605511 C32.6592069,55.6374603 33.381807,55.6671415 33.7611856,56.1263892" id="Fill-314" fill="#E8F0F4" />
|
||||
</g>
|
||||
<g id="browser-(contact)" transform="translate(380.000000, 0.000000)">
|
||||
<path d="M114.435635,4.70105642 L114.397859,98.6989796 C114.279675,102.157639 111.700656,103.11337 111.700656,103.11337 L8.11951104,163.669854 C8.11951104,163.669854 6.7714489,164.429691 5.18593786,164.633141 C4.25556991,164.752945 3.24479313,164.681711 2.377565,164.151228 C2.29014064,164.097802 2.20649387,164.044376 2.12824366,163.983395 C0.27506296,162.538734 0.29718888,158.890116 0.29718888,158.890116 L0.29718888,67.2467146 C0.487147997,63.2953491 3.80927392,61.8269436 3.80927392,61.8269436 L110.627279,0.657949305 C110.627279,0.657949305 112.687688,-0.502312347 113.587835,0.519257563 C114.544646,1.60558626 114.435635,2.26774489 114.435635,4.70105642" id="Fill-384" fill="url(#linearGradient-2)" />
|
||||
<polygon id="Fill-386" fill="#FFFFFF" points="85.6014603 23.233565 85.6014603 112.6239 29.1355732 144.890507 29.1355732 55.5001717" />
|
||||
<polygon id="Fill-388" fill="#DDDDFC" points="85.6014603 29.8185086 29.1355732 62.0851153 29.1355732 75.0854424 85.6014603 42.8193753" />
|
||||
<polygon id="Fill-390" fill="#DDDDFC" points="77.6831333 93.3142322 37.3249158 116.424486 37.3249158 129.425352 77.6831333 106.314559" />
|
||||
<path d="M52.5743696,72.9039886 L52.5743696,75.5229419 L68.1526361,66.5506116 L68.1526361,63.8167114 L52.5743696,72.9039886 Z M52.2980654,76.000538 L52.2980654,72.7453295 L68.4289403,63.3353377 L68.4289403,66.71035 L68.3598643,66.7502845 L52.2980654,76.000538 Z" id="Fill-392" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,77.1974963 L52.5743696,79.8164497 L68.1526361,70.844659 L68.1526361,68.1096795 L52.5743696,77.1974963 Z M52.2980654,80.2940458 L52.2980654,77.0393769 L68.4289403,67.6288455 L68.4289403,71.0038577 L68.3598643,71.0437923 L52.2980654,80.2940458 Z" id="Fill-394" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,81.3330466 L52.5743696,83.952 L68.1526361,74.9802093 L68.1526361,72.2457694 L52.5743696,81.3330466 Z M52.2980654,84.4295961 L52.2980654,81.1749272 L68.4289403,71.7643957 L68.4289403,75.1399477 L68.3598643,75.1793426 L52.2980654,84.4295961 Z" id="Fill-396" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,85.5956321 L52.5743696,94.1567441 L77.5448193,80.1785593 L77.5448193,71.5003418 L52.5743696,85.5956321 Z M52.2980654,94.6278643 L52.2980654,85.4342747 L77.8211235,71.0276026 L77.8211235,80.3399166 L77.7493491,80.3798512 L52.2980654,94.6278643 Z" id="Fill-398" fill="#DDDDFC" />
|
||||
<polygon id="Fill-400" fill="#DDDDFC" points="48.5285102 74.8704971 48.5285102 75.9908242 37.3246999 82.3593115 37.3246999 81.3566296" />
|
||||
<polygon id="Fill-402" fill="#DDDDFC" points="46.2370744 78.6511153 46.2370744 79.7714424 37.324646 84.891704 37.324646 83.8890221" />
|
||||
<polygon id="Fill-404" fill="#DDDDFC" points="77.6831333 83.9463876 77.6831333 88.0278103 67.7998626 93.6440164 67.7998626 89.6802388" />
|
||||
<polygon id="Fill-406" fill="#DDDDFC" points="48.5285102 79.7785119 48.5285102 80.8988389 37.3246999 87.2678659 37.3246999 86.265184" />
|
||||
<polygon id="Fill-408" fill="#DDDDFC" points="46.2370744 83.5864366 46.2370744 84.7067637 37.324646 89.8270253 37.324646 88.8243434" />
|
||||
<polygon id="Fill-410" fill="#CECEEF" points="77.6831333 83.9463876 76.9729452 83.5864366 67.210018 89.3202878 67.7998626 89.6802388" />
|
||||
<polygon id="Fill-412" fill="#E4E4F4" points="67.7996468 89.6803467 67.2098021 89.3198561 67.2098021 93.2836337 67.7996468 93.6441243" />
|
||||
<path d="M33.7611856,56.0096615 C34.1405642,56.4694489 34.0331725,57.1850335 33.5204988,57.6081243 C33.007825,58.0306754 32.2852249,58.0020736 31.9058463,57.5422862 C31.5253884,57.0830384 31.6338594,56.3674538 32.1470728,55.944363 C32.6592069,55.5207326 33.381807,55.5504137 33.7611856,56.0096615" id="Fill-414" fill="#E8F0F4" />
|
||||
</g>
|
||||
<g id="browser-(list)" transform="translate(249.000000, 71.000000)">
|
||||
<path d="M114.397859,98.6793361 C114.279675,102.137455 111.700656,103.093727 111.700656,103.093727 L8.11951104,163.649671 C8.11951104,163.649671 6.7714489,164.409508 5.18593786,164.613498 C4.25556991,164.732762 3.24479313,164.660988 2.377565,164.131045 C0.27506296,162.519091 0.29718888,158.869933 0.29718888,158.869933 L0.29718888,67.2265315 C0.487147997,63.2757056 3.80927392,61.8067604 3.80927392,61.8067604 L110.627279,0.637766149 C110.627279,0.637766149 112.687688,-0.522495503 113.587835,0.499614064 C114.544646,1.58594276 114.435635,2.24810139 114.435635,4.68087326 L114.397859,98.6793361 Z" id="Fill-444" fill="url(#linearGradient-3)" />
|
||||
<polygon id="Fill-446" fill="#FFFFFF" points="85.6014603 23.2136517 85.6014603 112.604527 29.1355732 144.870594 29.1355732 55.4797187" />
|
||||
<polygon id="Fill-448" fill="#DDDDFC" points="85.6014603 29.7986492 29.1355732 62.0647163 29.1355732 75.0661226 85.6014603 42.7989763" />
|
||||
<polygon id="Fill-450" fill="#DDDDFC" points="48.5285102 69.8523385 48.5285102 78.46148 37.3246999 84.8299673 37.3246999 76.338471" />
|
||||
<polygon id="Fill-452" fill="#DDDDFC" points="64.9448095 60.6507621 64.9448095 61.7710891 50.1857416 70.1514162 50.1857416 69.1492739" />
|
||||
<polygon id="Fill-454" fill="#DDDDFC" points="63.773269 63.776453 63.773269 64.89678 50.1857956 72.7110074 50.1857956 71.7077858" />
|
||||
<polygon id="Fill-456" fill="#DDDDFC" points="58.8051905 69.0309812 58.8051905 70.1518479 50.1857956 75.0659608 50.1857956 74.0632788" />
|
||||
<polygon id="Fill-458" fill="#DDDDFC" points="70.50052 57.4486558 70.50052 60.9245838 67.6171349 62.5818692 67.6171349 59.222507" />
|
||||
<polygon id="Fill-460" fill="#DDDDFC" points="77.3305756 53.5980442 77.3305756 54.3810859 71.3080082 57.7922551 71.3080082 57.0912412" />
|
||||
<polygon id="Fill-462" fill="#DDDDFC" points="75.4728618 55.9732886 75.4728618 56.7563303 71.3077923 59.110852 71.3077923 58.4103778" />
|
||||
<polygon id="Fill-464" fill="#DDDDFC" points="70.50052 62.4668144 70.50052 65.9427424 67.6171349 67.5994881 67.6171349 64.2406656" />
|
||||
<polygon id="Fill-466" fill="#DDDDFC" points="77.3305756 58.6165266 77.3305756 59.3990286 71.3080082 62.8101979 71.3080082 62.1097236" />
|
||||
<polygon id="Fill-468" fill="#DDDDFC" points="75.4728618 60.9912314 75.4728618 61.7742731 71.3077923 64.1287948 71.3077923 63.4288602" />
|
||||
<polygon id="Fill-470" fill="#DDDDFC" points="70.50052 67.3600965 70.50052 70.8360245 67.6171349 72.4933099 67.6171349 69.1344873" />
|
||||
<polygon id="Fill-472" fill="#DDDDFC" points="77.3305756 63.5095388 77.3305756 64.2925805 71.3080082 67.7037498 71.3080082 67.0027359" />
|
||||
<polygon id="Fill-474" fill="#DDDDFC" points="75.4728618 65.8847294 75.4728618 66.6672314 71.3077923 69.0222927 71.3077923 68.3223581" />
|
||||
<polygon id="Fill-476" fill="#DDDDFC" points="70.50052 72.0694636 70.50052 75.5453917 67.6171349 77.202677 67.6171349 73.8438545" />
|
||||
<polygon id="Fill-478" fill="#DDDDFC" points="77.3305756 68.218852 77.3305756 69.0018937 71.3080082 72.413063 71.3080082 71.7120491" />
|
||||
<polygon id="Fill-480" fill="#DDDDFC" points="75.4728618 70.5940965 75.4728618 71.3771382 71.3077923 73.7316599 71.3077923 73.0317253" />
|
||||
<polygon id="Fill-482" fill="#DDDDFC" points="48.5285102 81.1535029 48.5285102 89.763184 37.3246999 96.1316713 37.3246999 87.640175" />
|
||||
<polygon id="Fill-484" fill="#DDDDFC" points="64.9448095 71.9521962 64.9448095 73.0725233 50.1857416 81.45339 50.1857416 80.4507081" />
|
||||
<polygon id="Fill-486" fill="#DDDDFC" points="63.773269 75.078157 63.773269 76.1984841 50.1857956 84.0127114 50.1857956 83.0094898" />
|
||||
<polygon id="Fill-488" fill="#DDDDFC" points="58.8051905 80.3326852 58.8051905 81.4535519 50.1857956 86.3671251 50.1857956 85.3644432" />
|
||||
<polygon id="Fill-490" fill="#DDDDFC" points="48.5285102 92.5516435 48.5285102 101.160245 37.3246999 107.529272 37.3246999 99.037776" />
|
||||
<polygon id="Fill-492" fill="#DDDDFC" points="64.9448095 83.350067 64.9448095 84.4703941 50.1857416 92.8507212 50.1857416 91.8480392" />
|
||||
<polygon id="Fill-494" fill="#DDDDFC" points="63.773269 86.4754881 63.773269 87.5958152 50.1857956 95.4095029 50.1857956 94.4073606" />
|
||||
<polygon id="Fill-496" fill="#DDDDFC" points="58.8051905 91.7302862 58.8051905 92.8511529 50.1857956 97.7647261 50.1857956 96.7625838" />
|
||||
<polygon id="Fill-498" fill="#DDDDFC" points="48.5285102 103.65756 48.5285102 112.266702 37.3246999 118.635189 37.3246999 110.143693" />
|
||||
<polygon id="Fill-500" fill="#DDDDFC" points="64.9448095 94.4562535 64.9448095 95.5765805 50.1857416 103.956908 50.1857416 102.954226" />
|
||||
<polygon id="Fill-502" fill="#DDDDFC" points="63.773269 97.5819444 63.773269 98.7022715 50.1857956 106.516499 50.1857956 105.513277" />
|
||||
<polygon id="Fill-504" fill="#DDDDFC" points="58.8051905 102.836742 58.8051905 103.95707 50.1857956 108.871182 50.1857956 107.8685" />
|
||||
<polygon id="Fill-506" fill="#DDDDFC" points="48.5285102 114.821975 48.5285102 123.430577 37.3246999 129.799065 37.3246999 121.308108" />
|
||||
<polygon id="Fill-508" fill="#DDDDFC" points="64.9448095 105.620399 64.9448095 106.740726 50.1857416 115.121053 50.1857416 114.118371" />
|
||||
<polygon id="Fill-510" fill="#DDDDFC" points="63.773269 108.74582 63.773269 109.866147 50.1857956 117.679835 50.1857956 116.677693" />
|
||||
<polygon id="Fill-512" fill="#DDDDFC" points="58.8051905 114.000888 58.8051905 115.121215 50.1857956 120.035328 50.1857956 119.032646" />
|
||||
<path d="M33.7611856,55.9899101 C34.1405642,56.4496975 34.0331725,57.1647424 33.5204988,57.5878332 C33.007825,58.0114636 32.2852249,57.9817825 31.9058463,57.5225348 C31.5253884,57.0627473 31.6338594,56.3471627 32.1470728,55.924072 C32.6592069,55.5009812 33.381807,55.5301226 33.7611856,55.9899101" id="Fill-514" fill="#E8F0F4" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-2" transform="translate(125.000000, 201.000000)">
|
||||
<g id="Group" transform="translate(174.000000, 204.894930) scale(-1, 1) translate(-174.000000, -204.894930) translate(0.000000, 0.394930)">
|
||||
<g id="surface" transform="translate(0.000000, 91.000000)">
|
||||
<path d="M0.530524572,87.7085749 C0.137728901,89.0826659 0.00321963665,101.905965 0,118.704862 L0,120.032804 C0.0067970107,154.614392 0.541614432,204.821838 0.531240047,207.702385 C0.468636001,224.797136 10.2638439,242.741884 34.8353953,260.290611 C70.8402342,286.005538 98.5491427,279.893141 124.466502,273.780028 C146.003367,268.700792 166.303534,263.621199 189.099635,276.80403 C239.328471,305.851691 272.898191,337.223966 325.728493,300.951684 C339.777557,291.305859 346.405358,279.893498 347.173062,267.560665 C347.373395,264.348848 347.818063,226.839849 347.822356,193.044938 L347.822356,192.080463 C347.819136,165.351692 347.535092,141.181857 346.628944,138.49628 C336.573661,108.691277 297.521614,113.851363 252.420944,88.7499649 C203.883133,61.7357152 159.98303,46.1148657 121.029004,46.1170121 C99.5508075,46.1180854 79.5711734,50.8685551 61.1587868,61.077468 C33.5568418,76.3809995 7.31286804,64.0023751 0.530524572,87.7085749 Z" id="Fill-1" fill="url(#linearGradient-4)" />
|
||||
<path d="M325.728314,181.573013 C272.89837,217.845295 239.328292,186.473019 189.099456,157.425001 C138.87062,128.377697 100.759781,187.995216 34.8352165,140.91194 C-31.0897058,93.8283061 9.3528656,43.8956068 61.158608,15.1717032 C112.964708,-13.5522004 177.120619,0.934961417 252.421123,42.8445577 C326.447367,84.0443919 378.558617,145.300731 325.728314,181.573013 Z" id="Fill-4" fill="#E6E9FF" />
|
||||
</g>
|
||||
<g id="laptop" transform="translate(24.724448, 0.000000)">
|
||||
<path d="M0.139619115,152.710224 C0.239347054,154.348663 2.33399122,155.491668 2.33399122,155.491668 L99.241667,211.615266 C99.241667,211.615266 102.012245,213.444146 105.349378,211.615266 C108.933507,209.65143 182.800097,164.444911 182.800097,164.444911 C182.800097,164.444911 185.846625,162.98689 186.061451,160.382643 C186.067527,160.493972 186.074319,160.604943 186.074319,160.724148 L186.074319,164.840112 C186.074319,167.625494 182.800097,169.190906 182.800097,169.190906 C182.800097,169.190906 108.933507,211.873722 105.349378,213.837557 C102.012245,215.666437 99.241667,213.837557 99.241667,213.837557 L2.33399122,157.714318 C2.33399122,157.714318 0.130325472,156.515827 0.130325472,154.813311 L0.130325472,153.228568 C0.132112711,153.188475 0.133542502,152.745306 0.136044636,152.431364 C0.137474428,152.580638 0.138904219,152.696979 0.139619115,152.710224" id="Fill-7" fill="#DDDDFC" />
|
||||
<path d="M2.01936566,149.374854 L82.3661269,100.249613 C85.262884,98.6101006 87.3407281,100.249613 87.3407281,100.249613 L182.800025,155.616457 C182.800025,155.616457 186.074247,157.444979 186.074247,160.093616 C186.074247,160.1917 186.069243,160.287637 186.061379,160.382499 C185.846553,162.986747 182.800025,164.444768 182.800025,164.444768 C182.800025,164.444768 108.933435,209.651287 105.349306,211.615481 C102.012173,213.444003 99.2415955,211.615481 99.2415955,211.615481 L2.33391973,155.491883 C2.33391973,155.491883 0.239633012,154.34852 0.139547625,152.710081 C0.138832729,152.696836 0.137402938,152.580495 0.135973147,152.431221 C0.133471012,152.133746 0.130253982,151.702389 0.130253982,151.675542 C0.130253982,150.362142 2.01936566,149.374854 2.01936566,149.374854" id="Fill-9" fill="#F6F6FF" />
|
||||
<path d="M189.7615,155.957068 C189.844786,155.905878 189.924139,155.851824 190.00099,155.795623 C192.108145,154.254552 191.761778,150.89033 191.761778,150.89033 C191.761778,150.89033 191.764995,66.7196103 191.569471,62.6329997 C191.387888,58.8273972 188.384611,57.413049 188.384611,57.413049 L90.034991,1.34028371 C90.034991,1.34028371 87.9689426,0.146804399 86.521279,0.915370711 C86.5094832,0.921814211 86.4093978,0.981237596 86.2814315,1.05784365 C86.2117292,1.10008437 86.1334481,1.14662075 86.0555245,1.19315714 C86.0555245,1.19315714 86.0562394,1.19315714 86.0562394,1.19279917 C86.4555086,0.927541766 87.2479704,0.529118708 87.5031881,0.376264579 C87.630797,0.299658528 87.7312398,0.240235143 87.7426782,0.234149616 C89.1903418,-0.534774669 91.7989959,0.835184939 91.7989959,0.835184939 L190.148974,56.9083082 C190.148974,56.9083082 193.151535,58.3222984 193.333476,62.1282589 C193.529,66.2148695 193.525783,150.385231 193.525783,150.385231 C193.525783,150.385231 193.87215,153.749453 191.764995,155.290524 C191.688501,155.346725 191.609505,155.400779 191.525863,155.451969 C189.269295,156.833026 187.060982,156.421716 187.060982,156.421716 L187.060625,156.421716 C187.954601,156.536625 188.927217,156.467894 189.7615,155.957068" id="Fill-11" fill="#DDDDFC" />
|
||||
<path d="M85.6342365,1.44738899 C85.651394,1.4370078 85.850135,1.31708711 86.0556675,1.19322873 C86.1332337,1.14669235 86.2115147,1.09979799 86.2815745,1.05791524 C86.4095408,0.981309191 86.5092688,0.921885805 86.5210645,0.915442306 C87.9687282,0.146875993 90.035134,1.34035531 90.035134,1.34035531 L188.384754,57.4131206 C188.384754,57.4131206 191.387673,58.8274688 191.569257,62.6330713 C191.765138,66.7196819 191.761564,150.890401 191.761564,150.890401 C191.761564,150.890401 192.108288,154.254266 190.001133,155.795336 C189.924282,155.851538 189.844928,155.90595 189.761643,155.95714 C188.92736,156.467966 187.954744,156.536697 187.060767,156.421788 C185.536253,156.225619 184.239432,155.493566 184.239432,155.493566 L87.2899348,99.03777 C87.2899348,99.03777 84.8088895,98.1167076 84.6962935,94.7864922 L84.6591189,4.26105048 C84.6591189,4.26105048 84.5154249,2.13183184 85.6342365,1.44738899" id="Fill-13" fill="#F6F6FF" />
|
||||
<path d="M159.165862,158.0182 L159.150134,157.896132 C159.151922,157.936941 159.157283,157.977392 159.165862,158.0182" id="Fill-15" fill="#DDDDFC" />
|
||||
<path d="M159.149098,157.889474 L159.15017,157.896275 C159.149813,157.893769 159.15017,157.891621 159.149813,157.889474 L159.149098,157.889474 Z" id="Fill-17" fill="#DDDDFC" />
|
||||
<path d="M172.167311,158.781075 L167.2138,161.626954 C166.31875,162.14136 165.738612,162.092318 164.997266,161.688525 L159.665574,158.643256 C159.364603,158.456752 159.213045,158.239463 159.165862,158.018236 L159.222696,158.456752 C159.259871,158.681201 159.451105,158.868062 159.687021,159.013399 L165.018713,162.059026 C165.759702,162.462819 166.340197,162.512219 167.234889,161.998171 L172.188758,159.151576 C172.494019,158.97617 172.786053,158.852669 172.816079,158.500783 L172.856113,157.855717 L172.853611,157.855717 C172.838241,158.209393 172.591244,158.537296 172.167311,158.781075" id="Fill-19" fill="#DDDDFC" />
|
||||
<path d="M149.387341,152.363099 L149.371256,152.24103 C149.373401,152.281481 149.37912,152.32229 149.387341,152.363099" id="Fill-21" fill="#DDDDFC" />
|
||||
<polygon id="Fill-23" fill="#DDDDFC" points="149.370613 152.234336 149.371327 152.24078 149.371327 152.234336" />
|
||||
<path d="M162.388469,153.125973 L157.435314,155.97221 C156.540622,156.486258 155.960127,156.436858 155.21878,156.033066 L149.887089,152.987438 C149.58576,152.802008 149.434917,152.584361 149.387377,152.363135 L149.444211,152.80165 C149.481743,153.026099 149.672263,153.212603 149.908536,153.358297 L155.240585,156.404283 C155.981217,156.807717 156.561354,156.857118 157.456404,156.342711 L162.410273,153.496475 C162.715176,153.32071 163.007926,153.197568 163.037236,152.845323 L163.077271,152.200257 L163.075126,152.200615 C163.059756,152.554292 162.812759,152.882194 162.388469,153.125973" id="Fill-25" fill="#DDDDFC" />
|
||||
<path d="M152.716789,147.388789 L147.763277,150.235026 C146.868585,150.749074 146.28809,150.700031 145.546386,150.296239 L140.215052,147.250253 C139.913723,147.065182 139.762523,146.846819 139.71534,146.625234 L139.771816,147.064824 C139.809348,147.288914 140.000583,147.475418 140.236141,147.620755 L145.567833,150.66674 C146.309179,151.070533 146.889317,151.119575 147.784366,150.605527 L152.737878,147.75929 C153.043139,147.583883 153.335173,147.460383 153.365199,147.108496 L153.405233,146.46343 L153.403089,146.46343 C153.387718,146.816749 153.140722,147.14501 152.716789,147.388789" id="Fill-27" fill="#DDDDFC" />
|
||||
<path d="M130.28029,140.68039 L130.264562,140.558321 C130.26635,140.59913 130.271711,140.639581 130.28029,140.68039" id="Fill-29" fill="#DDDDFC" />
|
||||
<polygon id="Fill-31" fill="#DDDDFC" points="130.263562 140.551734 130.264634 140.558178 130.264634 140.551734" />
|
||||
<path d="M143.281775,141.443085 L138.328263,144.289322 C137.433214,144.80337 136.853076,144.754328 136.112087,144.350893 L130.780038,141.305266 C130.479067,141.118762 130.327509,140.901473 130.280326,140.680246 L130.336803,141.118762 C130.374335,141.343569 130.565569,141.530072 130.801485,141.675409 L136.133176,144.721037 C136.874166,145.124829 137.454661,145.174229 138.34971,144.660181 L143.303222,141.813944 C143.608125,141.63818 143.900517,141.51468 143.930543,141.162793 L143.970577,140.517727 L143.967717,140.517727 C143.952705,140.871404 143.705708,141.199664 143.281775,141.443085" id="Fill-33" fill="#DDDDFC" />
|
||||
<path d="M120.501805,135.025109 L120.48572,134.90304 C120.487864,134.943491 120.493226,134.9843 120.501805,135.025109" id="Fill-35" fill="#DDDDFC" />
|
||||
<polygon id="Fill-37" fill="#DDDDFC" points="120.485041 134.896311 120.485755 134.903112 120.485755 134.896311" />
|
||||
<path d="M133.503254,135.788091 L128.5501,138.634328 C127.65505,139.148376 127.074913,139.099334 126.333566,138.695541 L121.001517,135.649556 C120.700188,135.464484 120.549345,135.246479 120.501805,135.025252 L120.558639,135.464126 C120.596171,135.688217 120.786691,135.875078 121.023321,136.020415 L126.355013,139.0664 C127.096002,139.469835 127.675782,139.519235 128.570832,139.004829 L133.524343,136.158592 C133.829604,135.982828 134.122354,135.860043 134.151664,135.507441 L134.191699,134.862375 L134.189554,134.862733 C134.174541,135.216409 133.927545,135.544312 133.503254,135.788091" id="Fill-39" fill="#DDDDFC" />
|
||||
<path d="M123.830895,130.050835 L118.877383,132.897072 C117.983049,133.411478 117.402554,133.362078 116.661207,132.958285 L111.329158,129.912299 C111.028187,129.727228 110.876629,129.508865 110.829803,129.28728 L110.88628,129.72687 C110.923812,129.951318 111.115047,130.137464 111.350605,130.282801 L116.682296,133.328428 C117.423643,133.732579 118.003781,133.781979 118.89883,133.267931 L123.852342,130.421336 C124.15796,130.246288 124.449637,130.122071 124.479663,129.770542 L124.519697,129.125477 L124.517195,129.125477 C124.502182,129.478795 124.255186,129.806698 123.830895,130.050835" id="Fill-41" fill="#DDDDFC" />
|
||||
<path d="M101.165058,123.505957 L101.165773,123.512401 C101.165415,123.509895 101.16613,123.508105 101.165415,123.505957 L101.165058,123.505957 Z" id="Fill-43" fill="#DDDDFC" />
|
||||
<path d="M114.18295,124.39738 L109.229795,127.243259 C108.334746,127.757665 107.754608,127.708265 107.012904,127.30483 L101.681213,124.259203 C101.380599,124.073415 101.229041,123.85541 101.181858,123.634183 L101.238692,124.073415 C101.275152,124.297506 101.466744,124.484009 101.703017,124.629704 L107.034351,127.674973 C107.77534,128.079124 108.356193,128.128524 109.250527,127.614118 L114.204039,124.767881 C114.509657,124.592117 114.801334,124.468616 114.83136,124.11673 L114.872109,123.471664 L114.869607,123.471664 C114.854237,123.825698 114.606883,124.153243 114.18295,124.39738" id="Fill-45" fill="#DDDDFC" />
|
||||
<path d="M91.4033012,117.979404 L91.387216,117.856977 C91.3893607,117.897428 91.3950799,117.938237 91.4033012,117.979404" id="Fill-47" fill="#DDDDFC" />
|
||||
<polygon id="Fill-49" fill="#DDDDFC" points="91.3865726 117.85039 91.3872875 117.857192 91.3872875 117.85039" />
|
||||
<path d="M104.404429,118.742207 L99.4512744,121.588444 C98.5565825,122.10285 97.9757298,122.053091 97.2347405,121.649299 L91.9026915,118.603313 C91.6020779,118.418242 91.45052,118.200237 91.4033369,117.979368 L91.4601711,118.417884 C91.4973457,118.64269 91.6882228,118.828836 91.9244958,118.974531 L97.2565448,122.020158 C97.9971767,122.423593 98.5773145,122.473351 99.4723638,121.958945 L104.425876,119.11235 C104.731136,118.937301 105.023171,118.813801 105.053196,118.461914 L105.093231,117.81649 L105.091086,117.816848 C105.075716,118.170167 104.828719,118.49807 104.404429,118.742207" id="Fill-51" fill="#DDDDFC" />
|
||||
<path d="M94.7327488,113.004843 L89.7788796,115.85108 C88.8845452,116.365486 88.30405,116.316086 87.5623457,115.912293 L82.2302968,112.866666 C81.9293257,112.681236 81.7784827,112.462873 81.7312996,112.241646 L81.7877764,112.681236 C81.8249509,112.904969 82.016543,113.091472 82.2517436,113.236809 L87.5837926,116.282794 C88.3244245,116.686945 88.9052772,116.735629 89.8003265,116.221581 L94.7531233,113.375344 C95.0587412,113.199938 95.3511335,113.076437 95.3808017,112.724551 L95.4204784,112.079485 L95.4190486,112.079485 C95.4036784,112.432803 95.1566819,112.761064 94.7327488,113.004843" id="Fill-53" fill="#DDDDFC" />
|
||||
<path d="M149.546191,163.755349 L149.530106,163.633281 C149.532608,163.674447 149.537612,163.71454 149.546191,163.755349" id="Fill-55" fill="#DDDDFC" />
|
||||
<path d="M149.529784,163.626801 L149.530141,163.633603 C149.530141,163.630739 149.530856,163.628949 149.530141,163.626801 L149.529784,163.626801 Z" id="Fill-57" fill="#DDDDFC" />
|
||||
<path d="M139.76767,158.100355 L139.751585,157.978286 C139.754087,158.018737 139.759449,158.059546 139.76767,158.100355" id="Fill-59" fill="#DDDDFC" />
|
||||
<path d="M139.750906,157.971521 L139.75162,157.978322 C139.752335,157.976174 139.75162,157.973669 139.75162,157.971521 L139.750906,157.971521 Z" id="Fill-61" fill="#DDDDFC" />
|
||||
<path d="M152.769155,158.86323 L147.816001,161.709466 C146.921309,162.223873 146.340813,162.174114 145.599467,161.770322 L140.267418,158.724694 C139.966804,158.539265 139.815246,158.321618 139.767706,158.100391 L139.82454,158.539265 C139.862072,158.763713 140.052592,158.949859 140.289222,159.095553 L145.620914,162.141539 C146.361545,162.544974 146.942041,162.594374 147.836732,162.079968 L152.790602,159.233731 C153.095862,159.057966 153.387897,158.934824 153.417565,158.582579 L153.457599,157.937513 L153.455812,157.937871 C153.440799,158.291548 153.193445,158.61945 152.769155,158.86323" id="Fill-63" fill="#DDDDFC" />
|
||||
<path d="M143.097118,153.125973 L138.143606,155.97221 C137.248914,156.486258 136.668419,156.437216 135.927072,156.033423 L130.595023,152.987438 C130.294052,152.802366 130.143209,152.584003 130.095668,152.362777 L130.152145,152.802008 C130.18932,153.026099 130.380554,153.212603 130.61647,153.357939 L135.948161,156.403925 C136.689151,156.808075 137.270361,156.857118 138.164695,156.342711 L143.118207,153.496475 C143.423467,153.321068 143.716217,153.197568 143.745528,152.845681 L143.785562,152.200615 L143.783417,152.200615 C143.768047,152.553934 143.521051,152.882194 143.097118,153.125973" id="Fill-65" fill="#DDDDFC" />
|
||||
<path d="M120.660976,146.417467 L120.644891,146.295756 C120.646678,146.336565 120.65204,146.376658 120.660976,146.417467" id="Fill-67" fill="#DDDDFC" />
|
||||
<path d="M120.644212,146.288847 L120.644927,146.295649 C120.644927,146.293143 120.645284,146.290995 120.644927,146.288847 L120.644212,146.288847 Z" id="Fill-69" fill="#DDDDFC" />
|
||||
<path d="M133.662104,147.180341 L128.708592,150.02622 C127.8139,150.540626 127.233762,150.491584 126.492416,150.08815 L121.160367,147.042522 C120.859753,146.856019 120.707838,146.638729 120.661012,146.417503 L120.717489,146.856019 C120.754663,147.080467 120.945898,147.267329 121.181814,147.413023 L126.513505,150.458651 C127.254137,150.862443 127.835347,150.911486 128.729682,150.397438 L133.683551,147.551201 C133.988811,147.375436 134.280846,147.251936 134.310872,146.900049 L134.350906,146.255341 L134.348761,146.255341 C134.333391,146.60866 134.086394,146.936562 133.662104,147.180341" id="Fill-71" fill="#DDDDFC" />
|
||||
<path d="M110.882134,140.762544 L110.866406,140.640476 C110.868551,140.680927 110.873912,140.721735 110.882134,140.762544" id="Fill-73" fill="#DDDDFC" />
|
||||
<path d="M110.865369,140.63371 L110.866442,140.640512 C110.866799,140.638006 110.866442,140.635858 110.866442,140.63371 L110.865369,140.63371 Z" id="Fill-75" fill="#DDDDFC" />
|
||||
<path d="M123.883583,141.52524 L118.930429,144.371835 C118.035737,144.885883 117.455241,144.836483 116.714252,144.43269 L111.381846,141.386705 C111.081232,141.201275 110.929674,140.983628 110.882134,140.762401 L110.938968,141.200917 C110.9765,141.425724 111.16702,141.612227 111.40365,141.757564 L116.735342,144.803549 C117.475973,145.206984 118.056826,145.256742 118.951518,144.742336 L123.90503,141.895741 C124.21029,141.720335 124.502325,141.597192 124.531993,141.244948 L124.572027,140.599882 L124.569883,140.599882 C124.555227,140.953558 124.307873,141.281461 123.883583,141.52524" id="Fill-77" fill="#DDDDFC" />
|
||||
<path d="M114.211546,135.788091 L109.258391,138.634328 C108.363342,139.148376 107.782489,139.099334 107.0415,138.695541 L101.709451,135.649914 C101.40848,135.464484 101.257637,135.246121 101.210096,135.024894 L101.266931,135.464484 C101.303748,135.688217 101.495697,135.875078 101.730898,136.020057 L107.062947,139.066042 C107.803936,139.469835 108.384431,139.519235 109.279123,139.004829 L114.232635,136.158592 C114.537895,135.983186 114.830645,135.859685 114.859956,135.507799 L114.89999,134.862733 L114.897845,134.862733 C114.882475,135.216051 114.635479,135.544312 114.211546,135.788091" id="Fill-79" fill="#DDDDFC" />
|
||||
<path d="M91.562151,129.371582 L91.5460658,129.249514 C91.548568,129.290323 91.5535722,129.331132 91.562151,129.371582" id="Fill-81" fill="#DDDDFC" />
|
||||
<path d="M91.5453867,129.242927 L91.5461016,129.249729 C91.5461016,129.247223 91.546459,129.245075 91.5461016,129.242927 L91.5453867,129.242927 Z" id="Fill-83" fill="#DDDDFC" />
|
||||
<path d="M104.563243,130.134385 L99.6100884,132.980264 C98.7153966,133.495028 98.1349013,133.44527 97.393912,133.042194 L92.0615056,129.996208 C91.760892,129.810421 91.6093341,129.592773 91.562151,129.371547 L91.6189852,129.810421 C91.6561598,130.034869 91.8473943,130.221373 92.082595,130.366709 L97.4150014,133.412695 C98.1556333,133.816487 98.736486,133.86553 99.6311779,133.351124 L104.58469,130.505245 C104.88995,130.32948 105.181985,130.20598 105.212368,129.854093 L105.252402,129.209027 L105.2499,129.209027 C105.234887,129.562346 104.987533,129.890606 104.563243,130.134385" id="Fill-85" fill="#DDDDFC" />
|
||||
<path d="M81.78363,123.716409 L81.7675448,123.594341 C81.7696895,123.634792 81.7754087,123.675958 81.78363,123.716409" id="Fill-87" fill="#DDDDFC" />
|
||||
<polygon id="Fill-89" fill="#DDDDFC" points="81.7669014 123.587754 81.7676163 123.594556 81.7676163 123.587754" />
|
||||
<path d="M94.7844,124.479534 L89.8316032,127.325771 C88.9369113,127.839819 88.3567735,127.790419 87.6154267,127.386627 L82.2833778,124.340641 C81.9827642,124.15557 81.8312063,123.937922 81.7836657,123.716338 L81.8401425,124.15557 C81.8780319,124.37966 82.0685516,124.565806 82.3048246,124.7115 L87.6368736,127.757486 C88.3775055,128.16092 88.9580007,128.210679 89.8526926,127.696273 L94.8065618,124.850036 C95.1118222,124.674271 95.4038571,124.551129 95.4335252,124.198884 L95.4735594,123.55346 L95.4714147,123.553818 C95.4560445,123.907495 95.209048,124.235755 94.7844,124.479534" id="Fill-91" fill="#DDDDFC" />
|
||||
<path d="M139.152967,169.492605 L139.136882,169.370537 C139.138669,169.411346 139.144388,169.451797 139.152967,169.492605" id="Fill-93" fill="#DDDDFC" />
|
||||
<path d="M139.136203,169.364058 L139.136917,169.370859 C139.13656,169.368353 139.137275,169.366205 139.13656,169.364058 L139.136203,169.364058 Z" id="Fill-95" fill="#DDDDFC" />
|
||||
<path d="M129.374482,163.837611 L129.358396,163.715543 C129.360541,163.755994 129.36626,163.796802 129.374482,163.837611" id="Fill-97" fill="#DDDDFC" />
|
||||
<polygon id="Fill-99" fill="#DDDDFC" points="129.35736 163.708777 129.358432 163.715578 129.358432 163.708777" />
|
||||
<path d="M142.375573,164.600486 L137.422419,167.446723 C136.527727,167.960771 135.946874,167.911371 135.205885,167.507578 L129.873836,164.461951 C129.572865,164.276521 129.421665,164.058874 129.374482,163.837647 L129.430958,164.276163 C129.46849,164.500612 129.659368,164.687115 129.895641,164.83281 L135.22769,167.878795 C135.967964,168.28223 136.548459,168.33163 137.443508,167.817224 L142.39702,164.970987 C142.702281,164.795223 142.994316,164.67208 143.024341,164.319836 L143.064375,163.67477 L143.062231,163.675128 C143.04686,164.028804 142.799864,164.356707 142.375573,164.600486" id="Fill-101" fill="#DDDDFC" />
|
||||
<path d="M132.703893,158.86323 L127.750024,161.709466 C126.85569,162.223873 126.275195,162.174472 125.53349,161.77068 L120.201441,158.725052 C119.90047,158.539623 119.749627,158.32126 119.702087,158.100033 L119.758921,158.539265 C119.796096,158.763355 119.987688,158.949859 120.222888,159.095196 L125.554937,162.141181 C126.295569,162.545332 126.876422,162.594374 127.771471,162.079968 L132.724983,159.233731 C133.029886,159.058324 133.322278,158.934824 133.351589,158.582937 L133.391623,157.937871 L133.390193,157.937871 C133.374823,158.29119 133.127827,158.61945 132.703893,158.86323" id="Fill-103" fill="#DDDDFC" />
|
||||
<path d="M110.267431,152.154723 L110.251345,152.032655 C110.253133,152.073821 110.258852,152.113914 110.267431,152.154723" id="Fill-105" fill="#DDDDFC" />
|
||||
<path d="M110.250666,152.026175 L110.251381,152.032977 C110.251024,152.030113 110.251739,152.028323 110.251024,152.026175 L110.250666,152.026175 Z" id="Fill-107" fill="#DDDDFC" />
|
||||
<path d="M123.268522,152.917598 L118.315368,155.763835 C117.420319,156.278241 116.840181,156.228841 116.098477,155.825406 L110.766785,152.779778 C110.466172,152.593275 110.314614,152.375986 110.267431,152.154759 L110.323907,152.593275 C110.360725,152.817723 110.551959,153.004585 110.78859,153.15028 L116.119566,156.195549 C116.860913,156.599342 117.441766,156.648742 118.336457,156.134694 L123.289612,153.288457 C123.59523,153.112693 123.887265,152.989192 123.91729,152.637305 L123.957324,151.992597 L123.954822,151.992597 C123.939809,152.345916 123.692455,152.674177 123.268522,152.917598" id="Fill-109" fill="#DDDDFC" />
|
||||
<path d="M100.48891,146.499729 L100.472824,146.37766 C100.474969,146.418111 100.480331,146.45892 100.48891,146.499729" id="Fill-111" fill="#DDDDFC" />
|
||||
<polygon id="Fill-113" fill="#DDDDFC" points="100.472145 146.370895 100.47286 146.377696 100.47286 146.370895" />
|
||||
<path d="M113.490037,147.262603 L108.53724,150.10884 C107.642191,150.622888 107.061338,150.573488 106.320349,150.169696 L100.9883,147.124068 C100.687329,146.938639 100.536128,146.720991 100.488945,146.499765 L100.54578,146.938639 C100.582954,147.162729 100.773474,147.349233 101.010104,147.494927 L106.342153,150.540913 C107.082785,150.944348 107.662923,150.993748 108.557972,150.479342 L113.511484,147.633105 C113.816744,147.45734 114.108779,147.334198 114.138805,146.982311 L114.178839,146.336887 L114.176694,146.337245 C114.161324,146.690922 113.914328,147.018824 113.490037,147.262603" id="Fill-115" fill="#DDDDFC" />
|
||||
<path d="M103.818,141.52524 L98.8644881,144.371835 C97.9701536,144.885883 97.3896584,144.836483 96.6479542,144.43269 L91.3159052,141.387063 C91.0152916,141.201633 90.8637337,140.98327 90.8169081,140.762043 L90.8733848,141.201275 C90.9105594,141.425366 91.101794,141.612227 91.3373521,141.757564 L96.669401,144.803191 C97.4100329,145.207342 97.9908856,145.256384 98.8859349,144.742336 L103.839089,141.895741 C104.14435,141.720335 104.436742,141.596834 104.46641,141.245306 L104.506087,140.599882 L104.5043,140.599882 C104.489287,140.9532 104.24229,141.281461 103.818,141.52524" id="Fill-117" fill="#DDDDFC" />
|
||||
<path d="M81.1685695,135.108839 L81.1524844,134.98677 C81.1546291,135.027937 81.1603482,135.06803 81.1685695,135.108839" id="Fill-119" fill="#DDDDFC" />
|
||||
<path d="M81.1518052,134.980005 L81.1525201,134.986806 C81.1525201,134.9843 81.153235,134.98251 81.1525201,134.980005 L81.1518052,134.980005 Z" id="Fill-121" fill="#DDDDFC" />
|
||||
<path d="M94.169697,135.871642 L89.2165427,138.717879 C88.3218509,139.232285 87.7417131,139.182885 87.0000089,138.77945 L81.6679599,135.733464 C81.3677037,135.547319 81.2154309,135.33003 81.1686053,135.108803 L81.2254395,135.547319 C81.2622566,135.772125 81.4538486,135.958629 81.6894067,136.104324 L87.0214557,139.149951 C87.762445,139.553386 88.3432977,139.602786 89.2376321,139.088738 L94.1911439,136.242501 C94.4967618,136.066737 94.7884392,135.943236 94.8184648,135.591349 L94.858499,134.946284 L94.8563543,134.946284 C94.8413415,135.29996 94.5939876,135.627863 94.169697,135.871642" id="Fill-123" fill="#DDDDFC" />
|
||||
<path d="M71.3904417,129.454095 L71.3743566,129.331669 C71.3765013,129.372119 71.381863,129.412928 71.3904417,129.454095" id="Fill-125" fill="#DDDDFC" />
|
||||
<polygon id="Fill-127" fill="#DDDDFC" points="71.37332 129.32476 71.3743923 129.331919 71.3743923 129.32476" />
|
||||
<path d="M84.391176,130.21654 L79.4383792,133.062777 C78.5436873,133.577183 77.9628346,133.527783 77.2218453,133.123632 L71.8897963,130.078005 C71.5888252,129.892933 71.4372674,129.674928 71.3904417,129.454059 L71.4469185,129.892575 C71.484093,130.117024 71.6753276,130.303527 71.9112432,130.448506 L77.2429347,133.494849 C77.983924,133.898284 78.5644193,133.947684 79.4594686,133.433278 L84.4129803,130.587041 C84.7182408,130.411277 85.0102756,130.288492 85.0395863,129.936606 L85.0796205,129.291182 L85.0781907,129.29154 C85.0628204,129.644858 84.8154666,129.972761 84.391176,130.21654" id="Fill-129" fill="#DDDDFC" />
|
||||
<path d="M85.1123627,118.833096 L80.1599233,121.679333 C79.264874,122.193739 78.6847362,122.143981 77.9433894,121.740188 L72.6113405,118.69456 C72.3107268,118.509131 72.159169,118.291484 72.1116284,118.070257 L72.1681052,118.509131 C72.2059946,118.733579 72.3965143,118.919725 72.6327873,119.065062 L77.9648363,122.111405 C78.7054682,122.51484 79.285606,122.56424 80.1806553,122.049834 L85.1345245,119.203597 C85.4397849,119.027833 85.7321772,118.90469 85.7614879,118.552445 L85.8015221,117.90738 L85.7993774,117.907738 C85.7840071,118.261056 85.5370107,118.589317 85.1123627,118.833096" id="Fill-131" fill="#DDDDFC" />
|
||||
<path d="M74.7191744,124.570424 L69.7663776,127.41666 C68.8716857,127.930709 68.2911905,127.881308 67.5498437,127.477516 L62.2181522,124.43153 C61.9168237,124.246459 61.7652658,124.028454 61.7180827,123.807585 L61.7749169,124.246101 C61.8120915,124.470549 62.0033261,124.657053 62.2395991,124.802747 L67.5712906,127.848375 C68.3122799,128.25181 68.8924177,128.301568 69.787467,127.787162 L74.7409788,124.940567 C75.0465966,124.76516 75.3382741,124.642018 75.3675848,124.289773 L75.4076189,123.644707 L75.4058317,123.645065 C75.3908189,123.998384 75.143465,124.326286 74.7191744,124.570424" id="Fill-133" fill="#DDDDFC" />
|
||||
<path d="M162.423713,164.558889 L147.076691,173.108697 C146.181999,173.622745 145.601862,173.573703 144.860872,173.169911 L139.528823,170.123925 C139.227137,169.938854 139.076652,169.720491 139.029111,169.498906 L139.085945,169.938496 C139.122763,170.162586 139.314712,170.34909 139.549913,170.494426 L144.882319,173.540412 C145.622951,173.944205 146.203804,173.993247 147.098853,173.479199 L162.44516,164.929391 C162.75042,164.753984 163.042813,164.630484 163.072481,164.278597 L163.112872,163.633531 L163.110013,163.633531 C163.095,163.98685 162.848003,164.31511 162.423713,164.558889" id="Fill-135" fill="#DDDDFC" />
|
||||
<path d="M129.533296,175.229862 L129.517211,175.107793 C129.519355,175.14896 129.524717,175.189053 129.533296,175.229862" id="Fill-137" fill="#DDDDFC" />
|
||||
<path d="M129.516531,175.101314 L129.517246,175.107757 C129.517246,175.105252 129.517604,175.103462 129.517246,175.101314 L129.516531,175.101314 Z" id="Fill-139" fill="#DDDDFC" />
|
||||
<path d="M142.534423,175.992736 L137.581269,178.838973 C136.68622,179.353021 136.106082,179.303979 135.365092,178.900544 L130.032686,175.854917 C129.732072,175.668413 129.580515,175.451124 129.533331,175.229897 L129.589808,175.668413 C129.62734,175.892862 129.818575,176.079723 130.053775,176.225418 L135.386182,179.270688 C136.126814,179.67448 136.707666,179.72388 137.602358,179.209832 L142.555513,176.363595 C142.86113,176.187831 143.153165,176.064331 143.183191,175.712444 L143.223225,175.067736 L143.22108,175.067736 C143.205353,175.421055 142.958714,175.748957 142.534423,175.992736" id="Fill-141" fill="#DDDDFC" />
|
||||
<path d="M119.754775,169.574939 L119.73869,169.452871 C119.740834,169.493321 119.746553,169.533772 119.754775,169.574939" id="Fill-143" fill="#DDDDFC" />
|
||||
<path d="M119.738046,169.446033 L119.738761,169.452835 C119.739476,169.450329 119.738761,169.448181 119.738761,169.446033 L119.738046,169.446033 Z" id="Fill-145" fill="#DDDDFC" />
|
||||
<path d="M132.755545,170.337814 L127.802748,173.184051 C126.908056,173.698099 126.327918,173.648698 125.586214,173.244906 L120.254522,170.199278 C119.953909,170.013849 119.802351,169.796202 119.75481,169.574975 L119.811287,170.013491 C119.849177,170.237939 120.039696,170.424443 120.275969,170.570138 L125.608018,173.615765 C126.34865,174.019558 126.928788,174.068958 127.823837,173.554552 L132.777706,170.708315 C133.082967,170.53255 133.375002,170.409408 133.40467,170.057163 L133.444704,169.412097 L133.442559,169.412455 C133.427189,169.766132 133.180193,170.093677 132.755545,170.337814" id="Fill-147" fill="#DDDDFC" />
|
||||
<path d="M123.083865,164.600486 L118.130711,167.446723 C117.236019,167.960771 116.655166,167.911729 115.914177,167.507936 L110.58177,164.462308 C110.281157,164.276879 110.129599,164.058516 110.082416,163.837289 L110.13925,164.276521 C110.176424,164.500612 110.367659,164.687115 110.603575,164.832452 L115.935266,167.878437 C116.675898,168.282588 117.256751,168.331272 118.1518,167.817224 L123.105312,164.970987 C123.410215,164.795581 123.702607,164.67208 123.732633,164.320194 L123.772667,163.675128 L123.770165,163.675128 C123.755152,164.028446 123.508155,164.356707 123.083865,164.600486" id="Fill-149" fill="#DDDDFC" />
|
||||
<path d="M100.647402,157.891979 L100.631674,157.769911 C100.633819,157.811078 100.639181,157.851171 100.647402,157.891979" id="Fill-151" fill="#DDDDFC" />
|
||||
<path d="M100.631317,157.763432 L100.631674,157.770233 C100.631674,157.767727 100.632032,157.765579 100.631674,157.763432 L100.631317,157.763432 Z" id="Fill-153" fill="#DDDDFC" />
|
||||
<path d="M113.648851,158.654854 L108.695697,161.500733 C107.801005,162.015139 107.22051,161.966097 106.479163,161.562662 L101.147114,158.517035 C100.8465,158.330531 100.694943,158.113242 100.647402,157.892015 L100.704594,158.330531 C100.741768,158.55498 100.933003,158.741841 101.168918,158.887536 L106.50061,161.932805 C107.241242,162.336598 107.822094,162.385998 108.716786,161.87195 L113.670298,159.025713 C113.975558,158.849949 114.267593,158.726448 114.297619,158.374562 L114.338011,157.729854 L114.335508,157.729854 C114.320138,158.083172 114.073142,158.411075 113.648851,158.654854" id="Fill-155" fill="#DDDDFC" />
|
||||
<path d="M90.8692384,152.236985 L90.8531533,152.114917 C90.855298,152.155367 90.8610171,152.196176 90.8692384,152.236985" id="Fill-157" fill="#DDDDFC" />
|
||||
<polygon id="Fill-159" fill="#DDDDFC" points="90.8524741 152.108151 90.853189 152.114952 90.853189 152.108151" />
|
||||
<path d="M103.870008,152.999931 L98.9172116,155.846168 C98.0225197,156.360216 97.4423819,156.310816 96.7006777,155.907023 L91.3689862,152.861396 C91.0683726,152.675966 90.9168147,152.458319 90.8692742,152.237093 L90.9257509,152.675608 C90.9632829,152.900057 91.1541601,153.086561 91.3900756,153.232255 L96.722482,156.278241 C97.4631139,156.681675 98.0432517,156.731076 98.938301,156.216669 L103.891813,153.370432 C104.197073,153.194668 104.489108,153.071526 104.519134,152.719281 L104.559168,152.074215 L104.557023,152.074573 C104.541653,152.42825 104.294299,152.756152 103.870008,152.999931" id="Fill-161" fill="#DDDDFC" />
|
||||
<path d="M94.1983286,147.262603 L89.2451743,150.10884 C88.3504824,150.622888 87.7696297,150.573846 87.0286404,150.170054 L81.6965914,147.124426 C81.3956204,146.938997 81.24442,146.720634 81.1968794,146.499407 L81.2540711,146.938639 C81.2908882,147.162729 81.4821228,147.349233 81.7180383,147.494569 L87.0497298,150.540555 C87.7910766,150.944705 88.3715718,150.99339 89.2662637,150.479342 L94.2197755,147.633105 C94.5246784,147.457698 94.8170708,147.334198 94.8470964,146.982311 L94.8871305,146.337245 L94.8846284,146.337245 C94.8696156,146.690564 94.6226191,147.018824 94.1983286,147.262603" id="Fill-163" fill="#DDDDFC" />
|
||||
<path d="M71.5492558,140.846023 L71.5331706,140.723955 C71.5349579,140.765122 71.5403196,140.805215 71.5492558,140.846023" id="Fill-165" fill="#DDDDFC" />
|
||||
<path d="M71.532134,140.71744 L71.5332064,140.724241 C71.5328489,140.721735 71.5332064,140.719588 71.5328489,140.71744 L71.532134,140.71744 Z" id="Fill-167" fill="#DDDDFC" />
|
||||
<path d="M84.5503833,141.608898 L79.597229,144.454777 C78.7021796,144.969183 78.1220419,144.920141 77.3803376,144.516706 L72.0486461,141.471079 C71.7480325,141.284575 71.5964746,141.067286 71.5492915,140.846059 L71.6054108,141.284575 C71.6429428,141.509024 71.8341774,141.695885 72.0697355,141.84158 L77.4017845,144.886849 C78.1427738,145.290642 78.7232691,145.340042 79.6183184,144.825994 L84.5714727,141.979757 C84.8770906,141.803993 85.1691254,141.680492 85.199151,141.328606 L85.2391852,140.683898 L85.2366831,140.683898 C85.2213128,141.037216 84.9743164,141.365119 84.5503833,141.608898" id="Fill-169" fill="#DDDDFC" />
|
||||
<path d="M61.7704131,135.190993 L61.7546854,135.068925 C61.75683,135.109376 61.7621918,135.149827 61.7704131,135.190993" id="Fill-171" fill="#DDDDFC" />
|
||||
<polygon id="Fill-173" fill="#DDDDFC" points="61.7532913 135.062338 61.7547211 135.06914 61.7547211 135.062338" />
|
||||
<path d="M74.7715048,135.954118 L69.8183505,138.800355 C68.9236586,139.314403 68.3435208,139.264645 67.6021741,138.861211 L62.2704825,135.815225 C61.969154,135.629796 61.8183111,135.412149 61.7704131,135.190922 L61.8272473,135.629796 C61.8651367,135.854244 62.0556564,136.040748 62.2919294,136.186084 L67.6239784,139.23207 C68.3646103,139.635505 68.9447481,139.685263 69.8394399,139.170857 L74.7929517,136.324262 C75.0982121,136.148855 75.3909619,136.025355 75.42063,135.67311 L75.4606642,135.028044 L75.4585195,135.028044 C75.4431492,135.382079 75.1957954,135.709981 74.7715048,135.954118" id="Fill-175" fill="#DDDDFC" />
|
||||
<path d="M65.0994675,130.21654 L60.1463132,133.062777 C59.2516213,133.577183 58.6711261,133.527783 57.9294219,133.12399 L52.5977303,130.078363 C52.2967593,129.893291 52.1455589,129.67457 52.0983758,129.453343 L52.15521,129.892933 C52.1923845,130.116666 52.3836191,130.303527 52.6195347,130.448506 L57.9508687,133.494491 C58.6918581,133.898642 59.2727107,133.947684 60.1677601,133.433278 L65.1212718,130.587041 C65.4261748,130.411635 65.7185671,130.288134 65.7478778,129.936606 L65.787912,129.29154 L65.7857673,129.29154 C65.7707545,129.6445 65.523758,129.972761 65.0994675,130.21654" id="Fill-177" fill="#DDDDFC" />
|
||||
<path d="M119.143217,180.96676 L119.127847,180.844691 C119.129634,180.885858 119.134638,180.925951 119.143217,180.96676" id="Fill-179" fill="#DDDDFC" />
|
||||
<polygon id="Fill-181" fill="#DDDDFC" points="119.12681 180.83832 119.127883 180.844763 119.127883 180.83832" />
|
||||
<path d="M132.144702,181.729742 L127.191548,184.575979 C126.296499,185.090027 125.716361,185.040985 124.975371,184.63755 L119.642965,181.591923 C119.342351,181.405419 119.190794,181.18813 119.143253,180.966903 L119.200445,181.405419 C119.237619,181.629868 119.428854,181.816729 119.664412,181.962424 L124.996461,185.007693 C125.737093,185.411486 126.317945,185.460886 127.21228,184.946838 L132.166149,182.100601 C132.471409,181.924837 132.763444,181.801336 132.79347,181.44945 L132.833862,180.804742 L132.831359,180.804742 C132.815632,181.15806 132.568993,181.485963 132.144702,181.729742" id="Fill-183" fill="#DDDDFC" />
|
||||
<path d="M109.365054,175.311945 L109.348968,175.189518 C109.351113,175.230327 109.356832,175.270778 109.365054,175.311945" id="Fill-185" fill="#DDDDFC" />
|
||||
<path d="M109.348325,175.18311 L109.34904,175.189554 C109.349397,175.187406 109.34904,175.185258 109.34904,175.18311 L109.348325,175.18311 Z" id="Fill-187" fill="#DDDDFC" />
|
||||
<path d="M122.366181,176.074819 L117.412669,178.921056 C116.518335,179.435104 115.938197,179.385704 115.196493,178.981911 L109.864801,175.936284 C109.564188,175.750854 109.41263,175.533207 109.365089,175.31198 L109.421566,175.750496 C109.459456,175.974945 109.649975,176.161449 109.886248,176.307143 L115.218297,179.352771 C115.958929,179.756205 116.539067,179.805963 117.433759,179.291557 L122.387985,176.44532 C122.692888,176.269556 122.985281,176.146414 123.014591,175.794169 L123.054983,175.149103 L123.052838,175.149461 C123.037468,175.503138 122.790472,175.83104 122.366181,176.074819" id="Fill-189" fill="#DDDDFC" />
|
||||
<path d="M112.693786,170.337456 L107.74099,173.183693 C106.846298,173.698099 106.265445,173.648698 105.524456,173.244906 L61.6591753,147.229276 C61.3578468,147.043847 61.2066464,146.825484 61.1591058,146.604257 L61.21594,147.043489 C61.253472,147.267579 61.4447066,147.454083 61.6802647,147.599419 L105.545903,173.615407 C106.286534,174.019558 106.867387,174.068242 107.762079,173.554552 L112.715591,170.707957 C113.020494,170.53255 113.312886,170.40905 113.342912,170.057163 L113.382946,169.412097 L113.380086,169.412097 C113.365431,169.765416 113.118077,170.093677 112.693786,170.337456" id="Fill-191" fill="#DDDDFC" />
|
||||
<path d="M90.2580027,163.628913 L90.2419175,163.507203 C90.2444196,163.548012 90.2497814,163.588463 90.2580027,163.628913" id="Fill-193" fill="#DDDDFC" />
|
||||
<path d="M90.2412741,163.500437 L90.241989,163.507239 C90.241989,163.504733 90.2423464,163.502585 90.241989,163.500437 L90.2412741,163.500437 Z" id="Fill-195" fill="#DDDDFC" />
|
||||
<path d="M80.4795174,157.974062 L80.4634322,157.851994 C80.4655769,157.892445 80.4712961,157.933254 80.4795174,157.974062" id="Fill-197" fill="#DDDDFC" />
|
||||
<polygon id="Fill-199" fill="#DDDDFC" points="80.4627531 157.845157 80.463468 157.851958 80.463468 157.845157" />
|
||||
<path d="M61.1591773,146.582993 L61.143807,146.460925 C61.1452368,146.502091 61.1505986,146.542184 61.1591773,146.582993" id="Fill-201" fill="#DDDDFC" />
|
||||
<path d="M61.142413,146.454445 L61.1438428,146.461247 C61.1431279,146.458741 61.1438428,146.456593 61.1431279,146.454445 L61.142413,146.454445 Z" id="Fill-203" fill="#DDDDFC" />
|
||||
<path d="M51.3810137,140.928178 L51.3649286,140.805751 C51.3667158,140.84656 51.372435,140.887011 51.3810137,140.928178" id="Fill-205" fill="#DDDDFC" />
|
||||
<polygon id="Fill-207" fill="#DDDDFC" points="51.3642852 140.799272 51.3650001 140.805716 51.3650001 140.799272" />
|
||||
<path d="M64.3817838,141.690874 L59.4286295,144.53711 C58.5339376,145.051517 57.9534424,145.001758 57.2124531,144.597966 L51.8807615,141.552338 C51.5797905,141.366909 51.42859,141.149262 51.3810495,140.928035 L51.4375262,141.366551 C51.4754157,141.591357 51.6659354,141.777503 51.9018509,141.923197 L57.2342574,144.969183 C57.9748892,145.372618 58.555027,145.422018 59.4497189,144.90797 L64.4032306,142.061375 C64.7088485,141.88561 65.0012408,141.762826 65.0305516,141.410223 L65.0709432,140.765515 L65.0687985,140.765515 C65.0534282,141.119192 64.8060743,141.447094 64.3817838,141.690874" id="Fill-209" fill="#DDDDFC" />
|
||||
<path d="M54.7101039,135.953796 L49.7565922,138.800033 C48.8622577,139.314081 48.2814051,139.264681 47.5404157,138.861246 L42.2083668,135.815261 C41.9070383,135.629831 41.7558378,135.411468 41.7086547,135.190242 L41.7654889,135.629831 C41.8026635,135.853564 41.9942555,136.040426 42.2298136,136.185762 L47.5615052,139.231748 C48.3024945,139.63554 48.8829897,139.684583 49.778039,139.170534 L54.7315508,136.32394 C55.0364538,136.148891 55.3288461,136.025033 55.3585142,135.673146 L55.3985484,135.02808 L55.3964037,135.02808 C55.3810335,135.381757 55.1343945,135.709659 54.7101039,135.953796" id="Fill-211" fill="#DDDDFC" />
|
||||
<path d="M86.2089411,92.6844436 C86.315818,95.8421164 88.6678246,96.7152106 88.6678246,96.7152106 L183.115545,152.013324 C183.115545,152.013324 184.345165,152.707432 185.790326,152.89322 C186.638193,153.002401 187.560051,152.936892 188.351083,152.452914 C190.268075,150.980574 190.248058,147.648211 190.248058,147.648211 L190.248058,63.9632601 C190.075411,60.3552583 187.046041,59.0142945 187.046041,59.0142945 L89.6465167,3.15667045 C89.6465167,3.15667045 87.767771,2.09707274 86.9467134,3.02994829 C86.0738258,4.02188926 86.1731963,4.62686227 86.1731963,6.84843774 L86.2089411,92.6844436 Z" id="Fill-213" fill="#5763AB" />
|
||||
<path d="M174.951865,171.825653 L178.340113,169.803111 C178.865562,169.489885 179.175469,168.736353 178.883791,168.201901 C179.214788,168.244142 179.52398,168.429929 179.708066,168.739217 C180.026552,169.275459 179.713785,170.050827 179.179043,170.369781 L175.791153,172.392323 C175.478029,172.578827 175.11236,172.592072 174.798878,172.467498 C174.575473,172.37872 174.377089,172.223003 174.244476,172.000344 C174.238757,171.991037 174.234825,171.980655 174.229463,171.970632 C174.471456,172.003924 174.725601,171.960967 174.951865,171.825653" id="Fill-215" fill="#B6B6DD" />
|
||||
<path d="M174.773821,170.369888 L178.162069,168.347703 C178.345439,168.238163 178.547755,168.190553 178.746853,168.192343 C178.792964,168.192343 178.83836,168.195923 178.883756,168.202008 C179.175433,168.736461 178.865526,169.489992 178.340435,169.803218 L174.95183,171.825761 C174.725565,171.960716 174.47142,172.003673 174.229428,171.97074 C173.938823,171.436287 174.24873,170.683472 174.773821,170.369888" id="Fill-217" fill="#C7C7EA" />
|
||||
</g>
|
||||
<g id="browser-(homepage)" transform="translate(113.973017, 8.744890)">
|
||||
<polygon id="Fill-223" fill="#DDDDFC" points="7 34.8944613 7 51.4739195 28.5651504 63.7369664 28.5651504 47.3854823" />
|
||||
<polygon id="Fill-225" fill="#DDDDFC" points="19.670846 18 19.670846 22.8818174 75.251605 54.9604986 75.251605 50.3043907" />
|
||||
<polygon id="Fill-227" fill="#DDDDFC" points="28.1180767 32.7826537 28.1180767 36.8416505 65.1163325 57.9428477 65.1163325 54.1103153" />
|
||||
<polygon id="Fill-229" fill="#DDDDFC" points="7 53.9007303 7 56.0574262 28.5651504 68.3219828 28.5651504 66.3917513" />
|
||||
<polygon id="Fill-231" fill="#DDDDFC" points="7 60.2361533 7 62.3936041 24.1534281 72.252354 24.1534281 70.3221225" />
|
||||
<polygon id="Fill-233" fill="#DDDDFC" points="36.5653073 51.7889227 36.5653073 68.3668711 58.1297032 80.6314277 58.1297032 64.2791888" />
|
||||
<polygon id="Fill-235" fill="#DDDDFC" points="36.5653073 70.7951916 36.5653073 72.9526424 58.1297032 85.2164442 58.1297032 83.2862127" />
|
||||
<polygon id="Fill-237" fill="#DDDDFC" points="36.5653073 77.1306146 36.5653073 79.2865557 53.7202445 89.1468153 53.7202445 87.2158289" />
|
||||
<polygon id="Fill-239" fill="#DDDDFC" points="64.018807 68.683384 64.018807 85.2620873 85.5824483 97.525889 85.5824483 81.1736501" />
|
||||
<polygon id="Fill-241" fill="#DDDDFC" points="64.018807 110.919537 64.018807 118.780116 83.0404452 129.595301 83.0404452 121.961941" />
|
||||
<polygon id="Fill-243" fill="#DDDDFC" points="64.018807 87.689653 64.018807 89.8463489 85.5824483 102.110905 85.5824483 100.180674" />
|
||||
<polygon id="Fill-245" fill="#DDDDFC" points="64.018807 94.025076 64.018807 96.1817719 81.1722351 106.041277 81.1722351 104.111045" />
|
||||
<polygon id="Fill-247" fill="#E4E4F4" points="64.018807 111.611763 65.3860108 110.919537 84.1752545 121.959676 83.0404452 122.654167" />
|
||||
<polygon id="Fill-249" fill="#CECEEF" points="83.025076 122.173066 84.1598853 121.478576 84.1598853 129.111935 83.025076 129.806426" />
|
||||
<path d="M1.27141755,0.365341438 C1.69016129,0.0193226608 2.34221531,0.117980907 2.72773109,0.585177748 C3.11360415,1.05237459 3.0871647,1.71188352 2.66842097,2.0579023 C2.24931994,2.40392107 1.59726592,2.30562028 1.21139286,1.83842344 C0.82551979,1.37086915 0.852316531,0.711717673 1.27141755,0.365341438" id="Fill-251" fill="#E8F0F4" />
|
||||
<path d="M4.33275513,2.20666137 C4.75149886,1.8606426 5.40355289,1.95930084 5.78906866,2.42649768 C6.17494173,2.89369452 6.14850228,3.55320345 5.72975854,3.89922223 C5.31065752,4.24524101 4.6586035,4.14694022 4.27273043,3.67974338 C3.88685737,3.21218908 3.91365411,2.55303761 4.33275513,2.20666137" id="Fill-251" fill="#E8F0F4" />
|
||||
<path d="M7.33275513,4.20666137 C7.75149886,3.8606426 8.40355289,3.95930084 8.78906866,4.42649768 C9.17494173,4.89369452 9.14850228,5.55320345 8.72975854,5.89922223 C8.31065752,6.24524101 7.6586035,6.14694022 7.27273043,5.67974338 C6.88685737,5.21218908 6.91365411,4.55303761 7.33275513,4.20666137" id="Fill-251" fill="#E8F0F4" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="letters" transform="translate(21.000000, 208.000000)">
|
||||
<path d="M111.654289,39.2861548 L47.6826319,2.51619384 C45.6200209,1.3547577 44.140145,2.51619384 44.140145,2.51619384 L2.34268513,26.786654 C2.34268513,26.786654 0.312147209,26.4136085 0.0108415818,28.0623888 C-0.0135519772,28.1973872 0.0108415818,29.8155679 0.0108415818,29.9577662 C0.0108415818,31.9305426 2.34268513,33.0397794 2.34268513,33.0397794 C2.34268513,33.0397794 61.6994419,67.0337235 64.251731,68.4242069 C66.6278443,69.7197414 68.6010122,68.4242069 68.6010122,68.4242069 L111.430681,43.6191531 C111.430681,43.6191531 113,42.7700132 113,41.5640276 C113,41.4623288 112.994579,39.7626991 112.983286,39.6686502 C112.831052,38.3087665 111.654289,39.2861548 111.654289,39.2861548" id="Fill-649" fill="#DDDDFC" />
|
||||
<path d="M111.65416,37.2857048 L47.6763645,0.516193836 C45.6135557,-0.645242296 44.1335378,0.516193836 44.1335378,0.516193836 L2.33206729,24.7857541 C2.33206729,24.7857541 0,26.0817386 0,27.9577662 C0,29.9309926 2.33206729,31.0397794 2.33206729,31.0397794 C2.33206729,31.0397794 61.6945195,65.0332735 64.2470535,66.4242069 C66.6233948,67.7197414 68.596752,66.4242069 68.596752,66.4242069 L111.43053,41.6182531 C111.43053,41.6182531 113,40.7700132 113,39.5635776 C113,37.9998463 111.65416,37.2857048 111.65416,37.2857048" id="Fill-651" fill="#5763AB" />
|
||||
<polygon id="Fill-653" fill="#DDDDFC" points="7 28.309241 7 27.3657141 47.20433 5 108 38.9266098 108 39.8701367 68.0017097 63" />
|
||||
<polygon id="Fill-655" fill="#FFFFFF" points="7 27.3083505 47.2448206 4 92 29.8127202 52.1419492 53" />
|
||||
<path d="M91.7737631,30 L56.0526655,51.1115684 C52.5329938,52.6035665 48.9232723,52.3109282 43,48.905807 L67.6518006,63 L108,39.4165524 L91.7737631,30 Z" id="Fill-657" fill="#F6F6FF" />
|
||||
<path d="M56,50 C63.002918,46.4216349 62.9031075,38.2337593 62.9031075,38.2337593 L107,13 C107,13 107,20.7203932 102.079614,23.8276971 L56,50 Z" id="Fill-659" fill="#EAEAF9" />
|
||||
<polygon id="Fill-661" fill="#DDDDFC" points="20 16.8482627 27.5736826 21 40 14.0697721 40 13.397394 32.2765475 10 20 16.1754463" />
|
||||
<polygon id="Fill-663" fill="#F6F6FF" points="20 16.8482627 27.5736826 21 40 14.0702104 32.2765475 10" />
|
||||
</g>
|
||||
<g id="cup" transform="translate(110.000000, 165.000000)">
|
||||
<path d="M0.209271566,16.7060587 L0.235954644,17.2537495 C0.447513331,20.8855616 2.19373017,41.3694277 14.8403654,44.9497739 C24.9791726,47.5872161 27.8495093,43.7725843 28.1746617,43.2740551 L29.681112,12.4121014 L0,12.4121014 L0.209271566,16.6999135 L0.209271566,16.7060587 Z" id="Fill-623" fill="#5763AB" />
|
||||
<polygon id="Fill-625" fill="#FFFFFF" points="0.539656582 16.729354 0.539656582 16.729354 0.539656582 16.7379886" />
|
||||
<path d="M15.2085907,44.2483358 C2.5060817,40.6908765 0.752149951,20.3379504 0.539656582,16.729354 L1.91837482,44.6631564 C1.91837482,48.9063864 7.86857201,52.3466885 15.2085907,52.3466885 C22.5489923,52.3466885 28.4995723,48.9063864 28.4995723,44.6631564 L28.6017989,42.5833288 C28.2752099,43.0786712 25.3925747,46.8689186 15.2085907,44.2483358" id="Fill-627" fill="#5763AB" />
|
||||
<path d="M15.1100014,50.2915031 C8.09739139,50.2915031 2.33581602,47.1667851 1.68215331,43.1725266 C1.64156266,43.4219027 1.61896975,43.6747478 1.61896975,43.9302909 C1.61896975,48.2803055 7.65931867,51.8070319 15.1100014,51.8070319 C22.5614499,51.8070319 28.6017989,48.2803055 28.6017989,43.9302909 C28.6017989,43.6747478 28.5792059,43.4219027 28.5382324,43.1725266 C27.8849526,47.1667851 22.1233772,50.2915031 15.1100014,50.2915031" id="Fill-629" fill="#F0F0FC" />
|
||||
<path d="M29.681112,11.6026165 C29.681112,16.2224128 23.1576531,19.9672935 15.1105755,19.9672935 C7.06388014,19.9672935 0.539656582,16.2224128 0.539656582,11.6026165 C0.539656582,6.98282023 7.06388014,3.23793949 15.1105755,3.23793949 C23.1576531,3.23793949 29.681112,6.98282023 29.681112,11.6026165" id="Fill-631" fill="#FFFFFF" />
|
||||
<path d="M14.8401735,23.1190569 C7.12648136,23.1190569 0.789195934,19.6040148 0.0703887793,15.1103843 C0.0248656014,15.3911624 0,15.6754846 0,15.9629573 C0,20.8566866 6.64447124,24.8242028 14.8401735,24.8242028 C23.0362582,24.8242028 29.681112,20.8566866 29.681112,15.9629573 C29.681112,15.6754846 29.6558639,15.3911624 29.6107232,15.1103843 C28.8919161,19.6040148 22.5546307,23.1190569 14.8401735,23.1190569" id="Fill-633" fill="#F0F0FC" />
|
||||
<path d="M15.1100018,15.1188951 C7.53602344,15.1188951 1.31388548,11.7991226 0.608510931,7.55519215 C0.563755604,7.8206982 0.539656582,8.08885552 0.539656582,8.36080037 C0.539656582,12.9823479 7.06284106,16.729354 15.1100018,16.729354 C23.1571625,16.729354 29.681112,12.9823479 29.681112,8.36080037 C29.681112,8.08885552 29.6562479,7.8206982 29.6130227,7.55519215 C28.9065006,11.7991226 22.6839801,15.1188951 15.1100018,15.1188951" id="Fill-635" fill="#FCFCFC" />
|
||||
<path d="M15.2915269,19.8058415 C20.8993826,20.3267898 24.323813,19.5135653 26.4074571,18.4171509 C27.7770775,17.5198781 28.8348342,16.4605662 29.4851193,15.2944901 C29.5522724,15.1165499 29.5742774,15.0120574 29.5742774,15.0120574 C29.5742774,15.0120574 29.5909709,15.0207651 29.6209432,15.035909 C30.0083067,14.2586511 30.2207686,13.4378547 30.2207686,12.5879064 C30.2207686,7.72181048 23.4056741,3.77759608 14.9990124,3.77759608 C8.25486497,3.77759608 2.53888134,6.31721887 0.540221994,9.83361965 C0.533392862,10.0789499 0.394154445,18.6117494 15.2915269,19.8058415" id="Fill-637" fill="#FFFFFF" />
|
||||
<path d="M15.4229882,21.5862633 C20.0273186,21.5862633 24.1572611,20.401934 26.9828291,18.5261304 C24.8715339,19.6513793 21.4020439,20.4866677 15.7193846,19.9518344 C0.624700413,18.7259156 0.765402168,9.96568766 0.772706357,9.71381848 C0.273330458,10.6035231 0,11.5534741 0,12.5411278 C0,17.536922 6.90553448,21.5862633 15.4229882,21.5862633" id="Fill-639" fill="#F6F6FF" />
|
||||
<path d="M29.681112,8.90433361 C29.681112,13.5241552 23.1573588,17.2690106 15.1103843,17.2690106 C7.06302546,17.2690106 0.539656582,13.5241552 0.539656582,8.90433361 C0.539656582,4.28451199 7.06302546,0.539656582 15.1103843,0.539656582 C23.1573588,0.539656582 29.681112,4.28451199 29.681112,8.90433361" id="Fill-641" fill="#5763AB" />
|
||||
<path d="M15.1101934,0.198744233 C7.18411153,0.198744233 0.735126643,3.98303628 0.735126643,8.63450531 C0.735126643,13.2863625 7.18411153,17.0702664 15.1101934,17.0702664 C23.0370389,17.0702664 29.4852602,13.2863625 29.4852602,8.63450531 C29.4852602,3.98303628 23.0370389,0.198744233 15.1101934,0.198744233 M15.1101934,17.2690106 C7.07568673,17.2690106 0.539656582,13.3958271 0.539656582,8.63450531 C0.539656582,3.87357168 7.07568673,0 15.1101934,0 C23.1447001,0 29.681112,3.87357168 29.681112,8.63450531 C29.681112,13.3958271 23.1447001,17.2690106 15.1101934,17.2690106" id="Fill-643" fill="#F7F7F7" />
|
||||
<path d="M13.8488249,13.4868733 L17.0416278,13.4868733 C17.1220805,13.4868733 17.1983784,13.5042815 17.2674998,13.5345568 C17.2674998,13.5281233 17.2690106,13.5220683 17.2690106,13.5152563 C17.2690106,13.204178 17.0174542,12.951758 16.7069746,12.951758 L13.5134163,12.951758 C13.2033144,12.951758 12.951758,13.204178 12.951758,13.5152563 C12.951758,13.7461052 13.0903784,13.9440298 13.2886774,14.0310711 C13.2984979,13.7294538 13.5447664,13.4868733 13.8488249,13.4868733" id="Fill-645" fill="#DADEE0" />
|
||||
<path d="M16.7371922,14.5707277 C17.0255145,14.5707277 17.2593282,14.3498964 17.2690106,14.0748924 C17.2037436,14.0469434 17.1313045,14.0310711 17.0549206,14.0310711 L14.0235916,14.0310711 C13.7349106,14.0310711 13.501097,14.2522475 13.4914146,14.5272515 C13.5570402,14.5548555 13.6291207,14.5707277 13.705146,14.5707277 L16.7371922,14.5707277 Z" id="Fill-647" fill="#E8E8E8" />
|
||||
</g>
|
||||
<g id="Group-12" transform="translate(75.000000, 129.000000) scale(-1, 1) translate(-75.000000, -129.000000) translate(40.000000, 61.000000)">
|
||||
<path d="M6.39721837,87.1914435 C16.6327678,81.207717 26.4418359,78.2158538 35.8244229,78.2158538 C45.2070098,78.2158538 56.2955217,81.207717 69.0899584,87.1914435 C63.1192213,102.578169 57.5749653,111.553759 52.4571906,114.118213 C44.7805286,117.964894 36.5464962,121.25642 23.0299861,112.835986 C14.0189794,107.222363 8.47472352,98.6741825 6.39721837,87.1914435 Z" id="Path-33" fill="url(#linearGradient-5)" />
|
||||
<path d="M15.9670888,67.7288579 L23.9751307,58.4180167 L23.6242325,58.155285 L16.1075921,66.8947804 C18.8837766,50.495891 21.61761,39.1822525 24.3032968,32.9654562 L32.9486939,24.8795323 L32.6303488,24.5810998 L24.7722703,31.9306593 C25.0044775,31.4434853 25.2363208,30.994578 25.4677963,30.5839452 L34.145169,15.1904619 L33.7424291,14.9884755 L25.0650563,30.3819588 C21.3800501,36.9190851 17.6316572,52.9417093 13.8050923,78.4794017 L14.2567348,78.5396117 C14.8285889,74.7231775 15.3987234,71.1195598 15.9670888,67.7288579 Z M9.17855425,81.6421579 C-0.858607632,71.8772112 -3.22585382,54.5609562 4.88885684,44.8559091 C11.7513366,36.6485074 17.6801575,21.4274155 23.1250673,10.9039748 C23.8396289,9.5229333 24.4263651,16.0439695 25.1252748,14.8512093 C28.5468821,9.01188952 31.9125959,-2.07510478 35.1027075,0.338422891 C37.1775671,1.90818968 38.8540561,4.5483404 40.1321745,8.25887506 C40.5328677,9.42213672 38.1103098,13.937916 38.4377917,15.873544 C38.7548086,17.7473172 41.8241674,17.0166517 42.0725773,19.6142166 C42.4015484,23.0541919 42.7596422,29.6422067 43.1468589,39.3782609 L35.0075868,51.5762554 L43.5870956,41.3771293 C43.8756538,42.9175587 43.6833669,44.9737921 43.0102349,47.5458296 C42.3371028,50.1178671 41.133054,52.9188147 39.3980884,55.9486725 L30.2737242,69.7882391 L39.4617613,57.8586224 C37.5292027,65.096037 34.9959618,70.4855856 31.8620385,74.0272684 C28.7281153,77.5689512 17.8052405,81.5738078 12.9670336,83.8382026 L1.84351473,121.614074 L9.17855425,81.6421579 Z" id="Combined-Shape-Copy" fill="#3BC2CA" transform="translate(21.858485, 60.807037) scale(-1, 1) translate(-21.858485, -60.807037) " />
|
||||
<path d="M44.4515554,77.9238635 L49.4200426,72.147071 L49.2023323,71.9840625 L44.5387289,77.4063708 C46.261177,67.2318894 47.9573491,60.212487 49.6236491,56.3553551 L54.9875753,51.338547 L54.7900621,51.1533884 L49.9146177,55.7133286 C50.0586877,55.4110677 50.2025319,55.132549 50.3461479,54.8777771 L55.729913,45.3270871 L55.4800381,45.2017672 L50.0962731,54.7524572 C47.8099581,58.8083337 45.4843156,68.7493661 43.1101723,84.593901 L43.3903881,84.6312575 C43.7451877,82.2633997 44.0989204,80.0275811 44.4515554,77.9238635 Z M40.2396959,86.5561926 C34.0122671,80.4976563 32.5435394,69.7540072 37.578208,63.7326347 C41.8359458,58.6404572 45.514407,49.1967253 48.8926317,42.6675909 C49.3359723,41.8107414 49.7000053,45.856635 50.1336349,45.1166021 C52.2565274,41.4936708 54.3447415,34.6148869 56.3240055,36.1123293 C57.6113256,37.086271 58.6514818,38.7243188 59.444474,41.0264726 C59.693079,41.7482034 58.1900339,44.549961 58.3932159,45.7508966 C58.5899049,46.9134552 60.4942494,46.4601232 60.6483721,48.0717491 C60.852478,50.2060379 61.0746528,54.2934874 61.3148965,60.3340979 L56.2649891,67.9021877 L61.5880357,61.5742702 C61.7670679,62.5300099 61.647766,63.8057737 61.2301298,65.4015615 C60.8124936,66.9973493 60.0654569,68.7351614 58.9890197,70.614998 L53.3279245,79.2015802 L59.0285247,71.800002 C57.8294934,76.2903634 56.2577765,79.63424 54.3133738,81.8316318 C52.3689712,84.0290236 45.5920131,86.5137857 42.5902095,87.9187005 L35.6887644,111.356257 L40.2396959,86.5561926 Z" id="Combined-Shape-Copy" fill="#6CD5DB" />
|
||||
<path d="M8.95610572,94.7423047 C17.4857302,91.4180334 26.4418359,89.7558978 35.8244229,89.7558978 C45.2070098,89.7558978 55.016078,91.4180334 65.2516274,94.7423047 C61.8397776,106.529984 57.5749653,113.33054 52.4571906,115.143974 C44.7805286,117.864125 36.5464962,120.191702 23.0299861,114.237257 C14.0189794,110.267627 9.32768597,103.76931 8.95610572,94.7423047 Z" id="Path-33" fill="url(#linearGradient-6)" opacity="0.650701993" />
|
||||
<path d="M6.39721837,87.1914435 C20.0446176,99.1588966 33.6920168,102.578169 47.3394159,97.4492604 C60.9868151,92.320352 68.236996,88.9010797 69.0899584,87.1914435 C63.9721837,109.416713 60.1338527,122.238985 57.5749653,125.658257 C53.7366343,130.787165 49.8983033,137.198301 34.5449792,134.633847 C19.1916551,132.069392 15.3564047,124.520972 12.7944367,119.247121 C11.0864581,115.731221 8.95405197,105.045995 6.39721837,87.1914435 Z" id="Path-32" fill="url(#linearGradient-7)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 93 KiB |
371
media/images/custom-software-development.max-800x600.svg
Normal file
@@ -0,0 +1,371 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="486" height="600" viewBox="0.0 0.0 495.0 610.0" version="1.1">
|
||||
|
||||
<title>custom-software-development</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
|
||||
<stop stop-color="#FD99BE" offset="0%" />
|
||||
<stop stop-color="#F94C8C" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
|
||||
<stop stop-color="#9AE1E5" offset="0%" />
|
||||
<stop stop-color="#39BAC1" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
|
||||
<stop stop-color="#FFDB71" offset="0%" />
|
||||
<stop stop-color="#FEB856" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="81.253561%" x2="50%" y2="38.5969009%" id="linearGradient-4">
|
||||
<stop stop-color="#434D8E" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-5">
|
||||
<stop stop-color="#72669D" offset="0%" />
|
||||
<stop stop-color="#ADA7C7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-6">
|
||||
<stop stop-color="#EAE9F1" offset="0%" />
|
||||
<stop stop-color="#ECE7F9" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="15.4820432%" y1="76.2997855%" x2="100%" y2="25.92039%" id="linearGradient-7">
|
||||
<stop stop-color="#444F90" offset="0%" />
|
||||
<stop stop-color="#828BC0" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="6" transform="translate(-161.000000, -282.000000)">
|
||||
<g id="custom-software-development" transform="translate(408.500000, 587.500000) scale(-1, 1) translate(-408.500000, -587.500000) translate(161.000000, 282.000000)">
|
||||
<g id="Group-3">
|
||||
<g id="server" transform="translate(82.252252, 162.063063) scale(-1, 1) translate(-82.252252, -162.063063) translate(0.000000, 114.000000)">
|
||||
<path d="M59.0486296,40.3303712 C57.4965773,39.4167326 55.8857024,38.7502567 52.9089567,38.7502567 C49.9332903,38.7502567 46.7288095,40.8387277 46.7288095,40.8387277 L0.475383483,67.2236173 L1.85474571,68.0654816 L47.933323,41.8074113 C47.933323,41.8074113 50.7325217,40.0017204 52.9089567,40.0017204 C55.7529469,40.0017204 57.6115241,41.253184 57.6115241,41.253184 L62.008646,43.732906 L62.008646,42.0723827 L59.0486296,40.3303712 Z" id="Fill-115" fill="#DDDDFC" />
|
||||
<polygon id="Fill-118" fill="#DDDDFC" points="113.561877 79.1812739 164.098558 50.1639395 164.098558 66.4297285 113.561877 95.447063 62.0926705 65.9375617 62.0926705 49.6717727" />
|
||||
<polygon id="Fill-120" fill="#5763AB" points="112.189531 20.269933 164.098558 50.1642093 113.561877 79.1815437 62.0926705 49.6715029" />
|
||||
<polygon id="Fill-122" fill="#EAEAF9" points="113.561877 95.4471709 113.561877 79.1813818 62.0926705 49.6718806 62.0926705 65.9376697" />
|
||||
<polygon id="Fill-124" fill="#D7D7F2" points="65.4180883 53.4711709 66.8551938 54.2952265 66.8551938 66.7834195 65.4180883 65.9599035" />
|
||||
<polygon id="Fill-126" fill="#D7D7F2" points="68.2928929 55.1139935 69.7299984 55.9380491 69.7299984 68.426242 68.2928929 67.6021864" />
|
||||
<polygon id="Fill-128" fill="#D7D7F2" points="71.1672118 56.7743549 72.6048569 57.5984105 72.6048569 70.0866034 71.1672118 69.2625478" />
|
||||
<polygon id="Fill-130" fill="#D7D7F2" points="74.0420164 58.4167457 75.4791218 59.2408013 75.4791218 71.7289943 74.0420164 70.9049387" />
|
||||
<polygon id="Fill-132" fill="#D7D7F2" points="76.9163352 60.0326934 78.3534407 60.856749 78.3534407 73.3444023 76.9163352 72.5208863" />
|
||||
<polygon id="Fill-134" fill="#D7D7F2" points="79.7911938 61.6751382 81.2282993 62.4991938 81.2282993 74.9873868 79.7911938 74.1633312" />
|
||||
<polygon id="Fill-136" fill="#D7D7F2" points="82.6654587 63.3356075 84.1025642 64.1596631 84.1025642 76.6478561 82.6654587 75.8238005" />
|
||||
<polygon id="Fill-138" fill="#D7D7F2" points="85.5397776 64.9781603 86.9774227 65.8022159 86.9774227 78.2904088 85.5397776 77.4663532" />
|
||||
<polygon id="Fill-140" fill="#D7D7F2" points="88.4146361 66.6885478 89.8517416 67.5126034 89.8517416 80.0007964 88.4146361 79.1767408" />
|
||||
<polygon id="Fill-142" fill="#D7D7F2" points="91.2889011 68.3313704 92.7260065 69.155426 92.7260065 81.643619 91.2889011 80.8195634" />
|
||||
<polygon id="Fill-144" fill="#D7D7F2" points="94.1637596 69.991462 95.6008651 70.8155176 95.6008651 83.3037105 94.1637596 82.4801946" />
|
||||
<polygon id="Fill-146" fill="#D7D7F2" points="97.0380785 71.6342845 98.4757236 72.4583401 98.4757236 84.9465331 97.0380785 84.1224775" />
|
||||
<polygon id="Fill-148" fill="#D7D7F2" points="99.9128831 73.2502322 101.349989 74.0742878 101.349989 86.5619411 99.9128831 85.7378855" />
|
||||
<polygon id="Fill-150" fill="#D7D7F2" points="102.787202 74.8926231 104.224307 75.7166787 104.224307 88.204332 102.787202 87.380816" />
|
||||
<polygon id="Fill-152" fill="#D7D7F2" points="105.662007 76.5529845 107.099112 77.3770401 107.099112 89.865233 105.662007 89.0411774" />
|
||||
<polygon id="Fill-154" fill="#D7D7F2" points="108.536325 78.1953753 109.973431 79.0194309 109.973431 91.5076239 108.536325 90.6835683" />
|
||||
<polygon id="Fill-156" fill="#DDDDFC" points="113.561877 59.1382666 164.098558 30.1209321 164.098558 46.3861815 113.561877 75.4035159 62.0926705 45.8940147 62.0926705 29.6287653" />
|
||||
<polygon id="Fill-158" fill="#5763AB" points="112.189531 0.226601799 164.098558 30.1208782 113.561877 59.1382126 62.0926705 29.6287114" />
|
||||
<polygon id="Fill-160" fill="#EAEAF9" points="113.561877 75.4036778 113.561877 59.1384285 62.0926705 29.6289272 62.0926705 45.8941766" />
|
||||
<polygon id="Fill-162" fill="#D7D7F2" points="65.4180883 37.2055977 66.8551938 38.0296533 66.8551938 39.9405773 65.4180883 39.1165217" />
|
||||
<polygon id="Fill-164" fill="#D7D7F2" points="68.2928929 38.8481504 69.7299984 39.6722061 69.7299984 41.58313 68.2928929 40.7596141" />
|
||||
<polygon id="Fill-166" fill="#D7D7F2" points="71.1672118 40.50835 72.6048569 41.3324056 72.6048569 43.2433295 71.1672118 42.4192739" />
|
||||
<polygon id="Fill-168" fill="#D7D7F2" points="74.0420164 42.1513344 75.4791218 42.97539 75.4791218 44.886314 74.0420164 44.0622584" />
|
||||
<polygon id="Fill-170" fill="#D7D7F2" points="76.9163352 43.7667424 78.3534407 44.590798 78.3534407 46.501722 76.9163352 45.6782061" />
|
||||
<polygon id="Fill-172" fill="#D7D7F2" points="79.7911938 45.4094031 81.2282993 46.2334587 81.2282993 48.1443827 79.7911938 47.3203271" />
|
||||
<polygon id="Fill-174" fill="#D7D7F2" points="82.6654587 47.0698724 84.1025642 47.893928 84.1025642 49.804852 82.6654587 48.9807964" />
|
||||
<polygon id="Fill-176" fill="#D7D7F2" points="85.5397776 48.7125871 86.9774227 49.5366427 86.9774227 51.4475666 85.5397776 50.623511" />
|
||||
<polygon id="Fill-178" fill="#D7D7F2" points="88.4146361 50.4229747 89.8517416 51.2470303 89.8517416 53.1579542 88.4146361 52.3338986" />
|
||||
<polygon id="Fill-180" fill="#D7D7F2" points="91.2889011 52.0656353 92.7260065 52.8896909 92.7260065 54.8006149 91.2889011 53.9765593" />
|
||||
<polygon id="Fill-182" fill="#D7D7F2" points="94.1637596 53.7258888 95.6008651 54.5499444 95.6008651 56.4608684 94.1637596 55.6368128" />
|
||||
<polygon id="Fill-184" fill="#D7D7F2" points="97.0380785 55.3685495 98.4757236 56.1926051 98.4757236 58.103529 97.0380785 57.2794734" />
|
||||
<polygon id="Fill-186" fill="#D7D7F2" points="99.9128831 56.9842273 101.349989 57.8082829 101.349989 59.7192069 99.9128831 58.8951513" />
|
||||
<polygon id="Fill-188" fill="#D7D7F2" points="102.787202 58.6266721 104.224307 59.4507277 104.224307 61.3616517 102.787202 60.5381357" />
|
||||
<polygon id="Fill-190" fill="#D7D7F2" points="65.4180883 40.9830859 66.8551938 41.8071415 66.8551938 43.7180654 65.4180883 42.8940098" />
|
||||
<polygon id="Fill-192" fill="#D7D7F2" points="68.2928929 42.6254767 69.7299984 43.4495323 69.7299984 45.3609959 68.2928929 44.5369403" />
|
||||
<polygon id="Fill-194" fill="#D7D7F2" points="71.1672118 44.2862159 72.6048569 45.1102715 72.6048569 47.0211954 71.1672118 46.1971398" />
|
||||
<polygon id="Fill-196" fill="#D7D7F2" points="74.0420164 45.9286607 75.4791218 46.7527163 75.4791218 48.6636402 74.0420164 47.8395846" />
|
||||
<polygon id="Fill-198" fill="#D7D7F2" points="76.9163352 47.5441766 78.3534407 48.3682322 78.3534407 50.2796958 76.9163352 49.4556402" />
|
||||
<polygon id="Fill-200" fill="#D7D7F2" points="79.7911938 49.1869992 81.2282993 50.0110548 81.2282993 51.9219787 79.7911938 51.0979231" />
|
||||
<polygon id="Fill-202" fill="#D7D7F2" points="82.6654587 50.8473606 84.1025642 51.6714162 84.1025642 53.5823401 82.6654587 52.7582845" />
|
||||
<polygon id="Fill-204" fill="#D7D7F2" points="85.5397776 52.4897514 86.9774227 53.313807 86.9774227 55.224731 85.5397776 54.4006754" />
|
||||
<polygon id="Fill-206" fill="#D7D7F2" points="88.4146361 54.2003009 89.8517416 55.0243565 89.8517416 56.9352805 88.4146361 56.1112249" />
|
||||
<polygon id="Fill-208" fill="#D7D7F2" points="91.2889011 55.8430155 92.7260065 56.6670711 92.7260065 58.5779951 91.2889011 57.7539395" />
|
||||
<polygon id="Fill-210" fill="#D7D7F2" points="94.1637596 57.5030531 95.6008651 58.3271087 95.6008651 60.2380327 94.1637596 59.4145168" />
|
||||
<polygon id="Fill-212" fill="#D7D7F2" points="97.0380785 59.1458757 98.4757236 59.9699313 98.4757236 61.8808553 97.0380785 61.0573393" />
|
||||
<polygon id="Fill-214" fill="#D7D7F2" points="99.9128831 60.7615536 101.349989 61.5856092 101.349989 63.4965331 99.9128831 62.6724775" />
|
||||
<polygon id="Fill-216" fill="#D7D7F2" points="102.787202 62.4042682 104.224307 63.2283238 104.224307 65.1392478 102.787202 64.3151922" />
|
||||
<path d="M107.399539,66.1606558 C107.540389,66.025202 107.721174,65.9523483 107.919768,65.9275241 C107.60137,65.8865102 107.30402,65.9577449 107.093554,66.1606558 C106.646718,66.5929207 106.765982,67.4407212 107.360684,68.0543107 C107.768664,68.4747032 108.290512,68.6689796 108.723856,68.6144742 C108.365524,68.5680638 107.980749,68.379184 107.666669,68.0543107 C107.071967,67.4407212 106.953243,66.5929207 107.399539,66.1606558" id="Fill-218" fill="#CECEEA" />
|
||||
<path d="M108.977441,66.4877956 C108.662281,66.1629223 108.278585,65.9735029 107.919714,65.9270924 C107.72112,65.9524563 107.540335,66.0253099 107.399485,66.1607637 C106.953189,66.5930286 107.071913,67.4408291 107.666615,68.0544186 C107.980695,68.3787522 108.36547,68.5681717 108.723802,68.6140425 C108.921856,68.5892183 109.10426,68.5169043 109.244571,68.3814505 C109.690867,67.9491856 109.572682,67.1008455 108.977441,66.4877956" id="Fill-220" fill="#D7D7F2" />
|
||||
<path d="M107.399539,61.5730352 C107.540389,61.4375814 107.721174,61.3647277 107.919768,61.3399035 C107.60137,61.2988896 107.30402,61.3701243 107.093554,61.5730352 C106.646718,62.0058397 106.765982,62.8531006 107.360684,63.4666901 C107.768664,63.8870826 108.290512,64.0818986 108.723856,64.0268536 C108.365524,63.9809828 107.980749,63.7915634 107.666669,63.4666901 C107.071967,62.8531006 106.953243,62.0058397 107.399539,61.5730352" id="Fill-222" fill="#2DB48F" />
|
||||
<path d="M108.977441,61.900175 C108.662281,61.5753017 108.278585,61.3858823 107.919714,61.3394718 C107.72112,61.3648357 107.540335,61.4376893 107.399485,61.5731431 C106.953189,62.0059477 107.071913,62.8532085 107.666615,63.4662584 C107.980695,63.7916713 108.36547,63.9810908 108.723802,64.0269616 C108.921856,64.0015977 109.10426,63.9292837 109.244571,63.7938299 C109.690867,63.361565 109.572682,62.5132249 108.977441,61.900175" id="Fill-224" fill="#3BE2B4" />
|
||||
</g>
|
||||
<g id="ipad" transform="translate(223.774775, 105.189189) scale(-1, 1) translate(-223.774775, -105.189189) translate(144.000000, 71.000000)">
|
||||
<path d="M59.0144154,5.98392805 C57.4618234,5.07028945 55.8514881,4.40381357 52.8747424,4.40381357 C49.8985364,4.40381357 46.6951349,6.49228455 46.6951349,6.49228455 L0.441169256,32.8771742 L1.82053148,33.7190384 L47.8991087,7.46096811 C47.8991087,7.46096811 50.6977678,5.65527719 52.8747424,5.65527719 C55.7187326,5.65527719 57.5773099,6.9067408 57.5773099,6.9067408 L80.6568029,21.4990548 L80.6568029,19.8385315 L59.0144154,5.98392805 Z" id="Fill-590" fill="#DDDDFC" />
|
||||
<path d="M158.026612,41.606767 L117.907462,64.5896615 C117.907462,64.5896615 114.739678,66.9355487 111.211403,64.9064399 C109.192008,63.7445593 47.6457939,28.3241995 47.6457939,28.3241995 C47.6457939,28.3241995 45.9129567,27.5255078 45.7785822,26.3674047 L45.7785822,27.779686 C45.7785822,29.3657367 47.6457939,30.257789 47.6457939,30.257789 C47.6457939,30.257789 108.971828,66.0089583 110.979351,67.1902666 C114.503848,69.2614685 117.569097,67.1843303 117.569097,67.1843303 L157.785385,43.7421881 C157.785385,43.7421881 159.213316,42.926767 159.213316,41.9575437 L159.213316,39.7222862 C159.213316,39.7293017 159.211158,39.7352379 159.211158,39.7411742 C159.185794,41.0816811 158.026612,41.606767 158.026612,41.606767" id="Fill-233" fill="#DDDDFC" />
|
||||
<path d="M157.964983,37.8434178 L93.3972314,1.17591169 C89.6072232,-1.02372854 86.3034456,1.38367948 86.3034456,1.38367948 L48.2797825,23.5948651 C48.2797825,23.5948651 45.6262911,25.043843 45.7784742,26.3670809 C45.9128487,27.5257236 47.645686,28.3238757 47.645686,28.3238757 C47.645686,28.3238757 109.1919,63.7447751 111.211295,64.9061161 C114.73957,66.9352249 117.907354,64.5898774 117.907354,64.5898774 L158.026504,41.6069828 C158.026504,41.6069828 159.186226,41.081897 159.21159,39.74139 C159.21159,39.727359 159.213209,39.7138675 159.213209,39.6987572 C159.213209,38.4424366 157.964983,37.8434178 157.964983,37.8434178" id="Fill-235" fill="#5763AB" />
|
||||
<polygon id="Fill-237" fill="#DDDDFC" points="51.8302371 26.5108994 106.459673 57.8660262 145.62417 35.4109158 91.329861 3.76383483" />
|
||||
<path d="M132.593191,51.1076909 C131.000664,51.1076909 129.710345,50.3322044 129.710345,49.374314 C129.710345,48.4164235 131.000664,47.6403974 132.593191,47.6403974 C134.185717,47.6403974 135.477115,48.4164235 135.477115,49.374314 C135.477115,50.3322044 134.185717,51.1076909 132.593191,51.1076909 M132.593191,47.5038643 C130.875464,47.5038643 129.48261,48.3408716 129.48261,49.374314 C129.48261,50.4072167 130.875464,51.2447637 132.593191,51.2447637 C134.311997,51.2447637 135.70485,50.4072167 135.70485,49.374314 C135.70485,48.3408716 134.311997,47.5038643 132.593191,47.5038643" id="Fill-239" fill="#D8D8D8" />
|
||||
</g>
|
||||
<g id="harddisc" transform="translate(369.882883, 31.261261) scale(-1, 1) translate(-369.882883, -31.261261) translate(302.000000, 5.000000)">
|
||||
<path d="M59.0154407,2.02452167 C57.4628487,1.11088307 55.8525135,0.443867539 52.8757678,0.443867539 C49.8995617,0.443867539 46.6961603,2.53233851 46.6961603,2.53233851 L0.442194603,28.9172281 L1.82155683,29.7596321 L47.9001341,3.50102208 C47.9001341,3.50102208 50.6987931,1.69587081 52.8757678,1.69587081 C55.719758,1.69587081 57.5783352,2.94679477 57.5783352,2.94679477 L78.2790221,15.10148 L78.2790221,13.4414963 L59.0154407,2.02452167 Z" id="Fill-605" fill="#DDDDFC" />
|
||||
<path d="M60.1748929,21.4136811 L103.657722,46.3490531 C103.657722,46.3490531 104.651769,47.0041962 105.849267,46.3490531 C107.135269,45.6458806 133.634026,30.355251 133.634026,30.355251 C133.634026,30.355251 134.808859,29.7945478 134.808859,28.7972625 L134.808859,34.015202 C134.808859,35.013027 133.634026,35.5737302 133.634026,35.5737302 C133.634026,35.5737302 107.135269,50.8638201 105.849267,51.5675323 C104.651769,52.2221357 103.657722,51.5675323 103.657722,51.5675323 L60.1748929,26.6316206 C60.1748929,26.6316206 59.3832167,26.202054 59.3832167,25.592242 L59.3832167,20.3743025 C59.3832167,20.9841145 60.1748929,21.4136811 60.1748929,21.4136811" id="Fill-608" fill="#DDDDFC" />
|
||||
<path d="M60.061565,19.2210564 L88.886242,2.52731971 C89.9250809,1.94017334 90.6703467,2.52731971 90.6703467,2.52731971 L133.634026,27.1923238 C133.634026,27.1923238 134.808859,27.8474669 134.808859,28.7961832 C134.808859,29.7934685 133.634026,30.3547114 133.634026,30.3547114 C133.634026,30.3547114 107.135269,45.6448013 105.849267,46.3479738 C104.651769,47.0031169 103.657722,46.3479738 103.657722,46.3479738 L60.1748929,21.4126018 C60.1748929,21.4126018 59.3832167,20.9835748 59.3832167,20.3726836 C59.3832167,19.5826263 60.061565,19.2210564 60.061565,19.2210564" id="Fill-610" fill="#5763AB" />
|
||||
</g>
|
||||
<g id="browser-(gallery)" transform="translate(116.000000, 144.000000)">
|
||||
<path d="M114.397859,98.816085 C114.279675,102.274204 111.700656,103.229936 111.700656,103.229936 L8.11951104,163.78642 C8.11951104,163.78642 6.7714489,164.546796 5.18593786,164.750247 C4.25556991,164.869511 3.24479313,164.797737 2.377565,164.267794 C0.27506296,162.65584 0.29718888,159.006682 0.29718888,159.006682 L0.29718888,67.3632805 C0.487147997,63.411915 3.80927392,61.9435094 3.80927392,61.9435094 L110.627279,0.774515127 C110.627279,0.774515127 112.687688,-0.386286182 113.587835,0.635823385 C114.544646,1.72215209 114.435635,2.38431071 114.435635,4.81762224 L114.397859,98.816085 Z" id="Fill-230" fill="url(#linearGradient-1)" />
|
||||
<polygon id="Fill-250" fill="#FFFFFF" points="85.6014603 23.3502927 85.6014603 112.740628 29.1355732 145.007235 29.1355732 55.6168994" />
|
||||
<polygon id="Fill-252" fill="#DDDDFC" points="85.6014603 29.9352363 29.1355732 62.2013034 29.1355732 75.2021701 85.6014603 42.9355634" />
|
||||
<polygon id="Fill-254" fill="#DDDDFC" points="79.1050204 51.8274309 79.1050204 60.5617727 67.7382339 67.0225413 67.7382339 58.4080033" />
|
||||
<polygon id="Fill-256" fill="#DDDDFC" points="78.8035683 62.4755029 78.8035683 63.5958299 67.5992183 69.9643173 67.5992183 68.962175" />
|
||||
<polygon id="Fill-258" fill="#DDDDFC" points="76.5959411 66.3955683 76.5959411 67.5158953 67.6840523 72.6356173 67.6840523 71.6334751" />
|
||||
<polygon id="Fill-260" fill="#DDDDFC" points="63.7210842 60.6638217 63.7210842 69.3981635 52.3542976 75.8589321 52.3542976 67.2443941" />
|
||||
<polygon id="Fill-262" fill="#DDDDFC" points="63.6404595 71.1855061 63.6404595 72.3058332 52.4361096 78.6743205 52.4361096 77.6716386" />
|
||||
<polygon id="Fill-264" fill="#DDDDFC" points="61.3490237 74.966556 61.3490237 76.0868831 52.4360556 81.2066051 52.4360556 80.2039231" />
|
||||
<polygon id="Fill-266" fill="#DDDDFC" points="48.3899264 69.4999967 48.3899264 78.2343385 37.0236795 84.6951071 37.0236795 76.0800294" />
|
||||
<polygon id="Fill-268" fill="#DDDDFC" points="63.6404595 117.846427 63.6404595 121.928389 53.7582682 127.544595 53.7582682 123.580278" />
|
||||
<polygon id="Fill-270" fill="#DDDDFC" points="48.5285102 79.8954015 48.5285102 81.0157285 37.3246999 87.3842159 37.3246999 86.3815339" />
|
||||
<polygon id="Fill-272" fill="#DDDDFC" points="46.2370744 83.7031643 46.2370744 84.8234914 37.324646 89.9432134 37.324646 88.9410711" />
|
||||
<polygon id="Fill-274" fill="#DDDDFC" points="79.1050204 70.7860523 79.1050204 79.5203941 67.7382339 85.9811627 67.7382339 77.3666247" />
|
||||
<polygon id="Fill-276" fill="#DDDDFC" points="78.8035683 81.1630008 78.8035683 82.2833279 67.5992183 88.6518152 67.5992183 87.6496729" />
|
||||
<polygon id="Fill-278" fill="#DDDDFC" points="76.5959411 85.0830123 76.5959411 86.2033393 67.6840523 91.3230613 67.6840523 90.3209191" />
|
||||
<polygon id="Fill-280" fill="#DDDDFC" points="63.7210842 79.6223892 63.7210842 88.356731 52.3542976 94.8174996 52.3542976 86.2029616" />
|
||||
<polygon id="Fill-282" fill="#DDDDFC" points="63.6404595 89.873112 63.6404595 90.9934391 52.4361096 97.3619264 52.4361096 96.3592445" />
|
||||
<polygon id="Fill-284" fill="#DDDDFC" points="61.3490237 93.6538921 61.3490237 94.7742191 52.4360556 99.8939411 52.4360556 98.8917989" />
|
||||
<polygon id="Fill-286" fill="#DDDDFC" points="48.3899264 88.4587261 48.3899264 97.1930679 37.0236795 103.653836 37.0236795 95.0392984" />
|
||||
<polygon id="Fill-288" fill="#DDDDFC" points="48.5285102 98.5829534 48.5285102 99.7032805 37.3246999 106.071768 37.3246999 105.069086" />
|
||||
<polygon id="Fill-290" fill="#DDDDFC" points="46.2370744 102.39077 46.2370744 103.511097 37.324646 108.630819 37.324646 107.628137" />
|
||||
<polygon id="Fill-292" fill="#DDDDFC" points="78.8035683 89.9437531 78.8035683 98.5534342 67.5992183 104.921382 67.5992183 96.4304252" />
|
||||
<polygon id="Fill-294" fill="#DDDDFC" points="78.8035683 99.8505527 78.8035683 100.97034 67.5992183 107.339367 67.5992183 106.336685" />
|
||||
<polygon id="Fill-296" fill="#DDDDFC" points="76.5959411 103.770564 76.5959411 104.890891 67.6840523 110.010613 67.6840523 109.008471" />
|
||||
<polygon id="Fill-298" fill="#DDDDFC" points="63.6404595 98.6537024 63.6404595 107.262844 52.4361096 113.631331 52.4361096 105.139835" />
|
||||
<polygon id="Fill-300" fill="#DDDDFC" points="63.6404595 108.560556 63.6404595 109.680883 52.4361096 116.04937 52.4361096 115.046688" />
|
||||
<polygon id="Fill-302" fill="#DDDDFC" points="61.3490237 112.341444 61.3490237 113.461771 52.4360556 118.581493 52.4360556 117.578811" />
|
||||
<polygon id="Fill-304" fill="#DDDDFC" points="48.5285102 107.363598 48.5285102 115.972739 37.3246999 122.341226 37.3246999 113.84973" />
|
||||
<polygon id="Fill-306" fill="#DDDDFC" points="48.5285102 117.270289 48.5285102 118.390617 37.3246999 124.759104 37.3246999 123.756422" />
|
||||
<polygon id="Fill-308" fill="#DDDDFC" points="46.2370744 121.078214 46.2370744 122.198541 37.324646 127.318263 37.324646 126.315581" />
|
||||
<polygon id="Fill-310" fill="#CECEEF" points="63.6404595 117.846427 62.9302715 117.487016 53.1678839 123.220327 53.7582682 123.580278" />
|
||||
<polygon id="Fill-312" fill="#E4E4F4" points="53.7579984 123.580548 53.1676141 123.220597 53.1676141 127.184374 53.7579984 127.544325" />
|
||||
<path d="M33.7611856,56.1263892 C34.1405642,56.5861766 34.0331725,57.3012216 33.5204988,57.724852 C33.007825,58.1474031 32.2852249,58.1182617 31.9058463,57.6590139 C31.5253884,57.1997661 31.6338594,56.4836419 32.1470728,56.0605511 C32.6592069,55.6374603 33.381807,55.6671415 33.7611856,56.1263892" id="Fill-314" fill="#E8F0F4" />
|
||||
</g>
|
||||
<g id="browser-(contact)" transform="translate(380.000000, 0.000000)">
|
||||
<path d="M114.435635,4.70105642 L114.397859,98.6989796 C114.279675,102.157639 111.700656,103.11337 111.700656,103.11337 L8.11951104,163.669854 C8.11951104,163.669854 6.7714489,164.429691 5.18593786,164.633141 C4.25556991,164.752945 3.24479313,164.681711 2.377565,164.151228 C2.29014064,164.097802 2.20649387,164.044376 2.12824366,163.983395 C0.27506296,162.538734 0.29718888,158.890116 0.29718888,158.890116 L0.29718888,67.2467146 C0.487147997,63.2953491 3.80927392,61.8269436 3.80927392,61.8269436 L110.627279,0.657949305 C110.627279,0.657949305 112.687688,-0.502312347 113.587835,0.519257563 C114.544646,1.60558626 114.435635,2.26774489 114.435635,4.70105642" id="Fill-384" fill="url(#linearGradient-2)" />
|
||||
<polygon id="Fill-386" fill="#FFFFFF" points="85.6014603 23.233565 85.6014603 112.6239 29.1355732 144.890507 29.1355732 55.5001717" />
|
||||
<polygon id="Fill-388" fill="#DDDDFC" points="85.6014603 29.8185086 29.1355732 62.0851153 29.1355732 75.0854424 85.6014603 42.8193753" />
|
||||
<polygon id="Fill-390" fill="#DDDDFC" points="77.6831333 93.3142322 37.3249158 116.424486 37.3249158 129.425352 77.6831333 106.314559" />
|
||||
<path d="M52.5743696,72.9039886 L52.5743696,75.5229419 L68.1526361,66.5506116 L68.1526361,63.8167114 L52.5743696,72.9039886 Z M52.2980654,76.000538 L52.2980654,72.7453295 L68.4289403,63.3353377 L68.4289403,66.71035 L68.3598643,66.7502845 L52.2980654,76.000538 Z" id="Fill-392" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,77.1974963 L52.5743696,79.8164497 L68.1526361,70.844659 L68.1526361,68.1096795 L52.5743696,77.1974963 Z M52.2980654,80.2940458 L52.2980654,77.0393769 L68.4289403,67.6288455 L68.4289403,71.0038577 L68.3598643,71.0437923 L52.2980654,80.2940458 Z" id="Fill-394" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,81.3330466 L52.5743696,83.952 L68.1526361,74.9802093 L68.1526361,72.2457694 L52.5743696,81.3330466 Z M52.2980654,84.4295961 L52.2980654,81.1749272 L68.4289403,71.7643957 L68.4289403,75.1399477 L68.3598643,75.1793426 L52.2980654,84.4295961 Z" id="Fill-396" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,85.5956321 L52.5743696,94.1567441 L77.5448193,80.1785593 L77.5448193,71.5003418 L52.5743696,85.5956321 Z M52.2980654,94.6278643 L52.2980654,85.4342747 L77.8211235,71.0276026 L77.8211235,80.3399166 L77.7493491,80.3798512 L52.2980654,94.6278643 Z" id="Fill-398" fill="#DDDDFC" />
|
||||
<polygon id="Fill-400" fill="#DDDDFC" points="48.5285102 74.8704971 48.5285102 75.9908242 37.3246999 82.3593115 37.3246999 81.3566296" />
|
||||
<polygon id="Fill-402" fill="#DDDDFC" points="46.2370744 78.6511153 46.2370744 79.7714424 37.324646 84.891704 37.324646 83.8890221" />
|
||||
<polygon id="Fill-404" fill="#DDDDFC" points="77.6831333 83.9463876 77.6831333 88.0278103 67.7998626 93.6440164 67.7998626 89.6802388" />
|
||||
<polygon id="Fill-406" fill="#DDDDFC" points="48.5285102 79.7785119 48.5285102 80.8988389 37.3246999 87.2678659 37.3246999 86.265184" />
|
||||
<polygon id="Fill-408" fill="#DDDDFC" points="46.2370744 83.5864366 46.2370744 84.7067637 37.324646 89.8270253 37.324646 88.8243434" />
|
||||
<polygon id="Fill-410" fill="#CECEEF" points="77.6831333 83.9463876 76.9729452 83.5864366 67.210018 89.3202878 67.7998626 89.6802388" />
|
||||
<polygon id="Fill-412" fill="#E4E4F4" points="67.7996468 89.6803467 67.2098021 89.3198561 67.2098021 93.2836337 67.7996468 93.6441243" />
|
||||
<path d="M33.7611856,56.0096615 C34.1405642,56.4694489 34.0331725,57.1850335 33.5204988,57.6081243 C33.007825,58.0306754 32.2852249,58.0020736 31.9058463,57.5422862 C31.5253884,57.0830384 31.6338594,56.3674538 32.1470728,55.944363 C32.6592069,55.5207326 33.381807,55.5504137 33.7611856,56.0096615" id="Fill-414" fill="#E8F0F4" />
|
||||
</g>
|
||||
<g id="browser-(list)" transform="translate(249.000000, 71.000000)">
|
||||
<path d="M114.397859,98.6793361 C114.279675,102.137455 111.700656,103.093727 111.700656,103.093727 L8.11951104,163.649671 C8.11951104,163.649671 6.7714489,164.409508 5.18593786,164.613498 C4.25556991,164.732762 3.24479313,164.660988 2.377565,164.131045 C0.27506296,162.519091 0.29718888,158.869933 0.29718888,158.869933 L0.29718888,67.2265315 C0.487147997,63.2757056 3.80927392,61.8067604 3.80927392,61.8067604 L110.627279,0.637766149 C110.627279,0.637766149 112.687688,-0.522495503 113.587835,0.499614064 C114.544646,1.58594276 114.435635,2.24810139 114.435635,4.68087326 L114.397859,98.6793361 Z" id="Fill-444" fill="url(#linearGradient-3)" />
|
||||
<polygon id="Fill-446" fill="#FFFFFF" points="85.6014603 23.2136517 85.6014603 112.604527 29.1355732 144.870594 29.1355732 55.4797187" />
|
||||
<polygon id="Fill-448" fill="#DDDDFC" points="85.6014603 29.7986492 29.1355732 62.0647163 29.1355732 75.0661226 85.6014603 42.7989763" />
|
||||
<polygon id="Fill-450" fill="#DDDDFC" points="48.5285102 69.8523385 48.5285102 78.46148 37.3246999 84.8299673 37.3246999 76.338471" />
|
||||
<polygon id="Fill-452" fill="#DDDDFC" points="64.9448095 60.6507621 64.9448095 61.7710891 50.1857416 70.1514162 50.1857416 69.1492739" />
|
||||
<polygon id="Fill-454" fill="#DDDDFC" points="63.773269 63.776453 63.773269 64.89678 50.1857956 72.7110074 50.1857956 71.7077858" />
|
||||
<polygon id="Fill-456" fill="#DDDDFC" points="58.8051905 69.0309812 58.8051905 70.1518479 50.1857956 75.0659608 50.1857956 74.0632788" />
|
||||
<polygon id="Fill-458" fill="#DDDDFC" points="70.50052 57.4486558 70.50052 60.9245838 67.6171349 62.5818692 67.6171349 59.222507" />
|
||||
<polygon id="Fill-460" fill="#DDDDFC" points="77.3305756 53.5980442 77.3305756 54.3810859 71.3080082 57.7922551 71.3080082 57.0912412" />
|
||||
<polygon id="Fill-462" fill="#DDDDFC" points="75.4728618 55.9732886 75.4728618 56.7563303 71.3077923 59.110852 71.3077923 58.4103778" />
|
||||
<polygon id="Fill-464" fill="#DDDDFC" points="70.50052 62.4668144 70.50052 65.9427424 67.6171349 67.5994881 67.6171349 64.2406656" />
|
||||
<polygon id="Fill-466" fill="#DDDDFC" points="77.3305756 58.6165266 77.3305756 59.3990286 71.3080082 62.8101979 71.3080082 62.1097236" />
|
||||
<polygon id="Fill-468" fill="#DDDDFC" points="75.4728618 60.9912314 75.4728618 61.7742731 71.3077923 64.1287948 71.3077923 63.4288602" />
|
||||
<polygon id="Fill-470" fill="#DDDDFC" points="70.50052 67.3600965 70.50052 70.8360245 67.6171349 72.4933099 67.6171349 69.1344873" />
|
||||
<polygon id="Fill-472" fill="#DDDDFC" points="77.3305756 63.5095388 77.3305756 64.2925805 71.3080082 67.7037498 71.3080082 67.0027359" />
|
||||
<polygon id="Fill-474" fill="#DDDDFC" points="75.4728618 65.8847294 75.4728618 66.6672314 71.3077923 69.0222927 71.3077923 68.3223581" />
|
||||
<polygon id="Fill-476" fill="#DDDDFC" points="70.50052 72.0694636 70.50052 75.5453917 67.6171349 77.202677 67.6171349 73.8438545" />
|
||||
<polygon id="Fill-478" fill="#DDDDFC" points="77.3305756 68.218852 77.3305756 69.0018937 71.3080082 72.413063 71.3080082 71.7120491" />
|
||||
<polygon id="Fill-480" fill="#DDDDFC" points="75.4728618 70.5940965 75.4728618 71.3771382 71.3077923 73.7316599 71.3077923 73.0317253" />
|
||||
<polygon id="Fill-482" fill="#DDDDFC" points="48.5285102 81.1535029 48.5285102 89.763184 37.3246999 96.1316713 37.3246999 87.640175" />
|
||||
<polygon id="Fill-484" fill="#DDDDFC" points="64.9448095 71.9521962 64.9448095 73.0725233 50.1857416 81.45339 50.1857416 80.4507081" />
|
||||
<polygon id="Fill-486" fill="#DDDDFC" points="63.773269 75.078157 63.773269 76.1984841 50.1857956 84.0127114 50.1857956 83.0094898" />
|
||||
<polygon id="Fill-488" fill="#DDDDFC" points="58.8051905 80.3326852 58.8051905 81.4535519 50.1857956 86.3671251 50.1857956 85.3644432" />
|
||||
<polygon id="Fill-490" fill="#DDDDFC" points="48.5285102 92.5516435 48.5285102 101.160245 37.3246999 107.529272 37.3246999 99.037776" />
|
||||
<polygon id="Fill-492" fill="#DDDDFC" points="64.9448095 83.350067 64.9448095 84.4703941 50.1857416 92.8507212 50.1857416 91.8480392" />
|
||||
<polygon id="Fill-494" fill="#DDDDFC" points="63.773269 86.4754881 63.773269 87.5958152 50.1857956 95.4095029 50.1857956 94.4073606" />
|
||||
<polygon id="Fill-496" fill="#DDDDFC" points="58.8051905 91.7302862 58.8051905 92.8511529 50.1857956 97.7647261 50.1857956 96.7625838" />
|
||||
<polygon id="Fill-498" fill="#DDDDFC" points="48.5285102 103.65756 48.5285102 112.266702 37.3246999 118.635189 37.3246999 110.143693" />
|
||||
<polygon id="Fill-500" fill="#DDDDFC" points="64.9448095 94.4562535 64.9448095 95.5765805 50.1857416 103.956908 50.1857416 102.954226" />
|
||||
<polygon id="Fill-502" fill="#DDDDFC" points="63.773269 97.5819444 63.773269 98.7022715 50.1857956 106.516499 50.1857956 105.513277" />
|
||||
<polygon id="Fill-504" fill="#DDDDFC" points="58.8051905 102.836742 58.8051905 103.95707 50.1857956 108.871182 50.1857956 107.8685" />
|
||||
<polygon id="Fill-506" fill="#DDDDFC" points="48.5285102 114.821975 48.5285102 123.430577 37.3246999 129.799065 37.3246999 121.308108" />
|
||||
<polygon id="Fill-508" fill="#DDDDFC" points="64.9448095 105.620399 64.9448095 106.740726 50.1857416 115.121053 50.1857416 114.118371" />
|
||||
<polygon id="Fill-510" fill="#DDDDFC" points="63.773269 108.74582 63.773269 109.866147 50.1857956 117.679835 50.1857956 116.677693" />
|
||||
<polygon id="Fill-512" fill="#DDDDFC" points="58.8051905 114.000888 58.8051905 115.121215 50.1857956 120.035328 50.1857956 119.032646" />
|
||||
<path d="M33.7611856,55.9899101 C34.1405642,56.4496975 34.0331725,57.1647424 33.5204988,57.5878332 C33.007825,58.0114636 32.2852249,57.9817825 31.9058463,57.5225348 C31.5253884,57.0627473 31.6338594,56.3471627 32.1470728,55.924072 C32.6592069,55.5009812 33.381807,55.5301226 33.7611856,55.9899101" id="Fill-514" fill="#E8F0F4" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-2" transform="translate(125.000000, 201.000000)">
|
||||
<g id="Group" transform="translate(174.000000, 204.894930) scale(-1, 1) translate(-174.000000, -204.894930) translate(0.000000, 0.394930)">
|
||||
<g id="surface" transform="translate(0.000000, 91.000000)">
|
||||
<path d="M0.530524572,87.7085749 C0.137728901,89.0826659 0.00321963665,101.905965 0,118.704862 L0,120.032804 C0.0067970107,154.614392 0.541614432,204.821838 0.531240047,207.702385 C0.468636001,224.797136 10.2638439,242.741884 34.8353953,260.290611 C70.8402342,286.005538 98.5491427,279.893141 124.466502,273.780028 C146.003367,268.700792 166.303534,263.621199 189.099635,276.80403 C239.328471,305.851691 272.898191,337.223966 325.728493,300.951684 C339.777557,291.305859 346.405358,279.893498 347.173062,267.560665 C347.373395,264.348848 347.818063,226.839849 347.822356,193.044938 L347.822356,192.080463 C347.819136,165.351692 347.535092,141.181857 346.628944,138.49628 C336.573661,108.691277 297.521614,113.851363 252.420944,88.7499649 C203.883133,61.7357152 159.98303,46.1148657 121.029004,46.1170121 C99.5508075,46.1180854 79.5711734,50.8685551 61.1587868,61.077468 C33.5568418,76.3809995 7.31286804,64.0023751 0.530524572,87.7085749 Z" id="Fill-1" fill="url(#linearGradient-4)" />
|
||||
<path d="M325.728314,181.573013 C272.89837,217.845295 239.328292,186.473019 189.099456,157.425001 C138.87062,128.377697 100.759781,187.995216 34.8352165,140.91194 C-31.0897058,93.8283061 9.3528656,43.8956068 61.158608,15.1717032 C112.964708,-13.5522004 177.120619,0.934961417 252.421123,42.8445577 C326.447367,84.0443919 378.558617,145.300731 325.728314,181.573013 Z" id="Fill-4" fill="#E6E9FF" />
|
||||
</g>
|
||||
<g id="laptop" transform="translate(24.724448, 0.000000)">
|
||||
<path d="M0.139619115,152.710224 C0.239347054,154.348663 2.33399122,155.491668 2.33399122,155.491668 L99.241667,211.615266 C99.241667,211.615266 102.012245,213.444146 105.349378,211.615266 C108.933507,209.65143 182.800097,164.444911 182.800097,164.444911 C182.800097,164.444911 185.846625,162.98689 186.061451,160.382643 C186.067527,160.493972 186.074319,160.604943 186.074319,160.724148 L186.074319,164.840112 C186.074319,167.625494 182.800097,169.190906 182.800097,169.190906 C182.800097,169.190906 108.933507,211.873722 105.349378,213.837557 C102.012245,215.666437 99.241667,213.837557 99.241667,213.837557 L2.33399122,157.714318 C2.33399122,157.714318 0.130325472,156.515827 0.130325472,154.813311 L0.130325472,153.228568 C0.132112711,153.188475 0.133542502,152.745306 0.136044636,152.431364 C0.137474428,152.580638 0.138904219,152.696979 0.139619115,152.710224" id="Fill-7" fill="#DDDDFC" />
|
||||
<path d="M2.01936566,149.374854 L82.3661269,100.249613 C85.262884,98.6101006 87.3407281,100.249613 87.3407281,100.249613 L182.800025,155.616457 C182.800025,155.616457 186.074247,157.444979 186.074247,160.093616 C186.074247,160.1917 186.069243,160.287637 186.061379,160.382499 C185.846553,162.986747 182.800025,164.444768 182.800025,164.444768 C182.800025,164.444768 108.933435,209.651287 105.349306,211.615481 C102.012173,213.444003 99.2415955,211.615481 99.2415955,211.615481 L2.33391973,155.491883 C2.33391973,155.491883 0.239633012,154.34852 0.139547625,152.710081 C0.138832729,152.696836 0.137402938,152.580495 0.135973147,152.431221 C0.133471012,152.133746 0.130253982,151.702389 0.130253982,151.675542 C0.130253982,150.362142 2.01936566,149.374854 2.01936566,149.374854" id="Fill-9" fill="#F6F6FF" />
|
||||
<path d="M189.7615,155.957068 C189.844786,155.905878 189.924139,155.851824 190.00099,155.795623 C192.108145,154.254552 191.761778,150.89033 191.761778,150.89033 C191.761778,150.89033 191.764995,66.7196103 191.569471,62.6329997 C191.387888,58.8273972 188.384611,57.413049 188.384611,57.413049 L90.034991,1.34028371 C90.034991,1.34028371 87.9689426,0.146804399 86.521279,0.915370711 C86.5094832,0.921814211 86.4093978,0.981237596 86.2814315,1.05784365 C86.2117292,1.10008437 86.1334481,1.14662075 86.0555245,1.19315714 C86.0555245,1.19315714 86.0562394,1.19315714 86.0562394,1.19279917 C86.4555086,0.927541766 87.2479704,0.529118708 87.5031881,0.376264579 C87.630797,0.299658528 87.7312398,0.240235143 87.7426782,0.234149616 C89.1903418,-0.534774669 91.7989959,0.835184939 91.7989959,0.835184939 L190.148974,56.9083082 C190.148974,56.9083082 193.151535,58.3222984 193.333476,62.1282589 C193.529,66.2148695 193.525783,150.385231 193.525783,150.385231 C193.525783,150.385231 193.87215,153.749453 191.764995,155.290524 C191.688501,155.346725 191.609505,155.400779 191.525863,155.451969 C189.269295,156.833026 187.060982,156.421716 187.060982,156.421716 L187.060625,156.421716 C187.954601,156.536625 188.927217,156.467894 189.7615,155.957068" id="Fill-11" fill="#DDDDFC" />
|
||||
<path d="M85.6342365,1.44738899 C85.651394,1.4370078 85.850135,1.31708711 86.0556675,1.19322873 C86.1332337,1.14669235 86.2115147,1.09979799 86.2815745,1.05791524 C86.4095408,0.981309191 86.5092688,0.921885805 86.5210645,0.915442306 C87.9687282,0.146875993 90.035134,1.34035531 90.035134,1.34035531 L188.384754,57.4131206 C188.384754,57.4131206 191.387673,58.8274688 191.569257,62.6330713 C191.765138,66.7196819 191.761564,150.890401 191.761564,150.890401 C191.761564,150.890401 192.108288,154.254266 190.001133,155.795336 C189.924282,155.851538 189.844928,155.90595 189.761643,155.95714 C188.92736,156.467966 187.954744,156.536697 187.060767,156.421788 C185.536253,156.225619 184.239432,155.493566 184.239432,155.493566 L87.2899348,99.03777 C87.2899348,99.03777 84.8088895,98.1167076 84.6962935,94.7864922 L84.6591189,4.26105048 C84.6591189,4.26105048 84.5154249,2.13183184 85.6342365,1.44738899" id="Fill-13" fill="#F6F6FF" />
|
||||
<path d="M159.165862,158.0182 L159.150134,157.896132 C159.151922,157.936941 159.157283,157.977392 159.165862,158.0182" id="Fill-15" fill="#DDDDFC" />
|
||||
<path d="M159.149098,157.889474 L159.15017,157.896275 C159.149813,157.893769 159.15017,157.891621 159.149813,157.889474 L159.149098,157.889474 Z" id="Fill-17" fill="#DDDDFC" />
|
||||
<path d="M172.167311,158.781075 L167.2138,161.626954 C166.31875,162.14136 165.738612,162.092318 164.997266,161.688525 L159.665574,158.643256 C159.364603,158.456752 159.213045,158.239463 159.165862,158.018236 L159.222696,158.456752 C159.259871,158.681201 159.451105,158.868062 159.687021,159.013399 L165.018713,162.059026 C165.759702,162.462819 166.340197,162.512219 167.234889,161.998171 L172.188758,159.151576 C172.494019,158.97617 172.786053,158.852669 172.816079,158.500783 L172.856113,157.855717 L172.853611,157.855717 C172.838241,158.209393 172.591244,158.537296 172.167311,158.781075" id="Fill-19" fill="#DDDDFC" />
|
||||
<path d="M149.387341,152.363099 L149.371256,152.24103 C149.373401,152.281481 149.37912,152.32229 149.387341,152.363099" id="Fill-21" fill="#DDDDFC" />
|
||||
<polygon id="Fill-23" fill="#DDDDFC" points="149.370613 152.234336 149.371327 152.24078 149.371327 152.234336" />
|
||||
<path d="M162.388469,153.125973 L157.435314,155.97221 C156.540622,156.486258 155.960127,156.436858 155.21878,156.033066 L149.887089,152.987438 C149.58576,152.802008 149.434917,152.584361 149.387377,152.363135 L149.444211,152.80165 C149.481743,153.026099 149.672263,153.212603 149.908536,153.358297 L155.240585,156.404283 C155.981217,156.807717 156.561354,156.857118 157.456404,156.342711 L162.410273,153.496475 C162.715176,153.32071 163.007926,153.197568 163.037236,152.845323 L163.077271,152.200257 L163.075126,152.200615 C163.059756,152.554292 162.812759,152.882194 162.388469,153.125973" id="Fill-25" fill="#DDDDFC" />
|
||||
<path d="M152.716789,147.388789 L147.763277,150.235026 C146.868585,150.749074 146.28809,150.700031 145.546386,150.296239 L140.215052,147.250253 C139.913723,147.065182 139.762523,146.846819 139.71534,146.625234 L139.771816,147.064824 C139.809348,147.288914 140.000583,147.475418 140.236141,147.620755 L145.567833,150.66674 C146.309179,151.070533 146.889317,151.119575 147.784366,150.605527 L152.737878,147.75929 C153.043139,147.583883 153.335173,147.460383 153.365199,147.108496 L153.405233,146.46343 L153.403089,146.46343 C153.387718,146.816749 153.140722,147.14501 152.716789,147.388789" id="Fill-27" fill="#DDDDFC" />
|
||||
<path d="M130.28029,140.68039 L130.264562,140.558321 C130.26635,140.59913 130.271711,140.639581 130.28029,140.68039" id="Fill-29" fill="#DDDDFC" />
|
||||
<polygon id="Fill-31" fill="#DDDDFC" points="130.263562 140.551734 130.264634 140.558178 130.264634 140.551734" />
|
||||
<path d="M143.281775,141.443085 L138.328263,144.289322 C137.433214,144.80337 136.853076,144.754328 136.112087,144.350893 L130.780038,141.305266 C130.479067,141.118762 130.327509,140.901473 130.280326,140.680246 L130.336803,141.118762 C130.374335,141.343569 130.565569,141.530072 130.801485,141.675409 L136.133176,144.721037 C136.874166,145.124829 137.454661,145.174229 138.34971,144.660181 L143.303222,141.813944 C143.608125,141.63818 143.900517,141.51468 143.930543,141.162793 L143.970577,140.517727 L143.967717,140.517727 C143.952705,140.871404 143.705708,141.199664 143.281775,141.443085" id="Fill-33" fill="#DDDDFC" />
|
||||
<path d="M120.501805,135.025109 L120.48572,134.90304 C120.487864,134.943491 120.493226,134.9843 120.501805,135.025109" id="Fill-35" fill="#DDDDFC" />
|
||||
<polygon id="Fill-37" fill="#DDDDFC" points="120.485041 134.896311 120.485755 134.903112 120.485755 134.896311" />
|
||||
<path d="M133.503254,135.788091 L128.5501,138.634328 C127.65505,139.148376 127.074913,139.099334 126.333566,138.695541 L121.001517,135.649556 C120.700188,135.464484 120.549345,135.246479 120.501805,135.025252 L120.558639,135.464126 C120.596171,135.688217 120.786691,135.875078 121.023321,136.020415 L126.355013,139.0664 C127.096002,139.469835 127.675782,139.519235 128.570832,139.004829 L133.524343,136.158592 C133.829604,135.982828 134.122354,135.860043 134.151664,135.507441 L134.191699,134.862375 L134.189554,134.862733 C134.174541,135.216409 133.927545,135.544312 133.503254,135.788091" id="Fill-39" fill="#DDDDFC" />
|
||||
<path d="M123.830895,130.050835 L118.877383,132.897072 C117.983049,133.411478 117.402554,133.362078 116.661207,132.958285 L111.329158,129.912299 C111.028187,129.727228 110.876629,129.508865 110.829803,129.28728 L110.88628,129.72687 C110.923812,129.951318 111.115047,130.137464 111.350605,130.282801 L116.682296,133.328428 C117.423643,133.732579 118.003781,133.781979 118.89883,133.267931 L123.852342,130.421336 C124.15796,130.246288 124.449637,130.122071 124.479663,129.770542 L124.519697,129.125477 L124.517195,129.125477 C124.502182,129.478795 124.255186,129.806698 123.830895,130.050835" id="Fill-41" fill="#DDDDFC" />
|
||||
<path d="M101.165058,123.505957 L101.165773,123.512401 C101.165415,123.509895 101.16613,123.508105 101.165415,123.505957 L101.165058,123.505957 Z" id="Fill-43" fill="#DDDDFC" />
|
||||
<path d="M114.18295,124.39738 L109.229795,127.243259 C108.334746,127.757665 107.754608,127.708265 107.012904,127.30483 L101.681213,124.259203 C101.380599,124.073415 101.229041,123.85541 101.181858,123.634183 L101.238692,124.073415 C101.275152,124.297506 101.466744,124.484009 101.703017,124.629704 L107.034351,127.674973 C107.77534,128.079124 108.356193,128.128524 109.250527,127.614118 L114.204039,124.767881 C114.509657,124.592117 114.801334,124.468616 114.83136,124.11673 L114.872109,123.471664 L114.869607,123.471664 C114.854237,123.825698 114.606883,124.153243 114.18295,124.39738" id="Fill-45" fill="#DDDDFC" />
|
||||
<path d="M91.4033012,117.979404 L91.387216,117.856977 C91.3893607,117.897428 91.3950799,117.938237 91.4033012,117.979404" id="Fill-47" fill="#DDDDFC" />
|
||||
<polygon id="Fill-49" fill="#DDDDFC" points="91.3865726 117.85039 91.3872875 117.857192 91.3872875 117.85039" />
|
||||
<path d="M104.404429,118.742207 L99.4512744,121.588444 C98.5565825,122.10285 97.9757298,122.053091 97.2347405,121.649299 L91.9026915,118.603313 C91.6020779,118.418242 91.45052,118.200237 91.4033369,117.979368 L91.4601711,118.417884 C91.4973457,118.64269 91.6882228,118.828836 91.9244958,118.974531 L97.2565448,122.020158 C97.9971767,122.423593 98.5773145,122.473351 99.4723638,121.958945 L104.425876,119.11235 C104.731136,118.937301 105.023171,118.813801 105.053196,118.461914 L105.093231,117.81649 L105.091086,117.816848 C105.075716,118.170167 104.828719,118.49807 104.404429,118.742207" id="Fill-51" fill="#DDDDFC" />
|
||||
<path d="M94.7327488,113.004843 L89.7788796,115.85108 C88.8845452,116.365486 88.30405,116.316086 87.5623457,115.912293 L82.2302968,112.866666 C81.9293257,112.681236 81.7784827,112.462873 81.7312996,112.241646 L81.7877764,112.681236 C81.8249509,112.904969 82.016543,113.091472 82.2517436,113.236809 L87.5837926,116.282794 C88.3244245,116.686945 88.9052772,116.735629 89.8003265,116.221581 L94.7531233,113.375344 C95.0587412,113.199938 95.3511335,113.076437 95.3808017,112.724551 L95.4204784,112.079485 L95.4190486,112.079485 C95.4036784,112.432803 95.1566819,112.761064 94.7327488,113.004843" id="Fill-53" fill="#DDDDFC" />
|
||||
<path d="M149.546191,163.755349 L149.530106,163.633281 C149.532608,163.674447 149.537612,163.71454 149.546191,163.755349" id="Fill-55" fill="#DDDDFC" />
|
||||
<path d="M149.529784,163.626801 L149.530141,163.633603 C149.530141,163.630739 149.530856,163.628949 149.530141,163.626801 L149.529784,163.626801 Z" id="Fill-57" fill="#DDDDFC" />
|
||||
<path d="M139.76767,158.100355 L139.751585,157.978286 C139.754087,158.018737 139.759449,158.059546 139.76767,158.100355" id="Fill-59" fill="#DDDDFC" />
|
||||
<path d="M139.750906,157.971521 L139.75162,157.978322 C139.752335,157.976174 139.75162,157.973669 139.75162,157.971521 L139.750906,157.971521 Z" id="Fill-61" fill="#DDDDFC" />
|
||||
<path d="M152.769155,158.86323 L147.816001,161.709466 C146.921309,162.223873 146.340813,162.174114 145.599467,161.770322 L140.267418,158.724694 C139.966804,158.539265 139.815246,158.321618 139.767706,158.100391 L139.82454,158.539265 C139.862072,158.763713 140.052592,158.949859 140.289222,159.095553 L145.620914,162.141539 C146.361545,162.544974 146.942041,162.594374 147.836732,162.079968 L152.790602,159.233731 C153.095862,159.057966 153.387897,158.934824 153.417565,158.582579 L153.457599,157.937513 L153.455812,157.937871 C153.440799,158.291548 153.193445,158.61945 152.769155,158.86323" id="Fill-63" fill="#DDDDFC" />
|
||||
<path d="M143.097118,153.125973 L138.143606,155.97221 C137.248914,156.486258 136.668419,156.437216 135.927072,156.033423 L130.595023,152.987438 C130.294052,152.802366 130.143209,152.584003 130.095668,152.362777 L130.152145,152.802008 C130.18932,153.026099 130.380554,153.212603 130.61647,153.357939 L135.948161,156.403925 C136.689151,156.808075 137.270361,156.857118 138.164695,156.342711 L143.118207,153.496475 C143.423467,153.321068 143.716217,153.197568 143.745528,152.845681 L143.785562,152.200615 L143.783417,152.200615 C143.768047,152.553934 143.521051,152.882194 143.097118,153.125973" id="Fill-65" fill="#DDDDFC" />
|
||||
<path d="M120.660976,146.417467 L120.644891,146.295756 C120.646678,146.336565 120.65204,146.376658 120.660976,146.417467" id="Fill-67" fill="#DDDDFC" />
|
||||
<path d="M120.644212,146.288847 L120.644927,146.295649 C120.644927,146.293143 120.645284,146.290995 120.644927,146.288847 L120.644212,146.288847 Z" id="Fill-69" fill="#DDDDFC" />
|
||||
<path d="M133.662104,147.180341 L128.708592,150.02622 C127.8139,150.540626 127.233762,150.491584 126.492416,150.08815 L121.160367,147.042522 C120.859753,146.856019 120.707838,146.638729 120.661012,146.417503 L120.717489,146.856019 C120.754663,147.080467 120.945898,147.267329 121.181814,147.413023 L126.513505,150.458651 C127.254137,150.862443 127.835347,150.911486 128.729682,150.397438 L133.683551,147.551201 C133.988811,147.375436 134.280846,147.251936 134.310872,146.900049 L134.350906,146.255341 L134.348761,146.255341 C134.333391,146.60866 134.086394,146.936562 133.662104,147.180341" id="Fill-71" fill="#DDDDFC" />
|
||||
<path d="M110.882134,140.762544 L110.866406,140.640476 C110.868551,140.680927 110.873912,140.721735 110.882134,140.762544" id="Fill-73" fill="#DDDDFC" />
|
||||
<path d="M110.865369,140.63371 L110.866442,140.640512 C110.866799,140.638006 110.866442,140.635858 110.866442,140.63371 L110.865369,140.63371 Z" id="Fill-75" fill="#DDDDFC" />
|
||||
<path d="M123.883583,141.52524 L118.930429,144.371835 C118.035737,144.885883 117.455241,144.836483 116.714252,144.43269 L111.381846,141.386705 C111.081232,141.201275 110.929674,140.983628 110.882134,140.762401 L110.938968,141.200917 C110.9765,141.425724 111.16702,141.612227 111.40365,141.757564 L116.735342,144.803549 C117.475973,145.206984 118.056826,145.256742 118.951518,144.742336 L123.90503,141.895741 C124.21029,141.720335 124.502325,141.597192 124.531993,141.244948 L124.572027,140.599882 L124.569883,140.599882 C124.555227,140.953558 124.307873,141.281461 123.883583,141.52524" id="Fill-77" fill="#DDDDFC" />
|
||||
<path d="M114.211546,135.788091 L109.258391,138.634328 C108.363342,139.148376 107.782489,139.099334 107.0415,138.695541 L101.709451,135.649914 C101.40848,135.464484 101.257637,135.246121 101.210096,135.024894 L101.266931,135.464484 C101.303748,135.688217 101.495697,135.875078 101.730898,136.020057 L107.062947,139.066042 C107.803936,139.469835 108.384431,139.519235 109.279123,139.004829 L114.232635,136.158592 C114.537895,135.983186 114.830645,135.859685 114.859956,135.507799 L114.89999,134.862733 L114.897845,134.862733 C114.882475,135.216051 114.635479,135.544312 114.211546,135.788091" id="Fill-79" fill="#DDDDFC" />
|
||||
<path d="M91.562151,129.371582 L91.5460658,129.249514 C91.548568,129.290323 91.5535722,129.331132 91.562151,129.371582" id="Fill-81" fill="#DDDDFC" />
|
||||
<path d="M91.5453867,129.242927 L91.5461016,129.249729 C91.5461016,129.247223 91.546459,129.245075 91.5461016,129.242927 L91.5453867,129.242927 Z" id="Fill-83" fill="#DDDDFC" />
|
||||
<path d="M104.563243,130.134385 L99.6100884,132.980264 C98.7153966,133.495028 98.1349013,133.44527 97.393912,133.042194 L92.0615056,129.996208 C91.760892,129.810421 91.6093341,129.592773 91.562151,129.371547 L91.6189852,129.810421 C91.6561598,130.034869 91.8473943,130.221373 92.082595,130.366709 L97.4150014,133.412695 C98.1556333,133.816487 98.736486,133.86553 99.6311779,133.351124 L104.58469,130.505245 C104.88995,130.32948 105.181985,130.20598 105.212368,129.854093 L105.252402,129.209027 L105.2499,129.209027 C105.234887,129.562346 104.987533,129.890606 104.563243,130.134385" id="Fill-85" fill="#DDDDFC" />
|
||||
<path d="M81.78363,123.716409 L81.7675448,123.594341 C81.7696895,123.634792 81.7754087,123.675958 81.78363,123.716409" id="Fill-87" fill="#DDDDFC" />
|
||||
<polygon id="Fill-89" fill="#DDDDFC" points="81.7669014 123.587754 81.7676163 123.594556 81.7676163 123.587754" />
|
||||
<path d="M94.7844,124.479534 L89.8316032,127.325771 C88.9369113,127.839819 88.3567735,127.790419 87.6154267,127.386627 L82.2833778,124.340641 C81.9827642,124.15557 81.8312063,123.937922 81.7836657,123.716338 L81.8401425,124.15557 C81.8780319,124.37966 82.0685516,124.565806 82.3048246,124.7115 L87.6368736,127.757486 C88.3775055,128.16092 88.9580007,128.210679 89.8526926,127.696273 L94.8065618,124.850036 C95.1118222,124.674271 95.4038571,124.551129 95.4335252,124.198884 L95.4735594,123.55346 L95.4714147,123.553818 C95.4560445,123.907495 95.209048,124.235755 94.7844,124.479534" id="Fill-91" fill="#DDDDFC" />
|
||||
<path d="M139.152967,169.492605 L139.136882,169.370537 C139.138669,169.411346 139.144388,169.451797 139.152967,169.492605" id="Fill-93" fill="#DDDDFC" />
|
||||
<path d="M139.136203,169.364058 L139.136917,169.370859 C139.13656,169.368353 139.137275,169.366205 139.13656,169.364058 L139.136203,169.364058 Z" id="Fill-95" fill="#DDDDFC" />
|
||||
<path d="M129.374482,163.837611 L129.358396,163.715543 C129.360541,163.755994 129.36626,163.796802 129.374482,163.837611" id="Fill-97" fill="#DDDDFC" />
|
||||
<polygon id="Fill-99" fill="#DDDDFC" points="129.35736 163.708777 129.358432 163.715578 129.358432 163.708777" />
|
||||
<path d="M142.375573,164.600486 L137.422419,167.446723 C136.527727,167.960771 135.946874,167.911371 135.205885,167.507578 L129.873836,164.461951 C129.572865,164.276521 129.421665,164.058874 129.374482,163.837647 L129.430958,164.276163 C129.46849,164.500612 129.659368,164.687115 129.895641,164.83281 L135.22769,167.878795 C135.967964,168.28223 136.548459,168.33163 137.443508,167.817224 L142.39702,164.970987 C142.702281,164.795223 142.994316,164.67208 143.024341,164.319836 L143.064375,163.67477 L143.062231,163.675128 C143.04686,164.028804 142.799864,164.356707 142.375573,164.600486" id="Fill-101" fill="#DDDDFC" />
|
||||
<path d="M132.703893,158.86323 L127.750024,161.709466 C126.85569,162.223873 126.275195,162.174472 125.53349,161.77068 L120.201441,158.725052 C119.90047,158.539623 119.749627,158.32126 119.702087,158.100033 L119.758921,158.539265 C119.796096,158.763355 119.987688,158.949859 120.222888,159.095196 L125.554937,162.141181 C126.295569,162.545332 126.876422,162.594374 127.771471,162.079968 L132.724983,159.233731 C133.029886,159.058324 133.322278,158.934824 133.351589,158.582937 L133.391623,157.937871 L133.390193,157.937871 C133.374823,158.29119 133.127827,158.61945 132.703893,158.86323" id="Fill-103" fill="#DDDDFC" />
|
||||
<path d="M110.267431,152.154723 L110.251345,152.032655 C110.253133,152.073821 110.258852,152.113914 110.267431,152.154723" id="Fill-105" fill="#DDDDFC" />
|
||||
<path d="M110.250666,152.026175 L110.251381,152.032977 C110.251024,152.030113 110.251739,152.028323 110.251024,152.026175 L110.250666,152.026175 Z" id="Fill-107" fill="#DDDDFC" />
|
||||
<path d="M123.268522,152.917598 L118.315368,155.763835 C117.420319,156.278241 116.840181,156.228841 116.098477,155.825406 L110.766785,152.779778 C110.466172,152.593275 110.314614,152.375986 110.267431,152.154759 L110.323907,152.593275 C110.360725,152.817723 110.551959,153.004585 110.78859,153.15028 L116.119566,156.195549 C116.860913,156.599342 117.441766,156.648742 118.336457,156.134694 L123.289612,153.288457 C123.59523,153.112693 123.887265,152.989192 123.91729,152.637305 L123.957324,151.992597 L123.954822,151.992597 C123.939809,152.345916 123.692455,152.674177 123.268522,152.917598" id="Fill-109" fill="#DDDDFC" />
|
||||
<path d="M100.48891,146.499729 L100.472824,146.37766 C100.474969,146.418111 100.480331,146.45892 100.48891,146.499729" id="Fill-111" fill="#DDDDFC" />
|
||||
<polygon id="Fill-113" fill="#DDDDFC" points="100.472145 146.370895 100.47286 146.377696 100.47286 146.370895" />
|
||||
<path d="M113.490037,147.262603 L108.53724,150.10884 C107.642191,150.622888 107.061338,150.573488 106.320349,150.169696 L100.9883,147.124068 C100.687329,146.938639 100.536128,146.720991 100.488945,146.499765 L100.54578,146.938639 C100.582954,147.162729 100.773474,147.349233 101.010104,147.494927 L106.342153,150.540913 C107.082785,150.944348 107.662923,150.993748 108.557972,150.479342 L113.511484,147.633105 C113.816744,147.45734 114.108779,147.334198 114.138805,146.982311 L114.178839,146.336887 L114.176694,146.337245 C114.161324,146.690922 113.914328,147.018824 113.490037,147.262603" id="Fill-115" fill="#DDDDFC" />
|
||||
<path d="M103.818,141.52524 L98.8644881,144.371835 C97.9701536,144.885883 97.3896584,144.836483 96.6479542,144.43269 L91.3159052,141.387063 C91.0152916,141.201633 90.8637337,140.98327 90.8169081,140.762043 L90.8733848,141.201275 C90.9105594,141.425366 91.101794,141.612227 91.3373521,141.757564 L96.669401,144.803191 C97.4100329,145.207342 97.9908856,145.256384 98.8859349,144.742336 L103.839089,141.895741 C104.14435,141.720335 104.436742,141.596834 104.46641,141.245306 L104.506087,140.599882 L104.5043,140.599882 C104.489287,140.9532 104.24229,141.281461 103.818,141.52524" id="Fill-117" fill="#DDDDFC" />
|
||||
<path d="M81.1685695,135.108839 L81.1524844,134.98677 C81.1546291,135.027937 81.1603482,135.06803 81.1685695,135.108839" id="Fill-119" fill="#DDDDFC" />
|
||||
<path d="M81.1518052,134.980005 L81.1525201,134.986806 C81.1525201,134.9843 81.153235,134.98251 81.1525201,134.980005 L81.1518052,134.980005 Z" id="Fill-121" fill="#DDDDFC" />
|
||||
<path d="M94.169697,135.871642 L89.2165427,138.717879 C88.3218509,139.232285 87.7417131,139.182885 87.0000089,138.77945 L81.6679599,135.733464 C81.3677037,135.547319 81.2154309,135.33003 81.1686053,135.108803 L81.2254395,135.547319 C81.2622566,135.772125 81.4538486,135.958629 81.6894067,136.104324 L87.0214557,139.149951 C87.762445,139.553386 88.3432977,139.602786 89.2376321,139.088738 L94.1911439,136.242501 C94.4967618,136.066737 94.7884392,135.943236 94.8184648,135.591349 L94.858499,134.946284 L94.8563543,134.946284 C94.8413415,135.29996 94.5939876,135.627863 94.169697,135.871642" id="Fill-123" fill="#DDDDFC" />
|
||||
<path d="M71.3904417,129.454095 L71.3743566,129.331669 C71.3765013,129.372119 71.381863,129.412928 71.3904417,129.454095" id="Fill-125" fill="#DDDDFC" />
|
||||
<polygon id="Fill-127" fill="#DDDDFC" points="71.37332 129.32476 71.3743923 129.331919 71.3743923 129.32476" />
|
||||
<path d="M84.391176,130.21654 L79.4383792,133.062777 C78.5436873,133.577183 77.9628346,133.527783 77.2218453,133.123632 L71.8897963,130.078005 C71.5888252,129.892933 71.4372674,129.674928 71.3904417,129.454059 L71.4469185,129.892575 C71.484093,130.117024 71.6753276,130.303527 71.9112432,130.448506 L77.2429347,133.494849 C77.983924,133.898284 78.5644193,133.947684 79.4594686,133.433278 L84.4129803,130.587041 C84.7182408,130.411277 85.0102756,130.288492 85.0395863,129.936606 L85.0796205,129.291182 L85.0781907,129.29154 C85.0628204,129.644858 84.8154666,129.972761 84.391176,130.21654" id="Fill-129" fill="#DDDDFC" />
|
||||
<path d="M85.1123627,118.833096 L80.1599233,121.679333 C79.264874,122.193739 78.6847362,122.143981 77.9433894,121.740188 L72.6113405,118.69456 C72.3107268,118.509131 72.159169,118.291484 72.1116284,118.070257 L72.1681052,118.509131 C72.2059946,118.733579 72.3965143,118.919725 72.6327873,119.065062 L77.9648363,122.111405 C78.7054682,122.51484 79.285606,122.56424 80.1806553,122.049834 L85.1345245,119.203597 C85.4397849,119.027833 85.7321772,118.90469 85.7614879,118.552445 L85.8015221,117.90738 L85.7993774,117.907738 C85.7840071,118.261056 85.5370107,118.589317 85.1123627,118.833096" id="Fill-131" fill="#DDDDFC" />
|
||||
<path d="M74.7191744,124.570424 L69.7663776,127.41666 C68.8716857,127.930709 68.2911905,127.881308 67.5498437,127.477516 L62.2181522,124.43153 C61.9168237,124.246459 61.7652658,124.028454 61.7180827,123.807585 L61.7749169,124.246101 C61.8120915,124.470549 62.0033261,124.657053 62.2395991,124.802747 L67.5712906,127.848375 C68.3122799,128.25181 68.8924177,128.301568 69.787467,127.787162 L74.7409788,124.940567 C75.0465966,124.76516 75.3382741,124.642018 75.3675848,124.289773 L75.4076189,123.644707 L75.4058317,123.645065 C75.3908189,123.998384 75.143465,124.326286 74.7191744,124.570424" id="Fill-133" fill="#DDDDFC" />
|
||||
<path d="M162.423713,164.558889 L147.076691,173.108697 C146.181999,173.622745 145.601862,173.573703 144.860872,173.169911 L139.528823,170.123925 C139.227137,169.938854 139.076652,169.720491 139.029111,169.498906 L139.085945,169.938496 C139.122763,170.162586 139.314712,170.34909 139.549913,170.494426 L144.882319,173.540412 C145.622951,173.944205 146.203804,173.993247 147.098853,173.479199 L162.44516,164.929391 C162.75042,164.753984 163.042813,164.630484 163.072481,164.278597 L163.112872,163.633531 L163.110013,163.633531 C163.095,163.98685 162.848003,164.31511 162.423713,164.558889" id="Fill-135" fill="#DDDDFC" />
|
||||
<path d="M129.533296,175.229862 L129.517211,175.107793 C129.519355,175.14896 129.524717,175.189053 129.533296,175.229862" id="Fill-137" fill="#DDDDFC" />
|
||||
<path d="M129.516531,175.101314 L129.517246,175.107757 C129.517246,175.105252 129.517604,175.103462 129.517246,175.101314 L129.516531,175.101314 Z" id="Fill-139" fill="#DDDDFC" />
|
||||
<path d="M142.534423,175.992736 L137.581269,178.838973 C136.68622,179.353021 136.106082,179.303979 135.365092,178.900544 L130.032686,175.854917 C129.732072,175.668413 129.580515,175.451124 129.533331,175.229897 L129.589808,175.668413 C129.62734,175.892862 129.818575,176.079723 130.053775,176.225418 L135.386182,179.270688 C136.126814,179.67448 136.707666,179.72388 137.602358,179.209832 L142.555513,176.363595 C142.86113,176.187831 143.153165,176.064331 143.183191,175.712444 L143.223225,175.067736 L143.22108,175.067736 C143.205353,175.421055 142.958714,175.748957 142.534423,175.992736" id="Fill-141" fill="#DDDDFC" />
|
||||
<path d="M119.754775,169.574939 L119.73869,169.452871 C119.740834,169.493321 119.746553,169.533772 119.754775,169.574939" id="Fill-143" fill="#DDDDFC" />
|
||||
<path d="M119.738046,169.446033 L119.738761,169.452835 C119.739476,169.450329 119.738761,169.448181 119.738761,169.446033 L119.738046,169.446033 Z" id="Fill-145" fill="#DDDDFC" />
|
||||
<path d="M132.755545,170.337814 L127.802748,173.184051 C126.908056,173.698099 126.327918,173.648698 125.586214,173.244906 L120.254522,170.199278 C119.953909,170.013849 119.802351,169.796202 119.75481,169.574975 L119.811287,170.013491 C119.849177,170.237939 120.039696,170.424443 120.275969,170.570138 L125.608018,173.615765 C126.34865,174.019558 126.928788,174.068958 127.823837,173.554552 L132.777706,170.708315 C133.082967,170.53255 133.375002,170.409408 133.40467,170.057163 L133.444704,169.412097 L133.442559,169.412455 C133.427189,169.766132 133.180193,170.093677 132.755545,170.337814" id="Fill-147" fill="#DDDDFC" />
|
||||
<path d="M123.083865,164.600486 L118.130711,167.446723 C117.236019,167.960771 116.655166,167.911729 115.914177,167.507936 L110.58177,164.462308 C110.281157,164.276879 110.129599,164.058516 110.082416,163.837289 L110.13925,164.276521 C110.176424,164.500612 110.367659,164.687115 110.603575,164.832452 L115.935266,167.878437 C116.675898,168.282588 117.256751,168.331272 118.1518,167.817224 L123.105312,164.970987 C123.410215,164.795581 123.702607,164.67208 123.732633,164.320194 L123.772667,163.675128 L123.770165,163.675128 C123.755152,164.028446 123.508155,164.356707 123.083865,164.600486" id="Fill-149" fill="#DDDDFC" />
|
||||
<path d="M100.647402,157.891979 L100.631674,157.769911 C100.633819,157.811078 100.639181,157.851171 100.647402,157.891979" id="Fill-151" fill="#DDDDFC" />
|
||||
<path d="M100.631317,157.763432 L100.631674,157.770233 C100.631674,157.767727 100.632032,157.765579 100.631674,157.763432 L100.631317,157.763432 Z" id="Fill-153" fill="#DDDDFC" />
|
||||
<path d="M113.648851,158.654854 L108.695697,161.500733 C107.801005,162.015139 107.22051,161.966097 106.479163,161.562662 L101.147114,158.517035 C100.8465,158.330531 100.694943,158.113242 100.647402,157.892015 L100.704594,158.330531 C100.741768,158.55498 100.933003,158.741841 101.168918,158.887536 L106.50061,161.932805 C107.241242,162.336598 107.822094,162.385998 108.716786,161.87195 L113.670298,159.025713 C113.975558,158.849949 114.267593,158.726448 114.297619,158.374562 L114.338011,157.729854 L114.335508,157.729854 C114.320138,158.083172 114.073142,158.411075 113.648851,158.654854" id="Fill-155" fill="#DDDDFC" />
|
||||
<path d="M90.8692384,152.236985 L90.8531533,152.114917 C90.855298,152.155367 90.8610171,152.196176 90.8692384,152.236985" id="Fill-157" fill="#DDDDFC" />
|
||||
<polygon id="Fill-159" fill="#DDDDFC" points="90.8524741 152.108151 90.853189 152.114952 90.853189 152.108151" />
|
||||
<path d="M103.870008,152.999931 L98.9172116,155.846168 C98.0225197,156.360216 97.4423819,156.310816 96.7006777,155.907023 L91.3689862,152.861396 C91.0683726,152.675966 90.9168147,152.458319 90.8692742,152.237093 L90.9257509,152.675608 C90.9632829,152.900057 91.1541601,153.086561 91.3900756,153.232255 L96.722482,156.278241 C97.4631139,156.681675 98.0432517,156.731076 98.938301,156.216669 L103.891813,153.370432 C104.197073,153.194668 104.489108,153.071526 104.519134,152.719281 L104.559168,152.074215 L104.557023,152.074573 C104.541653,152.42825 104.294299,152.756152 103.870008,152.999931" id="Fill-161" fill="#DDDDFC" />
|
||||
<path d="M94.1983286,147.262603 L89.2451743,150.10884 C88.3504824,150.622888 87.7696297,150.573846 87.0286404,150.170054 L81.6965914,147.124426 C81.3956204,146.938997 81.24442,146.720634 81.1968794,146.499407 L81.2540711,146.938639 C81.2908882,147.162729 81.4821228,147.349233 81.7180383,147.494569 L87.0497298,150.540555 C87.7910766,150.944705 88.3715718,150.99339 89.2662637,150.479342 L94.2197755,147.633105 C94.5246784,147.457698 94.8170708,147.334198 94.8470964,146.982311 L94.8871305,146.337245 L94.8846284,146.337245 C94.8696156,146.690564 94.6226191,147.018824 94.1983286,147.262603" id="Fill-163" fill="#DDDDFC" />
|
||||
<path d="M71.5492558,140.846023 L71.5331706,140.723955 C71.5349579,140.765122 71.5403196,140.805215 71.5492558,140.846023" id="Fill-165" fill="#DDDDFC" />
|
||||
<path d="M71.532134,140.71744 L71.5332064,140.724241 C71.5328489,140.721735 71.5332064,140.719588 71.5328489,140.71744 L71.532134,140.71744 Z" id="Fill-167" fill="#DDDDFC" />
|
||||
<path d="M84.5503833,141.608898 L79.597229,144.454777 C78.7021796,144.969183 78.1220419,144.920141 77.3803376,144.516706 L72.0486461,141.471079 C71.7480325,141.284575 71.5964746,141.067286 71.5492915,140.846059 L71.6054108,141.284575 C71.6429428,141.509024 71.8341774,141.695885 72.0697355,141.84158 L77.4017845,144.886849 C78.1427738,145.290642 78.7232691,145.340042 79.6183184,144.825994 L84.5714727,141.979757 C84.8770906,141.803993 85.1691254,141.680492 85.199151,141.328606 L85.2391852,140.683898 L85.2366831,140.683898 C85.2213128,141.037216 84.9743164,141.365119 84.5503833,141.608898" id="Fill-169" fill="#DDDDFC" />
|
||||
<path d="M61.7704131,135.190993 L61.7546854,135.068925 C61.75683,135.109376 61.7621918,135.149827 61.7704131,135.190993" id="Fill-171" fill="#DDDDFC" />
|
||||
<polygon id="Fill-173" fill="#DDDDFC" points="61.7532913 135.062338 61.7547211 135.06914 61.7547211 135.062338" />
|
||||
<path d="M74.7715048,135.954118 L69.8183505,138.800355 C68.9236586,139.314403 68.3435208,139.264645 67.6021741,138.861211 L62.2704825,135.815225 C61.969154,135.629796 61.8183111,135.412149 61.7704131,135.190922 L61.8272473,135.629796 C61.8651367,135.854244 62.0556564,136.040748 62.2919294,136.186084 L67.6239784,139.23207 C68.3646103,139.635505 68.9447481,139.685263 69.8394399,139.170857 L74.7929517,136.324262 C75.0982121,136.148855 75.3909619,136.025355 75.42063,135.67311 L75.4606642,135.028044 L75.4585195,135.028044 C75.4431492,135.382079 75.1957954,135.709981 74.7715048,135.954118" id="Fill-175" fill="#DDDDFC" />
|
||||
<path d="M65.0994675,130.21654 L60.1463132,133.062777 C59.2516213,133.577183 58.6711261,133.527783 57.9294219,133.12399 L52.5977303,130.078363 C52.2967593,129.893291 52.1455589,129.67457 52.0983758,129.453343 L52.15521,129.892933 C52.1923845,130.116666 52.3836191,130.303527 52.6195347,130.448506 L57.9508687,133.494491 C58.6918581,133.898642 59.2727107,133.947684 60.1677601,133.433278 L65.1212718,130.587041 C65.4261748,130.411635 65.7185671,130.288134 65.7478778,129.936606 L65.787912,129.29154 L65.7857673,129.29154 C65.7707545,129.6445 65.523758,129.972761 65.0994675,130.21654" id="Fill-177" fill="#DDDDFC" />
|
||||
<path d="M119.143217,180.96676 L119.127847,180.844691 C119.129634,180.885858 119.134638,180.925951 119.143217,180.96676" id="Fill-179" fill="#DDDDFC" />
|
||||
<polygon id="Fill-181" fill="#DDDDFC" points="119.12681 180.83832 119.127883 180.844763 119.127883 180.83832" />
|
||||
<path d="M132.144702,181.729742 L127.191548,184.575979 C126.296499,185.090027 125.716361,185.040985 124.975371,184.63755 L119.642965,181.591923 C119.342351,181.405419 119.190794,181.18813 119.143253,180.966903 L119.200445,181.405419 C119.237619,181.629868 119.428854,181.816729 119.664412,181.962424 L124.996461,185.007693 C125.737093,185.411486 126.317945,185.460886 127.21228,184.946838 L132.166149,182.100601 C132.471409,181.924837 132.763444,181.801336 132.79347,181.44945 L132.833862,180.804742 L132.831359,180.804742 C132.815632,181.15806 132.568993,181.485963 132.144702,181.729742" id="Fill-183" fill="#DDDDFC" />
|
||||
<path d="M109.365054,175.311945 L109.348968,175.189518 C109.351113,175.230327 109.356832,175.270778 109.365054,175.311945" id="Fill-185" fill="#DDDDFC" />
|
||||
<path d="M109.348325,175.18311 L109.34904,175.189554 C109.349397,175.187406 109.34904,175.185258 109.34904,175.18311 L109.348325,175.18311 Z" id="Fill-187" fill="#DDDDFC" />
|
||||
<path d="M122.366181,176.074819 L117.412669,178.921056 C116.518335,179.435104 115.938197,179.385704 115.196493,178.981911 L109.864801,175.936284 C109.564188,175.750854 109.41263,175.533207 109.365089,175.31198 L109.421566,175.750496 C109.459456,175.974945 109.649975,176.161449 109.886248,176.307143 L115.218297,179.352771 C115.958929,179.756205 116.539067,179.805963 117.433759,179.291557 L122.387985,176.44532 C122.692888,176.269556 122.985281,176.146414 123.014591,175.794169 L123.054983,175.149103 L123.052838,175.149461 C123.037468,175.503138 122.790472,175.83104 122.366181,176.074819" id="Fill-189" fill="#DDDDFC" />
|
||||
<path d="M112.693786,170.337456 L107.74099,173.183693 C106.846298,173.698099 106.265445,173.648698 105.524456,173.244906 L61.6591753,147.229276 C61.3578468,147.043847 61.2066464,146.825484 61.1591058,146.604257 L61.21594,147.043489 C61.253472,147.267579 61.4447066,147.454083 61.6802647,147.599419 L105.545903,173.615407 C106.286534,174.019558 106.867387,174.068242 107.762079,173.554552 L112.715591,170.707957 C113.020494,170.53255 113.312886,170.40905 113.342912,170.057163 L113.382946,169.412097 L113.380086,169.412097 C113.365431,169.765416 113.118077,170.093677 112.693786,170.337456" id="Fill-191" fill="#DDDDFC" />
|
||||
<path d="M90.2580027,163.628913 L90.2419175,163.507203 C90.2444196,163.548012 90.2497814,163.588463 90.2580027,163.628913" id="Fill-193" fill="#DDDDFC" />
|
||||
<path d="M90.2412741,163.500437 L90.241989,163.507239 C90.241989,163.504733 90.2423464,163.502585 90.241989,163.500437 L90.2412741,163.500437 Z" id="Fill-195" fill="#DDDDFC" />
|
||||
<path d="M80.4795174,157.974062 L80.4634322,157.851994 C80.4655769,157.892445 80.4712961,157.933254 80.4795174,157.974062" id="Fill-197" fill="#DDDDFC" />
|
||||
<polygon id="Fill-199" fill="#DDDDFC" points="80.4627531 157.845157 80.463468 157.851958 80.463468 157.845157" />
|
||||
<path d="M61.1591773,146.582993 L61.143807,146.460925 C61.1452368,146.502091 61.1505986,146.542184 61.1591773,146.582993" id="Fill-201" fill="#DDDDFC" />
|
||||
<path d="M61.142413,146.454445 L61.1438428,146.461247 C61.1431279,146.458741 61.1438428,146.456593 61.1431279,146.454445 L61.142413,146.454445 Z" id="Fill-203" fill="#DDDDFC" />
|
||||
<path d="M51.3810137,140.928178 L51.3649286,140.805751 C51.3667158,140.84656 51.372435,140.887011 51.3810137,140.928178" id="Fill-205" fill="#DDDDFC" />
|
||||
<polygon id="Fill-207" fill="#DDDDFC" points="51.3642852 140.799272 51.3650001 140.805716 51.3650001 140.799272" />
|
||||
<path d="M64.3817838,141.690874 L59.4286295,144.53711 C58.5339376,145.051517 57.9534424,145.001758 57.2124531,144.597966 L51.8807615,141.552338 C51.5797905,141.366909 51.42859,141.149262 51.3810495,140.928035 L51.4375262,141.366551 C51.4754157,141.591357 51.6659354,141.777503 51.9018509,141.923197 L57.2342574,144.969183 C57.9748892,145.372618 58.555027,145.422018 59.4497189,144.90797 L64.4032306,142.061375 C64.7088485,141.88561 65.0012408,141.762826 65.0305516,141.410223 L65.0709432,140.765515 L65.0687985,140.765515 C65.0534282,141.119192 64.8060743,141.447094 64.3817838,141.690874" id="Fill-209" fill="#DDDDFC" />
|
||||
<path d="M54.7101039,135.953796 L49.7565922,138.800033 C48.8622577,139.314081 48.2814051,139.264681 47.5404157,138.861246 L42.2083668,135.815261 C41.9070383,135.629831 41.7558378,135.411468 41.7086547,135.190242 L41.7654889,135.629831 C41.8026635,135.853564 41.9942555,136.040426 42.2298136,136.185762 L47.5615052,139.231748 C48.3024945,139.63554 48.8829897,139.684583 49.778039,139.170534 L54.7315508,136.32394 C55.0364538,136.148891 55.3288461,136.025033 55.3585142,135.673146 L55.3985484,135.02808 L55.3964037,135.02808 C55.3810335,135.381757 55.1343945,135.709659 54.7101039,135.953796" id="Fill-211" fill="#DDDDFC" />
|
||||
<path d="M86.2089411,92.6844436 C86.315818,95.8421164 88.6678246,96.7152106 88.6678246,96.7152106 L183.115545,152.013324 C183.115545,152.013324 184.345165,152.707432 185.790326,152.89322 C186.638193,153.002401 187.560051,152.936892 188.351083,152.452914 C190.268075,150.980574 190.248058,147.648211 190.248058,147.648211 L190.248058,63.9632601 C190.075411,60.3552583 187.046041,59.0142945 187.046041,59.0142945 L89.6465167,3.15667045 C89.6465167,3.15667045 87.767771,2.09707274 86.9467134,3.02994829 C86.0738258,4.02188926 86.1731963,4.62686227 86.1731963,6.84843774 L86.2089411,92.6844436 Z" id="Fill-213" fill="#5763AB" />
|
||||
<path d="M174.951865,171.825653 L178.340113,169.803111 C178.865562,169.489885 179.175469,168.736353 178.883791,168.201901 C179.214788,168.244142 179.52398,168.429929 179.708066,168.739217 C180.026552,169.275459 179.713785,170.050827 179.179043,170.369781 L175.791153,172.392323 C175.478029,172.578827 175.11236,172.592072 174.798878,172.467498 C174.575473,172.37872 174.377089,172.223003 174.244476,172.000344 C174.238757,171.991037 174.234825,171.980655 174.229463,171.970632 C174.471456,172.003924 174.725601,171.960967 174.951865,171.825653" id="Fill-215" fill="#B6B6DD" />
|
||||
<path d="M174.773821,170.369888 L178.162069,168.347703 C178.345439,168.238163 178.547755,168.190553 178.746853,168.192343 C178.792964,168.192343 178.83836,168.195923 178.883756,168.202008 C179.175433,168.736461 178.865526,169.489992 178.340435,169.803218 L174.95183,171.825761 C174.725565,171.960716 174.47142,172.003673 174.229428,171.97074 C173.938823,171.436287 174.24873,170.683472 174.773821,170.369888" id="Fill-217" fill="#C7C7EA" />
|
||||
</g>
|
||||
<g id="browser-(homepage)" transform="translate(113.973017, 8.744890)">
|
||||
<polygon id="Fill-223" fill="#DDDDFC" points="7 34.8944613 7 51.4739195 28.5651504 63.7369664 28.5651504 47.3854823" />
|
||||
<polygon id="Fill-225" fill="#DDDDFC" points="19.670846 18 19.670846 22.8818174 75.251605 54.9604986 75.251605 50.3043907" />
|
||||
<polygon id="Fill-227" fill="#DDDDFC" points="28.1180767 32.7826537 28.1180767 36.8416505 65.1163325 57.9428477 65.1163325 54.1103153" />
|
||||
<polygon id="Fill-229" fill="#DDDDFC" points="7 53.9007303 7 56.0574262 28.5651504 68.3219828 28.5651504 66.3917513" />
|
||||
<polygon id="Fill-231" fill="#DDDDFC" points="7 60.2361533 7 62.3936041 24.1534281 72.252354 24.1534281 70.3221225" />
|
||||
<polygon id="Fill-233" fill="#DDDDFC" points="36.5653073 51.7889227 36.5653073 68.3668711 58.1297032 80.6314277 58.1297032 64.2791888" />
|
||||
<polygon id="Fill-235" fill="#DDDDFC" points="36.5653073 70.7951916 36.5653073 72.9526424 58.1297032 85.2164442 58.1297032 83.2862127" />
|
||||
<polygon id="Fill-237" fill="#DDDDFC" points="36.5653073 77.1306146 36.5653073 79.2865557 53.7202445 89.1468153 53.7202445 87.2158289" />
|
||||
<polygon id="Fill-239" fill="#DDDDFC" points="64.018807 68.683384 64.018807 85.2620873 85.5824483 97.525889 85.5824483 81.1736501" />
|
||||
<polygon id="Fill-241" fill="#DDDDFC" points="64.018807 110.919537 64.018807 118.780116 83.0404452 129.595301 83.0404452 121.961941" />
|
||||
<polygon id="Fill-243" fill="#DDDDFC" points="64.018807 87.689653 64.018807 89.8463489 85.5824483 102.110905 85.5824483 100.180674" />
|
||||
<polygon id="Fill-245" fill="#DDDDFC" points="64.018807 94.025076 64.018807 96.1817719 81.1722351 106.041277 81.1722351 104.111045" />
|
||||
<polygon id="Fill-247" fill="#E4E4F4" points="64.018807 111.611763 65.3860108 110.919537 84.1752545 121.959676 83.0404452 122.654167" />
|
||||
<polygon id="Fill-249" fill="#CECEEF" points="83.025076 122.173066 84.1598853 121.478576 84.1598853 129.111935 83.025076 129.806426" />
|
||||
<path d="M1.27141755,0.365341438 C1.69016129,0.0193226608 2.34221531,0.117980907 2.72773109,0.585177748 C3.11360415,1.05237459 3.0871647,1.71188352 2.66842097,2.0579023 C2.24931994,2.40392107 1.59726592,2.30562028 1.21139286,1.83842344 C0.82551979,1.37086915 0.852316531,0.711717673 1.27141755,0.365341438" id="Fill-251" fill="#E8F0F4" />
|
||||
<path d="M4.33275513,2.20666137 C4.75149886,1.8606426 5.40355289,1.95930084 5.78906866,2.42649768 C6.17494173,2.89369452 6.14850228,3.55320345 5.72975854,3.89922223 C5.31065752,4.24524101 4.6586035,4.14694022 4.27273043,3.67974338 C3.88685737,3.21218908 3.91365411,2.55303761 4.33275513,2.20666137" id="Fill-251" fill="#E8F0F4" />
|
||||
<path d="M7.33275513,4.20666137 C7.75149886,3.8606426 8.40355289,3.95930084 8.78906866,4.42649768 C9.17494173,4.89369452 9.14850228,5.55320345 8.72975854,5.89922223 C8.31065752,6.24524101 7.6586035,6.14694022 7.27273043,5.67974338 C6.88685737,5.21218908 6.91365411,4.55303761 7.33275513,4.20666137" id="Fill-251" fill="#E8F0F4" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="letters" transform="translate(21.000000, 208.000000)">
|
||||
<path d="M111.654289,39.2861548 L47.6826319,2.51619384 C45.6200209,1.3547577 44.140145,2.51619384 44.140145,2.51619384 L2.34268513,26.786654 C2.34268513,26.786654 0.312147209,26.4136085 0.0108415818,28.0623888 C-0.0135519772,28.1973872 0.0108415818,29.8155679 0.0108415818,29.9577662 C0.0108415818,31.9305426 2.34268513,33.0397794 2.34268513,33.0397794 C2.34268513,33.0397794 61.6994419,67.0337235 64.251731,68.4242069 C66.6278443,69.7197414 68.6010122,68.4242069 68.6010122,68.4242069 L111.430681,43.6191531 C111.430681,43.6191531 113,42.7700132 113,41.5640276 C113,41.4623288 112.994579,39.7626991 112.983286,39.6686502 C112.831052,38.3087665 111.654289,39.2861548 111.654289,39.2861548" id="Fill-649" fill="#DDDDFC" />
|
||||
<path d="M111.65416,37.2857048 L47.6763645,0.516193836 C45.6135557,-0.645242296 44.1335378,0.516193836 44.1335378,0.516193836 L2.33206729,24.7857541 C2.33206729,24.7857541 0,26.0817386 0,27.9577662 C0,29.9309926 2.33206729,31.0397794 2.33206729,31.0397794 C2.33206729,31.0397794 61.6945195,65.0332735 64.2470535,66.4242069 C66.6233948,67.7197414 68.596752,66.4242069 68.596752,66.4242069 L111.43053,41.6182531 C111.43053,41.6182531 113,40.7700132 113,39.5635776 C113,37.9998463 111.65416,37.2857048 111.65416,37.2857048" id="Fill-651" fill="#5763AB" />
|
||||
<polygon id="Fill-653" fill="#DDDDFC" points="7 28.309241 7 27.3657141 47.20433 5 108 38.9266098 108 39.8701367 68.0017097 63" />
|
||||
<polygon id="Fill-655" fill="#FFFFFF" points="7 27.3083505 47.2448206 4 92 29.8127202 52.1419492 53" />
|
||||
<path d="M91.7737631,30 L56.0526655,51.1115684 C52.5329938,52.6035665 48.9232723,52.3109282 43,48.905807 L67.6518006,63 L108,39.4165524 L91.7737631,30 Z" id="Fill-657" fill="#F6F6FF" />
|
||||
<path d="M56,50 C63.002918,46.4216349 62.9031075,38.2337593 62.9031075,38.2337593 L107,13 C107,13 107,20.7203932 102.079614,23.8276971 L56,50 Z" id="Fill-659" fill="#EAEAF9" />
|
||||
<polygon id="Fill-661" fill="#DDDDFC" points="20 16.8482627 27.5736826 21 40 14.0697721 40 13.397394 32.2765475 10 20 16.1754463" />
|
||||
<polygon id="Fill-663" fill="#F6F6FF" points="20 16.8482627 27.5736826 21 40 14.0702104 32.2765475 10" />
|
||||
</g>
|
||||
<g id="cup" transform="translate(110.000000, 165.000000)">
|
||||
<path d="M0.209271566,16.7060587 L0.235954644,17.2537495 C0.447513331,20.8855616 2.19373017,41.3694277 14.8403654,44.9497739 C24.9791726,47.5872161 27.8495093,43.7725843 28.1746617,43.2740551 L29.681112,12.4121014 L0,12.4121014 L0.209271566,16.6999135 L0.209271566,16.7060587 Z" id="Fill-623" fill="#5763AB" />
|
||||
<polygon id="Fill-625" fill="#FFFFFF" points="0.539656582 16.729354 0.539656582 16.729354 0.539656582 16.7379886" />
|
||||
<path d="M15.2085907,44.2483358 C2.5060817,40.6908765 0.752149951,20.3379504 0.539656582,16.729354 L1.91837482,44.6631564 C1.91837482,48.9063864 7.86857201,52.3466885 15.2085907,52.3466885 C22.5489923,52.3466885 28.4995723,48.9063864 28.4995723,44.6631564 L28.6017989,42.5833288 C28.2752099,43.0786712 25.3925747,46.8689186 15.2085907,44.2483358" id="Fill-627" fill="#5763AB" />
|
||||
<path d="M15.1100014,50.2915031 C8.09739139,50.2915031 2.33581602,47.1667851 1.68215331,43.1725266 C1.64156266,43.4219027 1.61896975,43.6747478 1.61896975,43.9302909 C1.61896975,48.2803055 7.65931867,51.8070319 15.1100014,51.8070319 C22.5614499,51.8070319 28.6017989,48.2803055 28.6017989,43.9302909 C28.6017989,43.6747478 28.5792059,43.4219027 28.5382324,43.1725266 C27.8849526,47.1667851 22.1233772,50.2915031 15.1100014,50.2915031" id="Fill-629" fill="#F0F0FC" />
|
||||
<path d="M29.681112,11.6026165 C29.681112,16.2224128 23.1576531,19.9672935 15.1105755,19.9672935 C7.06388014,19.9672935 0.539656582,16.2224128 0.539656582,11.6026165 C0.539656582,6.98282023 7.06388014,3.23793949 15.1105755,3.23793949 C23.1576531,3.23793949 29.681112,6.98282023 29.681112,11.6026165" id="Fill-631" fill="#FFFFFF" />
|
||||
<path d="M14.8401735,23.1190569 C7.12648136,23.1190569 0.789195934,19.6040148 0.0703887793,15.1103843 C0.0248656014,15.3911624 0,15.6754846 0,15.9629573 C0,20.8566866 6.64447124,24.8242028 14.8401735,24.8242028 C23.0362582,24.8242028 29.681112,20.8566866 29.681112,15.9629573 C29.681112,15.6754846 29.6558639,15.3911624 29.6107232,15.1103843 C28.8919161,19.6040148 22.5546307,23.1190569 14.8401735,23.1190569" id="Fill-633" fill="#F0F0FC" />
|
||||
<path d="M15.1100018,15.1188951 C7.53602344,15.1188951 1.31388548,11.7991226 0.608510931,7.55519215 C0.563755604,7.8206982 0.539656582,8.08885552 0.539656582,8.36080037 C0.539656582,12.9823479 7.06284106,16.729354 15.1100018,16.729354 C23.1571625,16.729354 29.681112,12.9823479 29.681112,8.36080037 C29.681112,8.08885552 29.6562479,7.8206982 29.6130227,7.55519215 C28.9065006,11.7991226 22.6839801,15.1188951 15.1100018,15.1188951" id="Fill-635" fill="#FCFCFC" />
|
||||
<path d="M15.2915269,19.8058415 C20.8993826,20.3267898 24.323813,19.5135653 26.4074571,18.4171509 C27.7770775,17.5198781 28.8348342,16.4605662 29.4851193,15.2944901 C29.5522724,15.1165499 29.5742774,15.0120574 29.5742774,15.0120574 C29.5742774,15.0120574 29.5909709,15.0207651 29.6209432,15.035909 C30.0083067,14.2586511 30.2207686,13.4378547 30.2207686,12.5879064 C30.2207686,7.72181048 23.4056741,3.77759608 14.9990124,3.77759608 C8.25486497,3.77759608 2.53888134,6.31721887 0.540221994,9.83361965 C0.533392862,10.0789499 0.394154445,18.6117494 15.2915269,19.8058415" id="Fill-637" fill="#FFFFFF" />
|
||||
<path d="M15.4229882,21.5862633 C20.0273186,21.5862633 24.1572611,20.401934 26.9828291,18.5261304 C24.8715339,19.6513793 21.4020439,20.4866677 15.7193846,19.9518344 C0.624700413,18.7259156 0.765402168,9.96568766 0.772706357,9.71381848 C0.273330458,10.6035231 0,11.5534741 0,12.5411278 C0,17.536922 6.90553448,21.5862633 15.4229882,21.5862633" id="Fill-639" fill="#F6F6FF" />
|
||||
<path d="M29.681112,8.90433361 C29.681112,13.5241552 23.1573588,17.2690106 15.1103843,17.2690106 C7.06302546,17.2690106 0.539656582,13.5241552 0.539656582,8.90433361 C0.539656582,4.28451199 7.06302546,0.539656582 15.1103843,0.539656582 C23.1573588,0.539656582 29.681112,4.28451199 29.681112,8.90433361" id="Fill-641" fill="#5763AB" />
|
||||
<path d="M15.1101934,0.198744233 C7.18411153,0.198744233 0.735126643,3.98303628 0.735126643,8.63450531 C0.735126643,13.2863625 7.18411153,17.0702664 15.1101934,17.0702664 C23.0370389,17.0702664 29.4852602,13.2863625 29.4852602,8.63450531 C29.4852602,3.98303628 23.0370389,0.198744233 15.1101934,0.198744233 M15.1101934,17.2690106 C7.07568673,17.2690106 0.539656582,13.3958271 0.539656582,8.63450531 C0.539656582,3.87357168 7.07568673,0 15.1101934,0 C23.1447001,0 29.681112,3.87357168 29.681112,8.63450531 C29.681112,13.3958271 23.1447001,17.2690106 15.1101934,17.2690106" id="Fill-643" fill="#F7F7F7" />
|
||||
<path d="M13.8488249,13.4868733 L17.0416278,13.4868733 C17.1220805,13.4868733 17.1983784,13.5042815 17.2674998,13.5345568 C17.2674998,13.5281233 17.2690106,13.5220683 17.2690106,13.5152563 C17.2690106,13.204178 17.0174542,12.951758 16.7069746,12.951758 L13.5134163,12.951758 C13.2033144,12.951758 12.951758,13.204178 12.951758,13.5152563 C12.951758,13.7461052 13.0903784,13.9440298 13.2886774,14.0310711 C13.2984979,13.7294538 13.5447664,13.4868733 13.8488249,13.4868733" id="Fill-645" fill="#DADEE0" />
|
||||
<path d="M16.7371922,14.5707277 C17.0255145,14.5707277 17.2593282,14.3498964 17.2690106,14.0748924 C17.2037436,14.0469434 17.1313045,14.0310711 17.0549206,14.0310711 L14.0235916,14.0310711 C13.7349106,14.0310711 13.501097,14.2522475 13.4914146,14.5272515 C13.5570402,14.5548555 13.6291207,14.5707277 13.705146,14.5707277 L16.7371922,14.5707277 Z" id="Fill-647" fill="#E8E8E8" />
|
||||
</g>
|
||||
<g id="Group-12" transform="translate(75.000000, 129.000000) scale(-1, 1) translate(-75.000000, -129.000000) translate(40.000000, 61.000000)">
|
||||
<path d="M6.39721837,87.1914435 C16.6327678,81.207717 26.4418359,78.2158538 35.8244229,78.2158538 C45.2070098,78.2158538 56.2955217,81.207717 69.0899584,87.1914435 C63.1192213,102.578169 57.5749653,111.553759 52.4571906,114.118213 C44.7805286,117.964894 36.5464962,121.25642 23.0299861,112.835986 C14.0189794,107.222363 8.47472352,98.6741825 6.39721837,87.1914435 Z" id="Path-33" fill="url(#linearGradient-5)" />
|
||||
<path d="M15.9670888,67.7288579 L23.9751307,58.4180167 L23.6242325,58.155285 L16.1075921,66.8947804 C18.8837766,50.495891 21.61761,39.1822525 24.3032968,32.9654562 L32.9486939,24.8795323 L32.6303488,24.5810998 L24.7722703,31.9306593 C25.0044775,31.4434853 25.2363208,30.994578 25.4677963,30.5839452 L34.145169,15.1904619 L33.7424291,14.9884755 L25.0650563,30.3819588 C21.3800501,36.9190851 17.6316572,52.9417093 13.8050923,78.4794017 L14.2567348,78.5396117 C14.8285889,74.7231775 15.3987234,71.1195598 15.9670888,67.7288579 Z M9.17855425,81.6421579 C-0.858607632,71.8772112 -3.22585382,54.5609562 4.88885684,44.8559091 C11.7513366,36.6485074 17.6801575,21.4274155 23.1250673,10.9039748 C23.8396289,9.5229333 24.4263651,16.0439695 25.1252748,14.8512093 C28.5468821,9.01188952 31.9125959,-2.07510478 35.1027075,0.338422891 C37.1775671,1.90818968 38.8540561,4.5483404 40.1321745,8.25887506 C40.5328677,9.42213672 38.1103098,13.937916 38.4377917,15.873544 C38.7548086,17.7473172 41.8241674,17.0166517 42.0725773,19.6142166 C42.4015484,23.0541919 42.7596422,29.6422067 43.1468589,39.3782609 L35.0075868,51.5762554 L43.5870956,41.3771293 C43.8756538,42.9175587 43.6833669,44.9737921 43.0102349,47.5458296 C42.3371028,50.1178671 41.133054,52.9188147 39.3980884,55.9486725 L30.2737242,69.7882391 L39.4617613,57.8586224 C37.5292027,65.096037 34.9959618,70.4855856 31.8620385,74.0272684 C28.7281153,77.5689512 17.8052405,81.5738078 12.9670336,83.8382026 L1.84351473,121.614074 L9.17855425,81.6421579 Z" id="Combined-Shape-Copy" fill="#3BC2CA" transform="translate(21.858485, 60.807037) scale(-1, 1) translate(-21.858485, -60.807037) " />
|
||||
<path d="M44.4515554,77.9238635 L49.4200426,72.147071 L49.2023323,71.9840625 L44.5387289,77.4063708 C46.261177,67.2318894 47.9573491,60.212487 49.6236491,56.3553551 L54.9875753,51.338547 L54.7900621,51.1533884 L49.9146177,55.7133286 C50.0586877,55.4110677 50.2025319,55.132549 50.3461479,54.8777771 L55.729913,45.3270871 L55.4800381,45.2017672 L50.0962731,54.7524572 C47.8099581,58.8083337 45.4843156,68.7493661 43.1101723,84.593901 L43.3903881,84.6312575 C43.7451877,82.2633997 44.0989204,80.0275811 44.4515554,77.9238635 Z M40.2396959,86.5561926 C34.0122671,80.4976563 32.5435394,69.7540072 37.578208,63.7326347 C41.8359458,58.6404572 45.514407,49.1967253 48.8926317,42.6675909 C49.3359723,41.8107414 49.7000053,45.856635 50.1336349,45.1166021 C52.2565274,41.4936708 54.3447415,34.6148869 56.3240055,36.1123293 C57.6113256,37.086271 58.6514818,38.7243188 59.444474,41.0264726 C59.693079,41.7482034 58.1900339,44.549961 58.3932159,45.7508966 C58.5899049,46.9134552 60.4942494,46.4601232 60.6483721,48.0717491 C60.852478,50.2060379 61.0746528,54.2934874 61.3148965,60.3340979 L56.2649891,67.9021877 L61.5880357,61.5742702 C61.7670679,62.5300099 61.647766,63.8057737 61.2301298,65.4015615 C60.8124936,66.9973493 60.0654569,68.7351614 58.9890197,70.614998 L53.3279245,79.2015802 L59.0285247,71.800002 C57.8294934,76.2903634 56.2577765,79.63424 54.3133738,81.8316318 C52.3689712,84.0290236 45.5920131,86.5137857 42.5902095,87.9187005 L35.6887644,111.356257 L40.2396959,86.5561926 Z" id="Combined-Shape-Copy" fill="#6CD5DB" />
|
||||
<path d="M8.95610572,94.7423047 C17.4857302,91.4180334 26.4418359,89.7558978 35.8244229,89.7558978 C45.2070098,89.7558978 55.016078,91.4180334 65.2516274,94.7423047 C61.8397776,106.529984 57.5749653,113.33054 52.4571906,115.143974 C44.7805286,117.864125 36.5464962,120.191702 23.0299861,114.237257 C14.0189794,110.267627 9.32768597,103.76931 8.95610572,94.7423047 Z" id="Path-33" fill="url(#linearGradient-6)" opacity="0.650701993" />
|
||||
<path d="M6.39721837,87.1914435 C20.0446176,99.1588966 33.6920168,102.578169 47.3394159,97.4492604 C60.9868151,92.320352 68.236996,88.9010797 69.0899584,87.1914435 C63.9721837,109.416713 60.1338527,122.238985 57.5749653,125.658257 C53.7366343,130.787165 49.8983033,137.198301 34.5449792,134.633847 C19.1916551,132.069392 15.3564047,124.520972 12.7944367,119.247121 C11.0864581,115.731221 8.95405197,105.045995 6.39721837,87.1914435 Z" id="Path-32" fill="url(#linearGradient-7)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 93 KiB |
371
media/images/custom-software-development.width-800.svg
Normal file
@@ -0,0 +1,371 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="495.0" height="610.0" viewBox="0.0 0.0 495.0 610.0" version="1.1">
|
||||
|
||||
<title>custom-software-development</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
|
||||
<stop stop-color="#FD99BE" offset="0%" />
|
||||
<stop stop-color="#F94C8C" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
|
||||
<stop stop-color="#9AE1E5" offset="0%" />
|
||||
<stop stop-color="#39BAC1" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
|
||||
<stop stop-color="#FFDB71" offset="0%" />
|
||||
<stop stop-color="#FEB856" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="81.253561%" x2="50%" y2="38.5969009%" id="linearGradient-4">
|
||||
<stop stop-color="#434D8E" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-5">
|
||||
<stop stop-color="#72669D" offset="0%" />
|
||||
<stop stop-color="#ADA7C7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="76.9888796%" y1="16.7734139%" x2="-11.6510841%" y2="73.2727713%" id="linearGradient-6">
|
||||
<stop stop-color="#EAE9F1" offset="0%" />
|
||||
<stop stop-color="#ECE7F9" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="15.4820432%" y1="76.2997855%" x2="100%" y2="25.92039%" id="linearGradient-7">
|
||||
<stop stop-color="#444F90" offset="0%" />
|
||||
<stop stop-color="#828BC0" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="6" transform="translate(-161.000000, -282.000000)">
|
||||
<g id="custom-software-development" transform="translate(408.500000, 587.500000) scale(-1, 1) translate(-408.500000, -587.500000) translate(161.000000, 282.000000)">
|
||||
<g id="Group-3">
|
||||
<g id="server" transform="translate(82.252252, 162.063063) scale(-1, 1) translate(-82.252252, -162.063063) translate(0.000000, 114.000000)">
|
||||
<path d="M59.0486296,40.3303712 C57.4965773,39.4167326 55.8857024,38.7502567 52.9089567,38.7502567 C49.9332903,38.7502567 46.7288095,40.8387277 46.7288095,40.8387277 L0.475383483,67.2236173 L1.85474571,68.0654816 L47.933323,41.8074113 C47.933323,41.8074113 50.7325217,40.0017204 52.9089567,40.0017204 C55.7529469,40.0017204 57.6115241,41.253184 57.6115241,41.253184 L62.008646,43.732906 L62.008646,42.0723827 L59.0486296,40.3303712 Z" id="Fill-115" fill="#DDDDFC" />
|
||||
<polygon id="Fill-118" fill="#DDDDFC" points="113.561877 79.1812739 164.098558 50.1639395 164.098558 66.4297285 113.561877 95.447063 62.0926705 65.9375617 62.0926705 49.6717727" />
|
||||
<polygon id="Fill-120" fill="#5763AB" points="112.189531 20.269933 164.098558 50.1642093 113.561877 79.1815437 62.0926705 49.6715029" />
|
||||
<polygon id="Fill-122" fill="#EAEAF9" points="113.561877 95.4471709 113.561877 79.1813818 62.0926705 49.6718806 62.0926705 65.9376697" />
|
||||
<polygon id="Fill-124" fill="#D7D7F2" points="65.4180883 53.4711709 66.8551938 54.2952265 66.8551938 66.7834195 65.4180883 65.9599035" />
|
||||
<polygon id="Fill-126" fill="#D7D7F2" points="68.2928929 55.1139935 69.7299984 55.9380491 69.7299984 68.426242 68.2928929 67.6021864" />
|
||||
<polygon id="Fill-128" fill="#D7D7F2" points="71.1672118 56.7743549 72.6048569 57.5984105 72.6048569 70.0866034 71.1672118 69.2625478" />
|
||||
<polygon id="Fill-130" fill="#D7D7F2" points="74.0420164 58.4167457 75.4791218 59.2408013 75.4791218 71.7289943 74.0420164 70.9049387" />
|
||||
<polygon id="Fill-132" fill="#D7D7F2" points="76.9163352 60.0326934 78.3534407 60.856749 78.3534407 73.3444023 76.9163352 72.5208863" />
|
||||
<polygon id="Fill-134" fill="#D7D7F2" points="79.7911938 61.6751382 81.2282993 62.4991938 81.2282993 74.9873868 79.7911938 74.1633312" />
|
||||
<polygon id="Fill-136" fill="#D7D7F2" points="82.6654587 63.3356075 84.1025642 64.1596631 84.1025642 76.6478561 82.6654587 75.8238005" />
|
||||
<polygon id="Fill-138" fill="#D7D7F2" points="85.5397776 64.9781603 86.9774227 65.8022159 86.9774227 78.2904088 85.5397776 77.4663532" />
|
||||
<polygon id="Fill-140" fill="#D7D7F2" points="88.4146361 66.6885478 89.8517416 67.5126034 89.8517416 80.0007964 88.4146361 79.1767408" />
|
||||
<polygon id="Fill-142" fill="#D7D7F2" points="91.2889011 68.3313704 92.7260065 69.155426 92.7260065 81.643619 91.2889011 80.8195634" />
|
||||
<polygon id="Fill-144" fill="#D7D7F2" points="94.1637596 69.991462 95.6008651 70.8155176 95.6008651 83.3037105 94.1637596 82.4801946" />
|
||||
<polygon id="Fill-146" fill="#D7D7F2" points="97.0380785 71.6342845 98.4757236 72.4583401 98.4757236 84.9465331 97.0380785 84.1224775" />
|
||||
<polygon id="Fill-148" fill="#D7D7F2" points="99.9128831 73.2502322 101.349989 74.0742878 101.349989 86.5619411 99.9128831 85.7378855" />
|
||||
<polygon id="Fill-150" fill="#D7D7F2" points="102.787202 74.8926231 104.224307 75.7166787 104.224307 88.204332 102.787202 87.380816" />
|
||||
<polygon id="Fill-152" fill="#D7D7F2" points="105.662007 76.5529845 107.099112 77.3770401 107.099112 89.865233 105.662007 89.0411774" />
|
||||
<polygon id="Fill-154" fill="#D7D7F2" points="108.536325 78.1953753 109.973431 79.0194309 109.973431 91.5076239 108.536325 90.6835683" />
|
||||
<polygon id="Fill-156" fill="#DDDDFC" points="113.561877 59.1382666 164.098558 30.1209321 164.098558 46.3861815 113.561877 75.4035159 62.0926705 45.8940147 62.0926705 29.6287653" />
|
||||
<polygon id="Fill-158" fill="#5763AB" points="112.189531 0.226601799 164.098558 30.1208782 113.561877 59.1382126 62.0926705 29.6287114" />
|
||||
<polygon id="Fill-160" fill="#EAEAF9" points="113.561877 75.4036778 113.561877 59.1384285 62.0926705 29.6289272 62.0926705 45.8941766" />
|
||||
<polygon id="Fill-162" fill="#D7D7F2" points="65.4180883 37.2055977 66.8551938 38.0296533 66.8551938 39.9405773 65.4180883 39.1165217" />
|
||||
<polygon id="Fill-164" fill="#D7D7F2" points="68.2928929 38.8481504 69.7299984 39.6722061 69.7299984 41.58313 68.2928929 40.7596141" />
|
||||
<polygon id="Fill-166" fill="#D7D7F2" points="71.1672118 40.50835 72.6048569 41.3324056 72.6048569 43.2433295 71.1672118 42.4192739" />
|
||||
<polygon id="Fill-168" fill="#D7D7F2" points="74.0420164 42.1513344 75.4791218 42.97539 75.4791218 44.886314 74.0420164 44.0622584" />
|
||||
<polygon id="Fill-170" fill="#D7D7F2" points="76.9163352 43.7667424 78.3534407 44.590798 78.3534407 46.501722 76.9163352 45.6782061" />
|
||||
<polygon id="Fill-172" fill="#D7D7F2" points="79.7911938 45.4094031 81.2282993 46.2334587 81.2282993 48.1443827 79.7911938 47.3203271" />
|
||||
<polygon id="Fill-174" fill="#D7D7F2" points="82.6654587 47.0698724 84.1025642 47.893928 84.1025642 49.804852 82.6654587 48.9807964" />
|
||||
<polygon id="Fill-176" fill="#D7D7F2" points="85.5397776 48.7125871 86.9774227 49.5366427 86.9774227 51.4475666 85.5397776 50.623511" />
|
||||
<polygon id="Fill-178" fill="#D7D7F2" points="88.4146361 50.4229747 89.8517416 51.2470303 89.8517416 53.1579542 88.4146361 52.3338986" />
|
||||
<polygon id="Fill-180" fill="#D7D7F2" points="91.2889011 52.0656353 92.7260065 52.8896909 92.7260065 54.8006149 91.2889011 53.9765593" />
|
||||
<polygon id="Fill-182" fill="#D7D7F2" points="94.1637596 53.7258888 95.6008651 54.5499444 95.6008651 56.4608684 94.1637596 55.6368128" />
|
||||
<polygon id="Fill-184" fill="#D7D7F2" points="97.0380785 55.3685495 98.4757236 56.1926051 98.4757236 58.103529 97.0380785 57.2794734" />
|
||||
<polygon id="Fill-186" fill="#D7D7F2" points="99.9128831 56.9842273 101.349989 57.8082829 101.349989 59.7192069 99.9128831 58.8951513" />
|
||||
<polygon id="Fill-188" fill="#D7D7F2" points="102.787202 58.6266721 104.224307 59.4507277 104.224307 61.3616517 102.787202 60.5381357" />
|
||||
<polygon id="Fill-190" fill="#D7D7F2" points="65.4180883 40.9830859 66.8551938 41.8071415 66.8551938 43.7180654 65.4180883 42.8940098" />
|
||||
<polygon id="Fill-192" fill="#D7D7F2" points="68.2928929 42.6254767 69.7299984 43.4495323 69.7299984 45.3609959 68.2928929 44.5369403" />
|
||||
<polygon id="Fill-194" fill="#D7D7F2" points="71.1672118 44.2862159 72.6048569 45.1102715 72.6048569 47.0211954 71.1672118 46.1971398" />
|
||||
<polygon id="Fill-196" fill="#D7D7F2" points="74.0420164 45.9286607 75.4791218 46.7527163 75.4791218 48.6636402 74.0420164 47.8395846" />
|
||||
<polygon id="Fill-198" fill="#D7D7F2" points="76.9163352 47.5441766 78.3534407 48.3682322 78.3534407 50.2796958 76.9163352 49.4556402" />
|
||||
<polygon id="Fill-200" fill="#D7D7F2" points="79.7911938 49.1869992 81.2282993 50.0110548 81.2282993 51.9219787 79.7911938 51.0979231" />
|
||||
<polygon id="Fill-202" fill="#D7D7F2" points="82.6654587 50.8473606 84.1025642 51.6714162 84.1025642 53.5823401 82.6654587 52.7582845" />
|
||||
<polygon id="Fill-204" fill="#D7D7F2" points="85.5397776 52.4897514 86.9774227 53.313807 86.9774227 55.224731 85.5397776 54.4006754" />
|
||||
<polygon id="Fill-206" fill="#D7D7F2" points="88.4146361 54.2003009 89.8517416 55.0243565 89.8517416 56.9352805 88.4146361 56.1112249" />
|
||||
<polygon id="Fill-208" fill="#D7D7F2" points="91.2889011 55.8430155 92.7260065 56.6670711 92.7260065 58.5779951 91.2889011 57.7539395" />
|
||||
<polygon id="Fill-210" fill="#D7D7F2" points="94.1637596 57.5030531 95.6008651 58.3271087 95.6008651 60.2380327 94.1637596 59.4145168" />
|
||||
<polygon id="Fill-212" fill="#D7D7F2" points="97.0380785 59.1458757 98.4757236 59.9699313 98.4757236 61.8808553 97.0380785 61.0573393" />
|
||||
<polygon id="Fill-214" fill="#D7D7F2" points="99.9128831 60.7615536 101.349989 61.5856092 101.349989 63.4965331 99.9128831 62.6724775" />
|
||||
<polygon id="Fill-216" fill="#D7D7F2" points="102.787202 62.4042682 104.224307 63.2283238 104.224307 65.1392478 102.787202 64.3151922" />
|
||||
<path d="M107.399539,66.1606558 C107.540389,66.025202 107.721174,65.9523483 107.919768,65.9275241 C107.60137,65.8865102 107.30402,65.9577449 107.093554,66.1606558 C106.646718,66.5929207 106.765982,67.4407212 107.360684,68.0543107 C107.768664,68.4747032 108.290512,68.6689796 108.723856,68.6144742 C108.365524,68.5680638 107.980749,68.379184 107.666669,68.0543107 C107.071967,67.4407212 106.953243,66.5929207 107.399539,66.1606558" id="Fill-218" fill="#CECEEA" />
|
||||
<path d="M108.977441,66.4877956 C108.662281,66.1629223 108.278585,65.9735029 107.919714,65.9270924 C107.72112,65.9524563 107.540335,66.0253099 107.399485,66.1607637 C106.953189,66.5930286 107.071913,67.4408291 107.666615,68.0544186 C107.980695,68.3787522 108.36547,68.5681717 108.723802,68.6140425 C108.921856,68.5892183 109.10426,68.5169043 109.244571,68.3814505 C109.690867,67.9491856 109.572682,67.1008455 108.977441,66.4877956" id="Fill-220" fill="#D7D7F2" />
|
||||
<path d="M107.399539,61.5730352 C107.540389,61.4375814 107.721174,61.3647277 107.919768,61.3399035 C107.60137,61.2988896 107.30402,61.3701243 107.093554,61.5730352 C106.646718,62.0058397 106.765982,62.8531006 107.360684,63.4666901 C107.768664,63.8870826 108.290512,64.0818986 108.723856,64.0268536 C108.365524,63.9809828 107.980749,63.7915634 107.666669,63.4666901 C107.071967,62.8531006 106.953243,62.0058397 107.399539,61.5730352" id="Fill-222" fill="#2DB48F" />
|
||||
<path d="M108.977441,61.900175 C108.662281,61.5753017 108.278585,61.3858823 107.919714,61.3394718 C107.72112,61.3648357 107.540335,61.4376893 107.399485,61.5731431 C106.953189,62.0059477 107.071913,62.8532085 107.666615,63.4662584 C107.980695,63.7916713 108.36547,63.9810908 108.723802,64.0269616 C108.921856,64.0015977 109.10426,63.9292837 109.244571,63.7938299 C109.690867,63.361565 109.572682,62.5132249 108.977441,61.900175" id="Fill-224" fill="#3BE2B4" />
|
||||
</g>
|
||||
<g id="ipad" transform="translate(223.774775, 105.189189) scale(-1, 1) translate(-223.774775, -105.189189) translate(144.000000, 71.000000)">
|
||||
<path d="M59.0144154,5.98392805 C57.4618234,5.07028945 55.8514881,4.40381357 52.8747424,4.40381357 C49.8985364,4.40381357 46.6951349,6.49228455 46.6951349,6.49228455 L0.441169256,32.8771742 L1.82053148,33.7190384 L47.8991087,7.46096811 C47.8991087,7.46096811 50.6977678,5.65527719 52.8747424,5.65527719 C55.7187326,5.65527719 57.5773099,6.9067408 57.5773099,6.9067408 L80.6568029,21.4990548 L80.6568029,19.8385315 L59.0144154,5.98392805 Z" id="Fill-590" fill="#DDDDFC" />
|
||||
<path d="M158.026612,41.606767 L117.907462,64.5896615 C117.907462,64.5896615 114.739678,66.9355487 111.211403,64.9064399 C109.192008,63.7445593 47.6457939,28.3241995 47.6457939,28.3241995 C47.6457939,28.3241995 45.9129567,27.5255078 45.7785822,26.3674047 L45.7785822,27.779686 C45.7785822,29.3657367 47.6457939,30.257789 47.6457939,30.257789 C47.6457939,30.257789 108.971828,66.0089583 110.979351,67.1902666 C114.503848,69.2614685 117.569097,67.1843303 117.569097,67.1843303 L157.785385,43.7421881 C157.785385,43.7421881 159.213316,42.926767 159.213316,41.9575437 L159.213316,39.7222862 C159.213316,39.7293017 159.211158,39.7352379 159.211158,39.7411742 C159.185794,41.0816811 158.026612,41.606767 158.026612,41.606767" id="Fill-233" fill="#DDDDFC" />
|
||||
<path d="M157.964983,37.8434178 L93.3972314,1.17591169 C89.6072232,-1.02372854 86.3034456,1.38367948 86.3034456,1.38367948 L48.2797825,23.5948651 C48.2797825,23.5948651 45.6262911,25.043843 45.7784742,26.3670809 C45.9128487,27.5257236 47.645686,28.3238757 47.645686,28.3238757 C47.645686,28.3238757 109.1919,63.7447751 111.211295,64.9061161 C114.73957,66.9352249 117.907354,64.5898774 117.907354,64.5898774 L158.026504,41.6069828 C158.026504,41.6069828 159.186226,41.081897 159.21159,39.74139 C159.21159,39.727359 159.213209,39.7138675 159.213209,39.6987572 C159.213209,38.4424366 157.964983,37.8434178 157.964983,37.8434178" id="Fill-235" fill="#5763AB" />
|
||||
<polygon id="Fill-237" fill="#DDDDFC" points="51.8302371 26.5108994 106.459673 57.8660262 145.62417 35.4109158 91.329861 3.76383483" />
|
||||
<path d="M132.593191,51.1076909 C131.000664,51.1076909 129.710345,50.3322044 129.710345,49.374314 C129.710345,48.4164235 131.000664,47.6403974 132.593191,47.6403974 C134.185717,47.6403974 135.477115,48.4164235 135.477115,49.374314 C135.477115,50.3322044 134.185717,51.1076909 132.593191,51.1076909 M132.593191,47.5038643 C130.875464,47.5038643 129.48261,48.3408716 129.48261,49.374314 C129.48261,50.4072167 130.875464,51.2447637 132.593191,51.2447637 C134.311997,51.2447637 135.70485,50.4072167 135.70485,49.374314 C135.70485,48.3408716 134.311997,47.5038643 132.593191,47.5038643" id="Fill-239" fill="#D8D8D8" />
|
||||
</g>
|
||||
<g id="harddisc" transform="translate(369.882883, 31.261261) scale(-1, 1) translate(-369.882883, -31.261261) translate(302.000000, 5.000000)">
|
||||
<path d="M59.0154407,2.02452167 C57.4628487,1.11088307 55.8525135,0.443867539 52.8757678,0.443867539 C49.8995617,0.443867539 46.6961603,2.53233851 46.6961603,2.53233851 L0.442194603,28.9172281 L1.82155683,29.7596321 L47.9001341,3.50102208 C47.9001341,3.50102208 50.6987931,1.69587081 52.8757678,1.69587081 C55.719758,1.69587081 57.5783352,2.94679477 57.5783352,2.94679477 L78.2790221,15.10148 L78.2790221,13.4414963 L59.0154407,2.02452167 Z" id="Fill-605" fill="#DDDDFC" />
|
||||
<path d="M60.1748929,21.4136811 L103.657722,46.3490531 C103.657722,46.3490531 104.651769,47.0041962 105.849267,46.3490531 C107.135269,45.6458806 133.634026,30.355251 133.634026,30.355251 C133.634026,30.355251 134.808859,29.7945478 134.808859,28.7972625 L134.808859,34.015202 C134.808859,35.013027 133.634026,35.5737302 133.634026,35.5737302 C133.634026,35.5737302 107.135269,50.8638201 105.849267,51.5675323 C104.651769,52.2221357 103.657722,51.5675323 103.657722,51.5675323 L60.1748929,26.6316206 C60.1748929,26.6316206 59.3832167,26.202054 59.3832167,25.592242 L59.3832167,20.3743025 C59.3832167,20.9841145 60.1748929,21.4136811 60.1748929,21.4136811" id="Fill-608" fill="#DDDDFC" />
|
||||
<path d="M60.061565,19.2210564 L88.886242,2.52731971 C89.9250809,1.94017334 90.6703467,2.52731971 90.6703467,2.52731971 L133.634026,27.1923238 C133.634026,27.1923238 134.808859,27.8474669 134.808859,28.7961832 C134.808859,29.7934685 133.634026,30.3547114 133.634026,30.3547114 C133.634026,30.3547114 107.135269,45.6448013 105.849267,46.3479738 C104.651769,47.0031169 103.657722,46.3479738 103.657722,46.3479738 L60.1748929,21.4126018 C60.1748929,21.4126018 59.3832167,20.9835748 59.3832167,20.3726836 C59.3832167,19.5826263 60.061565,19.2210564 60.061565,19.2210564" id="Fill-610" fill="#5763AB" />
|
||||
</g>
|
||||
<g id="browser-(gallery)" transform="translate(116.000000, 144.000000)">
|
||||
<path d="M114.397859,98.816085 C114.279675,102.274204 111.700656,103.229936 111.700656,103.229936 L8.11951104,163.78642 C8.11951104,163.78642 6.7714489,164.546796 5.18593786,164.750247 C4.25556991,164.869511 3.24479313,164.797737 2.377565,164.267794 C0.27506296,162.65584 0.29718888,159.006682 0.29718888,159.006682 L0.29718888,67.3632805 C0.487147997,63.411915 3.80927392,61.9435094 3.80927392,61.9435094 L110.627279,0.774515127 C110.627279,0.774515127 112.687688,-0.386286182 113.587835,0.635823385 C114.544646,1.72215209 114.435635,2.38431071 114.435635,4.81762224 L114.397859,98.816085 Z" id="Fill-230" fill="url(#linearGradient-1)" />
|
||||
<polygon id="Fill-250" fill="#FFFFFF" points="85.6014603 23.3502927 85.6014603 112.740628 29.1355732 145.007235 29.1355732 55.6168994" />
|
||||
<polygon id="Fill-252" fill="#DDDDFC" points="85.6014603 29.9352363 29.1355732 62.2013034 29.1355732 75.2021701 85.6014603 42.9355634" />
|
||||
<polygon id="Fill-254" fill="#DDDDFC" points="79.1050204 51.8274309 79.1050204 60.5617727 67.7382339 67.0225413 67.7382339 58.4080033" />
|
||||
<polygon id="Fill-256" fill="#DDDDFC" points="78.8035683 62.4755029 78.8035683 63.5958299 67.5992183 69.9643173 67.5992183 68.962175" />
|
||||
<polygon id="Fill-258" fill="#DDDDFC" points="76.5959411 66.3955683 76.5959411 67.5158953 67.6840523 72.6356173 67.6840523 71.6334751" />
|
||||
<polygon id="Fill-260" fill="#DDDDFC" points="63.7210842 60.6638217 63.7210842 69.3981635 52.3542976 75.8589321 52.3542976 67.2443941" />
|
||||
<polygon id="Fill-262" fill="#DDDDFC" points="63.6404595 71.1855061 63.6404595 72.3058332 52.4361096 78.6743205 52.4361096 77.6716386" />
|
||||
<polygon id="Fill-264" fill="#DDDDFC" points="61.3490237 74.966556 61.3490237 76.0868831 52.4360556 81.2066051 52.4360556 80.2039231" />
|
||||
<polygon id="Fill-266" fill="#DDDDFC" points="48.3899264 69.4999967 48.3899264 78.2343385 37.0236795 84.6951071 37.0236795 76.0800294" />
|
||||
<polygon id="Fill-268" fill="#DDDDFC" points="63.6404595 117.846427 63.6404595 121.928389 53.7582682 127.544595 53.7582682 123.580278" />
|
||||
<polygon id="Fill-270" fill="#DDDDFC" points="48.5285102 79.8954015 48.5285102 81.0157285 37.3246999 87.3842159 37.3246999 86.3815339" />
|
||||
<polygon id="Fill-272" fill="#DDDDFC" points="46.2370744 83.7031643 46.2370744 84.8234914 37.324646 89.9432134 37.324646 88.9410711" />
|
||||
<polygon id="Fill-274" fill="#DDDDFC" points="79.1050204 70.7860523 79.1050204 79.5203941 67.7382339 85.9811627 67.7382339 77.3666247" />
|
||||
<polygon id="Fill-276" fill="#DDDDFC" points="78.8035683 81.1630008 78.8035683 82.2833279 67.5992183 88.6518152 67.5992183 87.6496729" />
|
||||
<polygon id="Fill-278" fill="#DDDDFC" points="76.5959411 85.0830123 76.5959411 86.2033393 67.6840523 91.3230613 67.6840523 90.3209191" />
|
||||
<polygon id="Fill-280" fill="#DDDDFC" points="63.7210842 79.6223892 63.7210842 88.356731 52.3542976 94.8174996 52.3542976 86.2029616" />
|
||||
<polygon id="Fill-282" fill="#DDDDFC" points="63.6404595 89.873112 63.6404595 90.9934391 52.4361096 97.3619264 52.4361096 96.3592445" />
|
||||
<polygon id="Fill-284" fill="#DDDDFC" points="61.3490237 93.6538921 61.3490237 94.7742191 52.4360556 99.8939411 52.4360556 98.8917989" />
|
||||
<polygon id="Fill-286" fill="#DDDDFC" points="48.3899264 88.4587261 48.3899264 97.1930679 37.0236795 103.653836 37.0236795 95.0392984" />
|
||||
<polygon id="Fill-288" fill="#DDDDFC" points="48.5285102 98.5829534 48.5285102 99.7032805 37.3246999 106.071768 37.3246999 105.069086" />
|
||||
<polygon id="Fill-290" fill="#DDDDFC" points="46.2370744 102.39077 46.2370744 103.511097 37.324646 108.630819 37.324646 107.628137" />
|
||||
<polygon id="Fill-292" fill="#DDDDFC" points="78.8035683 89.9437531 78.8035683 98.5534342 67.5992183 104.921382 67.5992183 96.4304252" />
|
||||
<polygon id="Fill-294" fill="#DDDDFC" points="78.8035683 99.8505527 78.8035683 100.97034 67.5992183 107.339367 67.5992183 106.336685" />
|
||||
<polygon id="Fill-296" fill="#DDDDFC" points="76.5959411 103.770564 76.5959411 104.890891 67.6840523 110.010613 67.6840523 109.008471" />
|
||||
<polygon id="Fill-298" fill="#DDDDFC" points="63.6404595 98.6537024 63.6404595 107.262844 52.4361096 113.631331 52.4361096 105.139835" />
|
||||
<polygon id="Fill-300" fill="#DDDDFC" points="63.6404595 108.560556 63.6404595 109.680883 52.4361096 116.04937 52.4361096 115.046688" />
|
||||
<polygon id="Fill-302" fill="#DDDDFC" points="61.3490237 112.341444 61.3490237 113.461771 52.4360556 118.581493 52.4360556 117.578811" />
|
||||
<polygon id="Fill-304" fill="#DDDDFC" points="48.5285102 107.363598 48.5285102 115.972739 37.3246999 122.341226 37.3246999 113.84973" />
|
||||
<polygon id="Fill-306" fill="#DDDDFC" points="48.5285102 117.270289 48.5285102 118.390617 37.3246999 124.759104 37.3246999 123.756422" />
|
||||
<polygon id="Fill-308" fill="#DDDDFC" points="46.2370744 121.078214 46.2370744 122.198541 37.324646 127.318263 37.324646 126.315581" />
|
||||
<polygon id="Fill-310" fill="#CECEEF" points="63.6404595 117.846427 62.9302715 117.487016 53.1678839 123.220327 53.7582682 123.580278" />
|
||||
<polygon id="Fill-312" fill="#E4E4F4" points="53.7579984 123.580548 53.1676141 123.220597 53.1676141 127.184374 53.7579984 127.544325" />
|
||||
<path d="M33.7611856,56.1263892 C34.1405642,56.5861766 34.0331725,57.3012216 33.5204988,57.724852 C33.007825,58.1474031 32.2852249,58.1182617 31.9058463,57.6590139 C31.5253884,57.1997661 31.6338594,56.4836419 32.1470728,56.0605511 C32.6592069,55.6374603 33.381807,55.6671415 33.7611856,56.1263892" id="Fill-314" fill="#E8F0F4" />
|
||||
</g>
|
||||
<g id="browser-(contact)" transform="translate(380.000000, 0.000000)">
|
||||
<path d="M114.435635,4.70105642 L114.397859,98.6989796 C114.279675,102.157639 111.700656,103.11337 111.700656,103.11337 L8.11951104,163.669854 C8.11951104,163.669854 6.7714489,164.429691 5.18593786,164.633141 C4.25556991,164.752945 3.24479313,164.681711 2.377565,164.151228 C2.29014064,164.097802 2.20649387,164.044376 2.12824366,163.983395 C0.27506296,162.538734 0.29718888,158.890116 0.29718888,158.890116 L0.29718888,67.2467146 C0.487147997,63.2953491 3.80927392,61.8269436 3.80927392,61.8269436 L110.627279,0.657949305 C110.627279,0.657949305 112.687688,-0.502312347 113.587835,0.519257563 C114.544646,1.60558626 114.435635,2.26774489 114.435635,4.70105642" id="Fill-384" fill="url(#linearGradient-2)" />
|
||||
<polygon id="Fill-386" fill="#FFFFFF" points="85.6014603 23.233565 85.6014603 112.6239 29.1355732 144.890507 29.1355732 55.5001717" />
|
||||
<polygon id="Fill-388" fill="#DDDDFC" points="85.6014603 29.8185086 29.1355732 62.0851153 29.1355732 75.0854424 85.6014603 42.8193753" />
|
||||
<polygon id="Fill-390" fill="#DDDDFC" points="77.6831333 93.3142322 37.3249158 116.424486 37.3249158 129.425352 77.6831333 106.314559" />
|
||||
<path d="M52.5743696,72.9039886 L52.5743696,75.5229419 L68.1526361,66.5506116 L68.1526361,63.8167114 L52.5743696,72.9039886 Z M52.2980654,76.000538 L52.2980654,72.7453295 L68.4289403,63.3353377 L68.4289403,66.71035 L68.3598643,66.7502845 L52.2980654,76.000538 Z" id="Fill-392" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,77.1974963 L52.5743696,79.8164497 L68.1526361,70.844659 L68.1526361,68.1096795 L52.5743696,77.1974963 Z M52.2980654,80.2940458 L52.2980654,77.0393769 L68.4289403,67.6288455 L68.4289403,71.0038577 L68.3598643,71.0437923 L52.2980654,80.2940458 Z" id="Fill-394" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,81.3330466 L52.5743696,83.952 L68.1526361,74.9802093 L68.1526361,72.2457694 L52.5743696,81.3330466 Z M52.2980654,84.4295961 L52.2980654,81.1749272 L68.4289403,71.7643957 L68.4289403,75.1399477 L68.3598643,75.1793426 L52.2980654,84.4295961 Z" id="Fill-396" fill="#DDDDFC" />
|
||||
<path d="M52.5743696,85.5956321 L52.5743696,94.1567441 L77.5448193,80.1785593 L77.5448193,71.5003418 L52.5743696,85.5956321 Z M52.2980654,94.6278643 L52.2980654,85.4342747 L77.8211235,71.0276026 L77.8211235,80.3399166 L77.7493491,80.3798512 L52.2980654,94.6278643 Z" id="Fill-398" fill="#DDDDFC" />
|
||||
<polygon id="Fill-400" fill="#DDDDFC" points="48.5285102 74.8704971 48.5285102 75.9908242 37.3246999 82.3593115 37.3246999 81.3566296" />
|
||||
<polygon id="Fill-402" fill="#DDDDFC" points="46.2370744 78.6511153 46.2370744 79.7714424 37.324646 84.891704 37.324646 83.8890221" />
|
||||
<polygon id="Fill-404" fill="#DDDDFC" points="77.6831333 83.9463876 77.6831333 88.0278103 67.7998626 93.6440164 67.7998626 89.6802388" />
|
||||
<polygon id="Fill-406" fill="#DDDDFC" points="48.5285102 79.7785119 48.5285102 80.8988389 37.3246999 87.2678659 37.3246999 86.265184" />
|
||||
<polygon id="Fill-408" fill="#DDDDFC" points="46.2370744 83.5864366 46.2370744 84.7067637 37.324646 89.8270253 37.324646 88.8243434" />
|
||||
<polygon id="Fill-410" fill="#CECEEF" points="77.6831333 83.9463876 76.9729452 83.5864366 67.210018 89.3202878 67.7998626 89.6802388" />
|
||||
<polygon id="Fill-412" fill="#E4E4F4" points="67.7996468 89.6803467 67.2098021 89.3198561 67.2098021 93.2836337 67.7996468 93.6441243" />
|
||||
<path d="M33.7611856,56.0096615 C34.1405642,56.4694489 34.0331725,57.1850335 33.5204988,57.6081243 C33.007825,58.0306754 32.2852249,58.0020736 31.9058463,57.5422862 C31.5253884,57.0830384 31.6338594,56.3674538 32.1470728,55.944363 C32.6592069,55.5207326 33.381807,55.5504137 33.7611856,56.0096615" id="Fill-414" fill="#E8F0F4" />
|
||||
</g>
|
||||
<g id="browser-(list)" transform="translate(249.000000, 71.000000)">
|
||||
<path d="M114.397859,98.6793361 C114.279675,102.137455 111.700656,103.093727 111.700656,103.093727 L8.11951104,163.649671 C8.11951104,163.649671 6.7714489,164.409508 5.18593786,164.613498 C4.25556991,164.732762 3.24479313,164.660988 2.377565,164.131045 C0.27506296,162.519091 0.29718888,158.869933 0.29718888,158.869933 L0.29718888,67.2265315 C0.487147997,63.2757056 3.80927392,61.8067604 3.80927392,61.8067604 L110.627279,0.637766149 C110.627279,0.637766149 112.687688,-0.522495503 113.587835,0.499614064 C114.544646,1.58594276 114.435635,2.24810139 114.435635,4.68087326 L114.397859,98.6793361 Z" id="Fill-444" fill="url(#linearGradient-3)" />
|
||||
<polygon id="Fill-446" fill="#FFFFFF" points="85.6014603 23.2136517 85.6014603 112.604527 29.1355732 144.870594 29.1355732 55.4797187" />
|
||||
<polygon id="Fill-448" fill="#DDDDFC" points="85.6014603 29.7986492 29.1355732 62.0647163 29.1355732 75.0661226 85.6014603 42.7989763" />
|
||||
<polygon id="Fill-450" fill="#DDDDFC" points="48.5285102 69.8523385 48.5285102 78.46148 37.3246999 84.8299673 37.3246999 76.338471" />
|
||||
<polygon id="Fill-452" fill="#DDDDFC" points="64.9448095 60.6507621 64.9448095 61.7710891 50.1857416 70.1514162 50.1857416 69.1492739" />
|
||||
<polygon id="Fill-454" fill="#DDDDFC" points="63.773269 63.776453 63.773269 64.89678 50.1857956 72.7110074 50.1857956 71.7077858" />
|
||||
<polygon id="Fill-456" fill="#DDDDFC" points="58.8051905 69.0309812 58.8051905 70.1518479 50.1857956 75.0659608 50.1857956 74.0632788" />
|
||||
<polygon id="Fill-458" fill="#DDDDFC" points="70.50052 57.4486558 70.50052 60.9245838 67.6171349 62.5818692 67.6171349 59.222507" />
|
||||
<polygon id="Fill-460" fill="#DDDDFC" points="77.3305756 53.5980442 77.3305756 54.3810859 71.3080082 57.7922551 71.3080082 57.0912412" />
|
||||
<polygon id="Fill-462" fill="#DDDDFC" points="75.4728618 55.9732886 75.4728618 56.7563303 71.3077923 59.110852 71.3077923 58.4103778" />
|
||||
<polygon id="Fill-464" fill="#DDDDFC" points="70.50052 62.4668144 70.50052 65.9427424 67.6171349 67.5994881 67.6171349 64.2406656" />
|
||||
<polygon id="Fill-466" fill="#DDDDFC" points="77.3305756 58.6165266 77.3305756 59.3990286 71.3080082 62.8101979 71.3080082 62.1097236" />
|
||||
<polygon id="Fill-468" fill="#DDDDFC" points="75.4728618 60.9912314 75.4728618 61.7742731 71.3077923 64.1287948 71.3077923 63.4288602" />
|
||||
<polygon id="Fill-470" fill="#DDDDFC" points="70.50052 67.3600965 70.50052 70.8360245 67.6171349 72.4933099 67.6171349 69.1344873" />
|
||||
<polygon id="Fill-472" fill="#DDDDFC" points="77.3305756 63.5095388 77.3305756 64.2925805 71.3080082 67.7037498 71.3080082 67.0027359" />
|
||||
<polygon id="Fill-474" fill="#DDDDFC" points="75.4728618 65.8847294 75.4728618 66.6672314 71.3077923 69.0222927 71.3077923 68.3223581" />
|
||||
<polygon id="Fill-476" fill="#DDDDFC" points="70.50052 72.0694636 70.50052 75.5453917 67.6171349 77.202677 67.6171349 73.8438545" />
|
||||
<polygon id="Fill-478" fill="#DDDDFC" points="77.3305756 68.218852 77.3305756 69.0018937 71.3080082 72.413063 71.3080082 71.7120491" />
|
||||
<polygon id="Fill-480" fill="#DDDDFC" points="75.4728618 70.5940965 75.4728618 71.3771382 71.3077923 73.7316599 71.3077923 73.0317253" />
|
||||
<polygon id="Fill-482" fill="#DDDDFC" points="48.5285102 81.1535029 48.5285102 89.763184 37.3246999 96.1316713 37.3246999 87.640175" />
|
||||
<polygon id="Fill-484" fill="#DDDDFC" points="64.9448095 71.9521962 64.9448095 73.0725233 50.1857416 81.45339 50.1857416 80.4507081" />
|
||||
<polygon id="Fill-486" fill="#DDDDFC" points="63.773269 75.078157 63.773269 76.1984841 50.1857956 84.0127114 50.1857956 83.0094898" />
|
||||
<polygon id="Fill-488" fill="#DDDDFC" points="58.8051905 80.3326852 58.8051905 81.4535519 50.1857956 86.3671251 50.1857956 85.3644432" />
|
||||
<polygon id="Fill-490" fill="#DDDDFC" points="48.5285102 92.5516435 48.5285102 101.160245 37.3246999 107.529272 37.3246999 99.037776" />
|
||||
<polygon id="Fill-492" fill="#DDDDFC" points="64.9448095 83.350067 64.9448095 84.4703941 50.1857416 92.8507212 50.1857416 91.8480392" />
|
||||
<polygon id="Fill-494" fill="#DDDDFC" points="63.773269 86.4754881 63.773269 87.5958152 50.1857956 95.4095029 50.1857956 94.4073606" />
|
||||
<polygon id="Fill-496" fill="#DDDDFC" points="58.8051905 91.7302862 58.8051905 92.8511529 50.1857956 97.7647261 50.1857956 96.7625838" />
|
||||
<polygon id="Fill-498" fill="#DDDDFC" points="48.5285102 103.65756 48.5285102 112.266702 37.3246999 118.635189 37.3246999 110.143693" />
|
||||
<polygon id="Fill-500" fill="#DDDDFC" points="64.9448095 94.4562535 64.9448095 95.5765805 50.1857416 103.956908 50.1857416 102.954226" />
|
||||
<polygon id="Fill-502" fill="#DDDDFC" points="63.773269 97.5819444 63.773269 98.7022715 50.1857956 106.516499 50.1857956 105.513277" />
|
||||
<polygon id="Fill-504" fill="#DDDDFC" points="58.8051905 102.836742 58.8051905 103.95707 50.1857956 108.871182 50.1857956 107.8685" />
|
||||
<polygon id="Fill-506" fill="#DDDDFC" points="48.5285102 114.821975 48.5285102 123.430577 37.3246999 129.799065 37.3246999 121.308108" />
|
||||
<polygon id="Fill-508" fill="#DDDDFC" points="64.9448095 105.620399 64.9448095 106.740726 50.1857416 115.121053 50.1857416 114.118371" />
|
||||
<polygon id="Fill-510" fill="#DDDDFC" points="63.773269 108.74582 63.773269 109.866147 50.1857956 117.679835 50.1857956 116.677693" />
|
||||
<polygon id="Fill-512" fill="#DDDDFC" points="58.8051905 114.000888 58.8051905 115.121215 50.1857956 120.035328 50.1857956 119.032646" />
|
||||
<path d="M33.7611856,55.9899101 C34.1405642,56.4496975 34.0331725,57.1647424 33.5204988,57.5878332 C33.007825,58.0114636 32.2852249,57.9817825 31.9058463,57.5225348 C31.5253884,57.0627473 31.6338594,56.3471627 32.1470728,55.924072 C32.6592069,55.5009812 33.381807,55.5301226 33.7611856,55.9899101" id="Fill-514" fill="#E8F0F4" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-2" transform="translate(125.000000, 201.000000)">
|
||||
<g id="Group" transform="translate(174.000000, 204.894930) scale(-1, 1) translate(-174.000000, -204.894930) translate(0.000000, 0.394930)">
|
||||
<g id="surface" transform="translate(0.000000, 91.000000)">
|
||||
<path d="M0.530524572,87.7085749 C0.137728901,89.0826659 0.00321963665,101.905965 0,118.704862 L0,120.032804 C0.0067970107,154.614392 0.541614432,204.821838 0.531240047,207.702385 C0.468636001,224.797136 10.2638439,242.741884 34.8353953,260.290611 C70.8402342,286.005538 98.5491427,279.893141 124.466502,273.780028 C146.003367,268.700792 166.303534,263.621199 189.099635,276.80403 C239.328471,305.851691 272.898191,337.223966 325.728493,300.951684 C339.777557,291.305859 346.405358,279.893498 347.173062,267.560665 C347.373395,264.348848 347.818063,226.839849 347.822356,193.044938 L347.822356,192.080463 C347.819136,165.351692 347.535092,141.181857 346.628944,138.49628 C336.573661,108.691277 297.521614,113.851363 252.420944,88.7499649 C203.883133,61.7357152 159.98303,46.1148657 121.029004,46.1170121 C99.5508075,46.1180854 79.5711734,50.8685551 61.1587868,61.077468 C33.5568418,76.3809995 7.31286804,64.0023751 0.530524572,87.7085749 Z" id="Fill-1" fill="url(#linearGradient-4)" />
|
||||
<path d="M325.728314,181.573013 C272.89837,217.845295 239.328292,186.473019 189.099456,157.425001 C138.87062,128.377697 100.759781,187.995216 34.8352165,140.91194 C-31.0897058,93.8283061 9.3528656,43.8956068 61.158608,15.1717032 C112.964708,-13.5522004 177.120619,0.934961417 252.421123,42.8445577 C326.447367,84.0443919 378.558617,145.300731 325.728314,181.573013 Z" id="Fill-4" fill="#E6E9FF" />
|
||||
</g>
|
||||
<g id="laptop" transform="translate(24.724448, 0.000000)">
|
||||
<path d="M0.139619115,152.710224 C0.239347054,154.348663 2.33399122,155.491668 2.33399122,155.491668 L99.241667,211.615266 C99.241667,211.615266 102.012245,213.444146 105.349378,211.615266 C108.933507,209.65143 182.800097,164.444911 182.800097,164.444911 C182.800097,164.444911 185.846625,162.98689 186.061451,160.382643 C186.067527,160.493972 186.074319,160.604943 186.074319,160.724148 L186.074319,164.840112 C186.074319,167.625494 182.800097,169.190906 182.800097,169.190906 C182.800097,169.190906 108.933507,211.873722 105.349378,213.837557 C102.012245,215.666437 99.241667,213.837557 99.241667,213.837557 L2.33399122,157.714318 C2.33399122,157.714318 0.130325472,156.515827 0.130325472,154.813311 L0.130325472,153.228568 C0.132112711,153.188475 0.133542502,152.745306 0.136044636,152.431364 C0.137474428,152.580638 0.138904219,152.696979 0.139619115,152.710224" id="Fill-7" fill="#DDDDFC" />
|
||||
<path d="M2.01936566,149.374854 L82.3661269,100.249613 C85.262884,98.6101006 87.3407281,100.249613 87.3407281,100.249613 L182.800025,155.616457 C182.800025,155.616457 186.074247,157.444979 186.074247,160.093616 C186.074247,160.1917 186.069243,160.287637 186.061379,160.382499 C185.846553,162.986747 182.800025,164.444768 182.800025,164.444768 C182.800025,164.444768 108.933435,209.651287 105.349306,211.615481 C102.012173,213.444003 99.2415955,211.615481 99.2415955,211.615481 L2.33391973,155.491883 C2.33391973,155.491883 0.239633012,154.34852 0.139547625,152.710081 C0.138832729,152.696836 0.137402938,152.580495 0.135973147,152.431221 C0.133471012,152.133746 0.130253982,151.702389 0.130253982,151.675542 C0.130253982,150.362142 2.01936566,149.374854 2.01936566,149.374854" id="Fill-9" fill="#F6F6FF" />
|
||||
<path d="M189.7615,155.957068 C189.844786,155.905878 189.924139,155.851824 190.00099,155.795623 C192.108145,154.254552 191.761778,150.89033 191.761778,150.89033 C191.761778,150.89033 191.764995,66.7196103 191.569471,62.6329997 C191.387888,58.8273972 188.384611,57.413049 188.384611,57.413049 L90.034991,1.34028371 C90.034991,1.34028371 87.9689426,0.146804399 86.521279,0.915370711 C86.5094832,0.921814211 86.4093978,0.981237596 86.2814315,1.05784365 C86.2117292,1.10008437 86.1334481,1.14662075 86.0555245,1.19315714 C86.0555245,1.19315714 86.0562394,1.19315714 86.0562394,1.19279917 C86.4555086,0.927541766 87.2479704,0.529118708 87.5031881,0.376264579 C87.630797,0.299658528 87.7312398,0.240235143 87.7426782,0.234149616 C89.1903418,-0.534774669 91.7989959,0.835184939 91.7989959,0.835184939 L190.148974,56.9083082 C190.148974,56.9083082 193.151535,58.3222984 193.333476,62.1282589 C193.529,66.2148695 193.525783,150.385231 193.525783,150.385231 C193.525783,150.385231 193.87215,153.749453 191.764995,155.290524 C191.688501,155.346725 191.609505,155.400779 191.525863,155.451969 C189.269295,156.833026 187.060982,156.421716 187.060982,156.421716 L187.060625,156.421716 C187.954601,156.536625 188.927217,156.467894 189.7615,155.957068" id="Fill-11" fill="#DDDDFC" />
|
||||
<path d="M85.6342365,1.44738899 C85.651394,1.4370078 85.850135,1.31708711 86.0556675,1.19322873 C86.1332337,1.14669235 86.2115147,1.09979799 86.2815745,1.05791524 C86.4095408,0.981309191 86.5092688,0.921885805 86.5210645,0.915442306 C87.9687282,0.146875993 90.035134,1.34035531 90.035134,1.34035531 L188.384754,57.4131206 C188.384754,57.4131206 191.387673,58.8274688 191.569257,62.6330713 C191.765138,66.7196819 191.761564,150.890401 191.761564,150.890401 C191.761564,150.890401 192.108288,154.254266 190.001133,155.795336 C189.924282,155.851538 189.844928,155.90595 189.761643,155.95714 C188.92736,156.467966 187.954744,156.536697 187.060767,156.421788 C185.536253,156.225619 184.239432,155.493566 184.239432,155.493566 L87.2899348,99.03777 C87.2899348,99.03777 84.8088895,98.1167076 84.6962935,94.7864922 L84.6591189,4.26105048 C84.6591189,4.26105048 84.5154249,2.13183184 85.6342365,1.44738899" id="Fill-13" fill="#F6F6FF" />
|
||||
<path d="M159.165862,158.0182 L159.150134,157.896132 C159.151922,157.936941 159.157283,157.977392 159.165862,158.0182" id="Fill-15" fill="#DDDDFC" />
|
||||
<path d="M159.149098,157.889474 L159.15017,157.896275 C159.149813,157.893769 159.15017,157.891621 159.149813,157.889474 L159.149098,157.889474 Z" id="Fill-17" fill="#DDDDFC" />
|
||||
<path d="M172.167311,158.781075 L167.2138,161.626954 C166.31875,162.14136 165.738612,162.092318 164.997266,161.688525 L159.665574,158.643256 C159.364603,158.456752 159.213045,158.239463 159.165862,158.018236 L159.222696,158.456752 C159.259871,158.681201 159.451105,158.868062 159.687021,159.013399 L165.018713,162.059026 C165.759702,162.462819 166.340197,162.512219 167.234889,161.998171 L172.188758,159.151576 C172.494019,158.97617 172.786053,158.852669 172.816079,158.500783 L172.856113,157.855717 L172.853611,157.855717 C172.838241,158.209393 172.591244,158.537296 172.167311,158.781075" id="Fill-19" fill="#DDDDFC" />
|
||||
<path d="M149.387341,152.363099 L149.371256,152.24103 C149.373401,152.281481 149.37912,152.32229 149.387341,152.363099" id="Fill-21" fill="#DDDDFC" />
|
||||
<polygon id="Fill-23" fill="#DDDDFC" points="149.370613 152.234336 149.371327 152.24078 149.371327 152.234336" />
|
||||
<path d="M162.388469,153.125973 L157.435314,155.97221 C156.540622,156.486258 155.960127,156.436858 155.21878,156.033066 L149.887089,152.987438 C149.58576,152.802008 149.434917,152.584361 149.387377,152.363135 L149.444211,152.80165 C149.481743,153.026099 149.672263,153.212603 149.908536,153.358297 L155.240585,156.404283 C155.981217,156.807717 156.561354,156.857118 157.456404,156.342711 L162.410273,153.496475 C162.715176,153.32071 163.007926,153.197568 163.037236,152.845323 L163.077271,152.200257 L163.075126,152.200615 C163.059756,152.554292 162.812759,152.882194 162.388469,153.125973" id="Fill-25" fill="#DDDDFC" />
|
||||
<path d="M152.716789,147.388789 L147.763277,150.235026 C146.868585,150.749074 146.28809,150.700031 145.546386,150.296239 L140.215052,147.250253 C139.913723,147.065182 139.762523,146.846819 139.71534,146.625234 L139.771816,147.064824 C139.809348,147.288914 140.000583,147.475418 140.236141,147.620755 L145.567833,150.66674 C146.309179,151.070533 146.889317,151.119575 147.784366,150.605527 L152.737878,147.75929 C153.043139,147.583883 153.335173,147.460383 153.365199,147.108496 L153.405233,146.46343 L153.403089,146.46343 C153.387718,146.816749 153.140722,147.14501 152.716789,147.388789" id="Fill-27" fill="#DDDDFC" />
|
||||
<path d="M130.28029,140.68039 L130.264562,140.558321 C130.26635,140.59913 130.271711,140.639581 130.28029,140.68039" id="Fill-29" fill="#DDDDFC" />
|
||||
<polygon id="Fill-31" fill="#DDDDFC" points="130.263562 140.551734 130.264634 140.558178 130.264634 140.551734" />
|
||||
<path d="M143.281775,141.443085 L138.328263,144.289322 C137.433214,144.80337 136.853076,144.754328 136.112087,144.350893 L130.780038,141.305266 C130.479067,141.118762 130.327509,140.901473 130.280326,140.680246 L130.336803,141.118762 C130.374335,141.343569 130.565569,141.530072 130.801485,141.675409 L136.133176,144.721037 C136.874166,145.124829 137.454661,145.174229 138.34971,144.660181 L143.303222,141.813944 C143.608125,141.63818 143.900517,141.51468 143.930543,141.162793 L143.970577,140.517727 L143.967717,140.517727 C143.952705,140.871404 143.705708,141.199664 143.281775,141.443085" id="Fill-33" fill="#DDDDFC" />
|
||||
<path d="M120.501805,135.025109 L120.48572,134.90304 C120.487864,134.943491 120.493226,134.9843 120.501805,135.025109" id="Fill-35" fill="#DDDDFC" />
|
||||
<polygon id="Fill-37" fill="#DDDDFC" points="120.485041 134.896311 120.485755 134.903112 120.485755 134.896311" />
|
||||
<path d="M133.503254,135.788091 L128.5501,138.634328 C127.65505,139.148376 127.074913,139.099334 126.333566,138.695541 L121.001517,135.649556 C120.700188,135.464484 120.549345,135.246479 120.501805,135.025252 L120.558639,135.464126 C120.596171,135.688217 120.786691,135.875078 121.023321,136.020415 L126.355013,139.0664 C127.096002,139.469835 127.675782,139.519235 128.570832,139.004829 L133.524343,136.158592 C133.829604,135.982828 134.122354,135.860043 134.151664,135.507441 L134.191699,134.862375 L134.189554,134.862733 C134.174541,135.216409 133.927545,135.544312 133.503254,135.788091" id="Fill-39" fill="#DDDDFC" />
|
||||
<path d="M123.830895,130.050835 L118.877383,132.897072 C117.983049,133.411478 117.402554,133.362078 116.661207,132.958285 L111.329158,129.912299 C111.028187,129.727228 110.876629,129.508865 110.829803,129.28728 L110.88628,129.72687 C110.923812,129.951318 111.115047,130.137464 111.350605,130.282801 L116.682296,133.328428 C117.423643,133.732579 118.003781,133.781979 118.89883,133.267931 L123.852342,130.421336 C124.15796,130.246288 124.449637,130.122071 124.479663,129.770542 L124.519697,129.125477 L124.517195,129.125477 C124.502182,129.478795 124.255186,129.806698 123.830895,130.050835" id="Fill-41" fill="#DDDDFC" />
|
||||
<path d="M101.165058,123.505957 L101.165773,123.512401 C101.165415,123.509895 101.16613,123.508105 101.165415,123.505957 L101.165058,123.505957 Z" id="Fill-43" fill="#DDDDFC" />
|
||||
<path d="M114.18295,124.39738 L109.229795,127.243259 C108.334746,127.757665 107.754608,127.708265 107.012904,127.30483 L101.681213,124.259203 C101.380599,124.073415 101.229041,123.85541 101.181858,123.634183 L101.238692,124.073415 C101.275152,124.297506 101.466744,124.484009 101.703017,124.629704 L107.034351,127.674973 C107.77534,128.079124 108.356193,128.128524 109.250527,127.614118 L114.204039,124.767881 C114.509657,124.592117 114.801334,124.468616 114.83136,124.11673 L114.872109,123.471664 L114.869607,123.471664 C114.854237,123.825698 114.606883,124.153243 114.18295,124.39738" id="Fill-45" fill="#DDDDFC" />
|
||||
<path d="M91.4033012,117.979404 L91.387216,117.856977 C91.3893607,117.897428 91.3950799,117.938237 91.4033012,117.979404" id="Fill-47" fill="#DDDDFC" />
|
||||
<polygon id="Fill-49" fill="#DDDDFC" points="91.3865726 117.85039 91.3872875 117.857192 91.3872875 117.85039" />
|
||||
<path d="M104.404429,118.742207 L99.4512744,121.588444 C98.5565825,122.10285 97.9757298,122.053091 97.2347405,121.649299 L91.9026915,118.603313 C91.6020779,118.418242 91.45052,118.200237 91.4033369,117.979368 L91.4601711,118.417884 C91.4973457,118.64269 91.6882228,118.828836 91.9244958,118.974531 L97.2565448,122.020158 C97.9971767,122.423593 98.5773145,122.473351 99.4723638,121.958945 L104.425876,119.11235 C104.731136,118.937301 105.023171,118.813801 105.053196,118.461914 L105.093231,117.81649 L105.091086,117.816848 C105.075716,118.170167 104.828719,118.49807 104.404429,118.742207" id="Fill-51" fill="#DDDDFC" />
|
||||
<path d="M94.7327488,113.004843 L89.7788796,115.85108 C88.8845452,116.365486 88.30405,116.316086 87.5623457,115.912293 L82.2302968,112.866666 C81.9293257,112.681236 81.7784827,112.462873 81.7312996,112.241646 L81.7877764,112.681236 C81.8249509,112.904969 82.016543,113.091472 82.2517436,113.236809 L87.5837926,116.282794 C88.3244245,116.686945 88.9052772,116.735629 89.8003265,116.221581 L94.7531233,113.375344 C95.0587412,113.199938 95.3511335,113.076437 95.3808017,112.724551 L95.4204784,112.079485 L95.4190486,112.079485 C95.4036784,112.432803 95.1566819,112.761064 94.7327488,113.004843" id="Fill-53" fill="#DDDDFC" />
|
||||
<path d="M149.546191,163.755349 L149.530106,163.633281 C149.532608,163.674447 149.537612,163.71454 149.546191,163.755349" id="Fill-55" fill="#DDDDFC" />
|
||||
<path d="M149.529784,163.626801 L149.530141,163.633603 C149.530141,163.630739 149.530856,163.628949 149.530141,163.626801 L149.529784,163.626801 Z" id="Fill-57" fill="#DDDDFC" />
|
||||
<path d="M139.76767,158.100355 L139.751585,157.978286 C139.754087,158.018737 139.759449,158.059546 139.76767,158.100355" id="Fill-59" fill="#DDDDFC" />
|
||||
<path d="M139.750906,157.971521 L139.75162,157.978322 C139.752335,157.976174 139.75162,157.973669 139.75162,157.971521 L139.750906,157.971521 Z" id="Fill-61" fill="#DDDDFC" />
|
||||
<path d="M152.769155,158.86323 L147.816001,161.709466 C146.921309,162.223873 146.340813,162.174114 145.599467,161.770322 L140.267418,158.724694 C139.966804,158.539265 139.815246,158.321618 139.767706,158.100391 L139.82454,158.539265 C139.862072,158.763713 140.052592,158.949859 140.289222,159.095553 L145.620914,162.141539 C146.361545,162.544974 146.942041,162.594374 147.836732,162.079968 L152.790602,159.233731 C153.095862,159.057966 153.387897,158.934824 153.417565,158.582579 L153.457599,157.937513 L153.455812,157.937871 C153.440799,158.291548 153.193445,158.61945 152.769155,158.86323" id="Fill-63" fill="#DDDDFC" />
|
||||
<path d="M143.097118,153.125973 L138.143606,155.97221 C137.248914,156.486258 136.668419,156.437216 135.927072,156.033423 L130.595023,152.987438 C130.294052,152.802366 130.143209,152.584003 130.095668,152.362777 L130.152145,152.802008 C130.18932,153.026099 130.380554,153.212603 130.61647,153.357939 L135.948161,156.403925 C136.689151,156.808075 137.270361,156.857118 138.164695,156.342711 L143.118207,153.496475 C143.423467,153.321068 143.716217,153.197568 143.745528,152.845681 L143.785562,152.200615 L143.783417,152.200615 C143.768047,152.553934 143.521051,152.882194 143.097118,153.125973" id="Fill-65" fill="#DDDDFC" />
|
||||
<path d="M120.660976,146.417467 L120.644891,146.295756 C120.646678,146.336565 120.65204,146.376658 120.660976,146.417467" id="Fill-67" fill="#DDDDFC" />
|
||||
<path d="M120.644212,146.288847 L120.644927,146.295649 C120.644927,146.293143 120.645284,146.290995 120.644927,146.288847 L120.644212,146.288847 Z" id="Fill-69" fill="#DDDDFC" />
|
||||
<path d="M133.662104,147.180341 L128.708592,150.02622 C127.8139,150.540626 127.233762,150.491584 126.492416,150.08815 L121.160367,147.042522 C120.859753,146.856019 120.707838,146.638729 120.661012,146.417503 L120.717489,146.856019 C120.754663,147.080467 120.945898,147.267329 121.181814,147.413023 L126.513505,150.458651 C127.254137,150.862443 127.835347,150.911486 128.729682,150.397438 L133.683551,147.551201 C133.988811,147.375436 134.280846,147.251936 134.310872,146.900049 L134.350906,146.255341 L134.348761,146.255341 C134.333391,146.60866 134.086394,146.936562 133.662104,147.180341" id="Fill-71" fill="#DDDDFC" />
|
||||
<path d="M110.882134,140.762544 L110.866406,140.640476 C110.868551,140.680927 110.873912,140.721735 110.882134,140.762544" id="Fill-73" fill="#DDDDFC" />
|
||||
<path d="M110.865369,140.63371 L110.866442,140.640512 C110.866799,140.638006 110.866442,140.635858 110.866442,140.63371 L110.865369,140.63371 Z" id="Fill-75" fill="#DDDDFC" />
|
||||
<path d="M123.883583,141.52524 L118.930429,144.371835 C118.035737,144.885883 117.455241,144.836483 116.714252,144.43269 L111.381846,141.386705 C111.081232,141.201275 110.929674,140.983628 110.882134,140.762401 L110.938968,141.200917 C110.9765,141.425724 111.16702,141.612227 111.40365,141.757564 L116.735342,144.803549 C117.475973,145.206984 118.056826,145.256742 118.951518,144.742336 L123.90503,141.895741 C124.21029,141.720335 124.502325,141.597192 124.531993,141.244948 L124.572027,140.599882 L124.569883,140.599882 C124.555227,140.953558 124.307873,141.281461 123.883583,141.52524" id="Fill-77" fill="#DDDDFC" />
|
||||
<path d="M114.211546,135.788091 L109.258391,138.634328 C108.363342,139.148376 107.782489,139.099334 107.0415,138.695541 L101.709451,135.649914 C101.40848,135.464484 101.257637,135.246121 101.210096,135.024894 L101.266931,135.464484 C101.303748,135.688217 101.495697,135.875078 101.730898,136.020057 L107.062947,139.066042 C107.803936,139.469835 108.384431,139.519235 109.279123,139.004829 L114.232635,136.158592 C114.537895,135.983186 114.830645,135.859685 114.859956,135.507799 L114.89999,134.862733 L114.897845,134.862733 C114.882475,135.216051 114.635479,135.544312 114.211546,135.788091" id="Fill-79" fill="#DDDDFC" />
|
||||
<path d="M91.562151,129.371582 L91.5460658,129.249514 C91.548568,129.290323 91.5535722,129.331132 91.562151,129.371582" id="Fill-81" fill="#DDDDFC" />
|
||||
<path d="M91.5453867,129.242927 L91.5461016,129.249729 C91.5461016,129.247223 91.546459,129.245075 91.5461016,129.242927 L91.5453867,129.242927 Z" id="Fill-83" fill="#DDDDFC" />
|
||||
<path d="M104.563243,130.134385 L99.6100884,132.980264 C98.7153966,133.495028 98.1349013,133.44527 97.393912,133.042194 L92.0615056,129.996208 C91.760892,129.810421 91.6093341,129.592773 91.562151,129.371547 L91.6189852,129.810421 C91.6561598,130.034869 91.8473943,130.221373 92.082595,130.366709 L97.4150014,133.412695 C98.1556333,133.816487 98.736486,133.86553 99.6311779,133.351124 L104.58469,130.505245 C104.88995,130.32948 105.181985,130.20598 105.212368,129.854093 L105.252402,129.209027 L105.2499,129.209027 C105.234887,129.562346 104.987533,129.890606 104.563243,130.134385" id="Fill-85" fill="#DDDDFC" />
|
||||
<path d="M81.78363,123.716409 L81.7675448,123.594341 C81.7696895,123.634792 81.7754087,123.675958 81.78363,123.716409" id="Fill-87" fill="#DDDDFC" />
|
||||
<polygon id="Fill-89" fill="#DDDDFC" points="81.7669014 123.587754 81.7676163 123.594556 81.7676163 123.587754" />
|
||||
<path d="M94.7844,124.479534 L89.8316032,127.325771 C88.9369113,127.839819 88.3567735,127.790419 87.6154267,127.386627 L82.2833778,124.340641 C81.9827642,124.15557 81.8312063,123.937922 81.7836657,123.716338 L81.8401425,124.15557 C81.8780319,124.37966 82.0685516,124.565806 82.3048246,124.7115 L87.6368736,127.757486 C88.3775055,128.16092 88.9580007,128.210679 89.8526926,127.696273 L94.8065618,124.850036 C95.1118222,124.674271 95.4038571,124.551129 95.4335252,124.198884 L95.4735594,123.55346 L95.4714147,123.553818 C95.4560445,123.907495 95.209048,124.235755 94.7844,124.479534" id="Fill-91" fill="#DDDDFC" />
|
||||
<path d="M139.152967,169.492605 L139.136882,169.370537 C139.138669,169.411346 139.144388,169.451797 139.152967,169.492605" id="Fill-93" fill="#DDDDFC" />
|
||||
<path d="M139.136203,169.364058 L139.136917,169.370859 C139.13656,169.368353 139.137275,169.366205 139.13656,169.364058 L139.136203,169.364058 Z" id="Fill-95" fill="#DDDDFC" />
|
||||
<path d="M129.374482,163.837611 L129.358396,163.715543 C129.360541,163.755994 129.36626,163.796802 129.374482,163.837611" id="Fill-97" fill="#DDDDFC" />
|
||||
<polygon id="Fill-99" fill="#DDDDFC" points="129.35736 163.708777 129.358432 163.715578 129.358432 163.708777" />
|
||||
<path d="M142.375573,164.600486 L137.422419,167.446723 C136.527727,167.960771 135.946874,167.911371 135.205885,167.507578 L129.873836,164.461951 C129.572865,164.276521 129.421665,164.058874 129.374482,163.837647 L129.430958,164.276163 C129.46849,164.500612 129.659368,164.687115 129.895641,164.83281 L135.22769,167.878795 C135.967964,168.28223 136.548459,168.33163 137.443508,167.817224 L142.39702,164.970987 C142.702281,164.795223 142.994316,164.67208 143.024341,164.319836 L143.064375,163.67477 L143.062231,163.675128 C143.04686,164.028804 142.799864,164.356707 142.375573,164.600486" id="Fill-101" fill="#DDDDFC" />
|
||||
<path d="M132.703893,158.86323 L127.750024,161.709466 C126.85569,162.223873 126.275195,162.174472 125.53349,161.77068 L120.201441,158.725052 C119.90047,158.539623 119.749627,158.32126 119.702087,158.100033 L119.758921,158.539265 C119.796096,158.763355 119.987688,158.949859 120.222888,159.095196 L125.554937,162.141181 C126.295569,162.545332 126.876422,162.594374 127.771471,162.079968 L132.724983,159.233731 C133.029886,159.058324 133.322278,158.934824 133.351589,158.582937 L133.391623,157.937871 L133.390193,157.937871 C133.374823,158.29119 133.127827,158.61945 132.703893,158.86323" id="Fill-103" fill="#DDDDFC" />
|
||||
<path d="M110.267431,152.154723 L110.251345,152.032655 C110.253133,152.073821 110.258852,152.113914 110.267431,152.154723" id="Fill-105" fill="#DDDDFC" />
|
||||
<path d="M110.250666,152.026175 L110.251381,152.032977 C110.251024,152.030113 110.251739,152.028323 110.251024,152.026175 L110.250666,152.026175 Z" id="Fill-107" fill="#DDDDFC" />
|
||||
<path d="M123.268522,152.917598 L118.315368,155.763835 C117.420319,156.278241 116.840181,156.228841 116.098477,155.825406 L110.766785,152.779778 C110.466172,152.593275 110.314614,152.375986 110.267431,152.154759 L110.323907,152.593275 C110.360725,152.817723 110.551959,153.004585 110.78859,153.15028 L116.119566,156.195549 C116.860913,156.599342 117.441766,156.648742 118.336457,156.134694 L123.289612,153.288457 C123.59523,153.112693 123.887265,152.989192 123.91729,152.637305 L123.957324,151.992597 L123.954822,151.992597 C123.939809,152.345916 123.692455,152.674177 123.268522,152.917598" id="Fill-109" fill="#DDDDFC" />
|
||||
<path d="M100.48891,146.499729 L100.472824,146.37766 C100.474969,146.418111 100.480331,146.45892 100.48891,146.499729" id="Fill-111" fill="#DDDDFC" />
|
||||
<polygon id="Fill-113" fill="#DDDDFC" points="100.472145 146.370895 100.47286 146.377696 100.47286 146.370895" />
|
||||
<path d="M113.490037,147.262603 L108.53724,150.10884 C107.642191,150.622888 107.061338,150.573488 106.320349,150.169696 L100.9883,147.124068 C100.687329,146.938639 100.536128,146.720991 100.488945,146.499765 L100.54578,146.938639 C100.582954,147.162729 100.773474,147.349233 101.010104,147.494927 L106.342153,150.540913 C107.082785,150.944348 107.662923,150.993748 108.557972,150.479342 L113.511484,147.633105 C113.816744,147.45734 114.108779,147.334198 114.138805,146.982311 L114.178839,146.336887 L114.176694,146.337245 C114.161324,146.690922 113.914328,147.018824 113.490037,147.262603" id="Fill-115" fill="#DDDDFC" />
|
||||
<path d="M103.818,141.52524 L98.8644881,144.371835 C97.9701536,144.885883 97.3896584,144.836483 96.6479542,144.43269 L91.3159052,141.387063 C91.0152916,141.201633 90.8637337,140.98327 90.8169081,140.762043 L90.8733848,141.201275 C90.9105594,141.425366 91.101794,141.612227 91.3373521,141.757564 L96.669401,144.803191 C97.4100329,145.207342 97.9908856,145.256384 98.8859349,144.742336 L103.839089,141.895741 C104.14435,141.720335 104.436742,141.596834 104.46641,141.245306 L104.506087,140.599882 L104.5043,140.599882 C104.489287,140.9532 104.24229,141.281461 103.818,141.52524" id="Fill-117" fill="#DDDDFC" />
|
||||
<path d="M81.1685695,135.108839 L81.1524844,134.98677 C81.1546291,135.027937 81.1603482,135.06803 81.1685695,135.108839" id="Fill-119" fill="#DDDDFC" />
|
||||
<path d="M81.1518052,134.980005 L81.1525201,134.986806 C81.1525201,134.9843 81.153235,134.98251 81.1525201,134.980005 L81.1518052,134.980005 Z" id="Fill-121" fill="#DDDDFC" />
|
||||
<path d="M94.169697,135.871642 L89.2165427,138.717879 C88.3218509,139.232285 87.7417131,139.182885 87.0000089,138.77945 L81.6679599,135.733464 C81.3677037,135.547319 81.2154309,135.33003 81.1686053,135.108803 L81.2254395,135.547319 C81.2622566,135.772125 81.4538486,135.958629 81.6894067,136.104324 L87.0214557,139.149951 C87.762445,139.553386 88.3432977,139.602786 89.2376321,139.088738 L94.1911439,136.242501 C94.4967618,136.066737 94.7884392,135.943236 94.8184648,135.591349 L94.858499,134.946284 L94.8563543,134.946284 C94.8413415,135.29996 94.5939876,135.627863 94.169697,135.871642" id="Fill-123" fill="#DDDDFC" />
|
||||
<path d="M71.3904417,129.454095 L71.3743566,129.331669 C71.3765013,129.372119 71.381863,129.412928 71.3904417,129.454095" id="Fill-125" fill="#DDDDFC" />
|
||||
<polygon id="Fill-127" fill="#DDDDFC" points="71.37332 129.32476 71.3743923 129.331919 71.3743923 129.32476" />
|
||||
<path d="M84.391176,130.21654 L79.4383792,133.062777 C78.5436873,133.577183 77.9628346,133.527783 77.2218453,133.123632 L71.8897963,130.078005 C71.5888252,129.892933 71.4372674,129.674928 71.3904417,129.454059 L71.4469185,129.892575 C71.484093,130.117024 71.6753276,130.303527 71.9112432,130.448506 L77.2429347,133.494849 C77.983924,133.898284 78.5644193,133.947684 79.4594686,133.433278 L84.4129803,130.587041 C84.7182408,130.411277 85.0102756,130.288492 85.0395863,129.936606 L85.0796205,129.291182 L85.0781907,129.29154 C85.0628204,129.644858 84.8154666,129.972761 84.391176,130.21654" id="Fill-129" fill="#DDDDFC" />
|
||||
<path d="M85.1123627,118.833096 L80.1599233,121.679333 C79.264874,122.193739 78.6847362,122.143981 77.9433894,121.740188 L72.6113405,118.69456 C72.3107268,118.509131 72.159169,118.291484 72.1116284,118.070257 L72.1681052,118.509131 C72.2059946,118.733579 72.3965143,118.919725 72.6327873,119.065062 L77.9648363,122.111405 C78.7054682,122.51484 79.285606,122.56424 80.1806553,122.049834 L85.1345245,119.203597 C85.4397849,119.027833 85.7321772,118.90469 85.7614879,118.552445 L85.8015221,117.90738 L85.7993774,117.907738 C85.7840071,118.261056 85.5370107,118.589317 85.1123627,118.833096" id="Fill-131" fill="#DDDDFC" />
|
||||
<path d="M74.7191744,124.570424 L69.7663776,127.41666 C68.8716857,127.930709 68.2911905,127.881308 67.5498437,127.477516 L62.2181522,124.43153 C61.9168237,124.246459 61.7652658,124.028454 61.7180827,123.807585 L61.7749169,124.246101 C61.8120915,124.470549 62.0033261,124.657053 62.2395991,124.802747 L67.5712906,127.848375 C68.3122799,128.25181 68.8924177,128.301568 69.787467,127.787162 L74.7409788,124.940567 C75.0465966,124.76516 75.3382741,124.642018 75.3675848,124.289773 L75.4076189,123.644707 L75.4058317,123.645065 C75.3908189,123.998384 75.143465,124.326286 74.7191744,124.570424" id="Fill-133" fill="#DDDDFC" />
|
||||
<path d="M162.423713,164.558889 L147.076691,173.108697 C146.181999,173.622745 145.601862,173.573703 144.860872,173.169911 L139.528823,170.123925 C139.227137,169.938854 139.076652,169.720491 139.029111,169.498906 L139.085945,169.938496 C139.122763,170.162586 139.314712,170.34909 139.549913,170.494426 L144.882319,173.540412 C145.622951,173.944205 146.203804,173.993247 147.098853,173.479199 L162.44516,164.929391 C162.75042,164.753984 163.042813,164.630484 163.072481,164.278597 L163.112872,163.633531 L163.110013,163.633531 C163.095,163.98685 162.848003,164.31511 162.423713,164.558889" id="Fill-135" fill="#DDDDFC" />
|
||||
<path d="M129.533296,175.229862 L129.517211,175.107793 C129.519355,175.14896 129.524717,175.189053 129.533296,175.229862" id="Fill-137" fill="#DDDDFC" />
|
||||
<path d="M129.516531,175.101314 L129.517246,175.107757 C129.517246,175.105252 129.517604,175.103462 129.517246,175.101314 L129.516531,175.101314 Z" id="Fill-139" fill="#DDDDFC" />
|
||||
<path d="M142.534423,175.992736 L137.581269,178.838973 C136.68622,179.353021 136.106082,179.303979 135.365092,178.900544 L130.032686,175.854917 C129.732072,175.668413 129.580515,175.451124 129.533331,175.229897 L129.589808,175.668413 C129.62734,175.892862 129.818575,176.079723 130.053775,176.225418 L135.386182,179.270688 C136.126814,179.67448 136.707666,179.72388 137.602358,179.209832 L142.555513,176.363595 C142.86113,176.187831 143.153165,176.064331 143.183191,175.712444 L143.223225,175.067736 L143.22108,175.067736 C143.205353,175.421055 142.958714,175.748957 142.534423,175.992736" id="Fill-141" fill="#DDDDFC" />
|
||||
<path d="M119.754775,169.574939 L119.73869,169.452871 C119.740834,169.493321 119.746553,169.533772 119.754775,169.574939" id="Fill-143" fill="#DDDDFC" />
|
||||
<path d="M119.738046,169.446033 L119.738761,169.452835 C119.739476,169.450329 119.738761,169.448181 119.738761,169.446033 L119.738046,169.446033 Z" id="Fill-145" fill="#DDDDFC" />
|
||||
<path d="M132.755545,170.337814 L127.802748,173.184051 C126.908056,173.698099 126.327918,173.648698 125.586214,173.244906 L120.254522,170.199278 C119.953909,170.013849 119.802351,169.796202 119.75481,169.574975 L119.811287,170.013491 C119.849177,170.237939 120.039696,170.424443 120.275969,170.570138 L125.608018,173.615765 C126.34865,174.019558 126.928788,174.068958 127.823837,173.554552 L132.777706,170.708315 C133.082967,170.53255 133.375002,170.409408 133.40467,170.057163 L133.444704,169.412097 L133.442559,169.412455 C133.427189,169.766132 133.180193,170.093677 132.755545,170.337814" id="Fill-147" fill="#DDDDFC" />
|
||||
<path d="M123.083865,164.600486 L118.130711,167.446723 C117.236019,167.960771 116.655166,167.911729 115.914177,167.507936 L110.58177,164.462308 C110.281157,164.276879 110.129599,164.058516 110.082416,163.837289 L110.13925,164.276521 C110.176424,164.500612 110.367659,164.687115 110.603575,164.832452 L115.935266,167.878437 C116.675898,168.282588 117.256751,168.331272 118.1518,167.817224 L123.105312,164.970987 C123.410215,164.795581 123.702607,164.67208 123.732633,164.320194 L123.772667,163.675128 L123.770165,163.675128 C123.755152,164.028446 123.508155,164.356707 123.083865,164.600486" id="Fill-149" fill="#DDDDFC" />
|
||||
<path d="M100.647402,157.891979 L100.631674,157.769911 C100.633819,157.811078 100.639181,157.851171 100.647402,157.891979" id="Fill-151" fill="#DDDDFC" />
|
||||
<path d="M100.631317,157.763432 L100.631674,157.770233 C100.631674,157.767727 100.632032,157.765579 100.631674,157.763432 L100.631317,157.763432 Z" id="Fill-153" fill="#DDDDFC" />
|
||||
<path d="M113.648851,158.654854 L108.695697,161.500733 C107.801005,162.015139 107.22051,161.966097 106.479163,161.562662 L101.147114,158.517035 C100.8465,158.330531 100.694943,158.113242 100.647402,157.892015 L100.704594,158.330531 C100.741768,158.55498 100.933003,158.741841 101.168918,158.887536 L106.50061,161.932805 C107.241242,162.336598 107.822094,162.385998 108.716786,161.87195 L113.670298,159.025713 C113.975558,158.849949 114.267593,158.726448 114.297619,158.374562 L114.338011,157.729854 L114.335508,157.729854 C114.320138,158.083172 114.073142,158.411075 113.648851,158.654854" id="Fill-155" fill="#DDDDFC" />
|
||||
<path d="M90.8692384,152.236985 L90.8531533,152.114917 C90.855298,152.155367 90.8610171,152.196176 90.8692384,152.236985" id="Fill-157" fill="#DDDDFC" />
|
||||
<polygon id="Fill-159" fill="#DDDDFC" points="90.8524741 152.108151 90.853189 152.114952 90.853189 152.108151" />
|
||||
<path d="M103.870008,152.999931 L98.9172116,155.846168 C98.0225197,156.360216 97.4423819,156.310816 96.7006777,155.907023 L91.3689862,152.861396 C91.0683726,152.675966 90.9168147,152.458319 90.8692742,152.237093 L90.9257509,152.675608 C90.9632829,152.900057 91.1541601,153.086561 91.3900756,153.232255 L96.722482,156.278241 C97.4631139,156.681675 98.0432517,156.731076 98.938301,156.216669 L103.891813,153.370432 C104.197073,153.194668 104.489108,153.071526 104.519134,152.719281 L104.559168,152.074215 L104.557023,152.074573 C104.541653,152.42825 104.294299,152.756152 103.870008,152.999931" id="Fill-161" fill="#DDDDFC" />
|
||||
<path d="M94.1983286,147.262603 L89.2451743,150.10884 C88.3504824,150.622888 87.7696297,150.573846 87.0286404,150.170054 L81.6965914,147.124426 C81.3956204,146.938997 81.24442,146.720634 81.1968794,146.499407 L81.2540711,146.938639 C81.2908882,147.162729 81.4821228,147.349233 81.7180383,147.494569 L87.0497298,150.540555 C87.7910766,150.944705 88.3715718,150.99339 89.2662637,150.479342 L94.2197755,147.633105 C94.5246784,147.457698 94.8170708,147.334198 94.8470964,146.982311 L94.8871305,146.337245 L94.8846284,146.337245 C94.8696156,146.690564 94.6226191,147.018824 94.1983286,147.262603" id="Fill-163" fill="#DDDDFC" />
|
||||
<path d="M71.5492558,140.846023 L71.5331706,140.723955 C71.5349579,140.765122 71.5403196,140.805215 71.5492558,140.846023" id="Fill-165" fill="#DDDDFC" />
|
||||
<path d="M71.532134,140.71744 L71.5332064,140.724241 C71.5328489,140.721735 71.5332064,140.719588 71.5328489,140.71744 L71.532134,140.71744 Z" id="Fill-167" fill="#DDDDFC" />
|
||||
<path d="M84.5503833,141.608898 L79.597229,144.454777 C78.7021796,144.969183 78.1220419,144.920141 77.3803376,144.516706 L72.0486461,141.471079 C71.7480325,141.284575 71.5964746,141.067286 71.5492915,140.846059 L71.6054108,141.284575 C71.6429428,141.509024 71.8341774,141.695885 72.0697355,141.84158 L77.4017845,144.886849 C78.1427738,145.290642 78.7232691,145.340042 79.6183184,144.825994 L84.5714727,141.979757 C84.8770906,141.803993 85.1691254,141.680492 85.199151,141.328606 L85.2391852,140.683898 L85.2366831,140.683898 C85.2213128,141.037216 84.9743164,141.365119 84.5503833,141.608898" id="Fill-169" fill="#DDDDFC" />
|
||||
<path d="M61.7704131,135.190993 L61.7546854,135.068925 C61.75683,135.109376 61.7621918,135.149827 61.7704131,135.190993" id="Fill-171" fill="#DDDDFC" />
|
||||
<polygon id="Fill-173" fill="#DDDDFC" points="61.7532913 135.062338 61.7547211 135.06914 61.7547211 135.062338" />
|
||||
<path d="M74.7715048,135.954118 L69.8183505,138.800355 C68.9236586,139.314403 68.3435208,139.264645 67.6021741,138.861211 L62.2704825,135.815225 C61.969154,135.629796 61.8183111,135.412149 61.7704131,135.190922 L61.8272473,135.629796 C61.8651367,135.854244 62.0556564,136.040748 62.2919294,136.186084 L67.6239784,139.23207 C68.3646103,139.635505 68.9447481,139.685263 69.8394399,139.170857 L74.7929517,136.324262 C75.0982121,136.148855 75.3909619,136.025355 75.42063,135.67311 L75.4606642,135.028044 L75.4585195,135.028044 C75.4431492,135.382079 75.1957954,135.709981 74.7715048,135.954118" id="Fill-175" fill="#DDDDFC" />
|
||||
<path d="M65.0994675,130.21654 L60.1463132,133.062777 C59.2516213,133.577183 58.6711261,133.527783 57.9294219,133.12399 L52.5977303,130.078363 C52.2967593,129.893291 52.1455589,129.67457 52.0983758,129.453343 L52.15521,129.892933 C52.1923845,130.116666 52.3836191,130.303527 52.6195347,130.448506 L57.9508687,133.494491 C58.6918581,133.898642 59.2727107,133.947684 60.1677601,133.433278 L65.1212718,130.587041 C65.4261748,130.411635 65.7185671,130.288134 65.7478778,129.936606 L65.787912,129.29154 L65.7857673,129.29154 C65.7707545,129.6445 65.523758,129.972761 65.0994675,130.21654" id="Fill-177" fill="#DDDDFC" />
|
||||
<path d="M119.143217,180.96676 L119.127847,180.844691 C119.129634,180.885858 119.134638,180.925951 119.143217,180.96676" id="Fill-179" fill="#DDDDFC" />
|
||||
<polygon id="Fill-181" fill="#DDDDFC" points="119.12681 180.83832 119.127883 180.844763 119.127883 180.83832" />
|
||||
<path d="M132.144702,181.729742 L127.191548,184.575979 C126.296499,185.090027 125.716361,185.040985 124.975371,184.63755 L119.642965,181.591923 C119.342351,181.405419 119.190794,181.18813 119.143253,180.966903 L119.200445,181.405419 C119.237619,181.629868 119.428854,181.816729 119.664412,181.962424 L124.996461,185.007693 C125.737093,185.411486 126.317945,185.460886 127.21228,184.946838 L132.166149,182.100601 C132.471409,181.924837 132.763444,181.801336 132.79347,181.44945 L132.833862,180.804742 L132.831359,180.804742 C132.815632,181.15806 132.568993,181.485963 132.144702,181.729742" id="Fill-183" fill="#DDDDFC" />
|
||||
<path d="M109.365054,175.311945 L109.348968,175.189518 C109.351113,175.230327 109.356832,175.270778 109.365054,175.311945" id="Fill-185" fill="#DDDDFC" />
|
||||
<path d="M109.348325,175.18311 L109.34904,175.189554 C109.349397,175.187406 109.34904,175.185258 109.34904,175.18311 L109.348325,175.18311 Z" id="Fill-187" fill="#DDDDFC" />
|
||||
<path d="M122.366181,176.074819 L117.412669,178.921056 C116.518335,179.435104 115.938197,179.385704 115.196493,178.981911 L109.864801,175.936284 C109.564188,175.750854 109.41263,175.533207 109.365089,175.31198 L109.421566,175.750496 C109.459456,175.974945 109.649975,176.161449 109.886248,176.307143 L115.218297,179.352771 C115.958929,179.756205 116.539067,179.805963 117.433759,179.291557 L122.387985,176.44532 C122.692888,176.269556 122.985281,176.146414 123.014591,175.794169 L123.054983,175.149103 L123.052838,175.149461 C123.037468,175.503138 122.790472,175.83104 122.366181,176.074819" id="Fill-189" fill="#DDDDFC" />
|
||||
<path d="M112.693786,170.337456 L107.74099,173.183693 C106.846298,173.698099 106.265445,173.648698 105.524456,173.244906 L61.6591753,147.229276 C61.3578468,147.043847 61.2066464,146.825484 61.1591058,146.604257 L61.21594,147.043489 C61.253472,147.267579 61.4447066,147.454083 61.6802647,147.599419 L105.545903,173.615407 C106.286534,174.019558 106.867387,174.068242 107.762079,173.554552 L112.715591,170.707957 C113.020494,170.53255 113.312886,170.40905 113.342912,170.057163 L113.382946,169.412097 L113.380086,169.412097 C113.365431,169.765416 113.118077,170.093677 112.693786,170.337456" id="Fill-191" fill="#DDDDFC" />
|
||||
<path d="M90.2580027,163.628913 L90.2419175,163.507203 C90.2444196,163.548012 90.2497814,163.588463 90.2580027,163.628913" id="Fill-193" fill="#DDDDFC" />
|
||||
<path d="M90.2412741,163.500437 L90.241989,163.507239 C90.241989,163.504733 90.2423464,163.502585 90.241989,163.500437 L90.2412741,163.500437 Z" id="Fill-195" fill="#DDDDFC" />
|
||||
<path d="M80.4795174,157.974062 L80.4634322,157.851994 C80.4655769,157.892445 80.4712961,157.933254 80.4795174,157.974062" id="Fill-197" fill="#DDDDFC" />
|
||||
<polygon id="Fill-199" fill="#DDDDFC" points="80.4627531 157.845157 80.463468 157.851958 80.463468 157.845157" />
|
||||
<path d="M61.1591773,146.582993 L61.143807,146.460925 C61.1452368,146.502091 61.1505986,146.542184 61.1591773,146.582993" id="Fill-201" fill="#DDDDFC" />
|
||||
<path d="M61.142413,146.454445 L61.1438428,146.461247 C61.1431279,146.458741 61.1438428,146.456593 61.1431279,146.454445 L61.142413,146.454445 Z" id="Fill-203" fill="#DDDDFC" />
|
||||
<path d="M51.3810137,140.928178 L51.3649286,140.805751 C51.3667158,140.84656 51.372435,140.887011 51.3810137,140.928178" id="Fill-205" fill="#DDDDFC" />
|
||||
<polygon id="Fill-207" fill="#DDDDFC" points="51.3642852 140.799272 51.3650001 140.805716 51.3650001 140.799272" />
|
||||
<path d="M64.3817838,141.690874 L59.4286295,144.53711 C58.5339376,145.051517 57.9534424,145.001758 57.2124531,144.597966 L51.8807615,141.552338 C51.5797905,141.366909 51.42859,141.149262 51.3810495,140.928035 L51.4375262,141.366551 C51.4754157,141.591357 51.6659354,141.777503 51.9018509,141.923197 L57.2342574,144.969183 C57.9748892,145.372618 58.555027,145.422018 59.4497189,144.90797 L64.4032306,142.061375 C64.7088485,141.88561 65.0012408,141.762826 65.0305516,141.410223 L65.0709432,140.765515 L65.0687985,140.765515 C65.0534282,141.119192 64.8060743,141.447094 64.3817838,141.690874" id="Fill-209" fill="#DDDDFC" />
|
||||
<path d="M54.7101039,135.953796 L49.7565922,138.800033 C48.8622577,139.314081 48.2814051,139.264681 47.5404157,138.861246 L42.2083668,135.815261 C41.9070383,135.629831 41.7558378,135.411468 41.7086547,135.190242 L41.7654889,135.629831 C41.8026635,135.853564 41.9942555,136.040426 42.2298136,136.185762 L47.5615052,139.231748 C48.3024945,139.63554 48.8829897,139.684583 49.778039,139.170534 L54.7315508,136.32394 C55.0364538,136.148891 55.3288461,136.025033 55.3585142,135.673146 L55.3985484,135.02808 L55.3964037,135.02808 C55.3810335,135.381757 55.1343945,135.709659 54.7101039,135.953796" id="Fill-211" fill="#DDDDFC" />
|
||||
<path d="M86.2089411,92.6844436 C86.315818,95.8421164 88.6678246,96.7152106 88.6678246,96.7152106 L183.115545,152.013324 C183.115545,152.013324 184.345165,152.707432 185.790326,152.89322 C186.638193,153.002401 187.560051,152.936892 188.351083,152.452914 C190.268075,150.980574 190.248058,147.648211 190.248058,147.648211 L190.248058,63.9632601 C190.075411,60.3552583 187.046041,59.0142945 187.046041,59.0142945 L89.6465167,3.15667045 C89.6465167,3.15667045 87.767771,2.09707274 86.9467134,3.02994829 C86.0738258,4.02188926 86.1731963,4.62686227 86.1731963,6.84843774 L86.2089411,92.6844436 Z" id="Fill-213" fill="#5763AB" />
|
||||
<path d="M174.951865,171.825653 L178.340113,169.803111 C178.865562,169.489885 179.175469,168.736353 178.883791,168.201901 C179.214788,168.244142 179.52398,168.429929 179.708066,168.739217 C180.026552,169.275459 179.713785,170.050827 179.179043,170.369781 L175.791153,172.392323 C175.478029,172.578827 175.11236,172.592072 174.798878,172.467498 C174.575473,172.37872 174.377089,172.223003 174.244476,172.000344 C174.238757,171.991037 174.234825,171.980655 174.229463,171.970632 C174.471456,172.003924 174.725601,171.960967 174.951865,171.825653" id="Fill-215" fill="#B6B6DD" />
|
||||
<path d="M174.773821,170.369888 L178.162069,168.347703 C178.345439,168.238163 178.547755,168.190553 178.746853,168.192343 C178.792964,168.192343 178.83836,168.195923 178.883756,168.202008 C179.175433,168.736461 178.865526,169.489992 178.340435,169.803218 L174.95183,171.825761 C174.725565,171.960716 174.47142,172.003673 174.229428,171.97074 C173.938823,171.436287 174.24873,170.683472 174.773821,170.369888" id="Fill-217" fill="#C7C7EA" />
|
||||
</g>
|
||||
<g id="browser-(homepage)" transform="translate(113.973017, 8.744890)">
|
||||
<polygon id="Fill-223" fill="#DDDDFC" points="7 34.8944613 7 51.4739195 28.5651504 63.7369664 28.5651504 47.3854823" />
|
||||
<polygon id="Fill-225" fill="#DDDDFC" points="19.670846 18 19.670846 22.8818174 75.251605 54.9604986 75.251605 50.3043907" />
|
||||
<polygon id="Fill-227" fill="#DDDDFC" points="28.1180767 32.7826537 28.1180767 36.8416505 65.1163325 57.9428477 65.1163325 54.1103153" />
|
||||
<polygon id="Fill-229" fill="#DDDDFC" points="7 53.9007303 7 56.0574262 28.5651504 68.3219828 28.5651504 66.3917513" />
|
||||
<polygon id="Fill-231" fill="#DDDDFC" points="7 60.2361533 7 62.3936041 24.1534281 72.252354 24.1534281 70.3221225" />
|
||||
<polygon id="Fill-233" fill="#DDDDFC" points="36.5653073 51.7889227 36.5653073 68.3668711 58.1297032 80.6314277 58.1297032 64.2791888" />
|
||||
<polygon id="Fill-235" fill="#DDDDFC" points="36.5653073 70.7951916 36.5653073 72.9526424 58.1297032 85.2164442 58.1297032 83.2862127" />
|
||||
<polygon id="Fill-237" fill="#DDDDFC" points="36.5653073 77.1306146 36.5653073 79.2865557 53.7202445 89.1468153 53.7202445 87.2158289" />
|
||||
<polygon id="Fill-239" fill="#DDDDFC" points="64.018807 68.683384 64.018807 85.2620873 85.5824483 97.525889 85.5824483 81.1736501" />
|
||||
<polygon id="Fill-241" fill="#DDDDFC" points="64.018807 110.919537 64.018807 118.780116 83.0404452 129.595301 83.0404452 121.961941" />
|
||||
<polygon id="Fill-243" fill="#DDDDFC" points="64.018807 87.689653 64.018807 89.8463489 85.5824483 102.110905 85.5824483 100.180674" />
|
||||
<polygon id="Fill-245" fill="#DDDDFC" points="64.018807 94.025076 64.018807 96.1817719 81.1722351 106.041277 81.1722351 104.111045" />
|
||||
<polygon id="Fill-247" fill="#E4E4F4" points="64.018807 111.611763 65.3860108 110.919537 84.1752545 121.959676 83.0404452 122.654167" />
|
||||
<polygon id="Fill-249" fill="#CECEEF" points="83.025076 122.173066 84.1598853 121.478576 84.1598853 129.111935 83.025076 129.806426" />
|
||||
<path d="M1.27141755,0.365341438 C1.69016129,0.0193226608 2.34221531,0.117980907 2.72773109,0.585177748 C3.11360415,1.05237459 3.0871647,1.71188352 2.66842097,2.0579023 C2.24931994,2.40392107 1.59726592,2.30562028 1.21139286,1.83842344 C0.82551979,1.37086915 0.852316531,0.711717673 1.27141755,0.365341438" id="Fill-251" fill="#E8F0F4" />
|
||||
<path d="M4.33275513,2.20666137 C4.75149886,1.8606426 5.40355289,1.95930084 5.78906866,2.42649768 C6.17494173,2.89369452 6.14850228,3.55320345 5.72975854,3.89922223 C5.31065752,4.24524101 4.6586035,4.14694022 4.27273043,3.67974338 C3.88685737,3.21218908 3.91365411,2.55303761 4.33275513,2.20666137" id="Fill-251" fill="#E8F0F4" />
|
||||
<path d="M7.33275513,4.20666137 C7.75149886,3.8606426 8.40355289,3.95930084 8.78906866,4.42649768 C9.17494173,4.89369452 9.14850228,5.55320345 8.72975854,5.89922223 C8.31065752,6.24524101 7.6586035,6.14694022 7.27273043,5.67974338 C6.88685737,5.21218908 6.91365411,4.55303761 7.33275513,4.20666137" id="Fill-251" fill="#E8F0F4" />
|
||||
</g>
|
||||
</g>
|
||||
<g id="letters" transform="translate(21.000000, 208.000000)">
|
||||
<path d="M111.654289,39.2861548 L47.6826319,2.51619384 C45.6200209,1.3547577 44.140145,2.51619384 44.140145,2.51619384 L2.34268513,26.786654 C2.34268513,26.786654 0.312147209,26.4136085 0.0108415818,28.0623888 C-0.0135519772,28.1973872 0.0108415818,29.8155679 0.0108415818,29.9577662 C0.0108415818,31.9305426 2.34268513,33.0397794 2.34268513,33.0397794 C2.34268513,33.0397794 61.6994419,67.0337235 64.251731,68.4242069 C66.6278443,69.7197414 68.6010122,68.4242069 68.6010122,68.4242069 L111.430681,43.6191531 C111.430681,43.6191531 113,42.7700132 113,41.5640276 C113,41.4623288 112.994579,39.7626991 112.983286,39.6686502 C112.831052,38.3087665 111.654289,39.2861548 111.654289,39.2861548" id="Fill-649" fill="#DDDDFC" />
|
||||
<path d="M111.65416,37.2857048 L47.6763645,0.516193836 C45.6135557,-0.645242296 44.1335378,0.516193836 44.1335378,0.516193836 L2.33206729,24.7857541 C2.33206729,24.7857541 0,26.0817386 0,27.9577662 C0,29.9309926 2.33206729,31.0397794 2.33206729,31.0397794 C2.33206729,31.0397794 61.6945195,65.0332735 64.2470535,66.4242069 C66.6233948,67.7197414 68.596752,66.4242069 68.596752,66.4242069 L111.43053,41.6182531 C111.43053,41.6182531 113,40.7700132 113,39.5635776 C113,37.9998463 111.65416,37.2857048 111.65416,37.2857048" id="Fill-651" fill="#5763AB" />
|
||||
<polygon id="Fill-653" fill="#DDDDFC" points="7 28.309241 7 27.3657141 47.20433 5 108 38.9266098 108 39.8701367 68.0017097 63" />
|
||||
<polygon id="Fill-655" fill="#FFFFFF" points="7 27.3083505 47.2448206 4 92 29.8127202 52.1419492 53" />
|
||||
<path d="M91.7737631,30 L56.0526655,51.1115684 C52.5329938,52.6035665 48.9232723,52.3109282 43,48.905807 L67.6518006,63 L108,39.4165524 L91.7737631,30 Z" id="Fill-657" fill="#F6F6FF" />
|
||||
<path d="M56,50 C63.002918,46.4216349 62.9031075,38.2337593 62.9031075,38.2337593 L107,13 C107,13 107,20.7203932 102.079614,23.8276971 L56,50 Z" id="Fill-659" fill="#EAEAF9" />
|
||||
<polygon id="Fill-661" fill="#DDDDFC" points="20 16.8482627 27.5736826 21 40 14.0697721 40 13.397394 32.2765475 10 20 16.1754463" />
|
||||
<polygon id="Fill-663" fill="#F6F6FF" points="20 16.8482627 27.5736826 21 40 14.0702104 32.2765475 10" />
|
||||
</g>
|
||||
<g id="cup" transform="translate(110.000000, 165.000000)">
|
||||
<path d="M0.209271566,16.7060587 L0.235954644,17.2537495 C0.447513331,20.8855616 2.19373017,41.3694277 14.8403654,44.9497739 C24.9791726,47.5872161 27.8495093,43.7725843 28.1746617,43.2740551 L29.681112,12.4121014 L0,12.4121014 L0.209271566,16.6999135 L0.209271566,16.7060587 Z" id="Fill-623" fill="#5763AB" />
|
||||
<polygon id="Fill-625" fill="#FFFFFF" points="0.539656582 16.729354 0.539656582 16.729354 0.539656582 16.7379886" />
|
||||
<path d="M15.2085907,44.2483358 C2.5060817,40.6908765 0.752149951,20.3379504 0.539656582,16.729354 L1.91837482,44.6631564 C1.91837482,48.9063864 7.86857201,52.3466885 15.2085907,52.3466885 C22.5489923,52.3466885 28.4995723,48.9063864 28.4995723,44.6631564 L28.6017989,42.5833288 C28.2752099,43.0786712 25.3925747,46.8689186 15.2085907,44.2483358" id="Fill-627" fill="#5763AB" />
|
||||
<path d="M15.1100014,50.2915031 C8.09739139,50.2915031 2.33581602,47.1667851 1.68215331,43.1725266 C1.64156266,43.4219027 1.61896975,43.6747478 1.61896975,43.9302909 C1.61896975,48.2803055 7.65931867,51.8070319 15.1100014,51.8070319 C22.5614499,51.8070319 28.6017989,48.2803055 28.6017989,43.9302909 C28.6017989,43.6747478 28.5792059,43.4219027 28.5382324,43.1725266 C27.8849526,47.1667851 22.1233772,50.2915031 15.1100014,50.2915031" id="Fill-629" fill="#F0F0FC" />
|
||||
<path d="M29.681112,11.6026165 C29.681112,16.2224128 23.1576531,19.9672935 15.1105755,19.9672935 C7.06388014,19.9672935 0.539656582,16.2224128 0.539656582,11.6026165 C0.539656582,6.98282023 7.06388014,3.23793949 15.1105755,3.23793949 C23.1576531,3.23793949 29.681112,6.98282023 29.681112,11.6026165" id="Fill-631" fill="#FFFFFF" />
|
||||
<path d="M14.8401735,23.1190569 C7.12648136,23.1190569 0.789195934,19.6040148 0.0703887793,15.1103843 C0.0248656014,15.3911624 0,15.6754846 0,15.9629573 C0,20.8566866 6.64447124,24.8242028 14.8401735,24.8242028 C23.0362582,24.8242028 29.681112,20.8566866 29.681112,15.9629573 C29.681112,15.6754846 29.6558639,15.3911624 29.6107232,15.1103843 C28.8919161,19.6040148 22.5546307,23.1190569 14.8401735,23.1190569" id="Fill-633" fill="#F0F0FC" />
|
||||
<path d="M15.1100018,15.1188951 C7.53602344,15.1188951 1.31388548,11.7991226 0.608510931,7.55519215 C0.563755604,7.8206982 0.539656582,8.08885552 0.539656582,8.36080037 C0.539656582,12.9823479 7.06284106,16.729354 15.1100018,16.729354 C23.1571625,16.729354 29.681112,12.9823479 29.681112,8.36080037 C29.681112,8.08885552 29.6562479,7.8206982 29.6130227,7.55519215 C28.9065006,11.7991226 22.6839801,15.1188951 15.1100018,15.1188951" id="Fill-635" fill="#FCFCFC" />
|
||||
<path d="M15.2915269,19.8058415 C20.8993826,20.3267898 24.323813,19.5135653 26.4074571,18.4171509 C27.7770775,17.5198781 28.8348342,16.4605662 29.4851193,15.2944901 C29.5522724,15.1165499 29.5742774,15.0120574 29.5742774,15.0120574 C29.5742774,15.0120574 29.5909709,15.0207651 29.6209432,15.035909 C30.0083067,14.2586511 30.2207686,13.4378547 30.2207686,12.5879064 C30.2207686,7.72181048 23.4056741,3.77759608 14.9990124,3.77759608 C8.25486497,3.77759608 2.53888134,6.31721887 0.540221994,9.83361965 C0.533392862,10.0789499 0.394154445,18.6117494 15.2915269,19.8058415" id="Fill-637" fill="#FFFFFF" />
|
||||
<path d="M15.4229882,21.5862633 C20.0273186,21.5862633 24.1572611,20.401934 26.9828291,18.5261304 C24.8715339,19.6513793 21.4020439,20.4866677 15.7193846,19.9518344 C0.624700413,18.7259156 0.765402168,9.96568766 0.772706357,9.71381848 C0.273330458,10.6035231 0,11.5534741 0,12.5411278 C0,17.536922 6.90553448,21.5862633 15.4229882,21.5862633" id="Fill-639" fill="#F6F6FF" />
|
||||
<path d="M29.681112,8.90433361 C29.681112,13.5241552 23.1573588,17.2690106 15.1103843,17.2690106 C7.06302546,17.2690106 0.539656582,13.5241552 0.539656582,8.90433361 C0.539656582,4.28451199 7.06302546,0.539656582 15.1103843,0.539656582 C23.1573588,0.539656582 29.681112,4.28451199 29.681112,8.90433361" id="Fill-641" fill="#5763AB" />
|
||||
<path d="M15.1101934,0.198744233 C7.18411153,0.198744233 0.735126643,3.98303628 0.735126643,8.63450531 C0.735126643,13.2863625 7.18411153,17.0702664 15.1101934,17.0702664 C23.0370389,17.0702664 29.4852602,13.2863625 29.4852602,8.63450531 C29.4852602,3.98303628 23.0370389,0.198744233 15.1101934,0.198744233 M15.1101934,17.2690106 C7.07568673,17.2690106 0.539656582,13.3958271 0.539656582,8.63450531 C0.539656582,3.87357168 7.07568673,0 15.1101934,0 C23.1447001,0 29.681112,3.87357168 29.681112,8.63450531 C29.681112,13.3958271 23.1447001,17.2690106 15.1101934,17.2690106" id="Fill-643" fill="#F7F7F7" />
|
||||
<path d="M13.8488249,13.4868733 L17.0416278,13.4868733 C17.1220805,13.4868733 17.1983784,13.5042815 17.2674998,13.5345568 C17.2674998,13.5281233 17.2690106,13.5220683 17.2690106,13.5152563 C17.2690106,13.204178 17.0174542,12.951758 16.7069746,12.951758 L13.5134163,12.951758 C13.2033144,12.951758 12.951758,13.204178 12.951758,13.5152563 C12.951758,13.7461052 13.0903784,13.9440298 13.2886774,14.0310711 C13.2984979,13.7294538 13.5447664,13.4868733 13.8488249,13.4868733" id="Fill-645" fill="#DADEE0" />
|
||||
<path d="M16.7371922,14.5707277 C17.0255145,14.5707277 17.2593282,14.3498964 17.2690106,14.0748924 C17.2037436,14.0469434 17.1313045,14.0310711 17.0549206,14.0310711 L14.0235916,14.0310711 C13.7349106,14.0310711 13.501097,14.2522475 13.4914146,14.5272515 C13.5570402,14.5548555 13.6291207,14.5707277 13.705146,14.5707277 L16.7371922,14.5707277 Z" id="Fill-647" fill="#E8E8E8" />
|
||||
</g>
|
||||
<g id="Group-12" transform="translate(75.000000, 129.000000) scale(-1, 1) translate(-75.000000, -129.000000) translate(40.000000, 61.000000)">
|
||||
<path d="M6.39721837,87.1914435 C16.6327678,81.207717 26.4418359,78.2158538 35.8244229,78.2158538 C45.2070098,78.2158538 56.2955217,81.207717 69.0899584,87.1914435 C63.1192213,102.578169 57.5749653,111.553759 52.4571906,114.118213 C44.7805286,117.964894 36.5464962,121.25642 23.0299861,112.835986 C14.0189794,107.222363 8.47472352,98.6741825 6.39721837,87.1914435 Z" id="Path-33" fill="url(#linearGradient-5)" />
|
||||
<path d="M15.9670888,67.7288579 L23.9751307,58.4180167 L23.6242325,58.155285 L16.1075921,66.8947804 C18.8837766,50.495891 21.61761,39.1822525 24.3032968,32.9654562 L32.9486939,24.8795323 L32.6303488,24.5810998 L24.7722703,31.9306593 C25.0044775,31.4434853 25.2363208,30.994578 25.4677963,30.5839452 L34.145169,15.1904619 L33.7424291,14.9884755 L25.0650563,30.3819588 C21.3800501,36.9190851 17.6316572,52.9417093 13.8050923,78.4794017 L14.2567348,78.5396117 C14.8285889,74.7231775 15.3987234,71.1195598 15.9670888,67.7288579 Z M9.17855425,81.6421579 C-0.858607632,71.8772112 -3.22585382,54.5609562 4.88885684,44.8559091 C11.7513366,36.6485074 17.6801575,21.4274155 23.1250673,10.9039748 C23.8396289,9.5229333 24.4263651,16.0439695 25.1252748,14.8512093 C28.5468821,9.01188952 31.9125959,-2.07510478 35.1027075,0.338422891 C37.1775671,1.90818968 38.8540561,4.5483404 40.1321745,8.25887506 C40.5328677,9.42213672 38.1103098,13.937916 38.4377917,15.873544 C38.7548086,17.7473172 41.8241674,17.0166517 42.0725773,19.6142166 C42.4015484,23.0541919 42.7596422,29.6422067 43.1468589,39.3782609 L35.0075868,51.5762554 L43.5870956,41.3771293 C43.8756538,42.9175587 43.6833669,44.9737921 43.0102349,47.5458296 C42.3371028,50.1178671 41.133054,52.9188147 39.3980884,55.9486725 L30.2737242,69.7882391 L39.4617613,57.8586224 C37.5292027,65.096037 34.9959618,70.4855856 31.8620385,74.0272684 C28.7281153,77.5689512 17.8052405,81.5738078 12.9670336,83.8382026 L1.84351473,121.614074 L9.17855425,81.6421579 Z" id="Combined-Shape-Copy" fill="#3BC2CA" transform="translate(21.858485, 60.807037) scale(-1, 1) translate(-21.858485, -60.807037) " />
|
||||
<path d="M44.4515554,77.9238635 L49.4200426,72.147071 L49.2023323,71.9840625 L44.5387289,77.4063708 C46.261177,67.2318894 47.9573491,60.212487 49.6236491,56.3553551 L54.9875753,51.338547 L54.7900621,51.1533884 L49.9146177,55.7133286 C50.0586877,55.4110677 50.2025319,55.132549 50.3461479,54.8777771 L55.729913,45.3270871 L55.4800381,45.2017672 L50.0962731,54.7524572 C47.8099581,58.8083337 45.4843156,68.7493661 43.1101723,84.593901 L43.3903881,84.6312575 C43.7451877,82.2633997 44.0989204,80.0275811 44.4515554,77.9238635 Z M40.2396959,86.5561926 C34.0122671,80.4976563 32.5435394,69.7540072 37.578208,63.7326347 C41.8359458,58.6404572 45.514407,49.1967253 48.8926317,42.6675909 C49.3359723,41.8107414 49.7000053,45.856635 50.1336349,45.1166021 C52.2565274,41.4936708 54.3447415,34.6148869 56.3240055,36.1123293 C57.6113256,37.086271 58.6514818,38.7243188 59.444474,41.0264726 C59.693079,41.7482034 58.1900339,44.549961 58.3932159,45.7508966 C58.5899049,46.9134552 60.4942494,46.4601232 60.6483721,48.0717491 C60.852478,50.2060379 61.0746528,54.2934874 61.3148965,60.3340979 L56.2649891,67.9021877 L61.5880357,61.5742702 C61.7670679,62.5300099 61.647766,63.8057737 61.2301298,65.4015615 C60.8124936,66.9973493 60.0654569,68.7351614 58.9890197,70.614998 L53.3279245,79.2015802 L59.0285247,71.800002 C57.8294934,76.2903634 56.2577765,79.63424 54.3133738,81.8316318 C52.3689712,84.0290236 45.5920131,86.5137857 42.5902095,87.9187005 L35.6887644,111.356257 L40.2396959,86.5561926 Z" id="Combined-Shape-Copy" fill="#6CD5DB" />
|
||||
<path d="M8.95610572,94.7423047 C17.4857302,91.4180334 26.4418359,89.7558978 35.8244229,89.7558978 C45.2070098,89.7558978 55.016078,91.4180334 65.2516274,94.7423047 C61.8397776,106.529984 57.5749653,113.33054 52.4571906,115.143974 C44.7805286,117.864125 36.5464962,120.191702 23.0299861,114.237257 C14.0189794,110.267627 9.32768597,103.76931 8.95610572,94.7423047 Z" id="Path-33" fill="url(#linearGradient-6)" opacity="0.650701993" />
|
||||
<path d="M6.39721837,87.1914435 C20.0446176,99.1588966 33.6920168,102.578169 47.3394159,97.4492604 C60.9868151,92.320352 68.236996,88.9010797 69.0899584,87.1914435 C63.9721837,109.416713 60.1338527,122.238985 57.5749653,125.658257 C53.7366343,130.787165 49.8983033,137.198301 34.5449792,134.633847 C19.1916551,132.069392 15.3564047,124.520972 12.7944367,119.247121 C11.0864581,115.731221 8.95405197,105.045995 6.39721837,87.1914435 Z" id="Path-32" fill="url(#linearGradient-7)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 93 KiB |
149
media/images/custom-software-workflow.max-165x165.svg
Normal file
@@ -0,0 +1,149 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="165" height="72" viewBox="0.0 0.0 778.0 343.0" version="1.1">
|
||||
|
||||
<title>flexible-workflow</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="66.4117894%" y1="32.3453762%" x2="99.7846132%" y2="22.0365065%" id="linearGradient-1">
|
||||
<stop stop-color="#000000" stop-opacity="0.6" offset="0%" />
|
||||
<stop stop-color="#929292" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-2">
|
||||
<stop stop-color="#FEB755" offset="0%" />
|
||||
<stop stop-color="#FDDC7D" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-3">
|
||||
<stop stop-color="#FFE579" offset="0%" />
|
||||
<stop stop-color="#FCD97E" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-4">
|
||||
<stop stop-color="#FFCA49" offset="0%" />
|
||||
<stop stop-color="#FBDB87" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="81.2942926%" x2="9.34754907%" y2="43.0125155%" id="linearGradient-5">
|
||||
<stop stop-color="#F4AF94" offset="0%" />
|
||||
<stop stop-color="#F5B299" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="81.2942926%" x2="9.34754907%" y2="43.0125155%" id="linearGradient-6">
|
||||
<stop stop-color="#F5B197" offset="0%" />
|
||||
<stop stop-color="#F5B197" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="78.8015673%" y1="100%" x2="38.0138926%" y2="8.83330623%" id="linearGradient-7">
|
||||
<stop stop-color="#2F2525" offset="0%" />
|
||||
<stop stop-color="#403F3F" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="-56.9962227%" x2="46.5741597%" y2="100%" id="linearGradient-8">
|
||||
<stop stop-color="#FFFFFF" offset="0%" />
|
||||
<stop stop-color="#FFFFFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="66.4117894%" y1="32.3453762%" x2="100%" y2="21.9699735%" id="linearGradient-9">
|
||||
<stop stop-color="#000000" stop-opacity="0.6" offset="0%" />
|
||||
<stop stop-color="#929292" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="-42.574281%" y1="-64.6560232%" x2="216.896587%" y2="-33.9874405%" id="linearGradient-10">
|
||||
<stop stop-color="#CDBFE7" offset="0%" />
|
||||
<stop stop-color="#ECE7F9" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="83.3402024%" x2="62.8387316%" y2="56.782133%" id="linearGradient-11">
|
||||
<stop stop-color="#F7BAA2" offset="0%" />
|
||||
<stop stop-color="#F5B197" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="86.6491254%" y1="68.2749936%" x2="35.1057959%" y2="89.9710366%" id="linearGradient-12">
|
||||
<stop stop-color="#C3C9D6" offset="0%" />
|
||||
<stop stop-color="#E5EEFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="86.64913%" cy="68.2750136%" fx="86.64913%" fy="68.2750136%" r="103.518963%" gradientTransform="translate(0.866491,0.682750),scale(1.000000,0.721558),rotate(-146.828405),translate(-0.866491,-0.682750)" id="radialGradient-13">
|
||||
<stop stop-color="#E5EEFF" offset="0%" />
|
||||
<stop stop-color="#FFFFFF" offset="100%" />
|
||||
</radialGradient>
|
||||
<linearGradient x1="88.6574787%" y1="54.5032706%" x2="0%" y2="21.586119%" id="linearGradient-14">
|
||||
<stop stop-color="#F8BEA7" offset="0%" />
|
||||
<stop stop-color="#F2A384" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="86.6491296%" cy="68.2749872%" fx="86.6491296%" fy="68.2749872%" r="105.352006%" gradientTransform="translate(0.866491,0.682750),scale(1.000000,0.750000),rotate(161.100124),translate(-0.866491,-0.682750)" id="radialGradient-15">
|
||||
<stop stop-color="#E5EEFF" offset="0%" />
|
||||
<stop stop-color="#E3ECFD" offset="0%" />
|
||||
<stop stop-color="#E3ECFD" offset="21.7971654%" />
|
||||
<stop stop-color="#C2C9D6" offset="100%" />
|
||||
</radialGradient>
|
||||
<linearGradient x1="61.6573647%" y1="3.44584041%" x2="33.6179939%" y2="86.3530464%" id="linearGradient-16">
|
||||
<stop stop-color="#0D337C" offset="0%" />
|
||||
<stop stop-color="#04245D" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="60.3462783%" y1="11.8964806%" x2="50%" y2="63.0288234%" id="linearGradient-17">
|
||||
<stop stop-color="#F59BA9" offset="0%" />
|
||||
<stop stop-color="#F25267" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="-42.574281%" y1="-64.6560232%" x2="216.896587%" y2="-33.9874405%" id="linearGradient-18">
|
||||
<stop stop-color="#F5B398" offset="0%" />
|
||||
<stop stop-color="#EB9D7E" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="20.2206053%" y1="69.6112686%" x2="27.9082977%" y2="9.6948922%" id="linearGradient-19">
|
||||
<stop stop-color="#D5D5E2" offset="0%" />
|
||||
<stop stop-color="#F6F6FF" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="6.91688929%" y1="50%" x2="92.7657572%" y2="50%" id="linearGradient-20">
|
||||
<stop stop-color="#8C95CA" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="59.7528456%" y1="27.3752585%" x2="59.7528458%" y2="129.42446%" id="linearGradient-21">
|
||||
<stop stop-color="#5640A6" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="59.7528456%" y1="27.3752585%" x2="59.7528458%" y2="130.821243%" id="linearGradient-22">
|
||||
<stop stop-color="#1B0D4F" offset="0%" />
|
||||
<stop stop-color="#5640A6" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="StartUp" transform="translate(-377.000000, -1658.000000)" fill-rule="nonzero">
|
||||
<g id="flexible-workflow" transform="translate(377.000000, 1658.000000)">
|
||||
<g id="Group-8" transform="translate(406.000000, 164.500000) scale(-1, 1) translate(-406.000000, -164.500000) translate(314.000000, 0.000000)">
|
||||
<path d="M141.442928,97.8575371 C142.065874,95.1631083 142.687203,92.7886854 143.306887,90.7343738 L157.202332,44.669588 L156.557407,44.0651466 L142.661962,90.1299324 C136.761005,109.692192 130.758544,157.639673 124.630903,234.060865 L125.354138,234.241042 C130.713832,167.397337 135.9792,122.369808 141.134298,99.2180399 L141.411832,99.7263844 L154.875801,75.1220412 L154.380587,74.2149837 L141.442928,97.8575371 Z M121.904368,241.305063 C106.079665,211.879592 98.3141945,164.412758 111.107939,135.167787 C121.927402,110.435788 131.274848,64.568892 139.859355,32.8577923 C140.98594,28.696193 141.910995,48.3465369 143.012904,44.7523 C148.407449,27.1562251 153.713872,-6.25307407 158.743437,1.01979593 C162.014685,5.75009585 164.657856,13.7058666 166.672952,24.8871083 C167.30469,28.3924548 163.485257,42.0002026 164.001569,47.8329803 C164.501381,53.4793663 169.340567,51.2775955 169.732213,59.105039 C170.250873,69.4709833 170.815447,89.3231588 171.425938,118.661566 L158.593469,155.418728 L172.12002,124.684911 C172.574964,129.326806 172.271802,135.523013 171.210535,143.273533 C170.149267,151.024053 168.25095,159.464366 165.515584,168.594471 L151.130008,210.29831 L165.615971,174.349871 C162.569077,196.158933 158.575141,212.399678 153.634162,223.072105 C148.693183,233.744533 134.805056,234.481587 127.177084,241.305063 L118.159826,326.074767 L121.904368,241.305063 Z M128.705542,205.250814 L142.079883,177.054598 L141.49504,176.260586 L128.120699,204.456803 L128.705542,205.250814 Z" id="Combined-Shape-Copy-2" fill-opacity="0.05" fill="#5763AB" />
|
||||
<path d="M77.3433518,133.224017 L78.0535591,133.426432 L86.36115,108.199621 L85.3626185,107.915031 L77.2625698,132.51162 C77.035281,130.417475 76.9216344,128.525519 76.9216344,126.835835 L76.9216344,88.2016763 L75.8917623,88.2016763 L75.8917623,126.835835 C75.8917623,136.428099 79.4922405,152.385635 86.6939473,174.722906 L60.3910312,146.182132 L59.606048,146.787444 L87.4243773,176.972563 C92.4632426,192.385702 99.1534236,210.72442 107.495154,231.993207 L108.463191,231.667818 C100.1846,210.560014 93.5354515,192.342159 88.5159764,177.018671 L88.6876806,176.886267 L88.3543724,176.524601 C82.1965688,157.670649 78.5260846,143.234345 77.3433518,133.224017 Z M97.5621658,241.904216 C80.1979221,196.95491 40.1913715,177.393109 44.2244372,155.750435 C51.7381897,115.429321 50.9572198,65.3975228 75.6810829,69.9357969 C92.1636583,72.961313 107.613161,92.1076344 122.029592,127.374761 L105.441092,153.527126 L125.133825,130.867353 C127.426777,133.608005 129.35642,137.825289 130.922753,143.519206 C132.489086,149.213122 133.272252,155.869692 133.272252,163.488916 L123.757741,179.896774 L135.539174,167.171669 C139.871354,183.230899 140.954399,196.24887 138.788309,206.225582 C137.813136,210.717098 119.603851,220.407053 112.78922,235.554665 C107.241044,247.887193 107.241044,275.968846 112.78922,319.799625 C105.439571,275.121922 100.363887,249.156786 97.5621658,241.904216 Z M101.409459,209.960634 L107.299926,183.466078 L106.210801,183.289624 L100.320334,209.78418 L101.409459,209.960634 Z" id="Combined-Shape" fill="#78D0D6" transform="translate(91.906013, 194.723778) rotate(-22.000000) translate(-91.906013, -194.723778) " />
|
||||
</g>
|
||||
<g id="Group-11" transform="translate(479.000000, 58.000000)">
|
||||
<path d="M157.702703,241.907713 L208.837838,102.568871 C209.612613,97.1501377 208.45045,93.2796143 205.351351,90.9573003 C202.252252,88.6349862 198.765766,87.0867769 194.891892,86.3126722 L85.648649,66.5730028 C81.774775,65.7988981 79.063063,66.1859504 77.513514,67.7341598 C75.963964,69.2823691 68.603604,81.6680441 55.432432,104.891185 L8.945946,194.300275 L157.702703,241.907713 Z" id="Path-18" fill="#CECECE" />
|
||||
<path d="M128.648649,257.002755 C144.22248,249.771017 153.907165,243.06211 157.702703,236.876033 C172.894647,212.115765 171.179997,182.670574 169.324324,168.367769 C162.662874,117.023885 141.950407,104.610226 134.459459,94.053719 C132.802268,91.7183465 134.459459,75.4752066 134.459459,75.4752066 C134.459459,75.4752066 130.972973,74.7011019 124,73.1528926 L75.189189,88.2479339 L4.297297,190.429752 L128.648649,257.002755 Z" id="Path-18" fill-opacity="0.5" fill="url(#linearGradient-1)" opacity="0.679574275" />
|
||||
<path d="M82.162162,217.296708 C110.054054,225.811859 125.54955,228.134173 128.648649,224.26365 C131.580176,220.60241 141.906526,180.017677 130.972973,112.632231 C130.556317,110.064307 125.132894,107.795441 114.702703,105.825633 L107.72973,103.503319 C99.981982,112.018471 93.009009,115.888994 86.810811,115.11489 C77.513514,113.953733 76.351351,108.147947 77.513514,105.825633 C78.675676,103.503319 63.567568,101.181005 55.432432,106.98679 C50.009009,110.857314 36.837838,139.832791 15.918919,193.913223 L82.162162,217.296708 Z" id="Path-19" fill="url(#linearGradient-2)" />
|
||||
<path d="M79.837838,217.136364 C105.405405,211.717631 118.576577,207.460055 119.351351,204.363636 C119.97253,201.881072 122.216396,201.037522 119.351351,160.239669 C118.879065,153.514382 120.428615,136.871131 124,110.309917 C125.54955,107.987603 128.648649,109.14876 133.297297,113.793388 C140.27027,120.760331 149.567568,146.305785 150.72973,169.528926 C151.891892,192.752066 151.891892,214.81405 148.405405,222.942149 C146.081081,228.360882 135.621622,230.296143 117.027027,228.747934 L79.837838,217.136364 Z" id="Path-20" fill="url(#linearGradient-3)" />
|
||||
<path d="M0.810811,188.107438 C7.783784,183.46281 12.432432,179.205234 14.756757,175.334711 C18.243243,169.528926 33.351351,134.694215 38,126.566116 C42.648649,118.438017 55.432432,104.504132 60.081081,104.504132 C64.72973,104.504132 54.27027,105.665289 54.27027,112.632231 C54.27027,119.599174 49.621622,132.371901 46.135135,145.144628 C42.648649,157.917355 39.162162,174.173554 32.189189,183.46281 C27.540541,189.655647 23.279279,193.526171 19.405405,195.07438 L0.810811,188.107438 Z" id="Path-21" fill="url(#linearGradient-4)" />
|
||||
<g id="Group-17" transform="translate(54.270270, 0.000000)">
|
||||
<path d="M3.48648649,89.76637 C5.03603604,74.2842763 5.81081081,65.7691248 5.81081081,64.2209154 C5.81081081,61.8986014 1.16216216,60.7374444 1.16216216,58.4151303 C1.16216216,56.0928163 11.6216216,52.6093452 13.9459459,47.9647171 C15.4954955,44.8682984 15.8828829,37.9013562 15.1081081,27.0638907 C14.3333333,18.5487391 18.981982,15.0652681 29.0540541,16.6134774 C44.1621622,18.9357915 67.4054054,36.3531469 67.4054054,45.6424031 C67.4054054,54.9316592 66.2432432,78.1547997 58.1081081,87.4440559 C52.6846847,93.6368934 34.4774775,94.4109981 3.48648649,89.76637 Z" id="Path-25" fill="url(#linearGradient-5)" />
|
||||
<path d="M27.8918919,95.214876 C24.018018,102.955923 22.0810811,107.987603 22.0810811,110.309917 C22.0810811,113.793388 33.7027027,121.921488 39.5135135,118.438017 C45.3243243,114.954545 54.6216216,106.826446 54.6216216,102.181818 C54.6216216,99.0853994 56.9459459,87.0867769 61.5945946,66.1859504 L41.8378378,71.9917355 L27.8918919,95.214876 Z" id="Path-23" fill="url(#linearGradient-6)" />
|
||||
<path d="M20.0692775,36.3829201 C12.3215297,34.8347107 8.44765585,30.1900826 8.44765585,22.4490358 C8.44765585,10.8374656 15.4206288,3.87052342 18.9071153,1.54820937 C21.2314396,-2.22044605e-16 22.3936018,-0.387052342 22.3936018,0.387052342 C20.8440522,1.16115702 21.2314396,2.70936639 23.555764,5.03168044 C27.0422504,8.51515152 28.2044126,11.9986226 36.3395477,13.1597796 C44.4746829,14.3209366 54.9341423,14.3209366 63.0692775,20.1267218 C71.2044126,25.9325069 81.6638721,41.0275482 78.1773856,56.1225895 C74.6908991,71.2176309 64.2314396,86.3126722 59.582791,92.1184573 C56.4836919,95.9889807 54.9341423,98.6983471 54.9341423,100.246556 L58.4206288,77.023416 L45.636845,71.2176309 C44.8620703,79.7327824 43.3125207,85.9256198 40.9881964,89.7961433 C37.5017099,95.6019284 31.6908991,99.0853994 7.28549369,95.6019284 C4.20733953,95.2602071 1.27695088,94.7229242 0.312520713,92.1184573 C-0.501014624,89.9214855 0.273760151,84.5027528 2.63684504,75.862259 C4.18639459,78.9586777 5.73594414,80.5068871 7.28549369,80.5068871 C9.60981801,80.5068871 13.0963045,81.6680441 11.9341423,79.34573 C11.1593676,77.7975207 8.06026846,75.4752066 2.63684504,72.3787879 L4.96116936,65.4118457 C10.3845928,66.9600551 13.4836919,68.8953168 14.2584667,71.2176309 C15.4206288,74.7011019 21.2314396,81.6680441 24.7179261,81.6680441 C28.2044126,81.6680441 34.0152234,80.5068871 36.3395477,77.023416 C38.6638721,73.5399449 47.9611694,61.9283747 46.7990072,52.6391185 C45.636845,43.3498623 42.1503586,41.0275482 37.5017099,39.8663912 C34.4026108,39.0922865 28.5918,37.9311295 20.0692775,36.3829201 Z" id="Path-26" fill="url(#linearGradient-7)" />
|
||||
<path d="M43,84.0387397 L45.3243243,81.7164256 C47.6486486,83.264635 49.972973,83.6516873 52.2972973,82.8775826 C55.7837838,81.7164256 60.4324324,73.5883264 59.2702703,70.1048554 C58.1081081,66.6213843 55.7837838,65.4602273 52.2972973,66.6213843 C48.8108108,67.7825413 45.3243243,70.1048554 45.3243243,73.5883264 C45.3243243,75.9106405 44.5495495,79.3941116 43,84.0387397 Z" id="Path-24" fill="#FECBB7" />
|
||||
</g>
|
||||
<path d="M71.287645,103.559591 C68.741956,106.65601 68.741956,110.526533 71.287645,115.171161 C75.106178,122.138104 87.557915,123.299261 95.69305,119.81579 C101.116474,117.493476 106.927284,112.848847 113.125483,105.881905 L107.314672,103.559591 C99.34556,111.300638 92.261905,115.171161 86.063707,115.171161 C76.766409,115.171161 76.766409,109.365376 76.766409,105.881905 C76.766409,105.072965 78.371754,103.992823 77.928571,103.559591 C77.633116,103.27077 75.419474,103.27077 71.287645,103.559591 Z" id="Path-22" fill-opacity="0.1" fill="#000000" />
|
||||
</g>
|
||||
<path d="M150.410256,287 L105.160256,156.108979 C103.613248,151.475668 103.613248,147.614576 105.160256,144.525703 C106.707265,141.436829 114.82906,138.734064 129.525641,136.417409 L222.346154,119.042495 C226.987179,116.72584 230.467949,118.270276 232.788462,123.675805 C235.108974,129.081334 252.512821,175.02833 285,261.516792 L150.410256,287 Z" id="Path-6" fill="#7C86C1" />
|
||||
<path d="M0.808063242,343 C9.67455924,338.878895 312.221473,203.065638 342.738538,203.065638 C376.415683,203.065638 370.190377,198.417953 384.125747,203.065638 C393.415995,206.164095 556.582445,263.989348 778,343 L0.808063242,343 Z" id="Path-4" fill="url(#linearGradient-8)" />
|
||||
<g id="Group-2" transform="translate(131.000000, 33.000000)">
|
||||
<path d="M16.1188991,119.097175 C12.8951191,125.523372 7.52215302,128.736471 7.52215302,135.162668 C7.52215302,141.588866 10.745933,149.086098 8.59674605,153.370229 C6.44756,157.654361 0,174.790888 0,184.430185 C0,194.069482 20.1794739,198.715868 32,203 C39.8803501,205.856088 49.2727575,211.447512 60.1772224,219.774272 C65.5501884,212.277042 74.1469345,196.211547 67.6993754,183.359152 C61.2518154,170.506756 49.4312903,164.080559 49.4312903,151.228163 C49.4312903,138.375768 56.9534424,140.517833 56.9534424,130.878537 C56.9534424,121.23924 54.8042563,114.813042 56.9534424,108.386845 C58.5867956,103.503021 50.0272463,103.936422 37.6107642,109.457878 C33.6894793,111.201624 19.3426791,113.74201 18.9435234,113.821768 C16.9346238,114.223185 16.5688204,118.200314 16.1188991,119.097175 Z" id="Path-12" fill-opacity="0.25" fill="url(#linearGradient-9)" opacity="0.306668931" />
|
||||
<polygon id="Path-7" fill="url(#linearGradient-10)" points="90 91.789474 90 108 64 108 64 86" />
|
||||
<polygon id="Path-7" fill="url(#linearGradient-11)" points="90 91.789474 90 108 64 108 64 86" />
|
||||
<path d="M89,101 C102.924528,104.101449 111.820755,107.978261 115.688679,112.630435 C119.556604,117.282609 133.867925,138.217391 158.622642,175.434783 L212,187.065217 L203.877358,208 L136.575472,196.369565 L130.773585,187.065217 L89,101 Z" id="Path-9" fill="url(#linearGradient-12)" />
|
||||
<path d="M69.148531,101 C73.039128,105.631579 77.318785,107.947368 81.987501,107.947368 C86.656217,107.947368 88.990575,105.631579 88.990575,101 C92.103052,102.54386 97.160828,105.631579 104.163902,110.263158 C114.668513,117.210526 131.701421,148.177839 134.510556,164.684211 C136.383313,175.688458 132.881776,187.653371 124.005945,200.578947 L69.148531,225 C52.029906,163.245614 41.525295,115.666667 46.97213,110.263158 C52.418965,104.859649 59.811099,101.77193 69.148531,101 Z" id="Path-8" fill="url(#radialGradient-13)" />
|
||||
<path d="M97.799901,35.5007964 C100.921462,44.0582986 103.262632,49.8929592 104.823413,53.0047781 C107.164583,57.6725066 113.01751,61.173303 111.846925,63.5071672 C110.676339,65.8410314 107.164583,64.6740993 107.164583,68.1748957 C107.164583,71.675692 111.846925,84.511945 109.505754,86.84581 C107.164583,89.179674 91.946974,95.014334 83.752877,93.847402 C78.290145,93.069448 70.096048,89.179674 59.170585,82.178081 L58,32 L97.799901,35.5007964 Z" id="Path-11" fill="url(#linearGradient-14)" />
|
||||
<path d="M88.26957,54.3674048 C88.21284,49.0927228 90.782673,44.9090909 94.16833,44.9090909 C96.691535,44.9090909 98.972385,47.2327503 100.145245,50.599952 L103.292098,48.4545455 L103.434431,48.7456581 C103.374106,48.36073 103.332184,47.9676483 103.310069,47.5681818 C103.048085,42.8361057 105.681416,39 109.191779,39 C112.702142,39 115.74342,42.8361057 115.984663,47.5681818 C116.225906,52.300258 113.592575,56.1363636 110.102952,56.1363636 C107.521192,56.1363636 105.184838,54.0366227 104.037834,51.0277797 L100.708156,52.7303168 C100.841593,53.4457781 100.927977,54.1901924 100.961214,54.9545455 C101.202457,60.5024968 98.569125,65 95.079503,65 C92.521679,65 90.204732,62.5836707 89.046593,59.1084663 L64,60.2727273 L64,59.0909091 L88.268649,54.3636364 L88.26957,54.3674048 Z M94.955004,62.2627722 C97.493759,62.2627722 99.40955,58.9907676 99.234042,54.9545455 C99.058534,50.9183233 96.845956,47.6463187 94.292111,47.6463187 C91.738267,47.6463187 89.822477,50.9183233 90.013074,54.9545455 C90.203671,58.9907676 92.416249,62.2627722 94.955004,62.2627722 Z M109.992665,54.0681818 C112.639965,54.0681818 114.637665,51.1580327 114.454653,47.5681818 C114.271641,43.9783309 111.964465,41.0681818 109.301431,41.0681818 C106.638397,41.0681818 104.640697,43.9783309 104.839443,47.5681818 C105.03819,51.1580327 107.345366,54.0681818 109.992665,54.0681818 Z" id="Combined-Shape" fill="#220F65" />
|
||||
<path d="M108.304407,71.5217391 C108.304407,70.826087 107.916723,70.826087 107.141356,71.5217391 C105.978305,72.5652174 102.489153,73.6086957 101.326102,73.6086957 C100.550734,73.6086957 99.775367,73.6086957 99,73.6086957 C101.326102,75 103.652203,75.3478261 105.978305,74.6521739 C109.467458,73.6086957 109.467458,72.3043478 108.304407,72.9488491 C107.52904,73.3785166 107.52904,72.9028133 108.304407,71.5217391 Z" id="Path-15" fill="#220F65" />
|
||||
<path d="M48.525555,109 C35.244142,123.1118 26.691561,138.222911 22.867812,154.333333 C19.044063,170.443756 19.044063,191.366833 22.867812,217.102564 C32.1979,225.626781 42.694249,231.438746 54.35686,234.538462 C66.01947,237.638177 86.623415,241.125356 116.168695,245 C115.391187,238.025641 115.779941,232.988604 117.334956,229.888889 C118.889971,226.789174 120.444985,224.076923 122,221.752137 C115.002434,220.977208 107.22736,219.42735 98.674779,217.102564 C90.122198,214.777778 76.127066,210.128205 56.689382,203.153846 C55.911875,160.532764 54.745613,135.347578 53.190599,127.598291 C51.635584,119.849003 50.080569,113.649573 48.525555,109 Z" id="Path-10" fill="url(#radialGradient-15)" />
|
||||
<path d="M62.297866,33.693354 C71.56706,39.502553 80.450038,41.4389527 88.946799,39.502553 C101.691941,36.5979535 110.961135,25.5604755 108.643836,15.1039173 C106.326538,4.6473592 100.533292,0 92.422747,0 C87.015717,0 84.312202,2.7109595 84.312202,8.1328786 C65.773814,5.0346391 53.028672,7.3583187 46.076776,15.1039173 C35.648933,26.7223153 32.172985,30.2078347 32.172985,46.4735918 C32.172985,62.7393489 35.648933,59.2538295 32.172985,63.9011887 C28.697037,68.5485479 24.06244,72.0340673 24.06244,81.328786 C24.06244,90.623504 29.855687,96.432703 26.379739,103.403742 C22.903791,110.37478 17.110545,113.8603 17.110545,120.831339 C17.110545,127.802377 20.586493,135.935256 18.269194,140.582615 C15.951896,145.229974 9,163.819411 9,174.275969 C9,184.732527 26.379739,209.131163 39.124881,213.778522 C51.870023,218.425881 68.091112,220.749561 73.884359,212.616682 C79.677605,204.483804 88.946799,187.056207 81.994903,173.114129 C75.043008,159.172052 62.297866,152.201013 62.297866,138.258936 C62.297866,124.316858 70.408411,126.640538 70.408411,116.183979 C70.408411,105.727421 68.091112,98.756383 70.408411,91.785344 C72.725709,84.814305 71.56706,72.0340673 68.091112,67.3867081 C64.615164,62.7393489 62.297866,58.0919897 62.297866,52.2827907 C62.297866,46.4735918 65.773814,42.9880724 64.615164,39.502553 C63.842732,37.1788734 63.070299,35.2424738 62.297866,33.693354 Z" id="Path-12" fill="url(#linearGradient-16)" />
|
||||
<path d="M134,248 L140.956532,186.615958 C177.642047,185.471144 205.081702,184.699017 223.275499,184.299579 C241.469296,183.90014 249.198776,183.90014 246.463941,184.299579 L234.86972,243.367242 L134,248 Z" id="Path-16" fill="url(#linearGradient-17)" />
|
||||
<path d="M120.96732,222.275862 L141.751634,217.586207 C144.061002,216.804598 145.985476,216.804598 147.525054,217.586207 C149.064633,218.367816 145.215686,221.103448 135.978214,225.793103 C142.136529,228.137931 146.755265,229.701149 149.834423,230.482759 C152.91358,231.264368 156.762527,231.655172 161.381264,231.655172 C164.460421,233.218391 165.230211,234.390805 163.690632,235.172414 C162.151053,235.954023 155.992738,235.954023 145.215686,235.172414 C148.294844,236.735632 150.604212,237.517241 152.143791,237.517241 C153.68337,237.517241 157.532317,237.517241 163.690632,237.517241 C165.230211,237.517241 166,237.908046 166,238.689655 C166,239.471264 165.230211,239.862069 163.690632,239.862069 L144.061002,241.034483 C146.37037,241.816092 147.909949,242.206897 148.679739,242.206897 C149.449528,242.206897 153.298475,242.206897 160.22658,242.206897 C161.766158,242.206897 162.535948,242.597701 162.535948,243.37931 C162.535948,244.16092 161.381264,244.942529 159.071895,245.724138 L139.442266,246.896552 C143.291213,247.678161 145.985476,248.068966 147.525054,248.068966 C149.064633,248.068966 151.374001,248.068966 154.453159,248.068966 C155.222948,248.068966 155.607843,248.45977 155.607843,249.241379 C155.607843,250.022989 154.838054,250.413793 153.298475,250.413793 C142.521423,251.195402 135.978214,251.195402 133.668845,250.413793 C130.204793,249.241379 117.503268,244.551724 114.039216,243.37931 C111.729847,242.597701 113.269426,235.954023 118.657952,223.448276 L120.96732,222.275862 Z" id="Path-17" fill="url(#linearGradient-18)" />
|
||||
</g>
|
||||
<path d="M551.27463,272.917184 L482.638158,300 L379,259.473684 L461.008837,234.206061 C461.441829,234.072653 461.907289,234.090216 462.328996,234.255875 L551.271805,269.195256 C552.299894,269.59912 552.805929,270.759948 552.402065,271.788037 C552.199172,272.304528 551.790813,272.713507 551.27463,272.917184 Z" id="Path-27" fill="#E4E4E9" />
|
||||
<path d="M533.238702,273.606102 L489.304544,292 L421,263.660013 L474.784486,246.076998 C475.239746,245.928166 475.733301,245.947658 476.175406,246.131931 L533.235778,269.915202 C534.255329,270.34016 534.737342,271.511166 534.312384,272.530717 C534.109914,273.016479 533.724142,273.402863 533.238702,273.606102 Z" id="Path-27" fill="#5763AB" opacity="0.400305707" />
|
||||
<path d="M378.566038,259.324324 L360.70349,174.346715 C360.476271,173.265768 361.168355,172.205291 362.249302,171.978073 C362.585456,171.907412 362.934145,171.924522 363.261767,172.027752 L462.151008,203.186827 C462.843857,203.405137 463.363857,203.98196 463.509403,204.693659 L483,300 L378.566038,259.324324 Z" id="Path-28" fill="url(#linearGradient-19)" />
|
||||
<path d="M420.5,244.560055 C427.955844,246.29403 434,242.74794 434,236.63964 C434,230.531341 427.955844,224.173921 420.5,222.439945 C413.044156,220.70597 407,224.25206 407,230.36036 C407,236.468659 413.044156,242.826079 420.5,244.560055 Z" id="Oval-2" fill-opacity="0.1" fill="#000000" />
|
||||
<g id="Group-15" transform="translate(548.000000, 283.000000)">
|
||||
<g id="Group-14" transform="translate(0.195122, 0.000000)">
|
||||
<path d="M0.292682927,5.75546976 C-0.682926829,18.2256542 1.26829268,25.4199914 6.14634146,27.3384813 C13.4634146,30.2162162 22.2439024,30.2162162 29.5609756,27.3384813 C34.4390244,25.4199914 35.902439,18.2256542 33.9512195,5.75546976 L0.292682927,5.75546976 Z" id="Path-36" fill="url(#linearGradient-20)" />
|
||||
<ellipse id="Oval-4" fill="url(#linearGradient-21)" cx="17.1219512" cy="5.75546976" rx="16.8292683" ry="5.75546976" />
|
||||
<path d="M17.1219512,11.5109395 C26.4164994,11.5109395 31.6097561,10.2225337 31.6097561,8.63320463 C31.6097561,7.04387555 26.4164994,4.64864865 17.1219512,4.64864865 C7.82740299,4.64864865 2.34146341,6.54580605 2.34146341,8.13513514 C2.34146341,9.72446422 7.82740299,11.5109395 17.1219512,11.5109395 Z" id="Oval-4" fill="url(#linearGradient-22)" />
|
||||
<path d="M34.6056784,10.2423529 L33.2967606,9.5988718 C34.8725622,6.50013332 36.7881507,5.55840504 38.6277932,7.36718952 C40.3895443,9.09938915 37.4825134,16.2353273 33.1152387,23.3920246 L33.3237857,19.7739985 C37.2748678,13.2993202 38.6040373,9.37869796 37.5930027,8.38462244 C36.6598596,7.46713177 35.8026624,7.88854107 34.6056784,10.2423529 Z" id="Path-37" fill="#5640A6" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 28 KiB |
149
media/images/custom-software-workflow.max-800x600.svg
Normal file
@@ -0,0 +1,149 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="778.0" height="343.0" viewBox="0.0 0.0 778.0 343.0" version="1.1">
|
||||
|
||||
<title>flexible-workflow</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="66.4117894%" y1="32.3453762%" x2="99.7846132%" y2="22.0365065%" id="linearGradient-1">
|
||||
<stop stop-color="#000000" stop-opacity="0.6" offset="0%" />
|
||||
<stop stop-color="#929292" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-2">
|
||||
<stop stop-color="#FEB755" offset="0%" />
|
||||
<stop stop-color="#FDDC7D" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-3">
|
||||
<stop stop-color="#FFE579" offset="0%" />
|
||||
<stop stop-color="#FCD97E" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-4">
|
||||
<stop stop-color="#FFCA49" offset="0%" />
|
||||
<stop stop-color="#FBDB87" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="81.2942926%" x2="9.34754907%" y2="43.0125155%" id="linearGradient-5">
|
||||
<stop stop-color="#F4AF94" offset="0%" />
|
||||
<stop stop-color="#F5B299" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="81.2942926%" x2="9.34754907%" y2="43.0125155%" id="linearGradient-6">
|
||||
<stop stop-color="#F5B197" offset="0%" />
|
||||
<stop stop-color="#F5B197" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="78.8015673%" y1="100%" x2="38.0138926%" y2="8.83330623%" id="linearGradient-7">
|
||||
<stop stop-color="#2F2525" offset="0%" />
|
||||
<stop stop-color="#403F3F" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="-56.9962227%" x2="46.5741597%" y2="100%" id="linearGradient-8">
|
||||
<stop stop-color="#FFFFFF" offset="0%" />
|
||||
<stop stop-color="#FFFFFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="66.4117894%" y1="32.3453762%" x2="100%" y2="21.9699735%" id="linearGradient-9">
|
||||
<stop stop-color="#000000" stop-opacity="0.6" offset="0%" />
|
||||
<stop stop-color="#929292" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="-42.574281%" y1="-64.6560232%" x2="216.896587%" y2="-33.9874405%" id="linearGradient-10">
|
||||
<stop stop-color="#CDBFE7" offset="0%" />
|
||||
<stop stop-color="#ECE7F9" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="83.3402024%" x2="62.8387316%" y2="56.782133%" id="linearGradient-11">
|
||||
<stop stop-color="#F7BAA2" offset="0%" />
|
||||
<stop stop-color="#F5B197" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="86.6491254%" y1="68.2749936%" x2="35.1057959%" y2="89.9710366%" id="linearGradient-12">
|
||||
<stop stop-color="#C3C9D6" offset="0%" />
|
||||
<stop stop-color="#E5EEFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="86.64913%" cy="68.2750136%" fx="86.64913%" fy="68.2750136%" r="103.518963%" gradientTransform="translate(0.866491,0.682750),scale(1.000000,0.721558),rotate(-146.828405),translate(-0.866491,-0.682750)" id="radialGradient-13">
|
||||
<stop stop-color="#E5EEFF" offset="0%" />
|
||||
<stop stop-color="#FFFFFF" offset="100%" />
|
||||
</radialGradient>
|
||||
<linearGradient x1="88.6574787%" y1="54.5032706%" x2="0%" y2="21.586119%" id="linearGradient-14">
|
||||
<stop stop-color="#F8BEA7" offset="0%" />
|
||||
<stop stop-color="#F2A384" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="86.6491296%" cy="68.2749872%" fx="86.6491296%" fy="68.2749872%" r="105.352006%" gradientTransform="translate(0.866491,0.682750),scale(1.000000,0.750000),rotate(161.100124),translate(-0.866491,-0.682750)" id="radialGradient-15">
|
||||
<stop stop-color="#E5EEFF" offset="0%" />
|
||||
<stop stop-color="#E3ECFD" offset="0%" />
|
||||
<stop stop-color="#E3ECFD" offset="21.7971654%" />
|
||||
<stop stop-color="#C2C9D6" offset="100%" />
|
||||
</radialGradient>
|
||||
<linearGradient x1="61.6573647%" y1="3.44584041%" x2="33.6179939%" y2="86.3530464%" id="linearGradient-16">
|
||||
<stop stop-color="#0D337C" offset="0%" />
|
||||
<stop stop-color="#04245D" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="60.3462783%" y1="11.8964806%" x2="50%" y2="63.0288234%" id="linearGradient-17">
|
||||
<stop stop-color="#F59BA9" offset="0%" />
|
||||
<stop stop-color="#F25267" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="-42.574281%" y1="-64.6560232%" x2="216.896587%" y2="-33.9874405%" id="linearGradient-18">
|
||||
<stop stop-color="#F5B398" offset="0%" />
|
||||
<stop stop-color="#EB9D7E" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="20.2206053%" y1="69.6112686%" x2="27.9082977%" y2="9.6948922%" id="linearGradient-19">
|
||||
<stop stop-color="#D5D5E2" offset="0%" />
|
||||
<stop stop-color="#F6F6FF" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="6.91688929%" y1="50%" x2="92.7657572%" y2="50%" id="linearGradient-20">
|
||||
<stop stop-color="#8C95CA" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="59.7528456%" y1="27.3752585%" x2="59.7528458%" y2="129.42446%" id="linearGradient-21">
|
||||
<stop stop-color="#5640A6" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="59.7528456%" y1="27.3752585%" x2="59.7528458%" y2="130.821243%" id="linearGradient-22">
|
||||
<stop stop-color="#1B0D4F" offset="0%" />
|
||||
<stop stop-color="#5640A6" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="StartUp" transform="translate(-377.000000, -1658.000000)" fill-rule="nonzero">
|
||||
<g id="flexible-workflow" transform="translate(377.000000, 1658.000000)">
|
||||
<g id="Group-8" transform="translate(406.000000, 164.500000) scale(-1, 1) translate(-406.000000, -164.500000) translate(314.000000, 0.000000)">
|
||||
<path d="M141.442928,97.8575371 C142.065874,95.1631083 142.687203,92.7886854 143.306887,90.7343738 L157.202332,44.669588 L156.557407,44.0651466 L142.661962,90.1299324 C136.761005,109.692192 130.758544,157.639673 124.630903,234.060865 L125.354138,234.241042 C130.713832,167.397337 135.9792,122.369808 141.134298,99.2180399 L141.411832,99.7263844 L154.875801,75.1220412 L154.380587,74.2149837 L141.442928,97.8575371 Z M121.904368,241.305063 C106.079665,211.879592 98.3141945,164.412758 111.107939,135.167787 C121.927402,110.435788 131.274848,64.568892 139.859355,32.8577923 C140.98594,28.696193 141.910995,48.3465369 143.012904,44.7523 C148.407449,27.1562251 153.713872,-6.25307407 158.743437,1.01979593 C162.014685,5.75009585 164.657856,13.7058666 166.672952,24.8871083 C167.30469,28.3924548 163.485257,42.0002026 164.001569,47.8329803 C164.501381,53.4793663 169.340567,51.2775955 169.732213,59.105039 C170.250873,69.4709833 170.815447,89.3231588 171.425938,118.661566 L158.593469,155.418728 L172.12002,124.684911 C172.574964,129.326806 172.271802,135.523013 171.210535,143.273533 C170.149267,151.024053 168.25095,159.464366 165.515584,168.594471 L151.130008,210.29831 L165.615971,174.349871 C162.569077,196.158933 158.575141,212.399678 153.634162,223.072105 C148.693183,233.744533 134.805056,234.481587 127.177084,241.305063 L118.159826,326.074767 L121.904368,241.305063 Z M128.705542,205.250814 L142.079883,177.054598 L141.49504,176.260586 L128.120699,204.456803 L128.705542,205.250814 Z" id="Combined-Shape-Copy-2" fill-opacity="0.05" fill="#5763AB" />
|
||||
<path d="M77.3433518,133.224017 L78.0535591,133.426432 L86.36115,108.199621 L85.3626185,107.915031 L77.2625698,132.51162 C77.035281,130.417475 76.9216344,128.525519 76.9216344,126.835835 L76.9216344,88.2016763 L75.8917623,88.2016763 L75.8917623,126.835835 C75.8917623,136.428099 79.4922405,152.385635 86.6939473,174.722906 L60.3910312,146.182132 L59.606048,146.787444 L87.4243773,176.972563 C92.4632426,192.385702 99.1534236,210.72442 107.495154,231.993207 L108.463191,231.667818 C100.1846,210.560014 93.5354515,192.342159 88.5159764,177.018671 L88.6876806,176.886267 L88.3543724,176.524601 C82.1965688,157.670649 78.5260846,143.234345 77.3433518,133.224017 Z M97.5621658,241.904216 C80.1979221,196.95491 40.1913715,177.393109 44.2244372,155.750435 C51.7381897,115.429321 50.9572198,65.3975228 75.6810829,69.9357969 C92.1636583,72.961313 107.613161,92.1076344 122.029592,127.374761 L105.441092,153.527126 L125.133825,130.867353 C127.426777,133.608005 129.35642,137.825289 130.922753,143.519206 C132.489086,149.213122 133.272252,155.869692 133.272252,163.488916 L123.757741,179.896774 L135.539174,167.171669 C139.871354,183.230899 140.954399,196.24887 138.788309,206.225582 C137.813136,210.717098 119.603851,220.407053 112.78922,235.554665 C107.241044,247.887193 107.241044,275.968846 112.78922,319.799625 C105.439571,275.121922 100.363887,249.156786 97.5621658,241.904216 Z M101.409459,209.960634 L107.299926,183.466078 L106.210801,183.289624 L100.320334,209.78418 L101.409459,209.960634 Z" id="Combined-Shape" fill="#78D0D6" transform="translate(91.906013, 194.723778) rotate(-22.000000) translate(-91.906013, -194.723778) " />
|
||||
</g>
|
||||
<g id="Group-11" transform="translate(479.000000, 58.000000)">
|
||||
<path d="M157.702703,241.907713 L208.837838,102.568871 C209.612613,97.1501377 208.45045,93.2796143 205.351351,90.9573003 C202.252252,88.6349862 198.765766,87.0867769 194.891892,86.3126722 L85.648649,66.5730028 C81.774775,65.7988981 79.063063,66.1859504 77.513514,67.7341598 C75.963964,69.2823691 68.603604,81.6680441 55.432432,104.891185 L8.945946,194.300275 L157.702703,241.907713 Z" id="Path-18" fill="#CECECE" />
|
||||
<path d="M128.648649,257.002755 C144.22248,249.771017 153.907165,243.06211 157.702703,236.876033 C172.894647,212.115765 171.179997,182.670574 169.324324,168.367769 C162.662874,117.023885 141.950407,104.610226 134.459459,94.053719 C132.802268,91.7183465 134.459459,75.4752066 134.459459,75.4752066 C134.459459,75.4752066 130.972973,74.7011019 124,73.1528926 L75.189189,88.2479339 L4.297297,190.429752 L128.648649,257.002755 Z" id="Path-18" fill-opacity="0.5" fill="url(#linearGradient-1)" opacity="0.679574275" />
|
||||
<path d="M82.162162,217.296708 C110.054054,225.811859 125.54955,228.134173 128.648649,224.26365 C131.580176,220.60241 141.906526,180.017677 130.972973,112.632231 C130.556317,110.064307 125.132894,107.795441 114.702703,105.825633 L107.72973,103.503319 C99.981982,112.018471 93.009009,115.888994 86.810811,115.11489 C77.513514,113.953733 76.351351,108.147947 77.513514,105.825633 C78.675676,103.503319 63.567568,101.181005 55.432432,106.98679 C50.009009,110.857314 36.837838,139.832791 15.918919,193.913223 L82.162162,217.296708 Z" id="Path-19" fill="url(#linearGradient-2)" />
|
||||
<path d="M79.837838,217.136364 C105.405405,211.717631 118.576577,207.460055 119.351351,204.363636 C119.97253,201.881072 122.216396,201.037522 119.351351,160.239669 C118.879065,153.514382 120.428615,136.871131 124,110.309917 C125.54955,107.987603 128.648649,109.14876 133.297297,113.793388 C140.27027,120.760331 149.567568,146.305785 150.72973,169.528926 C151.891892,192.752066 151.891892,214.81405 148.405405,222.942149 C146.081081,228.360882 135.621622,230.296143 117.027027,228.747934 L79.837838,217.136364 Z" id="Path-20" fill="url(#linearGradient-3)" />
|
||||
<path d="M0.810811,188.107438 C7.783784,183.46281 12.432432,179.205234 14.756757,175.334711 C18.243243,169.528926 33.351351,134.694215 38,126.566116 C42.648649,118.438017 55.432432,104.504132 60.081081,104.504132 C64.72973,104.504132 54.27027,105.665289 54.27027,112.632231 C54.27027,119.599174 49.621622,132.371901 46.135135,145.144628 C42.648649,157.917355 39.162162,174.173554 32.189189,183.46281 C27.540541,189.655647 23.279279,193.526171 19.405405,195.07438 L0.810811,188.107438 Z" id="Path-21" fill="url(#linearGradient-4)" />
|
||||
<g id="Group-17" transform="translate(54.270270, 0.000000)">
|
||||
<path d="M3.48648649,89.76637 C5.03603604,74.2842763 5.81081081,65.7691248 5.81081081,64.2209154 C5.81081081,61.8986014 1.16216216,60.7374444 1.16216216,58.4151303 C1.16216216,56.0928163 11.6216216,52.6093452 13.9459459,47.9647171 C15.4954955,44.8682984 15.8828829,37.9013562 15.1081081,27.0638907 C14.3333333,18.5487391 18.981982,15.0652681 29.0540541,16.6134774 C44.1621622,18.9357915 67.4054054,36.3531469 67.4054054,45.6424031 C67.4054054,54.9316592 66.2432432,78.1547997 58.1081081,87.4440559 C52.6846847,93.6368934 34.4774775,94.4109981 3.48648649,89.76637 Z" id="Path-25" fill="url(#linearGradient-5)" />
|
||||
<path d="M27.8918919,95.214876 C24.018018,102.955923 22.0810811,107.987603 22.0810811,110.309917 C22.0810811,113.793388 33.7027027,121.921488 39.5135135,118.438017 C45.3243243,114.954545 54.6216216,106.826446 54.6216216,102.181818 C54.6216216,99.0853994 56.9459459,87.0867769 61.5945946,66.1859504 L41.8378378,71.9917355 L27.8918919,95.214876 Z" id="Path-23" fill="url(#linearGradient-6)" />
|
||||
<path d="M20.0692775,36.3829201 C12.3215297,34.8347107 8.44765585,30.1900826 8.44765585,22.4490358 C8.44765585,10.8374656 15.4206288,3.87052342 18.9071153,1.54820937 C21.2314396,-2.22044605e-16 22.3936018,-0.387052342 22.3936018,0.387052342 C20.8440522,1.16115702 21.2314396,2.70936639 23.555764,5.03168044 C27.0422504,8.51515152 28.2044126,11.9986226 36.3395477,13.1597796 C44.4746829,14.3209366 54.9341423,14.3209366 63.0692775,20.1267218 C71.2044126,25.9325069 81.6638721,41.0275482 78.1773856,56.1225895 C74.6908991,71.2176309 64.2314396,86.3126722 59.582791,92.1184573 C56.4836919,95.9889807 54.9341423,98.6983471 54.9341423,100.246556 L58.4206288,77.023416 L45.636845,71.2176309 C44.8620703,79.7327824 43.3125207,85.9256198 40.9881964,89.7961433 C37.5017099,95.6019284 31.6908991,99.0853994 7.28549369,95.6019284 C4.20733953,95.2602071 1.27695088,94.7229242 0.312520713,92.1184573 C-0.501014624,89.9214855 0.273760151,84.5027528 2.63684504,75.862259 C4.18639459,78.9586777 5.73594414,80.5068871 7.28549369,80.5068871 C9.60981801,80.5068871 13.0963045,81.6680441 11.9341423,79.34573 C11.1593676,77.7975207 8.06026846,75.4752066 2.63684504,72.3787879 L4.96116936,65.4118457 C10.3845928,66.9600551 13.4836919,68.8953168 14.2584667,71.2176309 C15.4206288,74.7011019 21.2314396,81.6680441 24.7179261,81.6680441 C28.2044126,81.6680441 34.0152234,80.5068871 36.3395477,77.023416 C38.6638721,73.5399449 47.9611694,61.9283747 46.7990072,52.6391185 C45.636845,43.3498623 42.1503586,41.0275482 37.5017099,39.8663912 C34.4026108,39.0922865 28.5918,37.9311295 20.0692775,36.3829201 Z" id="Path-26" fill="url(#linearGradient-7)" />
|
||||
<path d="M43,84.0387397 L45.3243243,81.7164256 C47.6486486,83.264635 49.972973,83.6516873 52.2972973,82.8775826 C55.7837838,81.7164256 60.4324324,73.5883264 59.2702703,70.1048554 C58.1081081,66.6213843 55.7837838,65.4602273 52.2972973,66.6213843 C48.8108108,67.7825413 45.3243243,70.1048554 45.3243243,73.5883264 C45.3243243,75.9106405 44.5495495,79.3941116 43,84.0387397 Z" id="Path-24" fill="#FECBB7" />
|
||||
</g>
|
||||
<path d="M71.287645,103.559591 C68.741956,106.65601 68.741956,110.526533 71.287645,115.171161 C75.106178,122.138104 87.557915,123.299261 95.69305,119.81579 C101.116474,117.493476 106.927284,112.848847 113.125483,105.881905 L107.314672,103.559591 C99.34556,111.300638 92.261905,115.171161 86.063707,115.171161 C76.766409,115.171161 76.766409,109.365376 76.766409,105.881905 C76.766409,105.072965 78.371754,103.992823 77.928571,103.559591 C77.633116,103.27077 75.419474,103.27077 71.287645,103.559591 Z" id="Path-22" fill-opacity="0.1" fill="#000000" />
|
||||
</g>
|
||||
<path d="M150.410256,287 L105.160256,156.108979 C103.613248,151.475668 103.613248,147.614576 105.160256,144.525703 C106.707265,141.436829 114.82906,138.734064 129.525641,136.417409 L222.346154,119.042495 C226.987179,116.72584 230.467949,118.270276 232.788462,123.675805 C235.108974,129.081334 252.512821,175.02833 285,261.516792 L150.410256,287 Z" id="Path-6" fill="#7C86C1" />
|
||||
<path d="M0.808063242,343 C9.67455924,338.878895 312.221473,203.065638 342.738538,203.065638 C376.415683,203.065638 370.190377,198.417953 384.125747,203.065638 C393.415995,206.164095 556.582445,263.989348 778,343 L0.808063242,343 Z" id="Path-4" fill="url(#linearGradient-8)" />
|
||||
<g id="Group-2" transform="translate(131.000000, 33.000000)">
|
||||
<path d="M16.1188991,119.097175 C12.8951191,125.523372 7.52215302,128.736471 7.52215302,135.162668 C7.52215302,141.588866 10.745933,149.086098 8.59674605,153.370229 C6.44756,157.654361 0,174.790888 0,184.430185 C0,194.069482 20.1794739,198.715868 32,203 C39.8803501,205.856088 49.2727575,211.447512 60.1772224,219.774272 C65.5501884,212.277042 74.1469345,196.211547 67.6993754,183.359152 C61.2518154,170.506756 49.4312903,164.080559 49.4312903,151.228163 C49.4312903,138.375768 56.9534424,140.517833 56.9534424,130.878537 C56.9534424,121.23924 54.8042563,114.813042 56.9534424,108.386845 C58.5867956,103.503021 50.0272463,103.936422 37.6107642,109.457878 C33.6894793,111.201624 19.3426791,113.74201 18.9435234,113.821768 C16.9346238,114.223185 16.5688204,118.200314 16.1188991,119.097175 Z" id="Path-12" fill-opacity="0.25" fill="url(#linearGradient-9)" opacity="0.306668931" />
|
||||
<polygon id="Path-7" fill="url(#linearGradient-10)" points="90 91.789474 90 108 64 108 64 86" />
|
||||
<polygon id="Path-7" fill="url(#linearGradient-11)" points="90 91.789474 90 108 64 108 64 86" />
|
||||
<path d="M89,101 C102.924528,104.101449 111.820755,107.978261 115.688679,112.630435 C119.556604,117.282609 133.867925,138.217391 158.622642,175.434783 L212,187.065217 L203.877358,208 L136.575472,196.369565 L130.773585,187.065217 L89,101 Z" id="Path-9" fill="url(#linearGradient-12)" />
|
||||
<path d="M69.148531,101 C73.039128,105.631579 77.318785,107.947368 81.987501,107.947368 C86.656217,107.947368 88.990575,105.631579 88.990575,101 C92.103052,102.54386 97.160828,105.631579 104.163902,110.263158 C114.668513,117.210526 131.701421,148.177839 134.510556,164.684211 C136.383313,175.688458 132.881776,187.653371 124.005945,200.578947 L69.148531,225 C52.029906,163.245614 41.525295,115.666667 46.97213,110.263158 C52.418965,104.859649 59.811099,101.77193 69.148531,101 Z" id="Path-8" fill="url(#radialGradient-13)" />
|
||||
<path d="M97.799901,35.5007964 C100.921462,44.0582986 103.262632,49.8929592 104.823413,53.0047781 C107.164583,57.6725066 113.01751,61.173303 111.846925,63.5071672 C110.676339,65.8410314 107.164583,64.6740993 107.164583,68.1748957 C107.164583,71.675692 111.846925,84.511945 109.505754,86.84581 C107.164583,89.179674 91.946974,95.014334 83.752877,93.847402 C78.290145,93.069448 70.096048,89.179674 59.170585,82.178081 L58,32 L97.799901,35.5007964 Z" id="Path-11" fill="url(#linearGradient-14)" />
|
||||
<path d="M88.26957,54.3674048 C88.21284,49.0927228 90.782673,44.9090909 94.16833,44.9090909 C96.691535,44.9090909 98.972385,47.2327503 100.145245,50.599952 L103.292098,48.4545455 L103.434431,48.7456581 C103.374106,48.36073 103.332184,47.9676483 103.310069,47.5681818 C103.048085,42.8361057 105.681416,39 109.191779,39 C112.702142,39 115.74342,42.8361057 115.984663,47.5681818 C116.225906,52.300258 113.592575,56.1363636 110.102952,56.1363636 C107.521192,56.1363636 105.184838,54.0366227 104.037834,51.0277797 L100.708156,52.7303168 C100.841593,53.4457781 100.927977,54.1901924 100.961214,54.9545455 C101.202457,60.5024968 98.569125,65 95.079503,65 C92.521679,65 90.204732,62.5836707 89.046593,59.1084663 L64,60.2727273 L64,59.0909091 L88.268649,54.3636364 L88.26957,54.3674048 Z M94.955004,62.2627722 C97.493759,62.2627722 99.40955,58.9907676 99.234042,54.9545455 C99.058534,50.9183233 96.845956,47.6463187 94.292111,47.6463187 C91.738267,47.6463187 89.822477,50.9183233 90.013074,54.9545455 C90.203671,58.9907676 92.416249,62.2627722 94.955004,62.2627722 Z M109.992665,54.0681818 C112.639965,54.0681818 114.637665,51.1580327 114.454653,47.5681818 C114.271641,43.9783309 111.964465,41.0681818 109.301431,41.0681818 C106.638397,41.0681818 104.640697,43.9783309 104.839443,47.5681818 C105.03819,51.1580327 107.345366,54.0681818 109.992665,54.0681818 Z" id="Combined-Shape" fill="#220F65" />
|
||||
<path d="M108.304407,71.5217391 C108.304407,70.826087 107.916723,70.826087 107.141356,71.5217391 C105.978305,72.5652174 102.489153,73.6086957 101.326102,73.6086957 C100.550734,73.6086957 99.775367,73.6086957 99,73.6086957 C101.326102,75 103.652203,75.3478261 105.978305,74.6521739 C109.467458,73.6086957 109.467458,72.3043478 108.304407,72.9488491 C107.52904,73.3785166 107.52904,72.9028133 108.304407,71.5217391 Z" id="Path-15" fill="#220F65" />
|
||||
<path d="M48.525555,109 C35.244142,123.1118 26.691561,138.222911 22.867812,154.333333 C19.044063,170.443756 19.044063,191.366833 22.867812,217.102564 C32.1979,225.626781 42.694249,231.438746 54.35686,234.538462 C66.01947,237.638177 86.623415,241.125356 116.168695,245 C115.391187,238.025641 115.779941,232.988604 117.334956,229.888889 C118.889971,226.789174 120.444985,224.076923 122,221.752137 C115.002434,220.977208 107.22736,219.42735 98.674779,217.102564 C90.122198,214.777778 76.127066,210.128205 56.689382,203.153846 C55.911875,160.532764 54.745613,135.347578 53.190599,127.598291 C51.635584,119.849003 50.080569,113.649573 48.525555,109 Z" id="Path-10" fill="url(#radialGradient-15)" />
|
||||
<path d="M62.297866,33.693354 C71.56706,39.502553 80.450038,41.4389527 88.946799,39.502553 C101.691941,36.5979535 110.961135,25.5604755 108.643836,15.1039173 C106.326538,4.6473592 100.533292,0 92.422747,0 C87.015717,0 84.312202,2.7109595 84.312202,8.1328786 C65.773814,5.0346391 53.028672,7.3583187 46.076776,15.1039173 C35.648933,26.7223153 32.172985,30.2078347 32.172985,46.4735918 C32.172985,62.7393489 35.648933,59.2538295 32.172985,63.9011887 C28.697037,68.5485479 24.06244,72.0340673 24.06244,81.328786 C24.06244,90.623504 29.855687,96.432703 26.379739,103.403742 C22.903791,110.37478 17.110545,113.8603 17.110545,120.831339 C17.110545,127.802377 20.586493,135.935256 18.269194,140.582615 C15.951896,145.229974 9,163.819411 9,174.275969 C9,184.732527 26.379739,209.131163 39.124881,213.778522 C51.870023,218.425881 68.091112,220.749561 73.884359,212.616682 C79.677605,204.483804 88.946799,187.056207 81.994903,173.114129 C75.043008,159.172052 62.297866,152.201013 62.297866,138.258936 C62.297866,124.316858 70.408411,126.640538 70.408411,116.183979 C70.408411,105.727421 68.091112,98.756383 70.408411,91.785344 C72.725709,84.814305 71.56706,72.0340673 68.091112,67.3867081 C64.615164,62.7393489 62.297866,58.0919897 62.297866,52.2827907 C62.297866,46.4735918 65.773814,42.9880724 64.615164,39.502553 C63.842732,37.1788734 63.070299,35.2424738 62.297866,33.693354 Z" id="Path-12" fill="url(#linearGradient-16)" />
|
||||
<path d="M134,248 L140.956532,186.615958 C177.642047,185.471144 205.081702,184.699017 223.275499,184.299579 C241.469296,183.90014 249.198776,183.90014 246.463941,184.299579 L234.86972,243.367242 L134,248 Z" id="Path-16" fill="url(#linearGradient-17)" />
|
||||
<path d="M120.96732,222.275862 L141.751634,217.586207 C144.061002,216.804598 145.985476,216.804598 147.525054,217.586207 C149.064633,218.367816 145.215686,221.103448 135.978214,225.793103 C142.136529,228.137931 146.755265,229.701149 149.834423,230.482759 C152.91358,231.264368 156.762527,231.655172 161.381264,231.655172 C164.460421,233.218391 165.230211,234.390805 163.690632,235.172414 C162.151053,235.954023 155.992738,235.954023 145.215686,235.172414 C148.294844,236.735632 150.604212,237.517241 152.143791,237.517241 C153.68337,237.517241 157.532317,237.517241 163.690632,237.517241 C165.230211,237.517241 166,237.908046 166,238.689655 C166,239.471264 165.230211,239.862069 163.690632,239.862069 L144.061002,241.034483 C146.37037,241.816092 147.909949,242.206897 148.679739,242.206897 C149.449528,242.206897 153.298475,242.206897 160.22658,242.206897 C161.766158,242.206897 162.535948,242.597701 162.535948,243.37931 C162.535948,244.16092 161.381264,244.942529 159.071895,245.724138 L139.442266,246.896552 C143.291213,247.678161 145.985476,248.068966 147.525054,248.068966 C149.064633,248.068966 151.374001,248.068966 154.453159,248.068966 C155.222948,248.068966 155.607843,248.45977 155.607843,249.241379 C155.607843,250.022989 154.838054,250.413793 153.298475,250.413793 C142.521423,251.195402 135.978214,251.195402 133.668845,250.413793 C130.204793,249.241379 117.503268,244.551724 114.039216,243.37931 C111.729847,242.597701 113.269426,235.954023 118.657952,223.448276 L120.96732,222.275862 Z" id="Path-17" fill="url(#linearGradient-18)" />
|
||||
</g>
|
||||
<path d="M551.27463,272.917184 L482.638158,300 L379,259.473684 L461.008837,234.206061 C461.441829,234.072653 461.907289,234.090216 462.328996,234.255875 L551.271805,269.195256 C552.299894,269.59912 552.805929,270.759948 552.402065,271.788037 C552.199172,272.304528 551.790813,272.713507 551.27463,272.917184 Z" id="Path-27" fill="#E4E4E9" />
|
||||
<path d="M533.238702,273.606102 L489.304544,292 L421,263.660013 L474.784486,246.076998 C475.239746,245.928166 475.733301,245.947658 476.175406,246.131931 L533.235778,269.915202 C534.255329,270.34016 534.737342,271.511166 534.312384,272.530717 C534.109914,273.016479 533.724142,273.402863 533.238702,273.606102 Z" id="Path-27" fill="#5763AB" opacity="0.400305707" />
|
||||
<path d="M378.566038,259.324324 L360.70349,174.346715 C360.476271,173.265768 361.168355,172.205291 362.249302,171.978073 C362.585456,171.907412 362.934145,171.924522 363.261767,172.027752 L462.151008,203.186827 C462.843857,203.405137 463.363857,203.98196 463.509403,204.693659 L483,300 L378.566038,259.324324 Z" id="Path-28" fill="url(#linearGradient-19)" />
|
||||
<path d="M420.5,244.560055 C427.955844,246.29403 434,242.74794 434,236.63964 C434,230.531341 427.955844,224.173921 420.5,222.439945 C413.044156,220.70597 407,224.25206 407,230.36036 C407,236.468659 413.044156,242.826079 420.5,244.560055 Z" id="Oval-2" fill-opacity="0.1" fill="#000000" />
|
||||
<g id="Group-15" transform="translate(548.000000, 283.000000)">
|
||||
<g id="Group-14" transform="translate(0.195122, 0.000000)">
|
||||
<path d="M0.292682927,5.75546976 C-0.682926829,18.2256542 1.26829268,25.4199914 6.14634146,27.3384813 C13.4634146,30.2162162 22.2439024,30.2162162 29.5609756,27.3384813 C34.4390244,25.4199914 35.902439,18.2256542 33.9512195,5.75546976 L0.292682927,5.75546976 Z" id="Path-36" fill="url(#linearGradient-20)" />
|
||||
<ellipse id="Oval-4" fill="url(#linearGradient-21)" cx="17.1219512" cy="5.75546976" rx="16.8292683" ry="5.75546976" />
|
||||
<path d="M17.1219512,11.5109395 C26.4164994,11.5109395 31.6097561,10.2225337 31.6097561,8.63320463 C31.6097561,7.04387555 26.4164994,4.64864865 17.1219512,4.64864865 C7.82740299,4.64864865 2.34146341,6.54580605 2.34146341,8.13513514 C2.34146341,9.72446422 7.82740299,11.5109395 17.1219512,11.5109395 Z" id="Oval-4" fill="url(#linearGradient-22)" />
|
||||
<path d="M34.6056784,10.2423529 L33.2967606,9.5988718 C34.8725622,6.50013332 36.7881507,5.55840504 38.6277932,7.36718952 C40.3895443,9.09938915 37.4825134,16.2353273 33.1152387,23.3920246 L33.3237857,19.7739985 C37.2748678,13.2993202 38.6040373,9.37869796 37.5930027,8.38462244 C36.6598596,7.46713177 35.8026624,7.88854107 34.6056784,10.2423529 Z" id="Path-37" fill="#5640A6" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 28 KiB |
149
media/images/custom-software-workflow.width-800.svg
Normal file
@@ -0,0 +1,149 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="778.0" height="343.0" viewBox="0.0 0.0 778.0 343.0" version="1.1">
|
||||
|
||||
<title>flexible-workflow</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="66.4117894%" y1="32.3453762%" x2="99.7846132%" y2="22.0365065%" id="linearGradient-1">
|
||||
<stop stop-color="#000000" stop-opacity="0.6" offset="0%" />
|
||||
<stop stop-color="#929292" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-2">
|
||||
<stop stop-color="#FEB755" offset="0%" />
|
||||
<stop stop-color="#FDDC7D" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-3">
|
||||
<stop stop-color="#FFE579" offset="0%" />
|
||||
<stop stop-color="#FCD97E" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="85.2316308%" y1="80.1681869%" x2="61.4714242%" y2="23.2384205%" id="linearGradient-4">
|
||||
<stop stop-color="#FFCA49" offset="0%" />
|
||||
<stop stop-color="#FBDB87" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="81.2942926%" x2="9.34754907%" y2="43.0125155%" id="linearGradient-5">
|
||||
<stop stop-color="#F4AF94" offset="0%" />
|
||||
<stop stop-color="#F5B299" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="81.2942926%" x2="9.34754907%" y2="43.0125155%" id="linearGradient-6">
|
||||
<stop stop-color="#F5B197" offset="0%" />
|
||||
<stop stop-color="#F5B197" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="78.8015673%" y1="100%" x2="38.0138926%" y2="8.83330623%" id="linearGradient-7">
|
||||
<stop stop-color="#2F2525" offset="0%" />
|
||||
<stop stop-color="#403F3F" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="-56.9962227%" x2="46.5741597%" y2="100%" id="linearGradient-8">
|
||||
<stop stop-color="#FFFFFF" offset="0%" />
|
||||
<stop stop-color="#FFFFFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="66.4117894%" y1="32.3453762%" x2="100%" y2="21.9699735%" id="linearGradient-9">
|
||||
<stop stop-color="#000000" stop-opacity="0.6" offset="0%" />
|
||||
<stop stop-color="#929292" stop-opacity="0" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="-42.574281%" y1="-64.6560232%" x2="216.896587%" y2="-33.9874405%" id="linearGradient-10">
|
||||
<stop stop-color="#CDBFE7" offset="0%" />
|
||||
<stop stop-color="#ECE7F9" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="100%" y1="83.3402024%" x2="62.8387316%" y2="56.782133%" id="linearGradient-11">
|
||||
<stop stop-color="#F7BAA2" offset="0%" />
|
||||
<stop stop-color="#F5B197" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="86.6491254%" y1="68.2749936%" x2="35.1057959%" y2="89.9710366%" id="linearGradient-12">
|
||||
<stop stop-color="#C3C9D6" offset="0%" />
|
||||
<stop stop-color="#E5EEFF" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="86.64913%" cy="68.2750136%" fx="86.64913%" fy="68.2750136%" r="103.518963%" gradientTransform="translate(0.866491,0.682750),scale(1.000000,0.721558),rotate(-146.828405),translate(-0.866491,-0.682750)" id="radialGradient-13">
|
||||
<stop stop-color="#E5EEFF" offset="0%" />
|
||||
<stop stop-color="#FFFFFF" offset="100%" />
|
||||
</radialGradient>
|
||||
<linearGradient x1="88.6574787%" y1="54.5032706%" x2="0%" y2="21.586119%" id="linearGradient-14">
|
||||
<stop stop-color="#F8BEA7" offset="0%" />
|
||||
<stop stop-color="#F2A384" offset="100%" />
|
||||
</linearGradient>
|
||||
<radialGradient cx="86.6491296%" cy="68.2749872%" fx="86.6491296%" fy="68.2749872%" r="105.352006%" gradientTransform="translate(0.866491,0.682750),scale(1.000000,0.750000),rotate(161.100124),translate(-0.866491,-0.682750)" id="radialGradient-15">
|
||||
<stop stop-color="#E5EEFF" offset="0%" />
|
||||
<stop stop-color="#E3ECFD" offset="0%" />
|
||||
<stop stop-color="#E3ECFD" offset="21.7971654%" />
|
||||
<stop stop-color="#C2C9D6" offset="100%" />
|
||||
</radialGradient>
|
||||
<linearGradient x1="61.6573647%" y1="3.44584041%" x2="33.6179939%" y2="86.3530464%" id="linearGradient-16">
|
||||
<stop stop-color="#0D337C" offset="0%" />
|
||||
<stop stop-color="#04245D" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="60.3462783%" y1="11.8964806%" x2="50%" y2="63.0288234%" id="linearGradient-17">
|
||||
<stop stop-color="#F59BA9" offset="0%" />
|
||||
<stop stop-color="#F25267" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="-42.574281%" y1="-64.6560232%" x2="216.896587%" y2="-33.9874405%" id="linearGradient-18">
|
||||
<stop stop-color="#F5B398" offset="0%" />
|
||||
<stop stop-color="#EB9D7E" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="20.2206053%" y1="69.6112686%" x2="27.9082977%" y2="9.6948922%" id="linearGradient-19">
|
||||
<stop stop-color="#D5D5E2" offset="0%" />
|
||||
<stop stop-color="#F6F6FF" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="6.91688929%" y1="50%" x2="92.7657572%" y2="50%" id="linearGradient-20">
|
||||
<stop stop-color="#8C95CA" offset="0%" />
|
||||
<stop stop-color="#5763AB" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="59.7528456%" y1="27.3752585%" x2="59.7528458%" y2="129.42446%" id="linearGradient-21">
|
||||
<stop stop-color="#5640A6" offset="0%" />
|
||||
<stop stop-color="#B4AAD7" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="59.7528456%" y1="27.3752585%" x2="59.7528458%" y2="130.821243%" id="linearGradient-22">
|
||||
<stop stop-color="#1B0D4F" offset="0%" />
|
||||
<stop stop-color="#5640A6" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="StartUp" transform="translate(-377.000000, -1658.000000)" fill-rule="nonzero">
|
||||
<g id="flexible-workflow" transform="translate(377.000000, 1658.000000)">
|
||||
<g id="Group-8" transform="translate(406.000000, 164.500000) scale(-1, 1) translate(-406.000000, -164.500000) translate(314.000000, 0.000000)">
|
||||
<path d="M141.442928,97.8575371 C142.065874,95.1631083 142.687203,92.7886854 143.306887,90.7343738 L157.202332,44.669588 L156.557407,44.0651466 L142.661962,90.1299324 C136.761005,109.692192 130.758544,157.639673 124.630903,234.060865 L125.354138,234.241042 C130.713832,167.397337 135.9792,122.369808 141.134298,99.2180399 L141.411832,99.7263844 L154.875801,75.1220412 L154.380587,74.2149837 L141.442928,97.8575371 Z M121.904368,241.305063 C106.079665,211.879592 98.3141945,164.412758 111.107939,135.167787 C121.927402,110.435788 131.274848,64.568892 139.859355,32.8577923 C140.98594,28.696193 141.910995,48.3465369 143.012904,44.7523 C148.407449,27.1562251 153.713872,-6.25307407 158.743437,1.01979593 C162.014685,5.75009585 164.657856,13.7058666 166.672952,24.8871083 C167.30469,28.3924548 163.485257,42.0002026 164.001569,47.8329803 C164.501381,53.4793663 169.340567,51.2775955 169.732213,59.105039 C170.250873,69.4709833 170.815447,89.3231588 171.425938,118.661566 L158.593469,155.418728 L172.12002,124.684911 C172.574964,129.326806 172.271802,135.523013 171.210535,143.273533 C170.149267,151.024053 168.25095,159.464366 165.515584,168.594471 L151.130008,210.29831 L165.615971,174.349871 C162.569077,196.158933 158.575141,212.399678 153.634162,223.072105 C148.693183,233.744533 134.805056,234.481587 127.177084,241.305063 L118.159826,326.074767 L121.904368,241.305063 Z M128.705542,205.250814 L142.079883,177.054598 L141.49504,176.260586 L128.120699,204.456803 L128.705542,205.250814 Z" id="Combined-Shape-Copy-2" fill-opacity="0.05" fill="#5763AB" />
|
||||
<path d="M77.3433518,133.224017 L78.0535591,133.426432 L86.36115,108.199621 L85.3626185,107.915031 L77.2625698,132.51162 C77.035281,130.417475 76.9216344,128.525519 76.9216344,126.835835 L76.9216344,88.2016763 L75.8917623,88.2016763 L75.8917623,126.835835 C75.8917623,136.428099 79.4922405,152.385635 86.6939473,174.722906 L60.3910312,146.182132 L59.606048,146.787444 L87.4243773,176.972563 C92.4632426,192.385702 99.1534236,210.72442 107.495154,231.993207 L108.463191,231.667818 C100.1846,210.560014 93.5354515,192.342159 88.5159764,177.018671 L88.6876806,176.886267 L88.3543724,176.524601 C82.1965688,157.670649 78.5260846,143.234345 77.3433518,133.224017 Z M97.5621658,241.904216 C80.1979221,196.95491 40.1913715,177.393109 44.2244372,155.750435 C51.7381897,115.429321 50.9572198,65.3975228 75.6810829,69.9357969 C92.1636583,72.961313 107.613161,92.1076344 122.029592,127.374761 L105.441092,153.527126 L125.133825,130.867353 C127.426777,133.608005 129.35642,137.825289 130.922753,143.519206 C132.489086,149.213122 133.272252,155.869692 133.272252,163.488916 L123.757741,179.896774 L135.539174,167.171669 C139.871354,183.230899 140.954399,196.24887 138.788309,206.225582 C137.813136,210.717098 119.603851,220.407053 112.78922,235.554665 C107.241044,247.887193 107.241044,275.968846 112.78922,319.799625 C105.439571,275.121922 100.363887,249.156786 97.5621658,241.904216 Z M101.409459,209.960634 L107.299926,183.466078 L106.210801,183.289624 L100.320334,209.78418 L101.409459,209.960634 Z" id="Combined-Shape" fill="#78D0D6" transform="translate(91.906013, 194.723778) rotate(-22.000000) translate(-91.906013, -194.723778) " />
|
||||
</g>
|
||||
<g id="Group-11" transform="translate(479.000000, 58.000000)">
|
||||
<path d="M157.702703,241.907713 L208.837838,102.568871 C209.612613,97.1501377 208.45045,93.2796143 205.351351,90.9573003 C202.252252,88.6349862 198.765766,87.0867769 194.891892,86.3126722 L85.648649,66.5730028 C81.774775,65.7988981 79.063063,66.1859504 77.513514,67.7341598 C75.963964,69.2823691 68.603604,81.6680441 55.432432,104.891185 L8.945946,194.300275 L157.702703,241.907713 Z" id="Path-18" fill="#CECECE" />
|
||||
<path d="M128.648649,257.002755 C144.22248,249.771017 153.907165,243.06211 157.702703,236.876033 C172.894647,212.115765 171.179997,182.670574 169.324324,168.367769 C162.662874,117.023885 141.950407,104.610226 134.459459,94.053719 C132.802268,91.7183465 134.459459,75.4752066 134.459459,75.4752066 C134.459459,75.4752066 130.972973,74.7011019 124,73.1528926 L75.189189,88.2479339 L4.297297,190.429752 L128.648649,257.002755 Z" id="Path-18" fill-opacity="0.5" fill="url(#linearGradient-1)" opacity="0.679574275" />
|
||||
<path d="M82.162162,217.296708 C110.054054,225.811859 125.54955,228.134173 128.648649,224.26365 C131.580176,220.60241 141.906526,180.017677 130.972973,112.632231 C130.556317,110.064307 125.132894,107.795441 114.702703,105.825633 L107.72973,103.503319 C99.981982,112.018471 93.009009,115.888994 86.810811,115.11489 C77.513514,113.953733 76.351351,108.147947 77.513514,105.825633 C78.675676,103.503319 63.567568,101.181005 55.432432,106.98679 C50.009009,110.857314 36.837838,139.832791 15.918919,193.913223 L82.162162,217.296708 Z" id="Path-19" fill="url(#linearGradient-2)" />
|
||||
<path d="M79.837838,217.136364 C105.405405,211.717631 118.576577,207.460055 119.351351,204.363636 C119.97253,201.881072 122.216396,201.037522 119.351351,160.239669 C118.879065,153.514382 120.428615,136.871131 124,110.309917 C125.54955,107.987603 128.648649,109.14876 133.297297,113.793388 C140.27027,120.760331 149.567568,146.305785 150.72973,169.528926 C151.891892,192.752066 151.891892,214.81405 148.405405,222.942149 C146.081081,228.360882 135.621622,230.296143 117.027027,228.747934 L79.837838,217.136364 Z" id="Path-20" fill="url(#linearGradient-3)" />
|
||||
<path d="M0.810811,188.107438 C7.783784,183.46281 12.432432,179.205234 14.756757,175.334711 C18.243243,169.528926 33.351351,134.694215 38,126.566116 C42.648649,118.438017 55.432432,104.504132 60.081081,104.504132 C64.72973,104.504132 54.27027,105.665289 54.27027,112.632231 C54.27027,119.599174 49.621622,132.371901 46.135135,145.144628 C42.648649,157.917355 39.162162,174.173554 32.189189,183.46281 C27.540541,189.655647 23.279279,193.526171 19.405405,195.07438 L0.810811,188.107438 Z" id="Path-21" fill="url(#linearGradient-4)" />
|
||||
<g id="Group-17" transform="translate(54.270270, 0.000000)">
|
||||
<path d="M3.48648649,89.76637 C5.03603604,74.2842763 5.81081081,65.7691248 5.81081081,64.2209154 C5.81081081,61.8986014 1.16216216,60.7374444 1.16216216,58.4151303 C1.16216216,56.0928163 11.6216216,52.6093452 13.9459459,47.9647171 C15.4954955,44.8682984 15.8828829,37.9013562 15.1081081,27.0638907 C14.3333333,18.5487391 18.981982,15.0652681 29.0540541,16.6134774 C44.1621622,18.9357915 67.4054054,36.3531469 67.4054054,45.6424031 C67.4054054,54.9316592 66.2432432,78.1547997 58.1081081,87.4440559 C52.6846847,93.6368934 34.4774775,94.4109981 3.48648649,89.76637 Z" id="Path-25" fill="url(#linearGradient-5)" />
|
||||
<path d="M27.8918919,95.214876 C24.018018,102.955923 22.0810811,107.987603 22.0810811,110.309917 C22.0810811,113.793388 33.7027027,121.921488 39.5135135,118.438017 C45.3243243,114.954545 54.6216216,106.826446 54.6216216,102.181818 C54.6216216,99.0853994 56.9459459,87.0867769 61.5945946,66.1859504 L41.8378378,71.9917355 L27.8918919,95.214876 Z" id="Path-23" fill="url(#linearGradient-6)" />
|
||||
<path d="M20.0692775,36.3829201 C12.3215297,34.8347107 8.44765585,30.1900826 8.44765585,22.4490358 C8.44765585,10.8374656 15.4206288,3.87052342 18.9071153,1.54820937 C21.2314396,-2.22044605e-16 22.3936018,-0.387052342 22.3936018,0.387052342 C20.8440522,1.16115702 21.2314396,2.70936639 23.555764,5.03168044 C27.0422504,8.51515152 28.2044126,11.9986226 36.3395477,13.1597796 C44.4746829,14.3209366 54.9341423,14.3209366 63.0692775,20.1267218 C71.2044126,25.9325069 81.6638721,41.0275482 78.1773856,56.1225895 C74.6908991,71.2176309 64.2314396,86.3126722 59.582791,92.1184573 C56.4836919,95.9889807 54.9341423,98.6983471 54.9341423,100.246556 L58.4206288,77.023416 L45.636845,71.2176309 C44.8620703,79.7327824 43.3125207,85.9256198 40.9881964,89.7961433 C37.5017099,95.6019284 31.6908991,99.0853994 7.28549369,95.6019284 C4.20733953,95.2602071 1.27695088,94.7229242 0.312520713,92.1184573 C-0.501014624,89.9214855 0.273760151,84.5027528 2.63684504,75.862259 C4.18639459,78.9586777 5.73594414,80.5068871 7.28549369,80.5068871 C9.60981801,80.5068871 13.0963045,81.6680441 11.9341423,79.34573 C11.1593676,77.7975207 8.06026846,75.4752066 2.63684504,72.3787879 L4.96116936,65.4118457 C10.3845928,66.9600551 13.4836919,68.8953168 14.2584667,71.2176309 C15.4206288,74.7011019 21.2314396,81.6680441 24.7179261,81.6680441 C28.2044126,81.6680441 34.0152234,80.5068871 36.3395477,77.023416 C38.6638721,73.5399449 47.9611694,61.9283747 46.7990072,52.6391185 C45.636845,43.3498623 42.1503586,41.0275482 37.5017099,39.8663912 C34.4026108,39.0922865 28.5918,37.9311295 20.0692775,36.3829201 Z" id="Path-26" fill="url(#linearGradient-7)" />
|
||||
<path d="M43,84.0387397 L45.3243243,81.7164256 C47.6486486,83.264635 49.972973,83.6516873 52.2972973,82.8775826 C55.7837838,81.7164256 60.4324324,73.5883264 59.2702703,70.1048554 C58.1081081,66.6213843 55.7837838,65.4602273 52.2972973,66.6213843 C48.8108108,67.7825413 45.3243243,70.1048554 45.3243243,73.5883264 C45.3243243,75.9106405 44.5495495,79.3941116 43,84.0387397 Z" id="Path-24" fill="#FECBB7" />
|
||||
</g>
|
||||
<path d="M71.287645,103.559591 C68.741956,106.65601 68.741956,110.526533 71.287645,115.171161 C75.106178,122.138104 87.557915,123.299261 95.69305,119.81579 C101.116474,117.493476 106.927284,112.848847 113.125483,105.881905 L107.314672,103.559591 C99.34556,111.300638 92.261905,115.171161 86.063707,115.171161 C76.766409,115.171161 76.766409,109.365376 76.766409,105.881905 C76.766409,105.072965 78.371754,103.992823 77.928571,103.559591 C77.633116,103.27077 75.419474,103.27077 71.287645,103.559591 Z" id="Path-22" fill-opacity="0.1" fill="#000000" />
|
||||
</g>
|
||||
<path d="M150.410256,287 L105.160256,156.108979 C103.613248,151.475668 103.613248,147.614576 105.160256,144.525703 C106.707265,141.436829 114.82906,138.734064 129.525641,136.417409 L222.346154,119.042495 C226.987179,116.72584 230.467949,118.270276 232.788462,123.675805 C235.108974,129.081334 252.512821,175.02833 285,261.516792 L150.410256,287 Z" id="Path-6" fill="#7C86C1" />
|
||||
<path d="M0.808063242,343 C9.67455924,338.878895 312.221473,203.065638 342.738538,203.065638 C376.415683,203.065638 370.190377,198.417953 384.125747,203.065638 C393.415995,206.164095 556.582445,263.989348 778,343 L0.808063242,343 Z" id="Path-4" fill="url(#linearGradient-8)" />
|
||||
<g id="Group-2" transform="translate(131.000000, 33.000000)">
|
||||
<path d="M16.1188991,119.097175 C12.8951191,125.523372 7.52215302,128.736471 7.52215302,135.162668 C7.52215302,141.588866 10.745933,149.086098 8.59674605,153.370229 C6.44756,157.654361 0,174.790888 0,184.430185 C0,194.069482 20.1794739,198.715868 32,203 C39.8803501,205.856088 49.2727575,211.447512 60.1772224,219.774272 C65.5501884,212.277042 74.1469345,196.211547 67.6993754,183.359152 C61.2518154,170.506756 49.4312903,164.080559 49.4312903,151.228163 C49.4312903,138.375768 56.9534424,140.517833 56.9534424,130.878537 C56.9534424,121.23924 54.8042563,114.813042 56.9534424,108.386845 C58.5867956,103.503021 50.0272463,103.936422 37.6107642,109.457878 C33.6894793,111.201624 19.3426791,113.74201 18.9435234,113.821768 C16.9346238,114.223185 16.5688204,118.200314 16.1188991,119.097175 Z" id="Path-12" fill-opacity="0.25" fill="url(#linearGradient-9)" opacity="0.306668931" />
|
||||
<polygon id="Path-7" fill="url(#linearGradient-10)" points="90 91.789474 90 108 64 108 64 86" />
|
||||
<polygon id="Path-7" fill="url(#linearGradient-11)" points="90 91.789474 90 108 64 108 64 86" />
|
||||
<path d="M89,101 C102.924528,104.101449 111.820755,107.978261 115.688679,112.630435 C119.556604,117.282609 133.867925,138.217391 158.622642,175.434783 L212,187.065217 L203.877358,208 L136.575472,196.369565 L130.773585,187.065217 L89,101 Z" id="Path-9" fill="url(#linearGradient-12)" />
|
||||
<path d="M69.148531,101 C73.039128,105.631579 77.318785,107.947368 81.987501,107.947368 C86.656217,107.947368 88.990575,105.631579 88.990575,101 C92.103052,102.54386 97.160828,105.631579 104.163902,110.263158 C114.668513,117.210526 131.701421,148.177839 134.510556,164.684211 C136.383313,175.688458 132.881776,187.653371 124.005945,200.578947 L69.148531,225 C52.029906,163.245614 41.525295,115.666667 46.97213,110.263158 C52.418965,104.859649 59.811099,101.77193 69.148531,101 Z" id="Path-8" fill="url(#radialGradient-13)" />
|
||||
<path d="M97.799901,35.5007964 C100.921462,44.0582986 103.262632,49.8929592 104.823413,53.0047781 C107.164583,57.6725066 113.01751,61.173303 111.846925,63.5071672 C110.676339,65.8410314 107.164583,64.6740993 107.164583,68.1748957 C107.164583,71.675692 111.846925,84.511945 109.505754,86.84581 C107.164583,89.179674 91.946974,95.014334 83.752877,93.847402 C78.290145,93.069448 70.096048,89.179674 59.170585,82.178081 L58,32 L97.799901,35.5007964 Z" id="Path-11" fill="url(#linearGradient-14)" />
|
||||
<path d="M88.26957,54.3674048 C88.21284,49.0927228 90.782673,44.9090909 94.16833,44.9090909 C96.691535,44.9090909 98.972385,47.2327503 100.145245,50.599952 L103.292098,48.4545455 L103.434431,48.7456581 C103.374106,48.36073 103.332184,47.9676483 103.310069,47.5681818 C103.048085,42.8361057 105.681416,39 109.191779,39 C112.702142,39 115.74342,42.8361057 115.984663,47.5681818 C116.225906,52.300258 113.592575,56.1363636 110.102952,56.1363636 C107.521192,56.1363636 105.184838,54.0366227 104.037834,51.0277797 L100.708156,52.7303168 C100.841593,53.4457781 100.927977,54.1901924 100.961214,54.9545455 C101.202457,60.5024968 98.569125,65 95.079503,65 C92.521679,65 90.204732,62.5836707 89.046593,59.1084663 L64,60.2727273 L64,59.0909091 L88.268649,54.3636364 L88.26957,54.3674048 Z M94.955004,62.2627722 C97.493759,62.2627722 99.40955,58.9907676 99.234042,54.9545455 C99.058534,50.9183233 96.845956,47.6463187 94.292111,47.6463187 C91.738267,47.6463187 89.822477,50.9183233 90.013074,54.9545455 C90.203671,58.9907676 92.416249,62.2627722 94.955004,62.2627722 Z M109.992665,54.0681818 C112.639965,54.0681818 114.637665,51.1580327 114.454653,47.5681818 C114.271641,43.9783309 111.964465,41.0681818 109.301431,41.0681818 C106.638397,41.0681818 104.640697,43.9783309 104.839443,47.5681818 C105.03819,51.1580327 107.345366,54.0681818 109.992665,54.0681818 Z" id="Combined-Shape" fill="#220F65" />
|
||||
<path d="M108.304407,71.5217391 C108.304407,70.826087 107.916723,70.826087 107.141356,71.5217391 C105.978305,72.5652174 102.489153,73.6086957 101.326102,73.6086957 C100.550734,73.6086957 99.775367,73.6086957 99,73.6086957 C101.326102,75 103.652203,75.3478261 105.978305,74.6521739 C109.467458,73.6086957 109.467458,72.3043478 108.304407,72.9488491 C107.52904,73.3785166 107.52904,72.9028133 108.304407,71.5217391 Z" id="Path-15" fill="#220F65" />
|
||||
<path d="M48.525555,109 C35.244142,123.1118 26.691561,138.222911 22.867812,154.333333 C19.044063,170.443756 19.044063,191.366833 22.867812,217.102564 C32.1979,225.626781 42.694249,231.438746 54.35686,234.538462 C66.01947,237.638177 86.623415,241.125356 116.168695,245 C115.391187,238.025641 115.779941,232.988604 117.334956,229.888889 C118.889971,226.789174 120.444985,224.076923 122,221.752137 C115.002434,220.977208 107.22736,219.42735 98.674779,217.102564 C90.122198,214.777778 76.127066,210.128205 56.689382,203.153846 C55.911875,160.532764 54.745613,135.347578 53.190599,127.598291 C51.635584,119.849003 50.080569,113.649573 48.525555,109 Z" id="Path-10" fill="url(#radialGradient-15)" />
|
||||
<path d="M62.297866,33.693354 C71.56706,39.502553 80.450038,41.4389527 88.946799,39.502553 C101.691941,36.5979535 110.961135,25.5604755 108.643836,15.1039173 C106.326538,4.6473592 100.533292,0 92.422747,0 C87.015717,0 84.312202,2.7109595 84.312202,8.1328786 C65.773814,5.0346391 53.028672,7.3583187 46.076776,15.1039173 C35.648933,26.7223153 32.172985,30.2078347 32.172985,46.4735918 C32.172985,62.7393489 35.648933,59.2538295 32.172985,63.9011887 C28.697037,68.5485479 24.06244,72.0340673 24.06244,81.328786 C24.06244,90.623504 29.855687,96.432703 26.379739,103.403742 C22.903791,110.37478 17.110545,113.8603 17.110545,120.831339 C17.110545,127.802377 20.586493,135.935256 18.269194,140.582615 C15.951896,145.229974 9,163.819411 9,174.275969 C9,184.732527 26.379739,209.131163 39.124881,213.778522 C51.870023,218.425881 68.091112,220.749561 73.884359,212.616682 C79.677605,204.483804 88.946799,187.056207 81.994903,173.114129 C75.043008,159.172052 62.297866,152.201013 62.297866,138.258936 C62.297866,124.316858 70.408411,126.640538 70.408411,116.183979 C70.408411,105.727421 68.091112,98.756383 70.408411,91.785344 C72.725709,84.814305 71.56706,72.0340673 68.091112,67.3867081 C64.615164,62.7393489 62.297866,58.0919897 62.297866,52.2827907 C62.297866,46.4735918 65.773814,42.9880724 64.615164,39.502553 C63.842732,37.1788734 63.070299,35.2424738 62.297866,33.693354 Z" id="Path-12" fill="url(#linearGradient-16)" />
|
||||
<path d="M134,248 L140.956532,186.615958 C177.642047,185.471144 205.081702,184.699017 223.275499,184.299579 C241.469296,183.90014 249.198776,183.90014 246.463941,184.299579 L234.86972,243.367242 L134,248 Z" id="Path-16" fill="url(#linearGradient-17)" />
|
||||
<path d="M120.96732,222.275862 L141.751634,217.586207 C144.061002,216.804598 145.985476,216.804598 147.525054,217.586207 C149.064633,218.367816 145.215686,221.103448 135.978214,225.793103 C142.136529,228.137931 146.755265,229.701149 149.834423,230.482759 C152.91358,231.264368 156.762527,231.655172 161.381264,231.655172 C164.460421,233.218391 165.230211,234.390805 163.690632,235.172414 C162.151053,235.954023 155.992738,235.954023 145.215686,235.172414 C148.294844,236.735632 150.604212,237.517241 152.143791,237.517241 C153.68337,237.517241 157.532317,237.517241 163.690632,237.517241 C165.230211,237.517241 166,237.908046 166,238.689655 C166,239.471264 165.230211,239.862069 163.690632,239.862069 L144.061002,241.034483 C146.37037,241.816092 147.909949,242.206897 148.679739,242.206897 C149.449528,242.206897 153.298475,242.206897 160.22658,242.206897 C161.766158,242.206897 162.535948,242.597701 162.535948,243.37931 C162.535948,244.16092 161.381264,244.942529 159.071895,245.724138 L139.442266,246.896552 C143.291213,247.678161 145.985476,248.068966 147.525054,248.068966 C149.064633,248.068966 151.374001,248.068966 154.453159,248.068966 C155.222948,248.068966 155.607843,248.45977 155.607843,249.241379 C155.607843,250.022989 154.838054,250.413793 153.298475,250.413793 C142.521423,251.195402 135.978214,251.195402 133.668845,250.413793 C130.204793,249.241379 117.503268,244.551724 114.039216,243.37931 C111.729847,242.597701 113.269426,235.954023 118.657952,223.448276 L120.96732,222.275862 Z" id="Path-17" fill="url(#linearGradient-18)" />
|
||||
</g>
|
||||
<path d="M551.27463,272.917184 L482.638158,300 L379,259.473684 L461.008837,234.206061 C461.441829,234.072653 461.907289,234.090216 462.328996,234.255875 L551.271805,269.195256 C552.299894,269.59912 552.805929,270.759948 552.402065,271.788037 C552.199172,272.304528 551.790813,272.713507 551.27463,272.917184 Z" id="Path-27" fill="#E4E4E9" />
|
||||
<path d="M533.238702,273.606102 L489.304544,292 L421,263.660013 L474.784486,246.076998 C475.239746,245.928166 475.733301,245.947658 476.175406,246.131931 L533.235778,269.915202 C534.255329,270.34016 534.737342,271.511166 534.312384,272.530717 C534.109914,273.016479 533.724142,273.402863 533.238702,273.606102 Z" id="Path-27" fill="#5763AB" opacity="0.400305707" />
|
||||
<path d="M378.566038,259.324324 L360.70349,174.346715 C360.476271,173.265768 361.168355,172.205291 362.249302,171.978073 C362.585456,171.907412 362.934145,171.924522 363.261767,172.027752 L462.151008,203.186827 C462.843857,203.405137 463.363857,203.98196 463.509403,204.693659 L483,300 L378.566038,259.324324 Z" id="Path-28" fill="url(#linearGradient-19)" />
|
||||
<path d="M420.5,244.560055 C427.955844,246.29403 434,242.74794 434,236.63964 C434,230.531341 427.955844,224.173921 420.5,222.439945 C413.044156,220.70597 407,224.25206 407,230.36036 C407,236.468659 413.044156,242.826079 420.5,244.560055 Z" id="Oval-2" fill-opacity="0.1" fill="#000000" />
|
||||
<g id="Group-15" transform="translate(548.000000, 283.000000)">
|
||||
<g id="Group-14" transform="translate(0.195122, 0.000000)">
|
||||
<path d="M0.292682927,5.75546976 C-0.682926829,18.2256542 1.26829268,25.4199914 6.14634146,27.3384813 C13.4634146,30.2162162 22.2439024,30.2162162 29.5609756,27.3384813 C34.4390244,25.4199914 35.902439,18.2256542 33.9512195,5.75546976 L0.292682927,5.75546976 Z" id="Path-36" fill="url(#linearGradient-20)" />
|
||||
<ellipse id="Oval-4" fill="url(#linearGradient-21)" cx="17.1219512" cy="5.75546976" rx="16.8292683" ry="5.75546976" />
|
||||
<path d="M17.1219512,11.5109395 C26.4164994,11.5109395 31.6097561,10.2225337 31.6097561,8.63320463 C31.6097561,7.04387555 26.4164994,4.64864865 17.1219512,4.64864865 C7.82740299,4.64864865 2.34146341,6.54580605 2.34146341,8.13513514 C2.34146341,9.72446422 7.82740299,11.5109395 17.1219512,11.5109395 Z" id="Oval-4" fill="url(#linearGradient-22)" />
|
||||
<path d="M34.6056784,10.2423529 L33.2967606,9.5988718 C34.8725622,6.50013332 36.7881507,5.55840504 38.6277932,7.36718952 C40.3895443,9.09938915 37.4825134,16.2353273 33.1152387,23.3920246 L33.3237857,19.7739985 C37.2748678,13.2993202 38.6040373,9.37869796 37.5930027,8.38462244 C36.6598596,7.46713177 35.8026624,7.88854107 34.6056784,10.2423529 Z" id="Path-37" fill="#5640A6" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 28 KiB |
43
media/images/modern-devops.max-165x165.svg
Normal file
@@ -0,0 +1,43 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{fill:#FFFFFF;stroke:#5763AB;stroke-miterlimit:10;}
|
||||
.st2{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st3{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
|
||||
.st4{fill:none;stroke:#92DEE2;stroke-width:2;}
|
||||
.st5{fill:#92DEE2;}
|
||||
</style>
|
||||
<title>Modern_DevOps</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Modern_DevOps">
|
||||
<g id="Group-45" transform="translate(5.000000, 29.000000)">
|
||||
<g id="ic_settings" transform="translate(64.000000, 0.000000)">
|
||||
<polygon id="Bounds" class="st0" points="0,0 24,0 24,24 0,24 " />
|
||||
<path id="Icon" class="st1" d="M19.4,13c0-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1l2.1-1.7c0.2-0.1,0.2-0.4,0.1-0.6l-2-3.5 C19.5,5.1,19.3,5,19,5.1l-2.5,1c-0.5-0.4-1.1-0.7-1.7-1l-0.4-2.7C14.5,2.2,14.2,2,14,2h-4C9.8,2,9.5,2.2,9.5,2.4L9.1,5.1 C8.5,5.3,8,5.7,7.4,6.1l-2.5-1C4.7,5,4.5,5.1,4.3,5.3l-2,3.5C2.2,8.9,2.3,9.2,2.5,9.4L4.6,11c0,0.3-0.1,0.6-0.1,1s0,0.7,0.1,1 l-2.1,1.7c-0.2,0.1-0.2,0.4-0.1,0.6l2,3.5C4.5,19,4.7,19,4.9,19l2.5-1c0.5,0.4,1.1,0.7,1.7,1l0.4,2.6c0,0.2,0.2,0.4,0.5,0.4h4 c0.2,0,0.5-0.2,0.5-0.4l0.4-2.6c0.6-0.2,1.2-0.6,1.7-1l2.5,1c0.2,0.1,0.5,0,0.6-0.2l2-3.5c0.1-0.2,0.1-0.5-0.1-0.6L19.4,13 L19.4,13z M12,15.5c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5S13.9,15.5,12,15.5L12,15.5z" />
|
||||
</g>
|
||||
<g id="ic_settings_1_" transform="translate(64.000000, 58.000000)">
|
||||
<polygon id="Bounds_1_" class="st0" points="0,0 24,0 24,24 0,24 " />
|
||||
<path id="Icon_1_" class="st2" d="M19.4,13c0-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1l2.1-1.7c0.2-0.1,0.2-0.4,0.1-0.6l-2-3.5 C19.5,5.1,19.3,5,19,5.1l-2.5,1c-0.5-0.4-1.1-0.7-1.7-1l-0.4-2.7C14.5,2.2,14.2,2,14,2h-4C9.8,2,9.5,2.2,9.5,2.4L9.1,5.1 C8.5,5.3,8,5.7,7.4,6.1l-2.5-1C4.7,5,4.5,5.1,4.3,5.3l-2,3.5C2.2,8.9,2.3,9.2,2.5,9.4L4.6,11c0,0.3-0.1,0.6-0.1,1s0,0.7,0.1,1 l-2.1,1.7c-0.2,0.1-0.2,0.4-0.1,0.6l2,3.5C4.5,19,4.7,19,4.9,19l2.5-1c0.5,0.4,1.1,0.7,1.7,1l0.4,2.6c0,0.2,0.2,0.4,0.5,0.4h4 c0.2,0,0.5-0.2,0.5-0.4l0.4-2.6c0.6-0.2,1.2-0.6,1.7-1l2.5,1c0.2,0.1,0.5,0,0.6-0.2l2-3.5c0.1-0.2,0.1-0.5-0.1-0.6L19.4,13 L19.4,13z M12,15.5c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5S13.9,15.5,12,15.5L12,15.5z" />
|
||||
</g>
|
||||
<path id="Path-13" class="st3" d="M77,40.3C95.1,23.2,108.9,5,124.8,5c15.9,0,28.9,16.7,28.8,35.3S140.6,69.8,124.8,70 S77,40.3,77,40.3z" />
|
||||
<path id="Path-13_1_" class="st3" d="M76.6,40.3C58.5,23.2,44.8,5,28.8,5C12.9,5-0.1,21.7,0,40.3S13.1,69.8,28.8,70 S76.6,40.3,76.6,40.3z" />
|
||||
<polyline id="Path-14" class="st4" points="42,33.8 42,28 19,28 19,54 42,54 42,48.8 " />
|
||||
<polygon id="Path" class="st4" points="27.4,27.2 27.4,23 33.6,23 33.6,27.2 37,27.2 37,32 24,32 24,27.2 " />
|
||||
<polyline id="Path-15" class="st2" points="28,41 35,48 49,33 " />
|
||||
<g id="Group-37" transform="translate(107.000000, 17.000000)">
|
||||
<rect id="Rectangle-15" x="9" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_1_" x="18" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_2_" x="27" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_3_" x="4" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_4_" x="13" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_5_" x="8" y="9" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_6_" x="12" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_7_" x="17" y="9" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_8_" x="22" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_9_" y="27" class="st5" width="8" height="8" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
43
media/images/modern-devops.max-800x600.svg
Normal file
@@ -0,0 +1,43 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{fill:#FFFFFF;stroke:#5763AB;stroke-miterlimit:10;}
|
||||
.st2{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st3{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
|
||||
.st4{fill:none;stroke:#92DEE2;stroke-width:2;}
|
||||
.st5{fill:#92DEE2;}
|
||||
</style>
|
||||
<title>Modern_DevOps</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Modern_DevOps">
|
||||
<g id="Group-45" transform="translate(5.000000, 29.000000)">
|
||||
<g id="ic_settings" transform="translate(64.000000, 0.000000)">
|
||||
<polygon id="Bounds" class="st0" points="0,0 24,0 24,24 0,24 " />
|
||||
<path id="Icon" class="st1" d="M19.4,13c0-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1l2.1-1.7c0.2-0.1,0.2-0.4,0.1-0.6l-2-3.5 C19.5,5.1,19.3,5,19,5.1l-2.5,1c-0.5-0.4-1.1-0.7-1.7-1l-0.4-2.7C14.5,2.2,14.2,2,14,2h-4C9.8,2,9.5,2.2,9.5,2.4L9.1,5.1 C8.5,5.3,8,5.7,7.4,6.1l-2.5-1C4.7,5,4.5,5.1,4.3,5.3l-2,3.5C2.2,8.9,2.3,9.2,2.5,9.4L4.6,11c0,0.3-0.1,0.6-0.1,1s0,0.7,0.1,1 l-2.1,1.7c-0.2,0.1-0.2,0.4-0.1,0.6l2,3.5C4.5,19,4.7,19,4.9,19l2.5-1c0.5,0.4,1.1,0.7,1.7,1l0.4,2.6c0,0.2,0.2,0.4,0.5,0.4h4 c0.2,0,0.5-0.2,0.5-0.4l0.4-2.6c0.6-0.2,1.2-0.6,1.7-1l2.5,1c0.2,0.1,0.5,0,0.6-0.2l2-3.5c0.1-0.2,0.1-0.5-0.1-0.6L19.4,13 L19.4,13z M12,15.5c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5S13.9,15.5,12,15.5L12,15.5z" />
|
||||
</g>
|
||||
<g id="ic_settings_1_" transform="translate(64.000000, 58.000000)">
|
||||
<polygon id="Bounds_1_" class="st0" points="0,0 24,0 24,24 0,24 " />
|
||||
<path id="Icon_1_" class="st2" d="M19.4,13c0-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1l2.1-1.7c0.2-0.1,0.2-0.4,0.1-0.6l-2-3.5 C19.5,5.1,19.3,5,19,5.1l-2.5,1c-0.5-0.4-1.1-0.7-1.7-1l-0.4-2.7C14.5,2.2,14.2,2,14,2h-4C9.8,2,9.5,2.2,9.5,2.4L9.1,5.1 C8.5,5.3,8,5.7,7.4,6.1l-2.5-1C4.7,5,4.5,5.1,4.3,5.3l-2,3.5C2.2,8.9,2.3,9.2,2.5,9.4L4.6,11c0,0.3-0.1,0.6-0.1,1s0,0.7,0.1,1 l-2.1,1.7c-0.2,0.1-0.2,0.4-0.1,0.6l2,3.5C4.5,19,4.7,19,4.9,19l2.5-1c0.5,0.4,1.1,0.7,1.7,1l0.4,2.6c0,0.2,0.2,0.4,0.5,0.4h4 c0.2,0,0.5-0.2,0.5-0.4l0.4-2.6c0.6-0.2,1.2-0.6,1.7-1l2.5,1c0.2,0.1,0.5,0,0.6-0.2l2-3.5c0.1-0.2,0.1-0.5-0.1-0.6L19.4,13 L19.4,13z M12,15.5c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5S13.9,15.5,12,15.5L12,15.5z" />
|
||||
</g>
|
||||
<path id="Path-13" class="st3" d="M77,40.3C95.1,23.2,108.9,5,124.8,5c15.9,0,28.9,16.7,28.8,35.3S140.6,69.8,124.8,70 S77,40.3,77,40.3z" />
|
||||
<path id="Path-13_1_" class="st3" d="M76.6,40.3C58.5,23.2,44.8,5,28.8,5C12.9,5-0.1,21.7,0,40.3S13.1,69.8,28.8,70 S76.6,40.3,76.6,40.3z" />
|
||||
<polyline id="Path-14" class="st4" points="42,33.8 42,28 19,28 19,54 42,54 42,48.8 " />
|
||||
<polygon id="Path" class="st4" points="27.4,27.2 27.4,23 33.6,23 33.6,27.2 37,27.2 37,32 24,32 24,27.2 " />
|
||||
<polyline id="Path-15" class="st2" points="28,41 35,48 49,33 " />
|
||||
<g id="Group-37" transform="translate(107.000000, 17.000000)">
|
||||
<rect id="Rectangle-15" x="9" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_1_" x="18" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_2_" x="27" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_3_" x="4" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_4_" x="13" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_5_" x="8" y="9" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_6_" x="12" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_7_" x="17" y="9" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_8_" x="22" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_9_" y="27" class="st5" width="8" height="8" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
43
media/images/modern-devops.width-800.svg
Normal file
@@ -0,0 +1,43 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0.0 0.0 164.0 140.0" style="enable-background:new 0 0 164 140;" xml:space="preserve" width="164.0" height="140.0">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{fill:#FFFFFF;stroke:#5763AB;stroke-miterlimit:10;}
|
||||
.st2{fill:none;stroke:#5763AB;stroke-width:2;}
|
||||
.st3{fill:#FFFFFF;stroke:#5763AB;stroke-width:2;}
|
||||
.st4{fill:none;stroke:#92DEE2;stroke-width:2;}
|
||||
.st5{fill:#92DEE2;}
|
||||
</style>
|
||||
<title>Modern_DevOps</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="assets">
|
||||
<g id="Modern_DevOps">
|
||||
<g id="Group-45" transform="translate(5.000000, 29.000000)">
|
||||
<g id="ic_settings" transform="translate(64.000000, 0.000000)">
|
||||
<polygon id="Bounds" class="st0" points="0,0 24,0 24,24 0,24 " />
|
||||
<path id="Icon" class="st1" d="M19.4,13c0-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1l2.1-1.7c0.2-0.1,0.2-0.4,0.1-0.6l-2-3.5 C19.5,5.1,19.3,5,19,5.1l-2.5,1c-0.5-0.4-1.1-0.7-1.7-1l-0.4-2.7C14.5,2.2,14.2,2,14,2h-4C9.8,2,9.5,2.2,9.5,2.4L9.1,5.1 C8.5,5.3,8,5.7,7.4,6.1l-2.5-1C4.7,5,4.5,5.1,4.3,5.3l-2,3.5C2.2,8.9,2.3,9.2,2.5,9.4L4.6,11c0,0.3-0.1,0.6-0.1,1s0,0.7,0.1,1 l-2.1,1.7c-0.2,0.1-0.2,0.4-0.1,0.6l2,3.5C4.5,19,4.7,19,4.9,19l2.5-1c0.5,0.4,1.1,0.7,1.7,1l0.4,2.6c0,0.2,0.2,0.4,0.5,0.4h4 c0.2,0,0.5-0.2,0.5-0.4l0.4-2.6c0.6-0.2,1.2-0.6,1.7-1l2.5,1c0.2,0.1,0.5,0,0.6-0.2l2-3.5c0.1-0.2,0.1-0.5-0.1-0.6L19.4,13 L19.4,13z M12,15.5c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5S13.9,15.5,12,15.5L12,15.5z" />
|
||||
</g>
|
||||
<g id="ic_settings_1_" transform="translate(64.000000, 58.000000)">
|
||||
<polygon id="Bounds_1_" class="st0" points="0,0 24,0 24,24 0,24 " />
|
||||
<path id="Icon_1_" class="st2" d="M19.4,13c0-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1l2.1-1.7c0.2-0.1,0.2-0.4,0.1-0.6l-2-3.5 C19.5,5.1,19.3,5,19,5.1l-2.5,1c-0.5-0.4-1.1-0.7-1.7-1l-0.4-2.7C14.5,2.2,14.2,2,14,2h-4C9.8,2,9.5,2.2,9.5,2.4L9.1,5.1 C8.5,5.3,8,5.7,7.4,6.1l-2.5-1C4.7,5,4.5,5.1,4.3,5.3l-2,3.5C2.2,8.9,2.3,9.2,2.5,9.4L4.6,11c0,0.3-0.1,0.6-0.1,1s0,0.7,0.1,1 l-2.1,1.7c-0.2,0.1-0.2,0.4-0.1,0.6l2,3.5C4.5,19,4.7,19,4.9,19l2.5-1c0.5,0.4,1.1,0.7,1.7,1l0.4,2.6c0,0.2,0.2,0.4,0.5,0.4h4 c0.2,0,0.5-0.2,0.5-0.4l0.4-2.6c0.6-0.2,1.2-0.6,1.7-1l2.5,1c0.2,0.1,0.5,0,0.6-0.2l2-3.5c0.1-0.2,0.1-0.5-0.1-0.6L19.4,13 L19.4,13z M12,15.5c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5s3.5,1.6,3.5,3.5S13.9,15.5,12,15.5L12,15.5z" />
|
||||
</g>
|
||||
<path id="Path-13" class="st3" d="M77,40.3C95.1,23.2,108.9,5,124.8,5c15.9,0,28.9,16.7,28.8,35.3S140.6,69.8,124.8,70 S77,40.3,77,40.3z" />
|
||||
<path id="Path-13_1_" class="st3" d="M76.6,40.3C58.5,23.2,44.8,5,28.8,5C12.9,5-0.1,21.7,0,40.3S13.1,69.8,28.8,70 S76.6,40.3,76.6,40.3z" />
|
||||
<polyline id="Path-14" class="st4" points="42,33.8 42,28 19,28 19,54 42,54 42,48.8 " />
|
||||
<polygon id="Path" class="st4" points="27.4,27.2 27.4,23 33.6,23 33.6,27.2 37,27.2 37,32 24,32 24,27.2 " />
|
||||
<polyline id="Path-15" class="st2" points="28,41 35,48 49,33 " />
|
||||
<g id="Group-37" transform="translate(107.000000, 17.000000)">
|
||||
<rect id="Rectangle-15" x="9" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_1_" x="18" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_2_" x="27" y="27" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_3_" x="4" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_4_" x="13" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_5_" x="8" y="9" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_6_" x="12" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_7_" x="17" y="9" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_8_" x="22" y="18" class="st5" width="8" height="8" />
|
||||
<rect id="Rectangle-15_9_" y="27" class="st5" width="8" height="8" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
BIN
media/images/neverlate.max-165x165.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
media/images/neverlate.max-800x600.png
Normal file
|
After Width: | Height: | Size: 216 KiB |
BIN
media/images/neverlate.width-800.png
Normal file
|
After Width: | Height: | Size: 216 KiB |
BIN
media/images/saburly-web-agency.max-165x165.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
media/images/saburly-web-agency.max-800x600.jpg
Normal file
|
After Width: | Height: | Size: 112 KiB |
BIN
media/images/saburly-web-agency.width-800.jpg
Normal file
|
After Width: | Height: | Size: 112 KiB |