Browse Source

ref(issues/replay): update issue details replay CTA (#64478)

Update the Replay CTA (both frontend & web backend) on Issue Details:
- Standardize Frontend & Web Backend CTA design.
- Instead of show/hide details in the top right, the Replay CTA is now
dismissible and snoozable with a dropdown menu "X" in the top right
corner
   - Dismissing or snoozing will stick around for user & project level
- After dismissing/snoozing, the whole Session Replay section goes away.
- On prod it will show the "View sample replay" button as well.



https://github.com/getsentry/sentry/assets/56095982/a73e6c54-96e3-4ed5-bbe6-d1b4783d4cac

On larger screens:
<img width="735" alt="Screenshot 2024-02-02 at 11 24 50 AM"
src="https://github.com/getsentry/sentry/assets/56095982/423f5c80-ba38-40ef-b561-52b5bdaa0085">
<img width="919" alt="SCR-20240202-kmgy"
src="https://github.com/getsentry/sentry/assets/56095982/3765d821-cb43-4d76-831e-278f0665ca89">

On smaller screens we don't display the image because the display gets
wonky:
<img width="542" alt="SCR-20240202-kjwc"
src="https://github.com/getsentry/sentry/assets/56095982/c7f17ded-178f-4fcf-85c2-061cd5c2a2ee">




Closes https://github.com/getsentry/sentry/issues/64311
Michelle Zhang 1 year ago
parent
commit
0e4d585702

+ 3 - 24
static/app/components/events/eventReplay/index.spec.tsx

@@ -145,30 +145,9 @@ describe('EventReplay', function () {
     });
     render(<EventReplay {...defaultProps} />, {organization});
 
-    expect(await screen.findByText('Configure Session Replay')).toBeInTheDocument();
-  });
-
-  it('should not render the replay inline onboarding component when the project is not JS', function () {
-    MockUseHasOrganizationSentAnyReplayEvents.mockReturnValue({
-      hasOrgSentReplays: false,
-      fetching: false,
-    });
-    MockUseReplayOnboardingSidebarPanel.mockReturnValue({
-      activateSidebar: jest.fn(),
-    });
-    render(
-      <EventReplay
-        {...defaultProps}
-        event={EventFixture({
-          entries: [],
-          tags: [],
-        })}
-      />,
-      {organization}
-    );
-
-    expect(screen.queryByText('Configure Session Replay')).not.toBeInTheDocument();
-    expect(screen.queryByTestId('player-container')).not.toBeInTheDocument();
+    expect(
+      await screen.findByText('Watch the errors and latency issues your users face')
+    ).toBeInTheDocument();
   });
 
   it('should render a replay when there is a replayId from tags', async function () {

+ 11 - 14
static/app/components/events/eventReplay/index.tsx

@@ -30,9 +30,8 @@ function EventReplayContent({
   const organization = useOrganization();
   const {hasOrgSentReplays, fetching} = useHasOrganizationSentAnyReplayEvents();
 
-  const onboardingPanel = useCallback(() => import('./replayInlineOnboardingPanel'), []);
-  const onboardingPanelBackend = useCallback(
-    () => import('./replayInlineOnboardingPanelBackend'),
+  const replayOnboardingPanel = useCallback(
+    () => import('./replayInlineOnboardingPanel'),
     []
   );
   const replayPreview = useCallback(() => import('./replayPreview'), []);
@@ -46,20 +45,18 @@ function EventReplayContent({
     return null;
   }
 
-  if (!hasOrgSentReplays) {
-    return (
-      <ErrorBoundary mini>
-        <LazyLoad component={onboardingPanel} />
-      </ErrorBoundary>
-    );
-  }
+  const platform = group?.project.platform ?? group?.platform ?? 'other';
+  const projectId = group?.project.id ?? event.projectID ?? '';
 
-  const platform = group?.project.platform ?? 'other';
-  if (!replayId && replayBackendPlatforms.includes(platform)) {
-    // if backend project, show new onboarding panel
+  // frontend or backend platforms
+  if (!hasOrgSentReplays || (!replayId && replayBackendPlatforms.includes(platform))) {
     return (
       <ErrorBoundary mini>
-        <LazyLoad component={onboardingPanelBackend} platform={platform} />
+        <LazyLoad
+          component={replayOnboardingPanel}
+          platform={platform}
+          projectId={projectId}
+        />
       </ErrorBoundary>
     );
   }

+ 30 - 14
static/app/components/events/eventReplay/replayInlineOnboardingPanel.spec.tsx

@@ -1,28 +1,44 @@
 import {render, screen} from 'sentry-test/reactTestingLibrary';
 
-import localStorage from 'sentry/utils/localStorage';
+import useDismissAlertImport from 'sentry/utils/useDismissAlert';
 
 import ReplayInlineOnboardingPanel from './replayInlineOnboardingPanel';
 
 jest.mock('sentry/utils/localStorage');
-
-const TEN_SECONDS = 10 * 1000;
+jest.mock('sentry/utils/useDismissAlert');
+const useDismissAlert = jest.mocked(useDismissAlertImport);
 
 describe('replayInlineOnboardingPanel', () => {
-  it('should render by default', async () => {
-    render(<ReplayInlineOnboardingPanel />);
-    expect(await screen.findByText('Configure Session Replay')).toBeInTheDocument();
+  beforeEach(() => {
+    jest.clearAllMocks();
+    useDismissAlert.mockClear();
   });
 
-  it('should not render if hideUntil is set', async () => {
-    localStorage.getItem = jest.fn().mockReturnValue(Date.now() + TEN_SECONDS);
-    render(<ReplayInlineOnboardingPanel />);
-    expect(await screen.queryByText('Configure Session Replay')).not.toBeInTheDocument();
+  it('should render if not dismissed', async () => {
+    const dismiss = jest.fn();
+    useDismissAlert.mockImplementation(() => {
+      return {
+        dismiss,
+        isDismissed: false,
+      };
+    });
+    render(<ReplayInlineOnboardingPanel platform="react" projectId="123" />);
+    expect(
+      await screen.findByText('Watch the errors and latency issues your users face')
+    ).toBeInTheDocument();
   });
 
-  it('should clear the hideUntil time if it has expired', async () => {
-    localStorage.getItem = jest.fn().mockReturnValue(Date.now() - TEN_SECONDS);
-    render(<ReplayInlineOnboardingPanel />);
-    expect(await screen.findByText('Configure Session Replay')).toBeInTheDocument();
+  it('should not render if dismissed', async () => {
+    const dismiss = jest.fn();
+    useDismissAlert.mockImplementation(() => {
+      return {
+        dismiss,
+        isDismissed: true,
+      };
+    });
+    render(<ReplayInlineOnboardingPanel platform="react" projectId="123" />);
+    expect(
+      await screen.queryByText('Watch the errors and latency issues your users face')
+    ).not.toBeInTheDocument();
   });
 });

+ 143 - 91
static/app/components/events/eventReplay/replayInlineOnboardingPanel.tsx

@@ -1,126 +1,178 @@
-import {useState} from 'react';
 import styled from '@emotion/styled';
 
-import replaysInlineOnboarding from 'sentry-images/spot/replay-inline-onboarding.svg';
+import replayInlineOnboarding from 'sentry-images/spot/replay-inline-onboarding-v2.svg';
 
 import {Button} from 'sentry/components/button';
-import ButtonBar from 'sentry/components/buttonBar';
+import {DropdownMenu} from 'sentry/components/dropdownMenu';
 import {EventReplaySection} from 'sentry/components/events/eventReplay/eventReplaySection';
-import {t} from 'sentry/locale';
+import HookOrDefault from 'sentry/components/hookOrDefault';
+import platforms, {otherPlatform} from 'sentry/data/platforms';
+import {IconClose} from 'sentry/icons';
+import {t, tct} from 'sentry/locale';
 import {space} from 'sentry/styles/space';
-import localStorage from 'sentry/utils/localStorage';
+import type {PlatformKey} from 'sentry/types';
+import {trackAnalytics} from 'sentry/utils/analytics';
 import {useReplayOnboardingSidebarPanel} from 'sentry/utils/replays/hooks/useReplayOnboarding';
+import theme from 'sentry/utils/theme';
+import useDismissAlert from 'sentry/utils/useDismissAlert';
+import useMedia from 'sentry/utils/useMedia';
+import useOrganization from 'sentry/utils/useOrganization';
+
+type OnboardingCTAProps = {
+  platform: PlatformKey;
+  projectId: string;
+};
+
+const OnboardingCTAButton = HookOrDefault({
+  hookName: 'component:replay-onboarding-cta-button',
+  defaultComponent: null,
+});
+
+export default function ReplayInlineOnboardingPanel({
+  platform,
+  projectId,
+}: OnboardingCTAProps) {
+  const LOCAL_STORAGE_KEY = `${projectId}:issue-details-replay-onboarding-hide`;
+
+  const {dismiss: snooze, isDismissed: isSnoozed} = useDismissAlert({
+    key: LOCAL_STORAGE_KEY,
+    expirationDays: 7,
+  });
 
-const LOCAL_STORAGE_KEY = 'replay-preview-onboarding-hide-until';
-const SNOOZE_TIME = 1000 * 60 * 60 * 24 * 7; // 1 week
-const DISMISS_TIME = 1000 * 60 * 60 * 24 * 365; // 1 year
-
-function getHideUntilTime() {
-  return Number(localStorage.getItem(LOCAL_STORAGE_KEY)) || 0;
-}
-
-function setHideUntilTime(offset: number) {
-  localStorage.setItem(LOCAL_STORAGE_KEY, String(Date.now() + offset));
-}
-
-function clearHideUntilTime() {
-  localStorage.removeItem(LOCAL_STORAGE_KEY);
-}
-
-export default function ReplayInlineOnboardingPanel() {
-  const [isHidden, setIsHidden] = useState(() => {
-    const hideUntilTime = getHideUntilTime();
-    if (hideUntilTime && Date.now() < hideUntilTime) {
-      return true;
-    }
-    clearHideUntilTime();
-    return false;
+  const {dismiss, isDismissed} = useDismissAlert({
+    key: LOCAL_STORAGE_KEY,
+    expirationDays: 365,
   });
+
   const {activateSidebar} = useReplayOnboardingSidebarPanel();
 
-  if (isHidden) {
+  const platformKey = platforms.find(p => p.id === platform) ?? otherPlatform;
+  const platformName = platformKey === otherPlatform ? '' : platformKey.name;
+  const isScreenSmall = useMedia(`(max-width: ${theme.breakpoints.small})`);
+  const organization = useOrganization();
+
+  if (isDismissed || isSnoozed) {
     return null;
   }
 
   return (
     <EventReplaySection>
-      <StyledOnboardingPanel>
+      <BannerWrapper>
         <div>
-          <Heading>{t('Configure Session Replay')}</Heading>
-          <Content>
-            {t(
-              'Playback your app to identify the root cause of errors and latency issues.'
-            )}
-          </Content>
-          <ButtonList>
-            <Button onClick={activateSidebar} priority="primary" size="sm">
-              {t('Get Started')}
+          <BannerTitle>
+            {tct('Set up your [platform] app with Session Replay', {
+              platform: <PurpleText>{platformName}</PurpleText>,
+            })}
+          </BannerTitle>
+          <BannerDescription>
+            {t('Watch the errors and latency issues your users face')}
+          </BannerDescription>
+          <ActionButton>
+            {!isScreenSmall && <OnboardingCTAButton />}
+            <Button
+              analyticsEventName="Clicked Replay Onboarding CTA Set Up Button in Issue Details"
+              analyticsEventKey="issue_details.replay-onboarding-cta-set-up-button-clicked"
+              analyticsParams={{platform}}
+              onClick={activateSidebar}
+            >
+              {t('Set Up Now')}
             </Button>
-            <ButtonBar merged>
-              <Button
-                size="sm"
-                onClick={() => {
-                  setHideUntilTime(SNOOZE_TIME);
-                  setIsHidden(true);
-                }}
-              >
-                {t('Snooze')}
-              </Button>
-              <Button
-                size="sm"
-                onClick={() => {
-                  setHideUntilTime(DISMISS_TIME);
-                  setIsHidden(true);
-                }}
-              >
-                {t('Dismiss')}
-              </Button>
-            </ButtonBar>
-          </ButtonList>
+          </ActionButton>
         </div>
-        <Illustration src={replaysInlineOnboarding} width={220} height={112} alt="" />
-      </StyledOnboardingPanel>
+        {!isScreenSmall && <Background image={replayInlineOnboarding} />}
+        <CloseDropdownMenu
+          position="bottom-end"
+          triggerProps={{
+            showChevron: false,
+            borderless: true,
+            icon: <IconClose color="subText" />,
+          }}
+          size="xs"
+          items={[
+            {
+              key: 'dismiss',
+              label: t('Dismiss'),
+              onAction: () => {
+                dismiss();
+                trackAnalytics('issue-details.replay-cta-dismiss', {
+                  organization,
+                  type: 'dismiss',
+                });
+              },
+            },
+            {
+              key: 'snooze',
+              label: t('Snooze'),
+              onAction: () => {
+                snooze();
+                trackAnalytics('issue-details.replay-cta-dismiss', {
+                  organization,
+                  type: 'snooze',
+                });
+              },
+            },
+          ]}
+        />
+      </BannerWrapper>
     </EventReplaySection>
   );
 }
 
-const StyledOnboardingPanel = styled('div')`
-  display: flex;
-  flex-direction: column;
-  max-width: 600px;
-  border: 1px dashed ${p => p.theme.border};
-  border-radius: ${p => p.theme.borderRadius};
-  padding: ${space(3)};
-  margin-bottom: ${space(3)};
+const PurpleText = styled('span')`
+  color: ${p => p.theme.purple300};
+  font-weight: bold;
+`;
 
-  @media (min-width: ${p => p.theme.breakpoints.small}) {
-    flex-direction: row;
-  }
+const BannerWrapper = styled('div')`
+  position: relative;
+  border: 1px solid ${p => p.theme.border};
+  border-radius: ${p => p.theme.borderRadius};
+  padding: ${space(2)};
+  margin: ${space(1)} 0;
+  background: linear-gradient(
+    90deg,
+    ${p => p.theme.backgroundSecondary}00 0%,
+    ${p => p.theme.backgroundSecondary}FF 70%,
+    ${p => p.theme.backgroundSecondary}FF 100%
+  );
 `;
 
-const Heading = styled('h3')`
-  text-transform: uppercase;
-  font-size: ${p => p.theme.fontSizeSmall};
-  color: ${p => p.theme.gray300};
+const BannerTitle = styled('div')`
+  font-size: ${p => p.theme.fontSizeExtraLarge};
   margin-bottom: ${space(1)};
+  font-weight: 600;
 `;
 
-const Content = styled('p')`
-  margin-bottom: ${space(2)};
-  font-size: ${p => p.theme.fontSizeMedium};
+const BannerDescription = styled('div')`
+  margin-bottom: ${space(1.5)};
+  max-width: 340px;
 `;
 
-const Illustration = styled('img')`
-  display: none;
+const CloseDropdownMenu = styled(DropdownMenu)`
+  position: absolute;
+  display: block;
+  top: ${space(1)};
+  right: ${space(1)};
+  color: ${p => p.theme.white};
+  cursor: pointer;
+  z-index: 1;
+`;
 
-  @media (min-width: ${p => p.theme.breakpoints.small}) {
-    display: block;
-  }
+const Background = styled('div')<{image: any}>`
+  display: flex;
+  justify-self: flex-end;
+  position: absolute;
+  top: 0px;
+  right: 25px;
+  height: 100%;
+  width: 100%;
+  max-width: 250px;
+  background-image: url(${p => p.image});
+  background-repeat: no-repeat;
+  background-size: contain;
 `;
 
-const ButtonList = styled('div')`
-  display: inline-flex;
-  justify-content: flex-start;
-  align-items: center;
-  gap: 0 ${space(1)};
+const ActionButton = styled('div')`
+  display: flex;
+  gap: ${space(1)}
 `;

+ 0 - 76
static/app/components/events/eventReplay/replayInlineOnboardingPanelBackend.tsx

@@ -1,76 +0,0 @@
-import {useState} from 'react';
-import styled from '@emotion/styled';
-
-import replaysInlineOnboarding from 'sentry-images/spot/replay-onboarding-backend.svg';
-
-import PageBanner from 'sentry/components/alerts/pageBanner';
-import {Button} from 'sentry/components/button';
-import ButtonBar from 'sentry/components/buttonBar';
-import {EventReplaySection} from 'sentry/components/events/eventReplay/eventReplaySection';
-import HookOrDefault from 'sentry/components/hookOrDefault';
-import platforms, {otherPlatform} from 'sentry/data/platforms';
-import {IconBroadcast} from 'sentry/icons/iconBroadcast';
-import {t, tct} from 'sentry/locale';
-import type {PlatformKey} from 'sentry/types';
-import {useReplayOnboardingSidebarPanel} from 'sentry/utils/replays/hooks/useReplayOnboarding';
-import theme from 'sentry/utils/theme';
-import useMedia from 'sentry/utils/useMedia';
-import SectionToggleButton from 'sentry/views/issueDetails/sectionToggleButton';
-
-type OnboardingCTAProps = {
-  platform: PlatformKey;
-};
-
-const OnboardingCTAButton = HookOrDefault({
-  hookName: 'component:replay-onboarding-cta-button',
-  defaultComponent: null,
-});
-
-export default function ReplayInlineOnboardingPanelBackend({
-  platform,
-}: OnboardingCTAProps) {
-  const [isExpanded, setIsExpanded] = useState(true);
-  const {activateSidebar} = useReplayOnboardingSidebarPanel();
-
-  const platformName = platforms.find(p => p.id === platform) ?? otherPlatform;
-  const isScreenSmall = useMedia(`(max-width: ${theme.breakpoints.small})`);
-
-  return (
-    <EventReplaySection
-      actions={
-        <SectionToggleButton isExpanded={isExpanded} onExpandChange={setIsExpanded} />
-      }
-    >
-      {isExpanded ? (
-        <PageBanner
-          button={
-            <ButtonBar gap={1}>
-              {!isScreenSmall && <OnboardingCTAButton />}
-              <Button
-                priority="primary"
-                analyticsEventName="Clicked Replay Onboarding Backend CTA Button in Issue Details"
-                analyticsEventKey="issue_details.replay-onboarding-backend-cta-button-clicked"
-                analyticsParams={{button: 'Set Up Now'}}
-                onClick={activateSidebar}
-              >
-                {t('Set Up Now')}
-              </Button>
-            </ButtonBar>
-          }
-          description={t('Watch the errors and latency issues your users face')}
-          heading={tct('Set up your [platform] app now', {
-            platform: <PurpleText>{platformName.name}</PurpleText>,
-          })}
-          icon={<IconBroadcast size="sm" color="purple300" />}
-          image={replaysInlineOnboarding}
-          title={<PurpleText>{t('What’s new')}</PurpleText>}
-        />
-      ) : null}
-    </EventReplaySection>
-  );
-}
-
-const PurpleText = styled('span')`
-  color: ${p => p.theme.purple300};
-  font-weight: bold;
-`;

+ 2 - 0
static/app/utils/analytics/issueAnalyticsEvents.tsx

@@ -61,6 +61,7 @@ export type IssueEventParameters = {
   'integrations.integration_reinstall_clicked': {
     provider: string;
   };
+  'issue-details.replay-cta-dismiss': {type: string};
   'issue.search_sidebar_clicked': {};
   'issue.shared_publicly': {};
   'issue_details.copy_event_link_clicked': GroupEventParams;
@@ -310,6 +311,7 @@ export const issueEventMap: Record<IssueEventKey, string | null> = {
   'issue_details.event_dropdown_option_selected':
     'Issue Details: Event Dropdown Option Selected',
   'issue_details.header_view_replay_clicked': 'Issue Details: Header View Replay Clicked',
+  'issue-details.replay-cta-dismiss': 'Issue Details Replay CTA Dismissed',
   'issue_group_details.anr_root_cause_detected': 'Detected ANR Root Cause',
   'issue_details.external_issue_loaded': 'Issue Details: External Issue Loaded',
   'issue_details.external_issue_modal_opened':

+ 408 - 0
static/images/spot/replay-inline-onboarding-v2.svg

@@ -0,0 +1,408 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 viewBox="0 0 209 130" style="enable-background:new 0 0 209 130;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFC1A9;}
+	.st1{fill:#DCA8E5;}
+	.st2{fill:#FF9C88;}
+	.st3{fill:#B39ED3;}
+	.st4{fill:#8374A8;}
+	.st5{fill:none;stroke:#2F1D4A;stroke-width:1.3333;stroke-linecap:round;stroke-linejoin:round;}
+	.st6{fill:#E7E1EC;}
+	.st7{fill:#2F1D4A;}
+</style>
+<polygon class="st0" points="209,13.5 209,130 36,130 0,64 51.67,51.51 51.68,51.51 52.14,51.4 52.6,51.29 59.84,49.54 62.91,48.8 
+	63.37,48.69 63.84,48.58 118.3,35.42 119.05,35.23 119.81,35.05 120.65,34.85 121.12,34.73 121.6,34.62 125.57,33.66 126.04,33.55 
+	126.5,33.43 131.92,32.12 132.39,32.01 132.86,31.9 134.95,31.39 135.41,31.28 135.87,31.17 142.18,29.65 142.64,29.53 143.1,29.42 
+	149.11,27.97 150.03,27.75 "/>
+<path class="st1" d="M93.035,127.708h33.615l-2.384-10.614l2.653-4.381l-0.961-4.204l-3.329,1.38l-2.226-9.552H88.707l-3.564,27.46
+	L93.035,127.708z"/>
+<path class="st2" d="M128.171,97.976V75.271l-4.488-0.659l-1.693,22.439L128.171,97.976z"/>
+<path class="st2" d="M155.324,102.035l-1.865-23.047l-4.16-0.611l0.525,22.835L155.324,102.035z"/>
+<path class="st3" d="M163.79,80.505l-16.542-2.429c-0.151-2.607-0.377-5.554-0.595-8.274c-0.396-4.961-0.793-9.159-0.793-9.159
+	l8.105,1.073l-14.397-40.92l-5.385,7.163c9.107,23.392,8.446,44.685,8.153,49.392l-20.339-2.984
+	c0.302-14.723-6.131-25.699-6.131-25.699l-4.714,5.036c4.648,7.126,4.818,16.304,4.685,19.759l-21.331-3.135
+	c-1.53-0.226-2.239-2.024-1.266-3.229l7.218-8.914l3.646-4.49l13.83-17.085l2.514-3.097c6.801,11.898,8.001,24.108,8.001,24.108
+	l5.498,0.678c-2.286-13.791-7.217-23.872-10.136-28.927l15.578-19.232c1.077-1.327,3.183-0.988,3.778,0.612l24.364,65.15
+	C168.447,78.349,166.388,80.881,163.79,80.505z"/>
+<path class="st4" d="M157.319,71.279l-10.335-1.459l-0.33-0.019c-0.397-4.961-0.794-9.159-0.794-9.159l8.106,1.073L157.319,71.279z"
+	/>
+<path class="st4" d="M135.081,69.039l-8.427-1.12c0,0-0.69-15.033-8.72-31.309l2.513-3.097c6.802,11.898,8.002,24.108,8.002,24.108
+	l5.498,0.678C134.504,61.659,134.901,65.245,135.081,69.039z"/>
+<path class="st4" d="M101.487,66.356l3.259-4.707l-4.289-3.464l3.647-4.49c5.63,5.846,5.81,13.772,5.81,13.772L101.487,66.356z"/>
+<path class="st4" d="M119.149,56.308c-1.603-4.769-3.284-7.643-3.284-7.643l-4.715,5.037c4.65,7.129,4.815,16.308,4.689,19.758
+	L119.149,56.308z"/>
+<path class="st5" d="M57.093,13.813c0.306,0.605,0.594,1.252,0.853,1.944l-9.906,9.096l-2.957-3.049c0,0,0.726-1.654,2.23-1.861
+	l-2.748-0.827"/>
+<path class="st0" d="M111.936,44.019l-1.578,1.958l-51.76,19.382c-0.869,0.33-1.842-0.132-2.135-1.017l-0.85-2.542L40.375,16.202
+	c0,0,5.328-5.874,11.573-8.736c0,0,3.004,2.118,5.148,6.345c0,0,0.492-0.649,1.455-1.553c1.814-1.685,5.3-4.227,10.288-4.791
+	l0.312,3.219l0.151,1.61c0,0-3.94,1.751-6.273,3.925c0,0-1.408,2.193-2.777,6.232c-0.303,0.913-0.605,1.911-0.898,3.012
+	l5.073,29.313l7.066-1.6L111.936,44.019z"/>
+<polygon class="st6" points="199.03,114.99 199.01,115.46 198.42,130 49.94,130 46.76,91.02 46.72,90.54 53.18,86.76 64.69,88.48 
+	64.7,88.48 69.53,89.2 69.53,89.21 109.24,95.14 110.98,95.4 110.99,95.4 111.4,95.46 111.93,95.55 111.94,95.55 112.92,95.69 
+	114.54,95.93 118.35,96.51 118.36,96.51 118.69,96.56 118.7,96.56 121.99,97.05 128.17,97.97 140.24,99.78 140.25,99.78 
+	145.47,100.56 146.06,100.65 146.51,100.72 146.53,100.72 147.61,100.88 149.35,101.14 149.82,101.21 152.04,101.54 155.32,102.03 
+	155.78,102.1 195.24,108 "/>
+<path class="st0" d="M199.027,114.986L46.724,90.54l6.452-3.775l142.063,21.236L199.027,114.986z"/>
+<path class="st0" d="M181.9,89.692l-55.435,17.283c-0.368,0.113-0.765,0.028-1.039-0.235c-0.624-0.584-1.294-1.234-1.984-1.911
+	c-2.938-2.9-6.055-6.213-6.055-6.213l-16.627,4.311c-0.265-0.442-0.463-0.932-0.605-1.374c-0.255-0.819-0.33-1.497-0.33-1.497
+	l16.749-6.231c1.682-3.163,3.495-5.441,4.563-6.655c0.52-0.593,1.37-0.772,2.088-0.433c8.285,3.925,12.319,7.399,12.319,7.399
+	l35.719-9.63l-3.732-8.604l-4.043-10.816l-0.01-0.009l-8.918-23.863l28.398,45.645C183.619,87.922,183.09,89.315,181.9,89.692z"/>
+<path class="st4" d="M142.336,77.351c-1.568-29.633-10.477-46.436-10.477-46.436l2.324-2.956
+	C143.29,51.352,142.629,72.645,142.336,77.351z"/>
+<polygon class="st3" points="172.91,129.9 172.77,130 162.16,130 162.16,119.94 "/>
+<polygon class="st3" points="185.57,130 176.91,130 176.91,122.55 "/>
+<polygon class="st3" points="132.78,125.92 124.88,130 119.22,130 119.22,114.38 "/>
+<path class="st2" d="M182.958,86.859l-28.397-45.645l7.048,18.848l18.27,26.948c0.255,0.348,0.094,0.838-0.321,0.96l-51.969,15.614
+	l-9.026-7.13l-18.407,5.1c0.142,0.442,0.34,0.932,0.604,1.374l16.627-4.311l6.056,6.213c0.689,0.677,1.36,1.327,1.984,1.911
+	c0.273,0.263,0.67,0.348,1.039,0.235L181.9,89.692C183.091,89.315,183.62,87.922,182.958,86.859z"/>
+<path class="st2" d="M57.947,15.76l-0.104,0.094l-0.747-2.043C57.399,14.414,57.692,15.063,57.947,15.76z"/>
+<path class="st2" d="M60.251,22.453c1.027-3.383,2.777-6.232,2.777-6.232c2.805-2.481,6.273-3.925,6.273-3.925l-0.151-1.61
+	c-1.138,0.434-8.46,4.147-8.46,4.147l-2.14-2.575l-1.454,1.553l0.85,1.948l-0.058,0.221l-0.046-0.127l-9.806,8.999l-2.957-3.05
+	c0,0,0.727-1.657,2.239-1.864l-4.175-1.194l3.366,10.202l7.526-4.095l7.219,30.698l3.172-0.773l-5.073-29.313
+	C59.646,24.364,59.948,23.366,60.251,22.453z"/>
+<path class="st2" d="M110.359,45.976l-51.76,19.382c-0.869,0.329-1.842-0.132-2.135-1.017l-0.85-2.542L110.359,45.976z"/>
+<path class="st7" d="M157.76,71.12l-3.35-9.56c-0.06-0.17-0.21-0.29-0.38-0.31l-0.25-0.03l-0.52-0.07l-7.34-0.97
+	c-0.14-0.02-0.29,0.02-0.39,0.12c-0.1,0.1-0.15,0.24-0.14,0.39c0,0.04,0.4,4.25,0.79,9.15c0.02,0.23,0.21,0.42,0.45,0.43l0.06,0.01
+	l0.48,0.06l10.08,1.41h0.07c0.14,0,0.27-0.06,0.36-0.17C157.79,71.45,157.82,71.28,157.76,71.12z M147.09,69.36
+	c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94
+	c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3l7.24,0.95l3,8.56L147.09,69.36z"/>
+<path class="st7" d="M135.079,69.509c-0.02,0-0.041-0.001-0.063-0.004l-8.424-1.119c-0.227-0.03-0.399-0.218-0.409-0.446
+	c-0.008-0.149-0.782-15.131-8.668-31.118c-0.114-0.233-0.018-0.516,0.216-0.63c0.235-0.114,0.517-0.019,0.633,0.215
+	c7.259,14.719,8.557,28.608,8.737,31.097l7.478,0.993c-0.177-3.385-0.547-6.789-1.101-10.127c-0.042-0.257,0.132-0.498,0.39-0.541
+	c0.254-0.045,0.5,0.131,0.542,0.388c0.59,3.558,0.974,7.192,1.14,10.799c0.007,0.14-0.049,0.275-0.152,0.369
+	C135.31,69.465,135.196,69.509,135.079,69.509z"/>
+<path class="st7" d="M154.41,61.56L143.1,29.42l-3.09-8.78c-0.05-0.16-0.2-0.28-0.37-0.31c-0.17-0.02-0.35,0.04-0.45,0.18
+	l-5.38,7.16l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44c0.03,0.09,0.07,0.17,0.1,0.26c0.07,0.17,0.13,0.35,0.2,0.52
+	c0.32,0.83,0.62,1.65,0.91,2.48l0.46-0.11l0.46-0.11c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25l2.77,7.87l0.46-0.12l11.14,31.69
+	l0.18,0.5l-8.1-1.08c0,0,0.4,4.2,0.79,9.16c0.01,0.16,0.03,0.32,0.04,0.48c0.11,1.29,0.21,2.62,0.31,3.94
+	c0.04,0.62,0.08,1.24,0.12,1.85c0.05,0.68,0.09,1.36,0.13,2.01l2.05,0.3l3.7,0.54v-0.01c0-0.02,0-0.04,0.01-0.06
+	c0-0.02,0.01-0.04,0.03-0.06c0.04-0.09,0.11-0.17,0.21-0.22c0.05-0.03,0.11-0.04,0.17-0.05h0.04l-5.76-0.85
+	c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5c-0.01-0.03-0.01-0.05-0.01-0.08c-0.01-0.14-0.02-0.27-0.03-0.4
+	c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94
+	c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3l7.24,0.95l0.28,0.04c0.08,0.01,0.15,0.01,0.22-0.02
+	c0.09-0.03,0.16-0.08,0.21-0.15C154.43,61.89,154.46,61.72,154.41,61.56z M110.8,53.38c-0.04,0.04-0.06,0.09-0.08,0.14
+	c0.02-0.05,0.05-0.1,0.09-0.14l4.71-5.04L110.8,53.38z M110.76,53.96c-0.02-0.04-0.04-0.08-0.06-0.12c0.01,0.04,0.02,0.08,0.05,0.12
+	c0.21,0.32,0.41,0.65,0.61,0.98C111.17,54.61,110.97,54.28,110.76,53.96z M154.41,61.56L143.1,29.42l-3.09-8.78
+	c-0.05-0.16-0.2-0.28-0.37-0.31c-0.17-0.02-0.35,0.04-0.45,0.18l-5.38,7.16l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44
+	c0.03,0.09,0.07,0.17,0.1,0.26c0.07,0.17,0.13,0.35,0.2,0.52c0.32,0.83,0.62,1.65,0.91,2.48l0.46-0.11l0.46-0.11
+	c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25l2.77,7.87l0.46-0.12l11.14,31.69l0.18,0.5l-8.1-1.08c0,0,0.4,4.2,0.79,9.16
+	c0.01,0.16,0.03,0.32,0.04,0.48c0.11,1.29,0.21,2.62,0.31,3.94c0.04,0.62,0.08,1.24,0.12,1.85c0.05,0.68,0.09,1.36,0.13,2.01
+	l2.05,0.3l3.7,0.54v-0.01c0-0.02,0-0.04,0.01-0.06c0-0.02,0.01-0.04,0.03-0.06c0.04-0.09,0.11-0.17,0.21-0.22
+	c0.05-0.03,0.11-0.04,0.17-0.05h0.04l-5.76-0.85c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5
+	c-0.01-0.03-0.01-0.05-0.01-0.08c-0.01-0.14-0.02-0.27-0.03-0.4c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67
+	c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3
+	l7.24,0.95l0.28,0.04c0.08,0.01,0.15,0.01,0.22-0.02c0.09-0.03,0.16-0.08,0.21-0.15C154.43,61.89,154.46,61.72,154.41,61.56z
+	 M110.8,53.38c-0.04,0.04-0.06,0.09-0.08,0.14c0.02-0.05,0.05-0.1,0.09-0.14l4.71-5.04L110.8,53.38z M110.76,53.96
+	c-0.02-0.04-0.04-0.08-0.06-0.12c0.01,0.04,0.02,0.08,0.05,0.12c0.21,0.32,0.41,0.65,0.61,0.98
+	C111.17,54.61,110.97,54.28,110.76,53.96z M154.41,61.56L143.1,29.42l-3.09-8.78c-0.05-0.16-0.2-0.28-0.37-0.31
+	c-0.17-0.02-0.35,0.04-0.45,0.18l-5.38,7.16l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44c0.03,0.09,0.07,0.17,0.1,0.26
+	c0.07,0.17,0.13,0.35,0.2,0.52c0.32,0.83,0.62,1.65,0.91,2.48l0.46-0.11l0.46-0.11c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25
+	l2.77,7.87l0.46-0.12l11.14,31.69l0.18,0.5l-8.1-1.08c0,0,0.4,4.2,0.79,9.16c0.01,0.16,0.03,0.32,0.04,0.48
+	c0.11,1.29,0.21,2.62,0.31,3.94c0.04,0.62,0.08,1.24,0.12,1.85c0.05,0.68,0.09,1.36,0.13,2.01l2.05,0.3l3.7,0.54v-0.01
+	c0-0.02,0-0.04,0.01-0.06c0-0.02,0.01-0.04,0.03-0.06c0.04-0.09,0.11-0.17,0.21-0.22c0.05-0.03,0.11-0.04,0.17-0.05h0.04l-5.76-0.85
+	c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5c-0.01-0.03-0.01-0.05-0.01-0.08c-0.01-0.14-0.02-0.27-0.03-0.4
+	c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94
+	c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3l7.24,0.95l0.28,0.04c0.08,0.01,0.15,0.01,0.22-0.02
+	c0.09-0.03,0.16-0.08,0.21-0.15C154.43,61.89,154.46,61.72,154.41,61.56z M110.8,53.38c-0.04,0.04-0.06,0.09-0.08,0.14
+	c0.02-0.05,0.05-0.1,0.09-0.14l4.71-5.04L110.8,53.38z M110.76,53.96c-0.02-0.04-0.04-0.08-0.06-0.12c0.01,0.04,0.02,0.08,0.05,0.12
+	c0.21,0.32,0.41,0.65,0.61,0.98C111.17,54.61,110.97,54.28,110.76,53.96z M154.41,61.56L143.1,29.42l-3.09-8.78
+	c-0.05-0.16-0.2-0.28-0.37-0.31c-0.17-0.02-0.35,0.04-0.45,0.18l-5.38,7.16l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44
+	c0.03,0.09,0.07,0.17,0.1,0.26c0.07,0.17,0.13,0.35,0.2,0.52c0.32,0.83,0.62,1.65,0.91,2.48l0.46-0.11l0.46-0.11
+	c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25l2.77,7.87l0.46-0.12l11.14,31.69l0.18,0.5l-8.1-1.08c0,0,0.4,4.2,0.79,9.16
+	c0.01,0.16,0.03,0.32,0.04,0.48c0.11,1.29,0.21,2.62,0.31,3.94c0.04,0.62,0.08,1.24,0.12,1.85c0.05,0.68,0.09,1.36,0.13,2.01
+	l2.05,0.3l3.7,0.54v-0.01c0-0.02,0-0.04,0.01-0.06c0-0.02,0.01-0.04,0.03-0.06c0.04-0.09,0.11-0.17,0.21-0.22
+	c0.05-0.03,0.11-0.04,0.17-0.05h0.04l-5.76-0.85c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5
+	c-0.01-0.03-0.01-0.05-0.01-0.08c-0.01-0.14-0.02-0.27-0.03-0.4c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67
+	c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3
+	l7.24,0.95l0.28,0.04c0.08,0.01,0.15,0.01,0.22-0.02c0.09-0.03,0.16-0.08,0.21-0.15C154.43,61.89,154.46,61.72,154.41,61.56z
+	 M110.72,53.52c0.02-0.05,0.05-0.1,0.09-0.14l4.71-5.04l-4.72,5.04C110.76,53.42,110.74,53.47,110.72,53.52z M110.7,53.84
+	c0.01,0.04,0.02,0.08,0.05,0.12c0.21,0.32,0.41,0.65,0.61,0.98c-0.19-0.33-0.39-0.66-0.6-0.98
+	C110.74,53.92,110.72,53.88,110.7,53.84z M167.97,75.74l-5.25-14.04v-0.01l-6.06-16.21l-0.85-2.26l-0.84-2.24l-0.01-0.02
+	l-4.93-13.21l-6.42-17.16c-0.34-0.91-1.11-1.55-2.07-1.71c-0.97-0.15-1.9,0.21-2.52,0.96l-15.58,19.24
+	c-0.12,0.15-0.14,0.36-0.04,0.53c0.63,1.09,1.37,2.44,2.17,4.05c2.68,5.42,6.01,13.69,7.81,24.09l-4.5-0.55
+	c-0.27-2.07-1.78-12.32-7.28-22.58c-0.24-0.44-0.48-0.89-0.74-1.34c-0.08-0.13-0.22-0.22-0.37-0.24c-0.15-0.01-0.31,0.06-0.41,0.18
+	l-1.78,2.2l-0.68,0.85l-5.95,7.33l-0.48,0.59l-0.47,0.59h-0.01l-0.64,0.8l-0.51,0.63l-0.08,0.1l-0.56,0.7l-0.01,0.01l-5.17,6.38
+	l-3.65,4.49c-0.01,0.01-0.01,0.01-0.01,0.02l-7.21,8.9c-0.56,0.69-0.7,1.61-0.38,2.44c0.33,0.84,1.06,1.41,1.95,1.54l21.33,3.14
+	c0.01,0,0.01,0,0.02,0h0.05c0.11,0,0.22-0.04,0.3-0.11c0.04-0.03,0.07-0.07,0.1-0.12c0.03-0.04,0.05-0.1,0.06-0.15l0.01-0.07
+	c0.02-0.67,0.04-1.52,0.01-2.51c0-0.01,0-0.01,0-0.02c-0.01-0.62-0.04-1.29-0.09-2.01c0-0.04-0.01-0.08-0.01-0.13
+	c-0.02-0.23-0.03-0.46-0.06-0.7c-0.03-0.36-0.07-0.74-0.11-1.12c-0.02-0.21-0.05-0.41-0.08-0.63c-0.01-0.1-0.02-0.2-0.04-0.3
+	c-0.03-0.2-0.05-0.4-0.09-0.61c-0.11-0.77-0.26-1.57-0.44-2.38c-0.22-1.02-0.49-2.07-0.83-3.12c-0.07-0.21-0.14-0.42-0.21-0.63
+	c-0.14-0.43-0.3-0.86-0.47-1.29c-0.08-0.2-0.16-0.4-0.25-0.6c-0.18-0.46-0.39-0.92-0.62-1.37c-0.08-0.16-0.16-0.33-0.25-0.49
+	c-0.1-0.21-0.21-0.42-0.33-0.62c-0.11-0.2-0.22-0.4-0.34-0.59c-0.11-0.2-0.24-0.4-0.36-0.6l4.02-4.3c0.31,0.59,0.83,1.62,1.43,3.03
+	c0.22,0.53,0.46,1.11,0.7,1.74c0.25,0.63,0.5,1.31,0.74,2.04c0.01,0.02,0.02,0.05,0.03,0.07v0.01c0.1,0.3,0.2,0.62,0.3,0.94
+	c0.1,0.31,0.2,0.63,0.29,0.95c1.3,4.33,2.4,9.9,2.28,16.12c-0.01,0.23,0.17,0.44,0.4,0.47l1.71,0.25l4.53,0.67l14.1,2.07h0.05
+	c0.01,0,0.01,0,0.02,0c0.01,0,0.01,0,0.02,0c0.05,0,0.1-0.01,0.14-0.03c0.04-0.01,0.08-0.03,0.11-0.06c0.04-0.03,0.07-0.06,0.1-0.1
+	c0.04-0.04,0.06-0.08,0.07-0.13c0.02-0.04,0.03-0.08,0.03-0.12v-0.03c0-0.01,0-0.01,0-0.02c0.24-4.02,0.96-23.84-6.94-46.16
+	c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25l2.77,7.87l11.08,31.5l-7.34-0.97c-0.14-0.02-0.29,0.02-0.39,0.12
+	c-0.1,0.1-0.15,0.24-0.14,0.39c0,0.04,0.4,4.25,0.79,9.15c0.22,2.75,0.45,5.66,0.6,8.26c0.01,0.23,0.18,0.41,0.4,0.44l2.13,0.31
+	l3.71,0.55l0.48,0.07l0.48,0.07l9.74,1.43c0.2,0.03,0.39,0.04,0.58,0.04c1.18,0,2.29-0.52,3.05-1.46c0.32-0.39,0.55-0.83,0.69-1.29
+	c0.09-0.26,0.14-0.53,0.17-0.79C168.26,76.89,168.18,76.3,167.97,75.74z M166.61,78.96c-0.66,0.83-1.7,1.24-2.75,1.08l-10.23-1.49
+	c-0.05-0.02-0.11-0.03-0.17-0.03l-5.76-0.85c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5
+	c-0.01-0.03-0.01-0.05-0.01-0.08c-0.01-0.14-0.02-0.27-0.03-0.4c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67
+	c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3
+	l7.24,0.95l0.28,0.04c0.08,0.01,0.15,0.01,0.22-0.02c0.09-0.03,0.16-0.08,0.21-0.15c0.1-0.12,0.13-0.29,0.08-0.45L143.1,29.42
+	l-3.09-8.78c-0.05-0.16-0.2-0.28-0.37-0.31c-0.17-0.02-0.35,0.04-0.45,0.18l-5.38,7.16l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44
+	c0.03,0.09,0.07,0.17,0.1,0.26c0.07,0.17,0.13,0.35,0.2,0.52c0.32,0.83,0.62,1.65,0.91,2.48c4.79,13.5,6.4,26.09,6.87,34.77
+	c0.01,0.02,0.01,0.03,0,0.04c0,0,0.01,0,0,0.01c0.14,2.35,0.18,4.42,0.18,6.13v0.04c0,1.96-0.06,3.47-0.11,4.43l-0.05-0.01
+	l-19.36-2.84c0.08-7.01-1.35-13.19-2.87-17.71c-0.45-1.37-0.91-2.58-1.34-3.62c-0.17-0.43-0.35-0.83-0.51-1.19
+	c-0.05-0.13-0.11-0.24-0.16-0.36c-0.11-0.25-0.22-0.49-0.33-0.7c-0.07-0.16-0.14-0.3-0.21-0.44c-0.18-0.38-0.34-0.68-0.47-0.92
+	c-0.04-0.09-0.09-0.17-0.13-0.24c-0.11-0.21-0.18-0.33-0.19-0.35c-0.07-0.13-0.2-0.22-0.35-0.23c-0.16-0.02-0.3,0.04-0.4,0.14
+	l-4.72,5.04c-0.04,0.04-0.06,0.09-0.08,0.14c-0.02,0.06-0.03,0.11-0.03,0.16c-0.01,0.06,0,0.11,0.01,0.16
+	c0.01,0.04,0.02,0.08,0.05,0.12c0.21,0.32,0.41,0.65,0.61,0.98s0.38,0.67,0.55,1.01c0.12,0.23,0.23,0.45,0.34,0.68
+	c0.15,0.31,0.29,0.61,0.42,0.92c0,0,0.01,0,0.01,0.01c0.18,0.4,0.34,0.81,0.49,1.22c0.4,1.04,0.72,2.09,0.99,3.12
+	c0.16,0.61,0.3,1.21,0.42,1.81c0.08,0.4,0.16,0.8,0.22,1.19c0.03,0.17,0.06,0.34,0.09,0.51c0.48,3.06,0.53,5.77,0.49,7.51
+	l-20.8-3.06c-0.55-0.08-1-0.43-1.21-0.95c-0.2-0.52-0.11-1.08,0.24-1.51l6.92-8.55l0.3-0.36l0.29-0.37l3.01-3.71l0.29-0.36
+	l0.31-0.38l5.99-7.39l0.01-0.01l1.58-1.96l5.52-6.82l0.33-0.4l0.33-0.41l1.32-1.63l0.57-0.7c0.09,0.17,0.18,0.33,0.27,0.5
+	c6.14,11.32,7.32,22.7,7.33,22.82c0.02,0.22,0.19,0.39,0.41,0.42l5.14,0.64l0.36,0.04c0.04,0.01,0.09,0,0.13-0.02
+	c0.1,0,0.19-0.05,0.27-0.13c0.08-0.08,0.13-0.19,0.13-0.31c0-0.03,0-0.06-0.01-0.09c-1.77-10.68-5.16-19.2-7.91-24.79
+	c-0.77-1.57-1.5-2.92-2.12-4.01l15.38-18.98c0.39-0.5,1.01-0.73,1.63-0.63s1.12,0.52,1.34,1.11l6.38,17.05l5.01,13.41l12.98,34.71
+	C167.46,77.07,167.28,78.15,166.61,78.96z M110.76,53.96c-0.02-0.04-0.04-0.08-0.06-0.12c0.01,0.04,0.02,0.08,0.05,0.12
+	c0.21,0.32,0.41,0.65,0.61,0.98C111.17,54.61,110.97,54.28,110.76,53.96z M110.8,53.38c-0.04,0.04-0.06,0.09-0.08,0.14
+	c0.02-0.05,0.05-0.1,0.09-0.14l4.71-5.04L110.8,53.38z M154.41,61.56L143.1,29.42l-3.09-8.78c-0.05-0.16-0.2-0.28-0.37-0.31
+	c-0.17-0.02-0.35,0.04-0.45,0.18l-5.38,7.16l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44c0.03,0.09,0.07,0.17,0.1,0.26
+	c0.07,0.17,0.13,0.35,0.2,0.52c0.32,0.83,0.62,1.65,0.91,2.48l0.46-0.11l0.46-0.11c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25
+	l2.77,7.87l0.46-0.12l11.14,31.69l0.18,0.5l-8.1-1.08c0,0,0.4,4.2,0.79,9.16c0.01,0.16,0.03,0.32,0.04,0.48
+	c0.11,1.29,0.21,2.62,0.31,3.94c0.04,0.62,0.08,1.24,0.12,1.85c0.05,0.68,0.09,1.36,0.13,2.01l2.05,0.3l3.7,0.54v-0.01
+	c0-0.02,0-0.04,0.01-0.06c0-0.02,0.01-0.04,0.03-0.06c0.04-0.09,0.11-0.17,0.21-0.22c0.05-0.03,0.11-0.04,0.17-0.05h0.04l-5.76-0.85
+	c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5c-0.01-0.03-0.01-0.05-0.01-0.08c-0.01-0.14-0.02-0.27-0.03-0.4
+	c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94
+	c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3l7.24,0.95l0.28,0.04c0.08,0.01,0.15,0.01,0.22-0.02
+	c0.09-0.03,0.16-0.08,0.21-0.15C154.43,61.89,154.46,61.72,154.41,61.56z M110.76,53.96c-0.02-0.04-0.04-0.08-0.06-0.12
+	c0.01,0.04,0.02,0.08,0.05,0.12c0.21,0.32,0.41,0.65,0.61,0.98C111.17,54.61,110.97,54.28,110.76,53.96z M110.8,53.38
+	c-0.04,0.04-0.06,0.09-0.08,0.14c0.02-0.05,0.05-0.1,0.09-0.14l4.71-5.04L110.8,53.38z M154.41,61.56L143.1,29.42l-3.09-8.78
+	c-0.05-0.16-0.2-0.28-0.37-0.31c-0.17-0.02-0.35,0.04-0.45,0.18l-5.38,7.16l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44
+	c0.03,0.09,0.07,0.17,0.1,0.26c0.07,0.17,0.13,0.35,0.2,0.52c0.32,0.83,0.62,1.65,0.91,2.48l0.46-0.11l0.46-0.11
+	c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25l2.77,7.87l0.46-0.12l11.14,31.69l0.18,0.5l-8.1-1.08c0,0,0.4,4.2,0.79,9.16
+	c0.01,0.16,0.03,0.32,0.04,0.48c0.11,1.29,0.21,2.62,0.31,3.94c0.04,0.62,0.08,1.24,0.12,1.85c0.05,0.68,0.09,1.36,0.13,2.01
+	l2.05,0.3l3.7,0.54v-0.01c0-0.02,0-0.04,0.01-0.06c0-0.02,0.01-0.04,0.03-0.06c0.04-0.09,0.11-0.17,0.21-0.22
+	c0.05-0.03,0.11-0.04,0.17-0.05h0.04l-5.76-0.85c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5
+	c-0.01-0.03-0.01-0.05-0.01-0.08c-0.01-0.14-0.02-0.27-0.03-0.4c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67
+	c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3
+	l7.24,0.95l0.28,0.04c0.08,0.01,0.15,0.01,0.22-0.02c0.09-0.03,0.16-0.08,0.21-0.15C154.43,61.89,154.46,61.72,154.41,61.56z
+	 M110.76,53.96c-0.02-0.04-0.04-0.08-0.06-0.12c0.01,0.04,0.02,0.08,0.05,0.12c0.21,0.32,0.41,0.65,0.61,0.98
+	C111.17,54.61,110.97,54.28,110.76,53.96z M110.8,53.38c-0.04,0.04-0.06,0.09-0.08,0.14c0.02-0.05,0.05-0.1,0.09-0.14l4.71-5.04
+	L110.8,53.38z M154.41,61.56L143.1,29.42l-3.09-8.78c-0.05-0.16-0.2-0.28-0.37-0.31c-0.17-0.02-0.35,0.04-0.45,0.18l-5.38,7.16
+	l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44c0.03,0.09,0.07,0.17,0.1,0.26c0.07,0.17,0.13,0.35,0.2,0.52
+	c0.32,0.83,0.62,1.65,0.91,2.48l0.46-0.11l0.46-0.11c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25l2.77,7.87l0.46-0.12l11.14,31.69
+	l0.18,0.5l-8.1-1.08c0,0,0.4,4.2,0.79,9.16c0.01,0.16,0.03,0.32,0.04,0.48c0.11,1.29,0.21,2.62,0.31,3.94
+	c0.04,0.62,0.08,1.24,0.12,1.85c0.05,0.68,0.09,1.36,0.13,2.01l2.05,0.3l3.7,0.54v-0.01c0-0.02,0-0.04,0.01-0.06
+	c0-0.02,0.01-0.04,0.03-0.06c0.04-0.09,0.11-0.17,0.21-0.22c0.05-0.03,0.11-0.04,0.17-0.05h0.04l-5.76-0.85
+	c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5c-0.01-0.03-0.01-0.05-0.01-0.08c-0.01-0.14-0.02-0.27-0.03-0.4
+	c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67c-0.09-1.1-0.18-2.14-0.26-3.08c-0.06-0.72-0.12-1.37-0.17-1.94
+	c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3l7.24,0.95l0.28,0.04c0.08,0.01,0.15,0.01,0.22-0.02
+	c0.09-0.03,0.16-0.08,0.21-0.15C154.43,61.89,154.46,61.72,154.41,61.56z M110.76,53.96c-0.02-0.04-0.04-0.08-0.06-0.12
+	c0.01,0.04,0.02,0.08,0.05,0.12c0.21,0.32,0.41,0.65,0.61,0.98C111.17,54.61,110.97,54.28,110.76,53.96z M110.8,53.38
+	c-0.04,0.04-0.06,0.09-0.08,0.14c0.02-0.05,0.05-0.1,0.09-0.14l4.71-5.04L110.8,53.38z M154.41,61.56L143.1,29.42l-3.09-8.78
+	c-0.05-0.16-0.2-0.28-0.37-0.31c-0.17-0.02-0.35,0.04-0.45,0.18l-5.38,7.16l-0.01,0.02c-0.09,0.13-0.12,0.29-0.06,0.44
+	c0.03,0.09,0.07,0.17,0.1,0.26c0.07,0.17,0.13,0.35,0.2,0.52c0.32,0.83,0.62,1.65,0.91,2.48l0.46-0.11l0.46-0.11
+	c-0.36-1.04-0.74-2.09-1.15-3.14l4.69-6.25l2.77,7.87l0.46-0.12l11.14,31.69l0.18,0.5l-8.1-1.08c0,0,0.4,4.2,0.79,9.16
+	c0.01,0.16,0.03,0.32,0.04,0.48c0.11,1.29,0.21,2.62,0.31,3.94c0.04,0.62,0.08,1.24,0.12,1.85c0.05,0.68,0.09,1.36,0.13,2.01
+	l2.05,0.3l3.7,0.54v-0.01l0.01-0.01c0-0.04,0.01-0.07,0.03-0.11c0.04-0.09,0.11-0.17,0.21-0.22c0.05-0.03,0.11-0.04,0.17-0.05h0.04
+	l-5.76-0.85c-0.14-2.33-0.34-4.88-0.53-7.33c-0.02-0.17-0.03-0.33-0.04-0.5c-0.01-0.03-0.01-0.05-0.01-0.08
+	c-0.01-0.14-0.02-0.27-0.03-0.4c-0.02-0.23-0.04-0.46-0.06-0.68c-0.01-0.23-0.03-0.45-0.05-0.67c-0.09-1.1-0.18-2.14-0.26-3.08
+	c-0.06-0.72-0.12-1.37-0.17-1.94c-0.02-0.18-0.03-0.34-0.05-0.5c-0.05-0.54-0.09-0.98-0.12-1.3l7.24,0.95l0.28,0.04
+	c0.08,0.01,0.15,0.01,0.22-0.02c0.09-0.03,0.16-0.08,0.21-0.15C154.43,61.89,154.46,61.72,154.41,61.56z"/>
+<path class="st7" d="M104.73,53.67c-0.09-0.1-0.18-0.2-0.28-0.3c-0.02-0.02-0.03-0.03-0.05-0.04c-0.09-0.07-0.18-0.11-0.32-0.11
+	c-0.13,0.01-0.26,0.07-0.34,0.18l-3.65,4.49c-0.01,0.01-0.01,0.01-0.01,0.02c-0.15,0.2-0.11,0.48,0.08,0.64h0.01l0.36,0.3l3.58,2.89
+	l-3.01,4.35c-0.09,0.13-0.11,0.31-0.04,0.46c0.06,0.15,0.2,0.25,0.37,0.27l8.42,1.11c0.02,0.01,0.04,0.01,0.06,0.01
+	c0.12,0,0.23-0.04,0.32-0.12c0.1-0.1,0.16-0.23,0.16-0.36C110.38,67.13,110.15,59.54,104.73,53.67z M102.32,65.99l2.82-4.07
+	c0.14-0.21,0.1-0.48-0.1-0.64l-3.92-3.16l3.01-3.71c4.27,4.71,5.11,10.69,5.27,12.52L102.32,65.99z"/>
+<path class="st7" d="M119.6,56.16c-0.45-1.33-0.9-2.52-1.33-3.53c-0.17-0.43-0.35-0.83-0.51-1.19c-0.05-0.13-0.11-0.24-0.16-0.36
+	c-0.11-0.25-0.22-0.49-0.33-0.7c-0.07-0.16-0.14-0.3-0.21-0.44c-0.18-0.38-0.34-0.68-0.47-0.92c-0.04-0.09-0.09-0.17-0.13-0.24
+	c-0.11-0.21-0.18-0.33-0.19-0.35c-0.07-0.13-0.2-0.22-0.35-0.23c-0.16-0.02-0.3,0.04-0.4,0.14l-4.71,5.04
+	c-0.04,0.04-0.07,0.09-0.09,0.14c-0.02,0.06-0.03,0.11-0.03,0.16c-0.01,0.06,0,0.11,0.01,0.16c0.02,0.04,0.04,0.08,0.06,0.12
+	c0.21,0.32,0.41,0.65,0.6,0.98c0.2,0.33,0.38,0.67,0.55,1.01c0.12,0.23,0.23,0.45,0.34,0.68c0.15,0.31,0.29,0.61,0.42,0.92
+	c0,0,0.01,0,0.01,0.01c0.18,0.4,0.34,0.81,0.49,1.22c0.4,1.04,0.72,2.09,0.99,3.12c0.16,0.61,0.3,1.21,0.42,1.81
+	c0.08,0.4,0.16,0.8,0.22,1.19c0.03,0.17,0.06,0.34,0.09,0.51c0.48,3.06,0.53,5.77,0.49,7.51c0,0.17-0.01,0.32-0.01,0.47v0.05
+	c-0.01,0.24,0.16,0.45,0.4,0.49c0.01,0,0.01,0,0.02,0h0.05c0.11,0,0.22-0.04,0.3-0.11c0.04-0.03,0.07-0.07,0.1-0.12
+	c0.03-0.04,0.05-0.1,0.06-0.15l0.01-0.07l2.94-15.24l0.2-1.01l0.16-0.83c0.01-0.05,0.01-0.1,0-0.15
+	C119.61,56.22,119.61,56.19,119.6,56.16z M118.66,56.35l-2.43,12.59c0-0.04-0.01-0.08-0.01-0.13c-0.02-0.23-0.03-0.46-0.06-0.7
+	c-0.03-0.36-0.07-0.74-0.11-1.12c-0.02-0.21-0.05-0.41-0.08-0.63c-0.01-0.1-0.02-0.2-0.04-0.3c-0.03-0.2-0.05-0.4-0.09-0.61
+	c-0.11-0.77-0.26-1.57-0.44-2.38c-0.22-1.02-0.49-2.07-0.83-3.12c-0.07-0.21-0.14-0.42-0.21-0.63c-0.14-0.43-0.3-0.86-0.47-1.29
+	c-0.08-0.2-0.16-0.4-0.25-0.6c-0.18-0.46-0.39-0.92-0.62-1.37c-0.08-0.16-0.16-0.33-0.25-0.49c-0.1-0.21-0.21-0.42-0.33-0.62
+	c-0.11-0.2-0.22-0.4-0.34-0.59c-0.1-0.2-0.22-0.4-0.35-0.6l4.01-4.3c0.31,0.59,0.83,1.62,1.43,3.03c0.23,0.53,0.46,1.11,0.7,1.74
+	c0.25,0.63,0.5,1.31,0.74,2.04c0.01,0.02,0.02,0.05,0.03,0.07V56.35z"/>
+<path class="st7" d="M48.041,25.323c-0.124,0-0.248-0.048-0.34-0.143l-2.957-3.049c-0.132-0.137-0.169-0.341-0.093-0.516
+	c0.024-0.055,0.436-0.972,1.286-1.595l-1.508-0.454c-0.25-0.075-0.391-0.337-0.316-0.586c0.076-0.249,0.343-0.388,0.589-0.314
+	l2.749,0.827c0.212,0.064,0.352,0.267,0.334,0.487c-0.017,0.221-0.186,0.399-0.406,0.429c-0.885,0.121-1.463,0.895-1.717,1.314
+	l2.398,2.472l9.332-8.568c-0.215-0.541-0.455-1.079-0.72-1.603c-0.117-0.232-0.024-0.515,0.209-0.632
+	c0.232-0.115,0.516-0.024,0.634,0.209c0.329,0.649,0.623,1.319,0.875,1.991c0.066,0.179,0.018,0.381-0.123,0.511l-9.906,9.096
+	C48.27,25.282,48.155,25.323,48.041,25.323z"/>
+<path class="st7" d="M58.023,65.939c-0.311,0-0.62-0.07-0.91-0.207c-0.525-0.249-0.915-0.688-1.099-1.238L39.928,16.351
+	c-0.082-0.246,0.052-0.513,0.299-0.595c0.247-0.079,0.515,0.051,0.598,0.298l16.086,48.142c0.102,0.304,0.317,0.548,0.608,0.686
+	c0.291,0.138,0.617,0.153,0.918,0.039l51.633-19.345l0.648-0.801L64.535,55.235c-0.123,0.03-0.258,0.006-0.366-0.067
+	c-0.108-0.072-0.182-0.185-0.204-0.312l-5.074-29.314c-0.011-0.066-0.008-0.134,0.009-0.199c1.558-5.947,3.644-9.238,3.733-9.375
+	c0.021-0.033,0.046-0.063,0.076-0.09c2.007-1.868,5.106-3.405,6.095-3.871l-0.388-4.008c-4.695,0.666-7.977,3.151-9.542,4.604
+	c-0.19,0.177-0.489,0.167-0.667-0.023c-0.178-0.19-0.167-0.488,0.024-0.665c1.701-1.581,5.336-4.321,10.555-4.911
+	c0.133-0.014,0.252,0.023,0.35,0.102c0.099,0.08,0.161,0.195,0.174,0.321l0.466,4.823c0.02,0.201-0.092,0.392-0.277,0.475
+	c-0.039,0.017-3.846,1.728-6.1,3.8c-0.26,0.424-2.145,3.61-3.559,8.959l4.972,28.724l47.024-10.65
+	c0.191-0.042,0.398,0.04,0.504,0.21c0.107,0.17,0.093,0.388-0.032,0.545l-1.583,1.956c-0.054,0.065-0.123,0.115-0.202,0.145
+	l-51.754,19.39C58.527,65.893,58.274,65.939,58.023,65.939z"/>
+<path class="st7" d="M42.591,14.478c-0.126,0-0.253-0.051-0.346-0.151c-0.178-0.19-0.166-0.488,0.025-0.665
+	c2.229-2.059,5.683-4.879,9.48-6.619c0.152-0.07,0.331-0.054,0.469,0.043c0.127,0.089,3.127,2.227,5.296,6.515
+	c0.117,0.232,0.024,0.515-0.21,0.632c-0.229,0.117-0.516,0.024-0.634-0.208c-1.733-3.426-4.073-5.444-4.783-6.007
+	c-3.583,1.696-6.848,4.369-8.976,6.335C42.822,14.436,42.707,14.478,42.591,14.478z"/>
+<path class="st7" d="M108.771,95.546c-0.024,0-0.047-0.002-0.071-0.006l-38.778-5.797c-0.258-0.038-0.435-0.278-0.396-0.535
+	c0.038-0.258,0.282-0.434,0.537-0.395l38.777,5.797c0.259,0.039,0.436,0.278,0.397,0.535
+	C109.202,95.379,109.001,95.546,108.771,95.546z"/>
+<path class="st7" d="M64.7,88.43v0.06c-0.01,0.06-0.03,0.11-0.06,0.16c-0.06,0.09-0.14,0.17-0.25,0.21
+	c-0.07,0.02-0.15,0.03-0.23,0.02l-10.89-1.63l-5.17,3.03l-0.64,0.38l-0.24,0.14l0.02,0.29v0.01l3.18,38.9h-0.96l-3.21-39.42
+	c-0.01-0.1,0.02-0.2,0.06-0.28c0.05-0.07,0.1-0.12,0.17-0.17l6.46-3.77c0.09-0.06,0.2-0.08,0.3-0.06l11.06,1.65
+	c0.1,0.02,0.19,0.06,0.25,0.13c0.02,0.01,0.03,0.02,0.04,0.04C64.66,88.2,64.7,88.32,64.7,88.43z"/>
+<path class="st7" d="M199.5,115l-0.61,15h-0.95l0.6-14.62l0.01-0.28l-0.11-0.2v-0.01l-0.28-0.52h-0.01l-3.21-5.94l-39.62-5.93h-0.07
+	l-5.5-0.82c-0.01,0-0.02,0-0.03-0.01h-0.01l-3.13-0.47l-0.12-0.02c-0.19-0.02-0.33-0.15-0.38-0.32v-0.01
+	c-0.02-0.06-0.03-0.13-0.02-0.2c0.02-0.1,0.06-0.19,0.14-0.26c0.01-0.02,0.03-0.03,0.05-0.04c0.03-0.03,0.06-0.05,0.1-0.07
+	c0.03-0.01,0.07-0.02,0.11-0.03c0.04-0.01,0.09-0.01,0.14,0l0.96,0.14h0.01l1.07,0.17h0.02l0.68,0.1l0.47,0.07l0.48,0.07l4.52,0.68
+	l0.47,0.07l0.48,0.07l39.55,5.92c0.15,0.02,0.27,0.11,0.34,0.24l3.79,6.98C199.48,114.84,199.5,114.92,199.5,115z"/>
+<path class="st7" d="M108.771,95.546c-0.024,0-0.047-0.002-0.071-0.006l-38.778-5.797c-0.258-0.038-0.435-0.278-0.396-0.535
+	c0.038-0.258,0.282-0.434,0.537-0.395l38.777,5.797c0.259,0.039,0.436,0.278,0.397,0.535
+	C109.202,95.379,109.001,95.546,108.771,95.546z"/>
+<path class="st7" d="M101.691,99.833c-0.025,0-0.051-0.002-0.076-0.006l-54.967-8.823c-0.197-0.031-0.352-0.182-0.389-0.378
+	c-0.037-0.195,0.053-0.392,0.225-0.493l6.452-3.775c0.094-0.054,0.201-0.077,0.309-0.059l11.053,1.652
+	c0.258,0.039,0.435,0.278,0.396,0.535c-0.038,0.257-0.282,0.434-0.537,0.395L53.27,87.254l-5.175,3.028l53.669,8.615
+	c0.259,0.041,0.433,0.282,0.391,0.539C102.119,99.668,101.918,99.833,101.691,99.833z"/>
+<path class="st7" d="M153.93,107.67V130h-0.94v-22.33c0-0.03,0-0.05,0.02-0.07c0.02-0.23,0.22-0.4,0.45-0.4
+	C153.72,107.2,153.93,107.41,153.93,107.67z"/>
+<path class="st7" d="M96.35,130h-0.94l-0.06-2.29l-0.79-27.37l-0.05-1.65L94.5,98.4c0-0.06,0.01-0.12,0.04-0.18
+	c0.06-0.17,0.23-0.29,0.42-0.3c0.28,0,0.46,0.19,0.48,0.44v0.01l0.01,0.47l0.05,1.5l0.79,27.37L96.35,130z"/>
+<path class="st7" d="M173.23,129.55l-10.75-9.95c-0.14-0.13-0.34-0.17-0.51-0.09c-0.17,0.07-0.29,0.24-0.29,0.43V130h0.95v-8.98
+	l9.53,8.83l-0.21,0.15h1.42c0-0.02,0.01-0.05,0.01-0.07C173.39,129.79,173.33,129.65,173.23,129.55z"/>
+<path class="st7" d="M177.21,122.19c-0.13-0.12-0.33-0.14-0.5-0.07c-0.17,0.08-0.28,0.25-0.28,0.43V130h0.95v-6.42l7.48,6.42h1.44
+	L177.21,122.19z"/>
+<path class="st7" d="M133.09,125.56l-8.55-7.28l-5.01-4.26c-0.14-0.12-0.34-0.15-0.5-0.07c-0.17,0.08-0.28,0.25-0.28,0.43V130h0.95
+	v-14.6l5.18,4.41l7.06,6.01l-8.08,4.18h2.04l7.1-3.67c0.14-0.07,0.24-0.2,0.25-0.36C133.27,125.81,133.21,125.66,133.09,125.56z"/>
+<path class="st7" d="M62.963,119.698c-0.381,0-0.696-0.3-0.709-0.682l-0.452-13.512l-0.928,0.862
+	c-0.285,0.267-0.734,0.252-1.001-0.034c-0.267-0.285-0.252-0.732,0.034-0.998l2.068-1.923c0.204-0.189,0.498-0.243,0.754-0.136
+	c0.257,0.106,0.428,0.351,0.438,0.628l0.504,15.065c0.013,0.39-0.293,0.716-0.684,0.73H62.963z"/>
+<path class="st7" d="M75.08,104.27c-1.53-0.08-2.88,0.46-3.97,1.54c-1.63,1.61-2.48,4.3-2.35,7.36c0.28,6.25,3.61,8.75,6.38,9
+	c0.18,0.01,0.36,0.02,0.54,0.02c1.35,0,2.57-0.45,3.55-1.34c1.57-1.41,2.39-3.76,2.43-6.98C81.71,109.4,79.68,104.49,75.08,104.27z
+	 M78.28,119.8c-1.02,0.92-2.21,1.04-3.02,0.96c-2.19-0.19-4.84-2.31-5.08-7.65c-0.12-2.63,0.61-4.99,1.93-6.3
+	c0.81-0.8,1.78-1.18,2.9-1.13c4.21,0.2,5.26,5.43,5.23,8.17C80.2,116.62,79.53,118.68,78.28,119.8z"/>
+<path class="st7" d="M76.374,129.358c-0.884,0-1.854-0.083-2.917-0.274c-5.292-0.955-16.97-3.043-16.97-3.043l0.251-1.389
+	c0,0,11.678,2.087,16.972,3.042c3.294,0.597,6.086,0.129,8.07-1.347c1.525-1.135,2.482-2.834,2.697-4.787
+	c0.043-0.388,0.385-0.681,0.781-0.624c0.389,0.042,0.67,0.39,0.627,0.778c-0.258,2.345-1.414,4.393-3.258,5.764
+	C81.385,128.402,79.374,129.358,76.374,129.358z"/>
+<path class="st7" d="M60.641,128.995l-4.029-3.65l3.723-2.839L60.641,128.995z"/>
+<path class="st7" d="M61.25,126.89l-0.07-1.44l-0.14-2.98c-0.01-0.26-0.17-0.49-0.41-0.6c-0.23-0.12-0.52-0.08-0.73,0.08l-3.72,2.84
+	c-0.17,0.12-0.27,0.32-0.28,0.53c0,0.21,0.08,0.41,0.23,0.55l4.03,3.65c0.14,0.12,0.31,0.18,0.48,0.18c0.1,0,0.21-0.02,0.3-0.07
+	c0.26-0.12,0.42-0.38,0.41-0.67L61.25,126.89z M57.72,125.39l0.59-0.46h0.01l1.37-1.04l0.06,1.3l0.07,1.44v0.01l0.03,0.69
+	l-0.95-0.86L57.72,125.39z"/>
+<path class="st7" d="M171.7,84.32l-0.17-0.38l-3.56-8.2c0.21,0.56,0.29,1.15,0.24,1.73l2.86,6.61l0.19,0.43l-0.45,0.12l-16.07,4.33
+	l-0.47,0.13l0.04,0.47l0.09-0.02l16.99-4.58c0.01,0,0.03-0.01,0.04-0.02c0.11-0.04,0.21-0.12,0.26-0.23
+	C171.75,84.58,171.75,84.44,171.7,84.32z M145.47,100.56l-12.35,3.85l1.03,0.16l11.93-3.71v-0.01c-0.03-0.06-0.03-0.13-0.02-0.2
+	c0.01-0.05,0.02-0.09,0.05-0.14c0.02-0.05,0.05-0.09,0.09-0.12c0.01-0.02,0.03-0.03,0.05-0.04c0.02-0.03,0.05-0.05,0.08-0.06
+	L145.47,100.56z M120.63,101.31c-0.34-0.34-0.66-0.67-0.95-0.97c-1.15-1.19-1.93-2.02-1.95-2.04c-0.09-0.1-0.21-0.15-0.34-0.15
+	c-0.04,0-0.08,0-0.12,0.01l-7.82,2.03l-0.59,0.15l-0.41,0.11l0.7,0.11l0.13,0.02l0.12,0.02l0.06,0.01l0.03,0.01l0.11,0.02h0.03
+	l0.98-0.26l0.14-0.04l6.64-1.72l0.14,0.15l0.1,0.1c0.02,0.03,0.04,0.05,0.07,0.08c0.04,0.03,0.08,0.07,0.12,0.12l0.03,0.03
+	c0.03,0.03,0.06,0.07,0.1,0.11c0.15,0.16,0.32,0.34,0.52,0.55c0.17,0.17,0.35,0.37,0.55,0.58h0.05l1.75,1.8l0.34,0.35l0.74,0.12
+	C121.45,102.16,121.03,101.72,120.63,101.31z M101.69,99.83h-0.07l-0.83-0.13l-0.97,0.36c0,0,0,0.02,0.01,0.07s0.01,0.12,0.03,0.21
+	h0.54l1.45-0.54C101.8,99.82,101.75,99.83,101.69,99.83z M171.7,84.32l-0.17-0.38l-3.56-8.2c0.21,0.56,0.29,1.15,0.24,1.73
+	l2.86,6.61l0.19,0.43l-0.45,0.12l-16.07,4.33l-0.47,0.13l0.04,0.47l0.09-0.02l16.99-4.58c0.01,0,0.03-0.01,0.04-0.02
+	c0.11-0.04,0.21-0.12,0.26-0.23C171.75,84.58,171.75,84.44,171.7,84.32z M145.47,100.56l0.59,0.09c0.01-0.05,0.02-0.09,0.05-0.14
+	c0.02-0.05,0.05-0.09,0.09-0.12c0.01-0.02,0.03-0.03,0.05-0.04c0.02-0.03,0.05-0.05,0.08-0.06L145.47,100.56z M117.73,98.3
+	c-0.09-0.1-0.21-0.15-0.34-0.15c-0.04,0-0.08,0-0.12,0.01l-7.82,2.03l-0.59,0.15h1.89l6.64-1.72l0.14,0.15l0.1,0.1
+	c0.02,0.03,0.04,0.05,0.07,0.08c0.04,0.03,0.08,0.07,0.12,0.12l0.03,0.03c0.03,0.03,0.06,0.07,0.1,0.11l0.48,0.48l0.64,0.65h0.61
+	C118.53,99.15,117.75,98.32,117.73,98.3z M171.7,84.32l-0.17-0.38l-3.56-8.2c0.21,0.56,0.29,1.15,0.24,1.73l2.86,6.61l0.19,0.43
+	l-0.45,0.12l-16.07,4.33l-0.47,0.13l0.04,0.47l0.09-0.02l16.99-4.58c0.01,0,0.03-0.01,0.04-0.02c0.11-0.04,0.21-0.12,0.26-0.23
+	C171.75,84.58,171.75,84.44,171.7,84.32z M145.47,100.56l0.59,0.09c0.01-0.05,0.02-0.09,0.05-0.14c0.02-0.05,0.05-0.09,0.09-0.12
+	c0.01-0.02,0.03-0.03,0.05-0.04c0.02-0.03,0.05-0.05,0.08-0.06L145.47,100.56z M117.73,98.3c-0.09-0.1-0.21-0.15-0.34-0.15
+	c-0.04,0-0.08,0-0.12,0.01l-7.82,2.03l-0.59,0.15h1.89l6.64-1.72l0.14,0.15l0.1,0.1c0.02,0.03,0.04,0.05,0.07,0.08
+	c0.04,0.03,0.08,0.07,0.12,0.12l0.03,0.03c0.03,0.03,0.06,0.07,0.1,0.11l0.48,0.48l0.64,0.65h0.61
+	C118.53,99.15,117.75,98.32,117.73,98.3z M171.7,84.32l-0.17-0.38l-3.56-8.2c0.21,0.56,0.29,1.15,0.24,1.73l2.86,6.61l0.19,0.43
+	l-0.45,0.12l-16.07,4.33l-0.47,0.13l0.04,0.47l0.09-0.02l16.99-4.58c0.01,0,0.03-0.01,0.04-0.02c0.11-0.04,0.21-0.12,0.26-0.23
+	C171.75,84.58,171.75,84.44,171.7,84.32z M146.06,100.65c0.01-0.05,0.02-0.09,0.05-0.14c0.02-0.05,0.05-0.09,0.09-0.12
+	c0.01-0.02,0.03-0.03,0.05-0.04c0.02-0.03,0.05-0.05,0.08-0.06l-0.86,0.27L146.06,100.65z M117.39,98.15c-0.04,0-0.08,0-0.12,0.01
+	l-7.82,2.03l-0.59,0.15h1.89l6.64-1.72l0.14,0.15l0.1,0.1l0.19,0.2l0.03,0.03l0.58,0.59l0.64,0.65h0.61
+	c-1.15-1.19-1.93-2.02-1.95-2.04C117.64,98.2,117.52,98.15,117.39,98.15z M183.36,86.61l-28.39-45.63l-0.01-0.02
+	c-0.12-0.19-0.35-0.27-0.56-0.19c-0.02,0.01-0.03,0.01-0.05,0.02c-0.22,0.11-0.32,0.36-0.23,0.59l12.98,34.71l0.62,1.43l0.32,0.74
+	l2.57,5.93l-15.91,4.29l-0.46,0.13l-0.47,0.12l-3.74,1.01l-0.47,0.13L149.09,90l-13.43,3.62c-0.66-0.54-2.97-2.33-7.02-4.61
+	c-0.15-0.1-0.31-0.18-0.47-0.27c-0.15-0.09-0.31-0.17-0.47-0.26c-0.66-0.36-1.36-0.73-2.11-1.11c-0.68-0.35-1.4-0.7-2.16-1.06
+	c-0.05-0.02-0.1-0.04-0.15-0.06c-0.15-0.06-0.31-0.1-0.47-0.12c-0.15-0.03-0.31-0.04-0.46-0.02h-0.01
+	c-0.59,0.03-1.15,0.28-1.56,0.75c-0.96,1.1-2.82,3.4-4.54,6.59l-5.25,1.95h-0.01l-9.34,3.48l-0.89,0.33h-0.01l-0.87,0.34h-0.01
+	l-0.2,0.07c-0.2,0.07-0.33,0.27-0.3,0.49c0,0.01,0.01,0.09,0.03,0.23c0.07,0.51,0.33,1.77,0.96,2.83c0.11,0.18,0.32,0.27,0.53,0.22
+	l8.77-2.27h0.01l1.11-0.3h0.01l1.14-0.29l0.73-0.19l4.59-1.19c0.22,0.23,0.61,0.65,1.13,1.19c0.54,0.56,1.22,1.26,1.96,2.02
+	c0.23,0.23,0.46,0.48,0.71,0.72c1.34,1.36,2.8,2.82,4.06,4.01c0.29,0.26,0.66,0.41,1.05,0.41c0.15,0,0.3-0.03,0.45-0.07l8.61-2.68
+	h0.02l11.35-3.55l1.03-0.32l1.03-0.32h0.02l0.67-0.22l0.47-0.14l0.47-0.15l4.31-1.35l0.46-0.14l0.46-0.14l26.54-8.28
+	c0.71-0.22,1.27-0.75,1.53-1.44C183.83,88,183.75,87.24,183.36,86.61z M154.96,97.6l-0.1,0.03l-0.79,0.25l-4.3,1.34l-0.12,0.03
+	c-0.01,0-0.01,0.01-0.02,0.01l-3.17,0.99c-0.02,0-0.03,0-0.04,0.01l-0.01,0.01c-0.01,0-0.01,0-0.02,0s-0.02,0-0.03,0.01
+	c0,0-0.01-0.01-0.01,0c-0.01,0-0.01,0-0.01,0.01c0,0-0.01-0.01-0.01,0l-0.86,0.27l-12.35,3.85l-6.8,2.12
+	c-0.2,0.06-0.42,0.01-0.57-0.13c-1.19-1.11-2.58-2.49-3.85-3.79c-0.45-0.45-0.87-0.89-1.27-1.3c-0.34-0.34-0.66-0.67-0.95-0.97
+	c-1.15-1.19-1.93-2.02-1.95-2.04c-0.09-0.1-0.21-0.15-0.34-0.15c-0.04,0-0.08,0-0.12,0.01l-7.82,2.03l-0.59,0.15l-0.41,0.11h-0.01
+	l-7.45,1.93c-0.16-0.32-0.28-0.65-0.38-0.96c-0.13-0.42-0.21-0.8-0.26-1.06l0.05-0.02l1.45-0.54l0.76-0.29h0.02l10.29-3.82
+	l3.81-1.42l0.02-0.01c0.1-0.04,0.18-0.11,0.24-0.21c0.21-0.39,0.42-0.76,0.62-1.12c1.51-2.61,3.05-4.49,3.88-5.45
+	c0.31-0.34,0.75-0.49,1.18-0.42c0.01,0.01,0.02,0.01,0.03,0.01c0.02-0.01,0.03-0.01,0.04,0c0.04,0.01,0.08,0.02,0.11,0.03
+	c0.06,0.02,0.12,0.04,0.17,0.06c1.68,0.8,3.34,1.65,4.92,2.53c0.08,0.05,0.16,0.09,0.23,0.13c4.69,2.65,7.04,4.65,7.07,4.68
+	c0.11,0.1,0.28,0.13,0.43,0.09l13.91-3.75l0.11-0.03h0.01l4.61-1.25l0.09-0.02l16.99-4.58c0.01,0,0.03-0.01,0.04-0.02
+	c0.11-0.04,0.21-0.12,0.26-0.23c0.06-0.13,0.06-0.27,0.01-0.39l-0.17-0.38l-3.56-8.2l-5.25-14.04v-0.01l-6.06-16.21l25.89,41.63
+	c0.24,0.38,0.29,0.84,0.13,1.26c-0.16,0.42-0.49,0.74-0.92,0.87L154.96,97.6z M117.73,98.3c-0.09-0.1-0.21-0.15-0.34-0.15
+	c-0.04,0-0.08,0-0.12,0.01l-7.82,2.03l-0.59,0.15h1.89l6.64-1.72l0.14,0.15l0.1,0.1c0.02,0.03,0.04,0.05,0.07,0.08
+	c0.04,0.03,0.08,0.07,0.12,0.12l0.03,0.03c0.03,0.03,0.06,0.07,0.1,0.11l0.48,0.48l0.64,0.65h0.61
+	C118.53,99.15,117.75,98.32,117.73,98.3z M145.47,100.56l0.59,0.09c0.01-0.05,0.02-0.09,0.05-0.14c0.02-0.05,0.05-0.09,0.09-0.12
+	c0.01-0.02,0.03-0.03,0.05-0.04c0.02-0.03,0.05-0.05,0.08-0.06L145.47,100.56z M171.7,84.32l-0.17-0.38l-3.56-8.2
+	c0.21,0.56,0.29,1.15,0.24,1.73l2.86,6.61l0.19,0.43l-0.45,0.12l-16.07,4.33l-0.47,0.13l0.04,0.47l0.09-0.02l16.99-4.58
+	c0.01,0,0.03-0.01,0.04-0.02c0.11-0.04,0.21-0.12,0.26-0.23C171.75,84.58,171.75,84.44,171.7,84.32z M117.73,98.3
+	c-0.09-0.1-0.21-0.15-0.34-0.15c-0.04,0-0.08,0-0.12,0.01l-7.82,2.03l-0.59,0.15h1.89l6.64-1.72l0.14,0.15l0.1,0.1
+	c0.02,0.03,0.04,0.05,0.07,0.08c0.04,0.03,0.08,0.07,0.12,0.12l0.03,0.03c0.03,0.03,0.06,0.07,0.1,0.11l0.48,0.48l0.64,0.65h0.61
+	C118.53,99.15,117.75,98.32,117.73,98.3z M145.47,100.56l0.59,0.09c0.01-0.05,0.02-0.09,0.05-0.14c0.02-0.05,0.05-0.09,0.09-0.12
+	c0.01-0.02,0.03-0.03,0.05-0.04c0.02-0.03,0.05-0.05,0.08-0.06L145.47,100.56z M171.7,84.32l-0.17-0.38l-3.56-8.2
+	c0.21,0.56,0.29,1.15,0.24,1.73l2.86,6.61l0.19,0.43l-0.45,0.12l-16.07,4.33l-0.47,0.13l0.04,0.47l0.09-0.02l16.99-4.58
+	c0.01,0,0.03-0.01,0.04-0.02c0.11-0.04,0.21-0.12,0.26-0.23C171.75,84.58,171.75,84.44,171.7,84.32z M101.69,99.83h-0.07l-0.83-0.13
+	l-0.97,0.36c0,0,0,0.02,0.01,0.07s0.01,0.12,0.03,0.21h0.54l1.45-0.54C101.8,99.82,101.75,99.83,101.69,99.83z M120.63,101.31
+	c-0.34-0.34-0.66-0.67-0.95-0.97c-1.15-1.19-1.93-2.02-1.95-2.04c-0.09-0.1-0.21-0.15-0.34-0.15c-0.04,0-0.08,0-0.12,0.01
+	l-7.82,2.03l-0.59,0.15l-0.41,0.11l0.7,0.11l0.13,0.02l0.12,0.02l0.06,0.01l0.03,0.01l0.11,0.02h0.03l0.98-0.26l0.14-0.04l6.64-1.72
+	l0.14,0.15l0.1,0.1c0.02,0.03,0.04,0.05,0.07,0.08c0.04,0.03,0.08,0.07,0.12,0.12l0.03,0.03c0.03,0.03,0.06,0.07,0.1,0.11
+	c0.15,0.16,0.32,0.34,0.52,0.55c0.17,0.17,0.35,0.37,0.55,0.58h0.05l1.75,1.8l0.34,0.35l0.74,0.12
+	C121.45,102.16,121.03,101.72,120.63,101.31z M145.47,100.56l-12.35,3.85l1.03,0.16l11.93-3.71v-0.01c-0.03-0.06-0.03-0.13-0.02-0.2
+	c0.01-0.05,0.02-0.09,0.05-0.14c0.02-0.05,0.05-0.09,0.09-0.12c0.01-0.02,0.03-0.03,0.05-0.04c0.02-0.03,0.05-0.05,0.08-0.06
+	L145.47,100.56z M171.7,84.32l-0.17-0.38l-3.56-8.2c0.21,0.56,0.29,1.15,0.24,1.73l2.86,6.61l0.19,0.43l-0.45,0.12l-16.07,4.33
+	l-0.47,0.13l0.04,0.47l0.09-0.02l16.99-4.58c0.01,0,0.03-0.01,0.04-0.02c0.11-0.04,0.21-0.12,0.26-0.23
+	C171.75,84.58,171.75,84.44,171.7,84.32z M101.69,99.83h-0.07l-0.83-0.13l-0.97,0.36c0,0,0,0.02,0.01,0.07s0.01,0.12,0.03,0.21h0.54
+	l1.45-0.54C101.8,99.82,101.75,99.83,101.69,99.83z M120.63,101.31c-0.34-0.34-0.66-0.67-0.95-0.97c-1.15-1.19-1.93-2.02-1.95-2.04
+	c-0.09-0.1-0.21-0.15-0.34-0.15c-0.04,0-0.08,0-0.12,0.01l-7.82,2.03l-0.59,0.15l-0.41,0.11l0.7,0.11l0.13,0.02l0.12,0.02l0.06,0.01
+	l0.03,0.01l0.11,0.02h0.03l0.98-0.26l0.14-0.04l6.64-1.72l0.14,0.15l0.1,0.1c0.02,0.03,0.04,0.05,0.07,0.08
+	c0.04,0.03,0.08,0.07,0.12,0.12l0.03,0.03c0.03,0.03,0.06,0.07,0.1,0.11c0.15,0.16,0.32,0.34,0.52,0.55
+	c0.17,0.17,0.35,0.37,0.55,0.58h0.05l1.75,1.8l0.34,0.35l0.74,0.12C121.45,102.16,121.03,101.72,120.63,101.31z M145.47,100.56
+	l-12.35,3.85l1.03,0.16l11.93-3.71v-0.01c-0.03-0.06-0.03-0.13-0.02-0.2c0.01-0.05,0.02-0.09,0.05-0.14
+	c0.02-0.05,0.05-0.09,0.09-0.12c0.01-0.02,0.03-0.03,0.05-0.04c0.02-0.03,0.05-0.05,0.08-0.06L145.47,100.56z M171.7,84.32
+	l-0.17-0.38l-3.56-8.2c0.21,0.56,0.29,1.15,0.24,1.73l2.86,6.61l0.19,0.43l-0.45,0.12l-16.07,4.33l-0.47,0.13l0.04,0.47l0.09-0.02
+	l16.99-4.58c0.01,0,0.03-0.01,0.04-0.02c0.11-0.04,0.21-0.12,0.26-0.23C171.75,84.58,171.75,84.44,171.7,84.32z"/>
+<path class="st7" d="M116.569,94.295c-0.191,0-0.372-0.117-0.443-0.306c-0.091-0.244,0.033-0.515,0.278-0.606l4.381-1.631
+	c0.243-0.09,0.517,0.033,0.608,0.277c0.091,0.244-0.033,0.515-0.278,0.606l-4.381,1.631
+	C116.68,94.286,116.624,94.295,116.569,94.295z"/>
+<path class="st7" d="M171.262,84.972c-0.207,0-0.396-0.136-0.455-0.343c-0.07-0.251,0.076-0.51,0.326-0.581l1.231-0.345
+	c0.257-0.068,0.512,0.076,0.583,0.325c0.07,0.251-0.076,0.51-0.326,0.581l-1.231,0.345
+	C171.347,84.966,171.304,84.972,171.262,84.972z"/>
+<path class="st7" d="M142.337,77.821c-0.25,0-0.459-0.195-0.472-0.446c-1.545-29.168-10.332-46.071-10.421-46.238
+	c-0.086-0.164-0.069-0.364,0.046-0.51l2.322-2.959c0.161-0.206,0.459-0.24,0.663-0.081c0.206,0.16,0.243,0.456,0.081,0.661
+	l-2.137,2.724c1.141,2.307,8.94,18.988,10.389,46.353c0.014,0.259-0.186,0.481-0.446,0.495
+	C142.353,77.822,142.345,77.821,142.337,77.821z"/>
+<path class="st7" d="M128.17,89.755c-0.079,0-0.159-0.02-0.231-0.061c-1.582-0.884-3.236-1.736-4.917-2.533
+	c-0.088-0.041-0.19-0.065-0.326-0.089c-0.239-0.042-0.407-0.257-0.39-0.498l0.699-9.258c0.02-0.259,0.256-0.455,0.506-0.435
+	c0.261,0.02,0.456,0.245,0.437,0.505l-0.669,8.864c0.05,0.018,0.1,0.039,0.15,0.062c1.451,0.688,2.884,1.417,4.269,2.173V76.989
+	c0-0.26,0.211-0.471,0.472-0.471s0.473,0.211,0.473,0.471v12.295c0,0.167-0.089,0.322-0.234,0.406
+	C128.335,89.734,128.252,89.755,128.17,89.755z"/>
+<path class="st7" d="M150.27,100.05l-0.47,0.15l-0.47,0.14l0.01,0.32l0.47,0.07l0.48,0.07L150.27,100.05z M150.27,100.05l-0.47,0.15
+	l-0.47,0.14l0.01,0.32l0.47,0.07l0.48,0.07L150.27,100.05z M150.27,100.05l-0.47,0.15l-0.47,0.14l0.01,0.32l0.47,0.07l0.48,0.07
+	L150.27,100.05z M150.27,100.05l-0.47,0.15l-0.47,0.14l0.01,0.32l0.47,0.07l0.48,0.07L150.27,100.05z M155.76,101.62l-0.26-3.2
+	l-0.03-0.38c0-0.04-0.01-0.07-0.02-0.1c0-0.01,0-0.01,0-0.01c-0.03-0.1-0.09-0.18-0.18-0.24c-0.09-0.06-0.2-0.09-0.31-0.07
+	c-0.03,0-0.06,0-0.1,0.01l-0.79,0.25l-4.3,1.33l-0.12,0.04c-0.01,0-0.01,0.01-0.02,0.01c-0.19,0.07-0.32,0.25-0.31,0.45v0.14
+	l0.01,0.49l0.01,0.32l0.01,0.48v0.08c0.01,0.22,0.15,0.38,0.35,0.44l0.01,0.01h0.01c0.01,0.01,0.02,0.01,0.03,0.01l5.5,0.82h0.07
+	c0.12,0,0.24-0.04,0.33-0.12c0.08-0.08,0.13-0.17,0.13-0.28c0.01-0.03,0.02-0.06,0.01-0.1L155.76,101.62z M150.29,100.8l-0.02-0.75
+	l4.31-1.35l0.23,2.78l-4.52-0.67V100.8z M150.27,100.05l-0.47,0.15l-0.47,0.14l0.01,0.32l0.47,0.07l0.48,0.07L150.27,100.05z
+	 M150.27,100.05l-0.47,0.15l-0.47,0.14l0.01,0.32l0.47,0.07l0.48,0.07L150.27,100.05z M150.27,100.05l-0.47,0.15l-0.47,0.14
+	l0.01,0.32l0.47,0.07l0.48,0.07L150.27,100.05z M150.27,100.05l-0.47,0.15l-0.47,0.14l0.01,0.32l0.47,0.07l0.48,0.07L150.27,100.05z
+	"/>
+<path class="st7" d="M149.573,90.824c-0.1,0-0.2-0.032-0.282-0.094c-0.117-0.086-0.186-0.222-0.19-0.366l-0.225-9.811
+	c-0.006-0.26,0.201-0.475,0.461-0.482c0.257,0.016,0.478,0.2,0.484,0.46l0.211,9.211l3.741-1.009l-0.785-9.707
+	c-0.022-0.259,0.172-0.486,0.432-0.507c0.262-0.014,0.489,0.172,0.509,0.431l0.817,10.097c0.019,0.226-0.127,0.433-0.347,0.492
+	l-4.702,1.269C149.656,90.818,149.615,90.824,149.573,90.824z"/>
+<path class="st7" d="M117.387,102.352c-0.025,0-0.05-0.001-0.075-0.006l-7.772-1.247c-0.258-0.041-0.433-0.283-0.391-0.539
+	c0.041-0.257,0.288-0.44,0.541-0.39l7.771,1.248c0.258,0.04,0.433,0.282,0.391,0.538
+	C117.815,102.188,117.615,102.352,117.387,102.352z"/>
+<path class="st7" d="M199.027,115.457c-0.025,0-0.049-0.002-0.074-0.006l-60.501-9.712c-0.259-0.04-0.433-0.282-0.392-0.538
+	c0.042-0.258,0.287-0.439,0.541-0.39l59.556,9.558l-3.221-5.937l-48.477-7.247c-0.259-0.038-0.436-0.277-0.397-0.535
+	c0.038-0.258,0.277-0.436,0.537-0.395l48.711,7.282c0.146,0.022,0.274,0.111,0.345,0.241l3.788,6.985
+	c0.085,0.157,0.073,0.349-0.031,0.496C199.323,115.384,199.179,115.457,199.027,115.457z"/>
+</svg>