Merge pull request #4568 from LLK/hotfix/annual-report

[Develop] Hotfix Annual Report 2020-10-29
This commit is contained in:
Karishma Chadha 2020-10-29 10:46:31 -04:00 committed by GitHub
commit 5eab77c97c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
105 changed files with 13773 additions and 1 deletions

4118
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -110,6 +110,7 @@
"node-dir": "0.1.16",
"node-sass": "4.14.1",
"pako": "0.2.8",
"plotly.js": "1.47.4",
"po2icu": "0.0.2",
"postcss-loader": "2.0.10",
"prop-types": "15.6.0",
@ -119,6 +120,7 @@
"react-intl": "2.8.0",
"react-modal": "3.11.1",
"react-onclickoutside": "6.7.1",
"react-plotly.js": "2.4.0",
"react-redux": "5.0.7",
"react-responsive": "3.0.0",
"react-slick": "0.16.0",

View file

@ -35,8 +35,8 @@ $cols11: (11 * ($column + $gutter) - $gutter) / $em;
$cols12: (12 * ($column + $gutter) - $gutter) / $em;
$desktop: 942px;
$mobileIntermediate: 640px;
$tabletPortrait: 768px;
$mobileIntermediate: 640px;
$mobile: 480px;
/* Media Queries */

View file

@ -0,0 +1,73 @@
const bindAll = require('lodash.bindall');
const PropTypes = require('prop-types');
const React = require('react');
const Video = require('../video/video.jsx');
require('./video-preview.scss');
class VideoPreview extends React.Component {
constructor (props) {
super(props);
bindAll(this, [
'handleShowVideo'
]);
this.state = {
videoOpen: false
};
}
handleShowVideo () {
this.setState({videoOpen: true});
}
render () {
return (
<div className="video-preview">
{this.state.videoOpen ?
(
<Video
className="video"
height={this.props.videoHeight}
videoId={this.props.videoId}
width={this.props.videoWidth}
/>
) : (
<div
className="video-thumbnail"
onClick={this.handleShowVideo}
>
<img
src={this.props.thumbnail}
style={{
width: `${this.props.thumbnailWidth}px` || 'auto',
height: `${this.props.thumbnailHeight}px` || 'auto'
}}
/>
<a
onClick={this.handleShowVideo}
>
<div className="button">
{this.props.buttonMessage}
</div>
</a>
</div>
)
}
</div>
);
}
}
VideoPreview.propTypes = {
buttonMessage: PropTypes.string.isRequired,
thumbnail: PropTypes.string.isRequired,
thumbnailHeight: PropTypes.string,
thumbnailWidth: PropTypes.string,
videoHeight: PropTypes.string,
videoId: PropTypes.string.isRequired,
videoWidth: PropTypes.string
};
module.exports = VideoPreview;

View file

@ -0,0 +1,26 @@
.video-preview {
display: flex;
justify-content: center;
align-items: center;
.video-player {
height: auto;
border: none;
border-radius: .75rem;
}
}
.video-thumbnail {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
img {
cursor: pointer;
}
.button {
margin-top: 20px;
}
}

View file

@ -0,0 +1,82 @@
import Plot from 'react-plotly.js';
const React = require('react');
const PropTypes = require('prop-types');
const WorldMap = props => (
<Plot
useResizeHandler
className="map"
config={
{
scrollZoom: false,
displayModeBar: false,
responsive: true
}
}
data={[
{
type: 'choropleth',
locationmode: 'country names',
locations: props.countryNames,
z: props.colorIndex,
text: props.countryData,
hovertemplate: '<b> %{location} </b>' +
'<br>' +
' %{text:,.0f} ' +
'<extra></extra>',
hoverlabel: {
bgcolor: '#FFF',
bordercolor: '#5B6671',
font: {
color: '#575E75',
size: '16',
family: "'Helvetica Neue Regular', sans-serif"
}
},
colorscale: [[0, 'rgba(14,189,140, .05)'], [1, 'rgba(14,189,140, 1)']],
showscale: false,
marker: {
line: {
color: '#FFFF',
width: 1
}
}
}
]}
layout={
{
geo: {
projection: {
type: 'robinson',
scale: 1
},
showcoastlines: false,
showframe: false,
scope: 'world',
fitbounds: 'locations',
showland: true,
landcolor: 'rgba(14,189,140, .05)'
},
dragmode: false,
margin: {
l: 0,
r: 0,
b: 0,
t: 0,
pad: 0,
autoexpand: true
},
autosize: true
}
}
style={{position: 'absolute', display: 'block'}}
/>
);
WorldMap.propTypes = {
colorIndex: PropTypes.arrayOf(PropTypes.number),
countryData: PropTypes.arrayOf(PropTypes.number),
countryNames: PropTypes.arrayOf(PropTypes.string)
};
module.exports = WorldMap;

View file

@ -6,6 +6,14 @@
"view": "about/about",
"title": "About"
},
{
"name": "annual-report",
"pattern": "^/annual-report/?$",
"routeAlias": "/annual-report/?$",
"view": "annual-report/annual-report",
"title": "Annual Report",
"viewportWidth": "device-width"
},
{
"name": "camp",
"pattern": "^/camp/?$",

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,42 @@
[
{
"id": 423104626,
"author": {
"id": 61730637,
"username": "-pug_arts-"
},
"image": "https://cdn2.scratch.mit.edu/get_image/project/423104626_144x108.png",
"title": "♡ BLM ART! ♡",
"stats": {}
},
{
"id": 404637877,
"author": {
"id": 60051701,
"username": "-MayThe4thBeWithYou-"
},
"image": "https://cdn2.scratch.mit.edu/get_image/project/404637877_144x108.png",
"title": "Can't Breathe",
"stats": {}
},
{
"id": 404286089,
"author": {
"id": 28599090,
"username": "BubbleMint-"
},
"image": "https://cdn2.scratch.mit.edu/get_image/project/404286089_144x108.png",
"title": "In Memory of George Floyd || ♡",
"stats": {}
},
{
"id": 408116876,
"author": {
"id": 58796616,
"username": "-bIueberryonthemoon-"
},
"image": "https://cdn2.scratch.mit.edu/get_image/project/408116876_144x108.png",
"title": "Justice for Breonna Taylor ❤️",
"stats": {}
}
]

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,246 @@
{
"annualReport.subnavMessage": "Message",
"annualReport.subnavMission": "Mission",
"annualReport.subnavMilestones": "Milestones",
"annualReport.subnavReach": "Reach",
"annualReport.subnavInitiatives": "Initiatives",
"annualReport.subnavFinancials": "Financials",
"annualReport.subnavSupporters": "Supporters",
"annualReport.subnavTeam": "Team",
"annualReport.subnavDonate": "Donate",
"annualReport.mastheadYear": "2019 Annual Report",
"annualReport.mastheadTitle": "Cultivating a World of Creative Learning",
"annualReport.messageTitle": "Message from the Scratch Team",
"annualReport.messageP1": "2019 was a year of great progress for Scratch. We started the year with the launch of Scratch 3.0, our newest generation of Scratch, designed to spark childrens creativity and engage children with diverse interests and backgrounds. We celebrated the end of the year with our team moving from MIT into its new home at the Scratch Foundation, in a playful first-floor space near South Station in Boston. Throughout the year, the Scratch community continued to thrive and grow: More than 20 million young people created projects with Scratch in 2019, an increase of 48% over the year before.",
"annualReport.messageP2": "The impact and importance of Scratch have been highlighted in 2020 as the COVID pandemic forced schools to close. Activity in the Scratch online community more than doubled as young people, confined to their homes, turned to Scratch to express themselves creatively and connect with one another. Scratchers have also been actively engaged in Black Lives Matter and other movements for racial justice and equity, creating animated projects and studios to spread awareness and demand change.",
"annualReport.messageP3": "From the time we launched Scratch in 2007, we have always seen Scratch as more than a programming language. Scratch provides opportunities for all young people, from all backgrounds, to develop their voices, express their ideas, and create with one another. We love to see the ways that Scratchers have responded to recent societal challenges with creativity, collaboration, caring, and kindness.",
"annualReport.messageP4": "In this Annual Report, well share more about the mission, plans, impact, and reach of Scratch, supported with examples of how Scratch is expanding learning opportunities for a broad diversity of young people around the world, both in schools and throughout their lives.",
"annualReport.messageP5": "Were proud of what young people are creating and learning with Scratch today, and were committed to providing more opportunities for more young people in the future.",
"annualReport.messageSignature": "— The Scratch Team",
"annualReport.covidResponseTitle": "Scratch Responds to COVID",
"annualReport.covidResponseP1": "As we write this annual report, we are months into the COVID pandemic. Since the middle of March 2020, the Scratch office has been closed and Scratch Team members have been actively working from home to support children and educators around the world whose lives have been disrupted by the pandemic.",
"annualReport.covidResponseP2": "On March 17, we launched the #ScratchAtHome initiative to provide children, families, and educators with ideas for engaging in creative learning activities with Scratch at home. We continue to add video tutorials and other resources to the {scratchAtHomeLink}.",
"annualReport.covidResponseScratchAtHomePage": "#ScratchAtHome page",
"annualReport.covidResponseP3": "Activity in the {scratchCommunityLink} has more than doubled from last year. Scratchers are creating and sharing projects to support and inspire others through the pandemic—with projects and studios that offer ideas for exercising at home, tips for staying healthy, humor to cheer up one another, and thanks to essential workers.",
"annualReport.covidResponseScratchCommunity": "Scratch online community",
"annualReport.missionTitle": "Our Mission",
"annualReport.missionSubtitle": "Our mission is to provide all children, from all backgrounds, with opportunities to imagine, create, and collaborate with new technologies — so they can shape the world of tomorrow.",
"annualReport.missionP1": "We are committed to prioritizing equity across all aspects of our work, with a particular focus on initiatives and approaches that support children, families, and educators furthest from educational justice.",
"annualReport.missionP2": "Weve developed Scratch as a free, safe, playful learning environment that engages all children in thinking creatively, reasoning systematically, and working collaboratively — essential skills for everyone in today's society. We work with educators and families to support children in exploring, sharing, and learning.",
"annualReport.missionP3": "In developing new technologies, activities, and learning materials, we are guided by what we call the {fourPsItalics}:",
"annualReport.fourPs": "Four Ps of Creative Learning",
"annualReport.missionProjectsTitle": "Projects",
"annualReport.missionPeersTitle": "Peers",
"annualReport.missionPassionTitle": "Passion",
"annualReport.missionPlayTitle": "Play",
"annualReport.missionProjectsDescription": "Engage children in designing, creating, and expressing themselves creatively",
"annualReport.missionPeersDescription": "Support children in collaborating, sharing, remixing, and mentoring",
"annualReport.missionPassionDescription": "Enable children to build on their interests and work on personally meaningful projects",
"annualReport.missionPlayDescription": "Encourage children to tinker, experiment, and iterate",
"annualReport.milestonesTitle": "Milestones",
"annualReport.milestonesDescription": "Here are some key events and accomplishments in the history of Scratch and the global Scratch community.",
"annualReport.milestones2003Message": "Awarded a National Science Foundation grant to start development of Scratch",
"annualReport.milestones2004Message": "Offered first Scratch workshop at Computer Clubhouse Teen Summit",
"annualReport.milestones2007Message": "Public launch of Scratch programming language and online community",
"annualReport.milestones2008Message": "Organized first Scratch Conference for educators and developers",
"annualReport.milestones2009Message1.4": "Released Scratch 1.4, translated into more than 40 languages",
"annualReport.milestones2009MessageScratchDay": "Hosted first Scratch Day event for children and families",
"annualReport.milestones2010Message": "Scratch online community reaches 1 million members",
"annualReport.milestones2013MessageFoundation": "Established Code-to-Learn Foundation (later renamed Scratch Foundation)",
"annualReport.milestones2013MessageScratch2": "Launch of Scratch 2.0, providing new opportunities for collaboration",
"annualReport.milestones2014Message": "Launch of ScratchJr for younger children, ages 5 to 7",
"annualReport.milestones2016Message": "Scratch online community reaches 10 million members",
"annualReport.milestones2017Message": "Scratch Day grows to 1,100 events in 60 countries",
"annualReport.milestones2019MessageScratch3": "Launch of Scratch 3.0, expanding what kids can create with code",
"annualReport.milestones2019MessageMove": "Scratch Team moves from MIT into Scratch Foundation",
"annualReport.reachTitle": "Reaching Children Around the World",
"annualReport.reachSubtitle": "Scratch is the worlds largest coding community for children and teens, ages 8 and up.",
"annualReport.reachMillion": "million",
"annualReport.reach170million": "170 {million}",
"annualReport.reach60million": "60 {million}",
"annualReport.reach20million": "20 {million}",
"annualReport.reach48million": "48 {million}",
"annualReport.reachUniqueVisitors": "Unique Visitors",
"annualReport.reachProjectsCreated": "Projects Created",
"annualReport.reachProjectCreators": "People Created Projects",
"annualReport.reachComments": "Comments Posted in the Online Community",
"annualReport.reachGrowthTitle": "Community Growth",
"annualReport.reachGrowthBlurb": "New accounts created in the Scratch Online Community within the last 5 years.",
"annualReport.reachGlobalCommunity": "Our Global Community",
"annualReport.reachMapBlurb": "Total accounts registered in the Scratch Online Community from the launch of Scratch through 2019",
"annualReport.reachMap20M": "20M",
"annualReport.reachMapLog": "on a logarithmic scale",
"annualReport.reachTranslationTitle": "Scratch is Translated into 60+ Languages",
"annualReport.reachTranslationBlurb": "Thanks to volunteer translators from around the world.",
"annualReport.reachScratchJrBlurb": "ScratchJr is an introductory programming environment that enables young children (ages 5-7) to create their own interactive stories and games.",
"annualReport.reach22million": "22 {million}",
"annualReport.reachDownloads": "Downloads Since Launching in 2014",
"annualReport.initiativesTitle": "Initiatives",
"annualReport.initiativesDescription": "The work at the Scratch Foundation centers on three strategic areas: creative tools, community, and schools. Each area prioritizes the voice and needs of children who are underrepresented in creative computing and seeks to support children in diverse settings and cultures around the world.",
"annualReport.equity": "Equity",
"annualReport.globalStrategy": "Global Strategy",
"annualReport.toolsTitle": "Creative Tools",
"annualReport.toolsIntro": "We are constantly experimenting and innovating with new technologies and new designs — always striving to provide children with new ways to create, collaborate, and learn.",
"annualReport.toolsSpotlight": "Creative Tools — Spotlight Story",
"annualReport.toolsLaunch": "Launch of Scratch 3.0",
"annualReport.toolsLaunchIntro1": "We designed Scratch 3.0 to expand how, what, and where kids can create with Scratch. Released at the start of 2019, Scratch 3.0 led to a surge of activity in the Scratch community, with more projects — and a greater variety of projects — than ever before.",
"annualReport.toolsLaunchIntro2": "Scratch 3.0 includes a library of extensions — extra collections of coding blocks that add new capabilities to Scratch. Some extensions provide access to web services and other software features, while others connect Scratch with physical-world devices like motors and sensors.",
"annualReport.toolsTexttoSpeech": "Text-to-Speech",
"annualReport.toolsTexttoSpeechIntro": "With the Text-to-Speech extension, kids can program their Scratch characters to speak out loud, in a variety of different voices.",
"annualReport.toolsNumProjects": "330,000+",
"annualReport.toolsTexttoSpeechProjects": "{numProjects} projects in 2019 used Text-to-Speech",
"annualReport.toolsMostPopular": "Most Popular",
"annualReport.toolsTexttoSpeechPopular": "{mostPopular} new Scratch Extension in the community",
"annualReport.toolsCollabAWS": "Collaboration with Amazon Web Services",
"annualReport.toolsTranslate": "Translate",
"annualReport.toolsTranslateIntro": "With the Translate extension, built on the Google Translate API, kids can incorporate automatic translation into their projects, supporting language learning and global communication.",
"annualReport.toolsNumLanguages": "50+",
"annualReport.toolsTranslateLanguages": "{numLanguages} languages translated in the extension",
"annualReport.toolsSupportsLiteracy": "Supports Literacy",
"annualReport.toolsCSandLanguageArts": "computer science and language arts",
"annualReport.toolsTranslateLiteracy": "{supportsLiteracy} across {CSandLanguageArtsLink}",
"annualReport.toolsCollabGoogle": "Collaboration with Google",
"annualReport.toolsPhysicalWorld": "Physical World Connections",
"annualReport.toolsMindstormsLink": "LEGO Mindstorms EV3",
"annualReport.toolsWeDoLink": "WeDo 2.0",
"annualReport.toolsLEGORoboticsIntro": "Students can create dancing robots, interactive sculptures, and data-collection experiments using Scratch with LEGO robotics kits. The new LEGO Education SPIKE Prime Set features an app based on Scratch. In addition, Scratch extensions are available for {mindstormsLink} and {weDoLink}.",
"annualReport.toolsCollabLEGO": "Collaboration with LEGO Education",
"annualReport.toolsVideoTutorials": "Video Tutorials",
"annualReport.toolsTutorialsIntro": "Scratch 3.0 introduced a diverse collection of video tutorials to help kids get started with Scratch. The tutorials are open-ended and designed to encourage students to experiment, follow their interests, and express their own ideas.",
"annualReport.toolsNumTutorials": "25 new tutorials",
"annualReport.toolsNewTutorials": "{numTutorials} available in Scratch 3.0",
"annualReport.toolsNumViews": "23 million",
"annualReport.toolsTutorialsViews": "{numViews} views in 2019",
"annualReport.toolsApp": "Scratch App Supports Learning Offline",
"annualReport.toolsDownloadLink": "downloadable app",
"annualReport.toolsRaspberryLink": "use on Raspberry Pi 4",
"annualReport.toolsAppIntro": "During 2019, the Scratch Team released Scratch 3.0 as a {downloadableLink} for use on multiple platforms, including Windows, MacOS, ChromeOS, and Android tablets. In addition, the Raspberry Pi Foundation released Scratch 3.0 for {raspberryLink}. These downloadable versions are especially important for millions of learners in areas where internet connectivity is unavailable or unreliable.",
"annualReport.toolsAbhiTitle": "Abhi at Cartoon Network",
"annualReport.toolsAbhiIntro": "To highlight what kids can do with Scratch 3.0, we collaborated with Cartoon Network to create a video featuring Abhi, a 12-year-old Scratcher who loves to make animations and games. In the video, Abhi meets with Ian Jones-Quartey, creator of OK K.O. and other Cartoon Network shows. Abhi introduces Ian to key features of the new version of Scratch, and together they draw and program an animation of a Cartoon Network character jumping up and down.",
"annualReport.toolsAbhiQuote": "My favorite thing about Scratch is the community, because they are nice and helpful to me. Thats why Im always happy to share every project thats in my dreams.",
"annualReport.communityTitle": "Community",
"annualReport.communityIntro": "The Scratch online community has always been an important part of the Scratch experience, providing opportunities for children to collaborate, share, and provide feedback to one another.",
"annualReport.communitySpotlight": "Community — Spotlight Story",
"annualReport.communityTeam": "Scratch Community Team",
"annualReport.communityTeamIntro1": "When asked why they use Scratch, most Scratchers talk about the importance of the online community for motivating their ongoing participation, providing a space where they can express their creativity, make friends, receive feedback, get new ideas, and learn new skills. Many Scratchers express their appreciation for the Scratch community as a safe and welcoming space to connect, share, and learn from one another.",
"annualReport.communityTeamIntro2": "With 40,000 new projects and 400,000 new comments in the Scratch online community each day, how can we ensure that the community remains safe and friendly, while also supporting and encouraging creative expression? Our Community Team, including full-time staff and a network of moderators, leads this essential work. There are two key dimensions of the Community Team's work: moderation and community engagement.",
"annualReport.communityModerationTitle": "Community Moderation",
"annualReport.communityModerationInfo": "When young people join the Scratch community, they agree to follow a set of Community Guidelines, which are designed to keep Scratch a safe and supportive place for young people from all backgrounds. Our Community Team uses a wide variety of tools and strategies to encourage good digital citizenship and maintain a positive environment for Scratchers to create in. Automated filters prevent private information from being shared or inappropriate content from being posted, and we allow anyone to report content they feel violates the Community Guidelines.",
"annualReport.communityGuidelinesTitle": "Community Guidelines",
"annualReport.communityGuidelinesInfo": "Scratch welcomes people of all ages, races, ethnicities, religions, abilities, sexual orientations, and gender identities.",
"annualReport.communityGuidelinesRespect": "Be respectful.",
"annualReport.communityGuidelinesShare": "Share.",
"annualReport.communityGuidelinesHonest": "Be honest.",
"annualReport.communityGuidelinesConstructive": "Be constructive.",
"annualReport.communityGuidelinesPrivacy": "Keep personal info private.",
"annualReport.communityGuidelinesFriendly": "Help keep the site friendly.",
"annualReport.communityEngagementTitle": "Community Engagement",
"annualReport.storySwap": "Story Swap",
"annualReport.communityEngagementInfo": "Another major role of the Community Team is to highlight and develop opportunities for young people to express their ideas and become engaged in positive ways. The team features projects and studios from community members to serve as inspiration, and it regularly posts Scratch Design Studios to encourage creative activity. Each summer, the team organizes an online Scratch Camp: the theme in 2019 was {storySwapLink}, with Scratchers building on one anothers stories.",
"annualReport.communitySDSTitle": "Scratch Design Studios",
"annualReport.communitySDSInfo": "Some Scratch Design Studios from 2019:",
"annualReport.communityDayintheLife": "Day in the Life",
"annualReport.communityDayintheLifeInfo": "Create a project about a day in the life of something",
"annualReport.communityYear3000": "Year 3000",
"annualReport.communityYear3000Info": "What might life be like in the year 3000?",
"annualReport.communityBounce": "Bounce",
"annualReport.communityBounceInfo": "Create a project that involves bouncing, jumping, boinging, or hopping.",
"annualReport.communityMonochromatic": "Monochromatic",
"annualReport.communityMonochromaticInfo": "How would things look if there were only one color?",
"annualReport.communityQuotes": "Community — Quotes",
"annualReport.communityQuote1": "I joined Scratch when I was 11 years old and the things I learned from using the platform and interacting with the community were really a vital part of my learning growing up.",
"annualReport.communityQuote2": "Scratch has allowed me to do things from home, like \n- Respect people and their projects\n- Make friends\n- Feel that I am not alone in this quarantine\n....and much more, so I want to say \n¡GRACIAS!",
"annualReport.communityQuote3": "I've been on Scratch for about 2 years, and it's been a life-changing experience! I've learned so many new things, such as coding, online etiquette, and art!",
"annualReport.communityQuote4": "Scratch was my favorite hobby in sixth grade. It secretly introduced me to Boolean logic, order of operations, and nested mathematical expressions—not to mention computer programming itself.",
"annualReport.studio": "studio",
"annualReport.communityBLMIntro": "As racial justice protests swept the United States after the tragic killings of George Floyd, Breonna Taylor, Ahmaud Arbery, and others in early 2020, many young people used Scratch as a way to express their support for the Black Lives Matter movement, creating projects and posting comments to speak out against racism and police violence. In a {BLMStudioLink} featured on the Scratch home page, Scratchers contributed hundreds of projects and thousands of comments. The Scratch Community Team was actively involved, to support Scratchers during a traumatic time and to ensure that all projects and conversations remained respectful.",
"annualReport.communityArtwork": "Artwork by the Scratcher OnionDipAnimations",
"annualReport.communityChangeTitle": "We see young people as agents of change.",
"annualReport.communityChangeInfo": "We are committed to working with them, and with the educators and families who support them, to ensure that they develop the skills, the motivation, and the confidence theyll need to lead fulfilling lives and bring about meaningful change in society.",
"annualReport.watchVideo": "Watch Video",
"annualReport.schoolsTitle": "Schools",
"annualReport.schoolsIntro": "We provide programs and resources to support teachers and students in schools around the world, designed to achieve equity in creative computing experiences, based on projects, passion, peers, and play.",
"annualReport.schoolsSpotlight": "Schools — Spotlight Story",
"annualReport.cpsProjectTitle": "Creative Computing in Chicago Public Schools",
"annualReport.cpsProjectIntroP1": "In 2019, with funding from Google.org, the Scratch Team partnered with SocialWorks, CS4ALL Chicago and Chicago Public Schools to support seven elementary schools in the South Side of Chicago as they launched an initiative to incorporate creative coding into their curriculum.",
"annualReport.cpsProjectIntroP2": "As a part of this initiative, hundreds of students imagined and drew themselves as the superhero of their own video games. They brought those ideas to life in a collaborative Scratch project called SuperMe. Local Chicago hero and Grammy Award winning musician Chance the Rapper was so inspired by the students work that he named it the official video game for his hit song “I Love You So Much” and shared it with the world.",
"annualReport.familyCreativeNightsHeader": "Family Creative Coding Nights",
"annualReport.familyCreativeNightsDescription": "A key to the success of this initiative was to connect students, families, teachers, and other community members through Family Creative Coding Nights. These events brought together hundreds of family members of all ages—from young children to grandparents—in activities that mixed coding with art, dance, and music. These events strengthened connections between home and school, recognizing the important role of families in inspiring and supporting children's learning.",
"annualReport.familyNightsPhotoCredit": "Photos by Jordan Macy, SocialWorks",
"annualReport.teacherPDHeader": "Investing in Professional Development for Teachers",
"annualReport.teacherPDDescription": "Teachers across the participating elementary schools came together for professional development workshops, gaining first-hand experience in creating their own Scratch projects and finding meaningful ways to use Scratch to support student learning across the curriculum.",
"annualReport.teacherPDQuoteAttribution": "{teacherName}, CPS Educator",
"annualReport.teacherPDQuote": "What surprised me most was the intrinsic collaboration that came with using Scratch in my classroom. Often, students themselves would discover something in the Scratch platform, show me, and then spread it among themselves.",
"annualReport.extendingReachHeader": "Extending the Reach",
"annualReport.extendingReachDescription": "To expand the reach of this partnership, CS4ALL Chicago built on the Family Creative Coding Night model and has made it available to all Chicago Public Schools. Google CS First produced {codeYourHeroLink} guides for students and teachers, available free online in English and Spanish.",
"annualReport.codeYourHero": "Code Your Hero",
"annualReport.inTheNewsHeader": "In the News",
"annualReport.chicagoSunTimesArticle": "Chicago Sun Times Article",
"annualReport.rollingStoneArticle": "Rolling Stone Article",
"annualReport.conferencesTitle": "Scratch Conferences around the World",
"annualReport.conferencesIntro": "In 2008, the Scratch Team hosted the first Scratch conference at MIT, bringing together educators, researchers, and developers to share ideas and experiences for using Scratch to support creative learning. Since then, the Scratch Team has organized and hosted a Scratch conference at MIT every two years. In addition, members of the global Scratch community have organized and hosted more than a dozen conferences—stretching across oceans, continents, cultures, and languages.",
"annualReport.conferencesHeroImageCaption": "Scratch Africa Conference, photo by {photoCredit}",
"annualReport.conferencesLatinAmericaTitle": "Latin America",
"annualReport.conferencesLatinAmericaDescription": "In May 2019, educators from across Chile and other areas of Latin America came together for the second {scratchAlSurLink} conference in Santiago, Chile. Following the conference, Scratch al Sur released a {spanishVersionLink} of the {creativeComputingCurriculumLink} guide, developed by the Creative Computing group at the Harvard Graduate School of Education.",
"annualReport.conferencesSpanishVersionLinkText": "Spanish version",
"annualReport.conferencesLatinAmericaImageCaption": "Photo provided by {photoCredit}",
"annualReport.conferencesEuropeTitle": "Europe",
"annualReport.conferencesEuropeDescription": "In August 2019, the Raspberry Pi Foundation organized the fourth {scratchConferenceEuropeLink}, held in Cambridge, UK. The conference brought together formal and informal educators from more than 25 countries for hands-on workshops, presentations, and demonstrations by students, educators, researchers, and community-based organizations.",
"annualReport.conferencesEuropeImageCaption": "Photo provided by {photoCredit}",
"annualReport.conferencesAfricaTitle": "Africa",
"annualReport.conferencesAfricaDescription": "In October 2019, the first {scratchAfricaConferenceLink} was held in Nairobi, Kenya, drawing more than 250 educators and students from across Africa to share lessons, empower young people, and celebrate accomplishments in creative coding. At the conference, the Scratch Team launched a Swahili version of Scratch, available for use both online and offline.",
"annualReport.conferencesAfricaImageCaption": "Photo by {photoCredit}",
"annualReport.financialsTitle": "Financials - 2019",
"annualReport.financialsButton": "2019 Audited Financials",
"annualReport.financialsFutureYears": "Note: Financials in future years will be significantly different, since the Scratch staff has now transitioned from MIT to the Scratch Foundation.",
"annualReport.supportersTitle": "Thank You to Our Supporters",
"annualReport.supportersIntro": "Thank you to our generous supporters. Your contribution helps us expand creative learning opportunities for children of all ages, from all backgrounds, around the globe.",
"annualReport.supportersSpotlightTitle": "Donor - Spotlight Story",
"annualReport.supportersSFETitle": "Siegel Family Endowment",
"annualReport.supportersSFEDescription1": "In May 2012, David Siegel attended Scratch Day at the MIT Media Lab with his son Zach, an active and enthusiastic Scratcher. Watching Zach and other children using Scratch to code their own games, animations, and robotic creatures, David saw how much potential Scratch had to help children both learn practical coding skills, and develop as computational thinkers.",
"annualReport.supportersSFEDescription2": "David knows the importance of computational thinking firsthand, and his career as a computer scientist and entrepreneur has been shaped by the same curiosity that Scratch helps young learners explore every day. It's the same exploratory instinct that led him to study computer science at Princeton, and earn a PhD based on work completed at MIT's Artificial Intelligence Lab. In 2001, he co-founded Two Sigma, which has grown to become a world leader in applying machine learning and data science to investment management.",
"annualReport.supportersSFEDescription3": "In 2011, David founded Siegel Family Endowment (SFE) to support organizations working to help people adapt to the demands of new technology, and to better understand and mitigate the powerful disruptions that technology has driven in almost every sector. He is also a co-founder of the Scratch Foundation, and is a strong advocate for the organization's mission to keep Scratch free and accessible to learners all over the world.",
"annualReport.supportersCoFounder": "Co-Founder and Co-Chairman",
"annualReport.supportersQuote": "Making sure that Scratch remains free and accessible for kids everywhere is one of the most impactful ways we can help young learners engage and thrive in an increasingly digital world. Supporting Scratch is more important today than ever before.",
"annualReport.supportersThankYou": "Thank you to our supporters",
"annualReport.supportersAllDescription": "Our mission is to provide all children, from all backgrounds, with opportunities to imagine, create, and share with new technologies. We want to thank all Scratch supporters who, since we started working on Scratch in 2002, have helped us create amazing learning experiences for millions of young people around the world. The following list is based on cumulative giving to Scratch (at both MIT and Scratch Foundation) through December 31, 2019.",
"annualReport.supportersFoundingDescription": "We are especially grateful to our Founding Partners who supported us from the early days of Scratch, each providing at least $10,000,000 of cumulative support, in various forms.",
"annualReport.supportersFoundingTitle": "Founding Partners",
"annualReport.supportersCreativityTitle": "Creativity Circle — $1,000,000+",
"annualReport.supportersCollaborationTitle": "Collaboration Circle — $200,000+",
"annualReport.supportersImaginationTitle": "Imagination Circle — $50,000+",
"annualReport.supportersInspirationTitle": "Inspiration Circle — $20,000+",
"annualReport.supportersExplorationTitle": "Exploration Circle — $5,000+",
"annualReport.supportersInKindTitle": "In-Kind Supporters",
"annualReport.leadershipTitle": "Our Team",
"annualReport.leadershipBoard": "Board of Directors",
"annualReport.leadershipChair": "Chair",
"annualReport.leadershipProfessor": "Professor of Learning Research",
"annualReport.leadershipViceChair": "Vice-Chair",
"annualReport.leadershipBoardMember": "Board Member",
"annualReport.leadershipPresidentCEO": "President and CEO",
"annualReport.leadershipFormerPresident": "Former President",
"annualReport.leadershipFounderCEO": "Founder and CEO",
"annualReport.leadershipFormerChairCEO": "Former Chair and CEO",
"annualReport.leadershipBoardSecretaryTreasurer": "Board Secretary & Treasurer",
"annualReport.leadershipBoardSecretary": "Board Secretary",
"annualReport.leadershipBoardTreasurer": "Board Treasurer",
"annualReport.leadershipScratchTeam": "Scratch Team",
"annualReport.leadershipInterim": "Interim Executive Director",
"annualReport.donateTitle": "Support Us",
"annualReport.donateMessage": "Your support enables us to make Scratch free for everyone, keeps our servers running, and most importantly, we are able to provide kids around the world an opportunity to imagine, create and share. Thank you!",
"annualReport.donateButton": "Donate"
}

View file

@ -0,0 +1,273 @@
[
{
"userName": "cosmosaura",
"userId": 61436283,
"name": "Achal"
},
{
"userName": "originalwow",
"userId": 56182496,
"name": "Amielle"
},
{
"userName": "amylaser",
"userId": 17462181,
"name": "Amy"
},
{
"userName": "achouse",
"userId": 4747093,
"name": "Annie"
},
{
"userName": "wheelsonfire",
"userId": 10001044,
"name": "Ben"
},
{
"userName": "BrycedTea",
"userId": 2029640,
"name": "Bryce"
},
{
"userName": "designerd",
"userId": 3581881,
"name": "Carl"
},
{
"userName": "tarmelop",
"userId": 2286560,
"name": "Carmelo"
},
{
"userName": "carolinacr",
"userId": 40018416,
"name": "Carolina"
},
{
"userName": "chrisg",
"userId": 1494,
"name": "Chris"
},
{
"userName": "cwillisf",
"userId": 3532363,
"name": "Chris"
},
{
"userName": "ceebee",
"userId": 2755634,
"name": "Christan"
},
{
"userName": "codubee",
"userId": 10866958,
"name": "Colby"
},
{
"userName": "noncanonical",
"userId": 55851826,
"name": "Craig"
},
{
"userName": "dsquare",
"userId": 527836,
"name": "DD"
},
{
"userName": "SunnyDay4aBlueJay",
"userId": 24164779,
"name": "Ellen"
},
{
"userName": "ericr",
"userId": 159,
"name": "Eric"
},
{
"userName": "speakvisually",
"userId": 3484484,
"name": "Eric"
},
{
"userName": "cheddargirl",
"userId": 159139,
"name": "Franchette"
},
{
"userName": "pixelmoth",
"userId": 2408962,
"name": "Jacy"
},
{
"userName": "jaleesa",
"userId": 2374106,
"name": "Jaleesa"
},
{
"userName": "Mos20",
"userId": 52545208,
"name": "Joan"
},
{
"userName": "FredDog",
"userId": 2496866,
"name": "Jolie"
},
{
"userName": "Class12321",
"userId": 2871308,
"name": "Joshua"
},
{
"userName": "bluecrazie",
"userId": 50257624,
"name": "JT"
},
{
"userName": "MunchtheCat",
"userId": 59383434,
"name": "Kait"
},
{
"userName": "kittyloaf",
"userId": 27383273,
"name": "Karishma"
},
{
"userName": "dinopickles",
"userId": 34607790,
"name": "Katelyn"
},
{
"userName": "pondermake",
"userId": 26779669,
"name": "Kathy"
},
{
"userName": "kalakoalasmiles",
"userId": 62522360,
"name": "Keyla"
},
{
"userName": "khanning",
"userId": 1553886,
"name": "Kreg"
},
{
"userName": "KayOh",
"userId": 3018280,
"name": "Kristin"
},
{
"userName": "lamatchalattei",
"userId": 61415372,
"name": "Lamar"
},
{
"userName": "leoburd",
"userId": 385,
"name": "Leo"
},
{
"userName": "lilyland",
"userId": 17184580,
"name": "Lily"
},
{
"userName": "paperShannon101",
"userId": 38051483,
"name": "Manuj"
},
{
"userName": "algorithmar",
"userId": 43013126,
"name": "Maren"
},
{
"userName": "mwikali",
"userId": 24838781,
"name": "Marian"
},
{
"userName": "dietbacon",
"userId": 24137617,
"name": "Mark"
},
{
"userName": "Paddle2See",
"userId": 49156,
"name": "Mark"
},
{
"userName": "mres",
"userId": 167,
"name": "Mitch"
},
{
"userName": "natalie",
"userId": 169,
"name": "Natalie"
},
{
"userName": "sgcc_",
"userId": 21986973,
"name": "Paul"
},
{
"userName": "raimondious",
"userId": 2584924,
"name": "Ray"
},
{
"userName": "rtrvmwe",
"userId": 61342326,
"name": "Retrouvailles"
},
{
"userName": "binnieb",
"userId": 53715539,
"name": "Robyn"
},
{
"userName": "RupaLax",
"userId": 58005604,
"name": "Rupa"
},
{
"userName": "Rupsthereitis",
"userId": 4685510,
"name": "Rupal"
},
{
"userName": "scmb1",
"userId": 246290,
"name": "Sarah"
},
{
"userName": "pizzafordessert",
"userId": 22183577,
"name": "Sean"
},
{
"userName": "shruti",
"userId": 3714374,
"name": "Shruti"
},
{
"userName": "starry_sky7",
"userId": 61374093,
"name": "Yulia"
},
{
"userName": "Za-Chary",
"userId": 974363,
"name": "Zachary"
},
{
"userName": "Zinnea",
"userId": 35911243,
"name": "Zo\u00eb"
}
]

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 137 KiB

View file

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="300px" viewBox="0 0 300 300" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Donate Illustration</title>
<defs>
<polygon id="path-1" points="0 0 275.9999 0 275.9999 251.9994 0 251.9994"></polygon>
<polygon id="path-3" points="0.0001 0.0036 276 0.0036 276 89.3436 0.0001 89.3436"></polygon>
</defs>
<g id="Donate-Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Donate" transform="translate(12.000000, 24.000000)">
<g id="Group-3">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M275.5529,89.1004 C267.4879,180.2854 164.2079,251.9994 138.0089,251.9994 C111.8099,251.9994 8.5129,180.2854 0.4649,89.1004 C0.2329,86.1254 -0.0001,83.1514 -0.0001,80.1764 C-0.0001,35.9644 36.1079,-0.0006 80.5129,-0.0006 C100.4039,-0.0006 118.6919,7.1344 132.6709,19.2094 C135.7329,21.8534 140.2849,21.8534 143.3469,19.2094 C157.3259,7.1344 175.6149,-0.0006 195.5049,-0.0006 C239.8929,-0.0006 275.9999,35.9644 275.9999,80.1764 C275.9999,83.1514 275.7679,86.1254 275.5529,89.1004" id="Fill-1" fill="#0DA57A" mask="url(#mask-2)"></path>
</g>
<path d="M146.1137,152.0055 C132.8367,158.1095 137.7177,140.9795 151.0387,136.7245 C160.8517,133.5895 172.7807,128.3225 175.4487,113.4105 C176.5577,107.2185 174.9847,100.1045 168.5437,96.1605 C161.9607,92.1295 154.7667,94.4035 148.9957,98.9165 C140.7737,105.3455 133.5527,97.1525 142.7517,89.7965 C163.2837,73.3785 179.8927,88.7965 183.4307,94.7945 C181.3387,86.6515 174.1967,71.1355 173.1137,56.2925 C172.4547,47.2515 184.4607,40.6425 184.4737,52.8415 C184.4777,57.8345 185.217281,60.0262734 185.217281,60.0262734 C185.217281,60.0262734 193.376281,56.2672734 197.617281,68.6112734 C201.456281,68.6532734 206.359281,73.2362734 206.238281,78.1552734 C205.358281,113.839273 225.1217,130.0055 224.0457,149.7985 C222.8717,171.3915 190.6257,170.1135 180.7467,152.4705 C173.9467,140.3275 154.9777,147.9305 146.1137,152.0055 Z" id="Fill-4" fill="#ECC293"></path>
<path d="M180.7467,152.4705 C189.3997,168.9655 213.7787,202.4305 215.4897,202.8645 C215.4897,202.8645 232.8847,185.5445 246.3297,165.8525 C246.3297,165.8525 227.3607,148.2145 221.1847,134.5985 L180.7467,152.4705 Z" id="Fill-6" fill="#ECC293"></path>
<g id="Group-12" transform="translate(138.000000, 141.000000)" fill="#231F20">
<path d="M81.17,58.3631 L77.64,61.7231 C77.54,61.8131 77.49,61.8631 77.49,61.8631 L77.27,61.7331 C74.27,59.3531 51.13,27.4431 42.75,11.4731 C35.95,-0.6759 16.98,6.9331 8.11,11.0041 C3.38,13.1831 0.96,12.4031 0.4,10.3131 L0.4,10.2931 C3.81,14.2541 26.99,-3.5969 39.25,1.7631 C42.4,3.1341 45.06,5.7331 47.69,9.2931 C50.33,12.8631 52.95,17.4031 56,22.6641 C61.76,32.5631 69.11,45.0231 81.17,58.3631" id="Fill-8" opacity="0.1"></path>
<path d="M77.4899,61.8631 C77.4399,61.8531 77.3599,61.8031 77.2699,61.7331 L77.4899,61.8631 Z" id="Fill-10"></path>
</g>
<path d="M175.7799,109.6433 C175.7399,104.5233 173.6999,99.3243 168.5399,96.1643 C161.9599,92.1333 154.7699,94.4033 148.9999,98.9143 C144.2399,102.6333 139.8199,101.4633 138.7199,98.3833 L138.7199,98.3723 C141.6099,99.8133 144.3299,99.5423 147.1299,97.1533 C149.9199,94.7733 156.8699,89.9333 165.7899,92.3243 C174.1999,94.5633 175.8199,104.6133 175.7799,109.6433" id="Fill-13" fill="#231F20" opacity="0.1"></path>
<polygon id="Fill-15" fill="#231F20" opacity="0.1" points="183.4303 94.7947 188.1973 101.0887 178.7073 80.5217"></polygon>
<path d="M129.8919,152.0055 C143.1689,158.1095 138.2879,140.9795 124.9669,136.7245 C115.1539,133.5895 103.2249,128.3225 100.5569,113.4105 C99.4479,107.2185 101.0209,100.1045 107.4609,96.1605 C114.0449,92.1295 121.2389,94.4035 127.0099,98.9165 C135.2309,105.3455 142.4529,97.1525 133.2529,89.7965 C112.7219,73.3785 96.1129,88.7965 92.5749,94.7945 C94.6669,86.6515 101.8089,71.1355 102.8919,56.2925 C103.5509,47.2515 91.5449,40.6425 91.5319,52.8415 C91.5269,57.8345 90.7758789,59.1352539 90.7758789,59.1352539 C90.7758789,59.1352539 82.6168789,55.3762539 78.3758789,67.7202539 C74.5368789,67.7622539 69.6328789,72.3452539 69.7548789,77.2642539 C70.6348789,112.948254 50.8839,130.0055 51.9599,149.7985 C53.1339,171.3915 85.3789,170.1135 95.2589,152.4705 C102.0589,140.3275 121.0279,147.9305 129.8919,152.0055 Z" id="Fill-17" fill="#755135"></path>
<path d="M95.2589,152.4705 C86.6059,168.9655 62.2269,202.4305 60.5159,202.8645 C60.5159,202.8645 43.9059,186.6965 30.4619,167.0035 C30.4619,167.0035 48.6449,148.2145 54.8209,134.5985 L95.2589,152.4705 Z" id="Fill-19" fill="#755135"></path>
<g id="Group-25" transform="translate(56.000000, 141.000000)" fill="#231F20">
<path d="M0.8356,58.3631 L4.3656,61.7231 C4.4656,61.8131 4.5156,61.8631 4.5156,61.8631 L4.7356,61.7331 C7.7356,59.3531 30.8756,27.4431 39.2556,11.4731 C46.0556,-0.6759 65.0256,6.9331 73.8956,11.0041 C78.6256,13.1831 81.0456,12.4031 81.6056,10.3131 L81.6056,10.2941 C78.1956,14.2541 55.0156,-3.5969 42.7556,1.7631 C39.6056,3.1341 36.9456,5.7331 34.3156,9.2941 C31.6756,12.8631 29.0556,17.4031 26.0056,22.6631 C20.2456,32.5631 12.8956,45.0231 0.8356,58.3631" id="Fill-21" opacity="0.1"></path>
<path d="M4.5157,61.8631 C4.5657,61.8531 4.6457,61.8031 4.7357,61.7331 L4.5157,61.8631 Z" id="Fill-23"></path>
</g>
<path d="M100.2257,109.6433 C100.2657,104.5233 102.3057,99.3243 107.4657,96.1643 C114.0457,92.1333 121.2357,94.4033 127.0057,98.9143 C131.7657,102.6333 136.1857,101.4633 137.2857,98.3833 L137.2857,98.3733 C134.3957,99.8133 131.6757,99.5433 128.8757,97.1533 C126.0857,94.7733 119.1357,89.9333 110.2157,92.3243 C101.8057,94.5633 100.1857,104.6133 100.2257,109.6433" id="Fill-26" fill="#231F20" opacity="0.1"></path>
<polygon id="Fill-28" fill="#231F20" opacity="0.1" points="92.5753 94.7947 87.8083 101.0887 97.2983 80.5217"></polygon>
<g id="Group-32">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-31"></g>
<path d="M276.0001,80.1736 C276.0001,83.1526 275.7701,86.1226 275.5501,89.1036 C275.5061,89.1036 275.5261,89.1036 275.4821,89.1046 C270.9471,49.1476 236.8131,18.0036 195.5101,18.0036 C175.7901,18.0036 157.6461,25.0076 143.7181,36.8926 C140.4261,39.7006 135.5921,39.7016 132.3001,36.8936 C118.3671,25.0076 100.2301,18.0036 80.5101,18.0036 C39.1101,18.0036 4.9101,49.2736 0.4901,89.3436 L0.4891,89.3436 C0.2431,86.2826 0.0001,83.2336 0.0001,80.1736 C0.0001,35.9636 36.1101,0.0036 80.5101,0.0036 C100.2301,0.0036 118.3671,7.0076 132.3001,18.8936 C135.5921,21.7016 140.4261,21.7006 143.7181,18.8926 C157.6461,7.0076 175.7901,0.0036 195.5101,0.0036 C239.8901,0.0036 276.0001,35.9636 276.0001,80.1736" id="Fill-30" fill-opacity="0.1" fill="#231F20" mask="url(#mask-4)"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7 KiB

View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
<title>Caret Icon</title>
<desc>Created with Sketch.</desc>
<g id="R1.6_Columns-4" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="R1.6---4-Column" transform="translate(-306.000000, -62.000000)" fill="#FFFFFF">
<g id="V3---SubNav" transform="translate(0.000000, 52.000000)">
<g id="Closed">
<g id="Caret-Icon" transform="translate(306.000000, 10.000000)">
<path d="M12,0 C18.627417,0 24,5.372583 24,12 C24,18.627417 18.627417,24 12,24 C5.372583,24 0,18.627417 0,12 C0,5.372583 5.372583,0 12,0 Z M15.6853864,10.3100473 C15.2671176,9.89665089 8.73288244,9.89665089 8.31461357,10.3100473 C7.89512881,10.724642 7.89512881,11.3932658 8.31461357,11.8066623 L8.31461357,11.8066623 L11.2412797,14.6896531 C11.4516301,14.8969505 11.7252071,15 12,15 C12.2760088,15 12.5495858,14.8969505 12.7599362,14.6896531 L12.7599362,14.6896531 L15.6853864,11.8066623 C16.1048712,11.3932658 16.1048712,10.7234438 15.6853864,10.3100473 Z" id="Combined-Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>blue circle</title>
<g id="R2_Columns-12" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="R2---BOTTOM---12-Column-(grid)" transform="translate(-250.000000, -17814.000000)" fill="#4D97FF">
<g id="Financials" transform="translate(0.000000, 17459.000000)">
<g id="Revenue" transform="translate(250.000000, 230.000000)">
<g id="blue-circle" transform="translate(0.000000, 123.000000)">
<circle cx="10" cy="12" r="10"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 816 B

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>General/File Upload</title>
<defs>
<path d="M15.9776047,10.5793576 C16.5501461,10.5793576 17,11.0292116 17,11.601753 L17,13.8510227 C17,15.5822788 15.5959104,17.0000003 13.8646543,17.0000003 L6.1489776,17.0000003 C4.40408958,17.0000003 3,15.5822788 3,13.8510227 L3,11.601753 C3,11.0292116 3.46348588,10.5793576 4.02239533,10.5793576 C4.58130477,10.5793576 5.04479065,11.0292116 5.04479065,11.601753 L5.04479065,13.8510227 C5.04479065,14.4508279 5.53554041,14.9552096 6.1489776,14.9552096 L13.8646543,14.9552096 C14.4644596,14.9552096 14.9552093,14.4508279 14.9552093,13.8510227 L14.9552093,11.601753 C14.9552093,11.0292116 15.4186952,10.5793576 15.9776047,10.5793576 Z M10.2386952,3.02502728 C10.5385979,3.09182377 10.7567089,3.32356671 10.8248685,3.59756866 L11.9290555,7.97342066 L13.7421032,7.97342066 C14.232853,7.97342066 14.4918598,8.55823078 14.1374294,8.91266116 L10.4159104,12.6341802 C10.1977994,12.8536543 9.85700097,12.8536543 9.63888997,12.6341802 L5.91737098,8.91266116 C5.5629406,8.55823078 5.82194742,7.97342066 6.31269718,7.97342066 L8.1666407,7.97342066 L9.27082765,3.59756866 C9.37988315,3.1736154 9.81610516,2.91597178 10.2386952,3.02502728 Z" id="path-1"></path>
</defs>
<g id="General/File-Upload" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="file-upload-icon" fill="#4D97FF" xlink:href="#path-1"></use>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="220px" height="220px" viewBox="0 0 220 220" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Expenses Graph</title>
<defs>
<path d="M108,0 C167.646753,0 216,48.353247 216,108 C216,167.646753 167.646753,216 108,216 C48.353247,216 0,167.646753 0,108 C0,48.353247 48.353247,0 108,0 Z M108,53.0847458 C77.6711426,53.0847458 53.0847458,77.6711426 53.0847458,108 C53.0847458,138.328857 77.6711426,162.915254 108,162.915254 C138.328857,162.915254 162.915254,138.328857 162.915254,108 C162.915254,77.6711426 138.328857,53.0847458 108,53.0847458 Z" id="path-1"></path>
</defs>
<g id="Expenses-Graph" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(2.000000, 2.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<path stroke-opacity="0.15" stroke="#000000" stroke-width="2" d="M108,-1 C138.099519,-1 165.349519,11.2002406 185.074639,30.9253609 C204.799759,50.6504811 217,77.9004811 217,108 C217,138.099519 204.799759,165.349519 185.074639,185.074639 C165.349519,204.799759 138.099519,217 108,217 C77.9004811,217 50.6504811,204.799759 30.9253609,185.074639 C11.2002406,165.349519 -1,138.099519 -1,108 C-1,77.9004811 11.2002406,50.6504811 30.9253609,30.9253609 C50.6504811,11.2002406 77.9004811,-1 108,-1 Z M108,54.0847458 C93.1117137,54.0847458 79.6329001,60.1194161 69.8761581,69.8761581 C60.1194161,79.6329001 54.0847458,93.1117137 54.0847458,108 C54.0847458,122.888286 60.1194161,136.3671 69.8761581,146.123842 C79.6329001,155.880584 93.1117137,161.915254 108,161.915254 C122.888286,161.915254 136.3671,155.880584 146.123842,146.123842 C155.880584,136.3671 161.915254,122.888286 161.915254,108 C161.915254,93.1117137 155.880584,79.6329001 146.123842,69.8761581 C136.3671,60.1194161 122.888286,54.0847458 108,54.0847458 Z"></path>
<g id="Chart" mask="url(#mask-2)">
<g transform="translate(-1.963636, -1.963636)">
<path d="M109.977082,109.958066 L55.1172319,204.976252 C2.64008765,174.679109 -15.3401674,107.577281 14.9579357,55.0991768 C34.9242588,20.5158532 70.0444354,0.240287352 109.977082,0.240287352 L109.977082,109.958066 Z" id="Fill-1" fill="#0EBD8C"></path>
<path d="M109.977082,109.958066 L117.630359,219.408859 C94.4179474,221.031903 75.2689086,216.611269 55.1172319,204.976252 L109.977082,109.958066 Z" id="Fill-5" fill="#FFBF00"></path>
<path d="M109.977082,109.958066 L109.977082,0.240287352 C170.572327,0.240287352 219.694861,49.36186 219.694861,109.958066 C219.694861,167.82679 175.357906,215.372377 117.630359,219.408859 L109.977082,109.958066 Z" id="Fill-9" fill="#4D97FF"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>green circle</title>
<g id="R2_Columns-12" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="R2---BOTTOM---12-Column-(grid)" transform="translate(-250.000000, -17909.000000)" fill="#0EBD8C">
<g id="Financials" transform="translate(0.000000, 17459.000000)">
<g id="Revenue" transform="translate(250.000000, 230.000000)">
<g id="green-circle" transform="translate(0.000000, 123.000000)">
<circle cx="10" cy="107" r="10"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 819 B

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="220px" height="220px" viewBox="0 0 220 220" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Revenue Graph</title>
<defs>
<path d="M108,0 C167.646753,0 216,48.353247 216,108 C216,167.646753 167.646753,216 108,216 C48.353247,216 0,167.646753 0,108 C0,48.353247 48.353247,0 108,0 Z M108,53.0847458 C77.6711426,53.0847458 53.0847458,77.6711426 53.0847458,108 C53.0847458,138.328857 77.6711426,162.915254 108,162.915254 C138.328857,162.915254 162.915254,138.328857 162.915254,108 C162.915254,77.6711426 138.328857,53.0847458 108,53.0847458 Z" id="path-1"></path>
</defs>
<g id="Revenue-Graph" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(2.000000, 2.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<path stroke-opacity="0.15" stroke="#000000" stroke-width="2" d="M108,-1 C138.099519,-1 165.349519,11.2002406 185.074639,30.9253609 C204.799759,50.6504811 217,77.9004811 217,108 C217,138.099519 204.799759,165.349519 185.074639,185.074639 C165.349519,204.799759 138.099519,217 108,217 C77.9004811,217 50.6504811,204.799759 30.9253609,185.074639 C11.2002406,165.349519 -1,138.099519 -1,108 C-1,77.9004811 11.2002406,50.6504811 30.9253609,30.9253609 C50.6504811,11.2002406 77.9004811,-1 108,-1 Z M108,54.0847458 C93.1117137,54.0847458 79.6329001,60.1194161 69.8761581,69.8761581 C60.1194161,79.6329001 54.0847458,93.1117137 54.0847458,108 C54.0847458,122.888286 60.1194161,136.3671 69.8761581,146.123842 C79.6329001,155.880584 93.1117137,161.915254 108,161.915254 C122.888286,161.915254 136.3671,155.880584 146.123842,146.123842 C155.880584,136.3671 161.915254,122.888286 161.915254,108 C161.915254,93.1117137 155.880584,79.6329001 146.123842,69.8761581 C136.3671,60.1194161 122.888286,54.0847458 108,54.0847458 Z"></path>
<g id="Chart" mask="url(#mask-2)">
<g transform="translate(-1.963636, -1.963636)">
<path d="M110.053044,110.053133 L92.8717864,1.57692343 C98.623109,0.665796156 104.229908,0.224146286 110.053044,0.224146286 L110.053044,110.053133 Z" id="Fill-1" fill="#0EBD8C"></path>
<path d="M110.053044,110.053133 L13.0803765,58.4914086 C29.9384752,26.7859749 57.4051474,7.19449434 92.8717864,1.57692343 L110.053044,110.053133 Z" id="Fill-5" fill="#FFBF00"></path>
<path d="M110.053044,110.053133 L110.053044,0.224146286 C170.709883,0.224146286 219.882031,49.3962938 219.882031,110.053133 C219.882031,170.709973 170.709883,219.881223 110.053044,219.881223 C49.3962041,219.881223 0.224056519,170.709973 0.224056519,110.053133 C0.224056519,91.1887593 4.2240399,75.1475333 13.0803765,58.4914086 L110.053044,110.053133 Z" id="Fill-9" fill="#4D97FF"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>yellow circle</title>
<g id="R2_Columns-12" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="R2---BOTTOM---12-Column-(grid)" transform="translate(-250.000000, -17874.000000)" fill="#FFBF00">
<g id="Financials" transform="translate(0.000000, 17459.000000)">
<g id="Revenue" transform="translate(250.000000, 230.000000)">
<g id="yellow-circle" transform="translate(0.000000, 123.000000)">
<circle cx="10" cy="72" r="10"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 820 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 48 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.3 MiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1020px" height="500px" viewBox="0 0 1020 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Ahbi Video Splash</title>
<g id="Ahbi-Video-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.5">
<path d="M61.677234,70.3664159 C234.157139,-35.4025071 677.179332,4.68477567 750.952782,22.1909398 C858.405647,47.6891035 1006.11115,97.9507291 901.513249,165.833814 C860.427992,192.497771 991.213222,227.252548 997.104056,314.938082 C1008.60536,486.135949 650.276573,525.115334 446.776703,486.135949 C222.451203,443.16752 26.8853299,474.386664 19.1859313,410.891236 C11.4865326,347.395808 164.324967,351.218316 61.677234,281.991429 C-38.1378312,214.674927 -0.89844901,108.739365 61.677234,70.3664159 Z M973.641775,139.135036 C996.208002,132.302352 1020,153.081715 1020,176.598907 C1020,200.116099 994.545839,221.091846 966.091253,198.376727 C937.636667,175.661607 951.075548,145.96772 973.641775,139.135036 Z" id="splash" fill="#0EBD8C"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="380px" height="440px" viewBox="0 0 380 440" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>BLM Hero</title>
<g id="BLM-Hero" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(18.000000, 15.000000)">
<path d="M181.533764,412 C286.552015,412 356.976018,308.208786 342.149912,232.836595 C327.323806,157.464404 272.930431,137.04662 171.618707,127.161743 C70.3069824,117.276865 -9.97010595,171.056111 1.14947358,266.198057 C12.2690531,361.340003 76.5155126,412 181.533764,412 Z" id="Oval-Copy" fill-opacity="0.25" fill="#4D97FF"></path>
<g id="BLM-Fist" transform="translate(91.118421, 0.000000)" fill-rule="nonzero">
<path d="M15.3487584,73.6955473 C13.776264,47.5425105 38.3384098,13.2112654 69.7156956,17.2788469 C101.092973,21.3464285 120.373875,34.0857682 122.037949,61.7639894 C123.702006,89.4420804 115.55758,121.815517 93.7140393,107.807725 C75.9151104,96.39371 40.0566927,113.354516 39.1977668,112.94197 C23.1562402,105.238642 16.9212609,99.8485842 15.3487665,73.6955473 L15.3487584,73.6955473 Z" id="Path" stroke="#6D3030" stroke-width="6.9" fill="#813939"></path>
<path d="M42.9025798,29.0955446 C42.9025798,43.9284939 40.5604857,58.3945545 26.633349,58.3945545 C12.7062123,58.3945545 8.73719515,47.1839394 8.73719515,32.3509901 C8.73719515,17.5180408 12.7062123,4.67970297 26.633349,4.67970297 C40.5604857,4.67970297 42.9025798,14.2625952 42.9025798,29.0955446 Z" id="Path" stroke="#6D3030" stroke-width="6.9" fill="#813939"></path>
<path d="M121.808349,121.061881 C121.808349,126.905162 98.4265115,128.386634 72.5939259,128.386634 C46.7613403,128.386634 25.0064259,136.671498 25.0064259,130.828218 C25.0064259,124.984937 45.9478788,120.24802 71.7804644,120.24802 C97.61305,120.24802 121.808349,115.218601 121.808349,121.061881 Z" id="Path" stroke="#D60000" stroke-width="6.9" fill="#D60000"></path>
<path d="M128.316041,40.9335247 C128.316041,50.5974124 126.754643,60.0222772 117.46989,60.0222772 C108.185138,60.0222772 105.539118,52.7183922 105.539118,43.0545044 C105.539118,33.3906166 108.18513,25.0262376 117.46989,25.0262376 C126.754643,25.0262376 128.316041,31.2696369 128.316041,40.9335247 Z" id="Path" stroke="#6D3030" stroke-width="6.9" fill="#813939"></path>
<path d="M99.8448875,144.256931 C99.8448875,159.764099 86.7337177,172.335149 70.5602721,172.335149 C54.3868264,172.335149 41.2756567,159.764099 41.2756567,144.256931 C41.2756567,136.423197 31.6061777,113.875387 37.0025188,108.782324 C42.2884407,103.793476 62.5571365,116.178713 70.5602721,116.178713 C72.8680055,116.178713 95.4499337,105.040597 97.6037847,105.524486 C110.5449,108.431876 99.8448875,130.962432 99.8448875,144.256931 Z" id="Path" stroke="#6D3030" stroke-width="6.9" fill="#813939"></path>
<path d="M111.233349,32.3509901 C111.233349,47.1839313 108.891255,61.65 94.9641182,61.65 C81.0369815,61.65 77.0679644,50.4393768 77.0679644,35.6064356 C77.0679644,20.7734945 81.0369815,7.93514851 94.9641182,7.93514851 C108.891255,7.93514851 111.233349,17.5180489 111.233349,32.3509901 Z" id="Path" stroke="#6D3030" stroke-width="6.9" fill="#813939"></path>
<path d="M78.6948875,25.0262376 C78.6948875,39.8591788 76.3527934,54.3252475 62.4256567,54.3252475 C48.4985281,54.3252475 44.5295028,43.1146243 44.5295028,28.2816832 C44.5295028,13.448742 48.4985281,0.61039604 62.4256567,0.61039604 C76.3527934,0.61039604 78.6948875,10.1932965 78.6948875,25.0262376 Z" id="Path" stroke="#6D3030" stroke-width="6.9" fill="#813939"></path>
<g id="Group" transform="translate(13.617964, 116.341485)" fill="#FF2E2E" stroke="#D60000" stroke-linejoin="round" stroke-width="7.6">
<path d="M27.8269086,180.966295 C24.5881878,151.79556 17.6128496,98.6954728 17.3873581,94.8374768 C16.290999,76.0870953 9.3675709,69.6387006 6.90827331,51.0180241 C4.44897571,32.3973395 -8.14868827,22.2379567 11.9149745,17.1969155 C14.8191949,16.4672155 22.6261154,24.2029599 26.8939333,25.173457 C33.4011619,26.6531954 41.8428102,22.892879 48.7518644,23.1758424 C56.3664257,23.4877059 62.4686319,27.6625707 70.0269342,25.2875115 C90.7148067,18.7867286 113.440042,0.743226356 113.451781,0.787613425 C113.815666,2.2397384 119.159499,0.36866293 122.653682,11.4562954 C128.109365,28.7681037 121.989792,51.0644793 122.907767,61.3945777 C128.195682,120.900549 122.653682,278.29989 122.653682,284.852851 C122.653682,284.852851 102.647661,292 79.0558637,292 C63.3279992,292 46.7882856,290.736107 29.4367231,288.20832 C30.5226606,236.160793 29.9860558,200.413452 27.8269086,180.966295 Z" id="Path"></path>
</g>
<path d="M100.658349,97.459901 C100.658349,98.8083472 99.068593,128.386634 90.083349,128.386634 C85.239877,128.386634 56.5573207,134.183654 44.6426553,131.063416 C34.4541147,128.395212 37.208349,97.2676181 37.208349,96.6460396 C37.208349,95.2975934 75.4038743,92.5767327 84.3891182,92.5767327 C93.3743622,92.5767327 100.658349,96.1114548 100.658349,97.459901 Z" id="Path" fill="#813939"></path>
<path d="M51.785596,81.5759311 C31.8568133,87.6071079 11.0716996,91.2659519 3.04841458,78.0461085 C-4.97486233,64.826265 7.80063248,56.5004955 27.7294152,50.4693269 C47.6581979,44.4381501 67.1936476,42.9854483 75.2169245,56.2052917 C83.2402014,69.4251352 71.7143788,75.5447543 51.785596,81.5759311 L51.785596,81.5759311 Z" id="Path" stroke="#6D3030" stroke-width="6.9" fill="#813939"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1020px" height="500px" viewBox="0 0 1020 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>BLM Video Splash</title>
<g id="BLM-Video-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.5">
<path d="M1012.5263,321.154495 C1006.46594,230.488637 940.903783,200.762755 983.171406,173.192523 C1090.77946,103.002174 945.055691,-35.4860014 771.906145,15.8606443 C666.871088,47.0082733 527.006744,39.3956697 432.62076,15.8606443 C286.970753,-20.4570005 158.318713,5.84911207 61.2036433,92.1669801 C-35.911426,178.484848 -14.9442959,312.302059 106.288301,392.669852 C234.079975,477.385803 513.416265,531.117937 771.906145,480.182176 C912.911902,452.396811 1016.70263,383.634202 1012.5263,321.154495 Z M33.0078125,493.035156 C60.1224606,496.830673 83.8296658,479.357833 85.7820029,462.726382 C87.7343401,446.094932 76.5831796,421.063185 51.9233192,416.75149 C27.2634589,412.439794 9.13807792,427.574202 5.51073908,439.402108 C1.88340024,451.230014 5.89316443,489.239639 33.0078125,493.035156 Z" id="splash" fill="#4D97FF" transform="translate(510.000000, 250.000000) rotate(-180.000000) translate(-510.000000, -250.000000) "></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 798 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="244px" height="160px" preserveAspectRatio="none" viewBox="0 0 244 160" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Community-Splash</title>
<g id="Community-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Community" fill="#4D97FF">
<path d="M213.214971,137.289887 C249.36084,115.319388 251.209888,62.5415862 231.53169,27.3644855 C211.853491,-7.81261513 23.8595463,-7.81261513 9.81453556,20.1337721 C-4.23047515,48.0801593 -6.14025919,129.811744 23.8595463,149.427235 C53.8593517,169.042727 177.069103,159.260387 213.214971,137.289887 Z" id="Oval-Copy"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 754 B

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="244px" height="161px" preserveAspectRatio="none" viewBox="0 0 244 161" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Creative Tools-Splash</title>
<g id="Creative-Tools-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Creative-Tools" fill="#0EBD8C">
<path d="M190.425819,156.424293 C257.878027,149.516761 248.499193,72.1866549 232.348664,37.0733683 C216.198136,1.96008178 101.266787,-6.5188663 45.2149524,6.72056962 C-10.8368823,19.9600055 -6.60450973,93.0036005 14.2961744,129.84377 C35.1968585,166.68394 122.973611,163.331825 190.425819,156.424293 Z" id="Oval"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 762 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="780px" height="64px" preserveAspectRatio="none" viewBox="0 0 780 64" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Equity-Splash</title>
<g id="Equity-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Equity" fill="#FFBF00">
<path d="M141.421324,6.04263362 C-101.360648,16.6734875 -11.2643584,64.2139044 257.632387,62.5489097 C526.529935,60.8839151 772.652524,75.7254559 779.892533,37.0539025 C787.24494,-2.21747737 415.785408,-5.97115362 141.421324,6.04263362" id="Fill-1"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 672 B

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="780px" height="64px" viewBox="0 0 780 64" preserveAspectRatio="none" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Global-Splash</title>
<g id="Global-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Global" fill="#FF8C1A">
<path d="M278.812996,0.86399966 C18.7220961,-8.79420006 -124.791978,65.7441825 144.197426,63.9687642 C413.186026,62.1933458 801.722975,58.0060743 779.051065,24.2179213 C753.987481,-13.1350281 553.445883,11.0615509 278.812996,0.86399966" id="Fill-1"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 672 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

View file

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="380px" height="319px" viewBox="0 0 380 319" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Offline Learning Illustration</title>
<defs>
<path d="M165.988087,39.0555556 C317.046043,-23.3512264 394.008962,161.500256 377.155043,244.572269 C360.301123,327.644282 109.86816,344.225 44.5516984,275.12279 C-20.7647629,206.02058 14.9301304,101.462338 165.988087,39.0555556 Z M36.0672201,292.474447 C40.230035,291.016873 45.0245171,297.064036 43.9446282,303.205241 C42.8647393,309.346446 33.4681529,307.068342 31.0873481,303.205241 C28.7065433,299.342139 31.9044051,293.93202 36.0672201,292.474447 Z M7.06315104,254.774649 C15.9875757,252.28041 30.5492622,269.845012 30.5492622,280.476992 C30.5492622,291.108971 11.8931746,295.813191 5.01595052,285.46799 C-1.86127358,275.12279 -1.86127358,257.268888 7.06315104,254.774649 Z M284.747503,26.3888889 C273.022819,11.1600685 288.234223,-2.93782552 308.615849,0.740125868 C328.997475,4.41807726 373.755317,34.4506528 354.666667,49.4130287 C335.578016,64.3754046 296.472188,41.6177093 284.747503,26.3888889 Z" id="path-1"></path>
<path d="M58.772504,0.305350547 C37.1796366,3.50541794 42.6948034,22.9556013 40.9841541,22.9556013 C34.7275289,22.9556013 29.5395588,27.8274997 28.1803243,30.8496983 C26.6658128,34.2171489 26.6773674,37.7475522 27.8217325,40.5035844 C30.3347369,46.5557798 2.44843293,44.0095811 0.311429691,48.512396 C-1.82557355,53.0152108 12.1751088,53.7794775 28.46388,55.0874591 C44.7526512,56.3954407 93.2526183,61.7313409 93.1464506,47.870345 C93.0402829,34.0093491 65.2774813,40.1395901 65.2774813,34.6625494 C65.2774813,29.1855088 101.058065,34.9587177 98.5709975,22.4449874 C97.142442,15.2571822 81.4128707,23.0351386 80.5746307,14.3889 C79.4587096,2.87844954 65.7392083,-0.727116464 58.772504,0.305350547 Z" id="path-3"></path>
<path d="M47.8051187,18.171543 C46.545996,19.4268683 36.4880531,18.9787488 33.0636273,26.1026606 C29.2582229,34.0191308 37.2827429,37.7671107 31.5778955,43.0846527 C29.6411057,44.8899527 28.948431,45.4953367 18.6601384,45.3675672 C9.52407241,45.254107 -2.9582658,52.9644991 0.733775367,56.2929242 C4.42581654,59.6213494 24.8240783,58.1969527 42.1997703,55.8748913 C53.1844607,54.4069138 62.7998365,52.1498414 69.432286,51.5104513 C88.5672801,49.6657746 97.5486517,51.4654615 97.9671088,46.6824743 C98.385566,41.8994872 86.577037,29.9698365 78.4907846,32.5735494 C70.4045322,35.1772623 78.9602775,31.2667876 78.9602775,27.2072208 C78.9602775,20.2728265 77.3947528,24.0953801 77.9130214,18.171543 C78.5700863,10.6612563 79.0469473,7.58078281 68.386457,6.58928788 C64.7038318,6.24677979 63.5274744,-2.07442784 50.9982792,0.554792984 C38.469084,3.18401381 49.0642414,16.9162177 47.8051187,18.171543 Z" id="path-5"></path>
<rect id="path-7" x="0" y="0" width="174.9216" height="106.3392" rx="1.3824"></rect>
<rect id="path-9" x="0" y="0.58368" width="9.92256" height="9.92256" rx="1.10592"></rect>
<filter x="-15.1%" y="-15.1%" width="130.2%" height="130.2%" filterUnits="objectBoundingBox" id="filter-10">
<feMorphology radius="0.5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
<feOffset dx="0" dy="0" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"></feComposite>
<feColorMatrix values="0 0 0 0 0.298039216 0 0 0 0 0.592156863 0 0 0 0 1 0 0 0 0.25 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<circle id="path-11" cx="2.9184" cy="2.9184" r="2.9184"></circle>
<filter x="-25.7%" y="-25.7%" width="151.4%" height="151.4%" filterUnits="objectBoundingBox" id="filter-12">
<feMorphology radius="0.5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
<feOffset dx="0" dy="0" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.298039216 0 0 0 0 0.592156863 0 0 0 0 1 0 0 0 0.1 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<rect id="path-13" x="0" y="0" width="35.82336" height="87.77088"></rect>
<rect id="path-15" x="0" y="0" width="7.58784" height="88.57344"></rect>
<polygon id="path-17" points="0 0 7.73376 0 7.73376 7.73376 0 7.73376"></polygon>
<filter x="-19.4%" y="-19.4%" width="138.8%" height="138.8%" filterUnits="objectBoundingBox" id="filter-18">
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
<rect id="path-19" x="0" y="0" width="9.33888" height="6.87445333" rx="0.55296"></rect>
<rect id="path-21" x="0" y="0" width="9.33888" height="6.87445333" rx="0.55296"></rect>
<filter x="-5.4%" y="-7.3%" width="110.7%" height="114.5%" filterUnits="objectBoundingBox" id="filter-23">
<feGaussianBlur stdDeviation="0.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="0" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<circle id="path-24" cx="2.9184" cy="2.9184" r="2.9184"></circle>
<filter x="-25.7%" y="-25.7%" width="151.4%" height="151.4%" filterUnits="objectBoundingBox" id="filter-25">
<feMorphology radius="0.5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
<feOffset dx="0" dy="0" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
<feColorMatrix values="0 0 0 0 0.298039216 0 0 0 0 0.592156863 0 0 0 0 1 0 0 0 0.1 0" type="matrix" in="shadowOffsetOuter1"></feColorMatrix>
</filter>
<path d="M0,0 L65.664,0 L65.664,48.1681498 C65.664,48.7745971 65.1732074,49.2662198 64.55183,49.2662198 L1.11217005,49.2662198 C0.497935491,49.2662198 0,48.7786147 0,48.1681498 L0,0 Z" id="path-26"></path>
<rect id="path-28" x="0" y="0" width="65.664" height="49.2662198" rx="1.10592"></rect>
<path d="M55.8054394,2.49313106 C39.9329137,9.13546133 45.2981333,27.7122912 43.150048,27.7122912 C35.2935198,27.7122912 28.7789159,34.7660416 27.0721069,39.1417149 C25.1703145,44.0172591 25.1848237,49.1287336 26.6218183,53.1190393 C29.7774317,61.881676 2.68457698,57.314502 -2.83560943e-05,63.833877 C-2.83560943e-05,70.3533926 13.2707235,73.6447773 36.0711598,69.1199518 C58.8715961,64.5951264 115.143394,94.0789453 116.574184,62.0419885 C118.004974,30.0050316 81.5787444,50.8490588 81.5787444,42.9191564 C81.5787444,34.9892541 94.5774162,36.3786291 105.591108,19.6627111 C116.604799,2.94679317 71.677965,-4.14919922 55.8054394,2.49313106 Z" id="path-30"></path>
</defs>
<g id="Offline-Learning-Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Illustration">
<g id="Group-13">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="Mask-3" fill="#4D97FF" xlink:href="#path-1"></use>
<g mask="url(#mask-2)">
<g transform="translate(-9.500000, 62.859417)">
<g id="Cloud" stroke-width="1" fill="none" transform="translate(51.722222, 130.361111) rotate(-3.000000) translate(-51.722222, -130.361111) translate(2.111111, 101.333333)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<use id="Path-5" fill="#FFFFFF" xlink:href="#path-3"></use>
<path d="M58.3345666,-0.133313535 C66.4536733,-0.133313535 69.492213,11.2364445 67.5500433,13.7663761 C65.6078735,16.2963078 74.3295443,16.7063595 73.9906772,23.1723297 C73.65181,29.6382999 53.6246595,32.5760762 53.6246595,37.3349559 C53.6246595,42.0938356 91.3911918,41.0484955 98.1290565,36.2680658 C104.866921,31.4876361 109.256861,18.3192061 103.692959,14.0670111 C98.1290565,9.81481618 94.2273371,19.2728469 88.9272304,11.4553196 C83.6271236,3.63779239 86.0821187,-3.04523495 75.3646815,-3.04523495 C64.6472443,-3.04523495 50.2154598,-0.133313535 58.3345666,-0.133313535 Z" id="Path-31" fill-opacity="0.15" fill="#4D97FF" mask="url(#mask-4)"></path>
</g>
<path d="M18.4933333,265.832333 L406.388889,265.832333 L406.388889,112.742852 C322.410902,98.1026983 247.751521,95.1017239 182.410746,103.739929 C117.069971,112.378134 62.4308333,130.628614 18.4933333,158.49137 C6.16444444,184.239062 -9.00020799e-14,203.525779 -9.00020799e-14,216.35152 C-9.00020799e-14,229.177262 6.16444444,245.670866 18.4933333,265.832333 Z" id="Hill" fill="#0EBD8C"></path>
<g id="Path" stroke-width="1" fill="none" transform="translate(78.101206, 122.743033)">
<path d="M182.634961,0.121598806 C174.227461,11.6640988 137.79191,8.6886721 104.552127,25.7673196 C86.1777931,35.2080785 97.1431427,50.8658847 84.0321273,64.0998196 C73.4248787,74.8065141 39.3452884,82.1297812 21.8103399,97.4055586 C-4.32892607,120.177089 -6.86482501,137.456661 14.2026431,149.244277 L217.269627,153.16232 C187.8532,142.982106 171.116267,127.209473 167.058828,105.84442 C160.972671,73.7968399 173.144986,63.2482635 157.344385,39.9409327 C141.543784,16.633602 177.373698,16.4411365 183.501198,0.196136465 L182.634961,0.121598806 Z" id="Path-9" fill="#E9F1FC"></path>
</g>
<g id="Cloud" stroke-width="1" fill="none" transform="translate(146.194444, 34.251694) rotate(-5.000000) translate(-146.194444, -34.251694) translate(97.111111, 4.696138)">
<mask id="mask-6" fill="white">
<use xlink:href="#path-5"></use>
</mask>
<use id="Path-22" fill="#FFFFFF" xlink:href="#path-5"></use>
<path d="M-3.37597177,57.7133532 C-1.76487174,56.7512131 2.33554419,55.7549036 8.92527601,54.7244248 C18.8098737,53.1787065 23.3843627,55.9837144 35.9494794,54.9145742 C48.5145961,53.845434 66.2592667,48.5450454 76.9066792,44.2101952 C87.5540916,39.875345 94.8985964,44.0103053 98.8681071,48.817192 C102.837618,53.6240787 100.201959,50.8264985 91.4723861,55.4437768 C82.742813,60.061055 72.4900092,55.7606949 66.5445532,54.8642463 C60.5990971,53.9677977 87.5571553,57.0486324 39.3332085,59.9501514 C7.18391068,61.8844974 -7.05248275,61.138898 -3.37597177,57.7133532 Z" id="Path-26" fill-opacity="0.5" fill="#4D97FF" mask="url(#mask-6)"></path>
<path d="M31.8331089,30.6744174 C33.3365316,34.603085 34.821975,36.8058835 36.289439,37.2828126 C38.3611692,37.9561296 40.5036749,38.1683518 44.797373,36.1921699 C47.2843317,35.0475428 49.727122,36.1995152 45.6703639,38.9170538 C39.3929454,43.122167 33.942986,45.2735175 23.7540247,44.3820989 C18.492803,43.9218016 21.1858311,39.3525744 31.8331089,30.6744174 Z" id="Path-28" fill-opacity="0.15" fill="#4D97FF" mask="url(#mask-6)"></path>
<path d="M85.0112527,12.6088211 C86.0296555,13.9885275 78.7270474,-0.974740097 72.8057624,5.51441434 C71.8040823,6.61215854 73.2152617,7.79782534 73.7228834,11.6212168 C74.1596363,14.9108266 69.4949659,24.6521779 64.1046864,22.3795017 C61.3843126,21.2325243 56.9294796,21.664876 57.8960135,23.2259679 C58.6669086,24.4710749 61.1324177,24.6514085 62.0139032,27.6222598 C62.6719954,29.8402133 63.0991063,33.8733348 58.0104118,38.8344809 C55.6823033,41.1042352 71.6498396,34.7030892 76.3328082,33.1677282 C83.7002706,30.7522276 87.6821701,26.4796121 91.5849935,23.5207592 C94.1868757,21.5481906 92.8781742,18.4223546 87.6588892,14.1432511 C85.2148629,12.2004936 84.3323174,11.6890169 85.0112527,12.6088211 Z" id="Path-29" fill-opacity="0.15" fill="#4D97FF" mask="url(#mask-6)"></path>
<path d="M45.489246,11.3527905 C47.7149644,15.4854254 50.1907403,17.9197677 52.9165739,18.6558175 C57.0053243,19.7598921 53.3293832,20.9208157 51.3663298,19.9403141 C49.4032763,18.9598126 47.4198628,18.8835024 46.2665034,19.4941372 C45.113144,20.1047719 42.288362,19.5180921 40.2165029,20.2280611 C38.8352635,20.7013738 40.5928446,17.7429503 45.489246,11.3527905 Z" id="Path-30" fill-opacity="0.15" fill="#4D97FF" mask="url(#mask-6)"></path>
</g>
<g id="Grass-/-Rocks" stroke-width="1" fill="none" transform="translate(46.423333, 143.095352)">
<g id="Rock-and-Grass" transform="translate(258.352500, 33.915000)">
<path d="M2.61105828,19.237525 C-0.35522519,20.0209464 -0.706483098,21.1609965 1.55728456,22.6576752 C5.86817707,25.5078004 16.7891048,25.5078004 23.9739256,24.3677503 C31.1587465,23.2277003 30.2007703,18.6675 27.9016277,18.6675 C26.3688659,18.6675 17.9386761,18.8575083 2.61105828,19.237525 Z" id="Path-20" fill="#0EA57A"></path>
<path d="M2.01050063,20.0251293 C2.5858981,22.32987 24.4561026,24.9214282 27.3340409,20.5998015 C30.2119793,16.2781748 28.4863056,0.721044867 22.1554119,0.721425267 C15.8245182,0.721805666 15.2483599,11.0933294 8.62969827,11.0937271 C2.01103665,11.0941247 1.21769084,16.8495486 2.01050063,20.0251293 Z" id="Path-19" fill="#E5F0FF" transform="translate(15.221186, 11.825125) rotate(-3.000000) translate(-15.221186, -11.825125) "></path>
<path d="M2.0642699,20.1373108 C2.63966737,22.4420516 24.5098719,25.0336098 27.3878102,20.7119831 C29.5347273,17.488087 29.1197201,8.01159877 26.1421211,3.40554359 C27.1155083,10.8827597 26.236,15.0305901 23.503596,15.8490349 C17.6471649,17.6032284 15.0130249,18.230221 8.39436332,18.2306187 C6.11773542,18.2307555 4.15583808,17.0398354 2.50867129,14.6578583 C1.66839431,16.4586206 1.68051552,18.6001918 2.0642699,20.1373108 Z" id="Path-19" fill-opacity="0.15" fill="#000000" transform="translate(15.274956, 13.223275) rotate(-3.000000) translate(-15.274956, -13.223275) "></path>
<path d="M13.7865796,24.930677 C13.3485233,24.0836574 12.924583,21.5872475 14.1181167,20.7179558 C14.9138058,20.1384281 15.4663677,20.7625349 15.7758023,22.5902763 C15.9503878,18.3552657 16.5018326,16.2377603 17.4301366,16.2377603 C18.3584405,16.2377603 18.9151316,17.9317646 19.1002098,21.3197731 C19.2791073,19.5085181 19.8136176,18.6028906 20.7037407,18.6028906 C21.5938638,18.6028906 22.0883766,19.4008073 22.1872792,20.9966406 C22.4839869,16.3088802 23.1763048,13.965 24.2642331,13.965 C25.3521613,13.965 25.9455767,16.3401826 26.0444792,21.0905477 C26.6378946,18.5344534 27.23131,17.4060156 27.8247254,17.7052344 C28.7148485,18.1540625 28.8419877,23.1823159 28.1214331,24.9803914 C27.3796639,26.8314063 14.7695867,26.8314063 13.7865796,24.930677 Z" id="Path-18" fill="#0A8E69"></path>
</g>
<g id="Rock-and-Grass" transform="translate(0.000000, 0.043259)">
<path d="M4.46604913,25.2356099 C2.38329528,25.7594464 1.51211223,27.0850765 1.8525,29.2125 C2.4225,32.775 7.48812009,33.6149124 11.97,34.485 C15.0471374,35.0823786 31.7085287,34.1059505 34.0575,33.2025 C37.7625,31.7775 40.4741851,31.4284476 41.3735491,28.3706099 C41.8485491,26.7556099 40.8985491,24.9506099 38.5235491,22.9556099 L4.46604913,25.2356099 Z" id="Path-14" fill="#0EA57A"></path>
<path d="M1.75684942,22.6980623 C0.552456532,16.7092023 1.50396679,13.5375 6.20646679,10.83 C10.9089668,8.1225 18.5395739,5.55364003 22.6720739,2.98864003 C26.8045739,0.423640027 34.4995739,1.99114003 37.3495739,5.26864003 C40.1995739,8.54614003 41.3395739,14.95864 41.3395739,19.80364 C41.3395739,24.64864 37.9218683,29.7797887 34.5018683,31.3472887 C31.0818683,32.9147887 15.2643683,32.2022887 11.1318683,31.3472887 C6.99936832,30.4922887 2.96124231,28.6869222 1.75684942,22.6980623 Z" id="Path-12" fill="#E5F0FF" transform="translate(21.311037, 16.992298) rotate(-5.000000) translate(-21.311037, -16.992298) "></path>
<path d="M1.93370191,22.6818495 C1.24238006,19.2442423 1.26137724,16.7348217 2.29235541,14.7085982 C1.93176431,19.06616 2.80847266,22.2433641 4.92248046,24.2402107 C8.29967094,27.4302325 15.5595314,27.453145 21.6433138,24.4156951 C24.4211114,23.0288242 27.6595896,19.6816167 28.9238928,18.0434912 C31.8262995,14.2829163 38.2640024,20.2656316 38.8502526,15.76496 C39.362237,11.8344311 38.9209616,8.33025355 37.5264264,5.25242729 C40.3764264,8.52992729 41.5164264,14.9424273 41.5164264,19.7874273 C41.5164264,24.6324273 38.0987208,29.763576 34.6787208,31.331076 C31.2587208,32.898576 15.4412208,32.186076 11.3087208,31.331076 C7.17622081,30.476076 3.1380948,28.6707095 1.93370191,22.6818495 Z" id="Path-12" fill-opacity="0.15" fill="#000000" transform="translate(21.487889, 18.755405) rotate(-5.000000) translate(-21.487889, -18.755405) "></path>
<path d="M1.908546,22.6992512 C1.21722415,19.2616439 1.23622132,16.7522234 2.2671995,14.7259998 C1.50437333,19.5135396 2.17996415,22.9057328 4.29397194,24.9025793 C7.67116242,28.0926012 18.9118764,30.1990604 26.1359663,28.6730825 C29.4879323,27.9650312 38.4312702,28.7474719 39.573882,15.6873594 C39.9184832,11.7485491 39.2276127,8.27603897 37.5012705,5.26982896 C40.3512705,8.54732896 41.4912705,14.959829 41.4912705,19.804829 C41.4912705,24.649829 38.0735649,29.7809777 34.6535649,31.3484777 C31.2335649,32.9159777 15.4160649,32.2034777 11.2835649,31.3484777 C7.1510649,30.4934777 3.11293888,28.6881112 1.908546,22.6992512 Z" id="Path-12" fill-opacity="0.15" fill="#000000" transform="translate(21.462734, 18.772807) rotate(-5.000000) translate(-21.462734, -18.772807) "></path>
<path d="M6.40281847,35.1306677 C5.95979687,34.649572 5.57483518,33.2091565 6.72127358,32.7095636 C7.48556584,32.3765016 8.01632436,32.7351837 8.31354913,33.7856099 C8.42602815,31.9013993 8.92810481,30.959294 9.81977912,30.959294 C10.7114534,30.959294 11.2461782,31.9328596 11.4239534,33.879991 C11.5957919,32.8390398 12.1092111,32.3185642 12.9642111,32.3185642 C13.8192111,32.3185642 14.2942111,32.777137 14.3892111,33.6942826 C14.6742111,31.0001674 15.3392111,29.6531099 16.3842111,29.6531099 C17.4292111,29.6531099 17.9992111,31.0181573 18.0942111,33.7482522 C18.6642111,32.2792325 19.2342111,31.630705 19.8042111,31.8026698 C20.6592111,32.060617 20.5481715,35.6022331 19.8560491,36.6356099 C19.1435491,37.6994115 8.31354913,37.2056099 6.40281847,35.1306677 Z" id="Path-18" fill="#0A8E69"></path>
<path d="M13.7285491,34.4981099 C13.9422713,31.4579985 13.6097713,28.1804985 12.7310491,24.6656099 C11.4129659,19.3932769 7.88604913,17.3981099 8.88354913,18.8231099 C9.88104913,20.2481099 10.4510491,22.2431099 11.0210491,25.3781099 C11.5910491,28.5131099 11.5910491,31.2206099 11.5910491,33.9281099 C11.5910491,36.1131099 12.3035491,36.3031099 13.7285491,34.4981099 Z" id="Path-21" fill="#0A8E69"></path>
<path d="M16.5363507,34.243038 C16.6801493,32.1951391 16.4564335,29.9873289 15.8652035,27.6196076 C14.9783585,24.0680255 12.6053457,22.7240286 13.2764929,23.6839461 C13.9476401,24.6438635 14.3311528,25.9877479 14.7146655,28.0995663 C15.0981781,30.2113847 15.0981781,32.0352278 15.0981781,33.859071 C15.0981781,35.3309444 15.577569,35.4589334 16.5363507,34.243038 Z" id="Path-21" fill="#0A8E69" transform="translate(14.868549, 29.225610) scale(-1, 1) translate(-14.868549, -29.225610) "></path>
</g>
<path d="M36.2288366,57.1425 C35.4852019,55.2834132 34.3763366,50.0175 36.9413366,48.165 C38.6513366,46.93 39.8388366,48.26 40.5038366,52.155 C40.0288366,43.13 40.7888366,38.6175 42.7838366,38.6175 C44.7788366,38.6175 45.4438366,42.2275 44.7788366,49.4475 C46.3938366,46.6925 47.8188366,45.79 49.0538366,46.74 C50.9063366,48.165 49.8070342,53.3765123 49.0538366,57.1425 C48.6263366,59.28 37.3688366,59.9925 36.2288366,57.1425 Z" id="Grass" fill="#0A8E69"></path>
<path d="M62.7871176,23.5545926 C62.3663465,22.747823 61.9591343,20.3700415 63.1055727,19.5420582 C63.869865,18.9900693 64.4006235,19.5845189 64.6978483,21.3254068 C64.8655449,17.2916421 65.3952303,15.2747597 66.2869046,15.2747597 C67.1785789,15.2747597 67.7133037,16.8882656 67.8910789,20.1152774 C68.0629174,18.3900925 68.5763366,17.5275 69.4313366,17.5275 C70.2863366,17.5275 70.7613366,18.2875 70.8563366,19.8075 C71.1413366,15.3425 71.8063366,13.11 72.8513366,13.11 C73.8963366,13.11 74.4663366,15.3723149 74.5613366,19.8969446 C75.1313366,17.4623149 75.7013366,16.3875 76.2713366,16.6725 C77.1263366,17.1 77.248459,21.8893129 76.5563366,23.6019446 C75.8438366,25.365 63.7313366,25.365 62.7871176,23.5545926 Z" id="Grass" fill="#0A8E69"></path>
</g>
<g id="Hands-/-Device" stroke-width="1" fill="none" transform="translate(100.288333, 52.180352)">
<path d="M234.902839,128.026996 C234.783257,130.326623 235.497077,131.81972 237.044299,132.506287 C239.365133,133.536137 245.573529,139.439929 246.733945,143.044404 C247.507556,145.447388 248.119565,143.874419 248.56997,138.325497 L244.959785,127.254608 L239.028766,125.323639 L234.902839,128.026996 Z" id="Right-Hand-Detail" fill="#ECC293" transform="translate(241.729970, 134.728639) rotate(-5.000000) translate(-241.729970, -134.728639) "></path>
<g id="Device" transform="translate(139.852804, 75.009753) rotate(-5.000000) translate(-139.852804, -75.009753) translate(45.908360, 7.981976)">
<rect stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill="#575E75" x="0.25" y="0.25" width="187.372" height="133.0168" rx="2.7648"></rect>
<g id="Screen" transform="translate(6.475200, 10.579200)">
<g id="UI" transform="translate(0.000000, 0.091200)">
<mask id="mask-8" fill="white">
<use xlink:href="#path-7"></use>
</mask>
<use id="Screen" fill="#D8D8D8" xlink:href="#path-7"></use>
<g id="Group" mask="url(#mask-8)">
<g transform="translate(-0.091200, -0.091200)" id="UI/ChomeOS-Lobby">
<rect id="Rectangle" fill="#E9F1FC" x="0" y="0" width="175.104" height="106.5216"></rect>
<g id="Scratch-App" transform="translate(0.000000, 5.836800)">
<g id="Sprite-Area" transform="translate(108.418560, 63.256320)">
<g id="Sprite-List" transform="translate(0.000000, 11.381760)">
<path d="M53.5430956,0.25 C53.7785835,0.25 53.9917295,0.345991829 54.1461904,0.500258826 C54.3009974,0.654871451 54.39704,0.868135957 54.39704,1.1025584 L54.39704,1.1025584 L54.39704,25.79672 L0.25,25.79672 L0.25,1.1025584 C0.25,0.866636943 0.344734506,0.652968881 0.499331596,0.498565889 C0.653361482,0.344729388 0.866647457,0.25 1.10394441,0.25 L1.10394441,0.25 Z" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#FCFCFF"></path>
<g id="sprite1" transform="translate(1.313280, 3.210240)">
<g id="sprite-tile">
<use fill="black" fill-opacity="1" filter="url(#filter-10)" xlink:href="#path-9"></use>
<rect stroke="#4C97FF" stroke-width="0.5" stroke-linejoin="square" fill="#FFFFFF" fill-rule="evenodd" x="0.25" y="0.83368" width="9.42256" height="9.42256" rx="1.10592"></rect>
</g>
<path d="M0.14592,7.44192 L9.77664,7.44192 L9.77664,9.2544 C9.77664,9.86518275 9.28150275,10.36032 8.67072,10.36032 L1.25184,10.36032 C0.641057249,10.36032 0.14592,9.86518275 0.14592,9.2544 L0.14592,7.44192 L0.14592,7.44192 Z" id="Rectangle-18" fill="#4C97FF"></path>
<g id="costume1" transform="translate(2.918400, 2.188800)">
<g id="Layer_3" transform="translate(0.000000, 2.557212)" fill-rule="nonzero">
<path d="M0.942887969,0.651828974 C0.836790008,0.632281473 0.70986785,0.595093545 0.602759432,0.499999937 C0.363237244,0.287317925 0.286706126,-0.0634968713 0.117388717,0.0269590812 C-0.0520165574,0.117458376 -0.0487655226,0.68424922 0.484360258,0.858876451 C0.668087659,0.919165972 0.835735618,0.919382685 0.971620088,0.915741909 C1.00724967,0.914658345 1.3106503,0.887395865 1.41441982,0.739164261 C1.5181454,0.590932657 1.44600758,0.554004784 1.41046586,0.533547089 C1.37488021,0.513089394 1.09296277,0.679481537 0.942887969,0.651828974 Z" id="Shape" stroke="#000000" stroke-width="0.5" fill="#FAA51D"></path>
<path d="M0.142166875,0.0380114376 C0.0547843303,0.0645804356 0.00707319742,0.254637624 0.0509621677,0.405729838 C0.0948072052,0.556995422 0.166681435,0.623396246 0.220674973,0.683035628 C0.287804449,0.72802522 0.189043283,0.578926764 0.280467654,0.503163945 C0.371628428,0.427574495 0.532334988,0.463548832 0.532334988,0.463548832 C0.532334988,0.463548832 0.404534173,0.290741988 0.331561621,0.186329727 C0.262499097,0.0861650376 0.235436428,0.0162534653 0.142166875,0.0380114376 Z" id="Shape" fill="#FFFFFF"></path>
</g>
<g id="Group" transform="translate(0.307530, 3.164008)">
<path d="M1.32752054,0.37950758 C1.32752054,0.37950758 0.939505135,0.648231541 0.577541946,0.744105315 L0.581320175,0.753423968 C0.636104506,0.832480824 0.839206317,1.07836325 0.566646586,1.16500505 C0.332352413,1.23942425 -0.097618911,0.59704396 0.09124864,0.475771438 C0.206616444,0.401525608 0.306168403,0.464849109 0.306168403,0.464849109 C0.306168403,0.464849109 0.458791308,0.418472554 0.569809755,0.363210772 C0.758853037,0.269547469 0.823917667,0.213548863 0.823917667,0.213548863 C0.823917667,0.213548863 1.00773293,0.0269157386 1.12512165,0.0342406337 C1.24246644,0.0416088713 1.47917692,0.238557529 1.32752054,0.37950758 Z" id="Shape" fill="#FAA51D" fill-rule="nonzero"></path>
<path d="M0.581320175,0.753423968 C0.636104506,0.832480824 0.839206317,1.07836325 0.566646586,1.16500505 C0.332352413,1.23942425 -0.106800888,0.586641743 0.0820666632,0.465239192 C0.197434467,0.390993362 0.306168403,0.464805766 0.306168403,0.464805766 C0.306168403,0.464805766 0.458791308,0.418342527 0.569809755,0.363037402 C0.758853037,0.269374099 0.823917667,0.213375493 0.823917667,0.213375493" id="Shape" stroke="#231F20" stroke-width="0.5"></path>
<path d="M1.32752054,0.37950758 C1.32752054,0.37950758 0.882787757,0.687543255 0.501406225,0.761745743" id="Shape" stroke="#231F20" stroke-width="0.5"></path>
</g>
<path d="M2.24800273,3.0289958 C2.24800273,3.0289958 2.30225986,3.03614733 2.45642042,3.1883231 C2.61058098,3.34036886 2.72116009,3.28194307 2.84790652,3.21970313 C2.97430148,3.15715979 3.31082752,2.95418652 3.13303106,2.79420908 C2.95514674,2.63436166 2.86033953,2.84387967 2.70622291,2.89844797 C2.55193055,2.95305961 2.48387848,2.79065499 2.40493106,2.71263835 C2.37905458,2.68693621 2.35273877,2.66500486 2.32897107,2.64740778 C2.32897107,2.64740778 2.28631222,2.61446742 2.24523495,2.76833356 C2.20420162,2.92180962 2.15982939,2.96528222 2.24800273,3.0289958 Z" id="Shape" stroke="#231F20" stroke-width="0.5" fill="#FAA51D" fill-rule="nonzero"></path>
<g id="Layer_2_1_" transform="translate(1.230121, 2.470527)" fill-rule="nonzero">
<path d="M0.779940831,0.867371596 C0.83213312,0.827843168 0.885248,0.763262733 0.953519732,0.663098044 C1.01045677,0.579576903 1.07213857,0.421333164 1.07213857,0.421333164 C1.11057986,0.312066535 1.15710481,0.136312396 0.988578188,0.105105743 C0.92035039,0.0924930535 0.809375876,0.10085817 0.651612821,0.071471905 C0.493761899,0.0419556119 0.352956945,-0.0378380673 0.233503381,0.168255873 C0.11409375,0.374436499 -0.187813161,0.526742305 0.187110235,0.886138931 C0.187110235,0.886138931 0.402425394,1.0526611 0.660004005,1.303918 C0.872243861,1.5108788 1.18917582,1.76343598 1.18917582,1.76343598 C1.18917582,1.76343598 2.02267086,1.85826953 2.04740509,1.73339957 C2.13184413,1.30907577 1.39820858,1.43385904 1.39820858,1.43385904 C1.39820858,1.43385904 1.19589756,1.2633927 1.1027598,1.18273217 C0.949961166,1.05014723 0.614006255,0.715889299 0.614006255,0.715889299" id="Shape" stroke="#231F20" stroke-width="0.5" fill="#FAA51D"></path>
<path d="M0.977638895,0.582264143 C0.977638895,0.582264143 1.08615317,0.466972895 0.869168557,0.351811675 C0.652183948,0.236650455 0.552280526,0.351074851 0.485238916,0.417735731 C0.36908032,0.532810265 0.636499902,0.704273489 0.636499902,0.704273489 L0.776030803,0.843143097 C0.776030803,0.843143097 0.852386188,0.771757877 0.885819128,0.714025568 C0.924172552,0.661407683 0.977638895,0.582264143 0.977638895,0.582264143" id="Shape" fill="#FFFFFF"></path>
</g>
<path d="M1.27080316,2.95674373 C1.3037089,2.93199512 1.39772532,2.86130338 1.48405347,2.79823994 C1.59072256,2.72026665 1.75279104,2.54472922 1.53136921,2.46684261 C1.30994738,2.38878264 1.2015649,2.5363641 1.0253061,2.68121499 C0.930454957,2.75927496 0.792110245,2.79819659 0.835559886,2.95032903 C0.879185259,3.10250481 1.04916166,3.53146627 1.35348488,3.39112301 C1.65789597,3.25073641 1.27444959,2.99323818 1.2190502,2.90754991" id="Shape" stroke="#231F20" stroke-width="0.5" fill="#FAA51D" fill-rule="nonzero"></path>
<g id="Layer_2" transform="translate(0.351463, 0.000000)">
<path d="M1.92026327,0.39684461 C1.8526066,0.390646622 1.71158198,0.383148356 1.6339086,0.386832475 C1.42619384,0.396584554 1.2286715,0.470396958 1.2286715,0.470396958 L0.65675297,0.102158448 L0.754943009,0.921593156 C0.783323665,0.887699263 0.291231215,1.47655148 0.602100439,1.97152368 C0.913145394,2.46675593 1.57886068,2.68745632 2.40282228,2.52596189 C3.22678388,2.36433743 3.42333969,1.89615094 3.36873109,1.64844813 C3.31416642,1.40078866 3.00312147,1.30937917 3.00312147,1.30937917 C3.00312147,1.30937917 2.9991675,1.11520444 2.85691276,0.877253703 C2.77229799,0.73561017 2.49016089,0.528736063 2.49016089,0.528736063 L2.36455672,0.0280426455 L2.03716872,0.34028255 L1.92026327,0.39684461 Z" id="Shape" stroke="#231F20" stroke-width="0.5" fill="#FAA51D" fill-rule="nonzero"></path>
<path d="M2.96195634,1.30313784 L2.85291487,1.21367876 L2.45246646,1.32901335 C2.45246646,1.32901335 2.45246646,1.47720162 2.26061147,1.51829038 C2.06862468,1.55950916 1.76807969,1.41959933 1.76807969,1.41959933 L1.42606204,1.56770091 C1.42606204,1.56770091 1.05540013,1.60792282 1.0421324,1.8312671 C1.01256555,2.32766961 1.62991071,2.5346304 1.86385342,2.54780654 C1.9914785,2.55504475 2.22564088,2.53315675 2.40321767,2.49835267 C3.18311457,2.35818278 3.39394857,1.89506737 3.33942784,1.64732122 C3.28486317,1.39966175 2.98893114,1.33542806 2.98893114,1.33542806 L2.96195634,1.30313784 Z" id="Shape" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M0.0734997471,1.80394631 C0.0734997471,1.80394631 0.253932181,1.84381886 0.335954911,1.83251808 C0.417889775,1.8211107 0.577234415,1.76993736 0.577234415,1.76993736" id="Shape" stroke="#231F20" stroke-width="0.5"></path>
<path d="M3.19198902,1.54607297 C3.19198902,1.54607297 3.39183979,1.51386943 3.4933248,1.47893532 C3.61260263,1.43810661 3.69291198,1.36862847 3.69291198,1.36862847" id="Shape" stroke="#231F20" stroke-width="0.5"></path>
<path d="M0.58593313,1.59973107 C0.58593313,1.59973107 0.481197089,1.52271132 0.317195561,1.45106604 C0.135576939,1.37170579 0.0358053161,1.3512481 0.0358053161,1.3512481" id="Shape" stroke="#231F20" stroke-width="0.5"></path>
<path d="M3.21224209,1.80400463 C3.21224209,1.80400463 3.33200318,1.88020981 3.45532284,1.89960624 C3.57701698,1.91865754 3.65943511,1.90719915 3.65943511,1.90719915" id="Shape" stroke="#231F20" stroke-width="0.5"></path>
<path d="M1.90449135,0.399271794 C2.0292608,0.450073549 2.07525855,0.505882905 2.07525855,0.505882905" id="Shape" stroke="#000000" stroke-width="0.5" stroke-linecap="round"></path>
<line x1="1.09384142" y1="0.376386915" x2="1.35998695" y2="0.565273853" id="Shape" stroke="#000000" stroke-width="0.5"></line>
</g>
<g id="Layer_5" transform="translate(2.548108, 0.606796)" fill-rule="nonzero">
<path d="M0.564098477,0.275918828 C0.692558286,0.470050218 0.697346973,0.691617457 0.57473024,0.770674313 C0.452025641,0.849774511 0.248484501,0.756284578 0.11984896,0.562066503 C-0.00900624516,0.36789177 -0.0135752671,0.146454558 0.109129332,0.0673110178 C0.231746065,-0.011702495 0.43550687,0.0816574099 0.564098477,0.275918828 Z" id="Shape" stroke="#231F20" stroke-width="0.5" fill="#FFFFFF"></path>
<path d="M0.531104867,0.586078289 C0.531104867,0.632888269 0.495870679,0.670856364 0.452025641,0.670856364 C0.408400268,0.670856364 0.372814617,0.632844927 0.372814617,0.586078289 C0.372814617,0.539268309 0.408400268,0.501213529 0.452025641,0.501213529 C0.495870679,0.501213529 0.531104867,0.539268309 0.531104867,0.586078289" id="Shape" fill="#231F20"></path>
</g>
<g id="Layer_7" transform="translate(1.405853, 0.780166)" fill-rule="nonzero">
<path d="M0.653150472,0.243541925 C0.781698147,0.437716657 0.768210746,0.670986392 0.623232165,0.764302954 C0.478165719,0.857879572 0.25634849,0.776092135 0.127844748,0.581917402 C-0.000790792258,0.387742669 0.0125648103,0.15455962 0.157631257,0.0610696871 C0.302741636,-0.032376903 0.524470999,0.0492805069 0.653150472,0.243541925 Z" id="Shape" stroke="#231F20" stroke-width="0.5" fill="#FFFFFF"></path>
<path d="M0.574598441,0.498743002 C0.574598441,0.545596325 0.53932032,0.58356442 0.495475283,0.58356442 C0.451893843,0.58356442 0.416264258,0.54550964 0.416264258,0.498743002 C0.416264258,0.451933022 0.451893843,0.413921584 0.495475283,0.413921584 C0.539232454,0.413921584 0.574598441,0.451933022 0.574598441,0.498743002" id="Shape" fill="#231F20"></path>
</g>
<path d="M2.58176099,1.4270976 C2.66321259,1.4270976 2.78187537,1.41478831 2.78811384,1.45175952 C2.79439624,1.48881743 2.71303251,1.63392836 2.65684232,1.64008301 C2.60047641,1.64623766 2.38775329,1.53809793 2.38467799,1.47022346 C2.38142695,1.40234899 2.50659179,1.4270976 2.58176099,1.4270976 Z" id="Shape" stroke="#000000" stroke-width="0.5" fill="#5E4A42" fill-rule="nonzero"></path>
<g id="Layer_4" transform="translate(1.976981, 1.733703)" stroke="#231F20" stroke-width="0.5">
<path d="M0.0340040671,0.010185505 C0.0340040671,0.010185505 0.488577817,0.142553727 0.658598152,0.179091517 C0.828530622,0.215585964 1.13531409,0.252080412 1.13531409,0.252080412 C1.13531409,0.252080412 0.784290188,0.696125085 0.374044738,0.58339105 C-0.0362007123,0.470830384 -0.0287760516,0.215629307 0.0340040671,0.010185505 Z" id="Shape"></path>
</g>
</g>
<g id="Delete" transform="translate(7.004160, 0.000000)" fill="#4D97FF" stroke="#4D97FF" stroke-opacity="0.25" stroke-width="0.5">
<rect id="Rectangle" x="-0.25" y="-0.25" width="4.00208" height="4.00208" rx="1.65888"></rect>
</g>
</g>
<g id="sprite3" transform="translate(12.695040, 3.793920)">
<rect id="sprite-tile" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" x="0.25" y="0.25" width="9.42256" height="9.42256" rx="1.10592"></rect>
<g id="costume" transform="translate(2.626560, 1.459200)" fill-rule="nonzero">
<path d="M3.86237629,3.65480913 C3.84292029,3.54177815 3.76898749,3.40760779 3.65816036,3.35281796 C3.50856533,3.27847062 3.00703289,3.19995292 2.74617837,3.20023817 L2.75756373,3.70528478 C3.01971532,3.67494187 3.43275899,3.61670072 3.46244741,3.80594853 C3.46172681,3.97535118 3.31328474,4.07026267 3.31328474,4.07026267 C3.31328474,4.07026267 3.45942092,4.27043969 3.5371008,4.3493888 C3.73094022,4.21694409 3.90460303,3.89539541 3.86237629,3.65480913 Z" id="Shape" fill="#BE0A3C"></path>
<path d="M2.39380859,4.9115234 L2.38732326,4.93582647 C2.25631952,4.92849241 2.03999763,4.92489728 1.93061168,4.92691057 C1.85033766,4.9283486 1.81315508,4.79115844 1.81315508,4.79115844 L1.47346773,3.86016345 L2.00324741,3.87885814 C2.00324741,3.87885814 2.2724608,4.62592625 2.39380859,4.9115234 Z" id="Shape" fill="#BE0A3C"></path>
<path d="M0.0327149037,4.8619106 C-0.00735004443,4.81100356 0.00590885924,4.67151247 0.0038912,4.60953245 C0.00164920204,4.52377606 0.00584033643,4.43797249 0.0164295111,4.35284012 C0.0368943408,4.1815681 0.0694651258,4.01058372 0.102900622,3.84132495 C0.136192,3.66976534 0.189371733,3.50093802 0.245289719,3.33556202 C0.271951644,3.25733198 0.297748859,3.17852672 0.325707852,3.10058429 C0.340119704,3.05873697 0.498650076,2.69318411 0.541885629,2.67650271 C0.519403142,2.86014197 0.751289838,3.33800671 0.752879042,3.42515267 C0.754172209,3.49590484 0.431490843,4.12836017 0.397334757,4.18732032 C0.351360948,4.26785123 0.315619556,4.35312773 0.271807526,4.4346653 C0.196721778,4.57559439 0.13907437,4.7411142 0.0327149037,4.8619106 Z" id="Shape" fill="#BE0A3C"></path>
<path d="M3.34124373,3.15666833 C3.37453511,3.06707768 3.42022068,2.91320609 3.42022068,2.91320609 C3.42022068,2.91320609 3.56174507,2.52680148 3.24266667,2.25774191 C3.10402465,2.14082827 2.84043188,1.88097224 2.53648592,1.85508731 C2.53648592,1.85508731 1.95266181,1.85508731 1.77265778,1.84070678 C1.44118519,1.81510945 1.28769896,1.91864921 1.28769896,1.91864921 C1.20122785,1.93302973 1.01387378,2.06878186 0.949885157,2.12443448 C0.881654936,2.18441598 0.817478023,2.2488377 0.757775171,2.31727727 C0.624753777,2.46942319 0.498361838,2.63465539 0.451235081,2.83497605 C0.406558342,3.02321708 0.405693629,3.22727669 0.422411377,3.41868143 C0.432067319,3.52754198 0.438985009,3.63798439 0.457432177,3.74569448 C0.466223409,3.79732057 0.656027495,4.32637996 0.723619081,4.48585994 C0.754604562,4.55876919 0.793228324,4.62420057 0.828969719,4.69437751 C0.854190458,4.7438465 0.981014757,4.93410082 1.01286495,4.9422977 C1.06575644,4.95581539 1.39766139,4.96904547 1.47404421,4.93597027 C1.4358528,4.63915633 1.27501653,4.35945516 1.24878696,4.06019652 C1.61124504,4.0658049 2.20616628,4.04581598 2.51947994,4.04581598 C2.8327936,4.04581598 3.08154216,3.70830513 3.16469855,3.52969906 C3.15922204,3.52164597 3.29483757,3.28206648 3.34124373,3.15666833 Z" id="Shape" fill="#F01446"></path>
<path d="M2.80670815,3.75331618 C2.74459307,3.76122545 2.36858785,3.8226303 2.30503159,3.83284047 C2.38343206,3.9549311 2.64284539,4.52425595 2.77255206,4.77835977 C2.80699639,4.84580441 2.88640569,4.93654552 2.88640569,4.93654552 C2.88640569,4.93654552 3.22133712,4.94042825 3.3542144,4.92863621 C3.34816142,4.9168442 2.86449968,3.80781834 2.80670815,3.75331618 Z" id="Shape" fill="#F01446"></path>
<g id="Group" transform="translate(0.889417, 0.000000)">
<path d="M1.43679987,0.386836036 C1.33894339,0.30429184 1.26515471,-0.00819689738 1.45870588,0.0218583931 C1.55757118,0.0829756105 1.71278683,0.197156953 1.76726363,0.302566177 C1.67589249,0.327013064 1.53062102,0.369579407 1.43679987,0.386836036 Z" id="Shape" fill="#BE0A3C"></path>
<path d="M0.703524843,0.809623375 C0.654524547,0.870884396 0.619503747,0.939048069 0.569926976,1.00088431 C0.505794234,0.937610018 0.277222266,0.758860131 0.380555243,0.658915505 C0.470196962,0.57220096 0.650345109,0.737001738 0.703524843,0.809623375 Z" id="Shape" fill="#A0640A"></path>
<path d="M1.19237486,0.488937738 C1.12982742,0.532079305 1.05589462,0.60973412 0.990608933,0.648561531 C0.912064338,0.59420316 0.753533967,0.301990956 0.897652486,0.262588327 C0.9841236,0.239004271 1.17969243,0.40567452 1.19237486,0.488937738 Z" id="Shape" fill="#BE0A3C"></path>
<path d="M2.29127856,0.321836076 C2.19327797,0.307455555 2.061986,0.317665725 1.96427364,0.307455555 C1.88082902,0.236847193 1.84897883,-0.0333628104 2.00606801,0.01984512 C2.10147447,0.0524889044 2.25006067,0.235552946 2.29127856,0.321836076 Z" id="Shape" fill="#BE0A3C"></path>
<path d="M0.32723139,1.96926865 C0.247966205,1.93676867 -0.105124166,1.70941262 0.0743033905,1.6152202 C0.124744872,1.58876004 0.321610767,1.6701538 0.341355005,1.725375 C0.352308014,1.75629312 0.32723139,1.92526425 0.32723139,1.96926865 Z" id="Shape" fill="#A0640A"></path>
<path d="M0.357208043,1.46048579 C0.287022324,1.40770927 0.0822299094,1.25829565 0.118259538,1.15130457 C0.160486266,1.0251874 0.392084724,1.15820722 0.445120338,1.20782002 C0.403412648,1.28722206 0.373783799,1.37237734 0.357208043,1.46048579 Z" id="Shape" fill="#BE0A3C"></path>
<path d="M3.25413437,1.37765398 C3.19648698,1.28231112 3.12341888,1.14857227 3.06678031,1.0556741 C3.12183357,0.975430789 3.36510565,0.515254095 3.40617941,0.42551964 C3.5040359,0.394457713 3.44782967,0.77065216 3.44163258,0.8103424 C3.42073539,0.946957356 3.337579,1.262466 3.25413437,1.37765398 Z" id="Shape" fill="#E6781E"></path>
<path d="M3.68966056,2.37681263 C3.65118089,2.21071761 3.5330037,1.88787489 3.5330037,1.88787489 L3.39320875,1.79497672 L2.46032958,1.78318469 L2.53080354,2.91363751 C2.53080354,2.91363751 2.94197367,2.91248707 3.13278659,2.91363751 C3.24548727,2.91450034 3.35804382,2.92125919 3.47031217,2.92801803 C3.55591857,2.93333883 3.67683401,2.94455563 3.75941391,2.91363751 C3.78679644,2.74150267 3.72828431,2.54420191 3.68966056,2.37681263 Z" id="Shape" fill="#C8C8BE"></path>
<path d="M3.09228928,0.911006051 C3.01267959,0.798885198 2.92227126,0.69480209 2.82235529,0.600242978 C2.71712212,0.501056958 2.59744434,0.4183422 2.46739139,0.354911276 C2.4192778,0.330521696 2.36808633,0.312721025 2.31520223,0.301990956 C2.26894019,0.293937864 2.16647192,0.263163548 2.11992164,0.278982122 C1.96874131,0.246913558 1.79983441,0.27121664 1.64807761,0.290486539 C1.54382887,0.302925426 1.44147754,0.327938538 1.34326695,0.364977642 C1.2876372,0.386260815 1.12377444,0.469236425 1.108642,0.477577127 C0.927773257,0.577234142 0.622242,0.858948564 0.603362472,0.880231735 C0.465296933,1.03539756 0.341210886,1.25110539 0.324925495,1.44538624 C0.283848694,1.61617067 0.277672867,1.793462 0.306766562,1.96668015 C0.306766562,2.09955617 0.392084724,2.23142556 0.478699953,2.3261932 C0.570791686,2.42599402 0.690698295,2.54420191 0.838996248,2.53830589 C1.00055311,2.53183466 0.968702915,2.3786821 1.0378798,2.28262021 C1.10186843,2.1938924 1.22998979,2.11882607 1.3297198,2.19820655 C1.53018867,2.35783035 1.43060277,2.77069512 1.70096911,2.8720778 C1.82721693,2.91938972 1.99107969,2.90285212 2.12381284,2.90731008 C2.256546,2.91176804 2.53080354,2.91378132 2.53080354,2.91378132 C2.53080354,2.91378132 2.67203969,2.48351611 2.7678785,2.28103836 C2.83518183,2.13924641 2.91963529,2.0313925 3.03853309,1.96020892 C3.11128137,1.92048939 3.19078982,1.89459683 3.27301391,1.88384835 C3.35934667,1.87541805 3.44635046,1.87657558 3.53242725,1.88729967 C3.53242725,1.88729967 3.42390601,1.54216715 3.29405523,1.25455672 C3.22631951,1.1024108 3.10655701,0.930851171 3.09228928,0.911006051 Z" id="Shape" fill="#F04650"></path>
<path d="M2.4067175,0.770508356 C2.4067175,0.770508356 2.54968307,0.996857767 2.67823678,1.16942403 C2.71239287,1.21529789 2.7951169,1.31322924 2.87726446,1.34745489 C2.98549748,1.39318495 3.0915687,1.36183541 3.07110388,1.27555228 C3.0466037,1.17316296 2.84325248,0.920353393 2.71642819,0.769789327 C2.69956632,0.749944207 2.65878078,0.695442033 2.61136579,0.670132313 C2.49246801,0.606570407 2.33220822,0.591039444 2.4067175,0.770508356 Z" id="Shape" fill="#F01446"></path>
<path d="M3.4309678,1.78160284 C3.40223147,1.79993495 3.3696204,1.81135601 3.33570548,1.81496565 C3.27501254,1.82084904 3.21375928,1.81642427 3.15454848,1.80187937 C3.08594807,1.77800771 3.09185695,1.64369364 3.12298655,1.59019809 C3.16708681,1.51498796 3.25355791,1.45128225 3.31149355,1.38570708 C3.36452916,1.32559649 3.42577953,1.22852797 3.49553289,1.18682446 C3.53228312,1.29022041 3.5243566,1.4055522 3.5079271,1.51196805 C3.49466819,1.59738836 3.47622101,1.74665817 3.4309678,1.78160284 Z" id="Shape" fill="#FFC800"></path>
<path d="M2.00260917,1.56301891 C2.00260917,1.56301891 1.57990955,1.57610518 1.58985373,1.48665834 C1.60354499,1.36269824 1.67329835,1.22248815 1.7195604,1.108163 C1.7717313,0.978738309 1.98906203,0.42667008 2.06285071,0.41789796 C2.1063745,0.445796175 2.00260917,1.56301891 2.00260917,1.56301891 Z" id="Shape" fill="#FFC800"></path>
<path d="M3.51729481,2.7563146 C3.5135477,2.77357123 3.4854446,2.81038536 3.31005236,2.81038536 C3.13466015,2.81038536 3.07946273,2.76868185 3.07456271,2.74006461 C3.06966269,2.71144737 3.17040152,2.69792968 3.31956419,2.69792968 C3.46872686,2.69792968 3.52060952,2.73891417 3.51729481,2.7563146 Z" id="Shape" fill="#000000"></path>
<path d="M1.95088453,2.0617354 L1.99516389,2.04735488 C2.03125158,2.07309601 2.06468249,2.16671321 1.9809945,2.17232161 C1.8973065,2.17793002 1.93273,2.08762034 1.95088453,2.0617354 Z" id="Shape" fill="#000000"></path>
<path d="M3.68305544,1.99889252 L3.7273009,1.984512 C3.76336095,2.01025313 3.79676626,2.10387033 3.71314235,2.10947873 C3.62951845,2.11508714 3.66469357,2.02535268 3.68305544,1.99889252 Z" id="Shape" fill="#000000"></path>
<path d="M3.44372301,2.47718868 L3.48803782,2.46280815 C3.52393284,2.48854929 3.5573906,2.58216648 3.47363553,2.58777489 C3.38988046,2.59338329 3.42555391,2.50307361 3.44372301,2.47718868 Z" id="Shape" fill="#828278"></path>
<path d="M3.19324502,2.47042983 L3.23755983,2.45604931 C3.27345486,2.48179044 3.30691261,2.57540764 3.22315754,2.58101604 C3.13940247,2.58662444 3.17507592,2.49631477 3.19324502,2.47042983 Z" id="Shape" fill="#828278"></path>
</g>
</g>
</g>
</g>
<g id="Sprite-Info">
<path d="M53.6145817,0.25 C53.8502824,0.25 54.0636165,0.346175365 54.218353,0.500042798 C54.3734468,0.654265476 54.47,0.866682965 54.47,1.09920938 L54.47,1.09920938 L54.47,13.75832 L0.25,13.75832 L0.25,1.09920938 C0.25,0.864339781 0.344808816,0.651672865 0.49937491,0.497974939 C0.653769247,0.344447805 0.867584499,0.25 1.1054183,0.25 L1.1054183,0.25 L53.6145817,0.25 Z" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#FFFFFF"></path>
<g id="direction" transform="translate(39.033600, 7.587840)">
<g id="direction-field" transform="translate(6.566400, 0.000000)">
<rect id="Rectangle-3" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill="#FFFFFF" x="0.25" y="0.25" width="7.08784" height="4.16944" rx="2.08472"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="1.96992" y="1.4592" width="3.72096" height="1.75104" rx="0.82944"></rect>
</g>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="0" y="1.4592" width="5.98272" height="1.75104" rx="0.82944"></rect>
</g>
<g id="size" transform="translate(22.982400, 7.587840)">
<g id="size-field" transform="translate(4.085760, 0.000000)">
<rect id="Rectangle-3" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill="#FFFFFF" x="0.25" y="0.25" width="7.96336" height="4.16944" rx="2.08472"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="2.48064" y="1.4592" width="3.72096" height="1.75104" rx="0.82944"></rect>
</g>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="0" y="1.4592" width="3.13728" height="1.75104" rx="0.82944"></rect>
</g>
<g id="show-toggle" transform="translate(1.678080, 7.587840)">
<g id="show-option" transform="translate(4.888320, 0.000000)">
<path d="M0,0.553982666 C0,0.248026488 0.251049375,0 0.553982666,0 L4.66944,0 L4.66944,4.66944 L0.553982666,4.66944 C0.248026488,4.66944 0,4.41839063 0,4.11545733 L0,0.553982666 Z" id="icon-container" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill-opacity="0.2" fill="#FFFFFF"></path>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="1.4592" y="1.53216" width="1.75104" height="1.75104" rx="0.82944"></rect>
</g>
<g id="hide-option" transform="translate(9.557760, 0.000000)">
<path d="M0,0 L4.11545733,0 C4.42141351,0 4.66944,0.251049375 4.66944,0.553982666 L4.66944,4.11545733 C4.66944,4.42141351 4.41839063,4.66944 4.11545733,4.66944 L0,4.66944 L0,0 Z" id="icon-container" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill="#FFFFFF"></path>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="1.4592" y="1.4592" width="1.75104" height="1.75104" rx="0.82944"></rect>
</g>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="0" y="1.4592" width="3.72096" height="1.75104" rx="0.82944"></rect>
</g>
<g id="sprite-y" transform="translate(42.608640, 1.751040)">
<g id="y-field" transform="translate(2.991360, 0.000000)">
<rect id="text-field" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill="#FFFFFF" x="0.25" y="0.25" width="7.08784" height="4.16944" rx="2.08472"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="2.77248" y="1.4592" width="2.40768" height="1.75104" rx="0.82944"></rect>
</g>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="0" y="1.4592" width="2.40768" height="1.75104" rx="0.82944"></rect>
</g>
<g id="sprite-x" transform="translate(30.935040, 1.751040)">
<g id="x-field" transform="translate(2.991360, 0.000000)">
<rect id="Rectangle-3" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill="#FFFFFF" x="0.25" y="0.25" width="7.08784" height="4.16944" rx="2.08472"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="2.62656" y="1.4592" width="2.40768" height="1.75104" rx="0.82944"></rect>
</g>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="0" y="1.4592" width="2.40768" height="1.75104" rx="0.82944"></rect>
</g>
<g id="sprite-name" transform="translate(1.532160, 1.751040)">
<g id="sprite-name-field" transform="translate(5.763840, 0.000000)">
<rect id="text-field" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill="#FFFFFF" x="0.25" y="0.25" width="18.61552" height="4.16944" rx="2.08472"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="1.75104" y="1.4592" width="7.00416" height="1.75104" rx="0.82944"></rect>
</g>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="0" y="1.4592" width="4.7424" height="1.75104" rx="0.82944"></rect>
</g>
</g>
<g id="Oval-5" transform="translate(47.715840, 29.694720)">
<use fill="black" fill-opacity="1" filter="url(#filter-12)" xlink:href="#path-11"></use>
<use fill="#4C97FF" fill-rule="evenodd" xlink:href="#path-11"></use>
</g>
</g>
<g id="Sounds-Tab" transform="translate(27.432960, 7.806720)">
<path d="M2.21184,0 L12.52608,0 C13.7476455,-2.24397942e-16 14.73792,0.990274499 14.73792,2.21184 L14.73792,5.25312 L14.73792,5.25312 L0,5.25312 L0,2.21184 C2.94490582e-16,0.990274499 0.990274499,2.24397942e-16 2.21184,0 Z" id="Rectangle-9" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#EDF3FA"></path>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="2.69952" y="1.75104" width="1.75104" height="1.75104" rx="0.82944"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="5.61792" y="1.75104" width="6.49344" height="1.75104" rx="0.82944"></rect>
</g>
<g id="Costumes-Tab" transform="translate(12.549120, 7.806720)">
<path d="M2.21184,0 L13.4016,0 C14.6231655,8.60570174e-16 15.61344,0.990274499 15.61344,2.21184 L15.61344,5.25312 L15.61344,5.25312 L0,5.25312 L0,2.21184 C-1.49598628e-16,0.990274499 0.990274499,2.24397942e-16 2.21184,0 Z" id="Rectangle-9" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#EDF3FA"></path>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="3.13728" y="1.75104" width="1.75104" height="1.75104" rx="0.82944"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="6.05568" y="1.75104" width="6.49344" height="1.75104" rx="0.82944"></rect>
</g>
<g id="Blocks" transform="translate(0.000000, 12.111360)">
<g id="Workspace" transform="translate(37.793280, 0.875520)" fill="#FFFFFF" stroke="#DBDBDB" stroke-width="0.5">
<path d="M0,0 L68.424677,0 C69.0356161,0 69.53088,0.493198889 69.53088,1.10882574 L69.53088,87.69792 L0,87.69792 L0,0 Z" id="workspace"></path>
</g>
<g id="Blocks-Menu" transform="translate(7.587840, 0.802560)">
<mask id="mask-14" fill="white">
<use xlink:href="#path-13"></use>
</mask>
<use id="palette-container" stroke="#DBDBDB" stroke-width="0.5" fill="#FFFFFF" xlink:href="#path-13"></use>
<rect id="Scroll-bar" fill-opacity="0.15" fill="#000000" mask="url(#mask-14)" x="34.14528" y="1.16736" width="1" height="9.64496663" rx="0.27648"></rect>
<g id="Motion-Blocks" mask="url(#mask-14)">
<g transform="translate(1.678080, 5.399040)">
<g id="go-to" transform="translate(0.000000, 101.827466)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L23.3514294,0.0379801249 C23.5573634,0.0379801249 23.7242959,0.205159546 23.7242959,0.41139816 L23.7242959,4.14557851 C23.7242959,4.35181713 23.5573634,4.51899655 23.3514294,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" stroke="#3D79CC" stroke-width="0.5" fill="#4C97FF"></path>
<text id="set-rotation-style" font-family="HelveticaNeue-Bold, Helvetica Neue" font-size="1.41296763" font-weight="bold" fill="#FFFFFF">
<tspan x="0.758784" y="2.36783163">set rotation style </tspan>
</text>
<path d="M22.7053379,1.01648455 L22.9420661,3.27689635 L13.7162941,3.54295422 L13.4795659,1.28254242 L22.7053379,1.01648455 Z" id="input" stroke="#3D79CC" stroke-width="0.5" fill="#4C97FF"></path>
<path d="M21.7451939,2.76188003 C21.7108969,2.76188003 21.6765999,2.74880964 21.6504977,2.72251688 L21.2852191,2.35684989 C21.232863,2.30441634 21.232863,2.2194588 21.2852191,2.16702526 C21.3374234,2.11459171 22.1528127,2.11459171 22.2051688,2.16702526 C22.2575249,2.2194588 22.2575249,2.30441634 22.2051688,2.35684989 L21.8400419,2.72251688 C21.813788,2.74880964 21.779491,2.76188003 21.7451939,2.76188003" id="dropdown-icon" fill="#FFFFFF"></path>
<text id="left-right" font-family="HelveticaNeue-Bold, Helvetica Neue" font-size="1.41296763" font-weight="bold" fill="#FFFFFF">
<tspan x="14.2651392" y="2.36783163">left-right</tspan>
</text>
</g>
<g id="if-on-edge,-bounce" transform="translate(0.000000, 93.015020)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L14.2209803,0.0379801249 C14.4269143,0.0379801249 14.5938468,0.205159546 14.5938468,0.41139816 L14.5938468,4.14557851 C14.5938468,4.35181713 14.4269143,4.51899655 14.2209803,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" stroke="#3D79CC" stroke-width="0.5" fill="#4C97FF"></path>
<text font-family="HelveticaNeue-Bold, Helvetica Neue" font-size="1.41296763" font-weight="bold" fill="#FFFFFF">
<tspan x="0.758784" y="2.36783163">if on edge, bounce </tspan>
</text>
</g>
<g id="set-y" transform="translate(0.000000, 84.202126)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L10.2753035,0.0379801249 C10.4812375,0.0379801249 10.64817,0.205159546 10.64817,0.41139816 L10.64817,4.14557851 C10.64817,4.35181713 10.4812375,4.51899655 10.2753035,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" stroke="#3D79CC" stroke-width="0.5" fill="#4C97FF"></path>
<text id="set-y-to" font-family="HelveticaNeue-Bold, Helvetica Neue" font-size="1.41296763" font-weight="bold" fill="#FFFFFF">
<tspan x="0.758784" y="2.36783163">set y to</tspan>
</text>
<rect id="input" stroke="#3D79CC" stroke-width="0.5" fill="#FFFFFF" x="6.6237856" y="1.00990646" width="3.29392" height="2.53962585" rx="1.26981292"></rect>
<text id="10" font-family="HelveticaNeue-Bold, Helvetica Neue" font-size="1.41296763" font-weight="bold" fill="#575E75">
<tspan x="7.4360832" y="2.36783163">10</tspan>
</text>
</g>
<g id="change-y-by" transform="translate(0.000000, 75.391252)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L13.5995339,0.0379801249 C13.8054679,0.0379801249 13.9724003,0.205159546 13.9724003,0.41139816 L13.9724003,4.14557851 C13.9724003,4.35181713 13.8054679,4.51899655 13.5995339,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="set-x-" transform="translate(0.000000, 69.312000)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L10.2753035,0.0379801249 C10.4812375,0.0379801249 10.64817,0.205159546 10.64817,0.41139816 L10.64817,4.14557851 C10.64817,4.35181713 10.4812375,4.51899655 10.2753035,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="change-x-by" transform="translate(0.000000, 63.232748)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L13.5995339,0.0379801249 C13.8054679,0.0379801249 13.9724003,0.205159546 13.9724003,0.41139816 L13.9724003,4.14557851 C13.9724003,4.35181713 13.8054679,4.51899655 13.5995339,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="glide-to-x-y" transform="translate(0.000000, 39.242153)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L26.9415791,0.0379801249 C27.1475131,0.0379801249 27.3144456,0.205159546 27.3144456,0.41139816 L27.3144456,4.14557851 C27.3144456,4.35181713 27.1475131,4.51899655 26.9415791,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="glide-to-random" transform="translate(0.000000, 33.189841)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L29.6749799,0.0477542282 C29.8809139,0.0477542282 30.0478464,0.21493365 30.0478464,0.421172263 L30.0478464,4.15535262 C30.0478464,4.36159123 29.8809139,4.52877065 29.6749799,4.52877065 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="go-to" transform="translate(0.000000, 21.031337)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L20.2660583,0.0567339205 C20.4719923,0.0567339205 20.6389248,0.223913342 20.6389248,0.430151956 L20.6389248,4.16433231 C20.6389248,4.37057092 20.4719923,4.53775034 20.2660583,4.53775034 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="go-to-x-y" transform="translate(0.000000, 27.101609)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L17.0151431,0.0379801249 C17.2210771,0.0379801249 17.3880096,0.205159546 17.3880096,0.41139816 L17.3880096,4.14557851 C17.3880096,4.35181713 17.2210771,4.51899655 17.0151431,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="point-towards" transform="translate(0.000000, 54.417833)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L25.6166711,0.0379801249 C25.8226051,0.0379801249 25.9895376,0.205159546 25.9895376,0.41139816 L25.9895376,4.14557851 C25.9895376,4.35181713 25.8226051,4.51899655 25.6166711,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="point-in-direction" transform="translate(0.000000, 48.347561)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L19.2672644,0.0379801249 C19.4731984,0.0379801249 19.6401309,0.205159546 19.6401309,0.41139816 L19.6401309,4.14557851 C19.6401309,4.35181713 19.4731984,4.51899655 19.2672644,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="turn-counter-clockwise" transform="translate(0.000000, 12.183198)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L17.8689974,0.0379801249 C18.0749314,0.0379801249 18.2418639,0.205159546 18.2418639,0.41139816 L18.2418639,4.14557851 C18.2418639,4.35181713 18.0749314,4.51899655 17.8689974,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="turn-clockwise" transform="translate(0.000000, 6.103946)">
<path d="M0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L17.8689974,0.0379801249 C18.0749314,0.0379801249 18.2418639,0.205159546 18.2418639,0.41139816 L18.2418639,4.14557851 C18.2418639,4.35181713 18.0749314,4.51899655 17.8689974,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851 L0.0379392,0.41139816 Z" id="block" fill="#4C97FF"></path>
</g>
<g id="move" transform="translate(0.000000, 0.024694)">
<path d="M0.0379392,4.14557851 L0.0379392,0.41139816 C0.0379392,0.205159546 0.20487168,0.0379801249 0.410805658,0.0379801249 L1.37491661,0.0379801249 C1.47386204,0.0379801249 1.56871004,0.0773432797 1.63866993,0.147406655 L2.16587305,0.675389665 C2.23583293,0.745453041 2.33068093,0.784816195 2.42962637,0.784816195 L3.61211535,0.784816195 C3.71106079,0.784816195 3.80590879,0.745453041 3.87586867,0.675389665 L4.4030718,0.147406655 C4.47303168,0.0773432797 4.56787968,0.0379801249 4.66682511,0.0379801249 L14.2065611,0.0379801249 C14.4124951,0.0379801249 14.5794275,0.205159546 14.5794275,0.41139816 L14.5794275,4.14557851 C14.5794275,4.35181713 14.4124951,4.51899655 14.2065611,4.51899655 L4.66682511,4.51899655 C4.56787968,4.51899655 4.47303168,4.5583597 4.4030718,4.62842308 L3.87586867,5.15640609 C3.80590879,5.22646946 3.71106079,5.26583262 3.61211535,5.26583262 L2.42962637,5.26583262 C2.33068093,5.26583262 2.23583293,5.22646946 2.16587305,5.15640609 L1.63866993,4.62842308 C1.56871004,4.5583597 1.47386204,4.51899655 1.37491661,4.51899655 L0.410805658,4.51899655 C0.20487168,4.51899655 0.0379392,4.35181713 0.0379392,4.14557851" id="block" fill="#4C97FF"></path>
</g>
</g>
</g>
</g>
<g id="Category-Menu">
<mask id="mask-16" fill="white">
<use xlink:href="#path-15"></use>
</mask>
<use id="category-menu-container" stroke="#DBDBDB" stroke-width="0.5" fill="#FFFFFF" xlink:href="#path-15"></use>
<g id="Add-Extension-button" mask="url(#mask-16)">
<g transform="translate(0.000000, 80.839680)" id="Rectangle-26">
<use fill="black" fill-opacity="1" filter="url(#filter-18)" xlink:href="#path-17"></use>
<use fill="#4C97FF" fill-rule="evenodd" xlink:href="#path-17"></use>
</g>
</g>
<rect id="Selection-State" fill-opacity="0.2" fill="#4C97FF" mask="url(#mask-16)" x="0" y="0.87552" width="7.58784" height="7.58784"></rect>
<g id="My-Blocks" mask="url(#mask-16)" fill="#FF6680">
<g transform="translate(2.334720, 59.827200)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
<g id="Variables" mask="url(#mask-16)" fill="#FF8C1A">
<g transform="translate(2.334720, 52.968960)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
<g id="Operators" mask="url(#mask-16)" fill="#59C059">
<g transform="translate(2.334720, 45.818880)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
<g id="Sensing" mask="url(#mask-16)" fill="#5CB1D6">
<g transform="translate(2.261760, 38.814720)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
<g id="Control" mask="url(#mask-16)" fill="#FFAB19">
<g transform="translate(2.334720, 31.664640)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
<g id="Events" mask="url(#mask-16)" fill="#FFBF00">
<g transform="translate(2.334720, 24.660480)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
<g id="Sounds" mask="url(#mask-16)" fill="#CF63CF">
<g transform="translate(2.334720, 17.510400)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
<g id="Looks" mask="url(#mask-16)" fill="#9966FF">
<g transform="translate(2.261760, 10.360320)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
<g id="Motion" mask="url(#mask-16)" fill="#4C97FF">
<g transform="translate(2.261760, 3.210240)" id="motion-color">
<circle cx="1.4592" cy="1.4592" r="1.4592"></circle>
</g>
</g>
</g>
</g>
<g id="Code-Tab" transform="translate(0.000000, 7.223040)">
<path d="M0,5.69088 L0,2.33472 C0,1.04528975 1.04528975,0 2.33472,0 L10.79808,0 C12.0875103,0 13.1328,1.04528975 13.1328,2.33472 L13.1328,5.69088 L0,5.69088 Z" id="Rectangle-2" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#FFFFFF"></path>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="1.89696" y="1.96992" width="1.75104" height="1.75104" rx="0.82944"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="4.81536" y="1.96992" width="6.49344" height="1.75104" rx="0.82944"></rect>
</g>
<g id="Stage-Area" transform="translate(163.649280, 63.256320)">
<g id="Backdrop-Area" transform="translate(0.000000, 6.274560)">
<path d="M0.25,0.25 L10.25624,0.25 L10.25624,30.90392 L0.25,30.90392 L0.25,0.25 Z" id="backdrop-area" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#FFFFFF"></path>
<g id="Backdrop-Selector" transform="translate(1.862844, 11.965440)">
<g id="bg-count" transform="translate(1.055556, 0.000000)"></g>
</g>
<g id="backdrop" transform="translate(0.583680, 0.729600)">
<mask id="mask-20" fill="white">
<use xlink:href="#path-19"></use>
</mask>
<rect stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" x="0.25" y="0.25" width="8.83888" height="6.37445333" rx="0.55296"></rect>
<mask id="mask-22" fill="white">
<use xlink:href="#path-21"></use>
</mask>
<g id="Mask">
<use fill="#FFAB19" fill-rule="evenodd" xlink:href="#path-21"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-23)" xlink:href="#path-21"></use>
</g>
</g>
</g>
<g id="Stage-Info">
<path d="M9.40174558,0.25 C9.63671272,0.25 9.84926909,0.347075689 10.0036303,0.501328625 C10.1592331,0.656822353 10.25624,0.870725779 10.25624,1.10371986 L10.25624,1.10371986 L10.25624,6.17048 L0.25,6.17048 L0.25,1.10371986 C0.25,0.867799585 0.34533354,0.654187593 0.499973028,0.49965655 C0.654429203,0.345308691 0.867988261,0.25 1.10449442,0.25 L1.10449442,0.25 Z" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#FFFFFF"></path>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="2.26176" y="2.33472" width="6.05568" height="1.75104" rx="0.82944"></rect>
</g>
<g id="Oval-5" transform="translate(2.334720, 29.694720)">
<use fill="black" fill-opacity="1" filter="url(#filter-25)" xlink:href="#path-24"></use>
<use fill="#4C97FF" fill-rule="evenodd" xlink:href="#path-24"></use>
</g>
</g>
<g id="Green-Flag-/-Stop" transform="translate(109.658880, 8.682240)" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.5">
<g id="Green-Flag" stroke="#389438">
<path d="M0.0429176471,0.239816945 C0.371083144,-0.0226845515 0.903193299,-0.0226845515 1.2313588,0.239816945 C1.55952429,0.502318441 2.09178895,0.502318441 2.41995445,0.239816945 L2.41995445,1.84263656 C2.09178895,2.10529256 1.55952429,2.10529256 1.2313588,1.84263656 C0.903193299,1.58013506 0.371083144,1.58013506 0.0429176471,1.84263656 L0.0429176471,0.239816945 Z" id="Fill-1" fill="#59C059"></path>
<line x1="0.0429176471" y1="2.51497412" x2="0.0429176471" y2="0.0429176471" id="Stroke-7"></line>
</g>
<g id="Stop" transform="translate(4.085760, 0.000000)" fill="#EC5858" stroke="#B64646">
<polygon id="Fill-1" points="0.728403456 0.00433811576 0.00439991718 0.728341655 0.00439991718 1.75223654 0.728403456 2.47624008 1.75229835 2.47624008 2.47630188 1.75223654 2.47630188 0.728341655 1.75229835 0.00433811576"></polygon>
</g>
</g>
<g id="Stage-Sizing" transform="translate(159.417600, 7.514880)">
<g id="Full-Screen" transform="translate(10.068480, 0.000000)">
<rect id="Rectangle-16" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#FFFFFF" x="0" y="0" width="4.66944" height="4.66944" rx="0.55296"></rect>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="1.4592" y="1.4592" width="1.75104" height="1.75104" rx="0.82944"></rect>
</g>
<g id="Large-Stage" transform="translate(4.669440, 0.000000)">
<path d="M0,0 L4.11545733,0 C4.42141351,0 4.66944,0.251049375 4.66944,0.553982666 L4.66944,4.11545733 C4.66944,4.42141351 4.41839063,4.66944 4.11545733,4.66944 L0,4.66944 L0,0 Z" id="Rectangle-16-Copy" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5" fill="#FFFFFF"></path>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="1.60512" y="1.4592" width="1.75104" height="1.75104" rx="0.82944"></rect>
</g>
<g id="Small-Stage">
<path d="M0,0.553982666 C0,0.248026488 0.251049375,0 0.553982666,0 L4.66944,0 L4.66944,4.66944 L0.553982666,4.66944 C0.248026488,4.66944 0,4.41839063 0,4.11545733 L0,0.553982666 Z" id="Rectangle-16-Copy-2" stroke-opacity="0.1" stroke="#000000" stroke-width="0.5"></path>
<rect id="Rectangle" fill-opacity="0.15" fill="#000000" x="1.4592" y="1.53216" width="1.75104" height="1.75104" rx="0.82944"></rect>
</g>
</g>
<g id="Stage" transform="translate(108.491520, 12.768000)">
<path d="M64.55183,0.25 C64.7907035,0.25 65.0071744,0.344547621 65.1636036,0.498993642 C65.3183331,0.651761499 65.414,0.863113044 65.414,1.09806993 L65.414,1.09806993 L65.414,48.1681498 C65.414,48.402701 65.3189036,48.6150356 65.1635468,48.7684228 C65.0079776,48.9220197 64.7923081,49.0162198 64.55183,49.0162198 L64.55183,49.0162198 L1.11217005,49.0162198 C0.873296461,49.0162198 0.65682563,48.9216721 0.500396395,48.7672261 C0.345666873,48.6144583 0.25,48.4031067 0.25,48.1681498 L0.25,48.1681498 L0.25,1.09806993 C0.25,0.863518772 0.345096408,0.651184134 0.500453239,0.497796921 C0.656022394,0.344200076 0.871691896,0.25 1.11217005,0.25 L1.11217005,0.25 Z" id="stage-container" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5" fill="#FFFFFF"></path>
<g id="backdrop">
<mask id="mask-27" fill="white">
<use xlink:href="#path-26"></use>
</mask>
<g id="stage-container"></g>
<g mask="url(#mask-27)">
<mask id="mask-29" fill="white">
<use xlink:href="#path-28"></use>
</mask>
<use id="Mask" fill="#FFBF00" xlink:href="#path-28"></use>
</g>
</g>
<path d="M64.55183,0.25 C64.7907035,0.25 65.0071744,0.344547621 65.1636036,0.498993642 C65.3183331,0.651761499 65.414,0.863113044 65.414,1.09806993 L65.414,1.09806993 L65.414,48.1681498 C65.414,48.402701 65.3189036,48.6150356 65.1635468,48.7684228 C65.0079776,48.9220197 64.7923081,49.0162198 64.55183,49.0162198 L64.55183,49.0162198 L1.11217005,49.0162198 C0.873296461,49.0162198 0.65682563,48.9216721 0.500396395,48.7672261 C0.345666873,48.6144583 0.25,48.4031067 0.25,48.1681498 L0.25,48.1681498 L0.25,1.09806993 C0.25,0.863518772 0.345096408,0.651184134 0.500453239,0.497796921 C0.656022394,0.344200076 0.871691896,0.25 1.11217005,0.25 L1.11217005,0.25 Z" id="stage-border" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5"></path>
</g>
<rect id="Rectangle" fill="#4D97FF" x="0" y="0" width="175.104" height="6.9312"></rect>
<rect id="Rectangle" stroke="#FFFFFF" stroke-width="0.62208" fill="#FFAB19" x="1.58592" y="1.65888" width="11.27424" height="3.6864" rx="1.45152"></rect>
</g>
<g id="OS-Toolbar">
<rect id="Container" fill="#255094" x="0" y="0" width="175.104" height="5.8368"></rect>
<g id="Icons" transform="translate(165.399988, 1.886590)" fill="#FFFFFF">
<rect id="minimize" x="0" y="1.76141022" width="2.04377744" height="1"></rect>
<polygon id="close" points="7.68706361 2.4883775e-14 7.89351631 0.206362043 7.06766444 1.03180032 7.89351631 1.85725839 7.68706361 2.06362043 6.86124292 1.2381312 6.03544203 2.06362043 5.82898933 1.85725839 6.65474841 1.03180032 5.82898933 0.206362043 6.03544203 5.80621418e-14 6.86124292 0.82539648"></polygon>
</g>
</g>
</g>
</g>
</g>
<rect id="Highlight" stroke-opacity="0.15" stroke="#000000" stroke-width="0.6912" x="0" y="0" width="175.0128" height="106.5216" rx="1.3824"></rect>
</g>
<g id="Camera" transform="translate(90.288000, 4.104000)" fill="#000000" fill-opacity="0.15" stroke="#000000" stroke-opacity="0.15" stroke-width="0.5">
<circle id="Oval" cx="3.648" cy="1.0944" r="1.0944"></circle>
<circle id="Oval" cx="0.5472" cy="1.0944" r="1"></circle>
<circle id="Oval" opacity="0" cx="6.7488" cy="1.0944" r="1"></circle>
</g>
<path d="M87.8942323,61.7490375 C88.2670245,61.7490375 88.5692323,62.0512453 88.5692323,62.4240375 L88.5692323,69.7008686 C88.5692323,70.0736608 88.2670245,70.3758686 87.8942323,70.3758686 L73.2577323,70.3750375 L73.2585916,70.4088279 L72.8631857,70.4088279 C72.6841646,70.4088279 72.5124757,70.4799438 72.3858887,70.6065309 L71.4312945,71.561125 C71.3047075,71.6877121 71.1330186,71.7588279 70.9539974,71.7588279 L68.8131857,71.7588279 C68.6341646,71.7588279 68.4624757,71.6877121 68.3358887,71.561125 L67.3812945,70.6065309 C67.2547075,70.4799438 67.0830186,70.4088279 66.9039974,70.4088279 L66.5085916,70.4088279 L66.5077323,70.3750375 L65.1617323,70.3758686 C64.7889401,70.3758686 64.4867323,70.0736608 64.4867323,69.7008686 L64.4867323,62.4240375 C64.4867323,62.0512453 64.7889401,61.7490375 65.1617323,61.7490375 L66.5417323,61.7490375 L66.5421217,61.7539897 L66.9375275,61.7539897 C67.1165487,61.7539897 67.2882375,61.8251055 67.4148246,61.9516926 L67.4148246,61.9516926 L68.3694188,62.9062868 C68.4960058,63.0328738 68.6676947,63.1039897 68.8467158,63.1039897 L68.8467158,63.1039897 L70.9875275,63.1039897 C71.1665487,63.1039897 71.3382375,63.0328738 71.4648246,62.9062868 L71.4648246,62.9062868 L72.4194188,61.9516926 C72.5460058,61.8251055 72.7176947,61.7539897 72.8967158,61.7539897 L72.8967158,61.7539897 L73.2921217,61.7539897 L73.2917323,61.7490375 L87.8942323,61.7490375 Z" id="vertical-command" fill="#4D97FF"></path>
<path d="M97.026211,51.701295 C97.3990032,51.701295 97.701211,52.0035028 97.701211,52.376295 L97.701211,59.797546 C97.701211,60.1703382 97.3990032,60.472546 97.026211,60.472546 L72.5598237,60.4724574 C72.4979754,60.5042028 72.4408464,60.5455958 72.3907742,60.595668 L71.43618,61.5502621 C71.309593,61.6768492 71.1379041,61.7479651 70.958883,61.7479651 L68.8180713,61.7479651 C68.6390501,61.7479651 68.4673612,61.6768492 68.3407742,61.5502621 L67.38618,60.595668 C67.3361078,60.5455958 67.2789788,60.5042028 67.2171305,60.4724574 L65.173711,60.472546 C64.8009188,60.472546 64.498711,60.1703382 64.498711,59.797546 L64.498711,51.701295 L97.026211,51.701295 Z M72.6360879,48.9941965 C75.7860879,48.9941965 78.4860879,49.8941965 80.7360879,51.6941965 L80.7360879,51.6941965 L64.5360879,51.6941965 C66.7860879,49.8941965 69.4860879,48.9941965 72.6360879,48.9941965 Z" id="vertical-hat" fill="#FFBF00"></path>
</g>
<g id="Right-Hand" transform="translate(183.031534, 51.559577)">
<path d="M51.672386,47.9287906 C54.4288148,45.7627462 58.8732789,40.4796431 59.0880711,38.9519169 C59.3028633,37.4241906 64.6832345,8.77417802 64.6832345,8.77417802 C66.7846828,9.06940141 71.5913624,14.2431993 71.8453939,17.978903 C72.1771538,22.8576539 75.7196273,47.0851268 75.6060987,51.1590082 C75.2529277,63.8322545 84.3595401,93.2836541 102.925936,139.513207 L82.7967446,134.927123 C67.2520041,104.220364 58.7228582,86.434528 57.209307,81.5696162 C38.8771444,76.6524972 33.2539285,61.0838755 26.7512936,55.0061805 C20.2486586,48.9284856 11.8484723,44.5703395 13.8906404,38.3993793 C15.3210004,33.9640017 24.7897298,35.2773091 32.6993771,43.1838518 C40.6090244,51.0903946 49.6008038,49.0635384 51.672386,47.9287906 Z" id="Path-4" fill-opacity="0.15" fill="#000000" transform="translate(58.252186, 74.143692) rotate(-13.000000) translate(-58.252186, -74.143692) "></path>
<path d="M55.9331617,46.4178542 C58.6895905,44.2518098 63.1340547,38.9687066 63.3488469,37.4409804 C63.5636391,35.9132542 67.4850814,8.1225 67.4850814,8.1225 C69.5865298,8.41772339 75.8521382,12.7322628 76.1061697,16.4679665 C76.4379295,21.3467175 79.9804031,45.5741904 79.8668744,49.6480718 C79.5137035,62.3213181 88.6203158,91.7727177 107.186711,138.00227 L69.8139664,164.104702 C65.7649285,112.938932 62.983634,84.9235916 61.4700828,80.0586798 C43.1379202,75.1415608 37.5147043,59.572939 31.0120693,53.4952441 C24.5094344,47.4175491 16.1092481,43.0594031 18.1514161,36.8884429 C19.5817761,32.4530653 29.0505055,33.7663727 36.9601529,41.6729154 C44.8698002,49.5794582 53.8615796,47.5526019 55.9331617,46.4178542 Z" id="Path-4" fill="#755135" transform="translate(62.512961, 86.113601) rotate(-13.000000) translate(-62.512961, -86.113601) "></path>
<path d="M8.34596591,47.6204232 C7.87096591,50.6604232 9.48596591,53.2729232 13.1909659,55.4579232 C18.7484659,58.7354232 24.0209659,60.4454232 27.0134659,63.0104232 C30.0059659,65.5754232 39.4109659,74.4104232 46.6784659,77.4029232 C51.5234659,79.3979232 54.5159659,80.2529232 55.6559659,79.9679232 C55.3709659,80.6329232 54.9434659,81.1554232 54.3734659,81.5354232 C59.9784659,84.7654232 63.6359659,88.7554232 65.3459659,93.5054232 C67.0559659,98.2554232 69.9534659,106.805423 74.0384659,119.155423 L83.3009659,115.592923 C77.7909659,98.7779232 73.7534659,88.8979232 71.1884659,85.9529232 C67.3409659,81.5354232 66.0584659,80.9654232 64.9184659,79.9679232 C63.7784659,78.9704232 62.6384659,74.1254232 57.5084659,74.1254232 C52.3784659,74.1254232 37.2734659,68.2829232 30.1484659,60.3029232 C23.0234659,52.3229232 10.4834659,52.1804232 8.34596591,47.6204232 Z" id="Path-16" fill-opacity="0.15" fill="#000000"></path>
<path d="M48.2459659,47.6204232 C51.0009659,46.1954232 53.1384659,43.3454232 54.6584659,39.0704232 C55.225137,37.4766607 53.610137,27.4541607 49.8134659,9.00292323 C51.4284659,27.7179232 52.2834659,37.5504232 52.3784659,38.5004232 C52.3784659,39.6404232 51.0009659,42.6804232 48.2459659,47.6204232 Z" id="Path-17" fill-opacity="0.15" fill="#000000"></path>
</g>
<g id="Left-Hand" transform="translate(0.000000, 61.745759)">
<path d="M61.1363755,9.20117619 C59.5328474,-0.0364887797 68.4571426,-1.69772855 70.43337,6.57178021 L70.8503733,8.3098191 C72.3829944,14.6780707 76.4994765,31.0276259 77.7749778,34.2510014 C79.9768878,39.8142014 84.4420444,47.661175 87.9707615,33.9816668 C91.9308506,18.629892 102.705855,19.9171218 101.100796,28.6324531 C99.958104,34.8371744 95.457192,44.2744565 95.4331034,54.932758 L95.4337518,55.2561085 C95.4571326,58.9648442 96.1368803,63.7583247 94.7578691,67.1823001 C90.2684734,71.5088883 88.6352998,74.0060681 89.8583486,74.6738394 L91.3447023,149.766524 C77.0112305,115.590727 71.9160656,94.0380827 65.2387006,81.8546716 C64.8014438,81.2961928 64.4028278,80.6571373 64.0482096,79.9339496 C61.4472805,74.6297657 47.9374424,71.0053437 44.4121629,54.6097965 C43.0241083,48.1541626 49.3629324,47.049006 49.2398118,45.8841685 C48.4670872,38.5734627 56.6804401,39.911009 56.8094118,39.2231485 C58.3163878,31.1858086 65.5987405,33.4373456 65.5519393,32.7127424 C64.9462322,23.3348429 62.7399035,18.4388412 61.1363755,9.20117619 Z" id="Path" fill-opacity="0.15" fill="#000000" transform="translate(72.737935, 75.494882) rotate(43.000000) translate(-72.737935, -75.494882) "></path>
<path d="M56.8230397,15.5304354 C55.2195117,6.29277045 64.1438069,4.63153068 66.1200343,12.9010394 L66.5370376,14.6390783 C68.0696586,21.00733 72.1861408,37.3568851 73.4616421,40.5802606 C75.6635521,46.1434606 80.1287086,53.9904342 83.6574258,40.3109261 C87.6175148,24.9591512 98.3925188,26.246381 96.7874603,34.9617124 C95.6447683,41.1664336 91.1438562,50.6037158 91.1197676,61.2620172 L91.1204161,61.5853677 C91.1437968,65.2941035 91.6532909,74.2430509 90.2742798,77.6670263 C101.959468,101.062985 118.48642,134.377788 120.320993,135.379445 L87.0313665,156.095783 C72.6978948,121.919986 67.6027298,100.367342 60.9253648,88.1839308 C60.4881081,87.625452 60.0894921,86.9863966 59.7348739,86.2632089 C57.1339447,80.9590249 43.6241066,77.3346029 40.0988271,60.9390558 C38.7107726,54.4834218 45.0495967,53.3782652 44.9264761,52.2134277 C44.1537515,44.902722 52.3671044,46.2402683 52.4960761,45.5524077 C54.0030521,37.5150679 61.2854048,39.7666048 61.2386035,39.0420017 C60.6328965,29.6641021 58.4265678,24.7681004 56.8230397,15.5304354 Z" id="Path" fill="#755135" transform="translate(80.110496, 81.824141) rotate(43.000000) translate(-80.110496, -81.824141) "></path>
<path d="M89.3804319,49.0869148 C88.3733742,55.4991182 83.7368278,64.7289182 83.7127392,75.3872197 L83.7133876,75.7105702 C83.7367684,79.4193059 84.2462625,88.3682534 82.8672513,91.7922288 C94.5524393,115.188187 111.079391,148.50299 112.913964,149.504647 L106.205739,153.893679 C91.8722671,119.717882 81.2531423,106.077564 75.9729685,92.8475664 C79.5330018,83.2927685 77.7497894,79.5000043 78.9761091,70.367832 C80.2024289,61.2356597 88.0713664,51.1921718 84.2662896,43.0275801 C85.0929997,42.4515047 90.4407201,42.3357788 89.3804319,49.0869148 Z" id="Path" fill-opacity="0.15" fill="#000000" transform="translate(94.443466, 98.337262) rotate(43.000000) translate(-94.443466, -98.337262) "></path>
<path d="M116.313963,14.0380035 C118.451463,15.7480035 118.308963,18.0280035 117.738963,20.3080035 C117.168963,22.5880035 112.751463,30.1405035 107.763963,38.8330035 C102.776463,47.5255035 100.211463,54.2230035 102.633963,56.5030035 C99.6889627,54.7930035 98.8339627,51.8955035 100.068963,47.8105035 C101.921463,41.6830035 113.036463,24.1555035 114.888963,20.3080035 C116.123963,17.7430035 116.598963,15.6530035 116.313963,14.0380035 Z" id="Path-15" fill-opacity="0.15" fill="#000000"></path>
</g>
</g>
</g>
</g>
</g>
<g id="Cloud" transform="translate(229.055556, 26.388889)">
<mask id="mask-31" fill="white">
<use xlink:href="#path-30"></use>
</mask>
<use id="Path-5" fill="#FFFFFF" xlink:href="#path-30"></use>
<path d="M113.298354,10.5588537 C116.747299,7.22940059 115.360893,7.22940059 109.139135,10.5588537 C107.324344,11.5300042 101.398507,22.6180363 94.8707659,21.4400646 C82.5723479,19.2207385 79.0870671,32.9547326 70.4002873,32.9547326 C67.6698093,32.9547326 52.6326307,30.7080135 56.2504826,33.8729034 C57.6753018,35.1193324 61.0150873,33.5884956 65.490717,39.5926721 C69.6737327,45.2042989 78.0074592,48.7231008 85.4176709,44.5651428 C88.8726411,42.6265178 99.8265373,46.0831561 106.249614,47.9985565 C114.009443,50.3125848 114.972617,49.1681136 109.139135,44.5651428 L91.9584221,41.9583947 L112.144994,23.0359533 L113.298354,10.5588537 Z" id="Path-24" fill-opacity="0.15" fill="#4D97FF" mask="url(#mask-31)"></path>
<path d="M27.385883,37.6115881 C26.0803752,47.1837658 27.6857268,52.9926818 32.2019377,55.0383361 C38.9762541,58.1068176 35.6316789,58.753634 31.4485246,58.1051477 C27.2653703,57.4566613 23.0244646,57.6786218 21.6885271,58.1051477 C20.7979021,58.3894982 16.2043645,57.8880578 7.90791429,56.6008264 C9.70549242,58.2622131 12.0044182,58.7636535 14.8046916,58.1051477 C17.6049651,57.4466418 21.7986955,50.6154553 27.385883,37.6115881 Z" id="Path-23" fill-opacity="0.15" fill="#4D97FF" mask="url(#mask-31)"></path>
<path d="M33.8644841,30.8194592 C39.683631,28.1463103 44.7089361,27.8470232 48.9403996,29.9215979 C50.7717473,30.8194592 49.8361727,28.4126269 47.8443743,27.460133 C44.411989,25.818739 43.7047771,21.3980383 44.5981853,16.5403747 C45.4600626,11.8541515 41.3545012,21.1974307 39.4413274,21.6508923 C38.1658782,21.9532 36.3069304,25.009389 33.8644841,30.8194592 Z" id="Path-27" fill-opacity="0.15" fill="#4D97FF" mask="url(#mask-31)"></path>
<path d="M4.73776635,72.2095135 C-4.73570045,72.2095135 -1.55013549,62.0914738 -1.48742334,62.3342145 C0.76621582,71.0574023 31.4140137,64.7498121 38.1944531,64.7498121 C44.9748926,64.7498121 43.9258178,64.234601 68.6750877,67.8594534 C76.0229774,68.9356474 82.8131032,68.1295422 88.8451729,66.6072269 C103.85513,62.8191593 114.171256,54.5963672 116.7075,59.9056641 C117.09165,60.7098323 122.680376,77.6573256 119.360449,80.2048645 C112.537983,85.4400696 61.2133417,80.9466797 48.2306836,75.6675 C35.2480255,70.3883203 14.2112331,72.2095135 4.73776635,72.2095135 Z" id="Path-25" fill-opacity="0.5" fill="#4D97FF" mask="url(#mask-31)"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 117 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 50 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 62 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="244px" height="160px" preserveAspectRatio="none" viewBox="0 0 244 160" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Schools-Splash</title>
<g id="Schools-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Schools" fill="#9966FF">
<path d="M25.8217587,143.470201 C75.7225938,168.227896 202.313585,163.003282 228.288093,142.133948 C254.262602,121.264614 246.455817,18.74306 216.445007,6.55326558 C186.434198,-5.63652879 73.4462649,-0.0161924056 40.7594167,16.7629683 C8.07256853,33.542129 -24.0790765,118.712506 25.8217587,143.470201 Z" id="Oval-Copy-4"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 750 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 521 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Oval Copy</title>
<g id="R2_Columns-12" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="R2---BOTTOM---12-Column-(grid)" transform="translate(-650.000000, -7599.000000)" fill="#4D97FF">
<g id="Our-Work" transform="translate(-152.000000, -22.000000)">
<g id="Community" transform="translate(152.000000, 5738.000000)">
<g id="Scratch-Community-Team" transform="translate(122.000000, 460.000000)">
<g id="Community-Guidelines" transform="translate(527.000000, 1210.000000)">
<g id="Guideliens" transform="translate(1.000000, 212.000000)">
<path d="M8.43792291,17 C13.3224927,17 16.5980278,11.1934985 15.9084415,6.97687245 C15.2188551,2.76024638 12.6889307,1.61799274 7.97675748,1.0649926 C3.26458425,0.511992464 -0.469233814,3.52062157 0.0479559315,8.84324793 C0.565145677,14.1658743 3.55335309,17 8.43792291,17 Z" id="Oval-Copy"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1020px" height="500px" viewBox="0 0 1020 500" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>CPS Video Splash</title>
<g id="CPS-Video-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.5">
<path d="M189.677106,48.736809 C409.27062,-39.241082 721.790908,11.5395658 857.893065,48.736809 C1066.07982,105.635051 1051.20364,233.393881 937.08313,210.818772 C905.604851,204.591797 882.181308,244.273438 909.681303,272.776252 C949.726815,314.282072 984.355163,342.884792 976.691905,392.780366 C954.578838,536.758827 401.144054,520.645823 189.677106,433.095425 C-37.5164562,339.033979 -59.0503945,135.133524 114.233615,172.943359 C143.924915,179.421875 154.598037,141.642021 140.724482,121.722656 C126.242474,100.929688 139.619628,68.7918246 189.677106,48.736809 Z M945.486357,243.740234 C975.445342,216.269531 1009.4512,267.462891 984.578154,289 C959.705107,310.537109 915.527373,271.210938 945.486357,243.740234 Z M53.4476056,22.9108019 C83.40659,-4.55990118 117.412449,46.6334582 92.5394025,68.1705676 C81.8826781,77.3980273 53.0455462,94.9215554 42.6504196,87.5234375 C28.7830748,77.6541732 36.3243885,38.6118287 53.4476056,22.9108019 Z" id="splash" fill="#9966FF" transform="translate(509.572280, 250.000000) scale(1, -1) rotate(-180.000000) translate(-509.572280, -250.000000) "></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 667 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 687 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 709 KiB

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>News Icon</title>
<g id="News-Icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M2,19 C0.8954305,19 1.3527075e-16,18.1045695 0,17 L0,1.70710678 C3.57012085e-17,1.54534632 0.131132761,1.41421356 0.292893219,1.41421356 C0.37057333,1.41421356 0.445071866,1.44507187 0.5,1.5 C0.776142375,1.77614237 1.22385763,1.77614237 1.5,1.5 C1.77614237,1.22385763 2.22385763,1.22385763 2.5,1.5 C2.77614237,1.77614237 3.22385763,1.77614237 3.5,1.5 C3.77614237,1.22385763 4.22385763,1.22385763 4.5,1.5 C4.77614237,1.77614237 5.22385763,1.77614237 5.5,1.5 C5.77614237,1.22385763 6.22385763,1.22385763 6.5,1.5 C6.77614237,1.77614237 7.22385763,1.77614237 7.5,1.5 C7.77614237,1.22385763 8.22385763,1.22385763 8.5,1.5 C8.77614237,1.77614237 9.22385763,1.77614237 9.5,1.5 C9.77614237,1.22385763 10.2238576,1.22385763 10.5,1.5 C10.7761424,1.77614237 11.2238576,1.77614237 11.5,1.5 C11.7761424,1.22385763 12.2238576,1.22385763 12.5,1.5 C12.7761424,1.77614237 13.2238576,1.77614237 13.5,1.5 C13.7761424,1.22385763 14.2238576,1.22385763 14.5,1.5 C14.7761424,1.77614237 15.2238576,1.77614237 15.5,1.5 C15.6143819,1.38561808 15.7998316,1.38561808 15.9142136,1.5 C15.9691417,1.55492813 16,1.62942667 16,1.70710678 L16,6 L19,6 C19.5522847,6 20,6.44771525 20,7 L20,17 C20,18.1045695 19.1045695,19 18,19 L2,19 Z" id="Combined-Shape" fill="#FFFFFF"></path>
<path d="M16,6 L19,6 C19.5522847,6 20,6.44771525 20,7 L20,17 C20,18.1045695 19.1045695,19 18,19 C16.8954305,19 16,18.1045695 16,17 L16,6 L16,6 Z" id="Rectangle-Copy" fill="#4D97FF" opacity="0.5"></path>
<path d="M0.5,1.5 C0.776142375,1.77614237 1.22385763,1.77614237 1.5,1.5 C1.77614237,1.22385763 2.22385763,1.22385763 2.5,1.5 C2.77614237,1.77614237 3.22385763,1.77614237 3.5,1.5 C3.77614237,1.22385763 4.22385763,1.22385763 4.5,1.5 C4.77614237,1.77614237 5.22385763,1.77614237 5.5,1.5 C5.77614237,1.22385763 6.22385763,1.22385763 6.5,1.5 C6.77614237,1.77614237 7.22385763,1.77614237 7.5,1.5 C7.77614237,1.22385763 8.22385763,1.22385763 8.5,1.5 C8.77614237,1.77614237 9.22385763,1.77614237 9.5,1.5 C9.77614237,1.22385763 10.2238576,1.22385763 10.5,1.5 C10.7761424,1.77614237 11.2238576,1.77614237 11.5,1.5 C11.7761424,1.22385763 12.2238576,1.22385763 12.5,1.5 C12.7761424,1.77614237 13.2238576,1.77614237 13.5,1.5 C13.7761424,1.22385763 14.2238576,1.22385763 14.5,1.5 C14.7761424,1.77614237 15.2238576,1.77614237 15.5,1.5 C15.6143819,1.38561808 15.7998316,1.38561808 15.9142136,1.5 C15.9691417,1.55492813 16,1.62942667 16,1.70710678 L16,17 L16,17 C16,18.1045695 16.8954305,19 18,19 L18,19 L18,19 L2,19 C0.8954305,19 1.3527075e-16,18.1045695 0,17 L0,1.70710678 C3.57012085e-17,1.54534632 0.131132761,1.41421356 0.292893219,1.41421356 C0.37057333,1.41421356 0.445071866,1.44507187 0.5,1.5 Z" id="Rectangle" fill-opacity="0.25" fill="#4D97FF"></path>
<path d="M16,6 L17,6 L17,17 L17,18 C17,18.5522847 17.4477153,19 18,19 L18,19 L18,19 C16.8954305,19 16,18.1045695 16,17 L16,6 L16,6 Z" id="Rectangle" fill="#4D97FF" opacity="0.5"></path>
<rect id="Rectangle" fill="#4D97FF" x="2" y="4" width="12" height="6" rx="1"></rect>
<rect id="Rectangle-Copy-5" fill="#4D97FF" x="2" y="11" width="6" height="6" rx="1"></rect>
<rect id="Rectangle-Copy-2" fill="#4D97FF" x="9" y="11.5" width="5" height="1" rx="0.5"></rect>
<rect id="Rectangle-Copy-3" fill="#4D97FF" x="9" y="13.5" width="5" height="1" rx="0.5"></rect>
<rect id="Rectangle-Copy-4" fill="#4D97FF" x="9" y="15.5" width="5" height="1" rx="0.5"></rect>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="140px" height="140px" viewBox="0 0 140 140" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Pencils</title>
<g id="Pencils" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Illustration" transform="translate(2.000000, 4.000000)">
<g id="Group-21" transform="translate(48.000000, 39.000000) rotate(-16.000000) translate(-48.000000, -39.000000) translate(7.000000, 11.000000)">
<rect id="Rectangle" fill="#FF661A" x="0" y="0" width="81.6" height="55.2" rx="3.2"></rect>
<rect id="Rectangle" fill="#FFFFFF" x="2.4" y="18.4" width="76.8" height="34.4" rx="1.6"></rect>
<polyline id="Path-34-Copy" stroke="#575E75" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" points="15.1908203 40.7694413 21.5393912 29.3773203 24.7558074 41.3359654 29.6363865 29.3773203 32.1484299 39.6024872 36.3483347 28.0931211 38.4891013 39.6024872 41.616648 29.3773203 46.2418097 41.3359654 49.2653462 32.3876037 52.7510039 43.3750363 55.6514398 32.3876037 58.7526548 41.3359654 63.2474746 32.3876037 66.3908203 39.6024872"></polyline>
<text id="Hello" font-family="Helvetica-Bold, Helvetica" font-size="11.2" font-weight="bold" fill="#FFFFFF">
<tspan x="26.7089844" y="13.4">Hello</tspan>
</text>
</g>
<g id="Pencil" transform="translate(68.000000, 58.500000) rotate(35.000000) translate(-68.000000, -58.500000) translate(59.000000, -1.000000)">
<rect id="Rectangle-Copy-2" fill="#9B9EA8" x="3" y="0" width="12" height="18" rx="6"></rect>
<rect id="Rectangle-Copy" fill="#575E75" x="3" y="6" width="12" height="22" rx="6"></rect>
<path d="M8.5,17 L9.5,17 C12.5375661,17 15,19.4624339 15,22.5 L15,102 L15,102 L3,102 L3,22.5 C3,19.4624339 5.46243388,17 8.5,17 Z" id="Rectangle" fill="#4D97FF"></path>
<path d="M9,96 C12.3444763,96 15.0557101,98.7112338 15.0557101,102.05571 C15.0557101,102.837805 14.904212,103.612494 14.6095873,104.336972 L9.92633022,115.853028 C9.71827763,116.364626 9.13488553,116.610698 8.62328747,116.402646 C8.37346318,116.301049 8.17526632,116.102852 8.07366978,115.853028 L3.39041274,104.336972 C2.13050661,101.238882 3.62064865,97.706029 6.71873814,96.4461228 C7.44321588,96.1514981 8.21790554,96 9,96 Z" id="Rectangle-Copy-3" fill="#F6DDC3"></path>
<path d="M9,108 C10.5112275,108 11.7363195,109.225092 11.7363195,110.736319 C11.7363195,111.089715 11.6678639,111.439764 11.5347354,111.767125 L9.92633022,115.722168 C9.71827763,116.233767 9.13488553,116.479839 8.62328747,116.271786 C8.37346318,116.17019 8.17526632,115.971993 8.07366978,115.722168 L6.46526461,111.767125 C5.89596627,110.36723 6.56929848,108.770882 7.96919418,108.201584 C8.29655505,108.068456 8.64660457,108 9,108 Z" id="Rectangle-Copy-3" fill="#3D73CC"></path>
</g>
<g id="Pencil-Copy" transform="translate(95.000000, 82.500000) rotate(-137.000000) translate(-95.000000, -82.500000) translate(86.000000, 23.000000)">
<rect id="Rectangle-Copy-2" fill="#9B9EA8" x="3" y="0" width="12" height="18" rx="6"></rect>
<rect id="Rectangle-Copy" fill="#575E75" x="3" y="6" width="12" height="22" rx="6"></rect>
<path d="M8.5,17 L9.5,17 C12.5375661,17 15,19.4624339 15,22.5 L15,102 L15,102 L3,102 L3,22.5 C3,19.4624339 5.46243388,17 8.5,17 Z" id="Rectangle" fill="#0EBD8C"></path>
<path d="M9,96 C12.3444763,96 15.0557101,98.7112338 15.0557101,102.05571 C15.0557101,102.837805 14.904212,103.612494 14.6095873,104.336972 L9.92633022,115.853028 C9.71827763,116.364626 9.13488553,116.610698 8.62328747,116.402646 C8.37346318,116.301049 8.17526632,116.102852 8.07366978,115.853028 L3.39041274,104.336972 C2.13050661,101.238882 3.62064865,97.706029 6.71873814,96.4461228 C7.44321588,96.1514981 8.21790554,96 9,96 Z" id="Rectangle-Copy-3" fill="#F6DDC3"></path>
<path d="M9,108 C10.5112275,108 11.7363195,109.225092 11.7363195,110.736319 C11.7363195,111.089715 11.6678639,111.439764 11.5347354,111.767125 L9.92633022,115.722168 C9.71827763,116.233767 9.13488553,116.479839 8.62328747,116.271786 C8.37346318,116.17019 8.17526632,115.971993 8.07366978,115.722168 L6.46526461,111.767125 C5.89596627,110.36723 6.56929848,108.770882 7.96919418,108.201584 C8.29655505,108.068456 8.64660457,108 9,108 Z" id="Rectangle-Copy-3" fill="#0A8E69"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="140px" height="140px" viewBox="0 0 140 140" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Pizza</title>
<g id="Pizza" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(13.000000, 8.000000)">
<path d="M11.5811637,19.1832613 C22.0477729,-1.06274655 47.7270121,-4.01021156 72.4511911,4.42114374 C97.17537,12.852499 129.392331,38.7654681 105.749962,51.6996751 C83.0368491,60.7859349 52.6829903,83.4722222 14.6883854,119.758537 L14.6883927,119.758545 C13.490189,120.902876 11.5911894,120.859203 10.4468586,119.660999 C9.98679139,119.179273 9.70013616,118.558128 9.63208424,117.895489 C4.20912059,65.0906648 4.85881374,32.186589 11.5811637,19.1832613 Z" id="Path-34" fill="#F6DDC3"></path>
<path d="M9.44094556,21.403993 C21.7247463,0.247990958 47.6554696,8.50366521 71.7723293,16.6486267 C84.0012253,20.7786788 93.9141738,28.1555664 101.77263,38.5765842 C102.485461,39.521862 103.221,40.8748677 103.84943,40.8748677 C104.477859,40.8748677 105.241352,37.752337 108.370989,36.5458326 C111.500625,35.3393281 112.801201,36.6889581 112.91816,38.2087468 C113.645829,47.6642412 109.403473,48.0274807 104.865504,51.8529868 C71.8324517,65.0836243 41.2619529,87.6996785 13.1540073,119.701149 L13.1540147,119.701156 C12.060617,120.946012 10.1650881,121.068792 8.92023248,119.975395 C8.46450689,119.575116 8.14081909,119.046098 7.99186321,118.458117 C-3.1268715,74.5686192 -2.64384405,42.2172444 9.44094556,21.403993 Z" id="Path-34" fill="#ECC293"></path>
<path d="M5.76872448,29.5253694 C19.021402,3.80003047 46.7363142,11.8088075 70.1038257,19.7206866 C85.6821667,24.9952727 96.9808915,34.397583 104,47.9276176 C71.7952284,60.6294468 41.6304647,84.3922726 13.5057088,119.216095 L13.5057148,119.2161 C12.4646979,120.505078 10.5758639,120.70609 9.28688606,119.665073 C8.76982508,119.247479 8.40607499,118.670004 8.25273813,118.023301 C-1.84897968,75.4190062 -2.67698423,45.9196956 5.76872448,29.5253694 Z" id="Path-34" fill="#FFBF00"></path>
<path d="M21.2856759,24.0187065 C16.6767761,23.6908073 10,27.6629896 10,36.77489 C10,45.8867903 22.4380162,43.841651 27.3147445,38.0067435 C32.1914727,32.171836 25.3341484,24.3067341 21.2856759,24.0187065 Z" id="Path-35" fill="#FF8000"></path>
<path d="M29.5918467,58.2284536 C19.9383884,60.4006109 17.5776303,68.1847116 19.7424118,74.66237 C21.9071933,81.1400284 32.6379308,81.9139291 37.6940379,75.9264369 C42.750145,69.9389447 39.245305,56.0562963 29.5918467,58.2284536 Z" id="Path-35-Copy-2" fill="#FF8000"></path>
<path d="M1,80.2267405 C1.53355831,83.8098178 1.86085938,90.2269074 4.39539817,101 C6.24776409,100.352271 8.57015977,99.1234764 9.89642417,97.5625168 C14.9104174,91.6612495 10.5730517,78.0858641 1,80.2267405 Z" id="Path-35-Copy-3" fill="#FF8000"></path>
<path d="M60.9485996,27.441105 C52.4478334,30.567613 44.5322093,37.6763698 47.7220101,46.6186037 C50.9118109,55.5608377 67.106795,54.6820896 73.9102833,46.6186037 C80.7137715,38.5551179 69.4493659,24.314597 60.9485996,27.441105 Z" id="Path-35-Copy" fill="#FF8000"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Video Icon Purple</title>
<g id="Video-Icon-Purple" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M17.3333333,3.64285714 L19.7108476,3.92943253 C21.4651024,4.14088288 22.8727915,5.47829355 23.1737287,7.21943052 L23.3333333,8.14285714 C23.7745072,10.6953629 23.7745072,13.3046371 23.3333333,15.8571429 L23.1737287,16.7805695 C22.8727915,18.5217065 21.4651024,19.8591171 19.7108476,20.0705675 L17.3333333,20.3571429 C13.7905993,20.7841688 10.2094007,20.7841688 6.66666667,20.3571429 L4.28915237,20.0705675 C2.53489756,19.8591171 1.12720852,18.5217065 0.826271269,16.7805695 L0.666666667,15.8571429 C0.225492827,13.3046371 0.225492827,10.6953629 0.666666667,8.14285714 L0.826271269,7.21943052 C1.12720852,5.47829355 2.53489756,4.14088288 4.28915237,3.92943253 L6.66666667,3.64285714 C10.2094007,3.21583117 13.7905993,3.21583117 17.3333333,3.64285714 Z M10.885255,8.6 C10.1201998,8.6 9.5,9.21745879 9.5,9.9791328 L9.5,9.9791328 L9.5,14.0206859 C9.5,14.280354 9.57363424,14.5347467 9.71243054,14.7545943 C10.1195563,15.3994647 10.9746883,15.5936534 11.6224213,15.188327 L11.6224213,15.188327 L14.8517293,13.1675505 C15.0278111,13.0573652 15.176713,12.9091214 15.2873874,12.7338178 C15.6945131,12.0889474 15.4994623,11.2375947 14.8517293,10.8322683 L14.8517293,10.8322683 L11.6224213,8.8114917 C11.4015978,8.67330881 11.1460758,8.6 10.885255,8.6 Z" id="Combined-Shape" fill="#9966FF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 491 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 349 KiB

View file

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="220px" height="272px" viewBox="0 0 220 272" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Banana</title>
<defs>
<polygon id="path-1" points="0 0.6377 12.8187035 0.6377 12.8187035 28.9997 0 28.9997"></polygon>
<polygon id="path-3" points="0.141209725 0.633 17.4971 0.633 17.4971 28.3349774 0.141209725 28.3349774"></polygon>
<polygon id="path-5" points="0.419655666 0.8036 13.417 0.8036 13.417 29.9996 0.419655666 29.9996"></polygon>
</defs>
<g id="Banana" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(10.000000, 20.000000)">
<g id="Group-6" transform="translate(82.500000, 137.000000) rotate(-180.000000) translate(-82.500000, -137.000000) translate(76.000000, 122.000000)">
<path d="M11.2877,28.5969 C11.1247,28.5969 10.9607,28.5449 10.8237,28.4409 L8.0317,26.3179 C7.7787,26.1259 7.5877,25.8519 7.4937,25.5459 L0.8347,3.7459 C0.6907,3.2759 0.7757,2.7819 1.0667,2.3889 C1.3557,1.9989 1.8157,1.7659 2.2957,1.7659 C2.4697,1.7659 2.6417,1.7949 2.8077,1.8539 L5.5557,2.8169 C6.0397,2.9859 6.4047,3.3829 6.5327,3.8809 C6.6597,4.3779 6.5317,4.9029 6.1877,5.2849 L4.7717,6.8649 L7.9907,17.4019 L8.8137,18.1619 C9.2187,18.5359 9.3917,19.1029 9.2647,19.6389 L9.0617,20.4959 L9.7097,21.0959 C10.1137,21.4689 10.2867,22.0349 10.1597,22.5709 L9.9577,23.4289 L10.7787,24.1889 C10.9787,24.3709 11.1287,24.6109 11.2077,24.8759 L12.0217,27.6129 C12.1157,27.9309 11.9957,28.2729 11.7237,28.4609 C11.5927,28.5519 11.4397,28.5969 11.2877,28.5969" id="Fill-1" fill="#DBDCDD"></path>
<g id="Group-5" transform="translate(0.000000, 0.362500)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-4"></g>
<path d="M2.2964,0.6377 L2.2964,0.6377 C1.5734,0.6377 0.8844,0.9867 0.4504,1.5717 C0.0144,2.1607 -0.1126,2.9037 0.1024,3.6077 L6.7614,25.4077 C6.9024,25.8717 7.1824,26.2727 7.5684,26.5657 L10.3594,28.6877 C10.6334,28.8957 10.9604,28.9997 11.2874,28.9997 C11.5914,28.9997 11.8964,28.9097 12.1584,28.7287 C12.7034,28.3517 12.9434,27.6667 12.7554,27.0317 L11.9414,24.2937 C11.8234,23.9007 11.6024,23.5437 11.2994,23.2637 L10.8064,22.8077 L10.9054,22.3837 C11.0954,21.5797 10.8364,20.7317 10.2304,20.1707 L9.9104,19.8747 L10.0104,19.4517 C10.1994,18.6487 9.9414,17.7997 9.3344,17.2387 L8.6624,16.6177 L5.6304,6.6917 L6.7594,5.4327 C7.2734,4.8597 7.4654,4.0727 7.2744,3.3267 C7.0824,2.5817 6.5344,1.9857 5.8084,1.7307 L3.0594,0.7677 C2.8124,0.6817 2.5554,0.6377 2.2964,0.6377 M2.2964,2.1687 C2.3794,2.1687 2.4664,2.1827 2.5534,2.2137 L5.3024,3.1767 C5.8174,3.3567 5.9844,4.0037 5.6184,4.4097 L4.2014,5.9917 C4.0234,6.1907 3.9614,6.4697 4.0394,6.7257 L7.2584,17.2627 C7.2984,17.3927 7.3714,17.5097 7.4714,17.6017 L8.2934,18.3627 C8.4964,18.5497 8.5824,18.8317 8.5194,19.1007 L8.3174,19.9577 C8.2534,20.2267 8.3404,20.5087 8.5424,20.6967 L9.1904,21.2947 C9.3924,21.4827 9.4784,21.7637 9.4144,22.0327 L9.2124,22.8907 C9.1494,23.1587 9.2354,23.4407 9.4384,23.6277 L10.2584,24.3877 C10.3594,24.4807 10.4344,24.5997 10.4734,24.7317 L11.2874,27.4687 L8.4954,25.3457 C8.3674,25.2487 8.2734,25.1137 8.2264,24.9597 L1.5674,3.1597 C1.4104,2.6477 1.8084,2.1687 2.2964,2.1687" id="Fill-3" fill="#DBDCDD" mask="url(#mask-2)"></path>
</g>
</g>
<g id="Group-16">
<path d="M7.3887,91.2772 C7.3887,91.2772 3.1637,97.0152 3.3667,100.5412 C3.3667,100.5412 1.3267,98.7772 0.4067,97.1512 C-0.8293,94.9682 0.9177,91.6602 3.4347,91.2762 C5.2817,90.9942 7.3887,91.2772 7.3887,91.2772" id="Fill-1" fill="#575E75"></path>
<path d="M3.1797,95.0574 C8.3387,79.7894 63.6557,110.8384 106.8897,76.5324 C129.5787,58.5274 137.1837,41.7524 136.4437,27.2784 C136.4187,26.8014 136.2657,26.3424 136.0117,25.9404 L127.0787,11.7914 C125.0587,8.5914 126.4327,4.3424 129.9447,2.9314 L133.6487,1.4434 C137.5777,-0.1366 141.8747,2.6984 141.9687,6.9334 L142.3517,24.1814 C142.3697,25.0444 142.7957,25.8334 143.4967,26.3384 C146.4247,28.4494 154.8237,35.1804 157.5087,49.3514 C161.5477,70.6684 150.5767,119.7004 95.7657,131.9144 C43.9087,143.4714 -2.3153,111.3204 3.1797,95.0574" id="Fill-3" fill="#FFBF00"></path>
<g id="Group-7" transform="translate(126.000000, 0.367000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-6"></g>
<path d="M17.4971,25.9717 C16.7961,25.4667 16.3701,24.6777 16.3511,23.8147 L15.9691,6.5667 C15.8751,2.3307 11.5781,-0.5043 7.6481,1.0757 L3.9441,2.5647 C0.4331,3.9757 -0.9409,8.2247 1.0791,11.4247 L10.0121,25.5737 C10.2661,25.9757 10.4191,26.4347 10.4431,26.9107 C10.4431,26.9107 12.0631,28.7797 14.3921,28.2357 C16.7191,27.6907 17.4971,25.9717 17.4971,25.9717" id="Fill-5" fill="#E6AC00" mask="url(#mask-4)"></path>
</g>
<path d="M95.7519,131.908 C46.2969,142.925 2.0169,114.225 2.7619,97.43 C19.5589,109.734 49.6409,119.474 81.9189,112.272 C136.7309,100.052 147.6849,51.026 143.6399,29.708 C140.9749,15.529 133.6489,1.456 133.6489,1.456 C137.5669,-0.134 141.8789,2.686 141.9769,6.926 L142.3389,24.19 C142.3809,25.031 142.7849,25.841 143.5019,26.345 C146.4319,28.435 154.8369,35.191 157.4999,49.341 C161.5449,70.66 150.5629,119.688 95.7519,131.908" id="Fill-8" fill="#E6AC00"></path>
<path d="M129.2217,68.2322 C124.2117,73.9872 124.6777,78.7302 129.1977,79.2962 C133.7167,79.8642 140.9847,76.6722 142.6227,70.8872 C144.2617,65.1022 134.8837,61.7272 129.2217,68.2322" id="Fill-10" fill="#CC9900"></path>
<path d="M128.6318,85.9979 C125.3388,87.9739 126.7358,93.9229 130.6378,94.1289 C134.5378,94.3359 136.8918,90.7859 136.6308,87.6309 C136.3688,84.4749 133.7538,82.9259 128.6318,85.9979" id="Fill-12" fill="#CC9900"></path>
<path d="M123.833,84.1737 C125.66,79.6537 119.609,74.3637 115.467,77.0147 C111.323,79.6637 111.679,85.1647 114.398,88.3237 C117.118,91.4837 120.991,91.2037 123.833,84.1737" id="Fill-14" fill="#CC9900"></path>
</g>
<g id="Group-12" transform="translate(142.967923, 176.724963) rotate(-177.000000) translate(-142.967923, -176.724963) translate(65.967923, 126.224963)">
<path d="M129.441333,40.3033 C129.441333,40.3033 122.418555,8.69885598 80.7345365,1.04963345 C39.0505182,-6.59958908 0.350105746,31.3352443 0.350105746,31.3352443" id="Stroke-1" stroke="#FF661A" stroke-width="4.595" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M150.704,99.7213 C150.373,99.7173 150.082,99.5003 149.983,99.1843 L149.13,96.4583 C149.047,96.1953 149.037,95.9133 149.101,95.6463 L149.356,94.5623 L148.709,93.9623 C148.305,93.5893 148.132,93.0243 148.259,92.4873 L148.461,91.6293 L147.814,91.0323 C147.409,90.6583 147.236,90.0913 147.363,89.5553 L147.62,88.4643 L144.401,77.9273 L142.343,77.4083 C141.846,77.2833 141.446,76.9183 141.274,76.4353 C141.102,75.9523 141.183,75.4183 141.489,75.0073 L143.231,72.6723 C143.523,72.2813 143.97,72.0563 144.456,72.0563 C145.137,72.0563 145.726,72.4923 145.924,73.1423 L152.583,94.9413 C152.678,95.2503 152.673,95.5753 152.569,95.8813 L151.438,99.2023 C151.333,99.5133 151.041,99.7213 150.714,99.7213 L150.704,99.7213 Z" id="Fill-3" fill="#DBDCDD"></path>
<g id="Group-7" transform="translate(140.000000, 70.487000)">
<mask id="mask-6" fill="white">
<use xlink:href="#path-5"></use>
</mask>
<g id="Clip-6"></g>
<path d="M4.456,0.8036 C3.726,0.8036 3.056,1.1406 2.618,1.7276 L0.876,4.0626 C0.416,4.6786 0.295,5.4806 0.553,6.2046 C0.81,6.9306 1.409,7.4756 2.156,7.6636 L3.795,8.0766 L6.827,18.0026 L6.617,18.8926 C6.428,19.6976 6.686,20.5456 7.294,21.1066 L7.613,21.4016 L7.513,21.8246 C7.323,22.6286 7.583,23.4776 8.189,24.0386 L8.509,24.3336 L8.354,24.9876 C8.26,25.3886 8.275,25.8086 8.398,26.2016 L9.253,28.9266 C9.45,29.5586 10.033,29.9916 10.695,29.9996 L10.714,29.9996 C11.369,29.9996 11.953,29.5826 12.164,28.9616 L13.294,25.6416 C13.45,25.1826 13.458,24.6956 13.316,24.2306 L6.657,2.4306 C6.359,1.4566 5.476,0.8036 4.456,0.8036 M4.456,2.3356 C4.772,2.3356 5.085,2.5286 5.192,2.8776 L11.851,24.6776 C11.897,24.8306 11.895,24.9956 11.844,25.1486 L10.714,28.4686 L9.86,25.7426 C9.819,25.6126 9.813,25.4726 9.846,25.3386 L10.102,24.2496 C10.165,23.9816 10.079,23.6996 9.876,23.5126 L9.229,22.9136 C9.026,22.7266 8.94,22.4456 9.004,22.1756 L9.206,21.3186 C9.269,21.0496 9.184,20.7676 8.98,20.5796 L8.334,19.9826 C8.131,19.7946 8.045,19.5126 8.108,19.2436 L8.365,18.1536 C8.396,18.0216 8.393,17.8836 8.352,17.7536 L5.134,7.2166 C5.056,6.9596 4.849,6.7636 4.589,6.6976 L2.53,6.1786 C2.001,6.0446 1.777,5.4156 2.103,4.9786 L3.846,2.6436 C4.002,2.4336 4.23,2.3356 4.456,2.3356" id="Fill-5" fill="#DBDCDD" mask="url(#mask-6)"></path>
</g>
<path d="M124.3651,35.7808 L131.1221,33.7178 C132.5531,33.2798 134.0901,33.9408 134.7581,35.2788 L134.8851,35.5348 C139.5131,44.8088 144.2331,54.2598 146.0091,64.4718 L147.3311,72.0718 C147.4631,72.8338 147.0081,73.5738 146.2691,73.7998 L134.2051,77.4848 C133.4661,77.7108 132.6751,77.3508 132.3591,76.6458 L129.2121,69.6138 C124.9731,60.1468 123.6031,49.6658 122.2581,39.3808 L122.2221,39.1078 C122.0281,37.6248 122.9341,36.2178 124.3651,35.7808" id="Fill-8" stroke="#FF661A" stroke-width="2" fill="#FF661A"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Blocks</title>
<g id="Blocks" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M30.7278484,45.7867229 C31.7887144,45.7867229 32.80613,46.2081503 33.5562755,46.9582958 L33.5562755,46.9582958 L39.2131298,52.61515 C39.9632753,53.3652956 40.980691,53.7867229 42.0415569,53.7867229 L42.0415569,53.7867229 L54.7278484,53.7867229 C55.7887144,53.7867229 56.80613,53.3652956 57.5562755,52.61515 L57.5562755,52.61515 L63.2131298,46.9582958 C63.9632753,46.2081503 64.980691,45.7867229 66.0415569,45.7867229 L66.0415569,45.7867229 L180.384703,45.7867229 C182.593842,45.7867229 184.384703,47.5775839 184.384703,49.7867229 L184.384703,89.7867229 C184.384703,91.9958619 182.593842,93.7867229 180.384703,93.7867229 L66.0415569,93.7867229 C64.980691,93.7867229 63.9632753,94.2081503 63.2131298,94.9582958 L57.5562755,100.61515 C56.80613,101.365296 55.7887144,101.786723 54.7278484,101.786723 L42.0415569,101.786723 C40.980691,101.786723 39.9632753,101.365296 39.2131298,100.61515 L33.5562755,94.9582958 C32.80613,94.2081503 31.7887144,93.7867229 30.7278484,93.7867229 L20.3847027,93.7867229 C18.1755637,93.7867229 16.3847027,91.9958619 16.3847027,89.7867229 L16.3847027,49.7867229 C16.3847027,47.5775839 18.1755637,45.7867229 20.3847027,45.7867229 Z" id="Command" fill="#0EBD8C" transform="translate(100.384703, 73.786723) rotate(-15.000000) translate(-100.384703, -73.786723) "></path>
<path d="M45.7278484,104.786723 C46.7887144,104.786723 47.80613,105.20815 48.5562755,105.958296 L48.5562755,105.958296 L54.2131298,111.61515 C54.9632753,112.365296 55.980691,112.786723 57.0415569,112.786723 L57.0415569,112.786723 L69.7278484,112.786723 C70.7887144,112.786723 71.80613,112.365296 72.5562755,111.61515 L72.5562755,111.61515 L78.2131298,105.958296 C78.9632753,105.20815 79.980691,104.786723 81.0415569,104.786723 L81.0415569,104.786723 L147.384703,104.786723 C149.593842,104.786723 151.384703,106.577584 151.384703,108.786723 L151.384703,148.786723 C151.384703,150.995862 149.593842,152.786723 147.384703,152.786723 L81.0415569,152.786723 C79.980691,152.786723 78.9632753,153.20815 78.2131298,153.958296 L72.5562755,159.61515 C71.80613,160.365296 70.7887144,160.786723 69.7278484,160.786723 L57.0415569,160.786723 C55.980691,160.786723 54.9632753,160.365296 54.2131298,159.61515 L48.5562755,153.958296 C47.80613,153.20815 46.7887144,152.786723 45.7278484,152.786723 L35.3847027,152.786723 C33.1755637,152.786723 31.3847027,150.995862 31.3847027,148.786723 L31.3847027,108.786723 C31.3847027,106.577584 33.1755637,104.786723 35.3847027,104.786723 Z" id="Command" fill="#9966FF" transform="translate(91.384703, 132.786723) rotate(-15.000000) translate(-91.384703, -132.786723) "></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="140px" height="140px" viewBox="0 0 140 140" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Wave Icon</title>
<g id="Wave-Icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(9.000000, 20.000000)">
<path d="M1.2801,39.1114 C-5.1539,29.5324 14.2311,26.3004 24.7121,45.0704 C30.7031,55.7994 38.2491,46.5614 41.3461,38.5934 C45.4221,28.1064 51.9561,14.6224 55.7181,6.4474 C59.9671,-2.7836 71.5841,3.2524 68.0281,11.5824 C63.1871,22.9204 53.0271,41.1774 56.0351,42.9864 C59.2781,44.9374 69.5051,19.7384 78.0751,5.7304 C84.3211,-4.4806 94.4431,1.2634 89.9201,12.4164 C84.5051,25.7694 71.5821,43.7754 73.7541,45.5124 C75.9401,47.2594 86.9551,29.8414 93.5261,19.1894 C98.8791,10.5134 108.9061,17.5134 104.0351,25.4394 C96.7011,37.3714 81.2301,55.9924 83.1791,57.6674 C85.7421,59.8684 94.2381,47.4524 99.2821,41.2524 C105.3881,33.7454 112.8721,40.5874 108.1941,47.0234 C99.9481,58.3674 78.8801,85.0764 72.8721,92.4004 C58.6951,109.6784 16.8891,96.4154 16.8961,67.6084 C16.9011,52.1914 4.9401,44.5634 1.2801,39.1114 Z" id="Hand" fill="#ECC293"></path>
<path d="M30.0269,9.0771 L30.0269,9.0771 C26.2459,11.6791 24.1809,16.1321 24.6379,20.6981" id="Stroke-4" stroke="#FEFEFE" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M22.7847,-0.0005 L22.7847,-0.0005 C15.9407,4.7085 12.2037,12.7695 13.0307,21.0355" id="Stroke-6" stroke="#FEFEFE" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M101.7779,82.436 L101.7779,82.436 C106.1819,80.797 109.3439,76.891 110.0309,72.243" id="Stroke-8" stroke="#FEFEFE" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M106.7017,93.2583 L106.7017,93.2583 C114.6737,90.2913 120.3977,83.2203 121.6397,74.8063" id="Stroke-10" stroke="#FEFEFE" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 600 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="466px" height="146px" viewBox="0 0 466 146" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
<title>Path Copy</title>
<desc>Created with Sketch.</desc>
<g id="Timeline-R5" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-dasharray="1,16" stroke-linecap="round" stroke-linejoin="round">
<g id="Timeline-12-column-Trees" transform="translate(-408.000000, -2168.000000)" stroke="#4C97FF" stroke-width="6">
<g id="Lines" transform="translate(411.000000, 1312.000000)">
<path d="M0,999 L0,955.468966 C1.92946468e-15,942.214132 10.745166,931.468966 24,931.468966 L436,931.468966 C449.254834,931.468966 460,920.7238 460,907.468966 L460,855 L460,855" id="Path-Copy" transform="translate(230.000000, 927.000000) scale(-1, 1) translate(-230.000000, -927.000000) "></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="466px" height="146px" viewBox="0 0 466 146" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
<title>Path Copy 2</title>
<desc>Created with Sketch.</desc>
<g id="Timeline-R5" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-dasharray="1,16" stroke-linecap="round" stroke-linejoin="round">
<g id="Timeline-12-column-Trees" transform="translate(-408.000000, -3176.000000)" stroke="#4C97FF" stroke-width="6">
<g id="Lines" transform="translate(411.000000, 1312.000000)">
<path d="M0,2007 L0,1963.46897 C1.92946468e-15,1950.21413 10.745166,1939.46897 24,1939.46897 L436,1939.46897 C449.254834,1939.46897 460,1928.7238 460,1915.46897 L460,1863 L460,1863" id="Path-Copy-2"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 948 B

View file

@ -0,0 +1,266 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="200px" viewBox="0 0 300 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Passion Illustration</title>
<defs>
<path d="M3.09100257,29.0664524 C8.83997429,39.205527 8.92750643,52.9291774 5.16670951,60.4021851 L5.16670951,60.4021851 C-10.7047558,91.9384319 21.33509,91.8991003 37.9746787,88.1830334 L37.9746787,88.1830334 C50.2719794,85.4367609 63.0933162,78.0296915 63.11491,68.0602828 L63.11491,68.0602828 L63.11491,68.003599 C63.1083548,65.3926735 62.2233933,62.607455 60.222108,59.683419 L60.222108,59.683419 C49.6912596,44.3005141 65.572365,7.83817481 44.8843188,1.41323907 L44.8843188,1.41323907 C42.3416452,0.623907455 38.6552699,0.186632391 34.4772494,0.186632391 L34.4772494,0.186632391 C17.0544987,0.185475578 -8.98033419,7.77917738 3.09100257,29.0664524" id="path-1"></path>
<linearGradient x1="50.0002476%" y1="-15.2954093%" x2="50.0002476%" y2="118.116774%" id="linearGradient-3">
<stop stop-color="#4D97FF" offset="0%"></stop>
<stop stop-color="#CF529E" offset="100%"></stop>
</linearGradient>
<polygon id="path-4" points="0 186.632391 299.875835 186.632391 299.875835 0.186246787 0 0.186246787"></polygon>
</defs>
<g id="Passion-Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-302" transform="translate(0.000000, 7.000000)">
<g id="Group-9" transform="translate(207.455013, 60.739203)">
<path d="M21.7772622,86.0202956 C21.735617,86.4120694 21.7602956,87.2187532 19.7601671,87.6957455 C14.3879306,88.9759512 12.4749486,87.4277506 10.3502699,87.5476735 C5.76273779,87.8067995 2.07327763,87.8083419 0.651940874,86.1521722 C0.493071979,85.9663111 0.232789203,85.6774936 0.285231362,85.4519152 L0.996285347,82.7765938" id="Fill-1" fill="#E0E0E0"></path>
<path d="M9.15609254,77.1423779 C10.0541645,77.2734833 10.4139332,79.5257969 17.6675321,83.4701414 C21.628072,84.6732262 22.8288432,86.3270823 20.828329,86.8040746 C15.4560925,88.0842802 12.6951671,86.0583162 10.5970951,86.3513753 C3.08398458,87.4006041 3.32768638,84.4538175 0.669717224,84.052018 C1.83616967,79.5778535 1.86161954,78.1407069 1.65300771,77.3621722 C1.44439589,76.5840231 4.02948586,78.805874 6.00455013,78.9979049 C7.9796144,79.1899357 8.25802057,77.0108869 9.15609254,77.1423779" id="Fill-3" fill="#9966FF"></path>
<path d="M19.0995116,3.60628535 C19.0995116,3.60628535 19.9594087,14.9118123 9.5677635,22.0952314 C0.919820051,28.0732519 1.21403599,9.89934447 2.57367609,7.25255784 C3.9337018,4.60577121 8.51043702,-0.401683805 13.138072,0.263868895 C17.7657069,0.92903599 19.0995116,3.60628535 19.0995116,3.60628535" id="Fill-5" fill="#CC9900"></path>
<polygon id="Fill-7" fill="#CC9900" points="9.98132391 20.8166838 4.34494859 17.1422622 2.82181234 21.171054 6.62232648 23.5930334"></polygon>
</g>
<g id="Group-12" transform="translate(236.760925, 0.199357)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-11"></g>
<path d="M3.09100257,29.0664524 C8.83997429,39.205527 8.92750643,52.9291774 5.16670951,60.4021851 L5.16670951,60.4021851 C-10.7047558,91.9384319 21.33509,91.8991003 37.9746787,88.1830334 L37.9746787,88.1830334 C50.2719794,85.4367609 63.0933162,78.0296915 63.11491,68.0602828 L63.11491,68.0602828 L63.11491,68.003599 C63.1083548,65.3926735 62.2233933,62.607455 60.222108,59.683419 L60.222108,59.683419 C49.6912596,44.3005141 65.572365,7.83817481 44.8843188,1.41323907 L44.8843188,1.41323907 C42.3416452,0.623907455 38.6552699,0.186632391 34.4772494,0.186632391 L34.4772494,0.186632391 C17.0544987,0.185475578 -8.98033419,7.77917738 3.09100257,29.0664524" id="Fill-10" fill="url(#linearGradient-3)" mask="url(#mask-2)"></path>
</g>
<g id="Group-301" transform="translate(0.000000, 0.199357)">
<path d="M253.583715,13.814036 C252.946697,13.6424422 252.449267,13.1450129 252.277674,12.5079949 L251.887442,11.058509 C251.703123,10.3736761 250.731401,10.3736761 250.546697,11.058509 L250.156465,12.5079949 C249.984871,13.1450129 249.487442,13.6424422 248.850424,13.814036 L247.400938,14.2042674 C246.716105,14.3885861 246.716105,15.3606941 247.400938,15.5450129 L248.850424,15.9348586 C249.487442,16.1064524 249.984871,16.6042674 250.156465,17.2412853 L250.546697,18.6903856 C250.731401,19.3756041 251.703123,19.3756041 251.887442,18.6903856 L252.277674,17.2412853 C252.449267,16.6042674 252.946697,16.1064524 253.583715,15.9348586 L255.032815,15.5450129 C255.718033,15.3606941 255.718033,14.3885861 255.032815,14.2042674 L253.583715,13.814036 Z" id="Fill-13" fill="#FFFFFF"></path>
<path d="M261.965321,21.2717738 C261.562365,21.163419 261.247712,20.8487661 261.138972,20.4458098 L260.892185,19.5292288 C260.775733,19.0958098 260.16108,19.0958098 260.044627,19.5292288 L259.797455,20.4458098 C259.6891,20.8487661 259.374447,21.163419 258.971491,21.2717738 L258.05491,21.5185604 C257.621877,21.6350129 257.621877,22.2500514 258.05491,22.3665039 L258.971491,22.6132905 C259.374447,22.7216452 259.6891,23.0366838 259.797455,23.4392545 L260.044627,24.3558355 C260.16108,24.7892545 260.775733,24.7892545 260.892185,24.3558355 L261.138972,23.4392545 C261.247712,23.0366838 261.562365,22.7216452 261.965321,22.6132905 L262.881517,22.3665039 C263.314936,22.2500514 263.314936,21.6350129 262.881517,21.5185604 L261.965321,21.2717738 Z" id="Fill-15" fill="#FFFFFF"></path>
<path d="M276.706195,13.7105013 C276.592442,13.679653 276.503368,13.590964 276.472905,13.4772108 L276.403111,13.2180848 C276.369949,13.0954627 276.196427,13.0954627 276.16365,13.2180848 L276.093856,13.4772108 C276.063393,13.590964 275.974319,13.679653 275.860566,13.7105013 L275.60144,13.7802956 C275.478817,13.813072 275.478817,13.9865938 275.60144,14.0197558 L275.860566,14.0895501 C275.974319,14.1200129 276.063393,14.2090874 276.093856,14.3228406 L276.16365,14.5819666 C276.196427,14.7042031 276.369949,14.7042031 276.403111,14.5819666 L276.472905,14.3228406 C276.503368,14.2090874 276.592442,14.1200129 276.706195,14.0895501 L276.965321,14.0197558 C277.087558,13.9865938 277.087558,13.813072 276.965321,13.7802956 L276.706195,13.7105013 Z" id="Fill-17" fill="#FFFFFF"></path>
<path d="M284.227172,77.2108997 C284.113419,77.180437 284.024344,77.0913625 283.993882,76.9779949 L283.924087,76.7188689 C283.890925,76.5962468 283.717404,76.5962468 283.684627,76.7188689 L283.614833,76.9779949 C283.58437,77.0913625 283.495296,77.180437 283.381542,77.2108997 L283.122416,77.2810797 C282.999794,77.313856 282.999794,77.4873779 283.122416,77.5205398 L283.381542,77.5899486 C283.495296,77.6204113 283.58437,77.7094859 283.614833,77.8236247 L283.684627,78.0827506 C283.717404,78.2049871 283.890925,78.2049871 283.924087,78.0827506 L283.993882,77.8236247 C284.024344,77.7094859 284.113419,77.6204113 284.227172,77.5899486 L284.486298,77.5205398 C284.608535,77.4873779 284.608535,77.313856 284.486298,77.2810797 L284.227172,77.2108997 Z" id="Fill-19" fill="#FFFFFF"></path>
<path d="M269.607378,75.7460668 C269.493625,75.7156041 269.40455,75.626144 269.374087,75.5127763 L269.304293,75.2536504 C269.271131,75.1310283 269.097609,75.1310283 269.064833,75.2536504 L268.995039,75.5127763 C268.964576,75.626144 268.875501,75.7156041 268.761748,75.7460668 L268.502622,75.8158612 C268.38,75.8490231 268.38,76.022545 268.502622,76.0553213 L268.761748,76.1251157 C268.875501,76.1555784 268.964576,76.244653 268.995039,76.3584062 L269.064833,76.6175321 C269.097609,76.7397686 269.271131,76.7397686 269.304293,76.6175321 L269.374087,76.3584062 C269.40455,76.244653 269.493625,76.1555784 269.607378,76.1251157 L269.866504,76.0553213 C269.98874,76.022545 269.98874,75.8490231 269.866504,75.8158612 L269.607378,75.7460668 Z" id="Fill-21" fill="#FFFFFF"></path>
<path d="M284.811054,42.9271465 C284.697301,42.8962982 284.608226,42.8076093 284.577763,42.693856 L284.507584,42.4347301 C284.474807,42.3124936 284.301285,42.3124936 284.268123,42.4347301 L284.198715,42.693856 C284.167866,42.8076093 284.079177,42.8962982 283.965039,42.9271465 L283.706298,42.9969409 C283.583676,43.0301028 283.583676,43.2036247 283.706298,43.236401 L283.965039,43.3061954 C284.079177,43.3366581 284.167866,43.4257326 284.198715,43.5394859 L284.268123,43.7986118 C284.301285,43.9212339 284.474807,43.9212339 284.507584,43.7986118 L284.577763,43.5394859 C284.608226,43.4257326 284.697301,43.3366581 284.811054,43.3061954 L285.069794,43.236401 C285.192416,43.2036247 285.192416,43.0301028 285.069794,42.9969409 L284.811054,42.9271465 Z" id="Fill-23" fill="#FFFFFF"></path>
<path d="M277.476671,31.388599 C277.155463,31.301838 276.904434,31.0511954 276.818059,30.7299871 L276.621401,29.9992674 C276.52847,29.6537661 276.038368,29.6537661 275.945437,29.9992674 L275.748779,30.7299871 C275.662018,31.0511954 275.411375,31.301838 275.090167,31.388599 L274.359447,31.5852571 C274.013946,31.6781877 274.013946,32.1682905 274.359447,32.2612211 L275.090167,32.4578792 C275.411375,32.5446401 275.662018,32.7952828 275.748779,33.116491 L275.945437,33.8472108 C276.038368,34.1927121 276.52847,34.1927121 276.621401,33.8472108 L276.818059,33.116491 C276.904434,32.7952828 277.155463,32.5446401 277.476671,32.4578792 L278.207391,32.2612211 C278.552892,32.1682905 278.552892,31.6781877 278.207391,31.5852571 L277.476671,31.388599 Z" id="Fill-25" fill="#FFFFFF"></path>
<path d="M290.706015,66.9682905 C290.487378,66.9092931 290.316941,66.7384704 290.257943,66.5202185 L290.124139,66.0227892 C290.0609,65.7875707 289.727352,65.7875707 289.664113,66.0227892 L289.530308,66.5202185 C289.471311,66.7384704 289.300488,66.9092931 289.082237,66.9682905 L288.584807,67.1020951 C288.349974,67.1653342 288.349974,67.4988817 288.584807,67.5621208 L289.082237,67.6959254 C289.300488,67.7549229 289.471311,67.9253599 289.530308,68.1439974 L289.664113,68.6414267 C289.727352,68.8762596 290.0609,68.8762596 290.124139,68.6414267 L290.257943,68.1439974 C290.316941,67.9253599 290.487378,67.7549229 290.706015,67.6959254 L291.203445,67.5621208 C291.438278,67.4988817 291.438278,67.1653342 291.203445,67.1020951 L290.706015,66.9682905 Z" id="Fill-27" fill="#FFFFFF"></path>
<path d="M255.764961,38.3723907 C255.546324,38.3137789 255.375501,38.1429563 255.316504,37.9243188 L255.182699,37.4268895 C255.11946,37.1920566 254.785913,37.1920566 254.722674,37.4268895 L254.588869,37.9243188 C254.530257,38.1429563 254.359434,38.3137789 254.140797,38.3723907 L253.643753,38.5061954 C253.408535,38.5694344 253.408535,38.902982 253.643753,38.9662211 L254.140797,39.1000257 C254.359434,39.1590231 254.530257,39.3298458 254.588869,39.5480977 L254.722674,40.045527 C254.785913,40.2803599 255.11946,40.2803599 255.182699,40.045527 L255.316504,39.5480977 C255.375501,39.3298458 255.546324,39.1590231 255.764961,39.1000257 L256.262005,38.9662211 C256.496838,38.902982 256.496838,38.5694344 256.262005,38.5061954 L255.764961,38.3723907 Z" id="Fill-29" fill="#FFFFFF"></path>
<path d="M206.102044,108.839499 C210.246517,108.739242 217.254486,111.778959 219.968368,115.851324 C222.581992,119.772918 219.561941,130.553638 221.020681,135.146183 C223.615797,143.315977 206.784177,143.275488 206.521195,137.558907 C206.328393,133.367776 210.543432,129.679859 207.474023,123.618548 C207.474023,123.618548 205.001144,118.935 199.329679,119.942584 C197.033021,130.910707 201.275051,137.240013 197.101272,141.959422 C193.552172,145.972789 167.708985,136.4341 165.87081,134.693098 C163.352815,132.308907 166.793175,125.329859 170.540476,127.162249 C172.580707,128.159807 180.366825,129.645925 182.213483,130.105566 C183.580064,130.446054 183.859242,131.38153 183.954486,129.788213 C184.090604,127.500039 185.724023,126.117648 184.617725,120.911607 C183.174023,114.117648 184.144974,107.149396 185.772995,104.680758" id="Fill-31" fill="#E5C498"></path>
<path d="M195.166967,84.9327763 C195.166967,84.9327763 192.275321,95.5935733 185.66838,102.369409 C184.154499,103.921851 185.553856,107.421208 187.058098,108.253728 C191.733933,110.839589 199.622622,112.102442 206.101928,108.83946 C205.366967,105.316195 210.301542,92.0433162 210.301542,92.0433162 C210.301542,92.0433162 216.62545,96.2899743 219.668638,98.7323907 C222.712211,101.174807 229.51928,87.9134961 230.634833,85.6307198 C231.750386,83.3471722 233.812211,82.1865039 230.634833,82.5377892 C227.457455,82.8890746 221.411183,89.5978149 221.411183,89.5978149 C221.411183,89.5978149 219.025835,84.4958869 213.608483,82.9947301 C208.191131,81.4935733 209.002828,83.0140103 204.032005,77.2006427 C199.061568,71.3872751 191.704242,83.4902314 191.704242,83.4902314" id="Fill-33" fill="#4D97FF"></path>
<path d="M40.4578149,150.782969 C40.4578149,151.537982 38.7927763,152.149936 36.7386632,152.149936 C34.6849357,152.149936 33.0198972,151.537982 33.0198972,150.782969 C33.0198972,150.027956 34.6849357,149.416003 36.7386632,149.416003 C38.7927763,149.416003 40.4578149,150.027956 40.4578149,150.782969" id="Fill-35" fill="#FF661A"></path>
<path d="M117.98946,139.443046 C117.98946,140.61644 115.402057,141.567339 112.210026,141.567339 C109.017995,141.567339 106.430591,140.61644 106.430591,139.443046 C106.430591,138.270039 109.017995,137.318753 112.210026,137.318753 C115.402057,137.318753 117.98946,138.270039 117.98946,139.443046" id="Fill-37" fill="#9966FF"></path>
<path d="M110.5741,145.467725 C110.5741,146.054229 109.280398,146.530064 107.684383,146.530064 C106.088368,146.530064 104.794666,146.054229 104.794666,145.467725 C104.794666,144.881221 106.088368,144.405771 107.684383,144.405771 C109.280398,144.405771 110.5741,144.881221 110.5741,145.467725" id="Fill-39" fill="#9966FF"></path>
<path d="M42.7213496,141.15829 C42.7213496,141.744794 41.4276478,142.22063 39.8316324,142.22063 C38.235617,142.22063 36.9419152,141.744794 36.9419152,141.15829 C36.9419152,140.571787 38.235617,140.095951 39.8316324,140.095951 C41.4276478,140.095951 42.7213496,140.571787 42.7213496,141.15829" id="Fill-41" fill="#9966FF"></path>
<path d="M29.7512468,160.847082 C29.7512468,161.675746 27.9227121,162.348239 25.666928,162.348239 C23.4115296,162.348239 21.5826093,161.675746 21.5826093,160.847082 C21.5826093,160.018033 23.4115296,159.34554 25.666928,159.34554 C27.9227121,159.34554 29.7512468,160.018033 29.7512468,160.847082" id="Fill-43" fill="#4D97FF"></path>
<path d="M25.5634704,155.848149 C25.5634704,157.307275 22.3444473,158.49108 18.3734961,158.49108 C14.4029306,158.49108 11.1835219,157.307275 11.1835219,155.848149 C11.1835219,154.388638 14.4029306,153.205219 18.3734961,153.205219 C22.3444473,153.205219 25.5634704,154.388638 25.5634704,155.848149" id="Fill-45" fill="#4D97FF"></path>
<path d="M77.3088046,161.701118 C77.3088046,162.530167 75.4802699,163.202661 73.2244859,163.202661 C70.9690874,163.202661 69.1401671,162.530167 69.1401671,161.701118 C69.1401671,160.872069 70.9690874,160.199576 73.2244859,160.199576 C75.4802699,160.199576 77.3088046,160.872069 77.3088046,161.701118" id="Fill-47" fill="#0FBD8C"></path>
<path d="M77.4304242,165.545129 C77.4304242,165.996671 76.4344087,166.362609 75.2062596,166.362609 C73.9777249,166.362609 72.9820951,165.996671 72.9820951,165.545129 C72.9820951,165.093586 73.9777249,164.727648 75.2062596,164.727648 C76.4344087,164.727648 77.4304242,165.093586 77.4304242,165.545129" id="Fill-49" fill="#0FBD8C"></path>
<path d="M83.5398201,161.701118 C83.5398201,162.152661 82.5438046,162.518599 81.3156555,162.518599 C80.0875064,162.518599 79.091491,162.152661 79.091491,161.701118 C79.091491,161.249576 80.0875064,160.883638 81.3156555,160.883638 C82.5438046,160.883638 83.5398201,161.249576 83.5398201,161.701118" id="Fill-51" fill="#0FBD8C"></path>
<path d="M206.426838,83.032982 C208.452416,83.9595887 210.836992,83.6757841 211.453959,82.3095887 C212.129152,80.8149871 210.002931,81.4068895 212.668612,75.8148586 C214.015527,72.9899229 209.330051,71.6345244 208.177866,74.1906941 C205.766298,79.5401799 204.818869,76.7711568 203.903059,78.6760411 C203.253702,80.0271979 204.61874,82.2054756 206.426838,83.032982" id="Fill-53" fill="#E8B182"></path>
<path d="M218.762429,56.3801799 C218.762429,56.3801799 211.140964,53.104473 206.543406,63.1540874 C202.540835,71.9022879 212.189807,81.4968895 215.204075,81.884036 C216.431452,82.0417481 222.704075,80.1079434 223.446362,73.0220823 C229.668085,64.3402057 224.965643,59.2182262 218.762429,56.3801799" id="Fill-55" fill="#ECC293"></path>
<path d="M219.488638,75.2919023 C220.158046,76.0600257 222.52874,73.8080977 221.096607,73.7421594 C220.237866,73.7032134 219.871157,72.3694087 220.440694,70.9904884" id="Stroke-57" stroke="#E8B182" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M221.96117,72.4616452 C222.607442,72.347892 223.213226,72.6544473 223.446517,73.021928" id="Stroke-59" stroke="#E8B182" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M217.089717,71.5307584 C216.90964,71.9244602 216.522494,72.133072 216.224807,71.9973393 C215.927121,71.8608355 215.831877,71.4312725 216.011954,71.0379563 C216.192031,70.6438689 216.579177,70.4352571 216.876864,70.5717609 C217.17455,70.7074936 217.269794,71.1370566 217.089717,71.5307584" id="Fill-61" fill="#231F20"></path>
<path d="M216.208728,67.4962596 C216.295874,67.8452314 216.619396,68.093946 216.978393,68.071581 C218.065026,68.0037147 219.282763,68.6619409 219.322481,68.0226093 C219.367211,67.2980591 216.927494,66.1485733 216.383021,66.7447172 C216.163997,66.9837918 216.148959,67.2560283 216.208728,67.4962596" id="Fill-63" fill="#231F20"></path>
<path d="M224.608419,69.8351028 C224.407519,70.0198072 224.098265,70.0417866 223.880398,69.8771337 C223.22063,69.3793188 222.174486,69.2871594 222.416645,68.8656941 C222.691581,68.3883162 224.717159,68.6809897 224.812789,69.2863882 C224.850964,69.5293188 224.746851,69.7082391 224.608419,69.8351028" id="Fill-65" fill="#231F20"></path>
<path d="M215.81464,76.3847044 C216.463226,77.233419 219.017082,77.8507712 220.265283,77.5098972 C221.840476,77.0803342 219.265797,80.3109254 216.49099,79.5458869 C213.716568,78.7808483 215.166054,75.5363753 215.81464,76.3847044" id="Fill-67" fill="#231F20"></path>
<path d="M220.26509,77.5098972 C220.26509,77.5098972 219.035398,78.5976864 217.287841,78.2541131 C215.540283,77.9097686 215.913548,76.4965296 215.913548,76.4965296 C215.913548,76.4965296 216.840925,77.198329 217.901337,77.4142674 C218.939769,77.6255784 220.26509,77.5098972 220.26509,77.5098972" id="Fill-69" fill="#FFFFFF"></path>
<path d="M81.9064781,75.5231491 C83.1566067,75.6110668 95.3224165,77.7249486 96.6473522,78.9608098 C100.887455,82.9167224 82.0109769,82.2631234 79.6861697,80.7573393 C77.3613625,79.2523265 75.8652185,79.9012982 74.9683033,77.8730206 C74.0717738,75.8447429 81.9064781,75.5231491 81.9064781,75.5231491" id="Fill-71" fill="#B5875C"></path>
<path d="M76.4110411,65.3951799 C76.4110411,65.3951799 78.7651542,74.9570051 82.3524293,75.6618895 C85.9393188,76.3671594 81.2607841,80.4996787 77.3615553,79.2522494 C73.4627121,78.0048201 72.2002442,69.4297558 72.2002442,69.4297558 C72.2002442,69.4297558 73.5834062,62.7441517 76.4110411,65.3951799" id="Fill-73" fill="#B5875C"></path>
<path d="M78.5166324,67.7794087 C76.4193316,62.8625707 76.8207455,49.9745244 69.4611054,48.7463753 C66.7611054,48.3314653 64.2072494,47.069383 61.9846272,49.2920051 C59.7620051,51.5146272 69.4850129,69.9873779 72.2000514,70.8542159 C75.081671,71.7734961 78.5166324,67.7794087 78.5166324,67.7794087" id="Fill-75" fill="#0FBD8C"></path>
<path d="M40.796144,64.7503342 C39.3308483,65.3561183 37.8231362,63.3968638 37.6122108,61.525527 C37.4008997,59.6538046 36.7210797,55.4005913 37.166838,54.775527 C37.612982,54.1504627 40.5883033,59.8188432 40.5883033,59.8188432 L40.796144,64.7503342 Z" id="Fill-77" fill="#0B8E69"></path>
<path d="M31.7948715,59.4893059 C31.7948715,59.4893059 45.741401,48.2146272 48.6631234,48.3322365 C51.5844602,48.4502314 49.6467995,53.8124422 47.2491131,56.1862211 C44.8506555,58.5592288 38.1982134,64.6752956 34.1636375,66.0141131 C30.1290617,67.3529306 31.7948715,59.4893059 31.7948715,59.4893059" id="Fill-79" fill="#B5875C"></path>
<path d="M57.7017224,48.047892 C55.0476093,47.9090746 52.3148329,45.3513625 46.9927249,48.3313111 C42.3974807,50.9044473 38.9216452,52.0007198 37.1671465,54.775527 C36.650437,55.5922365 39.0774293,55.9011054 39.9743445,64.4788689 C40.1548072,66.2044473 45.6392545,61.2467352 46.6348843,60.5603599 C47.4581491,59.9927506 49.5303856,62.0788689 49.5959383,63.0764267 C49.8014653,66.1905656 49.7382262,72.2777121 49.7721594,78.6104884 C49.8195887,87.5418509 68.7188175,85.8262982 73.5006941,82.7850386 C78.2825707,79.7437789 74.3058355,75.214473 74.0717738,70.3045758 C73.8377121,65.3950643 65.9737018,48.4805398 57.7017224,48.047892" id="Fill-81" fill="#0FBD8C"></path>
<path d="M60.1326478,18.6873779 C58.3488432,16.9884062 55.5177378,17.0150129 53.5503856,20.2051157 C51.3790488,23.7260668 46.144473,25.8588432 47.4119537,30.9665553 C49.31491,38.6381491 41.4551414,41.3659126 48.6401028,41.7669409 C52.3245501,41.9724679 54.3096401,44.6844216 55.538946,42.8393059 C55.538946,42.8393059 51.9412596,34.3779949 54.7862468,23.9774807" id="Fill-83" fill="#231F20"></path>
<path d="M88.8275707,135.298573 C88.2765424,134.381221 78.1089332,133.76117 77.382455,135.122738 C77.2644602,135.344075 78.3946658,137.422866 79.8962082,137.364254 C81.397365,137.305643 88.8275707,135.298573 88.8275707,135.298573" id="Fill-85" fill="#5E5D5E"></path>
<path d="M61.865437,140.822044 C61.3147943,139.905077 51.1467995,139.28464 50.4203213,140.646208 C50.3023265,140.867545 51.4325321,142.946337 52.9340746,142.887725 C54.4352314,142.829113 61.865437,140.822044 61.865437,140.822044" id="Fill-87" fill="#5E5D5E"></path>
<path d="M60.1725578,145.725308 C59.9261568,135.917468 56.3982648,109.146517 60.9630463,102.700758 C63.484126,99.1412468 69.3456941,100.905 70.9798843,102.700758 C80.2208869,112.855643 78.8111183,139.917725 78.8111183,139.917725 C78.8111183,139.917725 86.8046915,141.814126 87.2037918,140.222738 C87.6025064,138.631735 86.7129177,121.087905 85.4261568,114.992661 C84.1393959,108.897031 78.7000643,91.4376478 78.7000643,86.7583419 C78.7000643,82.0794216 49.9251285,88.864126 49.9251285,88.864126 C47.1179306,88.980964 51.0244859,134.596774 51.3811697,144.439319 L60.1725578,145.725308 Z" id="Fill-89" fill="#404041"></path>
<path d="M61.4387661,51.6704499 C63.5831105,52.1771337 65.0807969,50.2082391 65.0742631,48.8632519 C65.0673008,47.3917866 63.553419,48.6681362 63.6413368,43.1119666 C63.6856812,40.3051542 59.3580463,40.9479563 59.371928,43.4628663 C59.4012339,48.7267481 57.1080463,47.3967995 57.0717995,49.2920437 C57.045964,50.6366452 59.7027763,51.2601671 61.4387661,51.6704499" id="Fill-91" fill="#A57955"></path>
<path d="M57.2197172,22.4251327 C57.2197172,22.4251327 50.2364267,24.0651671 51.591054,32.8966581 C48.7352699,36.6200514 54.7784576,44.5060411 57.3311568,44.5060411 C59.8032648,44.5060411 67.6568638,41.7196658 68.0902828,34.8385604 C68.8826992,22.2551414 63.3388689,22.4251327 57.2197172,22.4251327" id="Fill-93" fill="#B5875C"></path>
<path d="M52.4698843,29.4247943 C52.6711697,29.6526864 52.9838946,29.1109126 53.3066452,29.1155398 C54.1761825,29.1286504 55.4351799,29.653072 55.2288817,29.1683676 C54.9952057,28.6192674 52.7606298,27.8819923 52.5385219,28.5051285 C52.4494473,28.755 52.3314524,29.2678535 52.4698843,29.4247943" id="Fill-95" fill="#231F20"></path>
<path d="M62.9399614,31.0600257 C62.7386761,31.3122108 61.6350771,30.6181234 61.3123265,30.6235219 C60.4427892,30.6381748 59.9746658,31.312982 60.180964,30.7766067 C60.4146401,30.168509 61.377108,29.8384319 62.0804499,29.9479434 C62.6677249,30.0397172 63.0783933,30.8865039 62.9399614,31.0600257" id="Fill-97" fill="#231F20"></path>
<path d="M50.420437,140.64617 C51.6578406,141.543085 60.1226221,141.864293 61.3966581,140.772262 C62.6706941,139.680617 61.6021851,146.039229 60.316581,145.706452 C59.0305913,145.37329 52.3284062,146.618792 51.3142674,144.53036 C50.420437,142.689486 50.420437,140.64617 50.420437,140.64617" id="Fill-99" fill="#6F6E70"></path>
<path d="M77.3824165,135.122699 C78.6198201,136.019614 87.0846015,136.340823 88.3586375,135.248792 C89.6326735,134.157147 88.5641645,140.515758 87.2785604,140.182982 C85.9929563,139.84982 79.2903856,141.095321 78.2762468,139.006889 C77.3824165,137.166015 77.3824165,135.122699 77.3824165,135.122699" id="Fill-101" fill="#6F6E70"></path>
<path d="M51.8766324,144.865604 C52.6058098,143.782442 56.3207198,146.451979 59.606838,145.359563 C60.145527,145.180643 60.6984833,145.58437 60.6680206,146.151594 C60.6032391,147.360077 60.5311311,149.249152 60.5654499,151.281671 C60.6094087,153.876015 61.9917995,155.589254 61.2618509,156.497738 C59.7005398,158.440411 51.9556812,162.895681 48.0934704,164.185527 C46.7700771,164.627044 41.5532391,163.551594 41.2011825,162.550951 C40.7184062,161.177044 40.4484833,158.891568 42.2573522,157.969589 C43.5934704,157.289383 49.3366581,153.431799 51.0441131,151.184113 C52.741928,148.950308 51.0610797,146.077172 51.8766324,144.865604" id="Fill-103" fill="#FF661A"></path>
<path d="M45.0283805,156.132841 C49.4292802,153.55392 51.5192545,145.454306 51.3114139,142.366003 C51.1787661,140.393638 55.972982,140.565231 56.0088432,142.806748 C56.1384062,150.982326 52.4682262,157.637853 48.8520308,159.528085 C45.1143702,161.480784 43.987635,156.742866 45.0283805,156.132841" id="Fill-105" fill="#E64D00"></path>
<path d="M43.8186632,156.265411 C42.4763753,156.736234 39.9387147,158.770296 40.8433419,159.886234 C41.7475835,161.002172 44.7321594,161.884434 46.5097943,161.456414 C48.8257326,160.89883 49.4835733,159.148573 48.4301028,157.382121 C47.5867866,155.967725 45.030617,155.84009 43.8186632,156.265411" id="Fill-107" fill="#F1F2F2"></path>
<path d="M40.9910283,161.187108 C41.323419,161.401889 44.1946272,162.980167 47.5274036,162.65626 C51.6352442,162.256388 60.971491,155.433123 61.2117224,155.258445 C61.8232905,154.812686 61.7272751,156.535566 61.1997686,156.943535 C60.1042674,157.791093 50.9488689,163.914486 47.5971979,164.272712 C43.4619794,164.714614 41.1711054,163.103946 40.7450129,162.670141 C40.3162211,162.233638 40.343599,160.769499 40.9910283,161.187108" id="Fill-109" fill="#F1F2F2"></path>
<path d="M59.6766324,150.782969 C59.6766324,152.121015 58.9563239,153.205334 58.0675064,153.205334 C57.1790746,153.205334 56.4587661,152.121015 56.4587661,150.782969 C56.4587661,149.445308 57.1790746,148.36099 58.0675064,148.36099 C58.9563239,148.36099 59.6766324,149.445308 59.6766324,150.782969" id="Fill-111" fill="#F1F2F2"></path>
<path d="M88.0979692,139.057828 C87.3687918,137.974666 83.6542674,140.644589 80.3677635,139.551787 C79.8290746,139.372866 79.2765039,139.776979 79.306581,140.343817 C79.3713625,141.552301 79.4434704,143.441761 79.4091517,145.473895 C79.3655784,148.068239 77.9828021,149.781864 78.7127506,150.689961 C80.2740617,152.632635 87.5720051,156.635591 91.4342159,157.925051 C92.7576093,158.366568 97.9748329,157.291118 98.3265039,156.290861 C98.8096658,154.916568 99.0795887,152.631093 97.2703342,151.709884 C95.9342159,151.028907 90.638329,147.624023 88.9304884,145.376722 C87.2326735,143.142532 88.9139075,140.269396 88.0979692,139.057828" id="Fill-113" fill="#FF661A"></path>
<path d="M94.4994216,149.872442 C90.0985219,147.293907 88.4558483,139.646221 88.6633033,136.558303 C88.7959512,134.585553 84.0013496,134.757532 83.965874,136.999434 C83.8363111,145.174242 87.0595758,151.377455 90.6757712,153.267686 C94.4134319,155.220771 95.5401671,150.482468 94.4994216,149.872442" id="Fill-115" fill="#E64D00"></path>
<path d="M95.7091388,150.004974 C97.0514267,150.476183 99.5890874,152.509859 98.6844602,153.626183 C97.7806041,154.741735 94.7956427,155.624383 93.0180077,155.195977 C90.7020694,154.638393 90.0442288,152.888136 91.0976992,151.121684 C91.9410154,149.707288 94.4971851,149.579653 95.7091388,150.004974" id="Fill-117" fill="#F1F2F2"></path>
<path d="M98.5367738,154.927095 C98.204383,155.141491 95.3335604,156.719769 92.0003985,156.395861 C87.8925578,155.99599 79.0032262,149.625424 78.7629949,149.450746 C78.1514267,149.005373 78.2470566,150.727866 78.774563,151.136221 C79.8704499,151.983393 88.5789332,157.654087 91.9306041,158.012699 C96.0658226,158.454216 98.3566967,156.843548 98.7827892,156.409743 C99.211581,155.973625 99.1842031,154.5091 98.5367738,154.927095" id="Fill-119" fill="#F1F2F2"></path>
<path d="M80.2979692,144.975193 C80.2979692,146.313239 81.0182776,147.397558 81.9070951,147.397558 C82.7959126,147.397558 83.5162211,146.313239 83.5162211,144.975193 C83.5162211,143.637532 82.7959126,142.553213 81.9070951,142.553213 C81.0182776,142.553213 80.2979692,143.637532 80.2979692,144.975193" id="Fill-121" fill="#F1F2F2"></path>
<path d="M75.0388303,70.851054 C75.3276478,85.0671208 92.8302185,111.355296 89.2263625,118.016221 C85.622892,124.677147 54.4888303,127.468535 47.4700643,116.692442 C44.3617095,111.919434 52.1262339,81.3498972 50.9378021,58.7812596 C50.5491131,51.3953985 53.8174936,48.4798458 55.2315039,47.5709769 C55.5947429,47.3376864 56.0354884,47.264036 56.4569537,47.3573522 L56.5548972,47.3793316 C56.9208355,47.4606941 57.096671,47.8837018 56.8872879,48.1944987 C56.3108098,49.0489974 55.417365,51.0024679 54.8590103,55.2822879 C54.287545,59.6635219 68.3790617,59.0650643 68.3790617,57.2496401 C68.3790617,52.10491 66.6515553,49.4357584 65.5383162,48.2276607 C65.3975707,48.0749614 65.5078535,47.8293316 65.7156941,47.8358869 C66.0827892,47.8470694 66.5551542,47.9211054 66.9507841,48.0132648 C68.091401,48.2781748 74.7974422,58.9555527 75.0388303,70.851054" id="Fill-123" fill="#F1F2F2"></path>
<mask id="mask-5" fill="white">
<use xlink:href="#path-4"></use>
</mask>
<g id="Clip-126"></g>
<polygon id="Fill-125" fill="#B58D66" mask="url(#mask-5)" points="82.3172237 79.3214653 83.6340617 79.3214653 83.6340617 78.8475578 82.3172237 78.8475578"></polygon>
<polygon id="Fill-127" fill="#B58D66" mask="url(#mask-5)" points="87.9447301 69.5124679 88.9804627 69.5124679 88.9804627 69.0073265 87.9447301 69.0073265"></polygon>
<polygon id="Fill-128" fill="#B58D66" mask="url(#mask-5)" points="121.801542 75.2799486 122.939846 75.2799486 122.939846 74.5719794 121.801542 74.5719794"></polygon>
<path d="M95.2367352,80.5710154 C93.5030591,80.5710154 92.0967609,79.969473 92.0967609,79.2244859 C92.0967609,78.4814267 93.5030591,77.8779563 95.2367352,77.8779563 C96.9704113,77.8779563 98.3767095,78.4814267 98.3767095,79.2244859 C98.3767095,79.969473 96.9704113,80.5710154 95.2367352,80.5710154 M88.1512596,68.6500643 C86.34509,72.4043059 96.732108,71.1163882 96.6788946,73.0953085 C96.6276093,75.0738432 84.2362211,73.2059769 82.4281234,78.6206298 C79.9664267,85.9972365 119.34509,91.0933805 122.839049,75.7953085 C125.125296,65.7846401 90.8319794,63.0823265 88.1512596,68.6500643" id="Fill-129" fill="#B58D66" mask="url(#mask-5)"></path>
<path d="M95.2367352,80.0844987 C93.5030591,80.0844987 92.0967609,79.4829563 92.0967609,78.7379692 C92.0967609,77.99491 93.5030591,77.3914396 95.2367352,77.3914396 C96.9704113,77.3914396 98.3767095,77.99491 98.3767095,78.7379692 C98.3767095,79.4829563 96.9704113,80.0844987 95.2367352,80.0844987 M88.1512596,68.163162 C86.34509,71.9174036 96.732108,70.6298715 96.6788946,72.6084062 C96.6276093,74.5873265 84.2362211,72.7194602 82.4281234,78.1341131 C79.9664267,85.5107198 119.34509,90.6068638 122.839049,75.3087918 C125.125296,65.2981234 90.8319794,62.5954242 88.1512596,68.163162" id="Fill-130" fill="#E5C498" mask="url(#mask-5)"></path>
<path d="M102.632892,68.7780848 C102.632892,69.2893959 101.494203,69.7035347 100.089447,69.7035347 C98.6850771,69.7035347 97.5463882,69.2893959 97.5463882,68.7780848 C97.5463882,68.2667738 98.6850771,66.9402956 100.089447,66.9402956 C101.494203,66.9402956 102.632892,68.2667738 102.632892,68.7780848" id="Fill-131" fill="#4D97FF" mask="url(#mask-5)"></path>
<path d="M109.847892,69.8607069 C109.847892,70.372018 108.709203,70.7865424 107.304447,70.7865424 C105.900077,70.7865424 104.761388,70.372018 104.761388,69.8607069 C104.761388,69.3493959 105.900077,68.0229177 107.304447,68.0229177 C108.709203,68.0229177 109.847892,69.3493959 109.847892,69.8607069" id="Fill-132" fill="#9966FF" mask="url(#mask-5)"></path>
<path d="M116.659049,71.5413239 C116.659049,72.052635 115.52036,72.4671594 114.115604,72.4671594 C112.710848,72.4671594 111.572545,72.052635 111.572545,71.5413239 C111.572545,71.0300129 112.710848,69.7035347 114.115604,69.7035347 C115.52036,69.7035347 116.659049,71.0300129 116.659049,71.5413239" id="Fill-133" fill="#FFBF00" mask="url(#mask-5)"></path>
<path d="M110.69329,74.7854499 C110.69329,75.2967609 109.554602,75.7112853 108.149846,75.7112853 C106.745476,75.7112853 105.606787,75.2967609 105.606787,74.7854499 C105.606787,74.2741388 106.745476,72.9480463 108.149846,72.9480463 C109.554602,72.9480463 110.69329,74.2741388 110.69329,74.7854499" id="Fill-134" fill="#0FBD8C" mask="url(#mask-5)"></path>
<path d="M120.266375,75.5890488 C120.266375,76.1003599 119.127686,76.5148843 117.722931,76.5148843 C116.31856,76.5148843 115.179871,76.1003599 115.179871,75.5890488 C115.179871,75.0777378 116.31856,73.7512596 117.722931,73.7512596 C119.127686,73.7512596 120.266375,75.0777378 120.266375,75.5890488" id="Fill-135" fill="#FF661A" mask="url(#mask-5)"></path>
<path d="M58.641054,19.8541774 C59.9278149,17.982455 64.4050643,17.0207584 68.1662468,21.9013496 C72.8532648,27.9838689 72.5609769,36.9904242 75.426401,40.0902956 C78.2922108,43.1901671 71.3324422,43.5410668 68.876144,42.4297558 C66.4198458,41.3184447 60.1325707,46.8746144 62.5460668,42.4004499 C63.1553213,41.271401 70.8257584,31.3953085 64.6067352,30.469473 C59.5452956,29.715617 61.039126,24.4744859 58.641054,25.2348972 C56.242982,25.9953085 52.0321851,19.1523779 50.5699743,25.8780848" id="Fill-136" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M65.8152185,36.5360668 C68.5317995,39.1203856 70.2897686,32.6966067 68.6386118,31.0720566 C66.9870694,29.447892 65.8152185,30.9243702 65.8152185,30.9243702 C65.8152185,30.9243702 66.9897686,31.9022622 66.5220308,34.899563 C66.3805141,35.8068895 65.8152185,36.5360668 65.8152185,36.5360668" id="Fill-137" fill="#A57955" mask="url(#mask-5)"></path>
<path d="M57.3131105,31.7073779 C57.3131105,31.7073779 57.5664524,33.93 56.1821337,34.7486375 C54.6910026,35.6308997 56.981491,37.0491517 56.981491,37.0491517" id="Stroke-138" stroke="#A07552" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-5)"></path>
<path d="M61.8200514,33.6749229 C61.8200514,34.0632262 61.5817481,34.3782648 61.2883033,34.3782648 C60.9948586,34.3782648 60.7569409,34.0632262 60.7569409,33.6749229 C60.7569409,33.2866195 60.9948586,32.971581 61.2883033,32.971581 C61.5817481,32.971581 61.8200514,33.2866195 61.8200514,33.6749229" id="Fill-139" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M54.3604627,33.0225193 C54.3604627,33.4108226 54.122545,33.7258612 53.8287147,33.7258612 C53.5352699,33.7258612 53.2973522,33.4108226 53.2973522,33.0225193 C53.2973522,32.6342159 53.5352699,32.3191774 53.8287147,32.3191774 C54.122545,32.3191774 54.3604627,32.6342159 54.3604627,33.0225193" id="Fill-140" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M57.3311954,40.4412725 C57.3311954,40.4412725 59.8727121,41.4550257 60.7569023,38.9987275" id="Stroke-141" stroke="#A07552" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-5)"></path>
<path d="M34.1642545,66.0140746 C34.1642545,66.0140746 24.9132262,68.8432519 21.049473,68.8432519 L18.4855913,65.2339974 C21.7855913,64.0046915 27.403072,59.5821979 31.7947172,59.4892674 C32.6303213,58.7276992 35.7174679,58.3351542 36.143946,60.9958226 C36.5708098,63.656491 35.5693959,65.3176735 34.1642545,66.0140746" id="Fill-142" fill="#B5875C" mask="url(#mask-5)"></path>
<path d="M2.11843188,61.0151414 C-4.17385604,51.4224679 5.17935733,29.9701542 9.0951671,25.5792802 C12.5586632,21.69509 15.4514653,18.1668123 16.8847558,19.2673265 C18.3184319,20.3682262 14.9621337,22.1038303 16.5434961,23.2375064 C18.1248586,24.3715681 21.163419,17.8031877 23.1658612,19.6213111 C25.1266581,21.4016452 19.7204884,23.9797943 21.1695887,25.2954756 C21.9928535,26.0427763 18.0369409,29.0184833 19.0904113,30.0418766 C20.3856555,31.3001028 10.8068638,41.3990746 10.9907969,52.5110283 L2.11843188,61.0151414 Z" id="Fill-143" fill="#FF6680" mask="url(#mask-5)"></path>
<path d="M1.08832905,58.1780977 C0.778688946,56.8504627 2.34462725,55.9770694 3.46403599,55.6535476 C4.37637532,55.3897943 4.40606684,53.2901799 6.09231362,53.2797686 C7.47123393,53.2712853 7.52830334,52.2197429 8.39706941,51.2827249 C9.54809769,50.0414653 10.9952699,49.6049614 10.983009,50.5049614 L10.9705913,51.986838 L5.14449871,57.3027763 L2.11827763,61.0149871 C2.11827763,61.0149871 1.32046272,59.1733419 1.08832905,58.1780977" id="Fill-144" fill="#FF3355" mask="url(#mask-5)"></path>
<path d="M13.4988432,59.9590874 L6.34010283,67.0858226 C2.34100257,62.6135861 0.954755784,59.6158997 2.18097686,58.0927635 C4.02030848,55.8080591 3.79820051,57.8856941 4.93650386,55.702018 C6.0748072,53.5191131 6.88534704,55.3063882 7.53084833,54.0921208 C8.17673522,52.8782391 11.211054,49.7907069 10.990874,52.511144 C10.7602828,55.361144 11.5962725,57.8436632 13.4988432,59.9590874" id="Fill-145" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M17.8395116,72.7546272 C17.5136761,73.0372751 17.5383548,73.5998715 17.8950386,74.0113111 C18.2517224,74.422365 18.8054499,74.5264781 19.1312853,74.2434447 C19.4571208,73.9607969 19.4324422,73.3982005 19.0757584,72.9871465 C18.7190746,72.5757069 18.1657326,72.4719794 17.8395116,72.7546272 L17.8395116,72.7546272 Z M10.2882262,64.0122108 L14.0964524,60.7083548 C14.1913111,60.8170951 14.4647044,61.1321337 14.917018,61.653856 C16.1524936,63.077892 13.041054,65.2237789 14.7249871,67.1652956 C16.4089203,69.1060411 17.4866838,68.7181234 19.042982,70.5123393 C19.9221594,71.5253213 21.2270437,73.6392031 19.7505656,74.9224936 C18.2721594,76.2026992 16.363419,74.6124679 15.4842416,73.5987147 C13.9279434,71.8052699 14.4643188,70.7930591 12.7803856,68.851928 C11.0964524,66.9111825 8.47434447,69.5421594 7.23886889,68.1181234 C6.78616967,67.596401 6.51277635,67.2809769 6.41830334,67.1718509 L10.2882262,64.0122108 Z" id="Fill-146" fill="#CC8B2A" mask="url(#mask-5)"></path>
<polygon id="Fill-147" fill="#E3AB23" mask="url(#mask-5)" points="14.6816452 61.3088946 7.06172237 67.9193059 5.89488432 66.5743188 13.5148072 59.9639075"></polygon>
<path d="M10.9911054,52.5115296 C10.8773522,53.9212982 11.0092288,54.9739974 11.1908483,55.6025321 C9.53197943,55.7278535 9.42246787,57.1997044 8.80781491,58.0060026 C7.76244216,59.3764396 7.26231362,59.0093445 5.74727506,60.1407069 C4.40768638,61.140964 4.35562982,63.8702699 4.27426735,64.6060026 C1.53956298,61.1286247 1.36257069,59.1088303 2.18159383,58.0931491 C4.02092545,55.8072879 3.79843188,57.8853085 4.93634961,55.702018 C6.07465296,53.5187275 6.88557841,55.3060026 7.5314653,54.0921208 C8.17773779,52.8778535 11.2112853,49.7914781 10.9911054,52.5115296" id="Fill-148" fill="#FF6680" mask="url(#mask-5)"></path>
<path d="M17.0534576,72.7165681 C16.5637404,71.8046144 15.8399614,72.0525578 14.975437,72.4443316 C13.3574422,73.177365 13.6867481,75.403072 15.7107841,74.538162 C16.7206812,74.1062853 17.4834062,73.5170823 17.0534576,72.7165681" id="Fill-149" fill="#B5875C" mask="url(#mask-5)"></path>
<path d="M13.9512725,73.2430334 C14.6492159,72.9349357 15.1987018,72.6642416 15.6001157,72.4313368 C16.2016581,72.0808226 17.0314781,72.6094859 16.5992159,73.3860925 C16.1669537,74.1626992 15.2634833,74.8737532 14.5894473,74.7060154 C14.1398329,74.5941902 13.9960026,74.6998458 14.1575707,75.0222108 L16.4576992,75.0885347 L17.2894473,73.5947044 L17.5493445,72.4756812 L16.0408612,71.6393059 L14.9303213,72.2555013 L13.7808355,73.1485604 L13.9512725,73.2430334 Z" id="Fill-150" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M13.863162,73.2407584 C15.7769152,72.3777763 16.4825707,71.7662082 16.0649614,70.769036 C15.5895116,69.6334319 14.3467095,70.0467995 12.8154756,70.7385733 C10.8970951,71.6057969 11.4978663,74.3077249 13.863162,73.2407584" id="Fill-151" fill="#B5875C" mask="url(#mask-5)"></path>
<path d="M11.3812211,71.6494087 C12.7836632,71.265347 13.7476735,70.9695887 14.2732519,70.7625193 C15.0618123,70.452108 15.8206812,71.131928 15.1639974,72.1198458 C14.506928,73.1077635 13.0512725,73.8022365 12.2337918,73.3487661 C11.6885476,73.0464524 11.4853342,73.3125193 11.6237661,74.1477378 L14.877108,74.1782005 L16.0952314,72.0527506 L16.4935604,70.470617 L14.3819923,69.3350129 L12.7936889,70.2330848 L11.1421465,71.5210026 L11.3812211,71.6494087 Z" id="Fill-152" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M12.3670566,71.19 C14.3278535,70.2776607 15.0605013,69.6252185 14.6721979,68.549383 C14.2302956,67.3243188 12.9616581,67.7588946 11.3930206,68.4903856 C9.3990617,69.4200771 9.9153856,72.3310026 12.3670566,71.19" id="Fill-153" fill="#B5875C" mask="url(#mask-5)"></path>
<path d="M9.97604113,69.7628021 C11.0356812,69.4678149 11.8766838,69.066401 12.4994344,68.5585604 C13.4337532,67.7966067 14.8419794,68.9260411 14.0414653,69.8133162 C13.2409512,70.7005913 11.4201285,71.721671 10.5158869,71.1536761 C9.91318766,70.7753985 9.90933162,71.0568895 10.5047044,71.9989203 L13.7557326,71.858946 L14.8604884,69.6733419 L15.175527,68.0723136 L13.0072751,67.0489203 L11.4679434,68.0287404 L9.88619537,69.401491 L9.97604113,69.7628021 Z" id="Fill-154" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M10.7056427,69.3557198 C12.1115553,68.7291131 12.6421465,68.2571337 12.3853342,67.4215296 C12.0922751,66.4702442 11.1857198,66.7563625 10.060527,67.2591902 C8.63147815,67.897365 8.94883033,70.1384961 10.7056427,69.3557198" id="Fill-155" fill="#B5875C" mask="url(#mask-5)"></path>
<path d="M10.8728406,66.9313882 C11.6648715,66.7297172 12.3855656,67.4106941 11.9533033,68.1873008 C11.5210411,68.9639075 10.492635,69.6194344 9.81859897,69.4516967 C9.36937018,69.3402571 9.26679949,69.464036 9.5116581,69.8238046 L11.8117866,69.8901285 L12.6435347,68.3962982 L12.9034319,67.2768895 L11.3949486,66.4405141 C10.518856,66.9024679 10.3449486,67.0663496 10.8728406,66.9313882" id="Fill-156" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M17.9506041,69.5338303 C16.3345373,69.636401 15.2332519,67.9744473 15.2332519,67.9744473 C14.6421208,67.1149357 13.1949486,66.9618509 12.5112725,66.8268895 C10.8813239,66.5056812 10.1509897,63.7821594 11.0425064,63.4786889 C11.8430206,63.2060668 12.766928,64.7376864 14.3961054,65.1337018 C16.0916067,65.4070951 17.1759254,65.7217481 19.3603728,64.8641645 C21.4187275,67.3663496 20.4790103,71.1626221 19.8793959,71.7059383 C19.1872365,70.6061954 18.5444344,69.8820308 17.9506041,69.5338303" id="Fill-157" fill="#B5875C" mask="url(#mask-5)"></path>
<path d="M10.8726478,63.548329 C10.7469409,64.8100257 11.2563239,65.6197943 12.4004113,65.9764781 C14.1175064,66.5116967 15.015964,66.1484576 15.8334447,67.0326478 C16.6513111,67.916838 17.9966838,68.5137532 18.4532391,68.5596401 C18.9094087,68.605527 20.3334447,67.7178663 20.0334447,66.1901028 C19.7334447,64.6619537 21.7285604,68.924036 20.8721337,70.462982 C20.301054,71.4886889 19.8495116,72.0042416 19.5171208,72.0096401 L17.734473,70.3195373 L15.1366581,68.4728792 L13.8229049,67.3827763 L10.8074807,66.4781491 L10.29,64.5948586 L10.8726478,63.548329 Z" id="Fill-158" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M1.7061054,56.5699743 C2.53438303,55.8273008 1.36253213,49.1239589 3.67307198,49.1239589 C4.81330334,49.1239589 3.04222365,55.0152185 4.25494859,53.7423393 L4.15392031,55.9834704 L1.7061054,56.5699743 Z" id="Fill-159" fill="#FF3355" mask="url(#mask-5)"></path>
<path d="M4.25506427,53.7425321 C4.77832905,53.056928 4.66727506,48.5684961 6.41830334,48.9637404 C7.28745501,49.1600129 5.85455013,52.8139974 6.94426735,52.5039717 C7.47601542,52.3528149 7.95300771,51.8538432 8.39683805,51.2827635 C8.84066838,50.7116838 8.68565553,51.7246658 7.9048072,52.5857198 C7.30442159,53.2485733 4.99311054,54.8044859 4.17755784,54.9201671 C3.93308483,54.9552571 4.25506427,53.7425321 4.25506427,53.7425321" id="Fill-160" fill="#FF3355" mask="url(#mask-5)"></path>
<path d="M20.2088946,15.586928 C19.0540103,14.4278021 16.8741902,17.0421979 17.7934704,17.8789589 C19.1496401,19.1132776 21.6101799,16.9928406 20.2088946,15.586928" id="Fill-161" fill="#ED5F87" mask="url(#mask-5)"></path>
<path d="M52.3732905,34.9239717 C52.3732905,35.0531491 52.2687918,35.1580334 52.1396144,35.1580334 C52.010437,35.1580334 51.9055527,35.0531491 51.9055527,34.9239717 C51.9055527,34.7947943 52.010437,34.6902956 52.1396144,34.6902956 C52.2687918,34.6902956 52.3732905,34.7947943 52.3732905,34.9239717" id="Fill-162" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M54.0627763,35.1580334 C54.0627763,35.2872108 53.9582776,35.3917095 53.8287147,35.3917095 C53.6995373,35.3917095 53.5950386,35.2872108 53.5950386,35.1580334 C53.5950386,35.028856 53.6995373,34.9239717 53.8287147,34.9239717 C53.9582776,34.9239717 54.0627763,35.028856 54.0627763,35.1580334" id="Fill-163" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M53.1531748,36.2886632 C53.1531748,36.4178406 53.0486761,36.5227249 52.9191131,36.5227249 C52.7899357,36.5227249 52.685437,36.4178406 52.685437,36.2886632 C52.685437,36.1594859 52.7899357,36.0549871 52.9191131,36.0549871 C53.0486761,36.0549871 53.1531748,36.1594859 53.1531748,36.2886632" id="Fill-164" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M59.9714653,36.5226864 C59.9714653,36.6518638 59.8669666,36.7563625 59.7377892,36.7563625 C59.6086118,36.7563625 59.5037275,36.6518638 59.5037275,36.5226864 C59.5037275,36.393509 59.6086118,36.2886247 59.7377892,36.2886247 C59.8669666,36.2886247 59.9714653,36.393509 59.9714653,36.5226864" id="Fill-165" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M61.4270823,35.6259254 C61.4270823,35.7551028 61.3221979,35.8596015 61.1930206,35.8596015 C61.0638432,35.8596015 60.9593445,35.7551028 60.9593445,35.6259254 C60.9593445,35.4967481 61.0638432,35.3918638 61.1930206,35.3918638 C61.3221979,35.3918638 61.4270823,35.4967481 61.4270823,35.6259254" id="Fill-166" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M61.6609512,36.9075578 C61.6609512,37.0367352 61.5564524,37.1416195 61.4272751,37.1416195 C61.2977121,37.1416195 61.1932134,37.0367352 61.1932134,36.9075578 C61.1932134,36.7783805 61.2977121,36.6738817 61.4272751,36.6738817 C61.5564524,36.6738817 61.6609512,36.7783805 61.6609512,36.9075578" id="Fill-167" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M63.3688689,35.7379434 C63.3688689,35.8671208 63.2639846,35.9716195 63.1348072,35.9716195 C63.0056298,35.9716195 62.9011311,35.8671208 62.9011311,35.7379434 C62.9011311,35.6087661 63.0056298,35.5038817 63.1348072,35.5038817 C63.2639846,35.5038817 63.3688689,35.6087661 63.3688689,35.7379434" id="Fill-168" fill="#A07552" mask="url(#mask-5)"></path>
<path d="M95.1755398,78.1813111 C95.5360797,77.9761697 97.1737404,77.8778406 98.7662853,77.403162 C99.7526607,77.1093316 100.010244,77.8924936 100.69045,78.6922365 C100.905617,78.9455784 100.74135,79.3381234 100.408959,79.3419794 C99.631581,79.3512339 98.5757969,79.2212853 98.2314524,79.0157584 C98.0702699,79.4079177 97.6067738,79.5999486 96.6944344,79.4225707 C94.5712982,79.0095887 94.7081877,78.4469923 95.1755398,78.1813111" id="Fill-169" fill="#B5875C" mask="url(#mask-5)"></path>
<path d="M49.3419409,87.4855141 C52.8393702,89.3044087 57.3011954,87.0343573 58.3955398,89.1871851 C60.1697044,92.6769023 52.7607069,92.122018 52.4302442,97.199653 C52.0596787,102.892326 54.7500386,105.231787 51.5529949,106.382429 C49.1221465,107.256594 47.2889846,104.224974 47.2889846,104.224974 L49.3419409,87.4855141 Z" id="Fill-170" fill="#4D97FF" mask="url(#mask-5)"></path>
<path d="M57.8693059,99.9487404 C55.7384576,100.194756 55.7639075,102.346812 57.1088946,103.106838 C58.4542674,103.867249 59.3901285,99.7732905 57.8693059,99.9487404" id="Fill-171" fill="#4D97FF" mask="url(#mask-5)"></path>
<path d="M64.4290874,33.3480463 L64.2428406,33.9364781 C63.8198329,35.272982 62.4432262,36.06 61.0735604,35.7476607 C59.8118638,35.4615424 58.8274165,34.4697686 58.5509383,33.2019023 L58.4472108,32.7264524 C58.2655913,31.8981748 58.883329,31.1069152 59.7301157,31.0849357 L60.0378278,31.0783805 C60.4403985,31.0683548 60.8468252,31.0841645 61.2478535,31.124653 C62.0553085,31.2067866 62.8527378,31.3918766 63.6177763,31.6779949 C64.2910411,31.9297943 64.6469537,32.6647558 64.4290874,33.3480463 M56.4621208,32.5255527 L56.2654627,32.9705398 C55.7402699,34.1574293 54.5772879,34.9313368 53.2805013,34.958329 C51.8796015,34.9903342 50.6884704,33.9430334 50.538856,32.5486889 L50.4744602,31.9348072 C50.4011954,31.2222108 50.8970823,30.5732391 51.607365,30.4617995 C52.4140488,30.3349357 53.2323008,30.3129563 54.0401414,30.39509 C54.4407841,30.4355784 54.8421979,30.5015167 55.2347429,30.5921337 L55.5316581,30.66 C56.3599357,30.8512596 56.8064653,31.7504884 56.4621208,32.5255527 M65.4254884,31.6270951 L63.7909126,31.0282519 C62.418162,30.528509 60.9412982,30.3696401 59.4945116,30.5709254 C59.0807584,30.6272237 58.6508098,30.7162982 58.2374422,30.674653 C58.1406555,30.6650129 58.0415553,30.645347 57.9459254,30.6195116 L57.9212468,30.6141131 C57.8387275,30.5867352 57.7519666,30.5686118 57.6644344,30.5597429 C57.5765167,30.550874 57.4878278,30.5512596 57.4014524,30.5612853 L57.3760026,30.5620566 C56.8600643,30.5983033 56.3572365,30.376581 55.8686761,30.2038303 C55.1973393,29.9651414 54.4982391,29.8085861 53.7906555,29.7372494 C53.0545373,29.6624422 52.3064653,29.6817224 51.564563,29.7900771 L49.8463111,30.0492031 C49.6600643,30.074653 49.5116067,30.2273522 49.4923265,30.4182262 L49.4140488,31.1917481 C49.3959254,31.3733676 49.4988817,31.5418766 49.6623779,31.615527 C49.7803728,31.6652699 49.8617352,31.7686118 49.8871851,31.8943188 L50.1644344,33.3079434 C50.3445116,34.2179692 50.9992674,34.9675835 51.8784447,35.2498458 C52.4236889,35.42491 52.799653,35.4916195 53.3903985,35.500874 C55.4873136,35.5328792 56.4945116,33.8003599 56.8427121,33.0195116 C56.9695758,32.7349357 57.120347,32.4623136 57.3038946,32.2089717 C57.3555656,32.1384062 57.431144,32.1110283 57.5063368,32.1187404 C57.5815296,32.1264524 57.6497815,32.1680977 57.6860283,32.2475321 C57.8121208,32.5324936 57.9085219,32.8301799 57.9760026,33.134036 C58.1603213,33.9688689 58.799653,35.8683548 60.8607069,36.2574293 C61.4410411,36.3665553 61.8197044,36.376581 62.388856,36.3141131 C63.3100643,36.2142416 64.1017095,35.6115424 64.4572365,34.7551157 L65.0155913,33.4267095 C65.062635,33.3079434 65.1659769,33.2234961 65.288599,33.1980463 C65.4667481,33.1591003 65.5982391,33.0141131 65.6167481,32.8324936 L65.6950257,32.0593573 C65.7143059,31.8680977 65.6028663,31.6891774 65.4254884,31.6270951" id="Fill-172" fill="#9966FF" mask="url(#mask-5)"></path>
<path d="M56.4622365,32.525437 L56.2655784,32.9704242 C55.7403856,34.1573136 54.577018,34.9312211 53.280617,34.9582134 C51.8793316,34.9902185 50.6885861,33.9429177 50.5385861,32.5489589 L50.4745758,31.9350771 C50.4009254,31.2220951 50.8968123,30.573509 51.6074807,30.4616838 C52.4141645,30.3348201 53.2324165,30.3132262 54.0402571,30.3949743 C54.4408997,30.4354627 54.8423136,30.501401 55.2348586,30.592018 L55.5313882,30.6598843 C56.3596658,30.851144 56.806581,31.7503728 56.4622365,32.525437" id="Fill-173" fill="#FFFFFF" opacity="0.25" mask="url(#mask-5)"></path>
<path d="M64.4290874,33.3480463 L64.2428406,33.9364781 C63.8198329,35.272982 62.4432262,36.06 61.0735604,35.7476607 C59.8118638,35.4615424 58.8274165,34.4697686 58.5509383,33.2019023 L58.4472108,32.7264524 C58.2655913,31.8981748 58.883329,31.1069152 59.7301157,31.0849357 L60.0378278,31.0783805 C60.4403985,31.0683548 60.8468252,31.0841645 61.2478535,31.124653 C62.0553085,31.2067866 62.8527378,31.3918766 63.6177763,31.6779949 C64.2910411,31.9297943 64.6469537,32.6647558 64.4290874,33.3480463" id="Fill-174" fill="#FFFFFF" opacity="0.25" mask="url(#mask-5)"></path>
<path d="M50.037455,30.5622108 C50.0297429,30.63509 49.9649614,30.6883033 49.8920823,30.6809769 C49.8192031,30.6736504 49.7656041,30.6084833 49.7733162,30.5356041 C49.7806427,30.4623393 49.8458098,30.4095116 49.9186889,30.416838 C49.9915681,30.4241645 50.0447815,30.4893316 50.037455,30.5622108" id="Fill-175" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M49.9828535,31.1003213 C49.975527,31.1732005 49.9103599,31.2264139 49.8374807,31.2190874 C49.7646015,31.2117609 49.7113882,31.1465938 49.7187147,31.0737147 C49.7260411,31.0004499 49.7912082,30.9476221 49.8640874,30.9549486 C49.9369666,30.9622751 49.9901799,31.0274422 49.9828535,31.1003213" id="Fill-176" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M65.4328149,32.1212082 C65.4254884,32.1940874 65.3603213,32.2473008 65.2874422,32.2399743 C65.214563,32.2326478 65.1613496,32.1674807 65.1686761,32.0946015 C65.1760026,32.0217224 65.2411697,31.968509 65.3140488,31.9758355 C65.386928,31.983162 65.4401414,32.048329 65.4328149,32.1212082" id="Fill-177" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M65.3784062,32.6593188 C65.3706941,32.7321979 65.3059126,32.7854113 65.2330334,32.7780848 C65.1601542,32.7707584 65.1065553,32.7055913 65.1142674,32.6327121 C65.1215938,32.5598329 65.1867609,32.5066195 65.2596401,32.513946 C65.3325193,32.5212725 65.3857326,32.5864396 65.3784062,32.6593188" id="Fill-178" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M56.3097301,32.6403085 L56.1223265,33.064473 C55.6218123,34.1954499 54.5128149,34.9334961 53.2773393,34.958946 C51.9416067,34.9894087 50.8067738,33.9910797 50.6641003,32.6622879 L50.6027892,32.0773265 C50.5329949,31.397892 51.0053599,30.7797686 51.6824807,30.6733419 C52.4513753,30.5522622 53.2314524,30.5318252 54.0011183,30.6097172 C54.3832519,30.6482776 54.7657712,30.7115167 55.1398072,30.7975064 L55.4228406,30.8622879 C56.2121722,31.0446787 56.6378792,31.901491 56.3097301,32.6403085" id="Fill-179" fill="#FFFFFF" opacity="0.25" mask="url(#mask-5)"></path>
<path d="M64.2808997,33.4574422 L64.1031362,34.0192674 C63.6990231,35.295617 62.3844987,36.0471594 61.0765296,35.7487018 C59.8719023,35.4756941 58.9317995,34.5286504 58.6676607,33.3178535 L58.568946,32.8636118 C58.3950386,32.0731234 58.9850129,31.3173393 59.7936247,31.2965167 L60.087455,31.2895758 C60.4719023,31.2803213 60.8602057,31.2957455 61.2427249,31.3343059 C62.0143188,31.4125835 62.7755013,31.5891902 63.5062211,31.8625835 C64.1494087,32.1028149 64.489126,32.805 64.2808997,33.4574422" id="Fill-180" fill="#FFFFFF" opacity="0.25" mask="url(#mask-5)"></path>
<path d="M81.89009,93.3117609 C77.0546144,97.2776992 76.3582134,101.384769 78.8480591,101.572172 C80.6287789,101.706748 84.1998586,100.108033 84.7416324,99.9429949 L81.89009,93.3117609 Z" id="Fill-181" fill="#FF661A" mask="url(#mask-5)"></path>
<path d="M85.0462982,100.659717 C82.234473,100.890308 80.8428278,105.354447 83.338072,105.271157 C85.8337018,105.187481 86.1815167,103.383239 86.1815167,103.383239 L85.0462982,100.659717 Z" id="Fill-182" fill="#FF661A" mask="url(#mask-5)"></path>
<path d="M68.7358612,110.428959 C68.0475578,111.529859 65.9868895,110.194897 65.324036,111.754666 C64.6615681,113.314049 68.9892031,112.651195 69.7303342,113.352995 C70.4710797,114.054794 68.3263496,116.39464 69.4573265,117.057108 C70.5879177,117.719961 71.3872751,115.555951 72.712982,115.517005 C74.0386889,115.478059 75.3354756,119.034871 76.4363753,117.875746 C77.9182519,116.316362 75.8321337,113.548111 75.8321337,112.534357 C75.8321337,111.520604 79.8208226,111.70338 79.0446015,109.532044 C78.5413882,108.123432 75.9686375,109.57099 75.3836761,108.674075 C74.7991003,107.777545 75.0717224,105.477031 73.9411311,105.281915 C72.8101542,105.086799 72.9998715,107.835771 71.9915167,107.796825 C70.9835476,107.757879 70.2562982,106.724846 69.203599,107.309422 C68.1508997,107.894383 69.3208226,109.493098 68.7358612,110.428959" id="Fill-183" fill="#FFBF00" mask="url(#mask-5)"></path>
<path d="M221.654807,79.9801928 L217.073445,73.6443316 C216.869075,73.4831491 216.909949,72.6780077 217.515733,72.3093702 C218.376015,71.7868766 218.695681,72.0737661 218.847224,72.2411183 L222.3809,79.4287789 L221.654807,79.9801928 Z" id="Fill-184" fill="#404041" mask="url(#mask-5)"></path>
<line x1="248.037262" y1="85.362455" x2="271.321581" y2="150.807956" id="Stroke-185" stroke="#939598" stroke-width="1.54241645" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-5)"></line>
<line x1="245.724216" y1="84.6450771" x2="250.06419" y2="131.367185" id="Stroke-186" stroke="#939598" stroke-width="1.54241645" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-5)"></line>
<path d="M246.985141,83.7567609 L244.46329,83.7567609 C244.270488,83.7567609 244.113933,83.6002057 244.113933,83.4074036 L244.113933,74.4949357 C244.113933,74.3017481 244.270488,74.1451928 244.46329,74.1451928 L246.985141,74.1451928 C247.177943,74.1451928 247.334499,74.3017481 247.334499,74.4949357 L247.334499,83.4074036 C247.334499,83.6002057 247.177943,83.7567609 246.985141,83.7567609" id="Fill-187" fill="#D1D3D4" mask="url(#mask-5)"></path>
<path d="M250.599023,83.6498329 C251.238355,85.0892931 248.416504,86.7678278 245.724216,86.7678278 C243.031928,86.7678278 241.777172,85.4687275 240.849409,83.6498329 C240.229743,82.4347943 243.237069,81.4977763 245.929357,81.4977763 C248.621645,81.4977763 250.037198,82.3850514 250.599023,83.6498329" id="Fill-188" fill="#D1D3D4" mask="url(#mask-5)"></path>
<path d="M225.108509,82.5359383 C226.514036,84.42 226.947069,86.4602314 226.081003,87.0895373 C225.220334,87.7146015 223.400668,86.708946 222.011337,84.8468638 C220.622005,82.9847815 220.176247,80.9538046 221.02072,80.3071465 C221.870591,79.6558612 223.702982,80.6522622 225.108509,82.5359383" id="Fill-189" fill="#404041" mask="url(#mask-5)"></path>
<polygon id="Fill-190" fill="#404041" mask="url(#mask-5)" points="239.851812 76.9958869 226.081118 87.0894602 221.020835 80.3070694 234.618008 69.9813625"></polygon>
<path d="M232.492404,77.0267738 C234.14626,79.2436118 234.637134,81.6555656 233.596388,82.409036 C232.562969,83.1567224 230.408213,81.9860283 228.776337,79.7992674 C227.144846,77.6125064 226.636234,75.2136632 227.647674,74.4358997 C228.66644,73.6523522 230.838548,74.8099357 232.492404,77.0267738" id="Fill-191" fill="#D1D3D4" mask="url(#mask-5)"></path>
<polygon id="Fill-192" fill="#D1D3D4" mask="url(#mask-5)" points="247.760668 72.0926221 233.596272 82.4090746 227.647558 74.4359383 241.570566 63.795964"></polygon>
<path d="M242.069422,69.8814139 C244.567365,73.2292288 245.273406,76.8839846 243.662738,78.0326992 C242.070578,79.1683033 238.808368,77.4207455 236.360938,74.1404113 C233.913895,70.8600771 233.167365,67.2357841 234.709781,66.0326992 C236.269165,64.8157326 239.571478,66.5332134 242.069422,69.8814139" id="Fill-193" fill="#404041" mask="url(#mask-5)"></path>
<polygon id="Fill-194" fill="#404041" mask="url(#mask-5)" points="261.390116 65.3885861 243.662738 78.032545 234.709781 66.032545 251.878419 52.6401285"></polygon>
<path d="M262.146825,54.9014267 C265.382429,59.2379306 266.171761,64.0487275 263.939884,65.6254627 C261.740398,67.1790617 257.425874,64.998856 254.274717,60.7749486 C251.12356,56.5510411 250.261735,51.7942288 252.377931,50.128419 C254.524589,48.4383162 258.911221,50.5649229 262.146825,54.9014267" id="Fill-195" fill="#BCBEC0" mask="url(#mask-5)"></path>
<polygon id="Fill-196" fill="#BCBEC0" mask="url(#mask-5)" points="269.982031 61.3565167 263.94 65.6251542 252.377661 50.1284961 258.190257 45.5525321"></polygon>
<path d="M268.234974,50.3590874 C271.535746,54.7827378 272.303483,59.7165424 269.982147,61.3565167 C267.694743,62.9725835 263.260296,60.7742545 260.047442,56.4678278 C256.834589,52.161401 255.990116,47.2846658 258.190373,45.5525321 C260.423792,43.7941774 264.934589,45.935437 268.234974,50.3590874" id="Fill-197" fill="#D1D3D4" mask="url(#mask-5)"></path>
<path d="M267.001542,51.2794087 C269.308997,54.3723393 270.200514,57.5832648 267.608483,59.4445758 C266.351414,60.3472751 263.504113,58.613599 261.239846,55.5781234 C258.975193,52.5430334 258.123779,49.3197686 259.347301,48.3719537 C261.842931,46.4381491 264.693702,48.1864781 267.001542,51.2794087" id="Fill-198" fill="#E6F1FF" mask="url(#mask-5)"></path>
<line x1="243.506028" y1="84.6450771" x2="215.971581" y2="156.751889" id="Stroke-199" stroke="#939598" stroke-width="1.54241645" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-5)"></line>
<path d="M211.085707,66.955874 C211.399589,66.7248972 211.479409,66.2833805 211.241491,65.9748972 C210.833907,65.4454627 210.011028,64.9017609 208.482879,65.6386504 C206.618098,66.5386504 206.673625,69.8355656 208.267326,70.8828663 C208.69072,71.1605013 209.257172,70.870527 209.31964,70.3680848 C209.372853,69.9396787 209.483136,69.3697558 209.707558,68.7119152 C209.990977,67.8817095 210.630694,67.2901928 211.085707,66.955874" id="Fill-200" fill="#E8B182" mask="url(#mask-5)"></path>
<path d="M182.763239,35.3483676 C181.265167,52.2871851 162.079434,65.6094216 157.212339,65.6094216 C152.34563,65.6094216 133.156812,52.2871851 131.661825,35.3483676 C131.618638,34.7957969 131.57545,34.2432262 131.57545,33.6906555 C131.57545,25.4772879 138.282648,18.7966967 146.531877,18.7966967 C150.717609,18.7966967 154.521594,20.4972108 157.212339,23.3067224 C159.90347,20.4972108 163.707455,18.7966967 167.893188,18.7966967 C176.138946,18.7966967 182.846144,25.4772879 182.846144,33.6906555 C182.846144,34.2432262 182.803342,34.7957969 182.763239,35.3483676" id="Fill-201" fill="#FF6680" mask="url(#mask-5)"></path>
<path d="M148.491362,18.9225578 C143.325424,18.0117609 133.958329,18.5003213 134.150746,20.7429949 C134.25563,21.9688303 136.951774,20.3053342 137.161928,20.795437 C137.714113,22.0833548 131.419126,25.2776992 131.033907,26.906491 C130.48982,29.2054627 133.33365,25.9590617 132.411285,28.7789846 C131.489306,31.5989075 148.491362,18.9225578 148.491362,18.9225578" id="Fill-202" fill="#FF6680" mask="url(#mask-5)"></path>
<path d="M132.434537,21.9337789 C131.66063,22.1701542 131.786722,23.2644987 132.434537,23.2467609 C133.082352,23.2294087 133.365771,23.0875064 133.415129,22.4416195 C133.461015,21.8427763 133.065,21.7409769 132.434537,21.9337789" id="Fill-203" fill="#FF6680" mask="url(#mask-5)"></path>
<path d="M133.418715,47.2691645 C135.082211,50.2668509 137.617172,53.3620951 138.510231,54.622635 C139.40329,55.8835604 138.352519,56.4611954 136.98671,54.622635 C135.621285,52.7844602 133.152648,49.4752057 132.364473,47.8467995 C131.576684,46.2183933 132.811003,46.1736632 133.418715,47.2691645" id="Fill-204" fill="#FF6680" mask="url(#mask-5)"></path>
<path d="M180.468817,43.9785347 C181.681928,40.7541131 184.476401,37.6565553 184.47101,30.7758355 C184.469846,29.1231362 183.770746,28.6573265 183.648123,29.4277635 C183.59144,29.7836761 183.112519,31.2273779 182.846452,31.196144 C182.010077,31.0970437 182.790154,25.6804627 181.792211,24.6825193 C180.794267,23.6845758 181.314062,26.8160668 180.468817,25.6399743 C179.623573,24.4642674 178.378072,29.1879177 178.378072,29.1879177 L180.468817,43.9785347 Z" id="Fill-205" fill="#FF6680" mask="url(#mask-5)"></path>
<path d="M203.369692,75.160874 C203.369692,75.160874 197.381645,74.6356812 194.477275,79.7561183 C199.167763,74.5304113 200.218149,80.0422365 206.136015,84.6451928 C209.921877,87.5896658 203.369692,75.160874 203.369692,75.160874" id="Fill-206" fill="#FFBF00" mask="url(#mask-5)"></path>
<path d="M202.540488,75.9953599 C202.540488,75.9953599 203.824936,90.9537147 201.583805,100.583792 C201.583805,100.583792 205.345758,102.184049 208.112082,101.274023 L209.228406,82.7962596 C209.228406,82.7962596 205.913753,76.7947172 202.540488,75.9953599" id="Fill-207" fill="#FFBF00" mask="url(#mask-5)"></path>
<path d="M207.781928,70.5385219 C207.781928,70.5385219 209.927044,78.6601157 213.417532,70.4725835 C220.593239,68.881581 221.800566,63.5914781 221.800566,63.5914781 C221.800566,63.5914781 223.600951,68.135437 226.113548,68.6278535 C226.113548,68.6278535 227.847224,61.083509 221.501722,60.6971337 C215.678715,60.3423779 207.781928,70.5385219 207.781928,70.5385219" id="Fill-208" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M211.056902,80.6199486 C209.559602,75.9953985 209.911272,63.5303599 218.462429,61.8873008 C228.443406,59.9700771 225.625026,70.6582519 225.625026,70.6582519 C225.625026,70.6582519 230.436208,58.1947558 218.610887,55.7388432 C210.781967,54.1127506 206.907802,58.2429563 204.490064,63.7960411 C200.340578,73.3281748 204.031967,77.2007969 204.031967,77.2007969 L207.292249,78.5353728 L211.056902,80.6199486 Z" id="Fill-209" fill="#FFBF00" mask="url(#mask-5)"></path>
<path d="M225.249717,71.9077249 C225.330694,71.5683933 227.810129,61.2611954 218.324267,63.1467995 C212.023496,64.4000129 210.161028,72.3241774 210.546632,77.9192931 C209.74072,72.3396015 211.429666,63.2354884 218.463085,61.885874 C228.280566,60.0002699 225.712442,70.3109383 225.627609,70.6506555 C225.677738,70.5619666 225.311414,71.7878021 225.249717,71.9077249" id="Fill-210" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M201.58018,97.6101285 C205.737763,98.6250386 207.025805,100.027349 206.925934,102.628249 C208.114746,98.5928765 208.672704,96.8016192 208.672704,96.8016192 C208.672704,96.8016192 211.573882,88.6633419 211.37838,87.7255527 C211.183265,86.7869923 210.051131,88.6999743 206.342776,89.0905913 C202.765913,89.4669409 200.172725,87.1772237 198.616812,85.6074293 C195.802674,82.769383 191.45383,90.3214396 191.45383,90.3214396 C193.265398,93.2281234 197.777352,96.6819794 201.58018,97.6101285 Z" id="Fill-211" fill-opacity="0.25" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M217.879357,82.0791517 C217.879357,82.0791517 212.909692,84.8254242 210.303393,79.2773522 C208.89054,76.2707969 202.99581,75.5342931 201.421003,75.6534447 C201.421003,75.6534447 207.32653,79.0128278 207.431799,84.7903342 C207.536684,90.5686118 219.96856,86.6377635 217.879357,82.0791517" id="Fill-212" fill="#FFBF00" mask="url(#mask-5)"></path>
<path d="M191.704049,83.4901542 C186.862404,90.1032648 196.593509,96.4202314 205.360604,97.0090488 C209.980527,97.3186889 217.241452,94.7898972 219.34338,91.2762725 C221.291067,88.0210026 215.410604,86.0952956 213.838111,86.7677892 C211.736954,87.6666324 211.827571,89.7099486 205.679113,89.7099486 C200.626542,89.7099486 199.254949,86.5514653 196.812147,82.7960668" id="Fill-213" fill="#4D97FF" mask="url(#mask-5)"></path>
<path d="M219.356067,88.4450129 C220.219434,86.5470694 220.432674,85.6570951 221.227789,84.8276607 C222.822648,83.1645501 221.508123,82.8834447 220.866478,83.3592802 C219.776761,84.1667352 219.764036,85.5182776 219.273933,85.536401 C218.314936,85.571491 218.579075,85.3559383 218.561722,84.6101799 C218.541285,83.7070951 218.841285,82.8101799 219.104653,82.6000257 C219.902468,81.9641645 220.142314,82.1207198 220.667121,81.4563239 C221.132545,80.867892 220.730746,79.9952699 219.937943,80.7495116 C219.501825,81.1644216 219.118535,80.94 218.407095,81.5835733 C217.624319,82.2911568 216.847712,83.1186632 216.829203,83.2833162 C216.792956,83.6122365 216.068792,84.4501542 215.331902,84.7867866 C214.74617,85.0540103 214.210566,84.8646787 213.978046,85.1199486 C213.397326,85.758509 214.211722,87.369563 213.762108,88.4828021 C212.680874,91.1581234 217.74617,91.9856298 219.356067,88.4450129" id="Fill-214" fill="#ECC293" mask="url(#mask-5)"></path>
<path d="M216.179344,83.0552314 C216.369833,82.8350514 217.008008,82.6187275 217.399781,82.911401 C217.704023,83.1392931 218.531915,84.7993188 219.122275,85.5308098 C219.976388,86.5881362 218.113149,86.6563882 217.665463,85.6588303 C217.410193,85.0904499 217.056208,84.1603728 216.576131,84.1858226 C216.09644,84.2112725 215.721247,83.5846658 216.179344,83.0552314" id="Fill-215" fill="#E8B182" mask="url(#mask-5)"></path>
<path d="M213.978123,85.1199486 C214.140463,84.9321594 214.682622,84.3047815 215.016555,84.5542674 C215.276452,84.7486118 216.541234,86.3669923 216.605244,87.1817738 C216.649203,87.7459126 215.958201,87.8924422 215.453059,88.1103085 C214.797918,88.3925707 214.467069,87.8064524 215.32581,87.1004113 C214.769769,86.3874293 214.726195,86.062365 214.316684,86.0843445 C213.907172,86.1059383 213.587506,85.571491 213.978123,85.1199486" id="Fill-216" fill="#E8B182" mask="url(#mask-5)"></path>
<path d="M214.936504,84.0158483 C215.098843,83.8284447 215.637532,83.3067224 215.971851,83.5565938 C216.231362,83.7509383 218.037918,85.9095501 218.101542,86.723946 C218.145887,87.2880848 217.454499,87.435 216.949357,87.6528663 C216.294602,87.9351285 215.963368,87.3490103 216.822494,86.6425835 C216.266067,85.9299871 215.68419,84.9586504 215.275064,84.9802442 C214.865553,85.0022237 214.545887,84.4677763 214.936504,84.0158483" id="Fill-217" fill="#E8B182" mask="url(#mask-5)"></path>
<path d="M222.322674,82.1808355 C222.423702,82.7276221 222.062391,83.2528149 221.515604,83.3538432 C220.968817,83.4552571 220.443625,83.0935604 220.342596,82.5467738 C220.241568,81.9999871 220.602879,81.4747943 221.149666,81.3733805 C221.696452,81.2727378 222.221645,81.6336632 222.322674,82.1808355" id="Fill-218" fill="#D1D3D4" mask="url(#mask-5)"></path>
<polygon id="Fill-219" fill="#D1D3D4" mask="url(#mask-5)" points="221.57329 83.3410411 220.985244 83.4497815 220.619692 81.4727892 221.207738 81.3640488"></polygon>
<path d="M221.833303,82.2712211 C221.934332,82.8180077 221.573021,83.3432005 221.026234,83.4442288 C220.479447,83.5456427 219.953869,83.183946 219.853226,82.6371594 C219.752198,82.0903728 220.113509,81.5651799 220.660296,81.4641517 C221.206697,81.3631234 221.732275,81.7244344 221.833303,82.2712211" id="Fill-220" fill="#BCBEC0" mask="url(#mask-5)"></path>
<path d="M142.957134,99.836144 C142.957134,99.836144 142.03901,98.0149357 140.567545,99.6391003 C139.09608,101.26365 140.662404,107.687429 143.082841,105.103111" id="Fill-221" fill="#60412C" mask="url(#mask-5)"></path>
<path d="M160.054396,101.612429 C160.054396,101.612429 161.226632,100.135566 162.877789,101.760116 C164.528946,103.384666 162.771362,109.808059 160.054396,107.22374" id="Fill-222" fill="#60412C" mask="url(#mask-5)"></path>
<path d="M111.997172,171.457982 C109.357712,168.904512 134.054499,150.548985 139.635347,143.210938 C139.635347,143.210938 147.099486,144.759139 152.606298,144.536645 C157.528149,144.337288 161.583162,142.617879 161.583162,142.617879 C166.82892,149.857211 181.717866,160.599756 184.540488,173.007725 L181.055398,176.598856 C179.570437,177.284846 177.535604,177.776105 176.064139,174.694357 C175.156041,172.792558 171.808997,167.218265 167.665681,163.543072 C161.947558,158.47045 154.901799,155.338188 152.363753,155.343586 C149.582776,155.34937 140.335219,156.847057 132.574165,162.088573 C128.11928,165.097057 124.191131,171.623792 122.163625,173.99063 C120.873779,175.497185 119.370308,176.860681 117.008483,174.717494 L111.997172,171.457982 Z" id="Fill-223" fill="#4D97FF" mask="url(#mask-5)"></path>
<path d="M138.392005,140.649177 C138.206144,141.485553 137.910771,143.157532 138.766041,143.211131 C141.908329,143.406632 146.841748,147.985681 153.703959,147.147763 C159.548175,146.433625 161.631208,142.631568 165.522725,142.967815 C166.324781,143.036838 165.61874,141.092622 165.511542,140.294807 C164.98018,136.344293 161.126452,125.275141 161.980566,123.989152 C162.732494,122.856632 167.234422,119.637609 163.517969,137.265501 C161.028895,149.070771 169.417326,143.793779 170.692134,140.268586 C174.18455,130.611902 175.536864,126.603162 170.692134,119.14365 C167.415656,114.098021 157.137378,113.742108 155.149589,112.102519 C153.162185,110.462931 147.272468,112.102519 147.272468,112.102519 C139.74856,111.938252 129.297918,112.748406 124.30126,116.879769 C120.760257,119.808046 119.074781,122.762545 123.756401,132.120386 C126.172596,136.950077 131.229794,135.628226 131.950488,131.592494 C132.671183,127.556761 126.777224,128.490308 130.114627,124.422956 C131.652031,122.549306 138.134807,117.677198 140.556015,119.282082 C141.715913,120.050977 139.216427,136.938895 138.392005,140.649177" id="Fill-224" fill="#414042" mask="url(#mask-5)"></path>
<path d="M115.818548,157.984434 L115.818548,160.406799 C115.818548,161.328393 116.593612,162.074923 117.54991,162.074923 L187.663149,162.074923 C188.619062,162.074923 189.394512,161.328393 189.394512,160.406799 L189.394512,157.984434 L115.818548,157.984434 Z" id="Fill-225" fill="#4E5568" mask="url(#mask-5)"></path>
<polygon id="Fill-226" fill="#575E75" mask="url(#mask-5)" points="125.668959 149.08126 115.818702 157.984473 189.39428 157.984473 179.544023 149.08126"></polygon>
<path d="M151.958599,155.836504 L148.388676,155.836504 C148.144589,155.836504 147.956028,155.609383 147.986877,155.352185 L148.693689,149.457069 C148.719524,149.242288 148.891504,149.081105 149.095874,149.081105 L151.958599,149.081105 C152.182249,149.081105 152.363869,149.273907 152.363869,149.51144 L152.363869,155.406941 C152.363869,155.644087 152.182249,155.836504 151.958599,155.836504" id="Fill-227" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M151.958599,155.836504 L148.388676,155.836504 C148.144589,155.836504 147.956028,155.609383 147.986877,155.352185 L148.693689,149.457069 C148.719524,149.242288 148.891504,149.081105 149.095874,149.081105 L151.958599,149.081105 C152.182249,149.081105 152.363869,149.273907 152.363869,149.51144 L152.363869,155.406941 C152.363869,155.644087 152.182249,155.836504 151.958599,155.836504 Z" id="Stroke-228" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M147.452969,155.836504 L143.989087,155.836504 C143.724563,155.836504 143.537931,155.567738 143.608111,155.309383 L145.181761,149.413882 C145.21608,149.222622 145.376105,149.081105 145.563123,149.081105 L148.319807,149.081105 C148.565437,149.081105 148.747057,149.31671 148.706568,149.560411 L147.83973,155.455913 C147.827005,155.667995 147.658111,155.836504 147.452969,155.836504" id="Fill-229" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M147.452969,155.836504 L143.989087,155.836504 C143.724563,155.836504 143.537931,155.567738 143.608111,155.309383 L145.181761,149.413882 C145.21608,149.222622 145.376105,149.081105 145.563123,149.081105 L148.319807,149.081105 C148.565437,149.081105 148.747057,149.31671 148.706568,149.560411 L147.83973,155.455913 C147.827005,155.667995 147.658111,155.836504 147.452969,155.836504 Z" id="Stroke-230" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M142.947147,155.836504 L139.589692,155.836504 C139.30473,155.836504 139.11964,155.526093 139.229152,155.266195 L141.670026,149.370694 C141.712057,149.202571 141.860129,149.081105 142.030566,149.081105 L144.680823,149.081105 C144.948046,149.081105 145.130437,149.359512 145.04946,149.609383 L143.31617,155.504884 C143.290334,155.691902 143.133779,155.836504 142.947147,155.836504" id="Fill-231" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M142.947147,155.836504 L139.589692,155.836504 C139.30473,155.836504 139.11964,155.526093 139.229152,155.266195 L141.670026,149.370694 C141.712057,149.202571 141.860129,149.081105 142.030566,149.081105 L144.680823,149.081105 C144.948046,149.081105 145.130437,149.359512 145.04946,149.609383 L143.31617,155.504884 C143.290334,155.691902 143.133779,155.836504 142.947147,155.836504 Z" id="Stroke-232" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M138.441555,155.836504 L135.190141,155.836504 C134.884743,155.836504 134.701581,155.484833 134.850424,155.223008 L138.158136,149.327506 C138.20865,149.182905 138.344383,149.081105 138.497853,149.081105 L141.042069,149.081105 C141.331272,149.081105 141.513663,149.401928 141.392584,149.658355 L138.792069,155.553856 C138.753895,155.71581 138.609679,155.836504 138.441555,155.836504" id="Fill-233" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M138.441555,155.836504 L135.190141,155.836504 C134.884743,155.836504 134.701581,155.484833 134.850424,155.223008 L138.158136,149.327506 C138.20865,149.182905 138.344383,149.081105 138.497853,149.081105 L141.042069,149.081105 C141.331272,149.081105 141.513663,149.401928 141.392584,149.658355 L138.792069,155.553856 C138.753895,155.71581 138.609679,155.836504 138.441555,155.836504 Z" id="Stroke-234" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M133.935925,155.836504 L130.790938,155.836504 C130.465103,155.836504 130.283483,155.443188 130.472044,155.17982 L134.646208,149.284704 C134.705206,149.162853 134.828599,149.081105 134.965103,149.081105 L137.403278,149.081105 C137.714075,149.081105 137.896851,149.445116 137.735668,149.707326 L134.267931,155.602828 C134.217031,155.739717 134.085154,155.836504 133.935925,155.836504" id="Fill-235" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M133.935925,155.836504 L130.790938,155.836504 C130.465103,155.836504 130.283483,155.443188 130.472044,155.17982 L134.646208,149.284704 C134.705206,149.162853 134.828599,149.081105 134.965103,149.081105 L137.403278,149.081105 C137.714075,149.081105 137.896851,149.445116 137.735668,149.707326 L134.267931,155.602828 C134.217031,155.739717 134.085154,155.836504 133.935925,155.836504 Z" id="Stroke-236" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M129.430296,155.836504 L126.39135,155.836504 C126.045077,155.836504 125.865386,155.401542 126.093278,155.136632 L131.13428,149.241131 C131.201375,149.143188 131.312815,149.081105 131.432738,149.081105 L133.764486,149.081105 C134.097262,149.081105 134.280424,149.487918 134.078368,149.756298 L129.744177,155.651799 C129.680167,155.763625 129.561015,155.836504 129.430296,155.836504" id="Fill-237" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M129.430296,155.836504 L126.39135,155.836504 C126.045077,155.836504 125.865386,155.401542 126.093278,155.136632 L131.13428,149.241131 C131.201375,149.143188 131.312815,149.081105 131.432738,149.081105 L133.764486,149.081105 C134.097262,149.081105 134.280424,149.487918 134.078368,149.756298 L129.744177,155.651799 C129.680167,155.763625 129.561015,155.836504 129.430296,155.836504 Z" id="Stroke-238" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M124.924512,155.836504 L121.991992,155.836504 C121.624897,155.836504 121.447134,155.360283 121.714357,155.093445 L127.622584,149.197943 C127.697776,149.123136 127.796877,149.081105 127.900219,149.081105 L130.12554,149.081105 C130.480296,149.081105 130.663458,149.530334 130.421298,149.80527 L125.22027,155.700386 C125.143535,155.787532 125.036722,155.836504 124.924512,155.836504" id="Fill-239" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M124.924512,155.836504 L121.991992,155.836504 C121.624897,155.836504 121.447134,155.360283 121.714357,155.093445 L127.622584,149.197943 C127.697776,149.123136 127.796877,149.081105 127.900219,149.081105 L130.12554,149.081105 C130.480296,149.081105 130.663458,149.530334 130.421298,149.80527 L125.22027,155.700386 C125.143535,155.787532 125.036722,155.836504 124.924512,155.836504 Z" id="Stroke-240" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M152.769332,155.836504 L156.339254,155.836504 C156.583342,155.836504 156.771902,155.609383 156.741054,155.352185 L156.034242,149.457069 C156.008406,149.242288 155.836041,149.081105 155.632057,149.081105 L152.769332,149.081105 C152.545296,149.081105 152.364062,149.273907 152.364062,149.51144 L152.364062,155.406941 C152.364062,155.644087 152.545296,155.836504 152.769332,155.836504" id="Fill-241" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M152.769332,155.836504 L156.339254,155.836504 C156.583342,155.836504 156.771902,155.609383 156.741054,155.352185 L156.034242,149.457069 C156.008406,149.242288 155.836041,149.081105 155.632057,149.081105 L152.769332,149.081105 C152.545296,149.081105 152.364062,149.273907 152.364062,149.51144 L152.364062,155.406941 C152.364062,155.644087 152.545296,155.836504 152.769332,155.836504 Z" id="Stroke-242" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M157.274961,155.836504 L160.76892,155.836504 C161.03383,155.836504 161.220463,155.566967 161.149126,155.308612 L159.545784,149.413496 C159.511851,149.222237 159.352211,149.081105 159.165193,149.081105 L156.408123,149.081105 C156.162494,149.081105 155.980874,149.31671 156.021362,149.560411 L156.888201,155.455913 C156.900925,155.667995 157.06982,155.836504 157.274961,155.836504" id="Fill-243" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M157.274961,155.836504 L160.76892,155.836504 C161.03383,155.836504 161.220463,155.566967 161.149126,155.308612 L159.545784,149.413496 C159.511851,149.222237 159.352211,149.081105 159.165193,149.081105 L156.408123,149.081105 C156.162494,149.081105 155.980874,149.31671 156.021362,149.560411 L156.888201,155.455913 C156.900925,155.667995 157.06982,155.836504 157.274961,155.836504 Z" id="Stroke-244" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M161.780553,155.836504 L165.198162,155.836504 C165.48428,155.836504 165.668599,155.524165 165.557159,155.264653 L163.057674,149.369537 C163.015643,149.202185 162.867956,149.081105 162.69829,149.081105 L160.046877,149.081105 C159.779653,149.081105 159.597648,149.359512 159.678239,149.609383 L161.411915,155.504884 C161.437365,155.691902 161.594306,155.836504 161.780553,155.836504" id="Fill-245" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M161.780553,155.836504 L165.198162,155.836504 C165.48428,155.836504 165.668599,155.524165 165.557159,155.264653 L163.057674,149.369537 C163.015643,149.202185 162.867956,149.081105 162.69829,149.081105 L160.046877,149.081105 C159.779653,149.081105 159.597648,149.359512 159.678239,149.609383 L161.411915,155.504884 C161.437365,155.691902 161.594306,155.836504 161.780553,155.836504 Z" id="Stroke-246" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M166.286375,155.836504 L169.627635,155.836504 C169.934576,155.836504 170.117352,155.481362 169.965424,155.220694 L166.569023,149.325578 C166.518895,149.181748 166.384319,149.081105 166.23162,149.081105 L163.685861,149.081105 C163.396658,149.081105 163.214267,149.401928 163.335347,149.658355 L165.935861,155.553856 C165.974036,155.71581 166.118252,155.836504 166.286375,155.836504" id="Fill-247" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M166.286375,155.836504 L169.627635,155.836504 C169.934576,155.836504 170.117352,155.481362 169.965424,155.220694 L166.569023,149.325578 C166.518895,149.181748 166.384319,149.081105 166.23162,149.081105 L163.685861,149.081105 C163.396658,149.081105 163.214267,149.401928 163.335347,149.658355 L165.935861,155.553856 C165.974036,155.71581 166.118252,155.836504 166.286375,155.836504 Z" id="Stroke-248" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M170.792005,155.836504 L174.057301,155.836504 C174.385064,155.836504 174.565527,155.438946 174.373111,155.176735 L170.080951,149.28162 C170.022339,149.161697 169.900103,149.081105 169.764756,149.081105 L167.324653,149.081105 C167.013856,149.081105 166.83108,149.445116 166.992262,149.707326 L170.46,155.602828 C170.5109,155.739717 170.642776,155.836504 170.792005,155.836504" id="Fill-249" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M170.792005,155.836504 L174.057301,155.836504 C174.385064,155.836504 174.565527,155.438946 174.373111,155.176735 L170.080951,149.28162 C170.022339,149.161697 169.900103,149.081105 169.764756,149.081105 L167.324653,149.081105 C167.013856,149.081105 166.83108,149.445116 166.992262,149.707326 L170.46,155.602828 C170.5109,155.739717 170.642776,155.836504 170.792005,155.836504 Z" id="Stroke-250" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M175.297596,155.836504 L178.486542,155.836504 C178.835514,155.836504 179.014049,155.396144 178.781144,155.133162 L173.592455,149.237661 C173.526131,149.141645 173.416234,149.081105 173.297853,149.081105 L170.963406,149.081105 C170.63063,149.081105 170.447468,149.487918 170.649524,149.756298 L174.983715,155.651799 C175.047725,155.763625 175.166877,155.836504 175.297596,155.836504" id="Fill-251" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M175.297596,155.836504 L178.486542,155.836504 C178.835514,155.836504 179.014049,155.396144 178.781144,155.133162 L173.592455,149.237661 C173.526131,149.141645 173.416234,149.081105 173.297853,149.081105 L170.963406,149.081105 C170.63063,149.081105 170.447468,149.487918 170.649524,149.756298 L174.983715,155.651799 C175.047725,155.763625 175.166877,155.836504 175.297596,155.836504 Z" id="Stroke-252" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M179.803226,155.836504 L182.916208,155.836504 C183.286003,155.836504 183.462224,155.353728 183.189216,155.089203 L177.104383,149.193702 C177.029576,149.121594 176.932404,149.081105 176.83099,149.081105 L174.602198,149.081105 C174.247828,149.081105 174.06428,149.530334 174.306825,149.80527 L179.507468,155.700386 C179.584203,155.787532 179.691015,155.836504 179.803226,155.836504" id="Fill-253" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M179.803226,155.836504 L182.916208,155.836504 C183.286003,155.836504 183.462224,155.353728 183.189216,155.089203 L177.104383,149.193702 C177.029576,149.121594 176.932404,149.081105 176.83099,149.081105 L174.602198,149.081105 C174.247828,149.081105 174.06428,149.530334 174.306825,149.80527 L179.507468,155.700386 C179.584203,155.787532 179.691015,155.836504 179.803226,155.836504 Z" id="Stroke-254" stroke="#575E75" stroke-width="0.5" stroke-linecap="round" mask="url(#mask-5)"></path>
<path d="M124.785154,154.927095 L128.181555,151.101131 C128.263689,151.008972 128.381684,150.955758 128.505848,150.955758 L129.623715,150.955758 C129.988111,150.955758 130.189396,151.375296 129.959961,151.656401 L126.840039,155.481979 C126.757905,155.582622 126.634126,155.64162 126.503792,155.64162 L125.109833,155.64162 C124.736954,155.64162 124.538753,155.20473 124.785154,154.927095" id="Fill-255" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M129.458368,154.965848 L132.137545,151.139884 C132.218522,151.024589 132.35117,150.955951 132.493072,150.955951 L133.707725,150.955951 C134.047057,150.955951 134.254512,151.326902 134.07482,151.613406 L131.67135,155.43937 C131.592301,155.565077 131.453483,155.641427 131.304254,155.641427 L129.813509,155.641427 C129.464152,155.641427 129.258625,155.25081 129.458368,154.965848" id="Fill-256" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M138.002661,155.04455 L139.622969,151.218972 C139.69045,151.059332 139.847776,150.955604 140.021684,150.955604 L141.345848,150.955604 C141.64392,150.955604 141.852532,151.247892 141.754203,151.527455 L140.410373,155.353033 C140.349447,155.525784 140.185951,155.641465 140.001632,155.641465 L138.401375,155.641465 C138.092121,155.641465 137.882352,155.327969 138.002661,155.04455" id="Fill-257" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M142.491517,155.093136 L143.59473,151.267172 C143.647943,151.082853 143.817609,150.95599 144.010797,150.95599 L145.153342,150.95599 C145.429049,150.95599 145.634576,151.208175 145.576735,151.475784 L144.749229,155.301748 C144.706812,155.499949 144.530591,155.641465 144.326221,155.641465 L142.907584,155.641465 C142.619923,155.641465 142.412082,155.367686 142.491517,155.093136" id="Fill-258" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M146.762699,155.141337 L147.397789,151.315758 C147.432494,151.107918 147.613342,150.95599 147.825039,150.95599 L148.987249,150.95599 C149.242134,150.95599 149.441877,151.17347 149.417969,151.425656 L149.059357,155.251234 C149.038149,155.472185 148.851517,155.641465 148.628252,155.641465 L147.189563,155.641465 C146.922725,155.641465 146.719126,155.403548 146.762699,155.141337" id="Fill-259" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M155.541594,155.245296 L155.237352,151.419332 C155.217686,151.16946 155.416272,150.955835 155.668843,150.955835 L156.832596,150.955835 C157.046607,150.955835 157.228612,151.111234 157.260617,151.321388 L157.840951,155.147352 C157.880283,155.407635 157.677841,155.641311 157.412931,155.641311 L155.973085,155.641311 C155.747121,155.641311 155.559332,155.468946 155.541594,155.245296" id="Fill-260" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M159.996208,155.305527 L159.131298,151.479949 C159.070758,151.211183 159.276285,150.955913 159.55392,150.955913 L160.694152,150.955913 C160.885797,150.955913 161.054692,151.080848 161.109062,151.263625 L162.250064,155.089203 C162.332198,155.36491 162.124357,155.641388 161.835154,155.641388 L160.418445,155.641388 C160.216003,155.641388 160.040553,155.502185 159.996208,155.305527" id="Fill-261" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M169.007815,155.410951 L166.989177,151.585373 C166.838021,151.298869 167.047018,150.955681 167.372468,150.955681 L168.415141,150.955681 C168.567841,150.955681 168.708972,151.035116 168.787249,151.16545 L171.081979,154.991414 C171.253959,155.277918 171.046118,155.641542 170.710257,155.641542 L169.391105,155.641542 C169.230308,155.641542 169.082622,155.552468 169.007815,155.410951" id="Fill-262" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M173.559563,155.453907 L170.931671,151.627943 C170.735784,151.342596 170.941311,150.955835 171.289126,150.955835 L172.258535,150.955835 C172.394653,150.955835 172.522288,151.019075 172.604036,151.126658 L175.508406,154.952622 C175.723188,155.236041 175.519974,155.641311 175.162905,155.641311 L173.917018,155.641311 C173.773959,155.641311 173.640154,155.571131 173.559563,155.453907" id="Fill-263" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M177.960694,155.485141 L174.781003,151.659563 C174.548098,151.379229 174.748997,150.955835 175.114936,150.955835 L176.007995,150.955835 C176.130617,150.955835 176.247841,151.007892 176.329974,151.098509 L179.785373,154.924087 C180.03563,155.201337 179.837815,155.641311 179.463393,155.641311 L178.294242,155.641311 C178.165064,155.641311 178.042828,155.584242 177.960694,155.485141" id="Fill-264" fill="#4E5568" mask="url(#mask-5)"></path>
<path d="M114.059807,173.056889 C114.059807,173.056889 117.369833,174.821414 118.490013,175.303033 C119.209936,175.612674 119.853895,175.303033 119.853895,175.303033 C122.826902,173.412416 121.027288,169.84018 116.539627,168.884653 C111.412249,167.793008 114.059807,173.056889 114.059807,173.056889" id="Fill-265" fill="#3373CC" mask="url(#mask-5)"></path>
<path d="M184.107571,175.961337 C182.948445,177.270077 178.577237,177.687686 177.56117,175.959023 C176.181864,173.613393 177.36644,171.596684 180.872352,171.188329 C185.09973,170.695913 185.266697,174.652982 184.107571,175.961337" id="Fill-266" fill="#3373CC" mask="url(#mask-5)"></path>
<path d="M93.8925964,170.998188 C95.1473522,169.258728 97.587455,167.872866 100.956864,169.035463 C104.326272,170.198445 106.808021,171.920167 108.623445,171.983406 C109.433213,172.011555 112.592853,170.179165 113.692211,169.91464 C114.862905,169.633535 115.058021,169.571067 116.211748,169.91464 C118.440925,170.579036 120.036941,172.031992 120.245938,172.773123 C120.927686,175.193946 118.292853,177.364126 116.929357,180.241504 L107.01856,177.375308 L93.8925964,170.998188 Z" id="Fill-267" fill="#414042" mask="url(#mask-5)"></path>
<path d="M95.9142031,169.354473 C91.7388817,171.041105 92.3427378,177.458715 98.2652314,180.448689 C104.643895,183.668869 112.496337,181.623239 114.778342,181.746247 C117.123972,181.871954 119.350835,176.221697 115.468188,175.727738 C104.504306,174.333779 100.726928,167.410643 95.9142031,169.354473" id="Fill-268" fill="#C49A6C" mask="url(#mask-5)"></path>
<path d="M94.7605913,171.327301 C94.3757584,171.860591 94.157892,172.52036 94.1262725,173.278072 C94.0491517,175.117404 95.1932391,177.889126 98.6713882,179.644781 C103.313676,181.988483 108.903393,181.386555 112.242725,181.026787 C113.346324,180.908021 114.217789,180.814319 114.826658,180.847095 C115.511105,180.883728 116.546452,179.617789 116.667532,178.273188 C116.80018,176.804807 115.712391,176.666761 115.354936,176.62126 C109.647224,175.895553 105.884884,173.750823 102.861748,172.027943 C100.07383,170.439254 98.2321851,169.38964 96.2517224,170.189769 C95.6204884,170.444653 95.1184319,170.831414 94.7605913,171.327301" id="Fill-269" fill="#B58D66" mask="url(#mask-5)"></path>
<path d="M190.155039,162.202326 C188.090514,161.768522 185.707095,162.487288 184.93126,165.887545 C184.155039,169.287416 185.188843,172.645643 183.451697,172.406954 C182.794242,172.316722 181.763522,172.12045 181.014293,171.971607 C180.39964,171.84937 179.858638,172.09153 179.576761,172.605154 C178.924704,173.791658 177.981517,176.01081 178.967121,177.574434 C181.558766,181.686131 181.453882,180.66428 183.099254,184.383817 L188.641542,176.893458 L190.155039,162.202326 Z" id="Fill-270" fill="#414042" mask="url(#mask-5)"></path>
<path d="M187.7759,162.410206 C191.294152,160.644139 196.229499,166.112391 195.638753,172.829229 C195.002506,180.062776 189.307134,184.265861 188.237468,186.048509 C187.138496,187.880514 181.379113,185.104936 182.965103,181.848895 C187.443895,172.654936 183.720501,164.44581 187.7759,162.410206" id="Fill-271" fill="#C49A6C" mask="url(#mask-5)"></path>
<path d="M188.285398,163.312828 L188.285398,163.312828 C186.616504,164.150746 186.5309,166.333265 186.400951,169.636735 C186.260206,173.219383 186.084756,177.678123 183.753393,182.463856 C183.607249,182.763856 183.163033,183.676195 184.4309,184.726967 C185.592339,185.689434 187.157121,185.915013 187.477943,185.380566 C187.76329,184.905116 188.286555,184.334422 188.949023,183.611799 C190.95455,181.425039 194.310463,177.76527 194.773959,172.499846 C195.120617,168.555501 193.442082,165.541234 191.898895,164.158843 C191.263033,163.589306 190.612519,163.234165 189.979357,163.101131 C189.39054,162.977738 188.817147,163.046375 188.285398,163.312828" id="Fill-272" fill="#B58D66" mask="url(#mask-5)"></path>
<path d="M151.318997,117.642494 C153.317198,117.642494 155.15653,116.521157 155.149992,115.17617 C155.142648,113.70509 153.629152,114.981825 153.716684,109.42527 C153.761028,106.618458 149.433393,107.26126 149.447275,109.776555 C149.476581,115.040051 147.670411,113.135167 147.634165,115.030411 C147.608715,116.375013 149.535193,117.642494 151.318997,117.642494" id="Fill-273" fill="#60412C" mask="url(#mask-5)"></path>
<path d="M148.261465,113.767982 C148.261465,113.767982 148.219049,116.599859 151.391799,116.443303 C154.564936,116.287519 154.277661,113.786105 154.277661,113.786105 L155.149897,113.129422 C155.149897,113.129422 156.261208,117.516054 151.31892,117.642532 C146.377018,117.769396 147.383445,113.129422 147.383445,113.129422 L148.261465,113.767982 Z" id="Fill-274" fill="#6F6E70" mask="url(#mask-5)"></path>
<path d="M150.033779,91.9383722 C150.033779,91.9383722 142.594319,92.1107969 142.594319,102.024293 C142.594319,110.654113 148.484807,114.938175 151.037506,114.938175 C153.509614,114.938175 160.470925,111.232905 160.904344,104.351799 C161.696761,91.7687661 156.152931,91.9383722 150.033779,91.9383722" id="Fill-275" fill="#755135" mask="url(#mask-5)"></path>
<path d="M150.17009,107.313625 C147.382943,109.713625 155.633715,109.916452 152.846568,107.332519" id="Stroke-276" stroke="#60412C" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-5)"></path>
<path d="M142.616722,102.28874 C142.616722,102.28874 141.704769,99.0450386 142.616722,97.8269152 C142.616722,97.8269152 141.848599,95.9069923 143.734203,94.2828278 C143.734203,94.2828278 143.425334,91.811491 145.996542,91.2947815 C145.996542,91.2947815 147.159139,88.0156041 150.413638,89.3602057 C150.413638,89.3602057 151.787159,88.3765296 153.676234,88.8943959 C155.964794,89.5221594 155.899242,90.5077635 155.899242,90.5077635 C155.899242,90.5077635 157.140887,89.9632905 158.683689,91.2920823 C160.226491,92.6216452 160.054512,94.2828278 160.054512,94.2828278 C160.054512,94.2828278 161.908496,96.0913111 160.629447,98.2460668 C161.725334,99.4699743 160.963766,101.737326 160.979961,102.323445 L160.32482,102.459949 C160.106954,102.50545 159.899499,102.341183 159.894871,102.118689 C159.832018,99.0253728 158.429961,100.998895 158.432275,99.5505656 C158.436902,96.3168895 145.725848,95.5445244 145.31171,98.763162 C145.109653,100.331414 143.663638,98.902365 143.457725,102.092082 C143.442686,102.32383 143.212481,102.48 142.991915,102.409049 L142.616722,102.28874 Z" id="Fill-277" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M162.213239,140.111452 C162.375964,140.840244 163.435219,140.49937 163.513496,140.947828 C163.591388,141.396285 162.746144,141.618008 162.765424,142.041787 C162.784319,142.46518 163.367352,142.448985 163.518509,143.131118 C163.66928,143.813638 162.745758,143.87919 162.213239,143.758496 C161.68072,143.638188 161.164396,143.638188 161.164396,143.638188 L162.213239,140.111452 Z" id="Fill-278" fill="#414042" mask="url(#mask-5)"></path>
<path d="M163.84473,141.825193 C162.887275,142.373907 162.375578,140.458997 163.123265,139.797686 C163.870951,139.13599 165.479306,138.105656 167.490231,138.335476 C169.537404,138.569537 171.722237,139.911825 171.589974,141.00617 C171.458098,142.1009 170.804499,142.234704 170.804499,142.234704 C170.804499,142.234704 168.075193,139.4009 163.84473,141.825193" id="Fill-279" fill="#6F6E70" mask="url(#mask-5)"></path>
<path d="M155.830064,105.746761 C155.830064,106.135064 155.592147,106.449717 155.298702,106.449717 C155.004871,106.449717 154.766954,106.135064 154.766954,105.746761 C154.766954,105.358072 155.004871,105.043419 155.298702,105.043419 C155.592147,105.043419 155.830064,105.358072 155.830064,105.746761" id="Fill-280" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M148.370476,105.746761 C148.370476,106.135064 148.132558,106.449717 147.839113,106.449717 C147.545283,106.449717 147.307365,106.135064 147.307365,105.746761 C147.307365,105.358072 147.545283,105.043419 147.839113,105.043419 C148.132558,105.043419 148.370476,105.358072 148.370476,105.746761" id="Fill-281" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M145.980193,102.143368 C146.181478,102.395553 146.538162,102.477686 146.822738,102.325758 C147.683792,101.86419 148.922738,101.947481 148.71644,101.411105 C148.482763,100.803008 146.063869,100.776015 145.841761,101.465476 C145.752686,101.741954 145.841761,101.969846 145.980193,102.143368" id="Fill-282" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M157.036581,102.143368 C156.835296,102.395553 156.478612,102.477686 156.194036,102.325758 C155.332982,101.86419 154.094036,101.947481 154.300334,101.411105 C154.53401,100.803008 156.952905,100.776015 157.175013,101.465476 C157.264087,101.741954 157.175013,101.969846 157.036581,102.143368" id="Fill-283" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M150.187982,111.459254 C151.033612,111.90964 153.347237,111.460026 154.238368,110.716195 C155.362789,109.777635 155.195051,113.200643 152.646208,113.612082 C150.097751,114.023136 149.342352,111.009254 150.187982,111.459254" id="Fill-284" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M154.238522,110.716311 C154.238522,110.716311 153.932738,111.807956 152.378753,112.179679 C150.824769,112.551401 150.310373,111.513355 150.310373,111.513355 C150.310373,111.513355 151.328753,111.74009 152.274254,111.520296 C153.200476,111.305129 154.238522,110.716311 154.238522,110.716311" id="Fill-285" fill="#FFFFFF" mask="url(#mask-5)"></path>
<path d="M130.722108,137.497326 C127.661568,137.80928 126.082134,136.942442 125.886632,134.884859 C125.691902,132.831131 125.785219,131.668535 127.895244,130.693342 C130.215424,129.620977 132.739974,130.45581 133.860925,132.369949 C135.080977,134.453368 134.167481,137.146041 130.722108,137.497326" id="Fill-286" fill="#6F6E70" mask="url(#mask-5)"></path>
<path d="M132.422314,133.565977 C133.849049,134.981915 135.962545,135.31045 136.940051,134.799139 C140.592108,132.889242 140.351491,136.595668 137.311003,136.82973 C135.197892,136.992069 135.672185,137.856979 135.900848,139.136028 C136.15419,140.556594 136.85946,142.980887 136.324242,144.756208 C135.820643,146.424717 134.107789,146.35608 134.378483,144.693355 C134.588638,143.40428 134.324884,140.600553 134.324884,140.600553 C134.324884,140.600553 133.807018,141.42883 132.698792,141.395668 C131.759075,141.367134 131.705476,140.780244 131.705476,140.780244 C131.705476,140.780244 131.323728,141.413792 130.41563,141.374075 C129.507532,141.334357 129.299306,140.378059 129.299306,140.378059 C129.299306,140.378059 128.304447,141.204023 127.528612,139.897982 C126.972956,138.962506 127.672057,136.308779 127.635039,135.356722 C127.575656,133.818548 127.583368,133.52009 128.538509,132.662121 C130.468843,131.044126 132.422314,133.565977 132.422314,133.565977" id="Fill-287" fill="#755135" mask="url(#mask-5)"></path>
<path d="M162.445026,142.857378 C161.656851,143.811748 160.187314,147.269846 158.395026,148.27473 C156.771247,149.185141 158.237314,150.299537 159.850681,149.563033 C160.80428,149.128072 162.339756,146.302365 164.364949,146.407635 C165.446183,146.463933 166.324974,147.532442 167.195668,149.438483 C167.767519,150.691311 170.238085,150.446067 169.351195,149.199023 C168.02009,147.328072 168.335514,146.696838 168.413792,145.747095 C169.994383,146.212519 170.900167,148.534242 171.414949,149.51329 C172.231272,151.065347 174.410707,150.520488 173.849653,149.572288 C172.914177,147.990925 172.530116,146.719589 170.991941,145.723959 C172.097082,146.09144 172.818548,146.731157 173.963792,146.664062 C176.345668,146.524087 176.441298,145.335656 175.955823,145.303265 C172.997853,145.105835 171.412635,144.387841 171.412635,144.387841 C171.412635,144.387841 172.52626,144.78 173.332172,144.961234 C175.071247,145.352237 176.019833,143.563419 175.267519,143.538355 C170.534229,143.380257 171.35171,141.067404 168.887699,140.674473 C167.103895,140.390283 164.978445,139.790668 162.445026,142.857378" id="Fill-288" fill="#755135" mask="url(#mask-5)"></path>
<path d="M138.766157,143.210977 C137.416928,143.07563 137.063329,142.587455 137.110758,142.066889 C137.182866,141.274473 138.101761,141.652751 138.119884,141.076272 C138.138008,140.499794 137.439293,140.594267 137.543406,139.760977 C137.633252,139.040283 138.712172,139.128586 138.840193,138.453779" id="Fill-289" fill="#414042" mask="url(#mask-5)"></path>
<path d="M142.611825,102.641954 C142.611825,102.641954 142.555141,103.005964 142.674679,103.135913 C142.794216,103.265861 143.426992,103.544267 143.44126,103.164062 C143.445501,103.051465 143.459769,102.890668 143.247301,102.788098 C142.995887,102.666632 142.611825,102.641954 142.611825,102.641954" id="Fill-290" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M160.96662,102.641954 C160.96662,102.641954 161.023303,103.005964 160.903766,103.135913 C160.784229,103.265861 160.151452,103.544267 160.137185,103.164062 C160.132943,103.051465 160.118676,102.890668 160.331144,102.788098 C160.582558,102.666632 160.96662,102.641954 160.96662,102.641954" id="Fill-291" fill="#231F20" mask="url(#mask-5)"></path>
<path d="M144.665977,125.106401 C143.956465,125.553316 143.40428,126.51347 144.475488,126.96617 C145.546697,127.418483 146.005951,126.65036 145.951195,125.680566 C145.903766,124.832622 145.043483,124.868483 144.665977,125.106401" id="Fill-292" fill="#4D97FF" mask="url(#mask-5)"></path>
<path d="M157.60126,125.89153 C157.346375,126.02919 156.607558,125.10027 156.460643,125.335488 C156.181851,125.78009 156.499203,126.67045 157.200231,126.966208 C158.27144,127.418522 158.730694,126.650398 158.676324,125.680604 C158.628509,124.832661 158.312699,125.506311 157.60126,125.89153" id="Fill-293" fill="#4D97FF" mask="url(#mask-5)"></path>
<path d="M154.104254,125.93599 C153.394743,126.466967 153.179961,126.954756 154.250784,127.491902 C155.322378,128.029049 155.32045,126.967866 155.26608,125.815681 C155.21865,124.808869 154.482147,125.653342 154.104254,125.93599" id="Fill-294" fill="#9966FF" mask="url(#mask-5)"></path>
<path d="M147.672686,124.12847 C146.963175,125.049679 146.41099,127.027057 147.482198,127.95829 C148.553406,128.88991 149.012661,127.308162 148.957905,125.310733 C148.910476,123.564717 148.050193,123.638368 147.672686,124.12847" id="Fill-295" fill="#0FBD8C" mask="url(#mask-5)"></path>
<path d="M150.661504,124.794987 C149.951992,125.410411 149.901478,126.943573 150.972686,127.565938 C152.043895,128.187918 152.691324,126.395244 152.290296,125.549614 C151.789781,124.494987 151.039396,124.467609 150.661504,124.794987" id="Fill-296" fill="#FFBF00" mask="url(#mask-5)"></path>
<path d="M139.938586,62.4828278 C138.15671,62.0104627 137.714422,59.0737018 140.063136,69.5069923 C140.282159,70.5936247 139.26455,71.4778149 137.791928,71.4778149 C136.323548,71.4778149 134.953882,70.5936247 134.7391,69.5069923 C134.524319,68.4165039 135.541928,67.5365553 137.010308,67.5365553 C137.319563,67.5365553 137.628817,67.5751157 137.916478,67.6479949 L137.92072,67.6522365 L137.929203,67.6522365 C138.079589,67.6869409 138.225733,67.7339846 138.367249,67.7895116 C138.77946,67.7852699 138.315964,66.6990231 137.487301,61.963419 C136.465064,56.0983805 138.955296,61.0746015 141.686144,60.6496658 C144.416607,60.2285861 141.720463,62.9509512 139.938586,62.4828278" id="Fill-297" fill="#404041" mask="url(#mask-5)"></path>
<path d="M184.146555,70.3988175 C182.364679,69.9306941 181.922391,66.9939332 184.275347,77.4276093 C184.490129,78.5134704 183.472519,79.3980463 181.999897,79.3980463 C180.531517,79.3980463 179.161851,78.5134704 178.947069,77.4276093 C178.732288,76.3367352 179.750283,75.456401 181.218278,75.456401 C181.527532,75.456401 181.836787,75.495347 182.124447,75.5682262 L182.128689,75.5724679 L182.137172,75.5724679 C182.287558,75.6067866 182.433702,75.6542159 182.575219,75.7097429 C182.987429,75.7058869 182.523933,74.6192545 181.699126,69.8836504 C180.673033,64.0186118 183.163265,68.9948329 185.894113,68.5698972 C188.624961,68.1488175 185.928432,70.8711825 184.146555,70.3988175" id="Fill-298" fill="#404041" mask="url(#mask-5)"></path>
<path d="M109.13919,98.8864396 C107.357314,98.4140746 106.915026,95.4773136 109.26374,105.91099 C109.482763,106.996851 108.465154,107.881427 106.992532,107.881427 C105.524152,107.881427 104.154486,106.996851 103.939704,105.91099 C103.724923,104.820501 104.742532,103.939781 106.210913,103.939781 C106.520167,103.939781 106.829422,103.978728 107.117082,104.051992 L107.121324,104.055848 L107.129807,104.055848 C107.280193,104.090167 107.426337,104.137596 107.567853,104.193509 C107.980064,104.188882 107.516183,103.103021 106.687519,98.3670308 C105.665668,92.5019923 108.1559,97.4782134 110.886748,97.0532776 C113.617211,96.6321979 110.921067,99.354563 109.13919,98.8864396" id="Fill-299" fill="#404041" mask="url(#mask-5)"></path>
<path d="M117.597455,96.1386632 C115.815578,95.6705398 115.37329,92.7341645 117.726247,103.167455 C117.941028,104.253316 116.923419,105.137892 115.450797,105.137892 C113.982416,105.137892 112.612751,104.253316 112.397969,103.167455 C112.183188,102.076581 113.200797,101.196247 114.669177,101.196247 C114.978432,101.196247 115.287686,101.235193 115.575347,101.308072 L115.579589,101.312314 L115.588072,101.312314 C115.738458,101.347018 115.884602,101.394062 116.026118,101.449589 C116.438329,101.445733 115.974447,100.3591 115.150026,95.6234961 C114.123933,89.7584576 116.614165,94.7346787 119.345013,94.3097429 C122.075476,93.8890488 119.379332,96.6110283 117.597455,96.1386632" id="Fill-300" fill="#404041" mask="url(#mask-5)"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 109 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="460px" height="410px" viewBox="0 0 460 410" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Passion Splash</title>
<g id="Passion-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.15">
<path d="M255.457593,26.2734659 C373.056554,26.2734659 488.038906,165.174477 453.896557,259.682708 C419.754208,354.19094 355.430046,410 237.831085,410 C120.232124,410 21.0556203,296.475435 1.65174233,174.749684 C-17.7521356,53.0239332 137.858632,26.2734659 255.457593,26.2734659 Z M378.308782,3.28984536 C395.227681,-9.41204003 421.898325,17.46529 438.198925,36.2663444 C454.499526,55.0673988 448.490777,75.2414981 434.041506,75.2414981 C424.138073,75.2414981 413.502013,67.2203987 403.698464,59.6814719 L402.73692,58.9417928 C398.582344,55.7458523 394.588334,52.6881582 390.876085,50.427151 C378.16877,42.6875495 361.389882,15.9917308 378.308782,3.28984536 Z" fill="#4D97FF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,263 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="200px" viewBox="0 0 300 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Peers Illustration</title>
<defs>
<polygon id="path-1" points="0.234697453 0.293957346 19.7799571 0.293957346 19.7799571 12.7076964 0.234697453 12.7076964"></polygon>
<polygon id="path-3" points="0 122.691825 299.80628 122.691825 299.80628 0.355450237 0 0.355450237"></polygon>
<path d="M13.0415724,4.80379893 C18.1429998,5.29898991 22.7199235,8.09423519 27.5660137,9.3668048 C38.3511047,12.1989393 54.5456777,16.3760595 59.9351162,17.1179113 C65.3245546,17.859763 67.4200852,23.1186826 66.1504757,27.763007 C64.8808661,32.4073314 63.3197419,33.9212321 55.3374534,33.9365324 C47.3551649,33.9517633 38.7742126,28.9271568 34.1704202,28.9359612 C29.455266,28.9449786 13.1461674,22.857185 8.44390962,21.6223854 C3.74165183,20.3875858 0.809109059,14.4866396 2.3218594,10.3024779 C3.83460974,6.11831615 7.94014501,4.30860796 13.0415724,4.80379893 Z" id="path-5"></path>
<path d="M13.0415724,4.80379893 C18.1429998,5.29898991 22.7199235,8.09423519 27.5660137,9.3668048 C38.3511047,12.1989393 54.5456777,16.3760595 59.9351162,17.1179113 C65.3245546,17.859763 67.4200852,23.1186826 66.1504757,27.763007 C64.8808661,32.4073314 63.3197419,33.9212321 55.3374534,33.9365324 C47.3551649,33.9517633 38.7742126,28.9271568 34.1704202,28.9359612 C29.455266,28.9449786 13.1461674,22.857185 8.44390962,21.6223854 C3.74165183,20.3875858 0.809109059,14.4866396 2.3218594,10.3024779 C3.83460974,6.11831615 7.94014501,4.30860796 13.0415724,4.80379893 Z" id="path-7"></path>
<path d="M58.0462178,36.2567107 C61.3548606,35.3611153 62.6998439,33.5040004 63.4967242,29.5089888 C64.2936044,25.5139773 60.3200153,21.6022692 57.8335446,22.2754435 C55.3470739,22.9486177 51.2921685,26.1268233 52.6772358,29.5742083 C54.0623031,33.0215934 54.7375749,37.152306 58.0462178,36.2567107 Z" id="path-9"></path>
<filter x="-8.9%" y="-7.1%" width="117.9%" height="114.1%" filterUnits="objectBoundingBox" id="filter-10">
<feOffset dx="2" dy="2" in="SourceAlpha" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<path d="M13.1913138,5.81918246 C17.6776861,7.70498586 22.8846394,7.71277235 27.7184283,9.02660628 C38.4761428,11.9505755 54.5923837,17.7578644 59.9658239,18.532592 C65.339264,19.3073196 67.4456825,24.6750885 66.1964291,29.4048089 C64.9471757,34.1345292 63.396636,35.6723201 55.441877,35.6604929 C47.487118,35.6485289 37.3004969,32.117572 34.330494,30.4904334 C29.5862352,27.8912554 13.3576886,24.2218542 8.66736698,22.947015 C3.97704531,21.6721758 1.03428597,15.6470924 2.52742715,11.3872649 C4.02056833,7.12743731 8.70494154,3.93337907 13.1913138,5.81918246 Z" id="path-11"></path>
<path d="M13.1913138,5.81918246 C17.6776861,7.70498586 22.8846394,7.71277235 27.7184283,9.02660628 C38.4761428,11.9505755 54.5923837,17.7578644 59.9658239,18.532592 C65.339264,19.3073196 67.4456825,24.6750885 66.1964291,29.4048089 C64.9471757,34.1345292 63.396636,35.6723201 55.441877,35.6604929 C47.487118,35.6485289 37.3004969,32.117572 34.330494,30.4904334 C29.5862352,27.8912554 13.3576886,24.2218542 8.66736698,22.947015 C3.97704531,21.6721758 1.03428597,15.6470924 2.52742715,11.3872649 C4.02056833,7.12743731 8.70494154,3.93337907 13.1913138,5.81918246 Z" id="path-13"></path>
<path d="M11.4013927,37.9099941 C14.7078261,37.0364436 17.2208941,34.6628338 16.2316869,31.1263445 C15.2424798,27.5898553 13.224385,24.0309135 10.7395761,24.6875226 C8.25476714,25.3441318 5.47199918,26.7080712 5.2861448,31.3317415 C5.10029043,35.9554118 8.09495935,38.7835447 11.4013927,37.9099941 Z" id="path-15"></path>
<filter x="-9.0%" y="-7.4%" width="117.9%" height="114.9%" filterUnits="objectBoundingBox" id="filter-16">
<feOffset dx="2" dy="2" in="SourceAlpha" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<polygon id="path-17" points="0.941747573 0 54.9417476 0 54.9417476 74 0.941747573 74"></polygon>
</defs>
<g id="Peers-Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-269" transform="translate(0.000000, 50.000000)">
<path d="M99.0979265,24.5409597 C102.76795,24.8054147 114.646031,35.7994905 116.134656,39.9607464 C117.622927,44.1220024 104.923756,38.2883531 101.878614,34.6051777 C98.8334716,30.9223578 95.4279028,24.2765047 99.0979265,24.5409597" id="Fill-1" fill="#755135"></path>
<path d="M97.7370498,24.3611374 C97.7370498,24.3611374 102.658969,24.4180095 106.87923,27.9046209 C111.099491,31.3905213 105.195462,37.0069905 104.564538,37.3944313 C103.933614,37.781872 101.803045,35.3125592 101.803045,35.3125592 L97.7370498,24.3611374 Z" id="Fill-3" fill="#3D79CC"></path>
<path d="M118.12109,43.2697749 C112.469076,39.8347038 105.91955,55.7816232 100.784716,56.7065047 C98.460782,56.8216706 93.5164692,56.8234479 93.5164692,56.8234479 C88.6432464,61.3465521 91.2810427,71.8611256 97.8949052,72.0413389 C105.768128,72.2563863 116.910782,55.7951303 117.159597,53.2110071 L118.12109,43.2697749 Z" id="Fill-5" fill="#BF9F75"></path>
<path d="M109.852891,43.2284716 C102.660711,39.4155569 94.813436,53.0335664 91.6922275,57.625628 C88.7419905,57.7429265 82.4633175,57.7226659 82.4633175,57.7226659 C74.0977962,62.7654384 79.6911611,74.2951777 88.0904502,74.5233768 C98.0885545,74.7949408 109.338199,58.9496801 109.643175,56.1011019 L109.852891,43.2284716 Z" id="Fill-7" fill="#CEAE7C"></path>
<path d="M89.2315521,24.9852725 C88.5657938,26.8837322 97.0336848,32.439064 95.8539455,24.6113389 C98.85359,23.5823104 104.850391,25.6307701 103.964609,31.5802962 C103.082382,37.5077844 102.275509,39.1620498 103.2075,43.8749645 C96.693519,49.531955 91.6919787,57.6255569 91.6919787,57.6255569 C84.9270498,66.0426185 77.5660308,62.2346801 78.3309597,60.7744905 C80.5866469,56.4675 81.2950592,46.735628 80.8375948,32.5528081 C79.4840403,28.4605095 86.207737,25.7836137 89.2315521,24.9852725" id="Fill-9" fill="#4D97FF"></path>
<path d="M104.382618,54.8409953 C104.044585,65.6058057 101.670889,64.3976303 104.821244,74.1291469 C105.351931,75.768128 112.207855,74.756872 112.379182,72.386019 C113.429538,57.8402844 112.91769,44.9367299 109.852998,43.228436 L104.382618,54.8409953 Z" id="Fill-11" fill="#CEAE7C"></path>
<path d="M122.113649,39.4181517 C114.921469,35.605237 106.674668,53.1612796 100.158199,54.1583175 C100.158199,54.1583175 114.066256,56.1993128 116.82064,54.5187441 C119.575024,52.8385308 122.779052,42.6392417 122.779052,42.6392417 L122.113649,39.4181517 Z" id="Fill-13" fill="#CEAE7C"></path>
<path d="M122.113649,39.4181517 C127.232844,42.8852133 125.728934,53.8458768 124.678578,68.3916114 C124.507607,70.7624645 118.651564,71.5917299 118.121232,69.9523934 C114.970877,60.2208768 116.344336,61.6113981 116.682014,50.8462322 L122.113649,39.4181517 Z" id="Fill-15" fill="#CEAE7C"></path>
<path d="M84.2236848,9.85954976 C84.2236848,9.85954976 83.0645616,8.05244076 81.7003436,9.9128673 C80.3361256,11.7732938 82.5630213,15.4408294 84.9271209,15.3608531" id="Fill-17" fill="#60412C"></path>
<path d="M101.586256,13.0259716 C101.586256,13.0259716 103.00628,11.6397156 104.515166,13.5548815 C106.024052,15.4704028 103.359242,18.6719431 100.841588,18.8855687" id="Fill-19" fill="#60412C"></path>
<path d="M94.1405332,29.4238863 C96.2440877,29.4238863 96.6375711,27.5627488 96.6304621,26.1469905 C96.6229976,24.5982938 95.0298697,25.9418957 95.1222867,20.0933175 C95.1688507,17.1384597 90.6134005,17.8155924 90.6279739,20.4626303 C90.6588981,26.0033886 88.7575948,23.9979384 88.7195616,25.993436 C88.6925474,27.4088389 92.2626896,29.4238863 94.1405332,29.4238863" id="Fill-21" fill="#60412C"></path>
<path d="M91.245391,1.68587302 C91.245391,1.68587302 83.4141114,1.86757109 83.4141114,12.3028791 C83.4141114,21.3867654 89.6149408,25.8960071 92.3021445,25.8960071 C94.9040403,25.8960071 102.232002,21.9963626 102.688045,14.7529976 C103.521931,1.50714455 97.6865047,1.68587302 91.245391,1.68587302" id="Fill-23" fill="#755135"></path>
<path d="M91.1644905,16.1809479 C89.414609,18.3811848 92.4675711,19.3174408 92.4675711,19.3174408" id="Stroke-25" stroke="#60412C" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"></path>
<g id="Group-29" transform="translate(83.175355, 0.061493)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-28"></g>
<path d="M0.26242891,12.5198104 C0.26242891,12.5198104 -0.782950237,-0.411113744 9.96302133,0.323957346 C21.9914573,1.14718009 19.5751066,11.9390047 19.5925237,12.5560664 L18.9029502,12.6996682 C18.6733294,12.747654 18.4550829,12.5745498 18.4501066,12.3399526 C18.3836374,9.08438389 16.9081635,11.1619905 16.9102962,9.63781991 C16.9152725,6.23296209 2.45377962,5.46127962 2.01728673,8.84943128 C1.80508294,10.4997867 0.874514218,9.28841232 0.657334123,12.6463507 L0.26242891,12.5198104 Z" id="Fill-27" fill="#231F20" mask="url(#mask-2)"></path>
</g>
<path d="M95.85391,16.1809479 C95.85391,16.5897156 95.6033175,16.9213507 95.2944313,16.9213507 C94.9851896,16.9213507 94.7345972,16.5897156 94.7345972,16.1809479 C94.7345972,15.7721801 94.9851896,15.4409005 95.2944313,15.4409005 C95.6033175,15.4409005 95.85391,15.7721801 95.85391,16.1809479" id="Fill-30" fill="#231F20"></path>
<path d="M88.3387678,15.8223697 C88.3387678,16.2311374 88.0881754,16.5624171 87.7792891,16.5624171 C87.4700474,16.5624171 87.2198104,16.2311374 87.2198104,15.8223697 C87.2198104,15.4136019 87.4700474,15.0819668 87.7792891,15.0819668 C88.0881754,15.0819668 88.3387678,15.4136019 88.3387678,15.8223697" id="Fill-32" fill="#231F20"></path>
<path d="M86.9784242,12.427891 C87.1902725,12.6934123 87.565628,12.7797867 87.8652725,12.6198341 C88.7716706,12.1346445 90.0758175,12.2217299 89.8586374,11.6569194 C89.6126659,11.017109 87.0665758,10.988673 86.8326896,11.7145024 C86.7388507,12.0059716 86.8326896,12.2451896 86.9784242,12.427891" id="Fill-34" fill="#231F20"></path>
<path d="M98.6168246,12.427891 C98.4049763,12.6934123 98.0296209,12.7797867 97.7299763,12.6198341 C96.8232227,12.1346445 95.5194313,12.2217299 95.7366114,11.6569194 C95.9825829,11.017109 98.528673,10.988673 98.7625592,11.7145024 C98.8563981,12.0059716 98.7625592,12.2451896 98.6168246,12.427891" id="Fill-36" fill="#231F20"></path>
<path d="M91.407654,22.2343365 C92.2977014,22.7085071 94.7332464,22.2350474 95.6712796,21.452346 C96.8549289,20.4641943 96.6782701,24.0670379 93.9953318,24.5003318 C91.3123934,24.9336256 90.5176066,21.7605213 91.407654,22.2343365" id="Fill-38" fill="#231F20"></path>
<path d="M95.6713152,21.4522749 C95.6713152,21.4522749 96.040628,22.9135308 93.793827,23.3326066 C91.81859,23.7012085 91.5363626,22.2914929 91.5363626,22.2914929 C91.5363626,22.2914929 92.6084005,22.53 93.6040166,22.2986019 C94.5786611,22.0718246 95.6713152,21.4522749 95.6713152,21.4522749" id="Fill-40" fill="#FFFFFF"></path>
<polyline id="Stroke-42" stroke="#E5F0FF" stroke-width="0.5" points="92.0385427 22.9431754 93.1383057 22.9364218 94.1406754 22.8294313 94.9244431 22.5937678 95.5493246 22.0751659"></polyline>
<path d="M93.2894076,23.1496919 L93.0359716,23.1767062 C92.9805213,23.1827488 92.9311137,23.1425829 92.9250711,23.0874882 L92.8980569,22.8336967 C92.8920142,22.7786019 92.9321801,22.7291943 92.9872749,22.7235071 L93.2410664,22.6961374 C93.2961611,22.6900948 93.3455687,22.7299052 93.3516114,22.7853555 L93.3786256,23.0387915 C93.3846682,23.0942417 93.3445024,23.1436493 93.2894076,23.1496919" id="Fill-44" fill="#CF63CF"></path>
<path d="M94.3027962,23.0340995 L94.050782,23.0746209 C93.9960427,23.0835071 93.9445024,23.0461848 93.9356161,22.9914455 L93.8950948,22.7397867 C93.8862085,22.6850474 93.9235308,22.6331517 93.9782701,22.6246209 L94.2302844,22.5837441 C94.2850237,22.5748578 94.336564,22.6121801 94.3454502,22.6672749 L94.3859716,22.9189336 C94.3948578,22.973673 94.3575355,23.0255687 94.3027962,23.0340995" id="Fill-46" fill="#CF63CF"></path>
<path d="M95.0536137,22.717891 L94.9334716,22.7726303 C94.8829976,22.7957346 94.823282,22.7733412 94.8001777,22.7228673 L94.7454384,22.6027251 C94.7223341,22.5518957 94.7447275,22.4925355 94.7952014,22.4694313 L94.9153436,22.4143365 C94.9658175,22.3915877 95.0255332,22.413981 95.0486374,22.464455 L95.1033768,22.5845972 C95.126481,22.6354265 95.1040877,22.6951422 95.0536137,22.717891" id="Fill-48" fill="#CF63CF"></path>
<path d="M92.0540047,23.1087441 L91.9224882,23.0955924 C91.8673934,23.0902607 91.826872,23.0412085 91.8325592,22.9857583 L91.8457109,22.8542417 C91.8510427,22.7991469 91.9000948,22.758981 91.955545,22.7639573 L92.0870616,22.777109 C92.1425118,22.7827962 92.1826777,22.8322038 92.1769905,22.8872986 L92.1641943,23.0188152 C92.1585071,23.07391 92.1090995,23.1144313 92.0540047,23.1087441" id="Fill-50" fill="#CF63CF"></path>
<path d="M95.6557109,22.1906161 L95.5494313,22.2695261 C95.505,22.3022275 95.4417299,22.2929858 95.4090284,22.2481991 L95.3301185,22.1419194 C95.2970616,22.0974882 95.3066588,22.0349289 95.35109,22.0015166 L95.4573697,21.9229621 C95.5018009,21.8899052 95.5650711,21.8995024 95.5977725,21.9439336 L95.6766825,22.0498578 C95.7097393,22.0942891 95.7001422,22.1575592 95.6557109,22.1906161" id="Fill-52" fill="#CF63CF"></path>
<path d="M69.1390877,15.6973934 C69.1042536,14.5279621 69.4913389,14.4277251 69.9552014,14.3591232 C70.4460782,14.2866114 71.0613626,14.1188389 71.4605332,14.1778436 C71.7694194,14.2233412 71.783282,14.4682464 71.783282,14.4682464 C71.783282,14.4682464 71.7975,14.4582938 72.1525948,14.3530806 C72.5307938,14.2411137 73.5708412,13.9670616 74.0044905,13.9162322 C74.2589929,13.8863744 74.5429976,14.032109 74.6176422,14.3075829 C74.7139692,14.2819905 74.7843483,14.268128 74.8362441,14.2620853 C74.9858886,14.2439573 75.1230924,14.1838863 75.2382583,14.0868483 C75.7838744,13.6268957 77.0219076,12.3970379 77.3272393,10.4978673 C77.5817417,8.91540284 79.2647986,9.7485782 78.9008175,11.0303318 C78.2954858,13.1626777 77.4875474,14.7298578 76.7883768,15.785545 C76.690628,15.9330569 76.6710782,16.1143365 76.7272393,16.282109 C76.8704858,16.7129147 77.0467891,17.732346 76.4044905,19.4043839 C75.9203673,20.6651659 74.5675237,23.0975118 72.6139692,23.2037915 C70.6607701,23.3104265 68.908045,25.0876777 69.3946564,22.6517773 C69.9434716,19.9048578 69.1739218,16.8671801 69.1390877,15.6973934" id="Fill-54" fill="#755135"></path>
<path d="M84.9269431,37.0070616 C83.692109,38.4597867 73.9620142,45.0445024 70.3790758,43.5921327 C66.7961374,42.1394076 68.1717299,31.632654 69.3944787,22.6518483 C69.3944787,22.6518483 74.7368957,16.8750711 73.5749289,22.0749526 C72.4126066,27.2748341 75.5604739,25.4353791 74.2552607,34.1183175 C74.2552607,34.1183175 82.2635545,28.4126303 83.1113033,27.7109716" id="Fill-56" fill="#755135"></path>
<path d="M83.1111611,27.7108649 C79.2516825,29.7802962 77.3720616,30.789064 75.6890047,32.6011493 C74.6606872,33.7080213 78.9239573,32.0320735 79.8922038,41.6071919 C82.9007346,40.7594431 85.776327,39.1375237 86.5991943,36.1357464 C88.7603318,28.2543483 85.2662559,27.2047038 83.1111611,27.7108649" id="Fill-58" fill="#3D79CC"></path>
<path d="M113.689941,37.1525118 C119.981765,35.1186256 124.2166,37.222891 124.655936,39.4181517 C125.095273,41.6130569 120.759135,41.8490758 119.815059,40.2818957 C119.088519,38.5323697 116.352974,39.7430332 114.582832,41.3980095" id="Fill-60" fill="#755135"></path>
<path d="M106.032654,74.0623934 C109.719739,77.7121564 108.205521,70.8963981 110.961327,73.2061137 C112.95718,74.8788626 116.755877,80.3211611 120.29936,81.4703318 C120.799123,81.6320616 121.523531,82.7972275 121.070687,83.8657109 C120.32282,84.7500711 115.79545,88.5238863 110.592725,84.0498341 C106.94154,80.9097867 104.658483,81.633128 104.622583,79.7631043 C104.609076,79.0465166 104.723175,72.7664218 106.032654,74.0623934" id="Fill-62" fill="#9966FF"></path>
<path d="M109.5509,76.9861848 C108.529692,74.8954265 109.073886,72.4413981 110.643199,71.7066825 C111.535024,71.2893839 112.794028,71.9409242 113.345687,74.5474408 C113.756232,76.4878436 114.035616,77.7212559 118.34936,80.4631991 C119.448057,81.1613033 116.481825,82.7949526 115.515711,82.4220853 C112.829218,81.3859479 109.5509,76.9861848 109.5509,76.9861848" id="Fill-64" fill="#774DCB"></path>
<path d="M120.518318,81.5948815 C120.518318,81.5948815 118.331943,84.7761611 115.759194,84.7324408 C111.711327,84.6634834 111.097109,81.705782 108.704573,80.7041232 C106.312038,79.7028199 106.391659,77.0156161 104.688697,77.716564 C104.688697,77.716564 104.460142,79.941327 104.623294,80.5964218 C104.786445,81.2522275 107.356351,81.6325592 109.530284,83.5029384 C111.704218,85.3733175 113.402915,87.1772275 116.955284,86.2683412 C120.507654,85.359455 121.056469,84.352109 121.412275,83.6330332 C121.731469,82.9886019 120.961919,81.3695261 120.518318,81.5948815" id="Fill-66" fill="#F1F2F2"></path>
<path d="M117.578211,79.9339336 C118.311505,80.0796682 116.824301,78.8192417 116.461742,78.7470853 C115.449775,78.5459005 113.671457,79.1366588 113.206173,80.331327 C112.880936,81.1662796 114.576434,81.7769431 114.871102,81.1961374 C115.283069,80.3842891 116.907476,79.8006398 117.578211,79.9339336" id="Fill-68" fill="#F1F2F2"></path>
<path d="M115.204585,77.2045379 C115.937879,77.3499171 115.189301,76.075628 114.883258,75.8684005 C114.021291,75.2854621 111.146765,75.8438744 110.681481,77.0385427 C110.356244,77.8734953 112.202808,79.0475474 112.497476,78.4663863 C112.909088,77.6548934 114.533495,77.0712441 115.204585,77.2045379" id="Fill-70" fill="#F1F2F2"></path>
<path d="M119.246979,69.9941588 C122.934064,73.6439218 121.419846,66.8281635 124.175652,69.1378791 C126.171505,70.810628 129.970201,76.2529265 133.513685,77.4020972 C134.013448,77.563827 134.7375,78.7289929 134.285012,79.7974763 C133.537145,80.6818365 129.009775,84.4556517 123.80705,79.9815995 C120.155865,76.8415521 117.872453,77.5648934 117.836908,75.6948697 C117.8234,74.978282 117.9375,68.6981872 119.246979,69.9941588" id="Fill-72" fill="#9966FF"></path>
<path d="M123.927192,72.3073578 C122.905983,70.2165995 125.174111,66.1189692 126.820557,66.6592536 C127.888329,67.0097275 127.059775,68.2122156 127.721979,69.8686137 C128.458116,71.7102014 127.354443,73.723827 131.667832,76.4654147 C132.766884,77.1638744 130.858116,78.1161256 129.892002,77.7432583 C127.205509,76.7071209 123.927192,72.3073578 123.927192,72.3073578" id="Fill-74" fill="#774DCB"></path>
<path d="M134.308507,78.3975711 C134.308507,78.3975711 131.545948,80.7079976 128.973555,80.6642773 C124.925687,80.5953199 124.311469,77.637263 121.918934,76.6359597 C119.526398,75.6350118 119.606019,72.9474526 117.903057,73.6484005 C117.903057,73.6484005 117.674502,75.8728081 117.837654,76.5282583 C118.000806,77.184064 120.570711,77.5643957 122.744645,79.4347749 C124.918578,81.305154 126.617275,83.109064 130.169645,82.2001777 C133.722014,81.2916469 134.270829,80.2839455 134.626635,79.5648697 C134.945474,78.9204384 134.751754,78.1722156 134.308507,78.3975711" id="Fill-76" fill="#F1F2F2"></path>
<path d="M130.792536,75.8656991 C131.525829,76.0114336 130.038626,74.7510071 129.676066,74.6788507 C128.6641,74.4776659 126.885782,75.0684242 126.420142,76.2630924 C126.094905,77.098045 127.790758,77.7087085 128.085427,77.1279028 C128.497038,76.3160545 130.121445,75.7324052 130.792536,75.8656991" id="Fill-78" fill="#F1F2F2"></path>
<path d="M128.41891,73.1362678 C129.152204,73.2820024 128.403626,72.0073578 128.097583,71.8001303 C127.235616,71.2171919 124.36109,71.7756043 123.895806,72.9702725 C123.570569,73.8052251 125.417133,74.9792773 125.711801,74.3981161 C126.123412,73.5866232 127.74782,73.0029739 128.41891,73.1362678" id="Fill-80" fill="#F1F2F2"></path>
<path d="M121.706481,38.7551659 C121.230533,39.1219905 120.354704,39.2680806 119.608258,40.6742417 C119.178874,41.4839573 119.190249,42.5140521 118.580652,42.7856161 C117.360036,43.3298104 118.833021,44.3862085 119.95731,43.6205687 C120.502216,43.2498341 121.061694,41.6655924 121.635391,42.5908294 C122.02141,43.2135782 122.005415,43.8270853 122.056244,44.4843128 C122.146884,45.6608531 122.41987,46.4972275 122.225438,48.1415403 C122.025675,49.8345498 123.11513,49.8466351 123.374254,48.2808768 C123.562642,47.1427251 123.388472,45.9850237 123.470581,45.4177251 C124.035036,46.9777962 124.392974,47.8052844 124.495344,49.9312322 C124.5284,50.6200948 125.567026,50.6282701 125.536102,49.7979384 C125.458614,47.7167773 124.857192,46.3945024 124.926149,45.5790995 C125.099254,46.1606161 125.837524,47.7437915 125.997121,49.0749526 C126.153519,50.3790995 127.121765,49.9312322 126.831363,48.3093128 C126.468092,46.2796919 125.89404,44.8109716 125.89404,44.8109716 C125.89404,44.8109716 126.72686,46.379218 127.119633,47.1896445 C127.616197,48.2140521 128.375438,47.3847867 127.789301,46.2427251 C125.962998,42.6832464 126.336931,41.3090758 125.113116,39.664763 C124.226623,38.4740047 124.031126,36.9622749 121.706481,38.7551659" id="Fill-82" fill="#755135"></path>
<path d="M73.6837322,94.0599526 C72.9902488,87.6522512 38.3345616,93.4898104 34.1118128,96.7716825 C29.8894194,100.053199 27.8633531,106.143839 33.3205806,110.24609 C37.93859,113.717773 61.8152488,102.04372 67.7167891,94.57109 C70.2031635,91.4235782 73.6837322,94.0599526 73.6837322,94.0599526" id="Fill-84" fill="#231F20"></path>
<path d="M40.0756635,49.844218 C40.0756635,49.844218 40.0187915,50.3759716 39.7920142,50.5721801 C39.565237,50.7683886 38.0961611,50.5145972 37.807891,50.6688626 C37.5196209,50.8238389 37.5747156,49.8022749 38.1782701,49.7628199 C38.7814692,49.7230095 40.0756635,49.844218 40.0756635,49.844218" id="Fill-86" fill="#FFFFFF"></path>
<path d="M19.6089455,59.8322275 C19.6089455,59.8322275 30.5973341,55.5995261 39.5091825,61.7864929 C48.4213863,67.9738152 49.5815758,69.6202607 52.369372,70.6240521 C52.6029028,65.3417062 57.3360782,53.0218009 57.3360782,53.0218009 C57.3360782,53.0218009 64.5737559,51.3771327 61.7013626,55.7761848 C59.2018365,59.6033175 60.9325237,78.592891 53.2046801,78.8335308 C45.1615521,79.0841232 34.2367891,66.8015403 30.7867891,68.0306872 C27.3371445,69.2598341 17.3781398,66.3973934 19.6089455,59.8322275" id="Fill-88" fill="#60412C"></path>
<path d="M74.1592891,109.986469 C74.1592891,109.986469 73.4000474,112.29263 74.1145024,114.518815 C74.6380806,116.151398 74.5719668,116.514313 77.5392654,116.887536 C80.335237,117.23872 85.5525355,119.337299 87.5576303,119.489787 C94.592346,120.02545 96.6109479,116.921303 96.0066825,114.581374 C96.6777725,117.180782 81.3791943,109.198081 74.1592891,109.986469" id="Fill-90" fill="#F1F2F2"></path>
<path d="M47.6265284,115.102322 C55.1915758,110.803863 64.3792536,87.6711611 72.5588744,92.4153555 C81.9967891,97.8896445 56.1676422,109.508246 56.5515284,115.409787 C56.9890877,122.133483 40.5306754,119.134194 47.6265284,115.102322" id="Fill-92" fill="#231F20"></path>
<path d="M17.1437204,97.3589573 C13.2014218,108.913578 16.8209716,116.729573 28.5131517,114.977204 C40.5408768,113.175071 54.8239336,92.4466351 54.4691943,88.8946209 C55.207109,91.2206872 58.3617299,95.8667773 70.996564,107.06346 C72.6703791,108.547109 77.3875592,105.696043 75.9550948,103.021991 C65.5656398,83.6268483 62.0271327,72.5858531 53.350237,74.3403555 C46.8380332,75.6572986 37.378436,91.751019 28.6883886,94.9056398 C24.6629147,95.9275592 17.1437204,97.3589573 17.1437204,97.3589573" id="Fill-94" fill="#231F20"></path>
<path d="M24.9317062,66.3529009 C27.8179621,66.3575118 30.4767299,64.742346 30.4703433,62.8001659 C30.4632227,60.6749289 29.4825355,62.0697156 28.4136967,54.4908057 C27.8478199,50.4759953 15.9690284,48.0390284 19.6344313,51.0130806 C24.0014929,54.5569194 19.6728199,59.8339336 19.6163033,62.5716114 C19.5761374,64.513436 22.3554028,66.3486256 24.9317062,66.3529009" id="Fill-96" fill="#60412C"></path>
<path d="M25.8604265,25.3910545 C16.4665877,27.5632109 14.4106635,35.8544431 14.403538,40.4002962 C14.3911137,48.1899882 21.4208531,52.1752962 25.8604265,53.4467417 C28.6556872,54.2475711 31.3859005,56.6916469 34.9055687,56.05859 C36.3380332,55.8012441 37.6798578,55.2129739 38.7899289,52.855628 C39.1738152,52.7209123 39.8214455,52.2268365 39.0941943,52.0462678 C38.1238152,51.805628 37.3279621,50.4058649 38.1156398,49.99141 C38.4302133,49.8257701 39.813981,50.0639218 40.1218009,49.9469787 C40.5842417,49.7710308 40.8167062,49.048045 40.1374408,49.1187796 C40.4058057,47.4289692 40.2952607,45.7423578 39.6668246,43.340936 C42.5445498,30.1117891 31.8095972,24.0151066 25.8604265,25.3910545" id="Fill-98" fill="#755135"></path>
<path d="M40.1113863,48.4519194 C41.5943246,47.7548815 42.3180213,45.5343839 41.4325948,45.5720616 C40.0278555,45.6317773 39.7804621,43.9099763 39.6670735,43.3409005" id="Fill-100" fill="#755135"></path>
<path d="M39.3041612,43.2607464 C39.3034479,43.8212915 38.9590166,44.2755569 38.534609,44.2752016 C38.1109123,44.2744905 37.7679028,43.8188033 37.7686126,43.2582583 C37.7696801,42.6973578 38.1141114,42.2430924 38.5381635,42.2438025 C38.9622156,42.2445142 39.3052251,42.699846 39.3041612,43.2607464" id="Fill-102" fill="#231F20"></path>
<path d="M39.6565166,39.9360427 C39.6074645,40.2715877 39.3273697,40.5356872 38.9882701,40.5484834 C37.9613744,40.586872 36.8808057,41.3198104 36.7834123,40.7233649 C36.6732227,40.0472986 38.8549763,38.7388863 39.4222749,39.2471801 C39.6501185,39.4508531 39.6902844,39.705 39.6565166,39.9360427" id="Fill-104" fill="#231F20"></path>
<path d="M33.96391,37.6290995 C39.2945972,38.0087204 38.8829858,37.3404739 40.8411611,35.2738863 C40.8411611,35.2738863 37.5973223,25.1719905 29.5222038,25.0724645 C18.5754028,24.9373934 14.8222038,32.0318246 14.6124882,37.6852607 C14.1209005,50.9414218 22.4626066,52.8320616 28.41391,54.4909479 C28.41391,54.4909479 25.7387915,42.3352607 28.899455,41.3503081 C30.6777725,40.7961611 30.7733886,40.5064692 30.9969668,39.1735308 C31.2404502,37.721872 32.7059716,37.5395261 33.96391,37.6290995" id="Fill-106" fill="#231F20"></path>
<g id="Group-111" transform="translate(26.658768, 41.293720)">
<path d="M4.14600711,1.24990521 C4.14600711,1.24990521 3.05370853,-0.938246445 0.925983412,0.748364929 C-0.088471564,1.55274882 0.228234597,3.2592654 0.99742891,4.59469194 C1.84091232,6.05985782 3.22930095,7.0778673 4.00169431,5.96779621" id="Fill-108" fill="#755135"></path>
<path d="M4.14600711,1.24990521 C4.14600711,1.24990521 3.05370853,-0.938246445 0.925983412,0.748364929 C-0.088471564,1.55274882 0.228234597,3.2592654 0.99742891,4.59469194 C1.84091232,6.05985782 3.22930095,7.0778673 4.00169431,5.96779621" id="Stroke-110" stroke="#60412C" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<path d="M20.7865521,58.6784005 C24.819846,57.5473578 31.598282,66.9010308 29.0529028,58.1310071 C37.0292062,57.7062441 39.2649882,69.0778081 39.6954384,75.4741351 C40.1529028,82.2667891 37.3455569,82.0915521 38.5366706,87.4176185 C34.2179502,94.6904858 26.3390403,98.142263 24.3275474,99.8253199 C21.8905806,101.864538 18.569609,103.391552 16.3515995,101.59795 C13.0459123,98.9238981 11.8789692,100.673424 12.7068128,98.9932109 C15.1473341,94.0393009 17.6593009,90.7801777 15.2262441,74.0228318 C13.8783768,64.7402488 13.8431872,64.4608649 20.7865521,58.6784005" id="Fill-112" fill="#FFBF00"></path>
<path d="M30.3028445,47.6653436 C30.3021327,48.1999408 29.868128,48.6325237 29.3335308,48.6318137 C28.7992891,48.6307464 28.3667062,48.1967417 28.3677705,47.6625 C28.3684834,47.1279028 28.8024882,46.6953199 29.3367299,46.6963843 C29.871327,46.6970972 30.3035545,47.1311019 30.3028445,47.6653436" id="Fill-114" fill="#FF661A"></path>
<path d="M75.3160664,101.652832 C75.3160664,101.652832 78.3448578,108.78814 81.3533886,109.563732 C84.3722275,110.341813 78.2264929,113.324396 77.3563507,113.030794 C76.4474645,112.72404 72.5886967,108.703187 71.1885782,107.353898 C70.4567062,106.648329 69.9416588,106.125462 69.9416588,106.125462 C71.5614455,107.112192 77.0350237,104.472618 75.3160664,101.652832" id="Fill-116" fill="#755135"></path>
<path d="M58.9329028,110.885509 C58.9329028,110.885509 56.4671445,113.459325 56.2094431,115.876742 C55.9510308,118.301979 49.7022156,114.541315 49.8301777,113.83468 C49.9641825,113.096055 52.3257938,110.499135 53.3320735,109.35814 C54.5875237,107.935273 59.521173,108.558732 58.9329028,110.885509" id="Fill-118" fill="#755135"></path>
<path d="M89.8759834,111.816149 C87.3778791,111.407737 83.1050118,108.268756 81.3665047,106.888898 C79.4165047,105.340912 78.6949408,108.001102 79.4499171,110.56923 C79.7531161,111.600391 82.4037085,111.956197 86.9694668,114.143637 C89.8212441,115.509988 92.7547749,113.749799 93.9625948,114.204775 C96.8705332,115.299562 92.70359,112.278945 89.8759834,111.816149" id="Fill-120" fill="#E64D00"></path>
<path d="M95.71141,113.764514 C95.4149645,113.463803 89.8759834,111.816291 89.8759834,111.816291 C92.0307227,112.903614 90.1244431,114.80705 88.1225474,114.158353 C82.6866469,112.396742 83.1195853,111.122808 79.3656754,109.295438 C77.689372,108.479325 79.0852251,114.210249 75.3131872,110.97423 C75.3131872,110.97423 72.7315521,108.993661 73.0631872,110.058235 C74.4121209,114.383709 73.3528791,116.242002 77.2496801,116.185841 C80.2258649,116.143187 85.0379502,117.001244 86.9175711,117.448756 C94.1189929,119.164159 97.2928081,115.366528 95.71141,113.764514" id="Fill-122" fill="#FF5500"></path>
<path d="M43.5510071,116.731706 C44.1805095,115.3259 48.4707938,113.073412 49.2691351,112.523175 C51.6936611,110.852915 50.5281398,112.996991 51.7757701,114.237156 C52.8350118,115.290711 56.6447275,112.859076 56.8743483,113.90872 C57.176481,115.289289 60.9705569,116.840474 63.055628,117.255995 C65.1808649,117.678981 67.4518365,120.098886 65.830628,121.509668 L43.5510071,116.731706 Z" id="Fill-124" fill="#FF5500"></path>
<path d="M14.6024645,69.2179976 C14.6024645,69.2179976 14.7037678,70.4275948 15.0393128,72.9711967 C15.8870616,79.3956043 38.8658531,76.8633768 39.6890758,74.9382583 L39.398673,73.1467891 L14.6024645,69.2179976 Z" id="Fill-126" fill="#E6AC00"></path>
<path d="M43.4034953,119.035877 C42.7185427,116.347607 44.7350118,114.133152 48.5440166,115.599028 C53.8327607,117.634692 57.0687796,116.072133 61.3206754,117.422488 C67.2922393,119.318815 68.2789692,122.791564 61.3452014,122.68955 C52.8289692,122.564431 52.5350118,121.406019 49.4912915,121.540735 C46.1660545,121.687891 44.0123815,121.425924 43.4034953,119.035877" id="Fill-128" fill="#F1F2F2"></path>
<path d="M9.78184834,27.324846 C6.97130332,26.2449882 4.38540284,27.3575474 4.38149289,29.8389455 C4.38149289,29.8389455 0.617274882,30.2878791 1.10637441,34.7967654 C1.10637441,34.7967654 -2.04575829,40.3872867 2.29180095,43.6350355 C2.29180095,43.6350355 3.35921801,48.4908412 8.36609005,47.0509123 C8.36609005,47.0509123 13.4884834,50.9466469 15.8529384,46.5063626 C15.8529384,46.5063626 20.8996209,45.8715284 20.3948815,40.328282 C20.3948815,40.328282 22.7795972,34.0869313 19.9278199,32.717737 C19.9278199,32.717737 18.8191706,27.835628 15.5515166,27.9127607 C15.5515166,27.9127607 12.2255687,25.260391 9.78184834,27.324846" id="Fill-130" fill="#231F20"></path>
<path d="M14.5759123,65.3146564 C16.2710545,60.5146564 19.692263,63.4065995 25.3730687,64.592737 C28.1740166,65.1774526 35.4355095,65.9985427 38.2233057,67.0023341 C39.092737,61.6680924 49.2340877,50.2197512 49.2340877,50.2197512 C49.2340877,50.2197512 56.9029265,45.4289929 53.4401303,50.6850355 C50.4383531,55.2419076 45.7488981,67.6943957 43.1914336,72.4688033 C41.3740166,75.8615758 26.0985427,74.7930924 20.8542299,73.4374052 C17.3082583,72.5203436 12.8804147,70.1150118 14.5759123,65.3146564" id="Fill-132" fill="#755135"></path>
<path d="M37.929064,51.049763 C37.929064,51.049763 38.8621209,51.0604265 38.8944668,51.9796209 C38.8944668,51.9796209 38.311173,51.7787915 37.929064,51.049763" id="Fill-134" fill="#ED5F87"></path>
<path d="M56.5874289,53.1981043 C56.6880213,52.4146919 56.2721445,51.3245261 57.3719076,49.5447867 C58.004609,48.5203791 59.1807938,47.8492891 59.0844668,46.9780806 C58.8914573,45.232109 61.0671682,46.2017773 60.9452488,47.9850711 C60.8858886,48.8498815 59.4601777,50.5350711 60.8905095,50.5716825 C61.8530687,50.596564 62.5383768,50.17109 63.3175237,49.7925355 C64.7123104,49.1150474 65.4470261,47.9939573 67.5783057,47.5574645 C69.7053199,47.121327 70.3924052,48.3767773 68.4985664,48.7677725 C67.0138507,49.0741706 65.9037796,50.3075829 65.3147986,50.7771327 C67.2089929,49.7129147 68.4196564,49.0656398 71.2099408,49.2614929 C72.7988033,49.3731043 72.6537796,50.5837678 71.5124289,50.5958531 C68.7566232,50.625 67.3433531,51.7020142 66.4643246,52.3208531 C67.2388507,52.1317536 69.4884953,51.9614929 71.2461967,52.082346 C73.1183531,52.2117299 72.6018839,53.9804502 70.9312678,53.5372038 C68.3130213,52.8419431 66.2354147,53.92891 66.2354147,53.92891 C66.2354147,53.92891 68.6922867,53.8517773 69.579846,54.6344787 C70.7037796,55.6258294 70.168827,56.4760664 68.9503436,56.0225118 C64.022737,54.1890995 62.5568602,56.7554502 59.8799645,56.4582938 C57.9413389,56.2432464 56.0965521,57.0245261 56.5874289,53.1981043" id="Fill-136" fill="#60412C"></path>
<path d="M67.2609953,53.5316588 L60.1608768,52.4535782 C59.9127725,52.415545 59.7670379,51.8112796 60.0446445,51.6161374 L63.6979621,49.4215877 C63.7559005,49.3814218 63.827346,49.3647156 63.8973697,49.3757346 L70.9974882,50.1193365 C71.4019905,50.1502607 71.320237,50.8135308 71.1137204,50.9564218 L67.4607583,53.4854502 C67.4024645,53.5256161 67.331019,53.5423223 67.2609953,53.5316588" id="Fill-138" fill="#BA9B72"></path>
<path d="M67.2609953,53.1973934 L60.1608768,52.1189573 C59.9127725,52.0812796 59.838128,51.7592417 60.0446445,51.6163507 L63.6979621,49.0873223 C63.7559005,49.0468009 63.827346,49.0304502 63.8973697,49.0411137 L70.9974882,50.1195498 C71.2455924,50.1572275 71.320237,50.4792654 71.1137204,50.6221564 L67.4607583,53.1511848 C67.4024645,53.1913507 67.331019,53.2077014 67.2609953,53.1973934" id="Fill-140" fill="#CEAE7C"></path>
<path d="M63.0011374,45.5854265 L55.8498341,46.1925355 C55.5995972,46.2138626 55.3173697,45.6600711 55.5416588,45.4059242 L58.5800474,42.4219194 C58.6273223,42.3689573 58.6930806,42.3362559 58.7634597,42.3302133 L65.8369194,41.3982227 C66.2375118,41.3338863 66.3125118,41.9971564 66.1450948,42.1844787 L63.1845498,45.4937204 C63.1372749,45.5466825 63.071872,45.5790284 63.0011374,45.5854265" id="Fill-142" fill="#BA9B72"></path>
<path d="M62.9232227,45.260154 L55.7719194,45.867263 C55.5216825,45.88859 55.3741706,45.5932109 55.5415877,45.4058886 L58.5021327,42.0966469 C58.5494076,42.0436848 58.6148104,42.0109834 58.685545,42.0052962 L65.8368483,41.3981872 C66.0870853,41.3768602 66.2345972,41.6722393 66.0671801,41.8595616 L63.1066351,45.1688033 C63.0593602,45.2217654 62.9936019,45.2541114 62.9232227,45.260154" id="Fill-144" fill="#CEAE7C"></path>
<path d="M62.2065995,44.1990284 C62.2169076,44.2573223 62.1266232,44.3223697 62.0050592,44.3436967 C61.8831398,44.3657346 61.7761493,44.3362322 61.7658412,44.2779384 C61.7551777,44.2196445 61.8454621,44.1545972 61.9673815,44.1329147 C62.0889455,44.1112322 62.1962915,44.1407346 62.2065995,44.1990284" id="Fill-146" fill="#BA9B72"></path>
<path d="M63.2010782,43.1163626 C63.2113863,43.1746564 63.1211019,43.2397038 62.9995379,43.2610308 C62.8776185,43.2830687 62.770628,43.2535664 62.7599645,43.1952725 C62.7496564,43.1369787 62.8399408,43.0719313 62.9618602,43.0502488 C63.0834242,43.0285664 63.1907701,43.0580687 63.2010782,43.1163626" id="Fill-148" fill="#BA9B72"></path>
<path d="M64.0437085,42.0621682 C64.0540166,42.1204621 63.9637322,42.1855095 63.8421682,42.2068365 C63.7202488,42.2288744 63.6132583,42.199372 63.6029502,42.1410782 C63.5922867,42.0827844 63.6825711,42.017737 63.8044905,41.9956991 C63.9260545,41.974372 64.0334005,42.0038744 64.0437085,42.0621682" id="Fill-150" fill="#BA9B72"></path>
<path d="M59.7399526,44.5145616 C59.7502607,44.5728555 59.6599763,44.6379028 59.5384123,44.6592299 C59.4164929,44.6812678 59.3095024,44.6517654 59.2991943,44.5934716 C59.2885308,44.5351777 59.3788152,44.4701303 59.5007346,44.4484479 C59.6222986,44.4267654 59.7296445,44.4562678 59.7399526,44.5145616" id="Fill-152" fill="#BA9B72"></path>
<path d="M60.7344668,43.4318957 C60.7447749,43.4901896 60.6544905,43.555237 60.5329265,43.576564 C60.4110071,43.5986019 60.3040166,43.5690995 60.2933531,43.5108057 C60.283045,43.4525118 60.3733294,43.3874645 60.4952488,43.365782 C60.6168128,43.3440995 60.7241588,43.3736019 60.7344668,43.4318957" id="Fill-154" fill="#BA9B72"></path>
<path d="M61.5770972,42.3777014 C61.5874052,42.4359953 61.4971209,42.5010427 61.3755569,42.5223697 C61.2536374,42.5444076 61.1466469,42.5149052 61.1363389,42.4566114 C61.1256754,42.3983175 61.2159597,42.3332701 61.3378791,42.3112322 C61.4594431,42.2899052 61.5667891,42.3194076 61.5770972,42.3777014" id="Fill-156" fill="#BA9B72"></path>
<path d="M57.5933531,44.7322038 C57.6036611,44.7904976 57.5133768,44.855545 57.3918128,44.8772275 C57.2698934,44.89891 57.1629028,44.8694076 57.1525948,44.8111137 C57.1419313,44.7528199 57.2322156,44.6877725 57.3541351,44.66609 C57.4756991,44.6444076 57.583045,44.67391 57.5933531,44.7322038" id="Fill-158" fill="#BA9B72"></path>
<path d="M58.5878673,43.6495379 C58.5981754,43.7078318 58.507891,43.7728791 58.386327,43.7945616 C58.2644076,43.8162441 58.1574171,43.7867417 58.1467536,43.7284479 C58.1364455,43.670154 58.2267299,43.6051066 58.3486493,43.5834242 C58.4702133,43.5617417 58.5775592,43.5912441 58.5878673,43.6495379" id="Fill-160" fill="#BA9B72"></path>
<path d="M59.4304976,42.5953436 C59.4408057,42.6536374 59.3505213,42.7186848 59.2289573,42.7400118 C59.1070379,42.7620498 59.0000474,42.7325474 58.9897393,42.6742536 C58.9790758,42.6159597 59.0693602,42.5509123 59.1912796,42.5292299 C59.3128436,42.5075474 59.4201896,42.5370498 59.4304976,42.5953436" id="Fill-162" fill="#BA9B72"></path>
<path d="M51.6704858,53.5347867 C52.5480924,51.4984123 57.0640877,47.7405924 57.8485664,46.8036256 C59.3066232,45.0619194 57.7725,44.7484123 57.0356517,45.1713981 C55.9348223,45.8030332 55.536718,46.8942654 55.0408649,47.0567062 C54.0711967,47.3748341 53.3290166,45.7418957 53.6439455,45.0135782 C54.0146801,44.1562322 54.6683531,43.222109 55.008519,43.1097867 C55.4638507,42.9587204 55.9454858,43.4712796 56.6720261,44.0325355 C57.3025948,44.5195024 58.5093483,44.0190284 57.6779502,43.2043365 C56.5270024,42.0761374 55.3863626,41.3264929 54.7803199,41.4636967 C54.3008175,41.572109 53.8010545,41.8674882 53.2497512,42.54391 C52.5409834,43.4136967 52.2985664,43.868673 52.1357701,43.9369194 C51.7703673,44.0904739 51.5531872,40.8818246 51.7973815,38.8696209 C51.9665758,37.4737678 50.4157464,37.332654 50.2550829,38.8522038 C49.9525948,41.7089573 50.7146801,44.9549289 50.4694194,45.0071801 C50.3005806,45.0430806 49.4084005,42.4529147 49.1016469,40.0056398 C48.9630213,38.9012559 47.4022393,39.0125118 47.6929976,40.5338389 C48.0783057,42.5495972 49.1158649,45.7472275 48.836481,45.8993602 C48.6424052,46.0045735 47.5163389,43.0273223 47.0809123,42.23609 C46.3973815,40.9941469 45.3694194,41.8770853 45.8283057,42.7408294 C47.6219076,46.1168957 48.0879028,47.2731754 48.5826896,49.3788626 C49.2843483,52.3664218 50.3908649,56.5049289 51.6704858,53.5347867" id="Fill-164" fill="#755135"></path>
<path d="M66.7597393,52.5462085 L61.7450474,51.7844787 C61.5698104,51.7581754 61.4670853,51.3312796 61.6629384,51.1933649 L64.2431517,49.6436019 C64.2843839,49.6151659 64.3345024,49.603436 64.38391,49.6109005 L69.3986019,50.1362559 C69.6847393,50.1582938 69.6268009,50.6267773 69.4807109,50.7273697 L66.9008531,52.5135071 C66.8596209,52.5419431 66.8091469,52.553673 66.7597393,52.5462085" id="Fill-166" fill="#755135"></path>
<path d="M66.7597393,52.310154 L61.7450474,51.5484242 C61.5698104,51.5217654 61.5172038,51.2946327 61.6629384,51.1933294 L64.2431517,49.4071919 C64.2843839,49.3787559 64.3345024,49.3673815 64.38391,49.3744905 L69.3986019,50.1362204 C69.5741943,50.1628791 69.6268009,50.3903673 69.4807109,50.4913152 L66.9008531,52.2774526 C66.8596209,52.3058886 66.8091469,52.3176185 66.7597393,52.310154" id="Fill-168" fill="#755135"></path>
<path d="M67.6488981,50.7529976 C67.6488981,51.1400829 66.7769787,51.4539455 65.7013863,51.4539455 C64.6254384,51.4539455 63.753519,51.1400829 63.753519,50.7529976 C63.753519,50.3662678 64.6254384,50.0524052 65.7013863,50.0524052 C66.7769787,50.0524052 67.6488981,50.3662678 67.6488981,50.7529976" id="Fill-170" fill="#FFF0CA"></path>
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-173"></g>
<polygon id="Fill-172" fill="#FFF0CA" mask="url(#mask-4)" points="63.7531991 50.7529621 67.6485782 50.7529621 67.6485782 47.5212085 63.7531991 47.5212085"></polygon>
<path d="M67.6488981,47.5213152 C67.6488981,47.9084005 66.7769787,48.2219076 65.7013863,48.2219076 C64.6254384,48.2219076 63.753519,47.9084005 63.753519,47.5213152 C63.753519,47.1345853 64.6254384,46.8207227 65.7013863,46.8207227 C66.7769787,46.8207227 67.6488981,47.1345853 67.6488981,47.5213152" id="Fill-174" fill="#FFF0CA" mask="url(#mask-4)"></path>
<path d="M13.2756043,97.8602133 C13.2756043,97.8602133 16.1391114,101.725024 22.0804621,100.003223 C29.9892299,97.7112796 37.0260782,89.35109 38.5363863,87.4174408 C38.5363863,87.4174408 35.506173,91.4781043 34.2702725,94.6906635 C32.9469313,98.1310664 25.7607938,99.0349763 23.920628,101.55263 C22.0804621,104.07064 16.9534479,103.973602 15.6112678,102.650261 C14.2690877,101.326564 11.7510782,102.650261 11.6543957,101.294218 C11.5577133,99.9388863 13.2756043,97.8602133 13.2756043,97.8602133" id="Fill-175" fill="#E6AC00" mask="url(#mask-4)"></path>
<path d="M286.205154,80.6743365 C286.205154,80.6743365 287.732524,91.7089336 283.225415,97.5269431 C279.461908,102.384882 246.889514,97.7160427 243.805273,96.7485071 C240.721742,95.7809716 237.682642,91.3090521 243.805273,91.2987441 C249.928258,91.2880806 268.392476,88.7419905 268.392476,88.7419905 L286.205154,80.6743365 Z" id="Fill-176" fill="#231F20" mask="url(#mask-4)"></path>
<path d="M266.925462,78.4402607 C266.925462,78.4402607 238.715509,75.1932227 237.654135,83.4556635 C236.45769,92.7688152 258.333874,101.707678 266.587429,104.114076 C272.763732,105.914787 273.196315,99.780782 270.613258,98.1265166 C265.81077,95.0500948 266.734941,93.5177488 264.916102,90.738128 C263.097618,87.9581517 271.779846,94.0331517 280.781979,88.577346 C289.784111,83.1211848 286.205083,80.6742654 286.205083,80.6742654" id="Fill-177" fill="#231F20" mask="url(#mask-4)"></path>
<path d="M242.045652,22.8442536 C242.045652,22.8442536 243.727287,32.0152251 246.396007,41.701955 C251.161173,45.2848934 251.71141,46.2765995 254.99577,47.4040877 C263.055604,50.1702014 260.217334,58.2143957 252.325983,55.2748223 C249.510818,54.2258886 240.963306,49.7678318 240.018519,44.6347749 C238.03013,33.8333531 236.54186,25.0096564 236.54186,25.0096564" id="Fill-178" fill="#A57955" mask="url(#mask-4)"></path>
<path d="M268.222109,47.2862915 C273.710616,48.2684005 284.777915,57.928827 284.815948,58.1150829 C285.318199,60.5669787 285.491659,76.146718 286.003863,80.7060782 C286.298175,83.3243246 272.973768,89.4231398 265.408009,78.6096327 C266.681588,71.2958886 263.023649,69.1660308 262.131825,61.2931635 C261.955521,59.7370024 260.520924,59.5820261 259.001374,59.2031161 C256.954692,58.6937559 249.90718,55.179064 247.983839,54.7624763 C247.679929,54.696718 247.438934,54.4727844 247.352204,54.1742062 C246.84391,52.4204147 245.690474,47.2265758 251.215592,44.5262204 C251.37519,44.4487322 255.388934,47.9225474 261.071161,48.3547749 C266.753744,48.7870024 268.222109,47.2862915 268.222109,47.2862915" id="Fill-179" fill="#0FBD8C" mask="url(#mask-4)"></path>
<path d="M265.458341,45.962737 C265.458341,45.962737 265.028957,48.5795616 264.92872,53.4197275 C264.828128,58.2595379 271.878128,54.7309834 272.437962,51.1978081 C272.997796,47.6642773 268.46545,48.9520735 269.942701,42.7192536" id="Fill-180" fill="#A57955" mask="url(#mask-4)"></path>
<path d="M268.908555,83.4953673 C268.800498,84.1817417 269.308436,84.8834005 270.241493,85.3483294 L298.871588,100.013851 C299.930829,100.542405 300.119218,101.455557 299.284621,102.022145 C298.450735,102.589088 296.931896,102.579491 295.94481,102.001884 L268.396706,86.6012915 C267.528341,86.0926422 266.31981,85.8665758 265.206896,86.0098223 C262.870166,86.3105332 259.879052,85.7610071 257.440308,84.4429976 C253.947299,82.554846 252.91045,79.8057938 255.123483,78.3025948 C257.336872,76.7990403 261.962701,77.1104147 265.455711,78.9985664 C267.8941,80.3165758 269.135687,82.054372 268.908555,83.4953673" id="Fill-181" fill="#CEAE7C" mask="url(#mask-4)"></path>
<path d="M264.617275,79.5680687 C267.379479,81.0609597 268.199858,83.2352488 266.449621,84.4242299 C264.699028,85.6132109 261.040735,85.3665284 258.278531,83.8736374 C255.515972,82.3807464 254.695592,80.2068128 256.446185,79.0174763 C258.196777,77.8284953 261.855071,78.0751777 264.617275,79.5680687" id="Fill-182" fill="#AF916B" mask="url(#mask-4)"></path>
<path d="M265.477607,53.8131754 C264.549171,56.2106872 265.911611,65.1374645 267.748934,67.9046445 C271.032938,72.85109 270.045142,80.5032227 269.129147,82.398128 C269.129147,82.398128 270.474171,83.2465877 270.917062,83.4527488 C271.360308,83.6585545 272.486374,73.5317773 269.400711,67.7496682 C265.438863,60.3264455 267.413389,54.1227725 267.413389,54.1227725 L265.477607,53.8131754 Z" id="Fill-183" fill="#0B8E69" mask="url(#mask-4)"></path>
<path d="M274.733566,63.055237 L278.504893,64.5715877 L285.48878,70.9341469 C285.48878,70.9341469 286.209277,77.8572512 286.004182,80.7058294 C285.866268,82.6153081 283.053235,83.647891 281.542927,84.001564 C281.117808,84.1007346 284.380486,79.1994313 283.749917,74.6923223 C282.700273,67.1859242 278.992927,65.0034597 274.733566,63.055237" id="Fill-184" fill="#0DA57A" mask="url(#mask-4)"></path>
<path d="M264.927618,49.0718957 C264.927618,49.0718957 262.082595,53.0444076 264.436031,55.9679858 L266.263045,53.916327 C266.263045,53.916327 264.367784,51.5301896 265.4775,49.252109 L264.927618,49.0718957 Z" id="Fill-185" fill="#0DA57A" mask="url(#mask-4)"></path>
<path d="M267.529443,56.9101777 L266.262974,53.9162204 C268.198756,53.5810308 272.779443,49.6799645 271.257761,48.3701303 C271.257761,48.3701303 272.409419,48.7931161 273.065225,50.0062678 C273.721386,51.2194194 272.723993,53.5717891 271.013566,55.0131398 C269.317002,56.4434716 267.529443,56.9101777 267.529443,56.9101777" id="Fill-186" fill="#0DA57A" mask="url(#mask-4)"></path>
<path d="M294.91436,97.8754621 C293.549787,101.540154 292.431185,102.850699 291.125972,102.454727 C289.820403,102.059111 290.289953,100.970723 290.289953,100.970723 C290.289953,100.970723 289.652986,101.357453 288.777156,100.741457 C287.901682,100.125818 288.364479,99.4166943 288.364479,99.4166943 C288.364479,99.4166943 287.654289,99.8709597 286.690664,99.3086374 C285.726682,98.7459597 286.100972,97.8978555 286.100972,97.8978555 C286.100972,97.8978555 285.25109,98.2842299 284.520284,97.7386137 C283.41981,96.9171682 285.544336,94.951173 286.383555,93.9260545 C287.625853,92.408282 284.07846,94.2360071 282.704645,92.9965521 C281.331185,91.7574526 282.092915,90.4924052 282.654171,90.6552014 C283.215071,90.8179976 284.548365,91.4574526 286.111991,91.1578081 C288.687938,90.6637322 288.975853,89.7207227 291.59481,90.0466706 C295.45109,90.5265284 296.190427,94.4485664 294.91436,97.8754621" id="Fill-187" fill="#B5875C" mask="url(#mask-4)"></path>
<path d="M259.116825,33.4768365 C259.32263,34.4113152 259.479739,37.0128555 259.107227,39.2027844 C258.807227,40.9647512 258.950118,42.7775474 259.589218,44.4463863 C261.090995,48.3687796 263.154739,50.0720972 264.895379,50.2960308 C266.867062,50.5498223 274.652488,46.7070498 275.818009,41.1463863 C275.818009,41.1463863 280.306991,37.8908175 280.772986,33.3748223 C281.085782,30.3453199 279.604621,25.565936 273.716232,23.8981635 C264.310664,21.2347749 258.06327,28.6875 259.116825,33.4768365" id="Fill-188" fill="#B5875C" mask="url(#mask-4)"></path>
<path d="M278.717595,39.7964929 C284.422216,36.1406872 279.254325,27.3973223 279.959538,25.6044313 C280.664751,23.8115403 275.920912,20.3462559 273.943543,21.4751659 C271.966173,22.6037204 268.058709,21.9148578 263.888211,24.4840521 C258.778614,27.6312085 259.782761,29.3633175 259.782761,29.3633175 C259.782761,29.3633175 271.402429,31.5052607 275.53205,36.4772986 C279.662026,41.4496919 278.717595,39.7964929 278.717595,39.7964929" id="Fill-189" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M258.598578,32.7721919 C258.598578,32.7721919 263.854265,31.232737 270.203673,34.7019313 C276.018128,37.8789455 275.818009,41.1465995 276.476303,41.5617654 C277.181872,42.0067891 279.850592,40.6749171 279.665403,39.8218365 C279.480569,38.9687559 277.35,32.9744431 271.392299,30.2726659 C264.65936,27.2193483 259.728555,27.6654384 258.282227,29.0257464 C257.149763,30.0910308 257.659834,33.0832109 258.598578,32.7721919" id="Fill-190" fill="#E6AC00" mask="url(#mask-4)"></path>
<path d="M258.254573,32.5406872 C258.254573,32.5406872 257.514171,32.8346445 257.061327,32.3274171 C256.422583,31.6129621 256.755995,34.5159242 258.409194,34.0417536 C260.062393,33.5672275 260.433483,32.9665166 260.433483,32.9665166 C260.433483,32.9665166 259.936209,33.6596445 259.257654,34.1114218 C258.701374,34.4814455 261.681469,34.5553791 262.917014,32.4816825 C262.917014,32.4816825 260.286327,32.0263507 258.254573,32.5406872" id="Fill-191" fill="#473425" mask="url(#mask-4)"></path>
<path d="M274.666386,39.4497512 C274.666386,39.4497512 274.59032,39.9523578 275.229775,41.1175237 C275.86923,42.2826896 277.158803,42.5425237 276.893637,42.2787796 C276.628472,42.015391 276.445059,41.8902725 276.125154,41.0460782 C275.805249,40.2022393 275.20987,38.758045 274.694822,38.3638507 C274.179419,37.9700118 274.666386,39.4497512 274.666386,39.4497512" id="Fill-192" fill="#473425" mask="url(#mask-4)"></path>
<path d="M259.318685,29.1083531 C258.206836,29.3354858 258.67923,32.0511256 259.360273,31.9018365 C260.041315,31.7521919 259.820936,29.005628 259.318685,29.1083531" id="Fill-193" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M261.168661,28.930628 C260.056813,29.1581161 260.529206,31.8737559 261.210249,31.7241114 C261.891291,31.5744668 261.671268,28.8282583 261.168661,28.930628" id="Fill-194" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M263.216303,28.8855213 C262.090592,29.0284123 262.357536,31.7721327 263.04782,31.6743839 C263.73846,31.5762796 263.724953,28.8208294 263.216303,28.8855213" id="Fill-195" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M265.41686,29.1548616 C264.282263,29.1737204 264.247429,31.9305924 264.944467,31.9085545 C265.641505,31.8865166 265.929419,29.1463507 265.41686,29.1548616" id="Fill-196" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M274.363863,33.2206635 C273.369668,32.6736256 271.970261,35.0490995 272.586256,35.3761137 C273.201896,35.703128 274.813152,33.4677014 274.363863,33.2206635" id="Fill-197" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M276.105889,34.9469076 C275.150794,34.3334005 273.593922,36.608282 274.186102,36.9765284 C274.778282,37.3447749 276.537405,35.2238033 276.105889,34.9469076" id="Fill-198" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M277.681102,36.9369313 C276.853969,36.1595616 274.907879,38.1120498 275.422927,38.5823104 C275.937974,39.0522156 278.05468,37.2881161 277.681102,36.9369313" id="Fill-199" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M278.877974,39.0928791 C278.213637,38.172263 275.932002,39.7198934 276.34859,40.279372 C276.764822,40.8384953 279.177974,39.5084005 278.877974,39.0928791" id="Fill-200" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M267.8684,29.6835427 C266.737358,29.5886374 266.426694,32.3280924 267.12231,32.3760782 C267.818282,32.424064 268.379182,29.7265521 267.8684,29.6835427" id="Fill-201" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M269.970711,30.5631398 C268.850687,30.3804384 268.327109,33.0871919 269.017038,33.1895616 C269.706967,33.2915758 270.476872,30.6456043 269.970711,30.5631398" id="Fill-202" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M272.295889,31.7103555 C271.21923,31.3513507 270.270889,33.9397393 270.935581,34.1505213 C271.600273,34.3616588 272.7825,31.8724408 272.295889,31.7103555" id="Fill-203" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M274.594372,41.8070261 C275.184064,41.9051303 275.778377,41.0591588 276.445201,40.1687559 C277.458235,38.8166232 276.754799,36.9835664 275.498993,36.1095142 C274.022453,35.0815521 272.660012,36.8552488 272.909893,37.821718 C273.081931,38.48641 273.54295,38.0947038 273.522334,39.9554858 C273.509893,41.0947038 273.972334,41.7032346 274.594372,41.8070261" id="Fill-204" fill="#A57955" mask="url(#mask-4)"></path>
<path d="M262.24436,35.4668957 C261.193294,34.8153555 259.195664,35.4356161 259.410355,35.7540995 C259.653839,36.1145261 262.466517,36.5065877 262.759763,36.1475829 C262.877417,36.003981 262.536896,35.6481754 262.24436,35.4668957" id="Fill-205" fill="#473425" mask="url(#mask-4)"></path>
<path d="M266.702773,36.0420498 C267.8459,35.8966706 269.994597,36.9456043 269.624573,37.1819787 C269.205853,37.4499882 265.997559,37.0316232 265.852891,36.522263 C265.794597,36.3175237 266.312488,36.0918128 266.702773,36.0420498" id="Fill-206" fill="#473425" mask="url(#mask-4)"></path>
<path d="M266.069111,45.2264929 C266.163661,45.1959242 266.262476,45.265237 266.262845,45.364763 C266.264609,45.7497156 266.085462,46.5629858 264.565557,46.6589573 C263.136647,46.7492417 262.729301,45.9352607 262.613424,45.4635782 C262.583566,45.3416588 262.708685,45.2414218 262.821718,45.2954502 C263.088661,45.4234123 263.573495,45.5776777 264.31141,45.5357346 C265.161291,45.4873934 265.782974,45.31891 266.069111,45.2264929" id="Fill-207" fill="#FFFFFF" mask="url(#mask-4)"></path>
<path d="M264.115521,38.2973104 C264.115521,38.2973104 264.029147,40.4019313 263.056635,41.3097512 C262.084123,42.2172156 262.926896,43.146718 263.834716,43.168045" id="Stroke-208" stroke="#A57955" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-4)"></path>
<path d="M267.645036,39.3775237 C267.645036,39.882263 267.335438,40.2917417 266.95404,40.2917417 C266.572287,40.2917417 266.263045,39.882263 266.263045,39.3775237 C266.263045,38.8724289 266.572287,38.4633057 266.95404,38.4633057 C267.335438,38.4633057 267.645036,38.8724289 267.645036,39.3775237" id="Fill-209" fill="#231F20" mask="url(#mask-4)"></path>
<path d="M261.762227,38.6353791 C261.762227,39.1401185 261.422773,39.6014929 261.041374,39.6014929 C260.659621,39.6014929 260.380237,39.1401185 260.380237,38.6353791 C260.380237,38.1302844 260.689479,37.7211611 261.071232,37.7211611 C261.45263,37.7211611 261.762227,38.1302844 261.762227,38.6353791" id="Fill-210" fill="#231F20" mask="url(#mask-4)"></path>
<path d="M288.554787,95.0693602 C288.486185,91.7267062 289.332512,78.0504028 289.951351,75.2327488 C288.240569,72.8583412 281.178128,67.6243365 279.996967,65.8922275 C277.227654,61.8304976 282.24519,56.1927014 284.815806,58.1149763 C290.275877,62.1976777 295.474692,68.9622512 295.973389,73.4370142 C296.735474,80.2719668 294.544123,91.902654 294.544123,91.902654" id="Fill-211" fill="#B5875C" mask="url(#mask-4)"></path>
<path d="M232.15987,22.5686374 C232.15987,22.5686374 225.561291,31.1868839 223.599917,32.3769313 C221.566386,32.7295379 215.47468,31.2028791 215.47468,31.2028791 C215.47468,31.2028791 210.589727,38.1757464 212.917571,41.2965995 C219.82859,40.0688744 224.675154,40.3926896 226.885344,39.296481 C229.190794,38.1526422 237.704893,27.568045 237.606789,22.8441114 C237.50904,18.1198223 232.15987,22.5686374 232.15987,22.5686374" id="Fill-224" fill="#414042" mask="url(#mask-4)"></path>
<path d="M227.133235,19.7399645 C229.152903,20.1974289 229.429088,20.7707701 231.405391,22.9308412 C234.768306,26.6069076 239.09378,24.9135427 239.286434,17.4345142 C239.290344,17.2884242 239.284301,17.1458886 239.269017,17.007263 C239.648282,15.2580924 239.977784,12.8776422 239.76096,11.3712441 C239.562263,9.98925355 238.28904,10.0631872 238.259538,11.1963626 C238.232168,12.2424526 238.394254,14.9168602 238.217239,14.7796564 C238.063329,14.6605806 238.147927,10.0774052 237.539751,8.4768128 C236.982405,7.00880332 235.637382,7.34861374 235.887618,8.59055687 C236.172334,9.99956161 236.730391,13.4868839 236.510012,13.3326185 C236.270083,13.1644905 235.938092,9.33984597 234.880983,6.96579384 C234.110367,5.23297393 231.893424,5.77219194 232.697097,7.46911137 C234.486078,11.2461256 235.010367,13.9479028 234.620083,13.907737 C234.292713,13.8736137 234.364159,11.6136611 232.286197,7.92728673 C231.250415,6.08996445 229.422334,6.7546564 230.355391,8.53617299 C231.53122,10.7811967 232.327429,13.2067891 232.456813,15.6085664 C232.546386,17.2866469 232.432642,19.4982583 230.736789,18.2808412 C227.211789,15.7489692 225.271031,19.318045 227.133235,19.7399645" id="Fill-230" fill="#ECC293" mask="url(#mask-4)"></path>
<path d="M232.15987,22.5686374 C233.248258,22.4872393 234.609277,22.3479028 235.352879,24.0849882 C236.572429,26.9339218 243.081434,27.6668602 242.957737,21.0483768 C242.939609,20.0907938 243.553827,17.1856991 244.510344,15.0885427 C245.105367,13.7836848 244.015201,13.2522867 243.353709,14.4697038 C242.835818,15.4226659 242.33641,18.0867654 242.263543,17.8951777 C242.190675,17.7032346 242.347429,14.6481398 243.718756,12.3149645 C244.606315,10.8057227 243.207974,9.94873223 242.362002,11.3268128 C241.249088,13.139609 240.863424,16.7029976 240.73795,16.4950592 C240.601457,16.268282 240.630249,13.1289455 241.973851,10.1765758 C242.761528,8.44588863 240.884396,7.90809242 240.087476,9.73475118 C238.606315,13.1296564 239.171126,16.5458886 238.85904,16.4015758 C238.597073,16.2800118 238.091268,13.093045 239.449799,9.32776066 C239.990794,7.82811611 237.897903,7.61200237 237.214017,9.44292654 C236.276694,11.9524052 236.401813,14.1561967 236.501694,16.6656754 C236.593756,18.9657938 236.441623,20.32859 234.588661,20.0147275 C230.732382,19.3621209 230.440557,22.696955 232.15987,22.5686374" id="Fill-212" fill="#A57955" mask="url(#mask-4)"></path>
<path d="M266.587358,104.113898 L274.871836,108.191979 L279.491623,104.242927 C279.491623,104.242927 273.019941,99.8271682 272.535818,99.328827 C270.665083,97.4037085 264.918519,100.948258 266.587358,104.113898" id="Fill-213" fill="#FFBF00" mask="url(#mask-4)"></path>
<path d="M280.774479,105.311126 C280.103389,103.812192 277.582891,103.227476 276.974005,102.391813 C275.783602,100.758874 273.039171,100.65686 271.709431,101.979135 C270.580166,103.102002 269.506351,102.518353 268.689882,103.32096 C267.14154,104.844064 266.378744,107.201055 264.231825,107.927239 C263.175782,108.284467 258.221161,111.156505 258.890829,113.821315 L280.774479,105.311126 Z" id="Fill-214" fill="#B5875C" mask="url(#mask-4)"></path>
<path d="M280.93173,106.09109 C280.710995,103.141919 279.228412,103.281256 275.167749,104.843815 C274.399976,105.139194 274.291564,103.981848 273.642512,104.257322 C269.525332,106.00436 267.176517,108.070237 263.261232,109.313602 C257.367512,111.185403 257.344052,116.174502 263.244171,116.087773 C272.323081,115.954123 271.29654,111.132441 274.441919,110.437891 C275.563365,111.820592 281.191919,109.574858 280.93173,106.09109" id="Fill-215" fill="#F1F2F2" mask="url(#mask-4)"></path>
<path d="M274.827441,104.880711 C274.827441,104.880711 275.279573,110.906659 275.786445,110.845521 C275.786445,110.845521 275.057773,110.930829 274.441777,110.43782 L273.642725,104.257251 C273.642725,104.257251 273.903626,104.069929 274.251611,104.443863 C274.599953,104.817796 274.659313,104.875024 274.827441,104.880711" id="Fill-216" fill-opacity="0.2" fill="#231F20" mask="url(#mask-4)"></path>
<path d="M249.840391,55.6418246 C250.433993,55.2447867 247.515036,53.0648104 249.656979,48.7805687 C251.798922,44.496327 253.906742,46.6659953 254.22487,46.1221564 C254.355675,45.8996445 252.831505,44.1348341 251.850818,43.825237 C250.869775,43.5156398 246.177121,45.7350711 246.17285,51 C246.167524,57.4005924 249.840391,55.6418246 249.840391,55.6418246" id="Fill-217" fill="#0DA57A" mask="url(#mask-4)"></path>
<path d="M282.061919,68.4133649 C282.655521,68.0159716 281.039289,66.3414455 283.183365,62.0582701 C284.994739,58.4401422 286.227796,59.8196445 286.545924,59.2758057 C286.676374,59.0532938 285.388578,57.0034123 284.360972,57.0393128 C283.333009,57.0748578 279.664408,57.7111137 279.187393,61.8570853 C278.455877,68.2153791 282.061919,68.4133649 282.061919,68.4133649" id="Fill-218" fill="#0DA57A" mask="url(#mask-4)"></path>
<path d="M177.28013,76.113519 C176.271007,76.3541588 175.207855,76.9502488 173.122073,76.4003673 C171.241386,75.9038033 170.333922,75.9887559 168.976102,75.6663626 C167.824443,75.3930213 167.063424,75.1232346 165.366505,74.6604384 C165.366505,75.6165995 168.407382,78.1271445 170.20987,78.2597275 C173.534396,78.8732346 174.155012,79.0665995 175.50359,80.2932583 C176.252168,80.9743009 177.71769,81.4367417 177.152524,80.3270261 C176.533329,79.1113863 176.717808,76.24859 179.414609,76.4764336 C179.744822,75.2426659 177.28013,76.113519 177.28013,76.113519" id="Fill-219" fill="#F1F2F2" mask="url(#mask-4)"></path>
<path d="M179.11987,75.0496209 C177.855889,74.095237 174.271528,75.5156161 172.250794,74.4140758 C170.527571,73.4746209 167.517974,73.8581517 166.103637,74.145 L166.103637,74.0269905 L165.336576,74.0269905 L165.336576,74.5562559 L165.337287,74.5562559 C165.334443,75.105782 167.999254,75.8088626 167.999254,75.8088626 C167.999254,75.8088626 171.74641,77.1243839 174.29641,77.0835071 C176.59013,77.0465403 178.881007,75.9666825 179.404941,75.7043602 L179.517618,75.7043602 L179.517618,75.0496209 L179.11987,75.0496209 Z" id="Fill-220" fill="#F1F2F2" mask="url(#mask-4)"></path>
<path d="M166.102536,73.6267536 C167.516161,73.3395498 170.52718,72.9553081 172.250758,73.8951185 C174.571493,75.1601659 178.955972,73.0981991 179.517583,75.1281754 C179.517583,75.1281754 176.907867,76.5226066 174.296374,76.5649052 C171.746374,76.6054265 167.999218,75.2902607 167.999218,75.2902607 C167.999218,75.2902607 163.609763,74.1329147 166.102536,73.6267536" id="Fill-221" fill="#C49A6C" mask="url(#mask-4)"></path>
<path d="M210.27263,58.097346 C214.345379,57.9988863 223.013389,61.578981 226.750592,63.5026777 C230.868483,65.6222275 226.750592,79.8999526 227.733057,82.9106161 C230.345616,90.9192654 220.937915,90.401019 220.349645,88.5540995 C219.097393,84.626019 216.441469,79.676019 218.575237,70.8665403 C218.575237,70.8665403 208.589573,70.7691469 204.082464,66.7088389 C201.826066,77.4875118 204.308886,82.8555213 200.207701,87.4930806 C196.719668,91.4371564 179.487441,83.1238863 177.681043,81.4131043 C175.206754,79.0703318 176.800237,74.8187915 180.482701,76.6191469 C182.487441,77.5994787 187.645024,78.3462796 189.459597,78.7980569 C190.802488,79.1325355 191.077251,80.0517299 191.170379,78.4859716 C191.304028,76.2370379 192.909242,74.8788626 191.822275,69.7628673 C190.403673,63.0868009 191.357701,56.2390521 192.957583,53.8131043" id="Fill-222" fill="#B5875C" mask="url(#mask-4)"></path>
<path d="M189.407453,33.9295024 C189.407453,33.9295024 188.999751,31.9912322 192.270604,31.5234597 C196.245249,30.9561611 200.85686,26.2208531 215.474751,31.2028436 C220.600699,32.9498815 214.569419,41.5030806 212.917642,41.2969194 C212.917642,41.2969194 208.516457,57.37109 210.305794,60.3302133 C212.09513,63.2900474 197.380201,66.3991706 193.794775,65.360545 C190.209348,64.3222749 191.187547,39.2491706 191.187547,39.2491706 L189.407453,33.9295024 Z" id="Fill-223" fill="#414042" mask="url(#mask-4)"></path>
<polygon id="Fill-225" fill="#535354" mask="url(#mask-4)" points="186.89378 77.7564455 187.870557 78.5363033 214.498045 45.1797867 213.521623 44.3999289"></polygon>
<path d="M214.498116,45.1796445 C218.279396,48.1977725 215.383898,58.1119905 208.030699,67.323128 C200.6775,76.5346209 191.651552,81.5546445 187.870273,78.5365166 C184.089348,75.5180332 186.984846,65.6038152 194.338045,56.3926777 C201.690889,47.1815403 210.716836,42.1611611 214.498116,45.1796445" id="Fill-226" fill="#535354" mask="url(#mask-4)"></path>
<path d="M213.521481,44.4 C217.302761,47.418128 214.406908,57.332346 207.054064,66.5434834 C199.700865,75.7546209 190.674917,80.775 186.893637,77.7565166 C183.112713,74.7383886 186.008211,64.8241706 193.361055,55.6130332 C200.714254,46.4018957 209.740201,41.3815166 213.521481,44.4" id="Fill-227" fill="#404041" mask="url(#mask-4)"></path>
<path d="M212.692393,45.43859 C216.11218,48.1688033 213.295237,57.3838507 206.399858,66.0212915 C199.504834,74.6590877 191.142867,79.4480687 187.722725,76.7178555 C184.302938,73.9876422 187.120237,64.7725948 194.015261,56.135154 C200.910284,47.4973578 209.272251,42.7083768 212.692393,45.43859" id="Fill-228" fill="#535354" mask="url(#mask-4)"></path>
<path d="M196.332654,65.9325 L195.13763,64.9784716 C194.237986,64.2604621 194.090829,62.9488507 194.809194,62.0492062 L199.958602,55.5988507 C200.676611,54.6988507 201.988223,54.5516943 202.887867,55.2700592 L204.082536,56.2240877" id="Stroke-229" stroke="#404041" stroke-width="1.06635071" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-4)"></path>
<path d="M230.182855,7.23220379 C230.419941,6.72675355 231.566979,7.37118483 232.146007,8.41834123 C233.604064,11.0543602 233.886291,13.9153791 234.619941,13.9075592 C234.619941,13.9075592 234.525746,13.9587441 234.389609,13.4006872 C234.253827,12.8426303 233.791031,11.1609953 233.509514,10.4831517 C233.227998,9.80601896 232.449206,7.46182464 231.328116,6.95175355 C230.477879,6.5650237 230.182855,7.23220379 230.182855,7.23220379" id="Fill-231" fill="#ECC293" mask="url(#mask-4)"></path>
<path d="M233.452536,5.90271327 C233.907512,6.17854265 234.362488,6.50520142 235.03891,8.72143365 C235.715332,10.9376659 235.886659,13.3376659 236.510118,13.332343 C236.510118,13.332343 236.42481,13.2751066 236.266635,12.4092299 C236.108104,11.5426422 235.740213,9.49418246 235.44981,8.58067536 C235.159763,7.6668128 234.922322,6.07332938 233.452536,5.90271327" id="Fill-232" fill="#ECC293" mask="url(#mask-4)"></path>
<path d="M192.788566,58.2295735 C192.788566,58.2295735 177.381576,54.7621564 176.821742,50.0051659 C176.009182,43.1023223 188.778021,32.722109 190.760367,31.9337204 C193.48205,30.8517299 195.334656,39.1134597 192.184656,41.7956872 C191.125059,42.6978199 185.910604,47.7633412 185.988448,48.0580095 C188.35077,48.4618009 193.580509,52.5334834 195.50705,53.7213981 C197.326955,54.8442654 192.788566,58.2295735 192.788566,58.2295735" id="Fill-235" fill="#414042" mask="url(#mask-4)"></path>
<path d="M193.391517,60.0044076 C195.014147,62.4538152 196.055616,63.2222986 196.943531,62.7100948 C197.83109,62.1982464 197.262014,61.4805924 197.262014,61.4805924 C197.262014,61.4805924 197.966517,61.576564 198.50218,60.976564 C199.038199,60.3769194 198.340095,59.80891 198.340095,59.80891 C198.340095,59.80891 199.175047,60.0001422 199.784289,59.4243128 C200.393886,58.8488389 199.87564,58.4134123 199.87564,58.4134123 C199.87564,58.4134123 200.532156,58.658673 200.974336,58.1347393 C201.639739,57.3459953 199.750166,56.2693365 198.961066,55.661872 C197.794123,54.7629384 200.700995,55.4962322 201.495071,54.3555924 C202.289502,53.2149526 201.516398,52.4187441 201.133578,52.633436 C200.750758,52.848128 199.884171,53.5433886 198.688791,53.5899526 C196.719597,53.6670853 196.348507,53.0262085 194.48737,53.7104502 C191.747559,54.7185071 191.8741,57.7142417 193.391517,60.0044076" id="Fill-236" fill="#ECC293" mask="url(#mask-4)"></path>
<path d="M188.753993,41.6334597 C189.732192,40.974455 190.089775,40.8934123 190.185391,42.3361848 C190.281007,43.7786019 191.634206,39.3152133 191.634206,39.3152133 L188.922476,39.3152133 L188.753993,41.6334597 Z" id="Fill-237" fill="#414042" mask="url(#mask-4)"></path>
<path d="M197.225261,26.6608294 C197.225261,26.6608294 197.964597,30.1172275 197.225261,30.845545 C196.48628,31.5738626 198.963768,33.5697156 201.751209,33.2945972 C204.538294,33.0194787 205.425853,31.1206635 204.366256,30.2259953 C203.307014,29.3320379 202.920995,27.6990995 202.920995,26.83891 C202.920995,25.9787204 197.051801,25.6733886 197.225261,26.6608294" id="Fill-238" fill="#E8B182" mask="url(#mask-4)"></path>
<path d="M199.619182,4.85338863 C199.619182,4.85338863 191.52878,4.47270142 190.771315,15.2357346 C190.11231,24.6050474 199.683519,30.0263744 202.45532,30.2215166 C205.138969,30.4102607 212.54904,26.1228199 209.991931,20.5109716 C211.813258,6.9093128 206.262903,5.32080569 199.619182,4.85338863" id="Fill-239" fill="#ECC293" mask="url(#mask-4)"></path>
<path d="M206.062216,22.464846 C207.799656,22.5046564 208.819443,20.3829739 207.525249,20.1860545 C206.109846,19.9702962 205.692903,18.8293009 205.902618,16.5718365" id="Stroke-240" stroke="#E8B182" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-4)"></path>
<path d="M203.284941,19.2772393 C203.255438,19.6991588 202.972855,20.0226185 202.654017,20.0002251 C202.335178,19.9778318 202.100936,19.6177607 202.130438,19.1958412 C202.160296,18.7742773 202.442524,18.4508175 202.761363,18.4728555 C203.080201,18.4956043 203.314443,18.8553199 203.284941,19.2772393" id="Fill-241" fill="#231F20" mask="url(#mask-4)"></path>
<path d="M209.55096,18.1869313 C209.521457,18.6084953 209.238874,18.9323104 208.920036,18.9095616 C208.601197,18.8871682 208.366955,18.5270972 208.396457,18.1055332 C208.426315,17.6839692 208.708543,17.360154 209.027382,17.3825474 C209.34622,17.4052962 209.580462,17.7650118 209.55096,18.1869313" id="Fill-242" fill="#231F20" mask="url(#mask-4)"></path>
<path d="M199.260604,16.0865047 C199.460012,16.3754858 199.841055,16.4924289 200.161315,16.3484716 C201.131694,15.9137559 202.47032,16.0982346 202.287263,15.5003673 C202.080036,14.8225237 199.455746,14.6081872 199.162145,15.3397038 C199.044135,15.6336611 199.1234,15.8874526 199.260604,16.0865047" id="Fill-243" fill="#A57955" mask="url(#mask-4)"></path>
<path d="M209.559633,15.155545 C209.43878,15.3929858 209.164017,15.5191706 208.908448,15.4438152 C208.134633,15.2149052 207.146481,15.4889573 207.223614,15.0208294 C207.311055,14.4901422 209.263187,14.0632464 209.558211,14.583981 C209.676576,14.7926303 209.642453,14.9916825 209.559633,15.155545" id="Fill-244" fill="#A57955" mask="url(#mask-4)"></path>
<path d="M203.401564,25.2921327 C204.285213,25.8459242 206.831659,25.5341943 207.855711,24.7948578 C209.148483,23.8618009 207.90263,27.6981754 205.103815,27.9501896 C202.305355,28.2022038 202.517915,24.7386967 203.401564,25.2921327" id="Fill-245" fill="#231F20" mask="url(#mask-4)"></path>
<path d="M207.855782,24.7947156 C207.855782,24.7947156 207.104716,26.2108294 205.389313,26.495545 C203.673555,26.7802607 203.530308,25.3605924 203.530308,25.3605924 C203.530308,25.3605924 204.618697,25.6844076 205.661943,25.5177014 C206.683863,25.3549052 207.855782,24.7947156 207.855782,24.7947156" id="Fill-246" fill="#FFFFFF" mask="url(#mask-4)"></path>
<path d="M194.2291,6.02594787 C194.2291,6.02594787 193.180521,5.46966825 191.499953,6.83033175 C189.693199,8.29336493 188.427085,13.20391 190.267962,17.0409953 C192.108839,20.8780806 191.058483,22.6901659 193.338697,21.8331754 C194.421398,21.4261848 191.024005,16.3293839 195.795213,15.9451422 C198.803033,15.7030806 195.702085,10.0922986 200.360616,13.3112559 C203.507062,15.4844787 212.817014,14.2080569 212.648531,11.4227488 C212.480403,8.63779621 211.168436,10.2248815 209.443436,6.34443128 C207.718081,2.46362559 198.622109,-2.12168246 194.2291,6.02594787" id="Fill-247" fill="#A57955" mask="url(#mask-4)"></path>
<path d="M196.227476,17.1535664 C196.435415,16.8350829 196.35686,16.4042773 196.033756,16.2030924 C195.479609,15.8590166 194.540865,15.6443246 193.396671,16.8421919 C192.000107,18.3038033 193.181623,21.298827 194.997618,21.709372 C195.479609,21.8184953 195.897974,21.3592536 195.783164,20.8783294 C195.685059,20.4688507 195.590154,19.9097275 195.569893,19.231173 C195.544301,18.3756043 195.92641,17.6152962 196.227476,17.1535664" id="Fill-248" fill="#E8B182" mask="url(#mask-4)"></path>
<path d="M242.29436,111.342654 C242.29436,115.911611 234.576114,119.615758 225.054668,119.615758 C215.533223,119.615758 207.814976,115.911611 207.814976,111.342654 C207.814976,106.773697 215.533223,103.06955 225.054668,103.06955 C234.576114,103.06955 242.29436,106.773697 242.29436,111.342654" id="Fill-249" fill="#404041" mask="url(#mask-4)"></path>
<polygon id="Fill-250" fill="#404041" mask="url(#mask-4)" points="203.968756 95.0891588 207.847073 111.837263 242.200273 112.210486 246.275865 94.5890403"></polygon>
<path d="M246.395261,93.6604265 C246.395261,98.4984597 236.840758,102.420853 225.054739,102.420853 C213.268365,102.420853 203.713863,98.4984597 203.713863,93.6604265 C203.713863,88.8223934 213.268365,84.9 225.054739,84.9 C236.840758,84.9 246.395261,88.8223934 246.395261,93.6604265" id="Fill-251" fill="#535354" mask="url(#mask-4)"></path>
<path d="M245.398507,93.6604265 C245.398507,98.0438389 236.290095,101.597275 225.054668,101.597275 C213.818886,101.597275 204.710829,98.0438389 204.710829,93.6604265 C204.710829,89.2770142 213.818886,85.7235782 225.054668,85.7235782 C236.290095,85.7235782 245.398507,89.2770142 245.398507,93.6604265" id="Fill-252" fill="#404041" mask="url(#mask-4)"></path>
<path d="M203.713969,93.6604265 C203.713969,93.6604265 198.729491,112.651777 225.054846,112.651777 C251.379846,112.651777 246.395367,93.6604265 246.395367,93.6604265" id="Stroke-253" stroke="#535354" stroke-width="0.710900474" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-4)"></path>
<path d="M205.651777,96.0520735 C205.651777,96.0520735 208.595616,93.7380924 212.461137,94.0444905 C215.766825,94.3061019 218.71173,91.6423578 221.513389,91.2225711 C224.266351,90.8098934 228.506872,92.4119076 231.109834,92.0404621 C233.712796,91.6686611 236.86955,92.58359 238.530924,93.7604858 C240.192654,94.9366706 243.99846,94.412737 244.98519,95.2597749 C244.98519,95.2597749 241.506398,101.597453 225.054739,101.597453 C209.159716,101.597453 205.651777,96.0520735 205.651777,96.0520735" id="Fill-254" fill="#CCCEA5" mask="url(#mask-4)"></path>
<path d="M206.309538,96.7497867 C206.309538,96.7497867 208.595794,94.5690995 212.461315,94.8427962 C215.766647,95.0770379 218.711908,92.6951659 221.513211,92.319455 C224.266528,91.9504976 228.506694,93.3829621 231.109656,93.0509716 C233.712618,92.7186256 236.869727,93.536872 238.531102,94.5890047 C240.192476,95.6411374 243.480391,95.2824882 244.467121,96.0406635 C244.467121,96.0406635 240.26641,101.597417 225.054562,101.597417 C209.842713,101.597417 206.309538,96.7497867 206.309538,96.7497867" id="Fill-255" fill="#D9DDAF" mask="url(#mask-4)"></path>
<path d="M215.078495,98.3545024 C214.54532,98.0104265 213.97731,98.6296209 213.426718,98.3545024 C212.876126,98.0793839 212.962145,97.3396919 213.97731,96.874763 C214.992476,96.4101896 216.024704,96.9952607 215.646505,97.3738152 C215.26795,97.7523697 216.575296,97.80391 216.351718,98.3026066 C216.12814,98.8020142 215.078495,98.3545024 215.078495,98.3545024" id="Fill-256" fill="#B5875C" mask="url(#mask-4)"></path>
<path d="M234.081363,97.1090403 C234.614538,96.7649645 235.182547,97.3841588 235.73314,97.1090403 C236.283732,96.8339218 236.043803,95.7050118 235.028637,95.2404384 C234.013472,94.7758649 232.7566,95.3712441 233.135154,95.7497986 C233.513709,96.1283531 232.017618,96.6512204 232.241197,97.1499171 C232.464775,97.6493246 234.081363,97.1090403 234.081363,97.1090403" id="Fill-257" fill="#B5875C" mask="url(#mask-4)"></path>
<path d="M227.985604,100.367808 C227.985604,100.367808 229.706339,98.1995616 232.218306,99.129064 C232.218306,99.129064 232.080746,101.090083 227.985604,100.367808" id="Fill-258" fill="#59C059" mask="url(#mask-4)"></path>
<path d="M209.455166,96.8695379 C209.455166,96.8695379 210.219739,95.9059123 211.336209,96.3189455 C211.336209,96.3189455 211.275071,97.1905095 209.455166,96.8695379" id="Fill-259" fill="#59C059" mask="url(#mask-4)"></path>
<path d="M235.524171,99.513519 L234.947275,99.3745379 C234.68282,99.3109123 234.581517,99.106173 234.720853,98.9177844 L235.025118,98.5068839 C235.16481,98.3184953 235.492536,98.2175474 235.756991,98.2808175 L236.333531,98.420154 C236.598341,98.4841351 236.699645,98.688519 236.559953,98.8769076 L236.256043,99.2878081 C236.116351,99.4765521 235.788626,99.5775 235.524171,99.513519" id="Fill-260" fill="#FFFAE6" mask="url(#mask-4)"></path>
<path d="M217.895545,100.1491 L218.472441,100.009763 C218.736896,99.9464929 218.838199,99.7417536 218.698863,99.5533649 L218.394597,99.1424645 C218.254905,98.9537204 217.92718,98.8527725 217.662725,98.9163981 L217.086185,99.0553791 C216.82173,99.1193602 216.720071,99.3237441 216.859763,99.5121327 L217.164028,99.9230332 C217.303365,100.111777 217.63109,100.213081 217.895545,100.1491" id="Fill-261" fill="#FFFAE6" mask="url(#mask-4)"></path>
<path d="M221.433555,94.5490521 L220.847062,94.4591232 C220.577986,94.417891 220.459976,94.2227488 220.582962,94.0233412 L220.851327,93.5879147 C220.974313,93.3881517 221.292441,93.2598341 221.561517,93.3010664 L222.148009,93.3906398 C222.417085,93.431872 222.535095,93.6273697 222.411754,93.8271327 L222.143744,94.2618483 C222.020403,94.4616114 221.70263,94.5899289 221.433555,94.5490521" id="Fill-262" fill="#FFFAE6" mask="url(#mask-4)"></path>
<path d="M226.018649,95.5324408 C223.773981,95.1673934 221.082512,96.2255687 221.130498,97.277346 C221.178483,98.3291232 225.347559,98.7041232 227.551706,98.1243839 C229.756209,97.5446445 227.696374,95.8054265 226.018649,95.5324408" id="Fill-263" fill="#CCCEA5" mask="url(#mask-4)"></path>
<path d="M225.717014,95.8836967 C224.037512,95.6103555 222.023531,96.402654 222.059431,97.1892654 C222.095332,97.9762322 225.214763,98.2570379 226.864408,97.8230332 C228.513697,97.3893839 226.972464,96.0877251 225.717014,95.8836967" id="Fill-264" fill="#D9DDAF" mask="url(#mask-4)"></path>
<path d="M217.811517,94.8579739 C216.955948,94.7186374 215.930474,95.1220735 215.948602,95.5230213 C215.96673,95.9236137 217.555592,96.0665047 218.395877,95.8457701 C219.235806,95.6246801 218.450972,94.9621209 217.811517,94.8579739" id="Fill-265" fill="#CCCEA5" mask="url(#mask-4)"></path>
<path d="M217.696635,94.9919431 C217.056469,94.8877962 216.289052,95.1895735 216.302559,95.489218 C216.316422,95.789218 217.505047,95.8962085 218.133839,95.7309242 C218.76263,95.5656398 218.175071,95.0697867 217.696635,94.9919431" id="Fill-266" fill="#D9DDAF" mask="url(#mask-4)"></path>
<path d="M224.745427,100.071363 C223.889858,99.9320261 222.864384,100.335462 222.882512,100.73641 C222.90064,101.137002 224.489502,101.279893 225.329787,101.059159 C226.169716,100.838069 225.384882,100.175154 224.745427,100.071363" id="Fill-267" fill="#CCCEA5" mask="url(#mask-4)"></path>
<path d="M224.46128,100.402145 C224.13782,100.349538 223.750379,100.501671 223.757133,100.653448 C223.764242,100.80487 224.364597,100.858898 224.68237,100.775367 C224.999787,100.691836 224.702986,100.441244 224.46128,100.402145" id="Fill-268" fill="#D9DDAF" mask="url(#mask-4)"></path>
</g>
<g id="Group-3" transform="translate(114.000000, 91.000000)">
<g id="Group" transform="translate(3.912782, 42.000000)">
<mask id="mask-6" fill="white">
<use xlink:href="#path-5"></use>
</mask>
<use id="Rectangle" fill="#B5875C" transform="translate(34.215830, 19.330313) rotate(8.000000) translate(-34.215830, -19.330313) " xlink:href="#path-5"></use>
<mask id="mask-8" fill="white">
<use xlink:href="#path-7"></use>
</mask>
<use id="Rectangle" fill-opacity="0.15" fill="#000000" transform="translate(34.215830, 19.330313) rotate(8.000000) translate(-34.215830, -19.330313) " xlink:href="#path-7"></use>
<path d="M14.5853449,2.71140169 C19.4486544,3.20704805 23.8117297,6.0027023 28.4315477,7.27570464 C38.7130647,10.1088022 54.1514925,14.2873685 59.2893499,15.0297014 C64.4272072,15.7720342 66.424468,21.0311418 65.2136885,25.6753537 C64.0029089,30.3195656 62.5145021,31.8333272 54.9047292,31.847912 C47.2949562,31.8624336 39.1149138,26.8370603 34.7259701,26.8454539 C30.2308616,26.8540505 14.6834256,20.7648003 10.2007242,19.5295807 C5.71802278,18.2943612 2.92286951,12.3931523 4.36540139,8.20912483 C5.80793328,4.02509741 9.72203538,2.21575533 14.5853449,2.71140169 Z" id="Rectangle-Copy" fill="#B5875C" mask="url(#mask-8)" transform="translate(34.770169, 17.239733) rotate(8.000000) translate(-34.770169, -17.239733) "></path>
<g id="Oval" mask="url(#mask-8)" transform="translate(57.998345, 29.290102) rotate(30.000000) translate(-57.998345, -29.290102) ">
<use fill="#ECC293" fill-rule="evenodd" xlink:href="#path-9"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-10)" xlink:href="#path-9"></use>
</g>
</g>
<g id="Group-2" transform="translate(0.112782, 40.800000)">
<mask id="mask-12" fill="white">
<use xlink:href="#path-11"></use>
</mask>
<use id="Rectangle" fill="#B5875C" transform="translate(34.341189, 20.462814) scale(-1, 1) rotate(9.000000) translate(-34.341189, -20.462814) " xlink:href="#path-11"></use>
<mask id="mask-14" fill="white">
<use xlink:href="#path-13"></use>
</mask>
<use id="Rectangle" fill-opacity="0.15" fill="#000000" transform="translate(34.341189, 20.462814) scale(-1, 1) rotate(9.000000) translate(-34.341189, -20.462814) " xlink:href="#path-13"></use>
<path d="M13.4667296,4.94763298 C17.6497143,6.83298269 22.5043324,6.84024229 27.0111679,8.1535873 C37.0412395,11.0764684 52.0675344,16.8821274 57.0774507,17.6563114 C62.0873671,18.4304953 64.05179,23.7980519 62.8875433,28.5278994 C61.7232966,33.2577469 60.2778306,34.7956949 52.8613405,34.7846637 C45.4448504,34.7735136 35.9471674,31.2435869 33.1779709,29.6167486 C28.7544784,27.0180502 13.6236916,23.3502906 9.25061942,22.0759258 C4.87754721,20.801561 2.13330975,14.7767746 3.5249883,10.5167953 C4.91666684,6.256816 9.28374503,3.06228327 13.4667296,4.94763298 Z" id="Rectangle-Copy-2" fill="#B5875C" mask="url(#mask-14)" transform="translate(33.186916, 19.589262) scale(-1, 1) rotate(9.000000) translate(-33.186916, -19.589262) "></path>
<g id="Oval" mask="url(#mask-14)" transform="translate(10.863748, 31.338288) scale(-1, 1) rotate(31.000000) translate(-10.863748, -31.338288) ">
<use fill="#ECC293" fill-rule="evenodd" xlink:href="#path-15"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-16)" xlink:href="#path-15"></use>
</g>
</g>
<path d="M35.712782,64.6275884 C44.0643445,63.6518087 50.712782,62.2485217 50.712782,59.3137942 C50.712782,56.3790667 43.9970532,54 35.712782,54 C27.4285107,54 20.712782,56.3790667 20.712782,59.3137942 C20.712782,62.2485217 27.3612195,65.6033681 35.712782,64.6275884 Z" id="Oval" fill-opacity="0.15" fill="#000000"></path>
<path d="M34.512782,63.3664458 C41.6991101,62.2831747 47.112782,61.5383247 47.112782,59.2832229 C47.112782,57.0281212 41.4715698,55.2 34.512782,55.2 C27.5539941,55.2 21.912782,57.0281212 21.912782,59.2832229 C21.912782,61.5383247 27.3264538,64.449717 34.512782,63.3664458 Z" id="Oval" fill-opacity="0.5" fill="#FFBF00"></path>
<path d="M37.0866459,61.1988656 C47.6517486,61.1148194 60.1636147,51.3325802 53.7752212,36.0086344 C47.3868276,20.6846886 38.0354061,12.2698143 38.7254606,2.82099429 C39.4155151,-6.62782573 28.2990132,10.0129677 32.1138724,18.2022635 C35.9287317,26.3915594 25.0292083,23.5609472 25.0292083,17.1953873 C25.0292083,10.8298273 17.2675293,19.2781403 21.7009862,28.1080791 C26.1344431,36.9380178 18.312782,39.0727866 18.312782,47.8841483 C18.312782,56.69551 26.5215432,61.2829118 37.0866459,61.1988656 Z" id="Path" fill="#FFBF00"></path>
<path d="M31.591338,54.4079312 C32.9272724,51.1798326 38.9570371,51.1798326 40.3870555,54.4079312 C41.8170738,57.6360297 38.8196669,58.7598698 39.6032969,58.5692175 C45.5905644,57.1125525 48.2541648,52.1598033 46.6577289,45.4592542 C44.7444351,37.4287915 38.702371,35.0167415 38.702371,31.1823981 C38.702371,27.3480547 34.184114,33.7111032 35.6527961,37.863375 C37.1214782,42.0156468 30.4465582,41.8482122 30.4465582,39.3404256 C30.4465582,36.832639 27.0238038,38.9780824 24.8682337,45.4592542 C22.9366885,51.2668484 26.1304066,57.5466774 33.0837948,58.7892538 C33.8902642,58.9333705 30.2554035,57.6360297 31.591338,54.4079312 Z" id="Path-2" fill="#FF661A"></path>
</g>
<g id="Group-3" transform="translate(122.058252, 15.000000)">
<mask id="mask-18" fill="white">
<use xlink:href="#path-17"></use>
</mask>
<g id="Clip-2"></g>
<path d="M24.0250145,73.3755008 C24.0503349,74.2499718 25.5040843,74.1719775 25.8166097,73.3542949 C31.3375296,58.915638 6.4881448,43.5338607 7.54472655,29.8970719 C8.85017111,13.058921 23.2961503,7.1421339 30.8097813,7.47747361 C44.1619217,8.07339348 49.2126068,14.8100196 48.0717445,24.0823603 C46.8433461,34.0631196 41.048243,43.1226832 28.7563015,39.455871 C17.2304813,36.0172911 18.8111941,24.0884705 26.5679004,24.2250504 C28.3432182,24.2559606 25.5738961,30.8506155 33.0922294,29.1742764 C40.6112862,27.4979373 34.9952341,9.49094956 22.0919872,16.6675069 C16.406485,19.8293327 7.42427407,34.9217762 23.8662198,42.2679802 C50.6345249,54.2287893 60.125313,20.6078384 52.2763683,9.3180681 C44.2281164,-2.25816064 8.94855873,-7.11249948 2.11604497,19.325784 C-5.10350832,47.2628526 23.2961503,48.4079677 24.0250145,73.3755008" id="Fill-1" fill-opacity="0.5" fill="#575E75" mask="url(#mask-18)"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 86 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="460px" height="410px" viewBox="0 0 460 410" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Peers Splash</title>
<g id="Peers-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.15">
<path d="M348.853354,392.233293 C447.494383,350.563386 460,214.958061 460,117.995981 C460,21.0339018 315.69231,0 206.132285,0 C96.5722609,0 13.57508,88.5402349 0.579390372,178.53401 C-5.08000917,217.724752 31.340862,343.642921 82.6863854,377.552186 C148.182409,420.806628 293.559708,415.591536 348.853354,392.233293 Z" id="Oval" fill="#4D97FF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 699 B

View file

@ -0,0 +1,229 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300px" height="200px" viewBox="0 0 300 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Play Illustration</title>
<defs>
<polygon id="path-1" points="0.365809249 0.149263006 106.618353 0.149263006 106.618353 30.2286188 0.365809249 30.2286188"></polygon>
</defs>
<g id="Play-Illustration" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-398" transform="translate(0.000000, 1.000000)">
<path d="M181.282803,121.548035 C180.200289,121.922168 179.059682,122.850347 176.821387,121.993699 C174.803324,121.22159 173.829191,121.353815 172.372543,120.852659 C171.136994,120.426503 170.320231,120.00685 168.499422,119.287197 C168.499422,120.774624 170.951879,123.078382 172.886272,123.28474 C175.661705,126.710029 176.905925,126.550925 178.352601,128.45974 C179.155925,129.519711 179.91763,128.897601 179.311127,127.171301 C178.646965,125.279393 180.679769,121.757428 183.573121,122.112052 C183.927746,120.192832 181.282803,121.548035 181.282803,121.548035" id="Fill-1" fill="#FF5E75"></path>
<path d="M183.256951,119.892659 C181.900882,118.407832 178.054639,120.617514 175.886575,118.903353 C174.037587,117.441936 170.807818,118.038902 169.290477,118.485 L169.290477,118.301618 L168.467211,118.301618 L168.467211,119.124884 L168.468078,119.124884 C168.465043,119.980231 171.324581,121.074017 171.324581,121.074017 C171.324581,121.074017 175.345101,123.12026 178.081517,123.056965 C180.542211,122.99974 183.000737,121.319827 183.56302,120.911445 L183.683974,120.911445 L183.683974,119.892659 L183.256951,119.892659 Z" id="Fill-3" fill="#F1F2F2"></path>
<path d="M169.289263,117.678468 C170.806171,117.231936 174.036806,116.634538 175.886228,118.096387 C178.376402,120.065029 183.081026,116.856503 183.684061,120.01474 C183.684061,120.01474 180.883483,122.184971 178.081171,122.25 C175.345188,122.313295 171.324234,120.266618 171.324234,120.266618 C171.324234,120.266618 166.614408,118.465751 169.289263,117.678468" id="Fill-5" fill="#C49A6C"></path>
<path d="M170.502659,117.977384 C171.663642,117.653107 173.988208,117.684754 175.404104,118.745592 C176.773613,119.772616 179.625347,118.781142 181.293988,118.991402 C182.081705,119.090679 182.23474,120.179697 181.517254,120.520882 C180.508873,121.000361 178.93604,121.632876 177.610751,121.661922 C175.516387,121.707876 172.438353,120.222616 172.438353,120.222616 C172.438353,120.222616 168.455116,118.548772 170.502659,117.977384" id="Fill-7" fill="#B58D66"></path>
<path d="M205.531647,82.9985116 C205.531647,82.9985116 205.885838,79.213396 196.112428,81.9155636 C192.053324,83.038396 189.546243,85.3014017 189.084971,86.6596387 C188.475867,88.4527023 187.194364,91.780448 190.70896,93.3623844 C190.531647,99.7993786 205.531647,82.9985116 205.531647,82.9985116" id="Fill-9" fill="#0DA57A"></path>
<path d="M47.2875,38.8817341 C49.4620665,52.8872254 43.3220376,55.4762428 44.4171243,59.0259538 C45.1649566,61.4476301 38.1882225,71.9497977 39.3231936,77.3914162 C41.6529624,88.555578 23.4570087,92.604711 14.8081647,80.6012428 C11.4609104,75.9564451 25.0311416,55.4606358 25.0311416,55.4606358 L28.346315,42.0880925 L33.1554191,35.5067341 L42.1059971,40.8096243 L47.2875,38.8817341 Z" id="Fill-11" fill="#FFAB1A"></path>
<path d="M2.90631503,86.5276734 C0.383627168,93.9275289 26.6249566,100.706142 24.2843497,85.9519509 C23.9141185,83.621315 31.7687428,77.6733382 34.5762572,73.9224711 C35.8698988,72.1944364 38.8677312,73.2418353 38.8677312,73.2418353 C38.8677312,73.2418353 48.9736561,81.0327312 53.4948988,80.5237717 C60.5592052,79.728685 62.8568931,79.9866329 65.6089162,79.6480491 C66.8032803,79.5010838 67.9044364,82.3437139 69.6966329,81.836922 C75.413974,80.220737 74.1190318,69.4853324 70.1488006,69.8854769 C67.7028468,70.1321532 59.038396,71.0200145 52.9209104,72.1610549 C50.6535694,72.5841763 36.1659971,56.4322977 25.872789,55.3805636 C21.4135405,54.9253613 17.8308815,59.571026 15.5674422,65.1023844 C15.5674422,65.1023844 5.4558815,79.0476156 2.90631503,86.5276734" id="Fill-13" fill="#4D97FF"></path>
<path d="M7.28284682,78.3914306 C7.28284682,78.3914306 -2.45501445,90.3424422 0.589638728,103.682471 C1.15539017,106.160506 3.63385838,116.969176 4.21044798,122.339263 C1.19874277,133.827269 4.58458092,145.910072 5.49021676,148.646488 C5.49021676,148.646488 7.77099711,151.064697 11.6740318,148.76224 C11.6740318,148.76224 12.3377601,134.806171 15.3386272,123.124812 C17.4065462,115.075101 14.6007659,103.447066 15.5788006,103.138396 C16.5477312,102.83276 21.7912283,108.699668 22.8091474,116.539552 C20.3718642,127.973367 21.3910838,142.668598 21.3910838,142.668598 C21.3910838,142.668598 25.0808237,145.325679 29.0449855,141.430448 C29.0449855,141.430448 29.3202746,127.039552 32.4377601,115.164841 C31.9218642,105.977124 25.3084249,91.7314595 23.7637717,85.4761127 C23.7637717,85.4761127 18.2996098,87.8427312 14.3779335,86.3574711 C4.71767341,82.6993786 7.28284682,78.3914306 7.28284682,78.3914306" id="Fill-15" fill="#231F20"></path>
<path d="M23.9941474,66.8517919 C22.6090318,74.1549711 23.404552,83.211763 24.6717486,84.6007803 C29.5558526,89.9543931 33.6153902,95.2078613 35.2085983,97.7257803 C36.4007948,99.6098844 34.920737,107.648757 30.3262283,105.81841 C27.8503613,104.831272 25.2938584,98.9821387 22.9398121,96.9046821 C20.5809971,94.8228902 18.5208815,89.2360405 16.2934249,86.5993353 C8.90093931,77.8486127 12.6652457,57.6246243 25.8726156,55.3806936 C25.8726156,55.3806936 24.5638006,55.9568497 24.6322977,58.661185 C24.7007948,61.3663873 23.9941474,66.8517919 23.9941474,66.8517919" id="Fill-17" fill="#4D97FF"></path>
<path d="M66.7229046,77.6552168 C63.7038295,76.3182225 63.311922,76.7556503 61.6120665,76.5068064 C58.4538295,76.0442341 59.3494942,74.2320954 60.4276734,73.9767486 C62.0395231,73.5943786 63.5984827,74.3799277 64.1863439,74.0773266 C65.3360549,73.4846965 64.0935694,71.0218353 63.0123555,70.5453902 C61.7403902,69.983974 60.1510838,69.6120087 59.746604,69.8183671 C59.2051301,70.0953902 59.3924133,71.1072399 59.4353324,72.4069509 C59.4726156,73.5354191 57.9231936,74.1596965 57.678685,72.4875867 C57.3396676,70.1721243 57.4211705,68.2724133 58.070159,67.8362861 C58.5830202,67.4911994 59.3247832,67.3268931 60.5390896,67.5206792 C62.1006503,67.7703902 62.8125,68.0244364 63.0227601,67.9411994 C63.4940029,67.7539162 61.0190029,65.3942341 58.5435694,63.4741474 C56.8263728,62.1423555 57.9296965,60.4988584 59.7804191,61.9715462 C63.2590318,64.7404769 65.3325867,67.6641763 65.5914017,67.484263 C65.7691474,67.3607081 64.5440029,65.0135983 62.0252168,62.0972688 C60.888078,60.7810838 62.2857659,59.3994364 63.770159,61.3082514 C65.7370665,63.8370087 67.5314306,66.9748699 67.9307081,66.8690896 C68.2085983,66.7953902 66.7354769,63.8088295 66.1948699,62.5420665 C65.3464595,60.5547832 67.1828757,60.5114306 67.7863439,61.8779046 C70.1447254,67.2189451 70.0953035,67.6208237 72.0747832,70.3511705 C74.8831647,74.2255925 71.1257948,79.6052168 66.7229046,77.6552168" id="Fill-19" fill="#F6DDC3"></path>
<path d="M21.6234971,141.638844 C25.8339017,145.136965 23.6172832,138.111243 26.7260983,140.286676 C28.9773988,141.86211 33.4700289,147.234364 37.3002312,148.11659 C37.8404046,148.241012 38.7083237,149.399393 38.3307225,150.564277 C37.6258092,151.562688 33.212948,155.944335 27.3334682,151.718757 C23.2071676,148.753439 20.8734971,149.723237 20.6645376,147.760665 C20.5843353,147.008931 20.1282659,140.396792 21.6234971,141.638844" id="Fill-21" fill="#9966FF"></path>
<path d="M26.7555347,143.64091 C25.4900723,141.537009 27.4985983,137.020968 29.2786561,137.43802 C30.4331358,137.70854 29.6727312,139.048569 30.5207081,140.728916 C31.4631936,142.597847 30.4881936,144.815766 35.2738873,147.301604 C36.4929624,147.934986 34.5741763,149.111142 33.5241763,148.808107 C30.6052457,147.965332 26.7555347,143.64091 26.7555347,143.64091" id="Fill-23" fill="#774DCB"></path>
<path d="M38.2270231,149.090462 C38.2270231,149.090462 35.5352601,151.772688 32.8265896,151.962572 C28.5654624,152.261272 27.6485549,149.208382 25.0413295,148.375578 C22.4349711,147.542775 22.2719653,144.710116 20.5460983,145.603179 C20.5460983,145.603179 20.5096821,147.962861 20.7416185,148.636994 C20.9731214,149.311127 23.7095376,149.475434 26.1663295,151.241618 C28.6231214,153.008237 30.574422,154.748844 34.2251445,153.467341 C37.8758671,152.186272 38.3601156,151.076879 38.6683526,150.288295 C38.9445087,149.581647 38.6722543,148.812572 38.2270231,149.090462" id="Fill-25" fill="#F1F2F2"></path>
<path d="M34.2988439,146.751373 C35.0830925,146.837211 33.4040462,145.648916 33.016474,145.606431 C31.9339595,145.487645 30.1187861,146.272327 29.7390173,147.570737 C29.4741329,148.477673 31.3122832,148.96409 31.5689306,148.326806 C31.9274566,147.435043 33.5813584,146.672905 34.2988439,146.751373" id="Fill-27" fill="#F1F2F2"></path>
<path d="M31.5531069,144.100275 C32.3373555,144.186113 31.4334538,142.915014 31.0927023,142.72513 C30.1333092,142.19146 27.162789,143.042471 26.7834538,144.340882 C26.5181358,145.248251 28.5665462,146.312991 28.8231936,145.675275 C29.1817197,144.783945 30.8356214,144.021373 31.5531069,144.100275" id="Fill-29" fill="#F1F2F2"></path>
<path d="M139.537066,73.5019942 C139.355419,74.0295954 140.395014,74.2736705 141.138078,74.1592197 C141.881142,74.0447688 142.038512,73.2587861 141.138078,73.2301734 C140.237645,73.2019942 139.68013,73.0875434 139.537066,73.5019942" id="Fill-33" fill="#231F20"></path>
<path d="M118.198613,112.728902 C116.211763,114.529769 115.693699,116.427312 114.558295,118.672977 C113.958728,119.857803 112.694133,122.942775 115.199046,125.003324 C118.144855,127.427601 121.258006,131.948844 124.544566,133.509538 C127.212486,134.776301 130.533295,132.725289 130.132283,131.035838 C130.132283,131.035838 124.101936,122.656214 121.503382,122.049711 C121.503382,122.049711 125.734595,116.803179 126.571734,115.031792 C127.408873,113.260405 118.198613,112.728902 118.198613,112.728902" id="Fill-35" fill="#4C392B"></path>
<path d="M131.061069,89.4493353 C131.061069,89.4493353 130.083035,87.8088728 128.515838,89.2720231 C126.948642,90.7351734 128.61685,96.5210116 131.195029,94.1934104" id="Fill-37" fill="#35271E"></path>
<path d="M149.271503,89.1787717 C149.271503,89.1787717 150.519624,87.8487139 152.278873,89.3118642 C154.037688,90.7750145 152.165289,96.5608526 149.271503,94.2332514" id="Fill-39" fill="#35271E"></path>
<path d="M113.579653,150.086402 C116.572283,144.444494 122.881387,141.343916 126.805665,136.183656 C126.805665,136.183656 135.197428,137.924263 141.389046,137.673685 C146.922139,137.449986 151.481098,135.51646 151.481098,135.51646 C154.863902,140.185101 152.810289,143.613425 152.810289,150.401575 C152.810289,155.283512 149.352486,182.678454 147.131965,184.973107 C144.911445,187.267327 140.461734,187.370506 138.807399,183.905332 C137.786445,181.767182 139.91159,160.9575 140.023439,152.2575 C140.101908,146.115737 136.098295,148.46935 126.924451,152.248829 C133.038902,150.989003 154.472428,155.614725 160.172861,154.043194 C165.873295,152.471662 164.510289,161.783801 159.549451,162.413714 C159.549451,162.413714 127.128642,160.588569 117.004942,161.133945 C113.067659,161.345939 110.793382,155.337702 113.579653,150.086402 Z" id="Fill-41" fill="#231F20"></path>
<path d="M128.647283,112.860564 C132.152775,113.555939 126.334422,129.131662 125.407543,133.303483 C125.198584,134.243801 124.866936,136.123569 125.828497,136.183829 C129.360867,136.403627 134.907399,141.551749 142.622861,140.609697 C149.192948,139.806806 148.963613,136.35724 153.338757,136.735275 C154.240491,136.813309 152.930809,133.881373 152.810289,132.984408 C152.212457,128.542934 150.050462,114.922413 151.010289,113.477038 L156.168815,119.404205 C156.168815,119.404205 156.431098,117.781517 158.10711,116.124147 C160.705231,113.555939 164.405809,114.69698 164.405809,114.69698 C161.456098,110.971257 156.192225,100.041199 147.181821,101.385997 C139.504509,102.53224 132.152775,100.518078 132.152775,100.518078 C123.693815,100.333396 117.157977,112.671113 114.840347,114.620246 C114.840347,114.620246 118.835723,114.185419 121.335434,115.95724 C123.835145,117.728627 124.622861,119.136286 124.622861,119.136286 L128.647283,112.860564 Z" id="Fill-43" fill="#FFFFFF"></path>
<path d="M139.922775,107.437673 C142.673931,107.437673 145.206156,105.893887 145.197076,104.042731 C145.187081,102.016864 143.103121,103.774379 143.224075,96.1248121 C143.285202,92.2603613 137.327254,93.1456214 137.346329,96.6081936 C137.386647,103.854581 134.899942,101.231749 134.850087,103.841142 C134.814971,105.692731 137.46685,107.437673 139.922775,107.437673" id="Fill-45" fill="#35271E"></path>
<path d="M140.47461,76.7056214 C135.391951,76.7056214 130.132413,78.7332225 130.132413,89.8787428 C130.132413,99.5810549 136.754523,104.397095 139.624899,104.397095 C142.404234,104.397095 150.230679,100.231777 150.717962,92.4955058 C151.608858,78.3482514 144.415361,76.7056214 140.47461,76.7056214" id="Fill-47" fill="#4C392B"></path>
<path d="M139.299581,95.2388584 C138.444234,96.6538873 142.202905,97.457211 141.40435,95.1664595" id="Stroke-49" stroke="#35271E" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M152.189566,132.698627 C152.372514,133.518425 153.56341,133.135188 153.650983,133.639379 C153.738988,134.143569 152.788699,134.392847 152.810376,134.868858 C152.831618,135.34487 153.48711,135.326662 153.656618,136.094003 C153.826561,136.861344 152.788266,136.93461 152.189566,136.79935 C151.590867,136.663656 151.010376,136.663656 151.010376,136.663656 L152.189566,132.698627 Z" id="Fill-51" fill="#FFAB1A"></path>
<path d="M145.013107,94.0631358 C145.013107,94.5001301 144.745621,94.8538873 144.415275,94.8538873 C144.085361,94.8538873 143.817876,94.5001301 143.817876,94.0631358 C143.817876,93.6265751 144.085361,93.2728179 144.415275,93.2728179 C144.745621,93.2728179 145.013107,93.6265751 145.013107,94.0631358" id="Fill-53" fill="#231F20"></path>
<path d="M156.168772,119.404118 C156.168772,119.404118 156.594928,120.297616 157.313714,120.762355 C153.927876,121.909465 151.973107,128.351228 147.39854,130.328107 C143.028165,132.216546 146.57354,135.187934 150.587558,133.902962 C161.229754,130.497182 165.96646,123.961344 167.555766,122.734465 C168.815159,121.761633 164.898251,115.957153 162.837269,114.133743 C162.837269,114.133743 159.671662,114.500072 158.107066,116.124494 C156.542038,117.748483 156.168772,119.404118 156.168772,119.404118" id="Fill-55" fill="#4C392B"></path>
<path d="M136.626416,94.0631358 C136.626416,94.5001301 136.358931,94.8538873 136.029017,94.8538873 C135.698671,94.8538873 135.431185,94.5001301 135.431185,94.0631358 C135.431185,93.6265751 135.698671,93.2728179 136.029017,93.2728179 C136.358931,93.2728179 136.626416,93.6265751 136.626416,94.0631358" id="Fill-57" fill="#231F20"></path>
<path d="M137.686561,90.5073121 C137.615896,90.6221965 136.468786,90.3490751 135.430925,90.5515318 C134.083092,90.8142486 132.781214,91.521763 132.840607,91.2421387 C132.903035,90.9469075 133.829913,89.4807225 135.041618,89.1568786 C136.126734,88.8668497 137.501012,89.6857803 137.686561,89.9185838 C137.844798,90.1154046 137.79841,90.3256647 137.686561,90.5073121" id="Fill-59" fill="#231F20"></path>
<path d="M142.350564,88.7876012 C142.41776,88.9046532 143.53409,88.5782081 144.565014,88.8140462 C145.903743,89.1205491 147.220795,89.959422 147.170939,89.6780636 C147.117616,89.3802312 146.237991,87.8854335 145.037558,87.5225723 C143.962413,87.1978613 142.562558,87.9725723 142.369205,88.1988728 C142.205332,88.3904913 142.244783,88.6024855 142.350564,88.7876012" id="Fill-61" fill="#231F20"></path>
<path d="M138.025231,99.6629913 C139.065694,99.2697832 141.182601,99.323974 142.14763,99.623974 C143.030723,99.8988295 141.861069,101.777731 140.298642,102.044783 C138.736214,102.312269 137.278699,99.9447832 138.025231,99.6629913" id="Fill-63" fill="#231F20"></path>
<path d="M150.488064,133.114379 C150.664075,133.808887 150.70526,134.585332 149.757572,136.228396 C149.212197,137.173916 149.689075,138.371749 149.800491,139.159032 C150.023324,140.735766 147.669711,139.781142 147.730838,138.161922 C147.760751,137.376373 147.715231,135.406864 146.540376,135.393858 C145.666821,135.384321 144.87,135.575506 144.32159,136.138656 C143.433295,137.050795 142.273179,137.634754 140.88763,139.038945 C139.653382,140.290535 138.103092,139.209321 139.259306,137.890968 C140.056127,136.982298 142.127948,135.628829 142.648613,135.187066 C140.960896,136.203251 139.807717,135.850795 137.426358,137.44487 C135.999191,138.399928 135.274335,136.923338 136.139653,136.279552 C138.145145,134.788223 139.561474,134.47565 140.889364,134.059899 C140.192688,134.252384 138.032428,133.925939 136.56841,134.565824 C134.940087,135.276806 134.506127,133.746893 136.02,133.146893 C138.303815,132.241691 141.603815,132.497905 141.603815,132.497905 C141.603815,132.497905 138.234884,131.974205 137.426358,131.960332 C135.68185,131.930419 136.689364,130.760766 137.426358,130.776806 C142.192543,130.879986 142.428815,129.35354 144.863064,129.549061 C146.626214,129.691257 149.705983,130.02854 150.488064,133.114379" id="Fill-65" fill="#4C392B"></path>
<path d="M125.828497,136.183786 C124.31159,136.031618 123.914046,135.482341 123.96737,134.897514 C124.048439,134.006618 125.081532,134.431474 125.101908,133.783353 C125.12185,133.135231 124.336301,133.241879 124.453786,132.305029 C124.554798,131.494769 125.767803,131.593613 125.911734,130.835376" id="Fill-67" fill="#FFAB1A"></path>
<path d="M130.439566,85.6327023 C130.439566,85.4944075 129.781474,73.5867486 140.344335,73.5867486 C150.793613,73.5867486 150.793613,85.6327023 150.793613,85.6327023" id="Fill-71" fill="#4280D7"></path>
<polygon id="Fill-73" fill="#FF661A" points="144.354754 130.676185 154.800997 129.981243 144.301864 131.87922"></polygon>
<polygon id="Fill-75" fill="#FF5500" points="145.078483 133.424263 154.801171 129.981633 144.302038 131.87961"></polygon>
<polygon id="Fill-77" fill="#FF661A" points="144.302038 131.879393 145.669812 133.866676 143.309263 142.241098 138.163309 132.161618 139.007818 130.577081"></polygon>
<polygon id="Fill-79" fill="#FF661A" points="144.302038 131.879393 144.416922 129.251358 140.590621 120.52578 137.800014 126.984884 139.007818 130.577081"></polygon>
<polygon id="Fill-81" fill="#FF5500" points="139.724003 130.753266 143.235997 129.226387 144.302038 131.879566"></polygon>
<polygon id="Fill-83" fill="#E64D00" points="143.23578 129.226171 138.766127 129.859552 139.723786 130.753049"></polygon>
<polygon id="Fill-85" fill="#FF5500" points="141.65896 131.229538 143.309393 142.241098 142.012717 131.316243"></polygon>
<polygon id="Fill-87" fill="#FF5500" points="141.478006 129.475101 140.591012 120.52539 141.833497 129.424812"></polygon>
<polygon id="Fill-89" fill="#FF5500" points="139.724003 130.753266 137.022269 122.892572 136.314754 122.734335 132.152905 123.968584 136.74828 124.696908 138.281228 131.940694 139.007818 130.577254"></polygon>
<polygon id="Fill-91" fill="#E64D00" points="136.314624 122.734292 136.314624 122.734292 132.152775 123.96854 136.292948 124.032269 136.825751 125.003367"></polygon>
<path d="M134.883208,85.6327023 C134.883208,85.4944075 134.512543,73.5867486 140.461387,73.5867486 C146.346503,73.5867486 146.346503,85.6327023 146.346503,85.6327023" id="Fill-93" fill="#231F20" opacity="0.1"></path>
<path d="M130.875217,131.210506 C131.93302,128.884205 132.194003,127.793454 133.169436,126.776835 C135.123772,124.738396 133.439957,123.902124 132.65354,124.484783 C131.31828,125.474957 131.375072,127.623512 130.774205,127.645188 C129.598916,127.688107 129.92276,127.424957 129.901951,126.510217 C129.876373,125.403425 130.244003,124.304003 130.56698,124.046922 C131.545014,123.267876 132.184032,124.069465 133.178974,123.774668 C134.509032,123.380159 134.890535,121.682038 132.798338,122.213107 C132.083454,122.394321 130.583887,122.012384 129.712066,122.800968 C128.752673,123.668887 127.80065,124.682038 127.778107,124.884494 C127.733887,125.28724 126.84646,126.314263 125.943425,126.726546 C125.225506,127.054292 124.568714,126.822355 124.283887,127.135361 C123.572471,127.917442 124.570448,129.892153 124.019003,131.256026 C122.694147,134.535217 128.901806,135.549668 130.875217,131.210506" id="Fill-95" fill="#4C392B"></path>
<path d="M126.981763,124.60474 C127.215434,124.334653 127.997081,124.069769 128.477428,124.428728 C128.850694,124.707486 129.864711,126.74289 130.588699,127.638988 C131.635231,128.934364 129.35185,129.018035 128.803006,127.795491 C128.49,127.099249 128.056474,125.959075 127.468179,125.990289 C126.879884,126.021503 126.420347,125.253295 126.981763,124.60474" id="Fill-97" fill="#35271E"></path>
<path d="M124.284061,127.135188 C124.483049,126.904986 125.147645,126.13591 125.556893,126.44198 C125.875101,126.679986 127.42539,128.663367 127.503858,129.661777 C127.557616,130.353251 126.710506,130.533165 126.091431,130.800217 C125.288974,131.146171 124.883194,130.427818 125.935795,129.5625 C125.254292,128.688512 125.200535,128.290101 124.698945,128.31698 C124.197355,128.343425 123.805448,127.688367 124.284061,127.135188" id="Fill-99" fill="#35271E"></path>
<path d="M125.458483,125.78211 C125.657471,125.552341 126.317731,124.91289 126.727413,125.21896 C127.045621,125.457399 129.259639,128.102775 129.337673,129.100751 C129.391864,129.792225 128.544754,129.972139 127.925679,130.239191 C127.122789,130.585578 126.717009,129.866792 127.770043,129.001474 C127.088107,128.127486 126.374957,126.937457 125.873367,126.964335 C125.371777,126.990347 124.97987,126.335289 125.458483,125.78211" id="Fill-101" fill="#35271E"></path>
<path d="M129.551792,86.6881214 C127.590087,89.6014162 131.069133,86.2754046 140.235607,86.4123988 C148.587052,86.5372543 152.770578,89.3022832 151.976358,87.6622543 C150.770289,85.172948 148.285318,83.1609538 140.462775,83.1843642 C131.878526,83.2099422 130.651647,85.0545954 129.551792,86.6881214" id="Fill-103" fill="#4D97FF"></path>
<path d="M30.049552,60.5313728 C31.2868353,62.8464017 31.9102457,61.351604 32.7335116,59.3465462 C33.4674711,57.558685 31.4801879,56.9859971 35.9403035,52.6455347 C38.583078,50.0734249 31.1988295,46.2120087 29.8414595,49.2232803 C27.0001301,55.526315 25.1090896,53.825159 25.6128468,56.0161994 C26.0082225,57.7381647 29.1291763,58.8094075 30.049552,60.5313728" id="Fill-107" fill="#F6DDC3"></path>
<path d="M37.6271532,31.2863443 C32.1942052,31.2475578 27.0655925,36.1602746 26.4911705,41.0114306 C26.0320665,44.8910549 29.0281647,45.7199566 30.7349566,48.8929335 C28.8339451,53.8953902 35.7851012,57.309841 38.7790318,57.309841 C39.3781647,57.309841 45.3595231,53.8455347 44.6364017,48.1316618 C45.991604,44.7423555 47.282211,43.159552 46.624552,41.2862861 C44.6433382,35.6391763 43.0605347,31.3255925 37.6271532,31.2863443" id="Fill-109" fill="#F6DDC3"></path>
<path d="M40.0955636,51.3041185 C41.3553902,51.7532514 42.7795231,50.6690029 41.9931069,50.3334538 C40.9361705,49.8825867 41.1295231,48.7376445 42.1053902,45.9808526" id="Stroke-111" stroke="#E8C5AC" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M38.7088439,46.4718208 C38.6247399,46.958237 38.2579769,47.3007225 37.8903468,47.2374277 C37.5227168,47.1732659 37.2925145,46.7276012 37.377052,46.241185 C37.4611561,45.7543353 37.8279191,45.4118497 38.1955491,45.4751445 C38.5631792,45.5393064 38.792948,45.9849711 38.7088439,46.4718208" id="Fill-113" fill="#231F20"></path>
<path d="M43.9320954,48.0280925 C43.8479913,48.5145087 43.4812283,48.8569942 43.1135983,48.7936994 C42.7459682,48.7295376 42.5157659,48.2838728 42.6003035,47.7974566 C42.684841,47.3110405 43.0511705,46.9681214 43.4188006,47.0318497 C43.7868642,47.095578 44.0161994,47.5416763 43.9320954,48.0280925" id="Fill-115" fill="#231F20"></path>
<path d="M51.9565751,140.162558 C69.5590318,137.841893 86.1765173,143.62513 86.1578914,154.231344 C86.1496387,158.871373 78.1996387,160.121662 66.7779624,162.358223 C53.0473266,165.046517 36.4888006,160.70302 31.5322977,154.194061 C23.6651012,143.864003 34.7386561,142.431633 51.9565751,140.162558" id="Fill-117" fill="#575E75"></path>
<path d="M80.258974,144.686618 C80.258974,144.686618 67.0173555,151.197746 56.5650434,147.385318 C46.1127312,143.57289 41.6096965,141.644133 41.6096965,141.644133 C41.6096965,141.644133 55.7916329,139.682428 61.6268931,139.682428 C73.2982803,139.681994 80.258974,144.686618 80.258974,144.686618" id="Fill-119" fill-opacity="0.1" fill="#231F20"></path>
<path d="M69.4489595,131.369263 C83.9911561,132.617818 84.8863873,137.938483 77.8628324,142.811315 C71.1236705,147.486893 44.8962139,144.880968 36.790578,138.265361 C28.6849422,131.649321 55.224104,130.148454 69.4489595,131.369263" id="Fill-121" fill="#666F87"></path>
<path d="M72.2145954,131.677457 C72.2145954,131.677457 70.167052,138.028613 60.3459538,137.44552 C50.525289,136.861994 42.8024566,132.189451 42.8024566,132.189451 C42.8024566,132.189451 52.6604046,130.937861 60.6130058,130.982081 C68.5656069,131.026301 72.2145954,131.677457 72.2145954,131.677457" id="Fill-123" fill-opacity="0.1" fill="#231F20"></path>
<path d="M85.0050867,149.620101 C85.7737283,151.503772 82.2829769,154.718367 80.7348555,154.076315 C79.1871676,153.434263 76.5183815,159.386142 70.4871676,159.269957 C64.4559538,159.152905 53.2471387,163.00435 47.375896,160.144812 C41.5046532,157.285708 29.5969942,152.575014 29.0928035,149.620101 C28.5881792,146.665621 29.0928035,149.620101 29.0928035,149.620101 C29.0928035,149.620101 31.1667919,162.381373 57.2052312,163.159118 C64.2248844,163.369379 68.8371676,161.840332 73.1204046,161.117645 C84.7250289,159.158974 88.385289,156.721691 85.0050867,149.620101" id="Fill-125" fill-opacity="0.1" fill="#231F20"></path>
<path d="M58.7047977,114.170896 C73.2469942,115.419451 77.5870231,127.494017 70.5630347,132.367283 C63.8238728,137.042861 51.7310983,136.554277 43.6254624,129.938237 C35.5193931,123.322197 44.4799422,112.950087 58.7047977,114.170896" id="Fill-127" fill="#B3BFA6"></path>
<path d="M69.6727023,118.170434 C67.4664884,121.730983 47.0612861,119.349624 46.5167775,116.327081 C46.1456792,114.268699 46.5167775,116.327081 46.5167775,116.327081 C46.5167775,116.327081 52.8024711,113.384306 59.0296387,114.356705 C65.2563728,115.329104 68.9322399,117.076214 70.5735694,119.067399" id="Fill-129" fill-opacity="0.1" fill="#231F20"></path>
<path d="M58.168396,106.320867 C68.7212861,110.008006 78.9577023,106.009595 75.1088584,114.072312 C72.2159393,120.131705 47.8066908,118.90396 39.7006214,112.288353 C31.5949855,105.672746 44.576922,101.572023 58.168396,106.320867" id="Fill-131" fill="#666F87"></path>
<path d="M67.7298988,108.144711 C66.4041763,109.347746 57.5970954,110.982139 54.341315,109.698035 C51.0855347,108.414364 47.1621243,107.00237 46.548685,104.26552 C46.548685,104.26552 54.1726734,104.50396 57.1392919,105.977514 C60.1059104,107.451503 67.7298988,108.144711 67.7298988,108.144711" id="Fill-133" fill-opacity="0.1" fill="#231F20"></path>
<path d="M57.8747688,95.9403468 C67.2523699,96.7449711 73.6087283,103.569971 69.0796821,106.712601 C64.7335838,109.727341 54.1880636,110.428353 48.9606069,106.162023 C43.7335838,101.895694 48.7017919,95.1530636 57.8747688,95.9403468" id="Fill-135" fill="#D0E2D6"></path>
<path d="M80.6782803,134.503873 C81.9988006,136.329451 77.5711994,142.405751 72.214552,142.638988 C66.8579046,142.872659 56.3964884,139.721358 53.8343497,140.829884 C51.272211,141.93841 43.3529913,139.721358 42.8024133,137.795636 C42.2518353,135.869913 34.5961994,136.488121 35.755448,134.837254 C36.9146965,133.18552 35.755448,134.837254 35.755448,134.837254 C35.755448,134.837254 31.3824711,138.820058 49.9798699,143.519046 C68.5772688,148.217601 78.2899855,144.386532 81.214552,139.682341 C83.4038584,136.161676 80.6782803,134.503873 80.6782803,134.503873" id="Fill-137" fill-opacity="0.1" fill="#231F20"></path>
<path d="M72.2145954,121.058627 C73.8498555,123.032038 71.0210983,131.435072 58.1575145,130.151402 C45.2943642,128.867731 41.2413295,121.461806 42.6537572,119.270766 C44.0666185,117.079725 42.6537572,119.270766 42.6537572,119.270766 C42.6537572,119.270766 39.7929191,122.40776 40.7822254,125.900246 C41.7715318,129.392731 48.9238439,135.279581 58.1041908,135.458194 C67.2845376,135.636373 73.4492775,132.003425 73.8541908,126.877413 C74.116474,123.557471 72.2145954,121.058627 72.2145954,121.058627" id="Fill-139" fill-opacity="0.1" fill="#231F20"></path>
<path d="M68.0590318,124.216908 C68.6781069,124.252023 68.4955925,125.422977 67.7126445,125.306358 C66.9301301,125.189306 67.3736272,124.17789 68.0590318,124.216908" id="Fill-141" fill-opacity="0.1" fill="#231F20"></path>
<path d="M66.5463728,122.862139 C67.0193497,123.580925 65.7781647,124.33396 65.2475289,123.365896 C64.7168931,122.398266 66.0226734,122.066185 66.5463728,122.862139" id="Fill-143" fill-opacity="0.1" fill="#231F20"></path>
<path d="M53.6801012,124.097948 C54.153078,124.816301 52.9123266,125.569769 52.3812572,124.601272 C51.8506214,123.633642 53.1564017,123.301994 53.6801012,124.097948" id="Fill-145" fill-opacity="0.1" fill="#231F20"></path>
<path d="M68.3877746,121.670376 C69.3974566,122.185838 69.7043931,123.459971 68.9569942,123.459971 C68.2095954,123.459971 67.3915318,123.654191 67.4981792,122.565173 C67.6048266,121.476156 67.9989017,121.471821 68.3877746,121.670376" id="Fill-147" fill-opacity="0.1" fill="#231F20"></path>
<path d="M64.8567052,102.686272 C65.4757803,102.721387 65.2928324,103.891908 64.5103179,103.775723 C63.7273699,103.658671 64.1708671,102.647254 64.8567052,102.686272" id="Fill-149" fill="#FFFFFF"></path>
<path d="M58.4956647,103.235376 C59.1147399,103.270491 58.9322254,104.441445 58.1492775,104.324827 C57.366763,104.207775 57.8102601,103.196358 58.4956647,103.235376" id="Fill-151" fill="#FFFFFF"></path>
<path d="M68.3732081,101.213801 C68.7872254,101.238078 68.6649711,102.041835 68.1417052,101.962066 C67.6180058,101.881864 67.9145376,101.186922 68.3732081,101.213801" id="Fill-153" fill="#FFFFFF"></path>
<path d="M51.2724277,98.7485549 C51.8915029,98.7836705 51.7089884,99.9546243 50.9260405,99.8380058 C50.1430925,99.7209538 50.5865896,98.7095376 51.2724277,98.7485549" id="Fill-155" fill="#FFFFFF"></path>
<path d="M63.3438295,101.331503 C63.8168064,102.050289 62.5756214,102.803324 62.0449855,101.83526 C61.5143497,100.86763 62.8201301,100.535549 63.3438295,101.331503" id="Fill-157" fill="#FFFFFF"></path>
<path d="M50.9313728,123.84815 C51.9410549,124.363613 52.1122977,125.168237 51.5005925,125.637746 C50.8425,126.143671 50.6816618,125.854942 50.0417775,124.742948 C49.5081069,123.815636 50.5429335,123.649595 50.9313728,123.84815" id="Fill-159" fill-opacity="0.1" fill="#231F20"></path>
<path d="M75.8405202,110.539249 C75.5045376,111.438815 74.9223121,111.361214 73.8792486,111.905723 C72.8357514,112.450665 73.369422,115.09604 72.0528035,115.173642 C70.736185,115.251243 60.9866185,116.885636 59.4922543,115.523931 C57.9974566,114.162225 54.1902312,113.462081 52.4821387,113.773353 C50.7740462,114.084624 44.3691329,113.276965 43.4795376,111.132746 C42.5899422,108.988092 36.3632081,108.876676 37.6087283,107.08448 C38.853815,105.292283 37.6087283,107.08448 37.6087283,107.08448 C37.6087283,107.08448 35.6478902,109.518295 40.2575723,112.715549 C44.8676879,115.913237 54.3679769,118.259046 61.235896,118.000231 C68.102948,117.740983 72.8322832,117.153988 74.5772254,114.860636 C76.3226012,112.567283 75.8405202,110.539249 75.8405202,110.539249" id="Fill-161" fill-opacity="0.1" fill="#231F20"></path>
<path d="M69.8945376,101.960202 C70.6471387,103.425087 69.7133237,105.730145 67.017659,106.751532 C64.3224277,107.772486 57.8910694,105.821185 55.6224277,106.288092 C53.3537861,106.755 46.602052,101.615983 47.4192486,100.039249 C45.8104335,101.684046 47.4192486,100.039249 47.4192486,100.039249 C47.4192486,100.039249 43.8946821,105.910925 54.5949711,108.69026 C62.2943931,110.690549 69.6864451,107.216272 70.3003179,105.343873 C70.8803757,103.574653 69.8945376,101.960202 69.8945376,101.960202" id="Fill-163" fill-opacity="0.1" fill="#231F20"></path>
<path d="M65.663237,98.2604046 C65.663237,98.2604046 62.5630925,100.505202 57.5580347,100.039595 C52.5534104,99.5735549 50.6719075,97.1124277 50.6719075,97.1124277 C50.6719075,97.1124277 53.1265318,95.574711 57.8749422,95.9401734 C62.6233526,96.3060694 66.5393931,98.7472543 66.5393931,98.7472543" id="Fill-165" fill-opacity="0.1" fill="#231F20"></path>
<path d="M54.6970231,90.4751445 C61.1678324,89.7797688 68.2659538,90.4751445 67.6980347,95.7169075 C67.2662428,99.700578 54.4169653,99.7599711 49.6594509,95.8768786 C44.9019364,91.9942197 48.1078613,91.183526 54.6970231,90.4751445" id="Fill-167" fill="#666F87"></path>
<path d="M63.6854913,90.8261272 C63.6854913,90.8261272 59.9367919,92.7466474 56.4677168,92.4158671 C52.9982081,92.0850867 52.1263873,90.8261272 52.1263873,90.8261272 C52.1263873,90.8261272 56.0406936,90.2430347 58.5937283,90.2499711 C61.146763,90.2569075 63.6854913,90.8261272 63.6854913,90.8261272" id="Fill-169" fill-opacity="0.1" fill="#231F20"></path>
<path d="M55.5066763,86.0509682 C60.1575434,85.5511127 67.5925145,87.4937428 64.8500289,89.8178757 C63.6656358,90.8223555 57.4180925,92.6683092 53.360289,91.2268353 C49.4615896,89.8421532 50.7712717,86.5603613 55.5066763,86.0509682" id="Fill-171" fill="#D0E2D6"></path>
<path d="M67.5560983,93.920896 C67.7234393,95.3745087 66.4575434,96.5103468 65.042948,96.4808671 C63.6283526,96.4518208 61.9740173,95.8986416 61.3332659,96.4813006 C60.692948,97.0643931 60.5863006,97.8521098 59.1183815,97.5313006 C57.6504624,97.2104913 55.1152023,95.4304335 52.8201156,95.5184393 C50.5250289,95.6060116 47.5636127,92.7417052 47.7231503,92.1603468 C47.8831214,91.579422 47.7231503,92.1603468 47.7231503,92.1603468 C47.7231503,92.1603468 47.2254624,92.6454624 47.4114451,93.1587572 C47.5974277,93.6724855 48.8897688,97.1116474 55.9701156,98.3814451 C63.0504624,99.6516763 66.6513295,97.7281214 67.3146243,96.6668497 C67.9787861,95.6060116 67.7711272,94.464104 67.5560983,93.920896" id="Fill-173" fill-opacity="0.1" fill="#231F20"></path>
<path d="M61.693526,86.5154046 C61.693526,86.5154046 60.4059538,87.5337572 58.6055202,87.2419942 C56.8055202,86.9497977 54.9838439,86.120896 54.9838439,86.120896 C54.9838439,86.120896 56.7942486,85.8954624 58.6055202,86.0337572 C60.4172254,86.172052 61.693526,86.5154046 61.693526,86.5154046" id="Fill-175" fill-opacity="0.1" fill="#231F20"></path>
<path d="M65.4225434,88.6385983 C64.4202312,89.459263 62.8677746,90.6891763 60.5193642,90.8790607 C58.1709538,91.0685116 55.3291908,90.8326734 53.8612717,90.3393208 C51.9927746,89.7120087 51.6281792,87.9874422 51.2102601,88.2774711 C50.3028902,90.1398988 53.4073699,92.1722688 57.8510116,91.7569509 C63.4929191,91.2293497 65.6926301,89.8385983 65.4225434,88.6385983" id="Fill-177" fill-opacity="0.1" fill="#231F20"></path>
<path d="M57.2052312,83.2931792 C61.8560983,82.7933237 65.1920809,83.2446243 62.4495954,85.5687572 C61.2652023,86.5728035 59.5644798,87.4923121 55.5066763,86.0508382 C51.6079769,84.6665896 52.4698266,83.8021387 57.2052312,83.2931792" id="Fill-179" fill="#B3BFA6"></path>
<path d="M60.5758526,83.141185 C60.5758526,83.141185 62.1218064,83.0770231 61.8729624,83.8742775 C61.623685,84.6715318 58.6700723,85.508237 56.7664595,84.7105491 C54.8628468,83.9132948 55.149841,83.5322254 55.691315,83.4598266 C56.232789,83.3874277 59.3554769,83.0145954 60.5758526,83.141185" id="Fill-181" fill-opacity="0.1" fill="#231F20"></path>
<path d="M63.4325289,84.074263 C62.4675,84.9417486 60.8131647,86.4092341 58.7846965,85.9887139 C56.7566618,85.5686272 53.7141763,85.2968064 53.2338295,84.9148699 C52.7534827,84.5333671 53.2338295,84.9148699 53.2338295,84.9148699 C53.2338295,84.9148699 55.7682225,86.7950723 59.0781936,86.7959393 C62.0539162,86.7963728 63.6852746,84.5624133 63.4325289,84.074263" id="Fill-183" fill-opacity="0.1" fill="#231F20"></path>
<path d="M120.322023,86.4362428 C120.128671,87.5898555 119.036618,88.3684682 117.883006,88.1755491 C116.72896,87.981763 115.950347,86.889711 116.143699,85.7360983 C116.337052,84.5824855 117.429104,83.8034393 118.58315,83.9967919 C119.736763,84.1901445 120.515376,85.2821965 120.322023,86.4362428" id="Fill-185" fill="#FFFFFF"></path>
<path d="M112.898714,77.653526 C112.479494,80.1549711 110.112442,81.8422543 107.611431,81.4234682 C105.110419,81.0042486 103.422702,78.6371965 103.841488,76.136185 C104.260708,73.6347399 106.628194,71.9474566 109.129205,72.3666763 C111.629783,72.7854624 113.3175,75.1525145 112.898714,77.653526" id="Fill-187" fill="#FFFFFF"></path>
<path d="M111.423295,60.0173844 C110.914769,63.0525 108.042225,65.1009104 105.00711,64.5923844 C101.971994,64.0838584 99.9235838,61.2108815 100.43211,58.1757659 C100.940636,55.1406503 103.813613,53.0922399 106.848728,53.6011994 C109.883844,54.1097254 111.931821,56.9822688 111.423295,60.0173844" id="Fill-189" fill="#FFFFFF"></path>
<path d="M175.436749,21.8607659 C176.080968,15.3955925 171.362471,9.63186416 164.896864,8.98764451 C163.35091,8.83330925 161.847442,8.99371387 160.442384,9.40382948 C159.437038,4.48807803 155.335882,0.582442197 150.081113,0.0587427746 C146.501488,-0.298049133 143.141662,0.993858382 140.742095,3.31105491 C138.939928,1.67449422 136.625332,0.572471098 134.016806,0.312355491 C128.538338,-0.233887283 123.576199,3.07825145 121.79354,8.03345376 C121.041373,7.79804913 120.254523,7.63504335 119.439494,7.55354046 C112.973887,6.90932081 107.210592,11.6282514 106.566373,18.0938584 C106.178367,21.9847543 107.742095,25.6120665 110.450766,28.0320087 C108.495997,29.9035405 107.16854,32.4492052 106.878945,35.3529624 C106.234725,41.8185694 110.953656,47.5818642 117.418829,48.2260838 C117.568396,48.2412572 117.715361,48.2390896 117.864061,48.2481936 C118.752355,53.3152457 122.905968,57.3847543 128.275621,57.920159 C131.952355,58.2864884 135.398454,56.9152457 137.808858,54.478396 C139.587182,56.0338873 141.842818,57.0773844 144.373309,57.3296965 C150.492962,57.9401012 155.976633,53.7418353 157.092529,47.8085983 C157.839061,48.0405347 158.619408,48.2009393 159.4275,48.2811416 C165.892673,48.9257948 171.656402,44.2068642 172.300621,37.7416908 C172.572009,35.0200145 171.884003,32.4288295 170.524465,30.2854769 C173.204957,28.3853324 175.085159,25.3870665 175.436749,21.8607659" id="Fill-191" fill="#FFFFFF"></path>
<path d="M100.921517,56.6465462 C101.568338,59.1991474 102.675997,60.8695231 105.682934,61.9190896 C108.681199,62.9651879 110.704899,61.7755925 111.379899,60.2452457 C111.379899,60.2452457 110.373685,65.4913439 104.743049,64.5414884 C99.5398699,63.6635983 100.016315,57.8608526 100.921517,56.6465462" id="Fill-193" fill="#4D97FF" opacity="0.1"></path>
<path d="M104.245968,74.909263 C104.216488,76.9390318 104.25854,77.6907659 106.275303,79.2150434 C108.387876,80.8112861 112.330361,79.0637428 112.865766,77.8490029 C112.865766,77.8490029 111.544812,82.5085405 107.171835,81.3271821 C103.129205,80.2346965 103.527616,75.8729913 104.245968,74.909263" id="Fill-195" fill="#4D97FF" opacity="0.1"></path>
<path d="M116.332847,85.3198266 C116.326777,86.2055202 116.348887,86.5336994 117.2775,87.2065318 C118.250332,87.9110116 120.048165,87.1627457 120.288772,86.6342775 C120.288772,86.6342775 119.701344,88.6627457 117.695419,88.1312428 C115.841228,87.6400578 116.007702,85.7377457 116.332847,85.3198266" id="Fill-197" fill="#4D97FF" opacity="0.1"></path>
<path d="M170.526763,30.2853035 C171.883699,32.426922 172.573006,35.0194075 172.299884,37.7419509 C171.658266,44.2058237 165.89237,48.926922 159.428497,48.2809682 C158.617803,48.2029335 157.837457,48.0425289 157.091792,47.8084249 C155.97763,53.743396 150.493526,57.9399277 144.372139,57.3286561 C141.844682,57.077211 139.586012,56.0324133 137.808555,54.4808237 C135.39815,56.9168064 131.951618,58.2867486 128.275318,57.9182514 C122.903931,57.3850145 118.750751,53.3142052 117.866358,48.2462861 C117.714624,48.2376156 117.567225,48.2419509 117.419827,48.2246098 C110.951618,47.5829913 106.234855,41.8170954 106.880809,35.3532225 C107.166936,32.4485983 108.497861,29.9038006 110.453064,28.0309682 C107.743526,25.6118931 106.178497,21.9832803 106.564335,18.094552 C106.685723,16.8893497 106.98052,15.7491763 107.431387,14.6874711 C107.435723,14.9215751 107.478642,22.9014884 111.461012,25.3288006 C114.001908,26.877789 105.536445,28.9894942 108.115491,38.219263 C110.619538,47.1819798 118.234422,40.9157948 119.591358,46.2308237 C120.948728,51.5458526 128.90263,57.3529335 134.610867,52.3136272 C137.292225,49.9465751 138.655231,50.2318353 139.948006,51.7196965 C142.931965,55.1536561 152.54237,54.6455636 154.670116,49.4788006 C157.563468,42.4509104 159.536012,44.9298121 163.055809,44.636315 C169.650607,44.085737 173.019104,34.4025 171.21737,31.5355925 C165.831243,22.9630491 176.106676,27.8254769 175.152486,17.877789 C175.46896,19.143685 175.573006,20.4876156 175.438613,21.8618931 C175.087457,25.3864595 173.205954,28.3864595 170.526763,30.2853035" id="Fill-199" fill="#4D97FF" opacity="0.1"></path>
<path d="M37.5361127,94.2206358 C36.7280202,94.757341 36.2429046,95.4006936 34.391315,95.2242486 C30.248974,94.8306069 26.5731069,100.723092 32.174263,103.749104 C32.9845231,104.186965 35.3576445,106.336387 36.3313439,107.858064 C37.0609682,108.998237 38.1304769,108.314566 37.4650145,107.189133 C36.9439162,106.307775 34.982211,104.633931 35.1811994,104.66341 C35.3806214,104.693324 37.8521532,106.268324 39.0720954,108.511387 C39.8619798,109.962832 41.3238295,109.205462 40.6219509,107.85026 C39.698974,106.068468 36.923974,104.062977 37.1650145,104.056908 C37.4268642,104.050838 40.0375578,105.559075 41.7903035,108.071792 C42.8186272,109.545347 44.2683382,108.239133 43.165448,106.712688 C41.1153035,103.876127 37.9575,102.730751 38.2440607,102.539133 C38.4855347,102.379162 41.4205058,103.465578 43.8452168,106.374971 C44.8111127,107.53422 46.1073555,105.896358 44.9403035,104.462254 C43.341026,102.496647 41.4040318,101.609653 39.2793208,100.455173 C37.8109682,99.6574855 35.8635694,98.1926012 37.4975289,97.2813295 C41.4456503,95.0785838 38.9190607,93.3019942 37.5361127,94.2206358" id="Fill-201" fill="#F6DDC3"></path>
<path d="M293.192645,145.50078 C279.65146,139.052081 263.005795,136.753526 257.285853,132.941098 C242.350882,122.98604 206.496546,129.917688 213.716922,140.251647 C221.684697,151.655116 167.643078,144.453382 193.718367,161.300202 C196.822413,163.305694 226.179928,160.705405 237.594234,164.080405 C249.008974,167.455405 274.651604,164.268121 285.525303,161.506994 C296.399003,158.745867 306.452038,151.814653 293.192645,145.50078" id="Fill-203" fill="#ECC293"></path>
<g id="Group-207" transform="translate(193.352601, 151.321387)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-206"></g>
<path d="M106.601792,0.149263006 C106.893121,3.8307659 103.36552,14.7205058 99.4936994,16.848685 C94.8415318,19.4051879 86.4601734,15.5511416 82.5649422,20.2557659 C78.6701445,24.9599566 74.3262139,30.523396 67.8345954,30.2164595 C61.3429769,29.9095231 57.5556936,19.683078 51.3887861,19.0692052 C45.2214451,18.4557659 43.9230347,21.5238295 40.352948,21.0122688 C36.7824277,20.5007081 32.2382081,16.6145809 27.0445665,16.6145809 C21.8513584,16.6145809 20.3799711,20.899552 15.8357514,19.5703613 C11.2915318,18.240737 4.93430636,14.2228179 0.365809249,9.97903179 L106.601792,0.149263006 Z" id="Fill-205" fill="#47A8D1" mask="url(#mask-2)"></path>
</g>
<path d="M293.192645,145.50078 C279.077471,139.931705 258.322847,139.427081 252.354928,136.016965 C236.715477,127.08026 219.892066,139.159162 222.434697,142.035173 C231.557384,152.356127 189.476749,150.962775 191.099436,157.641243 C193.953338,169.385462 228.221402,161.148035 239.635708,164.523035 C251.050448,167.897601 265.115766,168.511474 275.989465,165.749913 C286.863165,162.988786 311.856373,152.863786 293.192645,145.50078" id="Fill-208" fill="#5CB1D6"></path>
<path d="M243.606806,165.544162 C238.195535,163.205723 259.293512,158.143873 252.558251,154.768873 C245.823425,151.393873 216.285564,161.825376 211.741777,155.53578 C207.197558,149.246185 196.109697,158.408757 197.683829,153.219884 C197.683829,153.219884 190.801604,154.611069 191.099436,157.641416 C191.422847,160.931445 207.143367,152.268295 206.981228,156.788671 C206.818656,161.308613 216.331951,162.718873 222.507962,160.828266 C229.638598,158.645029 240.778916,156.072486 245.52646,157.184913 C250.206806,158.281301 237.654494,161.589538 236.707673,163.931879 C236.707673,163.931879 239.412876,164.356734 240.873425,164.778121 C242.333974,165.200376 243.606806,165.544162 243.606806,165.544162" id="Fill-210" fill="#FFFFFF" opacity="0.2"></path>
<path d="M296.374639,147.015564 C298.873049,149.606749 286.854408,153.187673 275.279697,151.659928 C263.684176,150.129581 265.576084,152.865997 272.34646,155.324523 C275.648627,156.523656 287.466113,162.075824 280.871315,164.304581 C274.276951,166.533338 280.871315,164.304581 280.871315,164.304581 C280.871315,164.304581 287.951662,161.855159 290.610477,160.336084 C293.268858,158.816142 284.826373,158.24302 284.54198,155.45328 C284.257153,152.663107 296.439668,157.518165 298.727384,154.701546 C301.07146,151.814697 299.738367,148.45487 296.374639,147.015564" id="Fill-212" fill="#FFFFFF" opacity="0.2"></path>
<path d="M276.335072,140.949581 C270.260072,139.351604 264.742153,143.859841 266.689552,147.243512 C268.637384,150.626749 258.412673,153.027616 253.138396,150.600303 C247.863685,148.172558 223.722789,154.460853 218.813107,151.588309 C216.32987,150.13513 215.262962,149.833829 211.109783,150.381806 C206.786662,150.951893 211.109783,150.381806 211.109783,150.381806 C211.109783,150.381806 216.051546,149.393367 218.247789,148.54539 C220.136228,147.816633 217.315708,150.239176 223.807327,149.93224 C230.299379,149.625303 242.102124,146.510419 255.924234,148.709263 C257.982616,149.036575 262.960795,148.790332 262.794754,147.243512 C262.578425,145.232384 262.842009,143.240332 264.296055,142.042934 C267.198078,139.654205 271.513829,140.343945 271.513829,140.343945 L276.335072,140.949581" id="Fill-214" fill="#FFFFFF" opacity="0.2"></path>
<path d="M185.519393,111.904205 C184.360578,114.533107 184.888179,119.07776 186.050896,121.32776 C186.050896,121.32776 182.256243,119.690766 179.990636,122.269379 C179.990636,122.269379 176.877052,125.686431 181.376618,129.981373 C191.088468,139.25276 207.074306,140.388165 210.264191,136.268367 C213.410723,132.204494 214.606821,126.797124 200.069393,112.072847 L185.519393,111.904205 Z" id="Fill-216" fill="#231F20"></path>
<path d="M204.24039,109.631575 C203.188656,114.294147 205.518425,121.903396 208.917269,124.297327 C208.917269,124.297327 206.331286,110.848049 202.05065,112.526228 C202.05065,112.526228 195.896315,120.987789 201.057442,124.197182 C206.218136,127.406142 223.051951,132.356575 224.37724,122.238945 C225.020592,117.326662 219.765824,111.904118 206.269725,109.218425 L204.24039,109.631575 Z" id="Fill-218" fill="#231F20"></path>
<path d="M185.519393,111.904205 C194.222861,118.076749 206.472572,113.398136 209.104509,109.572702 C208.986156,104.949147 210.872428,100.363309 210.872428,100.363309 C210.872428,100.363309 212.894827,101.327471 217.527052,106.17039 C218.168671,106.841055 218.810723,107.438887 219.445838,107.977327 C221.813324,109.984118 225.850751,102.874725 223.71737,101.128483 C221.882688,99.6267486 220.535289,98.6240029 220.535289,98.6240029 C220.535289,98.6240029 216.754509,91.0234249 212.583555,86.2750145 C209.155231,82.3715462 205.254364,82.2479913 196.439046,83.6313728 C194.303497,83.966922 190.445549,84.6536272 187.849162,89.734552 C185.802919,93.7377312 187.785867,103.37198 185.519393,111.904205" id="Fill-220" fill="#0FBD8C"></path>
<path d="M195.59276,93.1685983 C195.466171,95.2837717 195.927442,98.0865173 198.515592,103.310939 C199.585101,105.469465 200.28091,106.17828 201.555477,108.013396 C204.498685,112.253714 197.95591,117.940275 194.577009,112.151402 C189.199986,102.938974 187.338425,88.0009682 190.973974,85.9820376 C195.466171,83.4870954 195.89276,88.1600723 195.59276,93.1685983" id="Fill-222" fill="#0DA57A"></path>
<path d="M233.938223,106.23789 C233.164379,106.716503 232.690101,107.303931 230.960766,107.082399 C227.09198,106.587312 223.467702,111.995549 228.623194,115.002486 C229.368858,115.437312 231.526517,117.523873 232.392269,118.97922 C233.041257,120.069538 234.064379,119.461734 233.475217,118.38659 C233.013945,117.545116 231.226951,115.916358 231.4125,115.950607 C231.598483,115.984855 233.865824,117.536445 234.940968,119.675029 C235.636344,121.059277 237.028829,120.394249 236.412789,119.103208 C235.602529,117.40552 233.063801,115.441214 233.289668,115.442948 C233.535477,115.445116 235.935043,116.938613 237.500939,119.345983 C238.419147,120.757977 239.817702,119.578353 238.830564,118.114769 C236.996315,115.394393 234.072616,114.224306 234.347471,114.053931 C234.57854,113.911301 237.295014,115.01896 239.478251,117.819538 C240.347471,118.934566 241.612066,117.439769 240.5625,116.060289 C239.124061,114.169682 237.336199,113.279653 235.380997,112.132977 C234.029263,111.340925 232.249639,109.908555 233.808165,109.104364 C237.575072,107.161734 235.262211,105.419393 233.938223,106.23789" id="Fill-224" fill="#B5875C"></path>
<path d="M196.437355,104.949147 C196.437355,104.949147 195.787066,113.132818 200.949494,112.614321 C206.112355,112.09539 208.079263,110.417645 207.864234,108.421257 C207.569003,105.675303 208.395737,106.354205 206.949061,104.021402 C205.750361,102.08961 197.057298,105.227038 196.437355,104.949147" id="Fill-226" fill="#0DA57A"></path>
<path d="M196.693699,92.4209393 C196.56711,94.5361127 197.027948,97.3384249 199.616532,102.562847 C200.68604,104.721373 201.950636,106.770217 203.224769,108.605766 C206.16841,112.84565 200.582861,118.220939 197.021012,112.543483 C194.608006,108.69724 192.62159,104.913425 191.899769,102.939147 C188.508295,93.6603902 187.338208,88.0011416 190.973757,85.9817775 C195.466387,83.4872688 196.993699,87.4119798 196.693699,92.4209393" id="Fill-228" fill="#0FBD8C"></path>
<path d="M191.160303,85.6474855 C193.751488,84.2649711 194.555246,85.4281214 195.669408,86.7482081 C196.784003,88.0682948 198.583136,89.4846243 200.384003,89.514104 C201.47172,89.5318786 202.337038,91.0180058 202.851633,92.1924277 C203.00987,92.5531214 203.534436,92.4937283 203.605968,92.1061561 C203.836604,90.8580347 204.236749,89.2535549 204.793396,89.0810116 C206.820997,88.4510983 207.431402,86.6203179 207.185159,85.5668497 C206.85091,84.1362139 207.110159,83.1456069 205.110303,82.5850578 C203.110448,82.0240751 196.702066,83.5904046 196.702066,83.5904046 C196.702066,83.5904046 192.497298,84.0447399 191.160303,85.6474855" id="Fill-230" fill="#0DA57A"></path>
<path d="M200.330202,87.6805058 C202.560694,88.067211 204.830202,87.1711127 205.082948,85.6685116 C205.359538,84.0250145 203.42341,85.1573844 204.595665,78.9727023 C205.187861,75.8482803 200.233092,75.7290607 199.762283,78.5387428 C198.777312,84.4195231 197.226156,82.4326734 196.819509,84.5413439 C196.53078,86.0374422 198.339017,87.3354191 200.330202,87.6805058" id="Fill-232" fill="#A57955"></path>
<path d="M196.439263,83.6314162 C196.439263,83.6314162 194.222645,86.8958671 198.65198,88.1656647 C203.080882,89.4354624 205.942587,87.5305491 206.291142,86.1874855 C206.717298,84.5413873 205.110217,83.3231792 205.110217,83.3231792 L204.602124,83.487052 C204.602124,83.487052 206.09302,86.1874855 203.228714,87.102659 C200.413396,88.0022254 197.657905,86.7506358 197.116431,85.8133526 C196.309205,84.4156647 197.588974,83.3231792 197.588974,83.3231792 L196.439263,83.6314162 Z" id="Fill-234" fill="#0DA57A"></path>
<path d="M280.779147,154.015058 C281.10646,154.108699 282.749523,155.493382 281.71513,157.541792 C280.612673,159.725029 277.658627,159.249884 276.951113,158.349884 C276.123078,157.295549 275.813107,156.432399 276.36672,156.574595 C277.044321,156.74974 277.628714,159.99815 280.741864,157.773295 C281.964841,156.899306 281.440275,155.157399 280.336951,154.475462 C280.089408,154.322428 280.451835,153.920983 280.779147,154.015058" id="Fill-236" fill="#FFFFFF" opacity="0.2"></path>
<path d="M251.336402,103.115983 L251.022095,103.114681 C250.830043,103.114681 250.67354,103.269451 250.672673,103.461936 L250.51617,147.941272 C250.515737,148.133757 250.670939,148.29026 250.863425,148.290694 L251.177731,148.291998 C251.369783,148.292861 251.526286,148.137659 251.52672,147.945173 L251.683226,103.465405 C251.68409,103.272919 251.528454,103.11685 251.336402,103.115983" id="Fill-238" fill="#E8B182"></path>
<path d="M230.048974,133.895462 L230.165159,134.187659 C230.236257,134.366272 230.43828,134.45341 230.617327,134.382746 L271.955766,117.963382 C272.134379,117.892283 272.221517,117.689827 272.150853,117.511214 L272.034668,117.219017 C271.963569,117.040405 271.761113,116.953266 271.5825,117.023931 L230.244061,133.443295 C230.065448,133.514393 229.977876,133.71685 230.048974,133.895462" id="Fill-240" fill="#E8B182"></path>
<path d="M245.480202,142.181575 C245.480202,142.181575 269.236561,151.945882 265.969942,155.371604 C262.703324,158.797327 236.46026,148.814957 235.95,147.079986 C235.440173,145.345014 241.826445,140.443136 245.480202,142.181575" id="Fill-242" fill-opacity="0.2" fill="#000000"></path>
<path d="M227.55724,140.233266 C222.99091,137.921272 231.312009,138.125896 232.328627,137.350751 C233.351315,136.570838 232.091488,135.090347 233.493512,134.138324 C234.925014,133.167225 237.310275,134.419682 238.860564,133.448584 C240.281662,132.558121 238.897413,129.204364 244.08065,131.25841 C249.139465,133.262601 267.322413,141.614913 273.787587,144.106821 C277.264465,145.446416 278.267211,145.577341 278.210853,149.785145 C278.191344,151.225751 277.705361,153.282399 280.779061,154.015058 C282.245679,154.750318 282.638454,157.178931 280.982384,158.415347 C279.649725,159.410723 277.087587,159.64396 276.080072,156.983844 C271.98065,155.509422 263.570246,161.759133 257.384263,159.571561 C250.186431,157.026329 239.078627,152.108844 233.30276,149.409277 C227.449725,146.673728 226.871402,141.762312 226.228483,139.210578" id="Fill-244" fill="#FFFFFF" opacity="0.5"></path>
<path d="M232.767182,135.660477 C232.852153,136.401373 234.327009,140.085477 232.886402,139.671893 C232.001575,139.417847 231.286257,137.690679 230.01039,137.874494 C230.01039,137.874494 231.792182,137.769581 232.328454,137.350361 C232.879465,136.91987 232.767182,135.660477 232.767182,135.660477" id="Fill-246" fill="#FFFFFF" opacity="0.25"></path>
<path d="M239.987688,131.371387 C239.43104,132.727457 240.963121,135.08974 239.575405,136.178324 C238.615145,136.931358 237.654017,133.692052 235.314711,133.746676 C235.314711,133.746676 236.718468,133.789595 237.19448,133.842919 C237.670491,133.896243 238.913844,133.772254 239.345202,132.803324 C239.803439,131.772399 239.987688,131.371387 239.987688,131.371387" id="Fill-248" fill="#FFFFFF"></path>
<path d="M228.091127,140.450419 C228.091127,140.450419 251.782023,154.263425 262.482746,155.330766 C272.110058,156.291026 275.255289,156.695939 276.079855,156.983801 C271.209624,155.682789 262.545173,162.252442 255.371185,158.866171 C245.588237,154.249118 233.302977,149.409234 233.302977,149.409234 C233.302977,149.409234 227.652399,146.421373 226.802254,141.518194 C225.95211,136.614581 226.334046,140.091893 228.091127,140.450419" id="Fill-250" fill="#FFFFFF" opacity="0.5"></path>
<path d="M279.117442,153.285607 C276.882616,152.262486 278.541286,146.194422 275.123801,144.734306 C272.542587,143.632283 275.123801,144.734306 275.123801,144.734306 C275.123801,144.734306 276.267442,145.462197 276.05328,149.54211 C275.892876,152.600202 276.928569,152.049624 279.117442,153.285607" id="Fill-252" fill="#FFFFFF" opacity="0.25"></path>
<path d="M265.236763,102.293367 C261.479393,106.637298 251.553815,115.249725 234.232717,111.344957 C232.912197,111.047124 231.752081,112.263598 232.135318,113.561575 C233.923613,119.613598 237.170289,133.316055 232.703671,141.117789 C232.084162,142.199436 232.695867,143.560708 233.924913,143.768801 C240.189364,144.829639 255.757283,146.080795 265.35815,134.85724 C265.461329,134.73672 265.546734,134.605361 265.616098,134.462298 C266.575058,132.472847 273.576069,117.109986 268.231127,102.826171 C267.763786,101.577616 266.109017,101.284986 265.236763,102.293367" id="Fill-254" fill="#FF8C1A"></path>
<path d="M269.848483,119.909176 C268.747327,127.424783 266.183454,133.286055 265.616402,134.462645 C265.545737,134.603974 265.461633,134.738367 265.358454,134.855419 C255.756286,146.079841 240.189668,144.826951 233.922616,143.767847 C232.694436,143.561922 232.084465,142.202384 232.704408,141.118136 C233.324783,140.034321 233.79646,138.835621 234.139812,137.559321 C233.020882,142.653251 265.539668,149.320014 269.848483,119.909176" id="Fill-256" fill="#FF8000"></path>
<path d="M212.744133,116.316503 C211.970289,116.795116 211.496012,117.382543 209.766676,117.161012 C205.89789,116.665925 202.273613,122.074162 207.429104,125.081098 C208.174769,125.515925 210.332861,127.602486 211.198613,129.057832 C211.847601,130.14815 212.870289,129.540347 212.281127,128.465202 C211.819855,127.623728 210.032861,125.994971 210.21841,126.02922 C210.404393,126.063468 212.671734,127.615058 213.746879,129.753642 C214.442254,131.13789 215.83474,130.472861 215.218699,129.181821 C214.408439,127.484133 211.869711,125.519827 212.095578,125.521561 C212.341387,125.523728 214.740954,127.017225 216.30685,129.424595 C217.225058,130.83659 218.623613,129.656965 217.636474,128.193382 C215.802659,125.473006 212.878526,124.302919 213.153382,124.132543 C213.384451,123.989913 216.100925,125.097572 218.284162,127.89815 C219.153815,129.013179 220.417977,127.518382 219.36841,126.138902 C217.929971,124.248295 216.142543,123.358266 214.186908,122.21159 C212.835173,121.419538 211.055549,119.987168 212.614075,119.182977 C216.380983,117.240347 214.068121,115.498006 212.744133,116.316503" id="Fill-258" fill="#B5875C"></path>
<path d="M205.640896,58.1740751 C205.640896,58.1740751 197.234393,56.9177168 195.301301,68.0749422 C193.618786,77.7872254 203.036272,84.463526 205.909249,84.9612139 C208.691618,85.4428613 217.529046,80.3953179 215.455058,74.2648266 C218.800145,60.2571676 212.52789,59.3671387 205.640896,58.1740751" id="Fill-260" fill="#B5875C"></path>
<path d="M211.808887,76.5197688 C212.961199,78.4806069 215.279697,74.2693353 212.048194,75.3089306" id="Stroke-262" stroke="#A57955" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M207.93724,73.6226445 C207.861373,74.0596387 207.532327,74.3678757 207.20198,74.3106503 C206.871633,74.2529913 206.664841,73.8524133 206.740708,73.4149855 C206.816575,72.9784249 207.145621,72.6706214 207.475968,72.7278468 C207.806315,72.7846387 208.013107,73.1856503 207.93724,73.6226445" id="Fill-264" fill="#231F20"></path>
<path d="M214.595072,73.1493208 C214.519639,73.586315 214.190159,73.894552 213.859812,73.8368931 C213.529465,73.7796676 213.322673,73.3790896 213.39854,72.9416618 C213.474408,72.5051012 213.803454,72.1968642 214.134234,72.2545231 C214.464581,72.311315 214.670939,72.7118931 214.595072,73.1493208" id="Fill-266" fill="#231F20"></path>
<path d="M204.07422,69.8640173 C204.251532,70.1869942 204.636936,70.3491329 204.986792,70.2333815 C206.046329,69.882659 207.424509,70.2169075 207.296618,69.5731214 C207.152254,68.8434971 204.434913,68.341474 204.050376,69.0741329 C203.896474,69.3680636 203.951965,69.6416185 204.07422,69.8640173" id="Fill-268" fill="#594A42"></path>
<path d="M214.925939,69.9851012 C214.774639,70.2205058 214.474639,70.3228179 214.215824,70.2170376 C213.432009,69.8962283 212.371171,70.0774422 212.501228,69.5966618 C212.649061,69.0521532 214.732587,68.8132803 214.985332,69.3881358 C215.086777,69.6187717 215.029986,69.823396 214.925939,69.9851012" id="Fill-270" fill="#594A42"></path>
<path d="M207.42052,79.9151445 C208.284538,80.5871098 210.976301,80.532052 212.124277,79.8687572 C213.572688,79.0316185 211.864595,82.9047399 208.915751,82.8704913 C205.966908,82.8366763 206.556503,79.2436127 207.42052,79.9151445" id="Fill-272" fill="#231F20"></path>
<path d="M212.124104,79.8685838 C212.124104,79.8685838 211.189422,81.2675723 209.368179,81.3824566 C207.546503,81.4977746 207.547803,80.0003757 207.547803,80.0003757 C207.547803,80.0003757 208.649827,80.4538439 209.757052,80.3905491 C210.840867,80.3289884 212.124104,79.8685838 212.124104,79.8685838" id="Fill-274" fill="#FFFFFF"></path>
<path d="M199.888829,58.8260549 C199.888829,58.8260549 198.853136,58.1337139 196.953858,59.3766329 C194.912384,60.7118931 193.069465,65.7048121 194.584205,69.9065462 C196.098945,74.1078468 194.809639,75.8879046 197.281604,75.2358815 C198.454725,74.9259104 195.44909,69.243685 200.471055,69.3485983 C203.637095,69.4153613 200.994754,63.228078 205.517298,67.0834249 C208.571488,69.6867486 218.427702,69.3416618 218.547355,66.4157948 C218.667442,63.4903613 217.129292,65.0085694 215.739841,60.7734538 C214.35039,56.5387717 205.340419,50.785448 199.888829,58.8260549" id="Fill-276" fill="#594A42"></path>
<path d="M200.794205,70.6565462 C201.045217,70.3457081 201.008801,69.8874711 200.69276,69.643396 C200.150853,69.2250434 199.193627,68.9011994 197.871806,70.0309682 C196.258656,71.4087139 197.173829,74.661026 199.026286,75.2827023 C199.518338,75.4474422 200.003887,75.0121821 199.934957,74.4980202 C199.875564,74.060159 199.836113,73.4662283 199.886835,72.7556792 C199.950997,71.8591474 200.43091,71.1065462 200.794205,70.6565462" id="Fill-278" fill="#A57955"></path>
<polygon id="Fill-280" fill="#FF6680" points="175.894422 185.238685 165.719133 175.086373 174.862197 186.530592"></polygon>
<polygon id="Fill-282" fill="#FF4D6A" points="172.664133 187.427038 165.719046 175.086286 174.86211 186.530939"></polygon>
<polygon id="Fill-284" fill="#FF6680" points="174.862023 186.530766 171.653064 187.350564 166.530087 198.141893 180.954798 192.366893 181.512746 189.965592"></polygon>
<polygon id="Fill-286" fill="#FF6680" points="174.862023 186.530766 177.116792 183.708945 188.953353 178.141604 186.005809 187.34146 181.512746 189.965592"></polygon>
<polygon id="Fill-288" fill="#FF4D6A" points="180.613006 189.501113 178.360838 184.749668 174.86185 186.530592"></polygon>
<polygon id="Fill-290" fill="#FF3355" points="178.360925 184.749668 182.410491 189.441286 180.613092 189.501113"></polygon>
<polygon id="Fill-292" fill="#FF4D6A" points="178.182269 188.245405 166.53039 198.141936 177.737471 188.016069"></polygon>
<polygon id="Fill-294" fill="#FF4D6A" points="179.953829 186.595145 188.953396 178.141821 179.63172 186.221879"></polygon>
<polygon id="Fill-296" fill="#FF4D6A" points="180.613006 189.501113 190.506069 183.811951 191.380491 184.287962 194.569942 189.322066 189.159538 185.925824 181.032659 192.032038 181.513006 189.965419"></polygon>
<polygon id="Fill-298" fill="#FF3355" points="191.380665 184.287789 191.380665 184.287789 194.570116 189.321893 190.230954 185.649494 188.802919 186.17276"></polygon>
<g id="Group" transform="translate(74.355645, 135.628322) rotate(20.000000) translate(-74.355645, -135.628322) translate(65.355645, 127.628322)">
<polygon id="Fill-300" fill="#FF661A" points="7.47138728 6.84372832 8.2600593e-14 4.93491329 7.34739884 7.72205202"></polygon>
<polygon id="Fill-302" fill="#FF5500" points="6.57723988 8.73619942 0.000216763006 4.93460983 7.34761561 7.72218208"></polygon>
<polygon id="Fill-304" fill="#FF661A" points="7.34757225 7.72222543 6.08947977 8.97728324 6.6717052 15.3592197 11.7547977 8.75315029 11.3568208 7.49202312"></polygon>
<polygon id="Fill-306" fill="#FF661A" points="7.34757225 7.72222543 7.61809249 5.80343931 11.5631792 0.000260115607 12.7146243 5.05300578 11.3568208 7.49202312"></polygon>
<polygon id="Fill-308" fill="#FF5500" points="10.814263 7.52280347 8.47669075 5.94390173 7.34735549 7.72222543"></polygon>
<polygon id="Fill-310" fill="#E64D00" points="8.47669075 5.94407514 11.6279913 7.00447977 10.814263 7.52297688"></polygon>
<polygon id="Fill-312" fill="#FF5500" points="9.34903179 7.60708092 6.67157514 15.3593931 9.08067919 7.62268786"></polygon>
<polygon id="Fill-314" fill="#FF5500" points="9.71605491 6.36112717 11.5628757 -2.84217094e-14 9.46547688 6.27702312"></polygon>
<polygon id="Fill-316" fill="#FF5500" points="10.814263 7.52280347 13.8285694 2.19390173 14.3622399 2.17482659 17.2100723 3.62843931 13.7843497 3.53783237 11.6990896 8.57713873 11.356604 7.49202312"></polygon>
<polygon id="Fill-318" fill="#E64D00" points="14.3622832 2.17486994 14.3622832 2.17486994 17.2101156 3.62848266 14.2031792 3.11778902 13.6868497 3.74943642"></polygon>
</g>
<polygon id="Fill-320" fill="#0FBD8C" points="109.022818 172.860303 116.433945 165.46565 109.774552 173.801488"></polygon>
<polygon id="Fill-322" fill="#0DA57A" points="111.37565 174.454292 116.434032 165.465997 109.774639 173.801402"></polygon>
<polygon id="Fill-324" fill="#0FBD8C" points="109.774725 173.801445 112.112298 174.39841 115.843223 182.259104 105.337153 178.052601 104.930506 176.303324"></polygon>
<polygon id="Fill-326" fill="#0FBD8C" points="109.774725 173.801445 108.132529 171.746532 99.5109971 167.690896 101.657818 174.391908 104.930506 176.303324"></polygon>
<polygon id="Fill-328" fill="#0DA57A" points="105.585737 175.96487 107.226199 172.504465 109.774899 173.801575"></polygon>
<polygon id="Fill-330" fill="#0B8E69" points="107.226069 172.504249 104.276358 175.921734 105.585607 175.964653"></polygon>
<polygon id="Fill-332" fill="#0DA57A" points="107.356257 175.05039 115.843396 182.259061 107.680535 174.883049"></polygon>
<polygon id="Fill-334" fill="#0DA57A" points="106.06604 173.848439 99.5106936 167.691069 106.300578 173.576618"></polygon>
<polygon id="Fill-336" fill="#0DA57A" points="105.585737 175.96487 98.3801012 171.821228 97.7428179 172.167616 95.4199855 175.834812 99.360737 173.360679 105.280101 177.808223 104.930246 176.303454"></polygon>
<polygon id="Fill-338" fill="#0B8E69" points="97.7429046 172.167702 97.7429046 172.167702 95.4200723 175.834899 98.5804769 173.15961 99.6209393 173.540679"></polygon>
<path d="M29.9790607,50.9755925 C31.6186561,47.9742919 29.3630202,44.783974 31.3594075,44.6222688 C31.6372977,44.5992919 32.7952457,44.1397543 33.4524711,42.1021821 C35.5121532,44.118078 39.5036272,37.2683671 44.1107081,41.0725578 C48.0241474,44.3044942 55.668078,35.0274711 40.0372977,28.7279046 C33.1875867,27.1520376 26.4518931,32.2199566 25.0312283,38.3829624 C21.6146098,53.201315 11.8312283,51.7823844 13.7270376,67.7170665 C13.7270376,67.7170665 16.2189451,57.309841 25.8727023,55.3806503 C28.8488584,54.7858526 28.4695231,53.7393208 29.9790607,50.9755925" id="Fill-340" fill="#FFAB1A"></path>
<path d="M32.0973555,44.8681214 C32.3492341,44.5845954 32.3349277,44.1480347 32.0457659,43.902659 C31.5502457,43.4821387 30.656315,43.1327168 29.3522688,44.1454335 C27.7607948,45.3822832 28.4856503,48.5080058 30.2162861,49.1795376 C30.6753902,49.3577168 31.1553035,48.9662428 31.1123844,48.4754913 C31.0759682,48.0567052 31.0646965,47.4922543 31.1440318,46.820289 C31.2446098,45.9723121 31.7327601,45.279104 32.0973555,44.8681214" id="Fill-342" fill="#F6DDC3"></path>
<path d="M37.1889451,39.7178757 C31.2223266,45.6116618 36.4333092,54.3849277 29.7162572,58.4245231" id="Stroke-344" stroke="#FFAB1A" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M40.6622254,43.3659971 C40.9813006,43.4713439 40.8091908,43.9365173 40.505289,43.9217775 C40.3245087,43.9135405 38.9710405,43.2836272 37.8911272,43.0581936 C37.1532659,42.9042919 36.7279769,43.2446098 36.130578,43.3178757 C36.0295665,43.2428757 36.770896,42.6428757 37.8477746,42.6116618 C38.6367919,42.5891185 39.9950289,43.1457659 40.6622254,43.3659971" id="Fill-346" fill="#FF9B0B"></path>
<path d="M45.3368497,45.2135983 C45.9333815,45.2703902 46.1419075,45.709552 46.5628613,45.942789 C46.6612717,45.8994364 46.2992775,45.1268931 45.5093931,44.8021821 C44.9306358,44.5641763 43.7466763,44.7193786 43.1817919,44.7453902" id="Fill-348" fill="#FF9B0B"></path>
<path d="M40.5470809,53.9908092 C39.9917341,53.3621965 37.5093642,53.5330058 37.7022832,52.887052" id="Stroke-350" stroke="#FF661A" stroke-width="0.5" opacity="0.4" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M159.798251,163.471344 C158.662847,162.812818 160.836113,158.413396 159.401142,154.962095 C159.166171,154.396344 159.49565,153.741286 160.05013,153.701835 C161.232355,153.618165 163.076575,153.456026 165.047818,153.159494 C167.56487,152.780159 169.073107,151.051257 170.039003,151.733194 C172.104321,153.190708 177.313569,161.08435 179.005621,165.139986 C179.585246,166.529436 179.131777,172.366864 178.199263,172.878425 C176.918627,173.582038 174.72802,174.168165 173.626864,172.309205 C172.813569,170.936662 168.412413,165.153858 166.03409,163.574523 C163.670072,162.004725 161.068483,164.207905 159.798251,163.471344" id="Fill-352" fill="#4D97FF"></path>
<path d="M171.526777,169.516171 C168.520708,165.036546 160.411171,163.787124 157.432847,164.407934 C155.530968,164.80461 155.153367,159.544205 157.328801,159.219494 C165.259292,158.034668 172.145419,161.195506 174.392384,164.905188 C176.715217,168.739725 172.23776,170.575275 171.526777,169.516171" id="Fill-354" fill="#4280D7"></path>
<path d="M171.792832,170.820954 C172.402803,172.227312 174.667977,174.740462 175.649913,173.61026 C176.63185,172.479624 177.15078,169.105925 176.533006,167.218353 C175.727948,164.759393 173.951792,164.263873 172.354682,165.639884 C171.07578,166.741908 171.242254,169.551156 171.792832,170.820954" id="Fill-356" fill="#F1F2F2"></path>
<path d="M176.897775,173.282428 C177.068584,172.892254 178.276821,169.553671 177.583613,165.953671 C176.728699,161.516098 169.037081,152.185751 168.839827,151.945578 C168.33737,151.334306 170.022919,151.218988 170.479422,151.743555 C171.427543,152.832572 178.41815,162.054538 179.146908,165.670578 C180.04604,170.132428 178.74026,172.841098 178.366994,173.362197 C177.991561,173.886329 176.564827,174.043266 176.897775,173.282428" id="Fill-358" fill="#F1F2F2"></path>
<path d="M164.664451,154.194147 C165.964595,154.022905 167.100434,154.672327 167.201445,155.642991 C167.302023,156.61409 166.330058,157.539668 165.029913,157.710043 C163.729335,157.880853 162.593931,157.232298 162.492919,156.261199 C162.391908,155.290101 163.364306,154.364957 164.664451,154.194147" id="Fill-360" fill="#F1F2F2"></path>
<path d="M197.470795,114.710679 C196.171517,113.529321 194.960679,111.374263 194.960679,109.986546 C194.960679,108.598396 194.994061,105.98987 199.348829,105.025708 C202.165882,104.402298 204.297529,107.789436 204.297529,107.789436" id="Fill-362" fill="#0B8E69"></path>
<path d="M219.055014,107.742529 C217.864986,106.64354 216.733916,104.872587 216.733916,103.581113 C216.733916,102.290072 216.763829,99.8623266 220.752702,98.9657948 C223.332616,98.3853035 225.206315,101.515361 225.206315,101.515361" id="Fill-364" fill="#0B8E69"></path>
<path d="M200.561358,106.030838 C198.072919,106.15526 195.44315,108.804971 196.466705,113.056994 C197.490694,117.309017 205.651387,114.842688 205.527399,111.705694 C205.403844,108.568699 203.710925,105.873468 200.561358,106.030838" id="Fill-366" fill="#0DA57A"></path>
<path d="M221.908092,99.7773121 C219.701879,99.9017341 216.289162,103.513439 218.582948,107.12211 C220.914884,110.79104 226.420665,108.589162 226.310983,105.452168 C226.201301,102.315173 224.700434,99.6199422 221.908092,99.7773121" id="Fill-368" fill="#0DA57A"></path>
<path d="M198.586561,113.559147 C198.586561,113.559147 205.99422,122.34802 206.34841,122.742095 C206.703035,123.135737 211.925723,117.040795 209.766763,117.161315 C205.529046,117.397587 204.804191,110.547442 202.933092,108.771286 C200.03974,106.024465 196.799566,111.090217 198.586561,113.559147" id="Fill-370" fill="#B5875C"></path>
<path d="M220.277688,106.908468 C220.277688,106.908468 225.958179,110.537514 226.31237,110.931156 C226.666561,111.324798 233.119595,106.962225 230.960636,107.082312 C226.722919,107.319017 225.916127,104.380578 224.045029,102.604422 C221.151676,99.8576012 218.490694,104.439104 220.277688,106.908468" id="Fill-372" fill="#B5875C"></path>
<path d="M200.645419,91.6131503 C200.645419,92.0124277 200.321575,92.3362717 199.921864,92.3362717 C199.522587,92.3362717 199.198743,92.0124277 199.198743,91.6131503 C199.198743,91.2134393 199.522587,90.8895954 199.921864,90.8895954 C200.321575,90.8895954 200.645419,91.2134393 200.645419,91.6131503" id="Fill-374" fill="#0B8E69"></path>
<path d="M206.557066,90.8895954 C206.557066,91.2893064 206.233223,91.6131503 205.833945,91.6131503 C205.434234,91.6131503 205.11039,91.2893064 205.11039,90.8895954 C205.11039,90.4898844 205.434234,90.1660405 205.833945,90.1660405 C206.233223,90.1660405 206.557066,90.4898844 206.557066,90.8895954" id="Fill-376" fill="#0B8E69"></path>
<path d="M199.921864,91.6131503 C199.921864,91.6131503 199.694263,94.8684971 199.921864,96.8171965" id="Stroke-378" stroke="#FFFFFF" stroke-width="0.5" stroke-linecap="round"></path>
<path d="M205.833728,90.8895954 C205.833728,90.8895954 206.131994,93.3723988 206.269855,96.2067919" id="Stroke-380" stroke="#FFFFFF" stroke-width="0.5" stroke-linecap="round"></path>
<path d="M209.712399,104.173526 L210.872514,100.363266 C210.872514,100.363266 208.573092,98.057341 208.307341,96.5512717 C208.307341,96.5512717 209.198237,103.084509 209.712399,104.173526" id="Fill-382" fill="#0DA57A"></path>
<path d="M13.2743064,70.3932225 C13.2743064,70.3932225 9.26419075,76.7977023 12.2880347,85.4699566 C12.2880347,85.4699566 14.2839884,86.5945231 16.4728613,86.8108526 C16.4728613,86.8108526 10.6887572,80.383396 13.2743064,70.3932225" id="Fill-384" fill="#4280D7"></path>
<path d="M24.6719653,84.6009538 C24.6719653,84.6009538 21.3693642,80.7646821 21.0407514,78.6022543 C20.7121387,76.4398266 23.7637283,85.4762428 31.8546243,76.9336127 C31.8546243,76.9336127 26.6926301,81.3919942 24.6719653,84.6009538" id="Fill-386" fill="#4280D7"></path>
<path d="M5.00111272,147.691691 C9.49764451,152.143136 7.65125723,143.830275 11.0123844,146.647327 C13.4466329,148.6875 18.0797254,155.325217 22.4015462,156.726806 C23.0110838,156.924061 23.8941763,158.345159 23.3422977,159.648338 C22.4297254,160.726951 16.9083382,165.329697 10.5628179,159.872905 C6.10963873,156.043136 3.32466763,156.925361 3.28131503,154.644581 C3.26440751,153.770592 3.40400289,146.111055 5.00111272,147.691691" id="Fill-388" fill="#9966FF"></path>
<path d="M10.7093497,150.512991 C9.46339595,147.962991 12.230159,142.965303 14.2378179,143.624263 C15.5405636,144.05172 14.5300145,145.518338 15.3372399,147.538569 C16.2355058,149.784668 14.8894075,152.240592 20.1502457,155.584379 C21.4907081,156.436257 19.1622399,157.597673 17.9843497,157.142905 C14.7077601,155.879176 10.7093497,150.512991 10.7093497,150.512991" id="Fill-390" fill="#774DCB"></path>
<path d="M23.3709538,157.940939 C23.3709538,157.940939 20.0015896,160.758858 16.8637283,160.705535 C11.9271676,160.621431 11.1780347,157.013627 8.2599711,155.792384 C5.34190751,154.571575 5.43901734,151.293685 3.36199422,152.148598 C3.36199422,152.148598 3.08323699,154.861604 3.28222543,155.661026 C3.48121387,156.460882 6.61517341,156.924754 9.2666185,159.205968 C11.9184971,161.487182 13.9903179,163.687327 18.3225434,162.578801 C22.6552023,161.470275 23.325,160.241662 23.7589595,159.364639 C24.1478324,158.578656 23.9115607,157.666084 23.3709538,157.940939" id="Fill-392" fill="#F1F2F2"></path>
<path d="M19.0826879,154.85289 C19.977052,155.030636 18.1631792,153.493353 17.7209827,153.405347 C16.4867341,153.159971 14.3173699,153.880491 13.7498844,155.337572 C13.3532081,156.355925 15.4215607,157.100723 15.7809538,156.392341 C16.2829769,155.402168 18.2641908,154.690318 19.0826879,154.85289" id="Fill-394" fill="#F1F2F2"></path>
<path d="M16.1875145,151.523974 C17.0818786,151.70172 16.1693064,150.147095 15.7956069,149.89435 C14.7447399,149.183367 11.2383815,149.864436 10.670896,151.321517 C10.2742197,152.33987 12.5263873,153.771806 12.8857803,153.062991 C13.388237,152.073251 15.3694509,151.361402 16.1875145,151.523974" id="Fill-396" fill="#F1F2F2"></path>
<polygon id="Path" fill="#231F20" points="139.998962 152.818115 152.640686 154.166752 151.750854 162.014404 139.575378 161.466309"></polygon>
<path d="M143.030029,161.862572 C145.448671,158.348844 152.370347,160.334827 152.784798,167.630636 C153.237399,175.599711 147.461532,185.90896 146.935231,186.870954 C144.696503,190.959971 136.29,187.346965 139.133931,182.215751 C144.507486,172.52211 139.316879,167.257803 143.030029,161.862572" id="Fill-69" fill="#C49A6C"></path>
<path d="M144.064335,164.227066 C145.913757,161.149032 150.903208,162.680679 151.021561,168.933858 C151.151618,175.764494 146.687601,184.761026 146.280087,185.599899 C144.547717,189.166517 138.517803,186.275766 140.717081,181.798743 C144.872428,173.341517 141.225607,168.952066 144.064335,164.227066" id="Fill-105" fill="#B58D66"></path>
</g>
<g id="Group-11" transform="translate(49.000000, 69.000000)">
<polygon id="Fill-1" fill="#FF6680" points="6.27516 7.76112 6.98356 6.88472 -4e-05 0.00032"></polygon>
<polygon id="Fill-2" fill="#FF4D6A" points="4.76676 8.36844 6.27516 7.76124 -4e-05 4e-05"></polygon>
<polygon id="Fill-3" fill="#FF6680" points="4.07232 8.3166 0.55672 15.6346 10.45712 11.7186 10.83992 10.0898 6.27512 7.761"></polygon>
<polygon id="Fill-4" fill="#FF6680" points="6.2752 7.761 7.8228 5.8474 15.9472 2.0718 13.924 8.3106 10.84 10.0898"></polygon>
<polygon id="Fill-5" fill="#FF4D6A" points="10.22248 9.77468 8.67688 6.55308 6.27528 7.76108"></polygon>
<polygon id="Fill-6" fill="#FF3355" points="8.67676 6.5532 11.45636 9.7344 10.22236 9.7748"></polygon>
<polygon id="Fill-7" fill="#FF4D6A" points="0.55656 15.63468 8.55376 8.92348 8.24856 8.76788"></polygon>
<polygon id="Fill-8" fill="#FF4D6A" points="9.76996 7.80436 15.94716 2.07196 9.54876 7.55116"></polygon>
<polygon id="Fill-9" fill="#FF4D6A" points="10.22256 9.7746 10.84016 10.0898 10.51016 11.491 16.08856 7.3502 19.80176 9.6538 17.61296 6.2398 17.01296 5.9174"></polygon>
<polygon id="Fill-10" fill="#FF3355" points="15.8436 7.51812 16.824 7.16292 19.802 9.65372 17.6132 6.23972"></polygon>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 79 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="460px" height="410px" viewBox="0 0 460 410" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Play Splash</title>
<g id="Play-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.15">
<path d="M198.863512,410 C305.802543,410 430.097482,371.576771 452.093155,253.078861 C474.088827,134.580951 461.611455,68.5700263 263.707106,10.9241789 C65.8027578,-46.7216684 -20.1999474,137.950965 3.97647096,233.750334 C28.1528894,329.549702 91.9244808,410 198.863512,410 Z" id="Oval" fill="#4D97FF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 655 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 151 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="460px" height="410px" viewBox="0 0 460 410" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Projects Splash</title>
<g id="Projects-Splash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.15">
<path d="M164.472762,0 C276.070425,0 460,76.233353 460,189.766222 C460,303.299091 390.680692,410 279.083029,410 C167.485366,410 60.2134221,342.805556 34.9837958,239.736111 C9.75416954,136.666667 52.8750993,0 164.472762,0 Z M26.3122782,314.677871 C43.913384,314.677871 74,344.561709 74,364.592638 C74,384.623567 58.8561593,393.921569 41.2550535,393.921569 C23.6539477,393.921569 0,380.924144 0,360.893215 C0,340.862286 8.71117243,314.677871 26.3122782,314.677871 Z" fill="#4D97FF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 841 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.9 KiB

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="330px" height="32px" viewBox="0 0 330 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Map Key</title>
<defs>
<linearGradient x1="-1.11022302e-14%" y1="50%" x2="100%" y2="50%" id="linearGradient-1">
<stop stop-color="#0EBD8C" stop-opacity="0.05" offset="0%"></stop>
<stop stop-color="#0EBD8C" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Map-Key" fill="url(#linearGradient-1)">
<rect x="0" y="0" width="330" height="32" rx="16"></rect>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 736 B

View file

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="55px" viewBox="0 0 200 55" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>ScratchJr Logo</title>
<defs>
<polygon id="path-1" points="1.177346e-05 0.374407583 199.067109 0.374407583 199.067109 54.0279621 1.177346e-05 54.0279621"></polygon>
</defs>
<g id="ScratchJr-Logo" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Logo" transform="translate(0.000000, -0.000000)">
<g id="Group-3" transform="translate(0.000000, 0.573934)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M172.239621,0.373933649 C166.058578,0.373933649 160.371374,2.46966825 155.834882,5.98151659 C154.437725,4.58720379 152.127773,2.69146919 149.800758,2.58056872 C148.987488,2.54170616 147.610237,2.52274882 145.708815,2.52274882 C142.505972,2.52274882 138.835829,2.57677725 138.79981,2.57867299 L138.535355,2.58246445 L138.283223,2.65829384 C137.648152,2.84881517 134.730616,3.78056872 132.93346,5.29810427 L125.983697,5.29810427 C124.194123,5.29810427 121.689858,6.87535545 117.696493,9.78625592 C117.544834,9.8971564 117.389384,10.0099526 117.238673,10.1189573 C117.026351,9.88957346 116.796967,9.62701422 116.602654,9.40236967 C115.316398,7.92938389 113.71545,6.0971564 111.764739,5.60900474 L111.537251,5.5521327 L86.8225592,5.5521327 C85.4642654,4.29905213 82.3893839,1.75592417 79.796019,1.75592417 C79.517346,1.75592417 79.1505213,1.73791469 78.7116588,1.71611374 C77.9865403,1.68293839 77.0822749,1.63933649 76.0500474,1.63933649 C69.7761137,1.63933649 65.0538389,3.392891 62.0111848,6.85165877 C61.7950711,7.02322275 61.7126066,7.02322275 61.6017062,7.02322275 C61.3107109,7.02322275 60.816872,6.91611374 60.2453081,6.79383886 C58.9685308,6.51990521 57.0405687,6.1056872 54.0557346,6.1056872 L44.2405687,6.16540284 L43.8073934,6.41563981 C42.6254028,7.0943128 36.7145024,10.556872 34.8092891,12.9957346 C34.6917536,13.0241706 34.2604739,13.0421801 33.8709005,12.9872038 C33.2699526,9.06966825 30.5751659,3.49526066 23.2936493,3.49526066 C20.1182938,3.49526066 17.8604739,4.69052133 16.7306161,5.46682464 C16.3732701,5.42227488 15.9325118,5.38720379 15.424455,5.38720379 C12.5846445,5.38720379 5.6149763,6.59194313 2.2121327,17.7464455 L2.12872038,18.0184834 L2.12872038,27.1578199 C1.36473934,28.1834123 0.122085308,30.350237 0.042464455,33.7255924 C-0.0257819905,36.6203791 0.00360189573,38.9625592 0.0254028436,40.671564 C0.032985782,41.3398104 0.042464455,41.9170616 0.042464455,42.4080569 C0.042464455,47.8971564 6.04246445,53.7009479 11.7145024,53.7009479 L11.9562085,53.7009479 L12.1903318,53.6412322 C12.3704265,53.5938389 16.6329858,52.4744076 19.4945972,50.2706161 C20.1325118,49.7777251 20.8699526,49.5274882 21.6803791,49.5274882 C22.4453081,49.5274882 23.0130806,49.7483412 23.0130806,49.7483412 L23.9628436,50.1587678 L24.8746919,49.5521327 C26.9704265,50.956872 31.6481517,53.7009479 36.2017062,53.7009479 C40.303128,53.7009479 43.3182938,52.0545024 45.1201896,51.0696682 C45.5410427,50.8402844 46.0566825,50.5587678 46.2898578,50.4734597 C48.3107109,50.4706161 54.1694787,50.3663507 56.802654,49.3436019 C56.974218,49.435545 57.2216114,49.5947867 57.4187678,49.7189573 C58.7524171,50.564455 60.9780095,51.9767773 65.2623697,51.9938389 C65.3618957,51.9995261 65.5268246,52.0080569 65.7495735,52.0080569 C67.5448341,52.0080569 73.4225592,51.463981 77.1704265,44.8260664 C79.0320379,45.5473934 81.03109,45.7066351 81.2927014,45.7255924 L84.7912796,45.7293839 C85.8092891,47.4175355 88.131564,50.3322275 92.0225592,50.3322275 L105.889858,50.3322275 L106.261422,50.1654028 C107.229194,49.7312796 107.932512,49.3170616 108.443412,48.9388626 C109.795071,49.9540284 111.960948,51.5189573 114.357156,51.5189573 L122.542938,51.5189573 L122.834882,51.421327 C123.436777,51.2203791 124.759052,50.756872 125.653839,50.2753555 C125.918294,50.257346 126.423507,50.2383886 127.350521,50.2383886 C128.684171,50.2383886 130.2709,50.2772512 131.214976,50.3056872 C132.334408,51.5236967 134.692701,53.7009479 137.229194,53.7009479 C140.196967,53.7009479 143.340095,53.5672986 146.211185,52.5881517 C146.792227,52.3900474 147.579905,52.3322275 148.414976,52.2696682 C150.672796,52.1037915 153.692701,51.8725118 156.264265,48.7540284 C160.727773,52.0658768 166.253839,54.0279621 172.239621,54.0279621 C187.055735,54.0279621 199.067109,42.0175355 199.067109,27.2014218 C199.067109,12.3853081 187.055735,0.373933649 172.239621,0.373933649" id="Fill-1" fill="#2BA4D9" mask="url(#mask-2)"></path>
</g>
<path d="M172.216493,4.36909953 C165.727393,4.36909953 159.856303,7.01080569 155.616493,11.2762085 L151.972891,8.19184834 L151.864834,8.10654028 L151.78237,8.22028436 C150.991848,7.60890995 150.199431,7.15014218 149.620284,7.12170616 C148.865782,7.08663507 147.550142,7.06862559 145.708436,7.06862559 C143.04019,7.06862559 140.04019,7.10748815 139.131185,7.11981043 C137.799431,7.55203791 135.770995,8.4363981 135.155829,9.16720379 L134.588057,9.84492891 L125.984265,9.84492891 C124.916967,9.97099526 121.165308,12.7055924 119.932133,13.6032227 C119.016493,14.2714692 118.562464,14.601327 118.229763,14.7823697 C117.903697,14.9624645 117.532133,15.0563033 117.157725,15.0563033 C115.844929,15.0563033 114.962464,14.0477725 113.742559,12.6487204 C113.007962,11.8079621 111.812701,10.4382938 111.009858,10.0989573 L85.2724171,10.0989573 L84.7169668,9.54161137 C83.1482464,7.97763033 80.7946919,6.30180095 79.7956398,6.30180095 C79.4724171,6.30180095 79.043981,6.28189573 78.5321327,6.25725118 C77.8468246,6.22597156 76.9918483,6.18616114 76.0496682,6.18616114 C70.7861611,6.18616114 67.1027488,7.49800948 64.7842654,10.1946919 L64.5880569,10.3927962 C63.6648341,11.1946919 62.7150711,11.5690995 61.6022749,11.5690995 C60.9065403,11.5690995 60.2307109,11.423128 59.4468246,11.2544076 C58.2600948,11.0003791 56.6363981,10.6525118 54.0676777,10.6525118 L45.2686256,10.7065403 C42.7207583,12.2022749 38.7700474,14.7757346 37.8003791,16.08 C37.3292891,16.7454028 36.3378199,17.5776303 34.4345024,17.5776303 C32.9937441,17.5776303 31.6145972,17.0932701 31.4610427,17.037346 L30.2411374,16.5956398 L30.2098578,15.2989573 C30.1852133,14.5643602 29.7833175,8.04208531 23.294218,8.04208531 C20.2771564,8.04208531 18.587109,9.55298578 18.5169668,9.61744076 L17.7387678,10.3283412 L16.7065403,10.0581991 C16.7055924,10.0581991 16.2003791,9.93402844 15.4240758,9.93402844 C12.9738389,9.93402844 8.50654028,11.1634123 5.92549763,19.3387678 L5.92549763,29.3965877 L5.35109005,29.9577251 C5.31317536,29.9975355 3.91127962,31.4866351 3.83734597,34.5653081 C3.77099526,37.3909005 3.80037915,39.6923223 3.82123223,41.372891 C3.83165877,42.0591469 3.83734597,42.6544076 3.83734597,43.1577251 C3.83734597,46.516019 7.92265403,50.4781043 11.4781043,50.6487204 C12.3273934,50.4032227 15.2686256,49.4828436 17.1766825,48.0127014 C18.4771564,47.0098578 20.0335545,46.4809479 21.6809479,46.4809479 C22.3709953,46.4809479 22.9804739,46.5738389 23.4581991,46.6837915 L24.9909005,45.6610427 L26.0695735,46.4961137 C26.122654,46.5359242 31.5188626,50.6553555 36.2022749,50.6553555 C39.3349763,50.6553555 41.6269194,49.4041706 43.2999052,48.4885308 C44.4278673,47.8724171 45.2420853,47.4288152 46.1662559,47.4288152 C49.8818957,47.4288152 54.5188626,47.0648341 55.5018009,46.5236019 L55.6961137,46.4174408 L55.908436,46.358673 C56.1918483,46.28 56.48,46.2401896 56.7700474,46.2401896 C57.8411374,46.2401896 58.6600948,46.7605687 59.4525118,47.2629384 C60.6354502,48.0136493 62.1074882,48.9463507 65.3378199,48.9463507 L65.5217062,48.9558294 C65.5340284,48.9558294 65.6193365,48.9615166 65.7501422,48.9615166 C67.0875829,48.9615166 71.6638863,48.508436 74.3927962,42.6856872 C74.7615166,41.9008531 75.5909005,41.4335545 76.6098578,41.4335545 C76.9501422,41.4335545 77.4563033,41.4894787 77.9283412,41.7520379 C79.0250237,42.3672038 80.8183886,42.6259716 81.4980095,42.6828436 L87.1946919,42.6828436 L87.6828436,43.8468246 C87.694218,43.8724171 89.1994313,47.2856872 92.023128,47.2856872 L105.056303,47.2856872 C105.594692,47.0174408 106.131185,46.6951659 106.359621,46.5027488 C106.703697,45.8193365 107.397536,45.3814218 108.180474,45.3814218 C109.032607,45.3814218 109.647773,45.843981 110.579526,46.5454028 C111.536872,47.265782 113.140664,48.4724171 114.356777,48.4724171 L121.91981,48.4724171 C122.801327,48.1643602 123.699905,47.7946919 123.934976,47.6354502 L124.25346,47.423128 L124.670521,47.3207583 C124.999431,47.2563033 125.573839,47.1918483 127.350142,47.1918483 C129.454408,47.1918483 132.062938,47.2837915 132.172891,47.2866351 L133.041137,47.3179147 L133.585213,47.9956398 C134.485687,49.108436 136.256303,50.6553555 137.229763,50.6553555 C139.007962,50.6553555 142.314123,50.6553555 144.985213,49.744455 C146.028815,49.3890047 147.099905,49.3112796 148.135924,49.2335545 C150.18237,49.0837915 151.834502,48.9558294 153.386161,47.0316588 C153.383318,47.0288152 153.381422,47.0259716 153.378578,47.023128 L153.594692,46.7747867 L155.457251,44.1074882 C159.709384,48.4686256 165.643981,51.1814218 172.216493,51.1814218 C174.451564,51.1814218 176.612701,50.8676777 178.660095,50.2818957 C186.638294,48.0022749 192.874313,41.5946919 194.910332,33.516019 C195.375735,31.6790521 195.621232,29.7558294 195.621232,27.7747867 C195.621232,14.8487204 185.143507,4.36909953 172.216493,4.36909953" id="Fill-4" fill="#FEFEFE"></path>
<path d="M169.501611,19.1494787 L169.509194,19.1058768 L169.481706,19.004455 C169.160379,17.8082464 168.89782,17.4850237 167.668436,17.4850237 L164.068436,17.4850237 C163.56891,17.4850237 163.006825,17.5390521 162.620095,17.9409479 C162.348057,18.2243602 162.219147,18.6290995 162.239052,19.1466351 C162.267488,19.8878673 162.60872,20.7712796 164.068436,20.7712796 L166.71109,20.7712796 C166.998294,22.7295735 167.321517,26.3580095 167.40019,29.754218 C167.458957,32.2622749 166.98218,35.4954502 165.469384,37.0433175 C164.872227,37.6546919 164.177441,37.9513744 163.346161,37.9513744 C161.974597,37.9513744 161.67128,37.01109 161.548057,35.9940284 C161.53763,35.9020853 161.528152,35.8272038 161.517725,35.7741232 C161.288341,34.5873934 160.685498,34.01109 159.777441,34.0745972 C159.292133,34.103981 158.88455,34.2954502 158.601137,34.6290995 C158.281706,35.004455 158.146161,35.5295735 158.20872,36.1475829 L158.222938,36.3049289 C158.319621,37.4395261 158.616303,40.8935545 163.301611,40.8935545 C164.967014,40.8935545 166.417251,40.2708057 167.61346,39.0404739 C169.827678,36.7636967 170.532891,33.0603791 170.464645,30.5817062 C170.349953,26.3864455 169.952796,20.9722275 169.501611,19.1494787" id="Fill-6" fill="#F9A738"></path>
<path d="M164.736303,16.9227488 C164.941991,16.9672986 165.157156,16.9900474 165.378957,16.9900474 C165.835829,16.9900474 166.31545,16.8943128 166.777062,16.7056872 C167.461422,16.4270142 168.033934,15.9748815 168.388436,15.4336493 C168.778957,14.8364929 168.867109,14.2004739 168.638673,13.6412322 C168.187488,12.5341232 166.661422,12.1436019 165.163791,12.7540284 C164.480379,13.0327014 163.909763,13.485782 163.555261,14.0270142 C163.170427,14.6156398 163.079431,15.2687204 163.304076,15.8184834 C163.52872,16.3691943 164.050047,16.7720379 164.736303,16.9227488" id="Fill-8" fill="#F9A738"></path>
<path d="M188.59128,21.910237 C188.519242,21.5623697 187.945782,19.4998104 184.541991,19.4998104 C182.632986,19.4998104 181.297441,20.116872 180.514502,20.6040758 C180.267109,19.924455 179.606445,19.4571564 178.833934,19.502654 L174.47564,19.7737441 C173.556209,19.831564 172.852891,20.6277725 172.907867,21.5509953 C172.966635,22.4723223 173.751469,23.167109 174.684171,23.1197156 L177.218768,22.9614218 L177.436777,32.7036019 L176.564739,32.7301422 C176.122085,32.7453081 175.710711,32.93109 175.408341,33.2543128 C175.104076,33.5775355 174.945782,33.9993365 174.959052,34.4400948 C174.972322,34.8846445 175.157156,35.296019 175.480379,35.5993365 C175.790332,35.8912796 176.19128,36.0495735 176.612133,36.0495735 C176.632038,36.0495735 176.650047,36.0486256 176.669953,36.0486256 L182.551469,35.8656872 C182.995071,35.8514692 183.406445,35.6656872 183.710711,35.3415166 C184.014028,35.0182938 184.17327,34.595545 184.159052,34.152891 C184.131564,33.2381991 183.358104,32.5434123 182.448152,32.5462559 L181.145782,32.5870142 L180.801706,25.1908057 C181.408341,23.4704265 183.238673,22.6533649 184.363791,22.6230332 C184.905972,22.5699526 185.149573,22.9358294 185.484171,23.516872 C185.811185,24.0893839 186.299336,24.9547867 187.521137,24.6059716 C187.972322,24.4770616 188.318294,24.2050237 188.521137,23.8182938 C188.916398,23.0656872 188.65763,22.1235071 188.59128,21.910237" id="Fill-10" fill="#F9A738"></path>
<path d="M17.9927962,27.1734597 C17.829763,27.1393365 17.7093839,27.1146919 17.6420853,27.0957346 C15.7615166,26.5810427 15.3994313,25.8511848 15.294218,25.2748815 C15.2212322,24.8625592 15.3122275,21.0473934 15.4079621,20.5270142 C15.4591469,20.2511848 15.6781043,19.3222749 16.3406635,18.9943128 C16.8070142,18.7630332 17.4449289,18.8483412 18.2401896,19.2511848 C20.68,20.4853081 20.7103318,23.0303318 20.7245498,24.2530806 C20.7264455,24.4009479 20.7283412,24.5308057 20.7330806,24.6379147 C20.7956398,26.042654 21.6600948,26.8473934 23.1046445,26.8473934 C24.4572512,26.8473934 24.9150711,25.8218009 24.9700474,25.2559242 L25.4790521,14.3222749 L25.4714692,14.2720379 C25.3814218,13.7469194 24.8117536,12.7535545 23.294218,12.7535545 C21.7482464,12.7535545 21.2534597,13.7725118 21.2070142,14.3516588 L21.2070142,16.0521327 C20.4079621,15.3222749 18.972891,14.557346 16.4600948,14.557346 C14.330237,14.557346 11.7150711,15.5317536 11.3491943,20.1725118 L11.3378199,20.3052133 C11.243981,21.3867299 11.20891,25.5336493 11.3766825,27.1469194 C11.6724171,29.9886256 14.3169668,30.6369668 15.4458768,30.9137441 C17.0108057,31.2995261 18.7558294,31.7753555 19.9359242,32.0976303 L20.9899526,32.3838863 C21.8667299,32.614218 22.772891,32.8521327 22.772891,34.7241706 C22.772891,36.9876777 21.1548815,38.2853081 18.3349763,38.2853081 C15.1842654,38.2853081 13.8506161,36.042654 13.8506161,35.1516588 L13.851564,34.9374408 C13.8581991,33.5734597 13.8733649,30.7345972 11.9861611,30.5971564 C11.3577251,30.5535545 10.8316588,30.7165877 10.4335545,31.0872038 C9.74540284,31.7260664 9.7236019,32.7156398 9.72265403,32.8274882 L9.72265403,43.5981043 C9.72265403,44.5943128 10.8563033,45.2104265 11.9055924,45.2104265 C12.9681517,45.2104265 13.708436,44.4530806 13.708436,43.7744076 C13.708436,43.5203791 13.694218,42.0123223 13.6847393,41.036019 C14.9236019,41.6549763 17.1918483,42.4597156 18.8335545,42.4597156 C22.5766825,42.4597156 26.9472986,40.3345972 26.9472986,34.3450237 C26.9472986,30.8454976 23.9349763,28.4322275 17.9927962,27.1734597" id="Fill-12" fill="#F9A738"></path>
<path d="M42.94,33.0162085 C41.5390521,33.0162085 41.1693839,34.3403791 41.1693839,35.0418009 L41.1693839,38.0124171 C41.1674882,38.1508057 41.0850237,41.4010427 36.6129858,41.4010427 C34.6774408,41.4010427 33.3513744,40.8256872 32.6717536,39.6920379 C32.1191469,38.7678673 32.1191469,37.7081517 32.1200948,37.1612322 L32.1181991,29.0228436 C32.1286256,28.9034123 32.3987678,26.1185782 35.2205687,26.1185782 C37.94,26.1185782 38.8878673,27.7204739 39.5807583,28.89109 L39.8423697,29.3299526 C40.0622749,29.7157346 40.5210427,30.5166825 41.7058768,30.5166825 C42.6148815,30.5166825 43.6992417,30.127109 43.6992417,28.2711848 L43.6945024,21.6266351 C43.6101422,21.0029384 43.0850237,19.8237915 41.7058768,19.8237915 C40.3238863,19.8237915 39.8006635,21.0901422 39.7144076,21.8181043 L39.7144076,23.4550711 C38.8935545,22.7242654 37.4234123,21.912891 34.9362085,21.912891 C30.3068246,21.912891 28.1978199,25.405782 28.1978199,28.6512796 L28.1978199,37.9830332 C28.1978199,40.4835071 29.8575355,45.2105213 36.1381043,45.2105213 C42.7892891,45.2105213 45.0272038,40.6171564 45.0272038,38.5214218 L45.0272038,35.1356398 C45.0272038,33.7887204 44.2660664,33.0162085 42.94,33.0162085" id="Fill-14" fill="#F9A738"></path>
<path d="M60.3080569,21.295545 C60.3080569,23.9201896 55.3763033,25.1780095 52.9042654,25.5372512 L52.9042654,19.6187678 C54.7867299,19.4832227 58.7241706,19.4490995 59.9658768,20.5751659 C60.1990521,20.7874882 60.3080569,21.0159242 60.3080569,21.295545 M68.042654,36.3363033 L67.9232227,36.3344076 C67.5270142,36.3306161 66.856872,36.3116588 66.3886256,36.7685308 C66.1014218,37.0500474 65.9554502,37.4481517 65.9554502,37.9514692 C65.9554502,38.5306161 65.8388626,38.9268246 65.6104265,39.1277725 C65.4123223,39.303128 65.0815166,39.3618957 64.642654,39.3088152 C63.0473934,39.0936493 63.0540284,34.3780095 63.0597156,31.2576303 L63.0597156,30.6908057 C63.0597156,29.1552607 62.5668246,27.9656872 61.5507109,27.1211374 C61.8890995,26.9381991 62.242654,26.6595261 62.5924171,26.2936493 C63.6682464,25.1675829 64.7810427,23.1192417 64.6729858,20.7514692 C64.4796209,16.5780095 59.5838863,15.652891 57.0331754,15.7448341 L46.9184834,15.7448341 C46.1658768,15.7581043 44.743128,16.188436 44.743128,17.7211374 C44.743128,19.2348815 46.1374408,19.7258768 46.9061611,19.7751659 L48.6824645,19.7751659 L48.6824645,25.9694787 C47.4151659,26.1002844 46.878673,26.7486256 46.6635071,27.1514692 C46.3099526,27.8159242 46.3696682,28.6718483 46.814218,29.3325118 C47.250237,29.9789573 47.9630332,30.3192417 48.6796209,30.2405687 C48.7526066,30.2405687 48.8161137,30.2396209 48.8872038,30.2377251 L48.8872038,37.9334597 L46.743128,38.1732701 C45.6104265,38.2974408 45.157346,39.0680569 45.3165877,40.5941232 C45.3933649,41.3353555 45.7364929,41.7268246 46.0104265,41.9249289 C46.6407583,42.3808531 47.4151659,42.2301422 47.4398104,42.2197156 C47.743128,42.1950711 54.8729858,41.602654 56.1004739,41.2794313 C57.0037915,41.0415166 57.2947867,39.931564 57.1156398,38.9581043 C56.9080569,37.8254028 56.1734597,37.131564 55.2862559,37.2235071 L52.9042654,37.4851185 L52.9042654,29.6595261 L53.1507109,29.6121327 C54.7943128,29.2974408 56.4957346,28.9694787 57.5080569,29.0083412 C58.1706161,29.03109 58.3971564,29.3562085 58.5327014,29.6718483 C59.1819905,31.1732701 59.2274882,34.723981 59.2521327,36.63109 L59.264455,37.4396209 C59.2976303,38.9296682 59.8018957,43.7874882 64.9099526,43.7874882 C69.7876777,43.7874882 70.0350711,39.202654 70.0350711,38.2832227 C70.0350711,36.8547867 68.8436019,36.3363033 68.042654,36.3363033" id="Fill-16" fill="#F9A738"></path>
<path d="M126.14218,33.7122275 C126.14218,32.3653081 125.381043,31.5937441 124.054976,31.5937441 C122.654028,31.5937441 122.28436,32.9179147 122.28436,33.6174408 L122.28436,36.5880569 C122.282464,36.7273934 122.2,39.9766825 117.726066,39.9766825 C115.791469,39.9766825 114.465403,39.4022749 113.78673,38.2686256 C113.233175,37.3454028 113.234123,36.2847393 113.235071,35.7378199 L113.233175,27.6003791 C113.243602,27.4809479 113.513744,24.694218 116.334597,24.694218 C119.054976,24.694218 120.002844,26.2989573 120.695735,27.4695735 L120.956398,27.9065403 C121.176303,28.2913744 121.634123,29.0932701 122.820853,29.0932701 C123.729858,29.0932701 124.81327,28.7036967 124.81327,26.8477725 L124.808531,20.2032227 C124.723223,19.5795261 124.198104,18.4022749 122.820853,18.4022749 C121.438863,18.4022749 120.91564,19.6667299 120.829384,20.3937441 L120.829384,22.0307109 C120.008531,21.2989573 118.538389,20.4885308 116.051185,20.4885308 C111.421801,20.4885308 109.312796,23.9814218 109.312796,27.2269194 L109.312796,36.5596209 C109.312796,39.0600948 110.972512,43.787109 117.252133,43.787109 C123.903318,43.787109 126.14218,39.1927962 126.14218,37.0970616 L126.14218,33.7122275 Z" id="Fill-18" fill="#F9A738"></path>
<path d="M80.4016114,26.5800948 L76.6651185,26.9033175 L78.0063507,21.4635071 L80.4016114,26.5800948 Z M92.1636967,30.9004739 C91.5703318,29.6274882 90.6347867,29.250237 90.0129858,29.5393365 L87.2651185,30.8208531 L79.4366825,13.32891 C79.4148815,11.8530806 78.7561137,11.1800948 78.1428436,11.1800948 C77.7570616,11.1819905 69.6603791,11.2075829 69.5817062,11.2151659 C69.525782,11.2246445 68.2016114,11.4729858 68.2091943,13.4274882 C68.2139336,15.32891 69.2016114,15.6018957 69.3144076,15.6265403 L69.3655924,15.6379147 L74.5390521,15.6208531 L71.3940284,31.957346 L66.3618009,31.9620853 C65.8442654,32.0369668 64.8641706,32.5791469 64.8641706,34.0995261 C64.8641706,35.9800948 66.0054028,36.2246445 66.1447393,36.242654 L75.968436,36.242654 C76.5655924,36.242654 77.2016114,35.4909953 77.2016114,34.0995261 C77.2016114,32.692891 76.5096682,31.957346 75.8253081,31.957346 L75.4177251,31.957346 L75.6869194,30.8672986 L81.9030332,29.7905213 L83.2603791,32.6890995 L81.4366825,33.5440758 C80.9987678,33.8303318 80.3409479,34.7364929 80.9836019,36.1137441 C81.5627488,37.3554502 82.3219905,37.5535545 82.7437915,37.5535545 C82.9011374,37.5535545 83.01109,37.5260664 83.0480569,37.5146919 L91.954218,33.3620853 C92.4935545,33.1090047 92.7504265,32.1601896 92.1636967,30.9004739 L92.1636967,30.9004739 Z" id="Fill-20" fill="#F9A738"></path>
<path d="M109.880379,22.7136493 L109.890806,22.3790521 C109.918294,21.5743128 109.99128,19.4349763 109.99128,17.2615166 C109.99128,16.2529858 109.730616,15.5060664 109.216872,15.0406635 C108.681327,14.5572512 108.071848,14.5648341 107.92872,14.5743128 L88.0908057,14.9496682 C87.3277725,14.9638863 86.9021801,15.2994313 86.6803791,15.5790521 C86.0784834,16.3354502 86.2898578,17.4472986 86.309763,17.5382938 C86.3476777,17.8131754 87.224455,24.2852133 87.4320379,25.1980095 C87.7088152,26.408436 88.4945972,26.8605687 90.0614218,26.7022749 C90.7770616,26.6311848 91.1410427,26.301327 91.3201896,26.0378199 C91.7268246,25.4378199 91.5372512,24.7117536 91.5296682,24.7117536 L90.9637915,19.0472986 L96.1836967,18.8738389 L96.1836967,38.0472986 L93.6595261,38.0472986 C92.495545,38.0472986 91.5486256,38.994218 91.5486256,40.1572512 C91.5486256,41.3221801 92.495545,42.2690995 93.6595261,42.2690995 L102.8491,42.2690995 C104.014028,42.2690995 104.961896,41.3221801 104.961896,40.1572512 C104.961896,38.994218 104.014028,38.0472986 102.8491,38.0472986 L100.723033,38.0472986 L100.521137,18.7288152 L105.628246,18.5591469 C105.632986,19.5837915 105.642464,21.9174408 105.642464,22.5051185 C105.642464,22.8709953 105.780853,23.2018009 106.040569,23.4605687 C106.420664,23.8378199 107.05763,24.0529858 107.792227,24.0529858 L107.814028,24.0529858 C109.032986,24.044455 109.866161,23.3534597 109.880379,22.7136493" id="Fill-22" fill="#F9A738"></path>
<path d="M148.91327,40.4927014 C148.536019,40.2036019 148.077251,40.0794313 147.625118,40.1363033 L146.274408,40.3126066 L145.981517,16.0263507 L147.93981,16.0263507 C148.933175,16.0263507 149.740758,15.1334597 149.740758,14.0348815 C149.740758,12.9363033 148.933175,12.0424645 147.93981,12.0424645 L139.840284,12.0424645 C138.845972,12.0424645 138.036493,12.9363033 138.036493,14.0348815 C138.036493,15.1334597 138.845972,16.0263507 139.840284,16.0263507 L141.882938,16.0263507 L141.908531,25.6803791 L133.659242,27.2927014 L133.752133,18.6851185 L135.917062,18.6851185 C136.911374,18.6851185 137.718957,17.8765877 137.718957,16.8822749 C137.718957,15.8879621 136.911374,15.0784834 135.917062,15.0784834 L127.818483,15.0784834 C126.824171,15.0784834 126.016588,15.8879621 126.016588,16.8822749 C126.016588,17.8765877 126.824171,18.6851185 127.818483,18.6851185 L129.733175,18.6851185 L129.733175,38.3979147 L127.574882,38.4235071 C126.57109,38.4367773 125.763507,39.3391469 125.77569,40.4377251 C125.782464,40.9950711 126.003318,41.5296682 126.38436,41.9002844 C126.720853,42.2291943 127.152133,42.4083412 127.603318,42.4083412 L127.624171,42.4083412 L135.85545,42.309763 C136.861137,42.2964929 137.669668,41.3941232 137.657346,40.295545 C137.64218,39.2054976 136.824171,38.3258768 135.82891,38.3258768 L135.808057,38.3258768 L133.541706,38.3533649 L133.613744,31.5912796 L141.920853,29.988436 L141.949289,40.8775355 L139.461137,41.202654 C138.464929,41.3325118 137.768246,42.3249289 137.909479,43.4159242 C138.043128,44.424455 138.849763,45.1685308 139.760664,45.1685308 C139.831754,45.1685308 139.904739,45.1637915 139.976777,45.1543128 L148.141706,44.0879621 C149.137915,43.9562085 149.833649,42.9637915 149.691469,41.8746919 C149.619431,41.3211374 149.335071,40.8178199 148.91327,40.4927014" id="Fill-24" fill="#F9A738"></path>
<path d="M183.166066,39.5660664 L178.855166,39.8655924 C178.650427,39.8655924 178.40872,39.8655924 178.14237,39.8636967 C176.806825,39.8513744 174.770806,39.7452133 172.780284,38.9423697 C172.58218,38.8627488 171.896872,39.0276777 171.752796,39.1935545 C166.691185,44.9774408 161.938578,44.4381043 161.938578,44.4381043 C159.217251,44.4381043 153.902559,41.1783886 153.997346,36.1490047 C154.093081,31.118673 157.06654,30.3594313 159.597346,30.2646445 C161.180284,30.2058768 162.043791,30.7888152 162.470332,31.2343128 C162.726256,31.5016114 162.963223,31.7632227 163.021991,31.068436 C163.06654,30.5670142 163.069384,29.6798104 162.949953,28.1139336 C162.665592,24.3802844 161.685498,23.4949763 161.685498,23.4949763 C160.640948,22.8618009 157.445687,22.5452133 158.078863,16.4077725 C158.787867,9.532891 164.721517,8.81630332 164.721517,8.81630332 C171.560379,8.26748815 172.24,13.383128 172.24,15.1907109 C172.24,15.7745972 172.836209,15.7850237 172.836209,15.7850237 L185.238104,15.332891 C187.609668,15.332891 191.739526,17.9584834 191.739526,22.4191469 C191.739526,27.7347867 186.712986,28.1338389 184.528152,28.0599052 C183.864645,28.0381043 183.913934,28.1499526 184.290237,28.4229384 C185.203033,29.0892891 186.665592,30.5082464 187.184076,32.6324171 C187.303507,33.1234123 187.372701,33.6532701 187.372701,34.2191469 C187.372701,38.2381043 183.166066,39.5660664 183.166066,39.5660664 M172.216303,4.36890995 C159.290237,4.36890995 148.810616,14.8485308 148.810616,27.775545 C148.810616,40.7025592 159.290237,51.1812322 172.216303,51.1812322 C174.452322,51.1812322 176.612512,50.8674882 178.659905,50.282654 C186.638104,48.0020853 192.874123,41.5954502 194.91109,33.5158294 C195.375545,31.6798104 195.621991,29.7556398 195.621991,27.775545 C195.621991,14.8485308 185.143318,4.36890995 172.216303,4.36890995" id="Fill-26" fill="#F9A738"></path>
<path d="M183.166066,39.5660664 L178.855166,39.8655924 C178.650427,39.8655924 178.40872,39.8655924 178.14237,39.8636967 C176.806825,39.8513744 174.770806,39.7452133 172.780284,38.9423697 C172.58218,38.8627488 171.896872,39.0276777 171.752796,39.1935545 C166.691185,44.9774408 161.938578,44.4381043 161.938578,44.4381043 C159.217251,44.4381043 153.902559,41.1783886 153.997346,36.1490047 C154.093081,31.118673 157.06654,30.3594313 159.597346,30.2646445 C161.180284,30.2058768 162.043791,30.7888152 162.470332,31.2343128 C162.726256,31.5016114 162.963223,31.7632227 163.021991,31.068436 C163.06654,30.5670142 163.069384,29.6798104 162.949953,28.1139336 C162.665592,24.3802844 161.685498,23.4949763 161.685498,23.4949763 C160.640948,22.8618009 157.445687,22.5452133 158.078863,16.4077725 C158.787867,9.532891 164.721517,8.81630332 164.721517,8.81630332 C171.560379,8.26748815 172.24,13.383128 172.24,15.1907109 C172.24,15.7745972 172.836209,15.7850237 172.836209,15.7850237 L185.238104,15.332891 C187.609668,15.332891 191.739526,17.9584834 191.739526,22.4191469 C191.739526,27.7347867 186.712986,28.1338389 184.528152,28.0599052 C183.864645,28.0381043 183.913934,28.1499526 184.290237,28.4229384 C185.203033,29.0892891 186.665592,30.5082464 187.184076,32.6324171 C187.303507,33.1234123 187.372701,33.6532701 187.372701,34.2191469 C187.372701,38.2381043 183.166066,39.5660664 183.166066,39.5660664 M172.216303,4.36890995 C159.290237,4.36890995 148.810616,14.8485308 148.810616,27.775545 C148.810616,40.7025592 159.290237,51.1812322 172.216303,51.1812322 C174.452322,51.1812322 176.612512,50.8674882 178.659905,50.282654 C186.638104,48.0020853 192.874123,41.5954502 194.91109,33.5158294 C195.375545,31.6798104 195.621991,29.7556398 195.621991,27.775545 C195.621991,14.8485308 185.143318,4.36890995 172.216303,4.36890995" id="Fill-28" fill="#F9A738"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 78 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="88px" height="88px" viewBox="0 0 88 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>ScratchJr Command</title>
<g id="ScratchJr-Command" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Horizontal/Block/Command" transform="translate(44.000000, 44.000000) rotate(14.000000) translate(-44.000000, -44.000000) translate(8.000000, 12.000000)" fill="#FFBF00">
<path d="M0,49.6568542 C0,48.5959883 0.421427361,47.5785726 1.17157288,46.8284271 L1.17157288,46.8284271 L6.82842712,41.1715729 C7.57857264,40.4214274 8,39.4040117 8,38.3431458 L8,38.3431458 L8,25.6568542 C8,24.5959883 7.57857264,23.5785726 6.82842712,22.8284271 L6.82842712,22.8284271 L1.17157288,17.1715729 C0.421427361,16.4214274 0,15.4040117 0,14.3431458 L0,14.3431458 L0,4 C-2.705415e-16,1.790861 1.790861,4.05812251e-16 4,0 L60,0 C62.209139,-4.05812251e-16 64,1.790861 64,4 L64,14.375 L64.0064166,14.5697275 C64.061881,15.5479932 64.4750092,16.4750092 65.1715729,17.1715729 L70.8284271,22.8284271 C71.5785726,23.5785726 72,24.5959883 72,25.6568542 L72,38.3431458 C72,39.4040117 71.5785726,40.4214274 70.8284271,41.1715729 L65.1715729,46.8284271 C64.4290142,47.5709858 64.0085581,48.5754358 64.0001292,49.6246797 L64,60 C64,62.209139 62.209139,64 60,64 L4,64 C1.790861,64 2.705415e-16,62.209139 0,60 Z" id="Command"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

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