@salesforcedevs/dx-components 0.26.1-alpha0.4 → 0.26.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +12 -0
- package/package.json +4 -5
- package/src/assets/icons/action-sprite/svg/symbols.svg +1 -0
- package/src/assets/icons/brand-sprite/svg/symbols.svg +1381 -0
- package/src/assets/icons/custom-sprite/svg/symbols.svg +1 -0
- package/src/assets/icons/doctype-sprite/svg/symbols.svg +1 -0
- package/src/assets/icons/general-sprite/svg/symbols.svg +3013 -0
- package/src/assets/icons/salesforcebrand-sprite/svg/symbols.svg +257 -0
- package/src/assets/icons/standard-sprite/svg/symbols.svg +1 -0
- package/src/assets/icons/utility-sprite/svg/symbols.svg +1 -0
- package/src/assets/svg/card-news-learn-moar.svg +415 -0
- package/src/assets/svg/cloud-1.svg +24 -0
- package/src/assets/svg/cloud-2.svg +18 -0
- package/src/assets/svg/codey.svg +93 -0
- package/src/assets/svg/command.svg +9 -0
- package/src/assets/svg/control.svg +10 -0
- package/src/assets/svg/docs-empty-state-small.svg +72 -0
- package/src/assets/svg/docs-empty-state.svg +86 -0
- package/src/assets/svg/dsc-home-news-bear.svg +3 -0
- package/src/assets/svg/dsc-home-news-community.png +0 -0
- package/src/assets/svg/dsc-home-news-goatbear.svg +257 -0
- package/src/assets/svg/dsc-home-news-samplegallery.svg +76 -0
- package/src/assets/svg/empty-state-assistant.svg +1 -0
- package/src/assets/svg/fch-blog-cloud-1.png +0 -0
- package/src/assets/svg/fch-blog-cloud-2.png +0 -0
- package/src/assets/svg/fch-blog-planet.png +0 -0
- package/src/assets/svg/feature-backdrop1.svg +10 -0
- package/src/assets/svg/feature-backdrop2.svg +10 -0
- package/src/assets/svg/featured-demo-art-blank.svg +76 -0
- package/src/assets/svg/featured-demo-art-eBikes.svg +77 -0
- package/src/assets/svg/footer-graphic-large.svg +207 -0
- package/src/assets/svg/footer-graphic-mountains-small.svg +17 -0
- package/src/assets/svg/footer-graphic-mountains.svg +21 -0
- package/src/assets/svg/footer-graphic-trees-small.svg +33 -0
- package/src/assets/svg/footer-graphic-trees.svg +62 -0
- package/src/assets/svg/lake-mountain.svg +79 -0
- package/src/assets/svg/podcast-subscription-clouds-small.svg +49 -0
- package/src/assets/svg/podcast-subscription-clouds.svg +57 -0
- package/src/assets/svg/podcasts-subscription-apple.svg +164 -0
- package/src/assets/svg/podcasts-subscription-google.svg +29 -0
- package/src/assets/svg/podcasts-subscription-spotify.svg +11 -0
- package/src/assets/svg/salesforce-cloud.svg +7 -0
- package/src/assets/svg/salesforce-logo-corporate.svg +21 -0
- package/src/assets/svg/salesforce-logo.svg +14 -0
- package/src/assets/svg/sidebar-loading.svg +34 -0
- package/src/assets/svg/slack-cta-podcast-background-left.svg +28 -0
- package/src/assets/svg/slack-cta-podcast-background-right.svg +38 -0
- package/src/assets/svg/trees.svg +42 -0
- package/src/modules/dx/banner/__tests__/banner.test.ts +33 -0
- package/src/modules/dx/banner/banner.css +46 -0
- package/src/modules/dx/banner/banner.html +13 -0
- package/src/modules/dx/banner/banner.ts +14 -0
- package/src/modules/dx/brandThemeProvider/__tests__/brandThemeProvider.test.ts +49 -0
- package/src/modules/dx/brandThemeProvider/brandCssVars.ts +10 -0
- package/src/modules/dx/brandThemeProvider/brandThemeProvider.html +3 -0
- package/src/modules/dx/brandThemeProvider/brandThemeProvider.stories.ts +321 -0
- package/src/modules/dx/brandThemeProvider/brandThemeProvider.ts +46 -0
- package/src/modules/dx/breadcrumbs/__tests__/breadcrumbs.test.ts +140 -0
- package/src/modules/dx/breadcrumbs/__tests__/mockProps.ts +28 -0
- package/src/modules/dx/breadcrumbs/breadcrumbs.css +111 -0
- package/src/modules/dx/breadcrumbs/breadcrumbs.html +44 -0
- package/src/modules/dx/breadcrumbs/breadcrumbs.stories.ts +39 -0
- package/src/modules/dx/breadcrumbs/breadcrumbs.ts +122 -0
- package/src/modules/dx/button/__tests__/button.test.ts +107 -0
- package/src/modules/dx/button/button.css +175 -0
- package/src/modules/dx/button/button.html +43 -0
- package/src/modules/dx/button/button.stories.ts +150 -0
- package/src/modules/dx/button/button.ts +63 -0
- package/src/modules/dx/cardBlogPost/__tests__/cardBlogPost.test.ts +26 -0
- package/src/modules/dx/cardBlogPost/__tests__/mockProps.ts +12 -0
- package/src/modules/dx/cardBlogPost/cardBlogPost.css +13 -0
- package/src/modules/dx/cardBlogPost/cardBlogPost.html +24 -0
- package/src/modules/dx/cardBlogPost/cardBlogPost.stories.ts +164 -0
- package/src/modules/dx/cardBlogPost/cardBlogPost.ts +23 -0
- package/src/modules/dx/cardBlogPostProvider/__tests__/cardBlogPostProvider.test.ts +34 -0
- package/src/modules/dx/cardBlogPostProvider/__tests__/mockWordpressPosts.ts +44 -0
- package/src/modules/dx/cardBlogPostProvider/cardBlogPostProvider.css +3 -0
- package/src/modules/dx/cardBlogPostProvider/cardBlogPostProvider.html +16 -0
- package/src/modules/dx/cardBlogPostProvider/cardBlogPostProvider.ts +29 -0
- package/src/modules/dx/cardCallout/__tests__/cardCallout.test.ts +20 -0
- package/src/modules/dx/cardCallout/__tests__/mockProps.ts +7 -0
- package/src/modules/dx/cardCallout/cardCallout.css +57 -0
- package/src/modules/dx/cardCallout/cardCallout.html +15 -0
- package/src/modules/dx/cardCallout/cardCallout.stories.ts +33 -0
- package/src/modules/dx/cardCallout/cardCallout.ts +37 -0
- package/src/modules/dx/cardContent/__tests__/cardContent.test.ts +100 -0
- package/src/modules/dx/cardContent/__tests__/mockProps.ts +13 -0
- package/src/modules/dx/cardContent/cardContent.css +52 -0
- package/src/modules/dx/cardContent/cardContent.html +59 -0
- package/src/modules/dx/cardContent/cardContent.stories.ts +127 -0
- package/src/modules/dx/cardContent/cardContent.ts +68 -0
- package/src/modules/dx/cardDemo/cardDemo.css +1 -0
- package/src/modules/dx/cardDemo/cardDemo.html +12 -0
- package/src/modules/dx/cardDemo/cardDemo.stories.ts +115 -0
- package/src/modules/dx/cardDemo/cardDemo.ts +11 -0
- package/src/modules/dx/cardDocs/__tests__/cardDocs.test.ts +48 -0
- package/src/modules/dx/cardDocs/__tests__/mockProps.ts +9 -0
- package/src/modules/dx/cardDocs/cardDocs.css +50 -0
- package/src/modules/dx/cardDocs/cardDocs.html +20 -0
- package/src/modules/dx/cardDocs/cardDocs.stories.ts +299 -0
- package/src/modules/dx/cardDocs/cardDocs.ts +30 -0
- package/src/modules/dx/cardEvent/__tests__/cardEvent.test.ts +95 -0
- package/src/modules/dx/cardEvent/__tests__/mockProps.ts +10 -0
- package/src/modules/dx/cardEvent/cardEvent.css +107 -0
- package/src/modules/dx/cardEvent/cardEvent.html +94 -0
- package/src/modules/dx/cardEvent/cardEvent.stories.ts +153 -0
- package/src/modules/dx/cardEvent/cardEvent.ts +42 -0
- package/src/modules/dx/cardExpanded/__tests__/cardExpanded.test.ts +193 -0
- package/src/modules/dx/cardExpanded/__tests__/mockProps.ts +21 -0
- package/src/modules/dx/cardExpanded/cardExpanded.css +49 -0
- package/src/modules/dx/cardExpanded/cardExpanded.html +37 -0
- package/src/modules/dx/cardExpanded/cardExpanded.stories.ts +59 -0
- package/src/modules/dx/cardExpanded/cardExpanded.ts +45 -0
- package/src/modules/dx/cardGrid/__tests__/cardMockProps.ts +431 -0
- package/src/modules/dx/cardGrid/__tests__/mockProps.ts +15 -0
- package/src/modules/dx/cardGrid/cardGrid.css +89 -0
- package/src/modules/dx/cardGrid/cardGrid.html +46 -0
- package/src/modules/dx/cardGrid/cardGrid.stories.ts +111 -0
- package/src/modules/dx/cardGrid/cardGrid.ts +140 -0
- package/src/modules/dx/cardMinimal/__tests__/cardMinimal.test.ts +87 -0
- package/src/modules/dx/cardMinimal/__tests__/mockProps.ts +10 -0
- package/src/modules/dx/cardMinimal/cardMinimal.css +31 -0
- package/src/modules/dx/cardMinimal/cardMinimal.html +13 -0
- package/src/modules/dx/cardMinimal/cardMinimal.stories.ts +32 -0
- package/src/modules/dx/cardMinimal/cardMinimal.ts +3 -0
- package/src/modules/dx/cardNews/__tests__/cardNews.test.ts +58 -0
- package/src/modules/dx/cardNews/__tests__/mockProps.ts +7 -0
- package/src/modules/dx/cardNews/cardNews.css +159 -0
- package/src/modules/dx/cardNews/cardNews.html +37 -0
- package/src/modules/dx/cardNews/cardNews.stories.ts +115 -0
- package/src/modules/dx/cardNews/cardNews.ts +62 -0
- package/src/modules/dx/cardPodcastEpisode/__tests__/cardPodcastEpisode.test.ts +68 -0
- package/src/modules/dx/cardPodcastEpisode/cardPodcastEpisode.css +19 -0
- package/src/modules/dx/cardPodcastEpisode/cardPodcastEpisode.html +36 -0
- package/src/modules/dx/cardPodcastEpisode/cardPodcastEpisode.stories.ts +31 -0
- package/src/modules/dx/cardPodcastEpisode/cardPodcastEpisode.ts +36 -0
- package/src/modules/dx/cardPodcastEpisodeProvider/__tests__/cardPodcastEpisodeProvider.test.ts +36 -0
- package/src/modules/dx/cardPodcastEpisodeProvider/__tests__/mockWordpressEpisodes.ts +50 -0
- package/src/modules/dx/cardPodcastEpisodeProvider/cardPodcastEpisodeProvider.css +3 -0
- package/src/modules/dx/cardPodcastEpisodeProvider/cardPodcastEpisodeProvider.html +12 -0
- package/src/modules/dx/cardPodcastEpisodeProvider/cardPodcastEpisodeProvider.ts +29 -0
- package/src/modules/dx/cardSmall/__tests__/cardSmall.test.ts +66 -0
- package/src/modules/dx/cardSmall/__tests__/mockProps.ts +8 -0
- package/src/modules/dx/cardSmall/cardSmall.css +32 -0
- package/src/modules/dx/cardSmall/cardSmall.html +42 -0
- package/src/modules/dx/cardSmall/cardSmall.stories.ts +166 -0
- package/src/modules/dx/cardSmall/cardSmall.ts +38 -0
- package/src/modules/dx/cardTitle/__tests__/cardTitle.test.ts +46 -0
- package/src/modules/dx/cardTitle/cardTitle.css +41 -0
- package/src/modules/dx/cardTitle/cardTitle.html +20 -0
- package/src/modules/dx/cardTitle/cardTitle.ts +27 -0
- package/src/modules/dx/cardTrailheadModule/__tests__/cardTrailheadModule.test.ts +18 -0
- package/src/modules/dx/cardTrailheadModule/__tests__/mockProps.ts +11 -0
- package/src/modules/dx/cardTrailheadModule/cardTrailheadModule.css +24 -0
- package/src/modules/dx/cardTrailheadModule/cardTrailheadModule.html +20 -0
- package/src/modules/dx/cardTrailheadModule/cardTrailheadModule.stories.ts +122 -0
- package/src/modules/dx/cardTrailheadModule/cardTrailheadModule.ts +18 -0
- package/src/modules/dx/cardVideoPreview/__tests__/cardVideoPreview.test.ts +22 -0
- package/src/modules/dx/cardVideoPreview/__tests__/mockProps.ts +11 -0
- package/src/modules/dx/cardVideoPreview/cardVideoPreview.css +14 -0
- package/src/modules/dx/cardVideoPreview/cardVideoPreview.html +26 -0
- package/src/modules/dx/cardVideoPreview/cardVideoPreview.stories.ts +147 -0
- package/src/modules/dx/cardVideoPreview/cardVideoPreview.ts +13 -0
- package/src/modules/dx/checkbox/__tests__/checkbox.test.ts +85 -0
- package/src/modules/dx/checkbox/__tests__/mockProps.ts +5 -0
- package/src/modules/dx/checkbox/checkbox.css +168 -0
- package/src/modules/dx/checkbox/checkbox.html +26 -0
- package/src/modules/dx/checkbox/checkbox.stories.ts +38 -0
- package/src/modules/dx/checkbox/checkbox.ts +55 -0
- package/src/modules/dx/checkboxGroup/__tests__/checkboxGroup.test.ts +80 -0
- package/src/modules/dx/checkboxGroup/__tests__/mockProps.ts +14 -0
- package/src/modules/dx/checkboxGroup/checkboxGroup.css +12 -0
- package/src/modules/dx/checkboxGroup/checkboxGroup.html +15 -0
- package/src/modules/dx/checkboxGroup/checkboxGroup.stories.ts +33 -0
- package/src/modules/dx/checkboxGroup/checkboxGroup.ts +77 -0
- package/src/modules/dx/codeBlock/__tests__/codeBlock.test.ts +238 -0
- package/src/modules/dx/codeBlock/__tests__/mockProps.ts +160 -0
- package/src/modules/dx/codeBlock/codeBlock.css +128 -0
- package/src/modules/dx/codeBlock/codeBlock.html +79 -0
- package/src/modules/dx/codeBlock/codeBlock.stories.ts +143 -0
- package/src/modules/dx/codeBlock/codeBlock.ts +215 -0
- package/src/modules/dx/codeBlock/darkTheme.css +88 -0
- package/src/modules/dx/codeBlock/lightTheme.css +72 -0
- package/src/modules/dx/dropdown/__tests__/dropdown.test.ts +165 -0
- package/src/modules/dx/dropdown/__tests__/mockNestedOptions.ts +96 -0
- package/src/modules/dx/dropdown/__tests__/mockOptions.ts +10 -0
- package/src/modules/dx/dropdown/__tests__/mockProps.ts +6 -0
- package/src/modules/dx/dropdown/dropdown.css +93 -0
- package/src/modules/dx/dropdown/dropdown.html +67 -0
- package/src/modules/dx/dropdown/dropdown.stories.ts +89 -0
- package/src/modules/dx/dropdown/dropdown.ts +182 -0
- package/src/modules/dx/dropdownOption/__tests__/dropdownOption.test.ts +112 -0
- package/src/modules/dx/dropdownOption/__tests__/mockProps.ts +20 -0
- package/src/modules/dx/dropdownOption/dropdownOption.css +61 -0
- package/src/modules/dx/dropdownOption/dropdownOption.html +53 -0
- package/src/modules/dx/dropdownOption/dropdownOption.ts +39 -0
- package/src/modules/dx/emptyState/__tests__/emptyState.test.ts +52 -0
- package/src/modules/dx/emptyState/__tests__/mockProps.ts +4 -0
- package/src/modules/dx/emptyState/emptyState.css +64 -0
- package/src/modules/dx/emptyState/emptyState.html +9 -0
- package/src/modules/dx/emptyState/emptyState.stories.ts +45 -0
- package/src/modules/dx/emptyState/emptyState.ts +20 -0
- package/src/modules/dx/feature/__tests__/feature.test.ts +51 -0
- package/src/modules/dx/feature/__tests__/mockProps.ts +8 -0
- package/src/modules/dx/feature/feature.css +135 -0
- package/src/modules/dx/feature/feature.html +33 -0
- package/src/modules/dx/feature/feature.ts +34 -0
- package/src/modules/dx/featureGrid/__tests__/featureGrid.test.ts +21 -0
- package/src/modules/dx/featureGrid/featureGrid.html +3 -0
- package/src/modules/dx/featureGrid/featureGrid.stories.ts +120 -0
- package/src/modules/dx/featureGrid/featureGrid.ts +15 -0
- package/src/modules/dx/featuredContentHeader/__tests__/featuredContentHeader.test.ts +178 -0
- package/src/modules/dx/featuredContentHeader/__tests__/mockProps.ts +73 -0
- package/src/modules/dx/featuredContentHeader/featuredContentHeader.css +469 -0
- package/src/modules/dx/featuredContentHeader/featuredContentHeader.html +96 -0
- package/src/modules/dx/featuredContentHeader/featuredContentHeader.stories.ts +153 -0
- package/src/modules/dx/featuredContentHeader/featuredContentHeader.ts +113 -0
- package/src/modules/dx/featuredContentHeader/svgs.ts +35 -0
- package/src/modules/dx/featuresList/__tests__/featuresList.test.ts +43 -0
- package/src/modules/dx/featuresList/__tests__/mockProps.ts +17 -0
- package/src/modules/dx/featuresList/featuresList.css +24 -0
- package/src/modules/dx/featuresList/featuresList.html +20 -0
- package/src/modules/dx/featuresList/featuresList.stories.ts +30 -0
- package/src/modules/dx/featuresList/featuresList.ts +21 -0
- package/src/modules/dx/footer/__tests__/footer.test.ts +147 -0
- package/src/modules/dx/footer/__tests__/mockLocales.ts +7 -0
- package/src/modules/dx/footer/footer.css +405 -0
- package/src/modules/dx/footer/footer.html +145 -0
- package/src/modules/dx/footer/footer.stories.ts +88 -0
- package/src/modules/dx/footer/footer.ts +124 -0
- package/src/modules/dx/footer/links.ts +140 -0
- package/src/modules/dx/footerOption/__tests__/footerOption.test.ts +34 -0
- package/src/modules/dx/footerOption/__tests__/mockProps.ts +7 -0
- package/src/modules/dx/footerOption/footerOption.css +4 -0
- package/src/modules/dx/footerOption/footerOption.html +12 -0
- package/src/modules/dx/footerOption/footerOption.ts +19 -0
- package/src/modules/dx/formattedDateTime/__tests__/formattedDateTime.test.ts +25 -0
- package/src/modules/dx/formattedDateTime/__tests__/mockProps.ts +13 -0
- package/src/modules/dx/formattedDateTime/formattedDateTime.html +1 -0
- package/src/modules/dx/formattedDateTime/formattedDateTime.stories.ts +103 -0
- package/src/modules/dx/formattedDateTime/formattedDateTime.ts +72 -0
- package/src/modules/dx/grid/__tests__/grid.test.ts +32 -0
- package/src/modules/dx/grid/grid.css +48 -0
- package/src/modules/dx/grid/grid.html +3 -0
- package/src/modules/dx/grid/grid.md +14 -0
- package/src/modules/dx/grid/grid.stories.ts +134 -0
- package/src/modules/dx/grid/grid.ts +72 -0
- package/src/modules/dx/groupBio/__tests__/groupBio.test.ts +82 -0
- package/src/modules/dx/groupBio/__tests__/mockProps.ts +15 -0
- package/src/modules/dx/groupBio/groupBio.css +49 -0
- package/src/modules/dx/groupBio/groupBio.html +29 -0
- package/src/modules/dx/groupBio/groupBio.stories.ts +66 -0
- package/src/modules/dx/groupBio/groupBio.ts +41 -0
- package/src/modules/dx/groupText/__tests__/groupText.test.ts +69 -0
- package/src/modules/dx/groupText/__tests__/mockProps.ts +35 -0
- package/src/modules/dx/groupText/groupText.css +119 -0
- package/src/modules/dx/groupText/groupText.html +65 -0
- package/src/modules/dx/groupText/groupText.stories.ts +81 -0
- package/src/modules/dx/groupText/groupText.ts +93 -0
- package/src/modules/dx/headTags/headTags.html +3 -0
- package/src/modules/dx/headTags/headTags.ts +39 -0
- package/src/modules/dx/header/__benchmarks__/header.benchmark.js +45 -0
- package/src/modules/dx/header/__tests__/header.test.ts +236 -0
- package/src/modules/dx/header/__tests__/mockNavArchitects.ts +169 -0
- package/src/modules/dx/header/__tests__/mockNavDevelopers.ts +419 -0
- package/src/modules/dx/header/__tests__/mockNavs.ts +115 -0
- package/src/modules/dx/header/__tests__/mockProps.ts +164 -0
- package/src/modules/dx/header/header.css +109 -0
- package/src/modules/dx/header/header.html +129 -0
- package/src/modules/dx/header/header.stories.ts +172 -0
- package/src/modules/dx/header/header.ts +27 -0
- package/src/modules/dx/headerMobileNavMenu/__tests__/headerMobileNavMenu.test.ts +123 -0
- package/src/modules/dx/headerMobileNavMenu/headerMobileNavMenu.css +160 -0
- package/src/modules/dx/headerMobileNavMenu/headerMobileNavMenu.html +73 -0
- package/src/modules/dx/headerMobileNavMenu/headerMobileNavMenu.ts +102 -0
- package/src/modules/dx/headerMobileNavMenuOption/__tests__/headerMobileNavMenuOption.test.ts +38 -0
- package/src/modules/dx/headerMobileNavMenuOption/headerMobileNavMenuOption.css +5 -0
- package/src/modules/dx/headerMobileNavMenuOption/headerMobileNavMenuOption.html +14 -0
- package/src/modules/dx/headerMobileNavMenuOption/headerMobileNavMenuOption.ts +20 -0
- package/src/modules/dx/headerNav/__tests__/headerNav.test.ts +49 -0
- package/src/modules/dx/headerNav/headerNav.css +31 -0
- package/src/modules/dx/headerNav/headerNav.html +48 -0
- package/src/modules/dx/headerNav/headerNav.ts +56 -0
- package/src/modules/dx/headerSearch/__tests__/headerSearch.test.ts +182 -0
- package/src/modules/dx/headerSearch/__tests__/mockData.ts +11 -0
- package/src/modules/dx/headerSearch/__tests__/mockProps.ts +6 -0
- package/src/modules/dx/headerSearch/headerSearch.css +62 -0
- package/src/modules/dx/headerSearch/headerSearch.html +64 -0
- package/src/modules/dx/headerSearch/headerSearch.ts +159 -0
- package/src/modules/dx/helmet/__tests__/helmet.test.ts +52 -0
- package/src/modules/dx/helmet/helmet.css +83 -0
- package/src/modules/dx/helmet/helmet.html +39 -0
- package/src/modules/dx/helmet/helmet.stories.ts +53 -0
- package/src/modules/dx/helmet/helmet.ts +27 -0
- package/src/modules/dx/hr/__tests__/hr.test.ts +53 -0
- package/src/modules/dx/hr/__tests__/mockProps.ts +16 -0
- package/src/modules/dx/hr/hr.css +55 -0
- package/src/modules/dx/hr/hr.html +23 -0
- package/src/modules/dx/hr/hr.stories.ts +50 -0
- package/src/modules/dx/hr/hr.ts +45 -0
- package/src/modules/dx/icon/__tests__/icon.test.ts +54 -0
- package/src/modules/dx/icon/icon.css +14 -0
- package/src/modules/dx/icon/icon.html +11 -0
- package/src/modules/dx/icon/icon.stories.ts +100 -0
- package/src/modules/dx/icon/icon.ts +85 -0
- package/src/modules/dx/iconBadge/__tests__/iconBadge.test.ts +17 -0
- package/src/modules/dx/iconBadge/iconBadge.css +40 -0
- package/src/modules/dx/iconBadge/iconBadge.html +10 -0
- package/src/modules/dx/iconBadge/iconBadge.stories.ts +32 -0
- package/src/modules/dx/iconBadge/iconBadge.ts +42 -0
- package/src/modules/dx/imageAndLabel/__tests__/imageAndLabel.test.ts +39 -0
- package/src/modules/dx/imageAndLabel/__tests__/mockProps.ts +6 -0
- package/src/modules/dx/imageAndLabel/imageAndLabel.css +54 -0
- package/src/modules/dx/imageAndLabel/imageAndLabel.html +22 -0
- package/src/modules/dx/imageAndLabel/imageAndLabel.stories.ts +48 -0
- package/src/modules/dx/imageAndLabel/imageAndLabel.ts +16 -0
- package/src/modules/dx/input/__tests__/input.test.ts +357 -0
- package/src/modules/dx/input/input.css +165 -0
- package/src/modules/dx/input/input.html +58 -0
- package/src/modules/dx/input/input.stories.ts +102 -0
- package/src/modules/dx/input/input.ts +238 -0
- package/src/modules/dx/input/validators.ts +5 -0
- package/src/modules/dx/instrumentation/__tests__/instrumentation.test.ts +86 -0
- package/src/modules/dx/instrumentation/instrumentation.html +1 -0
- package/src/modules/dx/instrumentation/instrumentation.ts +116 -0
- package/src/modules/dx/interactiveImage/__tests__/interactiveImage.test.ts +83 -0
- package/src/modules/dx/interactiveImage/__tests__/mockProps.ts +39 -0
- package/src/modules/dx/interactiveImage/interactiveImage.css +59 -0
- package/src/modules/dx/interactiveImage/interactiveImage.html +32 -0
- package/src/modules/dx/interactiveImage/interactiveImage.stories.ts +31 -0
- package/src/modules/dx/interactiveImage/interactiveImage.ts +71 -0
- package/src/modules/dx/lazy/__tests__/lazy.test.ts +43 -0
- package/src/modules/dx/lazy/lazy.html +5 -0
- package/src/modules/dx/lazy/lazy.stories.ts +132 -0
- package/src/modules/dx/lazy/lazy.ts +163 -0
- package/src/modules/dx/logo/logo.css +33 -0
- package/src/modules/dx/logo/logo.html +6 -0
- package/src/modules/dx/logo/logo.ts +8 -0
- package/src/modules/dx/newsletterForm/newsletterForm.css +73 -0
- package/src/modules/dx/newsletterForm/newsletterForm.html +73 -0
- package/src/modules/dx/newsletterForm/newsletterForm.ts +238 -0
- package/src/modules/dx/pagination/__tests__/pagination.test.ts +121 -0
- package/src/modules/dx/pagination/pagination.css +51 -0
- package/src/modules/dx/pagination/pagination.html +45 -0
- package/src/modules/dx/pagination/pagination.stories.ts +88 -0
- package/src/modules/dx/pagination/pagination.ts +93 -0
- package/src/modules/dx/podcastHost/__tests__/mockProps.ts +8 -0
- package/src/modules/dx/podcastHost/__tests__/podcastHost.test.ts +21 -0
- package/src/modules/dx/podcastHost/podcastHost.css +62 -0
- package/src/modules/dx/podcastHost/podcastHost.html +28 -0
- package/src/modules/dx/podcastHost/podcastHost.stories.ts +17 -0
- package/src/modules/dx/podcastHost/podcastHost.ts +13 -0
- package/src/modules/dx/podcastPlayer/__tests__/podcastPlayer.test.ts +20 -0
- package/src/modules/dx/podcastPlayer/podcastPlayer.css +10 -0
- package/src/modules/dx/podcastPlayer/podcastPlayer.html +3 -0
- package/src/modules/dx/podcastPlayer/podcastPlayer.stories.ts +13 -0
- package/src/modules/dx/podcastPlayer/podcastPlayer.ts +5 -0
- package/src/modules/dx/podcastSubscription/__tests__/podcastSubscription.test.ts +16 -0
- package/src/modules/dx/podcastSubscription/podcastSubscription.css +91 -0
- package/src/modules/dx/podcastSubscription/podcastSubscription.html +24 -0
- package/src/modules/dx/podcastSubscription/podcastSubscription.stories.ts +23 -0
- package/src/modules/dx/podcastSubscription/podcastSubscription.ts +58 -0
- package/src/modules/dx/popover/__tests__/mockProps.ts +8 -0
- package/src/modules/dx/popover/__tests__/popover.test.ts +313 -0
- package/src/modules/dx/popover/popover.css +63 -0
- package/src/modules/dx/popover/popover.html +16 -0
- package/src/modules/dx/popover/popover.stories.ts +82 -0
- package/src/modules/dx/popover/popover.ts +313 -0
- package/src/modules/dx/radioGroup/__tests__/mockProps.ts +12 -0
- package/src/modules/dx/radioGroup/__tests__/radioGroup.test.ts +42 -0
- package/src/modules/dx/radioGroup/radioGroup.css +12 -0
- package/src/modules/dx/radioGroup/radioGroup.html +16 -0
- package/src/modules/dx/radioGroup/radioGroup.stories.ts +25 -0
- package/src/modules/dx/radioGroup/radioGroup.ts +65 -0
- package/src/modules/dx/relativeDateTime/__tests__/mockProps.ts +55 -0
- package/src/modules/dx/relativeDateTime/__tests__/relativeDateTime.test.ts +52 -0
- package/src/modules/dx/relativeDateTime/relativeDateTime.html +3 -0
- package/src/modules/dx/relativeDateTime/relativeDateTime.stories.ts +83 -0
- package/src/modules/dx/relativeDateTime/relativeDateTime.ts +113 -0
- package/src/modules/dx/searchResults/coveo.css +18989 -0
- package/src/modules/dx/searchResults/searchResults.css +387 -0
- package/src/modules/dx/searchResults/searchResults.html +104 -0
- package/src/modules/dx/searchResults/searchResults.stories.ts +36 -0
- package/src/modules/dx/searchResults/searchResults.ts +186 -0
- package/src/modules/dx/section/__tests__/section.test.ts +17 -0
- package/src/modules/dx/section/section.css +130 -0
- package/src/modules/dx/section/section.html +66 -0
- package/src/modules/dx/section/section.stories.ts +381 -0
- package/src/modules/dx/section/section.ts +41 -0
- package/src/modules/dx/sectionSignup/__tests__/sectionSignup.test.ts +66 -0
- package/src/modules/dx/sectionSignup/sectionSignup.css +43 -0
- package/src/modules/dx/sectionSignup/sectionSignup.html +23 -0
- package/src/modules/dx/sectionSignup/sectionSignup.stories.ts +49 -0
- package/src/modules/dx/sectionSignup/sectionSignup.ts +44 -0
- package/src/modules/dx/select/select.css +44 -0
- package/src/modules/dx/select/select.html +60 -0
- package/src/modules/dx/select/select.stories.ts +59 -0
- package/src/modules/dx/select/select.ts +23 -0
- package/src/modules/dx/sidebar/__tests__/mockProps.ts +181 -0
- package/src/modules/dx/sidebar/__tests__/mockSearchChangeEmptyEvent.ts +6 -0
- package/src/modules/dx/sidebar/__tests__/mockSearchChangeEvent.ts +527 -0
- package/src/modules/dx/sidebar/__tests__/sidebar.test.ts +568 -0
- package/src/modules/dx/sidebar/sidebar.css +192 -0
- package/src/modules/dx/sidebar/sidebar.html +94 -0
- package/src/modules/dx/sidebar/sidebar.stories.ts +188 -0
- package/src/modules/dx/sidebar/sidebar.ts +255 -0
- package/src/modules/dx/sidebarOld/__tests__/mockProps.ts +178 -0
- package/src/modules/dx/sidebarOld/__tests__/sidebarOld.test.ts +570 -0
- package/src/modules/dx/sidebarOld/sidebarOld.css +160 -0
- package/src/modules/dx/sidebarOld/sidebarOld.html +70 -0
- package/src/modules/dx/sidebarOld/sidebarOld.stories.ts +139 -0
- package/src/modules/dx/sidebarOld/sidebarOld.ts +187 -0
- package/src/modules/dx/sidebarSearch/__tests__/mockPreloadedState.ts +1686 -0
- package/src/modules/dx/sidebarSearch/__tests__/sidebarSearch.test.ts +175 -0
- package/src/modules/dx/sidebarSearch/sidebarSearch.css +3 -0
- package/src/modules/dx/sidebarSearch/sidebarSearch.html +26 -0
- package/src/modules/dx/sidebarSearch/sidebarSearch.ts +440 -0
- package/src/modules/dx/sidebarSearchResult/__tests__/sidebarSearchResult.test.ts +96 -0
- package/src/modules/dx/sidebarSearchResult/sidebarSearchResult.css +36 -0
- package/src/modules/dx/sidebarSearchResult/sidebarSearchResult.html +14 -0
- package/src/modules/dx/sidebarSearchResult/sidebarSearchResult.ts +70 -0
- package/src/modules/dx/skipNavLink/skipNavLink.css +21 -0
- package/src/modules/dx/skipNavLink/skipNavLink.html +3 -0
- package/src/modules/dx/skipNavLink/skipNavLink.ts +3 -0
- package/src/modules/dx/slackCta/__tests__/slackCta.test.ts +36 -0
- package/src/modules/dx/slackCta/slackCta.css +47 -0
- package/src/modules/dx/slackCta/slackCta.html +17 -0
- package/src/modules/dx/slackCta/slackCta.stories.ts +25 -0
- package/src/modules/dx/slackCta/slackCta.ts +12 -0
- package/src/modules/dx/socials/__tests__/socials.test.ts +114 -0
- package/src/modules/dx/socials/socials.css +35 -0
- package/src/modules/dx/socials/socials.html +22 -0
- package/src/modules/dx/socials/socials.stories.ts +24 -0
- package/src/modules/dx/socials/socials.ts +81 -0
- package/src/modules/dx/spinner/__tests__/spinner.test.ts +37 -0
- package/src/modules/dx/spinner/spinner.css +750 -0
- package/src/modules/dx/spinner/spinner.html +6 -0
- package/src/modules/dx/spinner/spinner.stories.ts +69 -0
- package/src/modules/dx/spinner/spinner.ts +20 -0
- package/src/modules/dx/tab/__tests__/tab.test.ts +129 -0
- package/src/modules/dx/tab/tab.css +106 -0
- package/src/modules/dx/tab/tab.html +13 -0
- package/src/modules/dx/tab/tab.stories.ts +57 -0
- package/src/modules/dx/tab/tab.ts +52 -0
- package/src/modules/dx/toc/__tests__/mockProps.ts +28 -0
- package/src/modules/dx/toc/__tests__/toc.test.ts +109 -0
- package/src/modules/dx/toc/toc.css +94 -0
- package/src/modules/dx/toc/toc.html +28 -0
- package/src/modules/dx/toc/toc.stories.ts +26 -0
- package/src/modules/dx/toc/toc.ts +77 -0
- package/src/modules/dx/tooltip/__tests__/tooltip.test.ts +22 -0
- package/src/modules/dx/tooltip/microtip.css +269 -0
- package/src/modules/dx/tooltip/tooltip.css +36 -0
- package/src/modules/dx/tooltip/tooltip.html +5 -0
- package/src/modules/dx/tooltip/tooltip.stories.ts +46 -0
- package/src/modules/dx/tooltip/tooltip.ts +6 -0
- package/src/modules/dx/topics/__tests__/mockProps.ts +3 -0
- package/src/modules/dx/topics/__tests__/topics.test.ts +31 -0
- package/src/modules/dx/topics/topics.css +25 -0
- package/src/modules/dx/topics/topics.html +12 -0
- package/src/modules/dx/topics/topics.ts +25 -0
- package/src/modules/dx/tree/__tests__/mockProps.ts +215 -0
- package/src/modules/dx/tree/__tests__/tree.test.ts +346 -0
- package/src/modules/dx/tree/__tests__/treeHandler.test.ts +194 -0
- package/src/modules/dx/tree/tree.css +5 -0
- package/src/modules/dx/tree/tree.html +11 -0
- package/src/modules/dx/tree/tree.stories.ts +65 -0
- package/src/modules/dx/tree/tree.ts +72 -0
- package/src/modules/dx/tree/treeHandler.ts +100 -0
- package/src/modules/dx/treeItem/__tests__/mockProps.ts +46 -0
- package/src/modules/dx/treeItem/__tests__/treeItem.test.ts +377 -0
- package/src/modules/dx/treeItem/treeItem.css +14 -0
- package/src/modules/dx/treeItem/treeItem.html +22 -0
- package/src/modules/dx/treeItem/treeItem.ts +110 -0
- package/src/modules/dx/treeTile/__tests__/mockProps.ts +16 -0
- package/src/modules/dx/treeTile/__tests__/treeTile.test.ts +168 -0
- package/src/modules/dx/treeTile/treeTile.css +190 -0
- package/src/modules/dx/treeTile/treeTile.html +27 -0
- package/src/modules/dx/treeTile/treeTile.ts +59 -0
- package/src/modules/dx/typeBadge/__tests__/typeBadge.test.ts +77 -0
- package/src/modules/dx/typeBadge/typeBadge.css +74 -0
- package/src/modules/dx/typeBadge/typeBadge.html +5 -0
- package/src/modules/dx/typeBadge/typeBadge.stories.ts +114 -0
- package/src/modules/dx/typeBadge/typeBadge.ts +65 -0
- package/src/modules/dx/typeBadgeGroup/__tests__/mockProps.ts +11 -0
- package/src/modules/dx/typeBadgeGroup/__tests__/typeBadgeGroup.test.ts +72 -0
- package/src/modules/dx/typeBadgeGroup/typeBadgeGroup.css +12 -0
- package/src/modules/dx/typeBadgeGroup/typeBadgeGroup.html +11 -0
- package/src/modules/dx/typeBadgeGroup/typeBadgeGroup.stories.ts +19 -0
- package/src/modules/dx/typeBadgeGroup/typeBadgeGroup.ts +18 -0
- package/src/modules/helpers/animations/animations.css +15 -0
- package/src/modules/helpers/button/button.css +4 -0
- package/src/modules/helpers/card/card.css +258 -0
- package/src/modules/helpers/code/code.css +296 -0
- package/src/modules/helpers/commonHeader/commonHeader.css +130 -0
- package/src/modules/helpers/reset/reset.css +559 -0
- package/src/modules/helpers/sidebar/sidebar.css +21 -0
- package/src/modules/helpers/slds/slds.css +191 -0
- package/src/modules/helpers/table/table.css +110 -0
- package/src/modules/helpers/text/text.css +163 -0
- package/src/modules/test-components/buttonTest/buttonTest.html +3 -0
- package/src/modules/test-components/buttonTest/buttonTest.ts +3 -0
- package/src/modules/test-components/codeBlockTest/codeBlockTest.js +4 -0
- package/src/modules/test-components/featureGridTest/featureGridTest.html +7 -0
- package/src/modules/test-components/featureGridTest/featureGridTest.ts +5 -0
- package/src/modules/test-components/instrumentationTest/instrumentationTest.html +4 -0
- package/src/modules/test-components/instrumentationTest/instrumentationTest.ts +8 -0
- package/src/modules/test-components/popoverTest/popoverTest.html +6 -0
- package/src/modules/test-components/popoverTest/popoverTest.ts +5 -0
- package/src/modules/test-components/slackCtaTest/slackCtaTest.html +3 -0
- package/src/modules/test-components/slackCtaTest/slackCtaTest.ts +3 -0
- package/src/modules/utils/highlight/__tests__/highlight.test.ts +108 -0
- package/src/modules/utils/highlight/__tests__/mockProps.ts +45 -0
- package/src/modules/utils/highlight/highlight.ts +32 -0
- package/src/modules/utils/normalizers/normalizers.ts +91 -0
- package/src/modules/utils-internal/archiveCard/archiveCard.ts +35 -0
- package/src/modules/utils-internal/coveo/coveo.ts +70 -0
- package/src/modules/utils-internal/css/css.ts +43 -0
- package/src/modules/utils-internal/devices/devices.ts +1 -0
- package/src/modules/utils-internal/headerBase/headerBase.ts +204 -0
- package/src/modules/utils-internal/jest/jest.ts +58 -0
- package/src/modules/utils-internal/options/options.ts +39 -0
- package/src/modules/utils-internal/prismjs/prismjs.html +3 -0
- package/src/modules/utils-internal/prismjs/prismjs.ts +3321 -0
- package/src/modules/utils-internal/recentSearches/__tests__/recentSearches.test.ts +83 -0
- package/src/modules/utils-internal/recentSearches/recentSearches.ts +57 -0
- package/src/modules/utils-internal/regexps/regexps.ts +5 -0
- package/src/modules/utils-internal/seo/seo.ts +4 -0
- package/src/modules/utils-internal/slot/slot.ts +17 -0
- package/src/modules/utils-internal/storybook/storybook.ts +32 -0
- package/src/modules/utils-internal/tests/tests.ts +38 -0
- package/src/modules/utils-internal/wordpress/__tests__/wordpress.test.ts +15 -0
- package/src/modules/utils-internal/wordpress/wordpress.ts +13 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="454px" height="151px" viewBox="0 0 454 151" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Group 6</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
|
|
6
|
+
<stop stop-color="#F452FF" offset="0%"></stop>
|
|
7
|
+
<stop stop-color="#832BC1" offset="100%"></stop>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
</defs>
|
|
10
|
+
<g id="Salesforce-Developers" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
11
|
+
<g id="Podcast-[Mobile]" transform="translate(44.000000, -1972.000000)">
|
|
12
|
+
<g id="Group-2" transform="translate(-43.000000, 1894.000000)">
|
|
13
|
+
<g id="Group-3" opacity="0.979999959">
|
|
14
|
+
<g id="Group-6" transform="translate(0.000000, 79.883800)">
|
|
15
|
+
<path d="M101.446349,54.7755567 L100.015496,58.6421159 C99.9138281,58.9187749 99.6954917,59.1362689 99.4188212,59.2379327 L95.5529342,60.6695596 C94.6737553,60.9945506 94.6737553,62.2378494 95.5529342,62.5636737 L99.4188212,63.9944673 C99.6954917,64.0961311 99.9138281,64.3136251 100.015496,64.5902841 L101.446349,68.4568433 C101.772187,69.3359856 103.015538,69.3359856 103.340542,68.4568433 L104.771396,64.5902841 C104.873064,64.3136251 105.0914,64.0961311 105.36807,63.9944673 L109.234791,62.5636737 C110.113136,62.2378494 110.113136,60.9945506 109.234791,60.6695596 L105.36807,59.2379327 C105.0914,59.1362689 104.873064,58.9187749 104.771396,58.6421159 L103.340542,54.7755567 C103.015538,53.8964144 101.772187,53.8964144 101.446349,54.7755567 Z" id="Stroke-59" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
16
|
+
<g id="Group-32-Copy-2" transform="translate(341.000000, 0.000000)">
|
|
17
|
+
<path d="M71.89355,30.1162 L31.9027797,30.1162 C27.7104009,30.1162 24.3133901,33.4747 24.3133901,37.6162 C24.3133901,41.75845 27.7104009,45.1162 31.9027797,45.1162 L44.0458029,45.1162 C48.2366639,45.1162 51.6351925,48.4747 51.6351925,52.6162 C51.6351925,56.75845 48.2366639,60.1162 44.0458029,60.1162 L17.4829395,60.1162 C13.2905608,60.1162 9.89355,63.4747 9.89355,67.6162 C9.89355,71.75845 13.2905608,75.1162 17.4829395,75.1162 L46.8280732,75.1162" id="Stroke-1" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
18
|
+
<path d="M64.89355,75.1162 L80.943196,75.1162 C85.0778423,75.1162 88.4307845,71.75845 88.4307845,67.6162 C88.4307845,63.4747 85.0778423,60.1162 80.943196,60.1162 L74.2043663,60.1162 C70.0682224,60.1162 66.7167778,56.75845 66.7167778,52.6162 C66.7167778,48.4747 70.0682224,45.1162 74.2043663,45.1162 L103.405961,45.1162 C107.540608,45.1162 110.89355,41.75845 110.89355,37.6162 C110.89355,33.4747 107.540608,30.1162 103.405961,30.1162 L97.04226,30.1162" id="Stroke-3" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
19
|
+
<path d="M8.44071981,5.1162 C4.27241792,5.1162 0.89355,8.4747 0.89355,12.6162 C0.89355,16.75845 4.27241792,20.1162 8.44071981,20.1162 L33.3463802,20.1162 C37.5139274,20.1162 40.89355,16.75845 40.89355,12.6162 C40.89355,8.4747 37.5139274,5.1162 33.3463802,5.1162 L29.5705311,5.1162" id="Stroke-5" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
20
|
+
<path d="M18.6989661,0.599546819 L17.6498248,3.4353268 C17.5749899,3.63803821 17.4151484,3.79715576 17.2124404,3.87271844 L14.3774338,4.92187711 C13.7322554,5.16019016 13.7322554,6.0720282 14.3774338,6.31034125 L17.2124404,7.36022649 C17.4151484,7.4350626 17.5749899,7.59490672 17.6498248,7.79761812 L18.6989661,10.6333981 C18.9372752,11.277134 19.8490982,11.277134 20.0881339,10.6333981 L21.1365487,7.79761812 C21.2121101,7.59490672 21.3719516,7.4350626 21.5746596,7.36022649 L24.4096662,6.31034125 C25.0548446,6.0720282 25.0548446,5.16019016 24.4096662,4.92187711 L21.5746596,3.87271844 C21.3719516,3.79715576 21.2121101,3.63803821 21.1365487,3.4353268 L20.0881339,0.599546819 C19.8490982,-0.0449156063 18.9372752,-0.0449156063 18.6989661,0.599546819 Z" id="Stroke-19" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
21
|
+
<path d="M91.89355,30.6162 C91.89355,34.75845 88.53505,38.1162 84.39355,38.1162 C80.25205,38.1162 76.89355,34.75845 76.89355,30.6162 C76.89355,26.4747 80.25205,23.1162 84.39355,23.1162 C88.53505,23.1162 91.89355,26.4747 91.89355,30.6162 Z" id="Stroke-21" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
22
|
+
<line x1="63.89355" y1="12.6162" x2="77.89355" y2="12.6162" id="Stroke-25" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
23
|
+
<line x1="53.89355" y1="12.6162" x2="57.89355" y2="12.6162" id="Stroke-27" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
24
|
+
<line x1="25.89355" y1="51.6162" x2="33.89355" y2="51.6162" id="Stroke-33" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
25
|
+
<path d="M38.89355,52.1162 C38.89355,52.6692 38.44555,53.1162 37.89355,53.1162 C37.34055,53.1162 36.89355,52.6692 36.89355,52.1162 C36.89355,51.5642 37.34055,51.1162 37.89355,51.1162 C38.44555,51.1162 38.89355,51.5642 38.89355,52.1162" id="Fill-35" fill="#8FD0FE"></path>
|
|
26
|
+
<path d="M9.89355,38.1162 C9.89355,39.221 8.99835,40.1162 7.89355,40.1162 C6.78875,40.1162 5.89355,39.221 5.89355,38.1162 C5.89355,37.0114 6.78875,36.1162 7.89355,36.1162 C8.99835,36.1162 9.89355,37.0114 9.89355,38.1162" id="Fill-41" fill="#8FD0FE"></path>
|
|
27
|
+
<line x1="56.39355" y1="77.1162" x2="56.39355" y2="71.1162" id="Stroke-49" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
28
|
+
<line x1="58.89355" y1="74.6157" x2="52.89355" y2="74.6167" id="Stroke-51" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
29
|
+
</g>
|
|
30
|
+
<g id="Group-32-Copy-3" transform="translate(0.000000, 70.000000)">
|
|
31
|
+
<path d="M71.89355,30.1162 L31.9027797,30.1162 C27.7104009,30.1162 24.3133901,33.4747 24.3133901,37.6162 C24.3133901,41.75845 27.7104009,45.1162 31.9027797,45.1162 L44.0458029,45.1162 C48.2366639,45.1162 51.6351925,48.4747 51.6351925,52.6162 C51.6351925,56.75845 48.2366639,60.1162 44.0458029,60.1162 L17.4829395,60.1162 C13.2905608,60.1162 9.89355,63.4747 9.89355,67.6162 C9.89355,71.75845 13.2905608,75.1162 17.4829395,75.1162 L46.8280732,75.1162" id="Stroke-1" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
32
|
+
<path d="M64.89355,75.1162 L80.943196,75.1162 C85.0778423,75.1162 88.4307845,71.75845 88.4307845,67.6162 C88.4307845,63.4747 85.0778423,60.1162 80.943196,60.1162 L74.2043663,60.1162 C70.0682224,60.1162 66.7167778,56.75845 66.7167778,52.6162 C66.7167778,48.4747 70.0682224,45.1162 74.2043663,45.1162 L103.405961,45.1162 C107.540608,45.1162 110.89355,41.75845 110.89355,37.6162 C110.89355,33.4747 107.540608,30.1162 103.405961,30.1162 L97.04226,30.1162" id="Stroke-3" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
33
|
+
<path d="M8.44071981,5.1162 C4.27241792,5.1162 0.89355,8.4747 0.89355,12.6162 C0.89355,16.75845 4.27241792,20.1162 8.44071981,20.1162 L33.3463802,20.1162 C37.5139274,20.1162 40.89355,16.75845 40.89355,12.6162 C40.89355,8.4747 37.5139274,5.1162 33.3463802,5.1162 L29.5705311,5.1162" id="Stroke-5" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
34
|
+
<path d="M18.6989661,0.599546819 L17.6498248,3.4353268 C17.5749899,3.63803821 17.4151484,3.79715576 17.2124404,3.87271844 L14.3774338,4.92187711 C13.7322554,5.16019016 13.7322554,6.0720282 14.3774338,6.31034125 L17.2124404,7.36022649 C17.4151484,7.4350626 17.5749899,7.59490672 17.6498248,7.79761812 L18.6989661,10.6333981 C18.9372752,11.277134 19.8490982,11.277134 20.0881339,10.6333981 L21.1365487,7.79761812 C21.2121101,7.59490672 21.3719516,7.4350626 21.5746596,7.36022649 L24.4096662,6.31034125 C25.0548446,6.0720282 25.0548446,5.16019016 24.4096662,4.92187711 L21.5746596,3.87271844 C21.3719516,3.79715576 21.2121101,3.63803821 21.1365487,3.4353268 L20.0881339,0.599546819 C19.8490982,-0.0449156063 18.9372752,-0.0449156063 18.6989661,0.599546819 Z" id="Stroke-19" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
35
|
+
<path d="M91.89355,30.6162 C91.89355,34.75845 88.53505,38.1162 84.39355,38.1162 C80.25205,38.1162 76.89355,34.75845 76.89355,30.6162 C76.89355,26.4747 80.25205,23.1162 84.39355,23.1162 C88.53505,23.1162 91.89355,26.4747 91.89355,30.6162 Z" id="Stroke-21" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
36
|
+
<line x1="63.89355" y1="12.6162" x2="77.89355" y2="12.6162" id="Stroke-25" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
37
|
+
<line x1="53.89355" y1="12.6162" x2="57.89355" y2="12.6162" id="Stroke-27" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
38
|
+
<line x1="25.89355" y1="51.6162" x2="33.89355" y2="51.6162" id="Stroke-33" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
39
|
+
<path d="M38.89355,52.1162 C38.89355,52.6692 38.44555,53.1162 37.89355,53.1162 C37.34055,53.1162 36.89355,52.6692 36.89355,52.1162 C36.89355,51.5642 37.34055,51.1162 37.89355,51.1162 C38.44555,51.1162 38.89355,51.5642 38.89355,52.1162" id="Fill-35" fill="#8FD0FE"></path>
|
|
40
|
+
<path d="M9.89355,38.1162 C9.89355,39.221 8.99835,40.1162 7.89355,40.1162 C6.78875,40.1162 5.89355,39.221 5.89355,38.1162 C5.89355,37.0114 6.78875,36.1162 7.89355,36.1162 C8.99835,36.1162 9.89355,37.0114 9.89355,38.1162" id="Fill-41" fill="#8FD0FE"></path>
|
|
41
|
+
<line x1="56.39355" y1="77.1162" x2="56.39355" y2="71.1162" id="Stroke-49" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
42
|
+
<line x1="58.89355" y1="74.6157" x2="52.89355" y2="74.6167" id="Stroke-51" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
43
|
+
</g>
|
|
44
|
+
</g>
|
|
45
|
+
</g>
|
|
46
|
+
</g>
|
|
47
|
+
</g>
|
|
48
|
+
</g>
|
|
49
|
+
</svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="844px" height="226px" viewBox="0 0 844 226" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Group 5</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
|
|
6
|
+
<stop stop-color="#F452FF" offset="0%"></stop>
|
|
7
|
+
<stop stop-color="#832BC1" offset="100%"></stop>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
</defs>
|
|
10
|
+
<g id="Salesforce-Developers" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
11
|
+
<g id="Podcast" transform="translate(-298.000000, -2068.000000)">
|
|
12
|
+
<g id="Group-10" transform="translate(0.000000, 952.000000)">
|
|
13
|
+
<g id="Group-6" transform="translate(53.000000, 1088.000000)"></g>
|
|
14
|
+
</g>
|
|
15
|
+
<g id="Group-5" transform="translate(299.000000, 2069.000000)">
|
|
16
|
+
<g id="Group-2">
|
|
17
|
+
<path d="M632.8076,14.14675 L631.6626,17.24075 C631.5806,17.46075 631.4076,17.63575 631.1856,17.71675 L628.0926,18.86175 C627.3896,19.12275 627.3896,20.11675 628.0926,20.37675 L631.1856,21.52175 C631.4076,21.60375 631.5806,21.77775 631.6626,21.99975 L632.8076,25.09175 C633.0686,25.79475 634.0626,25.79475 634.3236,25.09175 L635.4676,21.99975 C635.5496,21.77775 635.7236,21.60375 635.9446,21.52175 L639.0376,20.37675 C639.7416,20.11675 639.7416,19.12275 639.0376,18.86175 L635.9446,17.71675 C635.7236,17.63575 635.5496,17.46075 635.4676,17.24075 L634.3236,14.14675 C634.0626,13.44375 633.0686,13.44375 632.8076,14.14675 Z" id="Stroke-17" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
18
|
+
<path d="M100.8076,75.14675 L99.6626,78.24075 C99.5806,78.46075 99.4076,78.63575 99.1856,78.71675 L96.0926,79.86175 C95.3896,80.12275 95.3896,81.11675 96.0926,81.37675 L99.1856,82.52175 C99.4076,82.60375 99.5806,82.77775 99.6626,82.99975 L100.8076,86.09175 C101.0686,86.79475 102.0626,86.79475 102.3236,86.09175 L103.4676,82.99975 C103.5496,82.77775 103.7236,82.60375 103.9446,82.52175 L107.0376,81.37675 C107.7416,81.11675 107.7416,80.12275 107.0376,79.86175 L103.9446,78.71675 C103.7236,78.63575 103.5496,78.46075 103.4676,78.24075 L102.3236,75.14675 C102.0626,74.44375 101.0686,74.44375 100.8076,75.14675 Z" id="Stroke-17-Copy" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
19
|
+
<path d="M681.4404,0.79125 L679.7234,5.43125 C679.6014,5.76325 679.3394,6.02425 679.0074,6.14625 L674.3684,7.86425 C673.3134,8.25425 673.3134,9.74625 674.3684,10.13725 L679.0074,11.85425 C679.3394,11.97625 679.6014,12.23725 679.7234,12.56925 L681.4404,17.20925 C681.8314,18.26425 683.3234,18.26425 683.7134,17.20925 L685.4304,12.56925 C685.5524,12.23725 685.8144,11.97625 686.1464,11.85425 L690.7864,10.13725 C691.8404,9.74625 691.8404,8.25425 690.7864,7.86425 L686.1464,6.14625 C685.8144,6.02425 685.5524,5.76325 685.4304,5.43125 L683.7134,0.79125 C683.3234,-0.26375 681.8314,-0.26375 681.4404,0.79125 Z" id="Stroke-59" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
20
|
+
<g id="Group-33" transform="translate(0.000000, 113.487550)">
|
|
21
|
+
<path d="M60.707,10.0029 L52.33,10.0029 C46.807,10.0029 42.33,14.4809 42.33,20.0029 C42.33,25.5259 46.807,30.0029 52.33,30.0029 L58.395,30.0029" id="Stroke-7" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></path>
|
|
22
|
+
<path d="M103.9726,30.0029 L105.6976,30.0029 C111.2196,30.0029 115.6976,25.5259 115.6976,20.0029 C115.6976,14.4809 111.2196,10.0029 105.6976,10.0029 L91.5876,10.0029" id="Stroke-9" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></path>
|
|
23
|
+
<path d="M95.3915,35.1768 C97.0955,32.0978 100.3775,30.0128 104.1465,30.0128" id="Stroke-11" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></path>
|
|
24
|
+
<path d="M47.9179,85.5821 C46.3369,87.9301 43.7839,89.5691 40.8369,89.9301 L35.3199,89.9301 C29.7979,89.9301 25.3209,94.4071 25.3209,99.9301 C25.3209,105.4521 29.7979,109.9301 35.3199,109.9301 L88.5679,109.9301 C94.0919,109.9301 98.5679,105.4521 98.5679,99.9301 C98.5679,94.4071 94.0919,89.9301 88.5679,89.9301 L78.2819,89.9301 C73.3369,89.3261 69.5039,85.1201 69.5039,80.0121 C69.5039,74.4901 73.9789,70.0151 79.4999,70.0121 L141.3659,70.0121 C146.8899,70.0121 151.3659,65.5351 151.3659,60.0121 C151.3659,54.4891 146.8899,50.0121 141.3659,50.0121 L104.1409,50.0121 C100.2659,50.0101 96.9059,47.8041 95.2479,44.5791 C94.5439,43.2101 94.1469,41.6571 94.1469,40.0131" id="Stroke-13" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></path>
|
|
25
|
+
<path d="M64.082,30.0127 C69.605,30.0127 74.082,34.4897 74.082,40.0127 C74.082,45.5337 69.608,50.0087 64.088,50.0117 L10,50.0117 C4.477,50.0117 1.70530257e-13,54.4897 1.70530257e-13,60.0117 C1.70530257e-13,65.5347 4.477,70.0117 10,70.0117 L39.619,70.0117 C45.14,70.0147 49.614,74.4907 49.614,80.0117" id="Stroke-15" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></path>
|
|
26
|
+
<path d="M86.8417,10 C86.8417,15.522 82.3637,20 76.8417,20 C71.3187,20 66.8417,15.522 66.8417,10 C66.8417,4.478 71.3187,0 76.8417,0 C82.3637,0 86.8417,4.478 86.8417,10 Z" id="Stroke-23" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
27
|
+
<line x1="104.1933" y1="39.75" x2="89.5503" y2="39.75" id="Stroke-29" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
28
|
+
<line x1="113.6611" y1="39.75" x2="111.4431" y2="39.75" id="Stroke-31" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
29
|
+
<line x1="38.579" y1="80.0996" x2="54.275" y2="80.0996" id="Stroke-37" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
30
|
+
<path d="M60.2753,80.0996 C60.2753,80.6526 59.8283,81.0996 59.2753,81.0996 C58.7233,81.0996 58.2753,80.6526 58.2753,80.0996 C58.2753,79.5476 58.7233,79.0996 59.2753,79.0996 C59.8283,79.0996 60.2753,79.5476 60.2753,80.0996" id="Fill-39" fill="#8FD0FE"></path>
|
|
31
|
+
<path d="M10.8359,99.834 C10.8359,101.215 9.7169,102.334 8.3359,102.334 C6.9549,102.334 5.8359,101.215 5.8359,99.834 C5.8359,98.453 6.9549,97.334 8.3359,97.334 C9.7169,97.334 10.8359,98.453 10.8359,99.834" id="Fill-43" fill="#8FD0FE"></path>
|
|
32
|
+
<line x1="33.2441" y1="43.7666" x2="33.2441" y2="35.7906" id="Stroke-45" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
33
|
+
<line x1="37.2304" y1="39.7803" x2="29.2484" y2="39.7813" id="Stroke-47" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
34
|
+
</g>
|
|
35
|
+
<g id="Group-32-Copy" transform="translate(695.683600, 42.883800)">
|
|
36
|
+
<path d="M94.6933,40.04905 L42.0003,40.04905 C36.4763,40.04905 32.0003,44.52705 32.0003,50.04905 C32.0003,55.57205 36.4763,60.04905 42.0003,60.04905 L58.0003,60.04905 C63.5223,60.04905 68.0003,64.52705 68.0003,70.04905 C68.0003,75.57205 63.5223,80.04905 58.0003,80.04905 L23.0003,80.04905 C17.4763,80.04905 13.0003,84.52705 13.0003,90.04905 C13.0003,95.57205 17.4763,100.04905 23.0003,100.04905 L61.6663,100.04905" id="Stroke-1" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
37
|
+
<path d="M84.5654,100.04905 L106.0004,100.04905 C111.5224,100.04905 116.0004,95.57205 116.0004,90.04905 C116.0004,84.52705 111.5224,80.04905 106.0004,80.04905 L97.0004,80.04905 C91.4764,80.04905 87.0004,75.57205 87.0004,70.04905 C87.0004,64.52705 91.4764,60.04905 97.0004,60.04905 L136.0004,60.04905 C141.5224,60.04905 146.0004,55.57205 146.0004,50.04905 C146.0004,44.52705 141.5224,40.04905 136.0004,40.04905 L127.5014,40.04905" id="Stroke-3" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
38
|
+
<path d="M10,7.04905 C4.477,7.04905 0,11.52705 0,17.04905 C0,22.57205 4.477,27.04905 10,27.04905 L43,27.04905 C48.522,27.04905 53,22.57205 53,17.04905 C53,11.52705 48.522,7.04905 43,7.04905 L37.997,7.04905" id="Stroke-5" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
39
|
+
<path d="M23.9101,0.66525 L22.4661,4.56825 C22.3631,4.84725 22.1431,5.06625 21.8641,5.17025 L17.9621,6.61425 C17.0741,6.94225 17.0741,8.19725 17.9621,8.52525 L21.8641,9.97025 C22.1431,10.07325 22.3631,10.29325 22.4661,10.57225 L23.9101,14.47525 C24.2381,15.36125 25.4931,15.36125 25.8221,14.47525 L27.2651,10.57225 C27.3691,10.29325 27.5891,10.07325 27.8681,9.97025 L31.7701,8.52525 C32.6581,8.19725 32.6581,6.94225 31.7701,6.61425 L27.8681,5.17025 C27.5891,5.06625 27.3691,4.84725 27.2651,4.56825 L25.8221,0.66525 C25.4931,-0.22175 24.2381,-0.22175 23.9101,0.66525 Z" id="Stroke-19" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
40
|
+
<path d="M120.8584,40.63795 C120.8584,46.16095 116.3804,50.63795 110.8584,50.63795 C105.3364,50.63795 100.8584,46.16095 100.8584,40.63795 C100.8584,35.11595 105.3364,30.63795 110.8584,30.63795 C116.3804,30.63795 120.8584,35.11595 120.8584,40.63795 Z" id="Stroke-21" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
41
|
+
<line x1="83.2441" y1="16.84005" x2="101.9941" y2="16.84005" id="Stroke-25" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
42
|
+
<line x1="70.9941" y1="16.84005" x2="75.9941" y2="16.84005" id="Stroke-27" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
43
|
+
<line x1="33.6113" y1="69.65745" x2="43.6113" y2="69.65745" id="Stroke-33" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round"></line>
|
|
44
|
+
<path d="M49.6113,69.65745 C49.6113,70.21045 49.1633,70.65745 48.6113,70.65745 C48.0583,70.65745 47.6113,70.21045 47.6113,69.65745 C47.6113,69.10545 48.0583,68.65745 48.6113,68.65745 C49.1633,68.65745 49.6113,69.10545 49.6113,69.65745" id="Fill-35" fill="#8FD0FE"></path>
|
|
45
|
+
<path d="M10.9921,50.36455 C10.9921,51.74555 9.8731,52.86455 8.4921,52.86455 C7.1111,52.86455 5.9921,51.74555 5.9921,50.36455 C5.9921,48.98355 7.1111,47.86455 8.4921,47.86455 C9.8731,47.86455 10.9921,48.98355 10.9921,50.36455" id="Fill-41" fill="#8FD0FE"></path>
|
|
46
|
+
<line x1="73.0654" y1="103.42505" x2="73.0654" y2="95.44905" id="Stroke-49" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
47
|
+
<line x1="77.0517" y1="99.43875" x2="69.0697" y2="99.43975" id="Stroke-51" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
48
|
+
</g>
|
|
49
|
+
<g id="Group-34" transform="translate(119.560900, 94.737150)" stroke="#8FD0FE" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
|
50
|
+
<line x1="3.9957" y1="7.976" x2="3.9957" y2="-1.70530257e-13" id="Stroke-81"></line>
|
|
51
|
+
<line x1="7.983" y1="3.9897" x2="8.52651283e-14" y2="3.9907" id="Stroke-83"></line>
|
|
52
|
+
</g>
|
|
53
|
+
</g>
|
|
54
|
+
</g>
|
|
55
|
+
</g>
|
|
56
|
+
</g>
|
|
57
|
+
</svg>
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
width="164.8566px" height="40px" viewBox="0 0 164.8566 40" enable-background="new 0 0 164.8566 40" xml:space="preserve">
|
|
5
|
+
<g id="US">
|
|
6
|
+
<path fill="#A6A6A6" d="M155.3273,0H9.5347C9.168,0,8.8057,0,8.4399,0.002C8.1338,0.0039,7.8301,0.0098,7.521,0.0146
|
|
7
|
+
C6.8555,0.0312,6.1816,0.0723,5.5171,0.1914c-0.6694,0.1172-1.2915,0.3174-1.9009,0.627C3.0176,1.125,2.4707,1.5234,1.9976,1.9971
|
|
8
|
+
C1.519,2.4707,1.1226,3.0195,0.8193,3.6182c-0.311,0.6084-0.5083,1.2334-0.625,1.9033c-0.1206,0.6621-0.1621,1.332-0.1792,2.002
|
|
9
|
+
C0.0059,7.8301,0.0049,8.1377,0,8.4443c0,0.3623,0,0.7256,0,1.0918v20.9287c0,0.3692,0,0.7305,0,1.0938
|
|
10
|
+
c0.0049,0.3105,0.0059,0.6113,0.0151,0.9219c0.0171,0.6699,0.0586,1.3398,0.1792,2.0019c0.1167,0.6699,0.314,1.2979,0.625,1.9043
|
|
11
|
+
c0.3032,0.5957,0.6997,1.1446,1.1782,1.6143c0.4731,0.4775,1.02,0.875,1.6187,1.1787c0.6094,0.3125,1.2314,0.5098,1.9009,0.6308
|
|
12
|
+
c0.6645,0.1192,1.3384,0.1583,2.0039,0.1768c0.3091,0.0068,0.6128,0.0107,0.9189,0.0107C8.8057,40,9.168,40,9.5347,40h145.7927
|
|
13
|
+
c0.3594,0,0.7246,0,1.084-0.002c0.3047,0,0.6172-0.0039,0.9219-0.0107c0.6699-0.0185,1.3418-0.0576,2-0.1768
|
|
14
|
+
c0.6699-0.121,1.2929-0.3183,1.9082-0.6308c0.5976-0.3037,1.1445-0.7012,1.6172-1.1787c0.4765-0.4697,0.873-1.0186,1.1816-1.6143
|
|
15
|
+
c0.3066-0.6064,0.5059-1.2344,0.6191-1.9043c0.1231-0.6621,0.1621-1.332,0.1856-2.0019c0.0039-0.3106,0.0039-0.6114,0.0039-0.9219
|
|
16
|
+
c0.0078-0.3633,0.0078-0.7246,0.0078-1.0938V9.5361c0-0.3662,0-0.7295-0.0078-1.0918c0-0.3066,0-0.6143-0.0039-0.9209
|
|
17
|
+
c-0.0235-0.6699-0.0625-1.3398-0.1856-2.002c-0.1132-0.6699-0.3125-1.2949-0.6191-1.9033
|
|
18
|
+
c-0.3086-0.5986-0.7051-1.1475-1.1816-1.6211c-0.4727-0.4736-1.0196-0.8721-1.6172-1.1787
|
|
19
|
+
c-0.6153-0.3096-1.2383-0.5098-1.9082-0.627c-0.6582-0.1191-1.3301-0.1602-2-0.1768c-0.3047-0.0049-0.6172-0.0107-0.9219-0.0127
|
|
20
|
+
C156.0519,0,155.6867,0,155.3273,0L155.3273,0z"/>
|
|
21
|
+
<path d="M8.4448,39.125c-0.3047,0-0.602-0.0039-0.9043-0.0107c-0.5591-0.0157-1.2222-0.0469-1.8691-0.1631
|
|
22
|
+
c-0.6104-0.1104-1.1528-0.2901-1.6567-0.5479c-0.5215-0.2646-0.9902-0.6064-1.397-1.0166
|
|
23
|
+
c-0.4141-0.4062-0.7544-0.873-1.0205-1.3965c-0.2593-0.5048-0.4365-1.0468-0.543-1.6572c-0.1221-0.6728-0.1533-1.3555-0.1665-1.875
|
|
24
|
+
c-0.0063-0.2109-0.0146-0.9131-0.0146-0.9131V8.4443c0,0,0.0088-0.6914,0.0146-0.8945c0.0132-0.5239,0.0444-1.206,0.1655-1.8721
|
|
25
|
+
C1.1602,5.064,1.3374,4.5225,1.5967,4.0156C1.8623,3.4912,2.2031,3.022,2.6118,2.6177c0.4136-0.4141,0.8843-0.7568,1.4023-1.0225
|
|
26
|
+
c0.5137-0.2607,1.0552-0.439,1.6533-0.5439c0.6733-0.1206,1.356-0.1509,1.8755-0.1641L8.4453,0.875h147.9611l0.9131,0.0127
|
|
27
|
+
c0.5127,0.0127,1.1953,0.043,1.8584,0.1626c0.6025,0.1055,1.1475,0.2847,1.6709,0.5479c0.5127,0.2627,0.9824,0.6055,1.3916,1.0156
|
|
28
|
+
c0.4092,0.4062,0.7519,0.8779,1.0234,1.4043c0.2578,0.5112,0.4336,1.0527,0.5352,1.6489c0.1162,0.6309,0.1523,1.2788,0.1738,1.8872
|
|
29
|
+
c0.0029,0.2832,0.0029,0.5874,0.0029,0.8901c0.0079,0.375,0.0079,0.7319,0.0079,1.0918v20.9287c0,0.3633,0,0.7178-0.0079,1.0752
|
|
30
|
+
c0,0.3252,0,0.6231-0.0039,0.9297c-0.0205,0.5889-0.0566,1.2364-0.1709,1.8535c-0.1035,0.6133-0.2793,1.1553-0.54,1.67
|
|
31
|
+
c-0.2695,0.5195-0.6123,0.9892-1.0156,1.3857c-0.4131,0.418-0.8819,0.7588-1.3994,1.0225
|
|
32
|
+
c-0.5186,0.2636-1.0479,0.4384-1.668,0.5498c-0.6406,0.1162-1.3037,0.1474-1.8692,0.1631
|
|
33
|
+
c-0.2929,0.0068-0.5996,0.0107-0.8974,0.0107l-1.084,0.002L8.4448,39.125z"/>
|
|
34
|
+
<g id="XMLID_632_">
|
|
35
|
+
<linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="20.0983" y1="7.4183" x2="20.0983" y2="32.5813">
|
|
36
|
+
<stop offset="0" style="stop-color:#F452FF"/>
|
|
37
|
+
<stop offset="1" style="stop-color:#832BC1"/>
|
|
38
|
+
</linearGradient>
|
|
39
|
+
<path id="XMLID_662_" fill-rule="evenodd" clip-rule="evenodd" fill="url(#XMLID_2_)" d="M32.1821,29.2281
|
|
40
|
+
c-0.2446,0.6213-0.809,1.4961-1.6094,2.1123c-0.4621,0.3559-1.0138,0.6961-1.7716,0.9206
|
|
41
|
+
c-0.8078,0.2394-1.8028,0.3203-3.0412,0.3203H14.4366c-1.2383,0-2.2333-0.0809-3.0412-0.3203
|
|
42
|
+
c-0.7578-0.2245-1.3094-0.5647-1.7716-0.9206c-0.8003-0.6163-1.3648-1.491-1.6094-2.1123
|
|
43
|
+
c-0.4927-1.2518-0.4977-2.6721-0.4977-3.5666l0,0V14.3381l0,0c0-0.8945,0.005-2.3148,0.4977-3.5666
|
|
44
|
+
c0.2446-0.6213,0.809-1.4961,1.6094-2.1123c0.4621-0.3559,1.0138-0.6961,1.7716-0.9206c0.8078-0.2394,1.8028-0.3203,3.0412-0.3203
|
|
45
|
+
l0,0H25.76l0,0c1.2383,0,2.2333,0.0809,3.0412,0.3203c0.7578,0.2245,1.3094,0.5648,1.7716,0.9206
|
|
46
|
+
c0.8003,0.6163,1.3648,1.491,1.6094,2.1123c0.4927,1.2518,0.4977,2.6721,0.4977,3.5666v11.3234
|
|
47
|
+
C32.6798,26.5559,32.6748,27.9762,32.1821,29.2281z"/>
|
|
48
|
+
<path id="XMLID_660_" fill-rule="evenodd" clip-rule="evenodd" fill="none" d="M32.1821,29.2281
|
|
49
|
+
c-0.2446,0.6213-0.809,1.4961-1.6094,2.1123c-0.4621,0.3559-1.0138,0.6961-1.7716,0.9206
|
|
50
|
+
c-0.8078,0.2394-1.8028,0.3203-3.0412,0.3203H14.4366c-1.2383,0-2.2333-0.0809-3.0412-0.3203
|
|
51
|
+
c-0.7578-0.2245-1.3094-0.5647-1.7716-0.9206c-0.8003-0.6163-1.3648-1.491-1.6094-2.1123
|
|
52
|
+
c-0.4927-1.2518-0.4977-2.6721-0.4977-3.5666l0,0V14.3381l0,0c0-0.8945,0.005-2.3148,0.4977-3.5666
|
|
53
|
+
c0.2446-0.6213,0.809-1.4961,1.6094-2.1123c0.4621-0.3559,1.0138-0.6961,1.7716-0.9206c0.8078-0.2394,1.8028-0.3203,3.0412-0.3203
|
|
54
|
+
l0,0H25.76l0,0c1.2383,0,2.2333,0.0809,3.0412,0.3203c0.7578,0.2245,1.3094,0.5648,1.7716,0.9206
|
|
55
|
+
c0.8003,0.6163,1.3648,1.491,1.6094,2.1123c0.4927,1.2518,0.4977,2.6721,0.4977,3.5666v11.3234
|
|
56
|
+
C32.6798,26.5559,32.6748,27.9762,32.1821,29.2281z"/>
|
|
57
|
+
<g id="XMLID_648_">
|
|
58
|
+
<g>
|
|
59
|
+
<path fill="#FFFFFF" d="M21.9232,21.8815c-0.3776-0.3984-1.0408-0.6538-1.8237-0.6538c-0.783,0-1.4462,0.2554-1.8238,0.6538
|
|
60
|
+
c-0.197,0.2079-0.3012,0.421-0.334,0.7246c-0.0636,0.5879-0.0279,1.0941,0.041,1.9034c0.0656,0.7712,0.1902,1.7996,0.3528,2.847
|
|
61
|
+
c0.1157,0.7454,0.2097,1.1477,0.2953,1.4358c0.1388,0.4669,0.6575,0.8752,1.4687,0.8752c0.8111,0,1.3298-0.4084,1.4686-0.8752
|
|
62
|
+
c0.0856-0.2881,0.1796-0.6904,0.2953-1.4358c0.1626-1.0474,0.2872-2.0758,0.3528-2.847
|
|
63
|
+
c0.0689-0.8094,0.1046-1.3156,0.041-1.9034C22.2244,22.3026,22.1202,22.0894,21.9232,21.8815z M18.0421,18.3342
|
|
64
|
+
c0,1.1373,0.922,2.0593,2.0593,2.0593c1.1374,0,2.0594-0.922,2.0594-2.0593c0-1.1374-0.922-2.0594-2.0594-2.0594
|
|
65
|
+
C18.9641,16.2748,18.0421,17.1968,18.0421,18.3342z M20.0759,10.2072c-4.8163,0.0137-8.7628,3.921-8.8224,8.737
|
|
66
|
+
c-0.0484,3.9013,2.442,7.2385,5.9195,8.4617c0.0844,0.0297,0.1701-0.0404,0.1568-0.1289
|
|
67
|
+
c-0.0456-0.3029-0.0886-0.6073-0.1281-0.9066c-0.014-0.1058-0.0814-0.197-0.1791-0.2397
|
|
68
|
+
c-2.7486-1.2008-4.6679-3.9574-4.6371-7.1505c0.0404-4.1904,3.4622-7.6066,7.6526-7.6405c4.2839-0.0346,7.78,3.4402,7.78,7.7162
|
|
69
|
+
c0,3.1611-1.9109,5.8839-4.6381,7.0751c-0.0977,0.0427-0.1647,0.1342-0.1786,0.2399c-0.0395,0.2992-0.0825,0.6035-0.128,0.9061
|
|
70
|
+
c-0.0134,0.0885,0.0723,0.1586,0.1567,0.129c3.4443-1.2115,5.9202-4.4968,5.9202-8.35
|
|
71
|
+
C28.9501,14.1681,24.9668,10.1932,20.0759,10.2072z M19.916,14.2667c2.7303-0.1057,4.9851,2.0847,4.9851,4.7919
|
|
72
|
+
c0,1.3768-0.5833,2.6198-1.5156,3.4952c-0.0791,0.0742-0.1216,0.1796-0.1155,0.2879c0.0186,0.3293,0.0118,0.6493-0.0101,1.0107
|
|
73
|
+
c-0.0059,0.0963,0.1021,0.1578,0.1818,0.1035c1.5634-1.0684,2.5917-2.8649,2.5917-4.8973c0-3.3464-2.7874-6.0541-6.1623-5.9233
|
|
74
|
+
c-3.1364,0.1216-5.6527,2.7075-5.6929,5.8461c-0.0264,2.0642,1.0082,3.8929,2.5917,4.9747
|
|
75
|
+
c0.0795,0.0543,0.1872-0.0073,0.1813-0.1035c-0.022-0.3616-0.0287-0.6816-0.0102-1.0109
|
|
76
|
+
c0.0061-0.1082-0.0363-0.2136-0.1152-0.2877c-0.9614-0.9026-1.5518-2.1961-1.5142-3.6241
|
|
77
|
+
C15.3778,16.4169,17.4039,14.364,19.916,14.2667z"/>
|
|
78
|
+
</g>
|
|
79
|
+
</g>
|
|
80
|
+
</g>
|
|
81
|
+
<g>
|
|
82
|
+
<path fill="#FFFFFF" d="M46.223,27.8223h-4.7334l-1.1367,3.3564H38.348l4.4834-12.4189h2.083l4.4834,12.4189h-2.0391
|
|
83
|
+
L46.223,27.8223z M41.9798,26.2734h3.752l-1.8496-5.4482h-0.0518L41.9798,26.2734z"/>
|
|
84
|
+
<path fill="#FFFFFF" d="M59.0804,26.6523c0,2.8135-1.5059,4.6211-3.7783,4.6211c-1.29,0-2.3145-0.5771-2.8486-1.584h-0.043v4.4844
|
|
85
|
+
h-1.8584V22.125h1.7988v1.5059h0.0342c0.5166-0.9717,1.6182-1.6006,2.8828-1.6006
|
|
86
|
+
C57.5657,22.0303,59.0804,23.8467,59.0804,26.6523z M57.1702,26.6523c0-1.833-0.9473-3.0381-2.3926-3.0381
|
|
87
|
+
c-1.4199,0-2.375,1.2305-2.375,3.0381c0,1.8242,0.9551,3.0459,2.375,3.0459C56.223,29.6982,57.1702,28.502,57.1702,26.6523z"/>
|
|
88
|
+
<path fill="#FFFFFF" d="M69.0452,26.6523c0,2.8135-1.5059,4.6211-3.7783,4.6211c-1.29,0-2.3144-0.5771-2.8486-1.584h-0.043v4.4844
|
|
89
|
+
h-1.8584V22.125h1.7988v1.5059h0.0342c0.5166-0.9717,1.6182-1.6006,2.8828-1.6006
|
|
90
|
+
C67.5306,22.0303,69.0452,23.8467,69.0452,26.6523z M67.1351,26.6523c0-1.833-0.9473-3.0381-2.3926-3.0381
|
|
91
|
+
c-1.4199,0-2.375,1.2305-2.375,3.0381c0,1.8242,0.9551,3.0459,2.375,3.0459C66.1878,29.6982,67.1351,28.502,67.1351,26.6523z"/>
|
|
92
|
+
<path fill="#FFFFFF" d="M70.5501,18.7598h1.8594v12.4189h-1.8594V18.7598z"/>
|
|
93
|
+
<path fill="#FFFFFF" d="M82.0853,28.5195c-0.25,1.6436-1.8506,2.7715-3.8984,2.7715c-2.6338,0-4.2686-1.7646-4.2686-4.5957
|
|
94
|
+
c0-2.8398,1.6436-4.6816,4.1904-4.6816c2.5049,0,4.0801,1.7207,4.0801,4.4658v0.6367h-6.3945v0.1123
|
|
95
|
+
c0,1.5488,0.9727,2.5645,2.4355,2.5645c1.0322,0,1.8418-0.4902,2.0908-1.2734H82.0853z M75.803,25.8174h4.5264
|
|
96
|
+
c-0.043-1.3857-0.9297-2.2979-2.2207-2.2979C76.8265,23.5195,75.8978,24.4492,75.803,25.8174z"/>
|
|
97
|
+
<path fill="#FFFFFF" d="M92.0872,18.7598c2.4092,0,4.0879,1.6611,4.0879,4.0801c0,2.4268-1.7129,4.0957-4.1484,4.0957h-2.668
|
|
98
|
+
v4.2432H87.431V18.7598H92.0872z M89.3587,25.3184h2.2119c1.6777,0,2.6328-0.9043,2.6328-2.4697
|
|
99
|
+
c0-1.5664-0.9551-2.4624-2.624-2.4624h-2.2207V25.3184z"/>
|
|
100
|
+
<path fill="#FFFFFF" d="M96.8538,26.6523c0-2.8486,1.6777-4.6387,4.2939-4.6387c2.625,0,4.2949,1.79,4.2949,4.6387
|
|
101
|
+
c0,2.8564-1.6611,4.6387-4.2949,4.6387C98.5149,31.291,96.8538,29.5088,96.8538,26.6523z M103.5491,26.6523
|
|
102
|
+
c0-1.9541-0.8955-3.1074-2.4014-3.1074s-2.4014,1.1621-2.4014,3.1074c0,1.9619,0.8955,3.1064,2.4014,3.1064
|
|
103
|
+
S103.5491,28.6143,103.5491,26.6523z"/>
|
|
104
|
+
<path fill="#FFFFFF" d="M106.7474,26.6523c0-2.7969,1.54-4.6221,3.7861-4.6221c1.2998,0,2.3242,0.6025,2.8398,1.6006h0.0352
|
|
105
|
+
v-4.8711h1.8672v12.4189h-1.8076v-1.54h-0.0342c-0.5332,1.0322-1.5664,1.6348-2.8828,1.6348
|
|
106
|
+
C108.2874,31.2734,106.7474,29.4492,106.7474,26.6523z M108.6487,26.6523c0,1.8584,0.9473,3.0459,2.3926,3.0459
|
|
107
|
+
c1.4287,0,2.3838-1.2051,2.3838-3.0459c0-1.8252-0.9551-3.0381-2.3838-3.0381C109.596,23.6143,108.6487,24.8105,108.6487,26.6523z
|
|
108
|
+
"/>
|
|
109
|
+
<path fill="#FFFFFF" d="M123.1839,25.2402c-0.1631-0.9551-0.9121-1.6689-2.1338-1.6689c-1.4287,0-2.376,1.1963-2.376,3.0811
|
|
110
|
+
c0,1.9277,0.9561,3.0889,2.3926,3.0889c1.1533,0,1.9111-0.5762,2.1172-1.626h1.79c-0.2061,1.9014-1.7295,3.1758-3.9238,3.1758
|
|
111
|
+
c-2.582,0-4.2686-1.7646-4.2686-4.6387c0-2.8145,1.6865-4.6387,4.251-4.6387c2.3232,0,3.7695,1.4629,3.9248,3.2266H123.1839z"/>
|
|
112
|
+
<path fill="#FFFFFF" d="M126.1126,28.6055c0-1.583,1.2129-2.5391,3.3643-2.668l2.4785-0.1377v-0.6885
|
|
113
|
+
c0-1.0068-0.6621-1.5752-1.7891-1.5752c-1.0332,0-1.7559,0.4912-1.9023,1.2744h-1.7383c0.0518-1.6357,1.5742-2.7969,3.6914-2.7969
|
|
114
|
+
c2.1602,0,3.5889,1.1787,3.5889,2.96v6.2051h-1.7812v-1.4893h-0.043c-0.5254,1.0068-1.6699,1.6445-2.8574,1.6445
|
|
115
|
+
C127.3519,31.334,126.1126,30.2324,126.1126,28.6055z M131.9554,27.7881v-0.6973l-2.2285,0.1377
|
|
116
|
+
c-1.1104,0.0693-1.7383,0.5508-1.7383,1.3252c0,0.792,0.6543,1.3086,1.6524,1.3086
|
|
117
|
+
C130.9407,29.8623,131.9554,28.9668,131.9554,27.7881z"/>
|
|
118
|
+
<path fill="#FFFFFF" d="M138.9935,22.0225c2.0059,0,3.4424,1.1094,3.4854,2.71h-1.7471c-0.0771-0.7998-0.7568-1.29-1.79-1.29
|
|
119
|
+
c-1.0068,0-1.6777,0.4639-1.6777,1.1699c0,0.542,0.4473,0.9033,1.3857,1.1357l1.5234,0.3535
|
|
120
|
+
c1.8242,0.4385,2.5127,1.1094,2.5127,2.4355c0,1.6348-1.5488,2.7539-3.7607,2.7539c-2.1348,0-3.5713-1.0938-3.709-2.7461h1.8408
|
|
121
|
+
c0.1299,0.8691,0.8262,1.334,1.9541,1.334c1.1104,0,1.8076-0.4561,1.8076-1.1787c0-0.5596-0.3447-0.8604-1.291-1.1016
|
|
122
|
+
l-1.6182-0.3955c-1.6357-0.3965-2.4619-1.2314-2.4619-2.4873C135.4476,23.1152,136.8851,22.0225,138.9935,22.0225z"/>
|
|
123
|
+
<path fill="#FFFFFF" d="M146.7239,19.9819v2.1431h1.7217v1.4717h-1.7217v4.9912c0,0.7754,0.3447,1.1367,1.1016,1.1367
|
|
124
|
+
c0.1895,0,0.4912-0.0264,0.6113-0.043v1.4629c-0.2061,0.0518-0.6191,0.0859-1.0322,0.0859c-1.833,0-2.5479-0.6885-2.5479-2.4443
|
|
125
|
+
v-5.1895h-1.3164V22.125h1.3164v-2.1431H146.7239z"/>
|
|
126
|
+
<path fill="#FFFFFF" d="M153.4427,22.0225c2.0059,0,3.4424,1.1094,3.4854,2.71h-1.7471c-0.0771-0.7998-0.7568-1.29-1.79-1.29
|
|
127
|
+
c-1.0068,0-1.6777,0.4639-1.6777,1.1699c0,0.542,0.4473,0.9033,1.3857,1.1357l1.5234,0.3535
|
|
128
|
+
c1.8242,0.4385,2.5127,1.1094,2.5127,2.4355c0,1.6348-1.5488,2.7539-3.7607,2.7539c-2.1348,0-3.5713-1.0938-3.709-2.7461h1.8408
|
|
129
|
+
c0.1299,0.8691,0.8262,1.334,1.9541,1.334c1.1104,0,1.8076-0.4561,1.8076-1.1787c0-0.5596-0.3447-0.8604-1.291-1.1016
|
|
130
|
+
l-1.6182-0.3955c-1.6357-0.3965-2.4619-1.2314-2.4619-2.4873C149.8968,23.1152,151.3343,22.0225,153.4427,22.0225z"/>
|
|
131
|
+
</g>
|
|
132
|
+
<g>
|
|
133
|
+
<path fill="#FFFFFF" d="M42.9578,14.6611h-3.7217V8.6943h0.9263v5.1147h2.7954V14.6611z"/>
|
|
134
|
+
<path fill="#FFFFFF" d="M44.0345,8.8267c0-0.3105,0.2441-0.5459,0.5747-0.5459c0.3311,0,0.5747,0.2354,0.5747,0.5459
|
|
135
|
+
c0,0.3057-0.2437,0.5415-0.5747,0.5415C44.2786,9.3682,44.0345,9.1323,44.0345,8.8267z M44.1668,10.1582h0.8848v4.5029h-0.8848
|
|
136
|
+
V10.1582z"/>
|
|
137
|
+
<path fill="#FFFFFF" d="M48.1307,10.0713c1.0132,0,1.6748,0.4712,1.7612,1.2651h-0.8516
|
|
138
|
+
c-0.083-0.3306-0.4053-0.5415-0.9097-0.5415c-0.4966,0-0.8726,0.2354-0.8726,0.5869c0,0.269,0.2275,0.4385,0.7153,0.5503
|
|
139
|
+
l0.7485,0.1733c0.856,0.1987,1.2568,0.5669,1.2568,1.2285c0,0.8477-0.7896,1.4141-1.8647,1.4141
|
|
140
|
+
c-1.0713,0-1.77-0.4839-1.8486-1.2817h0.8892c0.1118,0.3472,0.4424,0.562,0.98,0.562c0.5542,0,0.9473-0.248,0.9473-0.6079
|
|
141
|
+
c0-0.2686-0.2109-0.4424-0.6621-0.5498l-0.7856-0.1821c-0.856-0.2026-1.2529-0.5869-1.2529-1.2568
|
|
142
|
+
C46.3812,10.6333,47.1131,10.0713,48.1307,10.0713z"/>
|
|
143
|
+
<path fill="#FFFFFF" d="M52.346,9.0371v1.1416h0.9756v0.7485H52.346v2.3154c0,0.4717,0.1943,0.6782,0.6367,0.6782
|
|
144
|
+
c0.1362,0,0.2148-0.0083,0.3389-0.0205v0.7402c-0.1445,0.0244-0.3101,0.0454-0.4839,0.0454c-0.9883,0-1.3809-0.3477-1.3809-1.2158
|
|
145
|
+
v-2.543h-0.7153v-0.7485h0.7153V9.0371H52.346z"/>
|
|
146
|
+
<path fill="#FFFFFF" d="M58.2532,13.4453c-0.2026,0.8066-0.9224,1.3027-1.9517,1.3027c-1.2905,0-2.0801-0.8848-2.0801-2.3242
|
|
147
|
+
c0-1.439,0.8062-2.3525,2.0757-2.3525c1.2529,0,2.0098,0.856,2.0098,2.27v0.3101h-3.1802v0.0498
|
|
148
|
+
c0.0293,0.7896,0.4883,1.29,1.1992,1.29c0.5376,0,0.9058-0.1943,1.0713-0.5459H58.2532z M55.1268,11.9941h2.2744
|
|
149
|
+
c-0.0205-0.707-0.4507-1.1665-1.1079-1.1665C55.6356,10.8276,55.1766,11.291,55.1268,11.9941z"/>
|
|
150
|
+
<path fill="#FFFFFF" d="M59.4993,10.1582h0.856v0.7153h0.0664c0.2188-0.5005,0.6655-0.8022,1.3438-0.8022
|
|
151
|
+
c1.0049,0,1.5591,0.6035,1.5591,1.6748v2.915h-0.8892v-2.6919c0-0.7236-0.3145-1.0835-0.9717-1.0835
|
|
152
|
+
c-0.6577,0-1.0752,0.4385-1.0752,1.1411v2.6343h-0.8892V10.1582z"/>
|
|
153
|
+
<path fill="#FFFFFF" d="M66.9183,12.4077c0-1.4517,0.8105-2.3364,2.1255-2.3364c1.3105,0,2.1211,0.8848,2.1211,2.3364
|
|
154
|
+
c0,1.4595-0.8062,2.3403-2.1211,2.3403C67.7244,14.748,66.9183,13.8672,66.9183,12.4077z M70.2513,12.4077
|
|
155
|
+
c0-0.9761-0.4385-1.5469-1.2075-1.5469c-0.7734,0-1.2075,0.5708-1.2075,1.5469c0,0.9839,0.4341,1.5503,1.2075,1.5503
|
|
156
|
+
C69.8128,13.958,70.2513,13.3877,70.2513,12.4077z"/>
|
|
157
|
+
<path fill="#FFFFFF" d="M72.3572,10.1582h0.856v0.7153h0.0664c0.2192-0.5005,0.6655-0.8022,1.3438-0.8022
|
|
158
|
+
c1.0049,0,1.5591,0.6035,1.5591,1.6748v2.915h-0.8892v-2.6919c0-0.7236-0.3145-1.0835-0.9717-1.0835
|
|
159
|
+
c-0.6577,0-1.0752,0.4385-1.0752,1.1411v2.6343h-0.8892V10.1582z"/>
|
|
160
|
+
</g>
|
|
161
|
+
</g>
|
|
162
|
+
<g>
|
|
163
|
+
</g>
|
|
164
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="152px" height="40px" viewBox="0 0 152 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>podcasts-subscription-google</title>
|
|
4
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="podcasts-subscription-google" transform="translate(1.000000, 1.000000)">
|
|
6
|
+
<g id="Rectangle-Solid" fill="#FFFFFF" fill-rule="nonzero" stroke="#9AA0A6">
|
|
7
|
+
<rect id="Rectangle" x="0.28" y="0.28" width="149.44" height="37.44" rx="8.96"></rect>
|
|
8
|
+
</g>
|
|
9
|
+
<g id="logo_podcasts_192px" transform="translate(6.000000, 6.000000)">
|
|
10
|
+
<rect id="Rectangle-path" x="0" y="0" width="27" height="27"></rect>
|
|
11
|
+
<path d="M2.671875,11.109375 C1.816875,11.109375 1.125,11.80125 1.125,12.65625 L1.125,14.34375 C1.125,15.19875 1.816875,15.890625 2.671875,15.890625 C3.526875,15.890625 4.21875,15.19875 4.21875,14.34375 L4.21875,12.65625 C4.21875,11.80125 3.526875,11.109375 2.671875,11.109375 Z" id="Shape" fill="#0066D9" fill-rule="nonzero"></path>
|
|
12
|
+
<path d="M24.328125,11.109375 C23.473125,11.109375 22.78125,11.80125 22.78125,12.65625 L22.78125,14.34375 C22.78125,15.19875 23.473125,15.890625 24.328125,15.890625 C25.183125,15.890625 25.875,15.19875 25.875,14.34375 L25.875,12.65625 C25.875,11.80125 25.183125,11.109375 24.328125,11.109375 Z" id="Shape" fill="#4285F4" fill-rule="nonzero"></path>
|
|
13
|
+
<path d="M8.015625,16.171875 C7.160625,16.171875 6.46875,16.86375 6.46875,17.71875 L6.46875,19.40625 C6.46875,20.26125 7.160625,20.953125 8.015625,20.953125 C8.870625,20.953125 9.5625,20.26125 9.5625,19.40625 L9.5625,17.71875 C9.5625,16.86375 8.870625,16.171875 8.015625,16.171875 Z" id="Shape" fill="#EA4335" fill-rule="nonzero"></path>
|
|
14
|
+
<path d="M8.015625,6.046875 C7.160625,6.046875 6.46875,6.73875 6.46875,7.59375 L6.46875,13.1132812 L6.47015625,13.1132812 C6.48984375,13.9514062 7.17328125,14.625 8.015625,14.625 C8.85796875,14.625 9.54140625,13.9514062 9.56109375,13.1132812 L9.5625,13.1132812 L9.5625,7.59375 C9.5625,6.73875 8.870625,6.046875 8.015625,6.046875 Z" id="Shape" fill="#EA4335" fill-rule="nonzero"></path>
|
|
15
|
+
<path d="M18.984375,6.046875 C18.129375,6.046875 17.4375,6.73875 17.4375,7.59375 L17.4375,9.28125 C17.4375,10.13625 18.129375,10.828125 18.984375,10.828125 C19.839375,10.828125 20.53125,10.13625 20.53125,9.28125 L20.53125,7.59375 C20.53125,6.73875 19.839375,6.046875 18.984375,6.046875 Z" id="Shape" fill="#34A853" fill-rule="nonzero"></path>
|
|
16
|
+
<path d="M13.5,1.125 C12.645,1.125 11.953125,1.816875 11.953125,2.671875 L11.953125,4.359375 C11.953125,5.214375 12.645,5.90625 13.5,5.90625 C14.355,5.90625 15.046875,5.214375 15.046875,4.359375 L15.046875,2.671875 C15.046875,1.816875 14.355,1.125 13.5,1.125 Z" id="Shape" fill="#FAB908" fill-rule="nonzero"></path>
|
|
17
|
+
<path d="M13.5,21.09375 C12.645,21.09375 11.953125,21.785625 11.953125,22.640625 L11.953125,24.328125 C11.953125,25.183125 12.645,25.875 13.5,25.875 C14.355,25.875 15.046875,25.183125 15.046875,24.328125 L15.046875,22.640625 C15.046875,21.785625 14.355,21.09375 13.5,21.09375 Z" id="Shape" fill="#FAB908" fill-rule="nonzero"></path>
|
|
18
|
+
<path d="M18.984375,12.375 C18.129375,12.375 17.4375,13.066875 17.4375,13.921875 L17.4375,19.40625 C17.4375,20.26125 18.129375,20.953125 18.984375,20.953125 C19.839375,20.953125 20.53125,20.26125 20.53125,19.40625 L20.53125,13.921875 C20.53125,13.066875 19.839375,12.375 18.984375,12.375 Z" id="Shape" fill="#34A853" fill-rule="nonzero"></path>
|
|
19
|
+
<path d="M15.046875,9 C15.046875,8.145 14.355,7.453125 13.5,7.453125 C12.645,7.453125 11.953125,8.145 11.953125,9 L11.953125,9 L11.953125,12.7504687 L11.953125,14.2509375 L11.953125,18 L11.953125,18 C11.953125,18.855 12.645,19.546875 13.5,19.546875 C14.355,19.546875 15.046875,18.855 15.046875,18 L15.046875,18 L15.046875,14.2495313 L15.046875,12.7504687 L15.046875,9 L15.046875,9 Z" id="Shape" fill="#FAB908" fill-rule="nonzero"></path>
|
|
20
|
+
</g>
|
|
21
|
+
<g id="Group" transform="translate(39.000000, 17.000000)">
|
|
22
|
+
<polygon id="Rectangle-path" points="0 1.24 101.92 1.24 101.92 16.92 0 16.92"></polygon>
|
|
23
|
+
<path d="M50.344,12.06 L50.344,7.972 L52.542,7.972 C53.102,7.972 53.62,7.846 54.096,7.594 C54.572,7.342 54.9523333,6.98966667 55.237,6.537 C55.5216667,6.08433333 55.664,5.57333333 55.664,5.004 C55.664,4.43466667 55.5216667,3.92366667 55.237,3.471 C54.9523333,3.01833333 54.572,2.666 54.096,2.414 C53.62,2.162 53.102,2.036 52.542,2.036 L52.542,2.036 L49.168,2.036 L49.168,12.06 L50.344,12.06 Z M52.57,6.838 L50.344,6.838 L50.344,3.17 L52.57,3.17 C52.9433333,3.17 53.2723333,3.25866667 53.557,3.436 C53.8416667,3.61333333 54.0633333,3.842 54.222,4.122 C54.3806667,4.402 54.46,4.696 54.46,5.004 C54.46,5.312 54.3806667,5.606 54.222,5.886 C54.0633333,6.166 53.8416667,6.39466667 53.557,6.572 C53.2723333,6.74933333 52.9433333,6.838 52.57,6.838 L52.57,6.838 Z M59.598,12.284 C60.298,12.284 60.928,12.116 61.488,11.78 C62.048,11.444 62.4843333,10.9866667 62.797,10.408 C63.1096667,9.8293333 63.266,9.19 63.266,8.49 C63.266,7.79 63.1096667,7.15066667 62.797,6.572 C62.4843333,5.99333333 62.048,5.536 61.488,5.2 C60.928,4.864 60.298,4.696 59.598,4.696 C58.898,4.696 58.268,4.864 57.708,5.2 C57.148,5.536 56.7116667,5.99333333 56.399,6.572 C56.0863333,7.15066667 55.93,7.79 55.93,8.49 C55.93,9.19 56.0863333,9.8293333 56.399,10.408 C56.7116667,10.9866667 57.148,11.444 57.708,11.78 C58.268,12.116 58.898,12.284 59.598,12.284 Z M59.598,11.206 C59.1593333,11.206 58.7486667,11.0963333 58.366,10.877 C57.9833333,10.6576667 57.6776667,10.3426667 57.449,9.932 C57.2203333,9.5213333 57.106,9.0406667 57.106,8.49 C57.106,7.93933333 57.2203333,7.45866667 57.449,7.048 C57.6776667,6.63733333 57.9833333,6.32233333 58.366,6.103 C58.7486667,5.88366667 59.1593333,5.774 59.598,5.774 C60.0366667,5.774 60.445,5.88366667 60.823,6.103 C61.201,6.32233333 61.5043333,6.63733333 61.733,7.048 C61.9616667,7.45866667 62.076,7.93933333 62.076,8.49 C62.076,9.0406667 61.9616667,9.5213333 61.733,9.932 C61.5043333,10.3426667 61.201,10.6576667 60.823,10.877 C60.445,11.0963333 60.0366667,11.206 59.598,11.206 Z M67.48,12.284 C68.0306667,12.284 68.5206667,12.1603333 68.95,11.913 C69.3793333,11.6656667 69.706,11.3646667 69.93,11.01 L69.93,11.01 L69.986,11.01 L69.986,12.06 L71.12,12.06 L71.12,2.036 L69.93,2.036 L69.93,4.99 L69.986,5.984 L69.93,5.984 C69.706,5.62 69.3793333,5.31433333 68.95,5.067 C68.5206667,4.81966667 68.0306667,4.696 67.48,4.696 C66.8453333,4.696 66.269,4.85933333 65.751,5.186 C65.233,5.51266667 64.8246667,5.96533333 64.526,6.544 C64.2273333,7.12266667 64.078,7.77133333 64.078,8.49 C64.078,9.218 64.2273333,9.869 64.526,10.443 C64.8246667,11.017 65.233,11.4673333 65.751,11.794 C66.269,12.1206667 66.8453333,12.284 67.48,12.284 Z M67.62,11.206 C67.2093333,11.206 66.822,11.094 66.458,10.87 C66.094,10.646 65.8023333,10.3263333 65.583,9.911 C65.3636667,9.4956667 65.254,9.022 65.254,8.49 C65.254,7.958 65.3636667,7.48433333 65.583,7.069 C65.8023333,6.65366667 66.094,6.334 66.458,6.11 C66.822,5.886 67.2093333,5.774 67.62,5.774 C68.04,5.774 68.4296667,5.886 68.789,6.11 C69.1483333,6.334 69.4376667,6.65133333 69.657,7.062 C69.8763333,7.47266667 69.986,7.94866667 69.986,8.49 C69.986,9.0313333 69.8763333,9.5073333 69.657,9.918 C69.4376667,10.3286667 69.1483333,10.646 68.789,10.87 C68.4296667,11.094 68.04,11.206 67.62,11.206 Z M75.852,12.284 C76.6173333,12.284 77.2683333,12.102 77.805,11.738 C78.3416667,11.374 78.7313333,10.898 78.974,10.31 L78.974,10.31 L77.91,9.862 C77.7326667,10.2913333 77.462,10.6226667 77.098,10.856 C76.734,11.0893333 76.3,11.206 75.796,11.206 C75.376,11.206 74.984,11.0916667 74.62,10.863 C74.256,10.6343333 73.9643333,10.3146667 73.745,9.904 C73.5256667,9.4933333 73.416,9.022 73.416,8.49 C73.416,7.958 73.5256667,7.48666667 73.745,7.076 C73.9643333,6.66533333 74.256,6.34566667 74.62,6.117 C74.984,5.88833333 75.376,5.774 75.796,5.774 C76.2906667,5.774 76.713,5.88833333 77.063,6.117 C77.413,6.34566667 77.6766667,6.67933333 77.854,7.118 L77.854,7.118 L78.932,6.67 C78.708,6.07266667 78.3323333,5.59433333 77.805,5.235 C77.2776667,4.87566667 76.6266667,4.696 75.852,4.696 C75.1613333,4.696 74.5406667,4.85933333 73.99,5.186 C73.4393333,5.51266667 73.01,5.96533333 72.702,6.544 C72.394,7.12266667 72.24,7.77133333 72.24,8.49 C72.24,9.2086667 72.394,9.855 72.702,10.429 C73.01,11.003 73.4393333,11.4556667 73.99,11.787 C74.5406667,12.1183333 75.1613333,12.284 75.852,12.284 Z M82.278,12.284 C82.7913333,12.284 83.2533333,12.1626667 83.664,11.92 C84.0746667,11.6773333 84.3826667,11.3833333 84.588,11.038 L84.588,11.038 L84.644,11.038 L84.644,12.06 L85.778,12.06 L85.778,7.538 C85.778,6.66066667 85.5003333,5.96766667 84.945,5.459 C84.3896667,4.95033333 83.6266667,4.696 82.656,4.696 C82.0586667,4.696 81.515,4.81733333 81.025,5.06 C80.535,5.30266667 80.15,5.63866667 79.87,6.068 L79.87,6.068 L80.766,6.74 C80.962,6.432 81.228,6.19166667 81.564,6.019 C81.9,5.84633333 82.2686667,5.76 82.67,5.76 C83.2393333,5.76 83.7106667,5.921 84.084,6.243 C84.4573333,6.565 84.644,6.992 84.644,7.524 L84.644,7.524 L84.644,7.958 C84.448,7.83666667 84.1656667,7.72933333 83.797,7.636 C83.4283333,7.54266667 83.0293333,7.496 82.6,7.496 C81.732,7.496 81.0133333,7.70833333 80.444,8.133 C79.8746667,8.5576667 79.59,9.148 79.59,9.904 C79.59,10.3613333 79.702,10.7696667 79.926,11.129 C80.15,11.4883333 80.4673333,11.7706667 80.878,11.976 C81.2886667,12.1813333 81.7553333,12.284 82.278,12.284 Z M82.39,11.234 C81.9326667,11.234 81.5546667,11.1126667 81.256,10.87 C80.9573333,10.6273333 80.808,10.31 80.808,9.918 C80.808,9.4886667 80.9736667,9.1386667 81.305,8.868 C81.6363333,8.5973333 82.1286667,8.462 82.782,8.462 C83.146,8.462 83.4913333,8.5086667 83.818,8.602 C84.1446667,8.6953333 84.42,8.8166667 84.644,8.966 C84.644,9.3766667 84.5413333,9.7546667 84.336,10.1 C84.1306667,10.4453333 83.8553333,10.7206667 83.51,10.926 C83.1646667,11.1313333 82.7913333,11.234 82.39,11.234 Z M89.656,12.284 C90.1786667,12.284 90.6546667,12.1953333 91.084,12.018 C91.5133334,11.8406667 91.854,11.5863333 92.106,11.255 C92.358,10.9236667 92.484,10.5386667 92.484,10.1 C92.484,9.596 92.3066667,9.169 91.952,8.819 C91.5973334,8.469 91.07,8.2053333 90.37,8.028 L90.37,8.028 L89.334,7.762 C88.9233334,7.65933333 88.6153334,7.52633333 88.41,7.363 C88.2046667,7.19966667 88.102,6.98733333 88.102,6.726 C88.102,6.446 88.249,6.215 88.543,6.033 C88.837,5.851 89.18,5.76 89.572,5.76 C90.384,5.76 90.9486667,6.07733333 91.266,6.712 L91.266,6.712 L92.302,6.236 C92.0966667,5.75066667 91.749,5.37266667 91.259,5.102 C90.769,4.83133333 90.2113334,4.696 89.586,4.696 C89.11,4.696 88.6666667,4.78 88.256,4.948 C87.8453334,5.116 87.5163334,5.35633333 87.269,5.669 C87.0216667,5.98166667 86.898,6.34333333 86.898,6.754 C86.898,7.286 87.08,7.72 87.444,8.056 C87.808,8.392 88.2746667,8.63 88.844,8.77 L88.844,8.77 L89.712,8.994 C90.2533334,9.1246667 90.65,9.281 90.902,9.463 C91.154,9.645 91.28,9.8853333 91.28,10.184 C91.28,10.52 91.1213334,10.779 90.804,10.961 C90.4866667,11.143 90.104,11.234 89.656,11.234 C89.236,11.234 88.851,11.1173333 88.501,10.884 C88.151,10.6506667 87.8873334,10.3193333 87.71,9.89 L87.71,9.89 L86.646,10.366 C86.8606667,10.926 87.2246667,11.3856667 87.738,11.745 C88.2513334,12.1043333 88.8906667,12.284 89.656,12.284 Z M96.264,12.172 C96.488,12.172 96.6723334,12.158 96.817,12.13 C96.9616667,12.102 97.104,12.0553333 97.244,11.99 L97.244,11.99 L97.244,10.828 C96.992,10.9866667 96.7306667,11.066 96.46,11.066 C96.124,11.066 95.8673334,10.9633333 95.69,10.758 C95.5406667,10.5713333 95.466,10.282 95.466,9.89 L95.466,9.89 L95.466,5.998 L97.202,5.998 L97.202,4.92 L95.466,4.92 L95.466,2.904 L94.276,2.904 L94.276,4.92 L93.03,4.92 L93.03,5.998 L94.276,5.998 L94.276,10.184 C94.276,10.52 94.3226667,10.8046667 94.416,11.038 C94.5093334,11.2713333 94.6493334,11.4766667 94.836,11.654 C95.004,11.8126667 95.2116667,11.9386667 95.459,12.032 C95.7063334,12.1253333 95.9746667,12.172 96.264,12.172 Z M101.08,12.284 C101.602667,12.284 102.078667,12.1953333 102.508,12.018 C102.937333,11.8406667 103.278,11.5863333 103.53,11.255 C103.782,10.9236667 103.908,10.5386667 103.908,10.1 C103.908,9.596 103.730667,9.169 103.376,8.819 C103.021333,8.469 102.494,8.2053333 101.794,8.028 L101.794,8.028 L100.758,7.762 C100.347333,7.65933333 100.039333,7.52633333 99.834,7.363 C99.6286667,7.19966667 99.526,6.98733333 99.526,6.726 C99.526,6.446 99.673,6.215 99.967,6.033 C100.261,5.851 100.604,5.76 100.996,5.76 C101.808,5.76 102.372667,6.07733333 102.69,6.712 L102.69,6.712 L103.726,6.236 C103.520667,5.75066667 103.173,5.37266667 102.683,5.102 C102.193,4.83133333 101.635333,4.696 101.01,4.696 C100.534,4.696 100.090667,4.78 99.68,4.948 C99.2693334,5.116 98.9403334,5.35633333 98.693,5.669 C98.4456667,5.98166667 98.322,6.34333333 98.322,6.754 C98.322,7.286 98.504,7.72 98.868,8.056 C99.232,8.392 99.6986667,8.63 100.268,8.77 L100.268,8.77 L101.136,8.994 C101.677333,9.1246667 102.074,9.281 102.326,9.463 C102.578,9.645 102.704,9.8853333 102.704,10.184 C102.704,10.52 102.545333,10.779 102.228,10.961 C101.910667,11.143 101.528,11.234 101.08,11.234 C100.66,11.234 100.275,11.1173333 99.925,10.884 C99.575,10.6506667 99.3113334,10.3193333 99.134,9.89 L99.134,9.89 L98.07,10.366 C98.2846667,10.926 98.6486667,11.3856667 99.162,11.745 C99.6753334,12.1043333 100.314667,12.284 101.08,12.284 Z" id="Podcasts" fill="#3C4043" fill-rule="nonzero"></path>
|
|
24
|
+
<path d="M31.6213333,4.81333333 C32.5033333,4.81333333 33.2002222,5.20533333 33.5595556,5.64088889 L33.614,5.64088889 L33.614,5.042 L35.1602222,5.042 L35.1602222,11.6515556 C35.1602222,14.3737778 33.5595556,15.4844444 31.6648889,15.4844444 C29.8791111,15.4844444 28.8011111,14.2866667 28.3982222,13.3066667 L29.8028889,12.7186667 C30.0533333,13.3175556 30.6631111,14.0253333 31.654,14.0253333 C32.8626667,14.0253333 33.614,13.274 33.614,11.8693333 L33.614,11.3357778 L33.5595556,11.3357778 C33.2002222,11.7822222 32.5033333,12.1742222 31.6213333,12.1742222 C29.7811111,12.1742222 28.0933333,10.5626667 28.0933333,8.5046667 C28.0933333,6.42488889 29.7811111,4.81333333 31.6213333,4.81333333 Z M15.6691111,4.92222222 C17.7053333,4.92222222 19.3604444,6.46844444 19.3604444,8.6026667 C19.3604444,10.726 17.7053333,12.2831111 15.6691111,12.2831111 C13.6328889,12.2831111 11.9777778,10.726 11.9777778,8.6026667 C11.9777778,6.46844444 13.6328889,4.92222222 15.6691111,4.92222222 Z M23.7268889,4.92222222 C25.7631111,4.92222222 27.4182222,6.46844444 27.4182222,8.6026667 C27.4182222,10.726 25.7631111,12.2831111 23.7268889,12.2831111 C21.6906667,12.2831111 20.0355556,10.726 20.0355556,8.6026667 C20.0355556,6.46844444 21.6906667,4.92222222 23.7268889,4.92222222 Z M42.1291111,4.92222222 C44.0346667,4.92222222 44.9711111,6.43577778 45.276,7.26333333 L45.4393333,7.67711111 L40.5175556,9.7133333 C40.8986667,10.4428889 41.4757778,10.824 42.3033333,10.824 C43.1308889,10.824 43.6971111,10.4211111 44.1217778,9.8113333 L45.374,10.6497778 C44.9602222,11.2486667 43.9911111,12.2831111 42.3033333,12.2831111 C40.2126667,12.2831111 38.6555556,10.6606667 38.6555556,8.6026667 C38.6555556,6.414 40.2344444,4.92222222 42.1291111,4.92222222 Z M6.13044444,0.78444444 C7.87266667,0.78444444 9.114,1.47044444 10.0504444,2.36333333 L8.93977778,3.46311111 C8.27555556,2.83155556 7.37177778,2.34155556 6.13044444,2.34155556 C3.83288889,2.34155556 2.03622222,4.19266667 2.03622222,6.49022222 C2.03622222,8.7877778 3.83288889,10.6388889 6.13044444,10.6388889 C7.62222222,10.6388889 8.47155556,10.04 9.016,9.4955556 C9.46244444,9.0491111 9.75644444,8.4066667 9.86533333,7.53555556 L6.13044444,7.53555556 L6.13044444,5.97844444 L11.3897778,5.97844444 C11.4442222,6.26155556 11.4768889,6.58822222 11.4768889,6.95844444 C11.4768889,8.1344444 11.1611111,9.5826667 10.1266667,10.6062222 C9.114,11.6515556 7.82911111,12.2068889 6.13044444,12.2068889 C2.97266667,12.2068889 0.326666667,9.648 0.326666667,6.50111111 C0.326666667,3.34333333 2.97266667,0.78444444 6.13044444,0.78444444 Z M37.8715556,1.22 L37.8715556,12.0326667 L36.26,12.0326667 L36.26,1.22 L37.8715556,1.22 Z M15.6691111,6.35955556 C14.5475556,6.35955556 13.5893333,7.26333333 13.5893333,8.5917778 C13.5893333,9.9093333 14.5584444,10.824 15.6691111,10.824 C16.7797778,10.824 17.7488889,9.9093333 17.7488889,8.5917778 C17.7488889,7.26333333 16.7797778,6.35955556 15.6691111,6.35955556 Z M23.7268889,6.35955556 C22.6053333,6.35955556 21.6471111,7.26333333 21.6471111,8.5917778 C21.6471111,9.9093333 22.6162222,10.824 23.7268889,10.824 C24.8375556,10.824 25.8066667,9.9093333 25.8066667,8.5917778 C25.8066667,7.26333333 24.8484444,6.35955556 23.7268889,6.35955556 Z M31.7628889,6.26155556 C30.6522222,6.26155556 29.7157778,7.20888889 29.7157778,8.5046667 C29.7157778,9.7895556 30.6522222,10.726 31.7628889,10.726 C32.8626667,10.726 33.7337778,9.8004444 33.7228889,8.5046667 C33.7228889,7.20888889 32.8626667,6.26155556 31.7628889,6.26155556 Z M42.1835556,6.33777778 C41.356,6.33777778 40.2126667,7.06733333 40.2562222,8.4828889 L43.5446667,7.12177778 C43.3704444,6.65355556 42.826,6.33777778 42.1835556,6.33777778 Z" id="Combined-Shape" fill="#3C4043" fill-rule="nonzero"></path>
|
|
25
|
+
</g>
|
|
26
|
+
<path d="M44.1778125,14.2 L44.1778125,13.4272656 L40.7817188,13.4272656 L40.7817188,7.03375 L39.8317969,7.03375 L39.8317969,14.2 L44.1778125,14.2 Z M45.906375,7.97875 C46.0835625,7.97875 46.2180937,7.92953125 46.3099687,7.83109375 C46.4018437,7.73265625 46.4477812,7.60960938 46.4477812,7.46195313 C46.4477812,7.31429688 46.4018437,7.18960937 46.3099687,7.08789062 C46.2180937,6.98617187 46.0835625,6.9353125 45.906375,6.9353125 C45.7291875,6.9353125 45.5954766,6.98617187 45.5052422,7.08789062 C45.4150078,7.18960937 45.3698906,7.31429688 45.3698906,7.46195313 C45.3698906,7.60960938 45.4150078,7.73265625 45.5052422,7.83109375 C45.5954766,7.92953125 45.7291875,7.97875 45.906375,7.97875 Z M46.3542656,14.2 L46.3542656,8.87453125 L45.4437187,8.87453125 L45.4437187,14.2 L46.3542656,14.2 Z M50.0220469,14.2984375 C50.6290781,14.2984375 51.1229062,14.1548828 51.5035312,13.8677734 C51.8841562,13.5806641 52.0744687,13.1992188 52.0744687,12.7234375 C52.0744687,12.4379687 52.0063828,12.1959766 51.8702109,11.9974609 C51.734039,11.7989453 51.5248594,11.6291406 51.2426719,11.4880469 C50.9604844,11.3469531 50.592164,11.2255469 50.1377109,11.1238281 C49.6832578,11.0221094 49.3690781,10.9154688 49.1951719,10.8039063 C49.0212656,10.6923438 48.9343125,10.5266406 48.9343125,10.3067969 C48.9343125,10.0738281 49.0278281,9.88515625 49.2148594,9.74078125 C49.4018906,9.59640625 49.6611094,9.52421875 49.9925156,9.52421875 C50.3140781,9.52421875 50.5806797,9.61445312 50.7923203,9.79492188 C51.0039609,9.97539063 51.1097812,10.1903125 51.1097812,10.4396875 L51.1097812,10.4396875 L52.02525,10.4396875 C52.02525,9.9540625 51.8373984,9.55539062 51.4616953,9.24367188 C51.0859922,8.93195313 50.5962656,8.77609375 49.9925156,8.77609375 C49.4182969,8.77609375 48.9466172,8.92703125 48.5774765,9.22890625 C48.2083359,9.53078125 48.0237656,9.89992188 48.0237656,10.3363281 C48.0237656,10.5988281 48.0885703,10.8252344 48.2181797,11.0155469 C48.347789,11.2058594 48.5479453,11.3699219 48.8186484,11.5077344 C49.0893515,11.6455469 49.4552109,11.7636719 49.9162265,11.8621094 C50.3772422,11.9605469 50.7004453,12.0778516 50.8858359,12.2140234 C51.0712265,12.3501953 51.1639219,12.5413281 51.1639219,12.7874219 C51.1639219,13.0203906 51.0597422,13.2066016 50.8513828,13.3460547 C50.6430234,13.4855078 50.3665781,13.5552344 50.0220469,13.5552344 C49.6479844,13.5552344 49.3469297,13.4658203 49.1188828,13.2869922 C48.8908359,13.1081641 48.7686094,12.8661719 48.7522031,12.5610156 L48.7522031,12.5610156 L47.8416562,12.5610156 C47.8416562,12.8760156 47.9343515,13.1688672 48.1197422,13.4395703 C48.3051328,13.7102734 48.5618906,13.9210938 48.8900156,14.0720313 C49.2181406,14.2229688 49.5954844,14.2984375 50.0220469,14.2984375 Z M55.0679531,14.2984375 C55.2943594,14.2984375 55.5273281,14.265625 55.7668594,14.2 L55.7668594,14.2 L55.7668594,13.4617188 C55.5831094,13.5010938 55.4387344,13.5207813 55.3337344,13.5207813 C55.1204531,13.5207813 54.9695156,13.4674609 54.8809219,13.3608203 C54.7923281,13.2541797 54.7480312,13.0942187 54.7480312,12.8809375 L54.7480312,12.8809375 L54.7480312,9.57835937 L55.74225,9.57835937 L55.74225,8.87453125 L54.7480312,8.87453125 L54.7480312,7.585 L53.8374844,7.585 L53.8374844,8.87453125 L52.867875,8.87453125 L52.867875,9.57835937 L53.8374844,9.57835937 L53.8374844,12.8809375 C53.8374844,13.33375 53.9408437,13.6832031 54.1475625,13.9292969 C54.3542812,14.1753906 54.6610781,14.2984375 55.0679531,14.2984375 Z M59.2672968,14.2984375 C60.1597968,14.2984375 60.8291718,13.9555469 61.2754218,13.2697656 L61.2754218,13.2697656 L60.71925,12.8366406 C60.5519062,13.0532031 60.3566718,13.2271094 60.1335468,13.3583594 C59.9104218,13.4896094 59.6380781,13.5552344 59.3165156,13.5552344 C58.8637031,13.5552344 58.4904609,13.3936328 58.196789,13.0704297 C57.9031172,12.7472266 57.7497187,12.323125 57.7365937,11.798125 L57.7365937,11.798125 L61.3443281,11.798125 L61.3443281,11.4191406 C61.3443281,10.5692969 61.152375,9.91632812 60.7684687,9.46023438 C60.3845625,9.00414063 59.8464375,8.77609375 59.1540937,8.77609375 C58.7308125,8.77609375 58.3378828,8.89339844 57.9753047,9.12800781 C57.6127265,9.36261719 57.330539,9.68746094 57.1287422,10.1025391 C56.9269453,10.5176172 56.8260468,10.9892969 56.8260468,11.5175781 L56.8260468,11.5175781 L56.8260468,11.6849219 C56.8260468,12.4789844 57.0524531,13.1130859 57.5052656,13.5872266 C57.9580781,14.0613672 58.5454218,14.2984375 59.2672968,14.2984375 Z M60.4337812,11.05 L57.766125,11.05 C57.8251875,10.5676563 57.9794062,10.1927734 58.2287812,9.92535156 C58.4781562,9.65792969 58.7865937,9.52421875 59.1540937,9.52421875 C59.5347187,9.52421875 59.8365937,9.65136719 60.0597187,9.90566406 C60.2828437,10.1599609 60.4075312,10.5184375 60.4337812,10.9810937 L60.4337812,10.9810937 L60.4337812,11.05 Z M63.5601562,14.2 L63.5601562,10.4052344 C63.6848437,10.1492969 63.85875,9.94257813 64.081875,9.78507813 C64.305,9.62757812 64.5642187,9.54882812 64.8595312,9.54882812 C65.22375,9.54882812 65.4919922,9.64070312 65.6642578,9.82445313 C65.8365234,10.0082031 65.9242968,10.2920312 65.9275781,10.6759375 L65.9275781,10.6759375 L65.9275781,14.2 L66.838125,14.2 L66.838125,10.6808594 C66.8282812,9.41101563 66.260625,8.77609375 65.1351562,8.77609375 C64.4789062,8.77609375 63.9473437,9.03203125 63.5404687,9.54390625 L63.5404687,9.54390625 L63.5109375,8.87453125 L62.6496093,8.87453125 L62.6496093,14.2 L63.5601562,14.2 Z M73.3960312,14.2984375 C73.8750937,14.2984375 74.2991953,14.1835938 74.6683359,13.9539063 C75.0374765,13.7242188 75.3213046,13.4034766 75.5198203,12.9916797 C75.7183359,12.5798828 75.8175937,12.1147656 75.8175937,11.5963281 L75.8175937,11.5963281 L75.8175937,11.5323438 C75.8175937,10.6989063 75.5936484,10.0311719 75.1457578,9.52914063 C74.6978671,9.02710938 74.1113437,8.77609375 73.3861875,8.77609375 C72.9169687,8.77609375 72.4994296,8.88929688 72.1335703,9.11570312 C71.7677109,9.34210937 71.4822421,9.66367188 71.277164,10.0803906 C71.0720859,10.4971094 70.9695468,10.9663281 70.9695468,11.4880469 L70.9695468,11.4880469 L70.9695468,11.5520313 C70.9695468,12.3789062 71.1934921,13.0433594 71.6413828,13.5453906 C72.0892734,14.0474219 72.6741562,14.2984375 73.3960312,14.2984375 Z M73.3960312,13.5552344 C72.9366562,13.5552344 72.5699765,13.3764063 72.2959921,13.01875 C72.0220078,12.6610937 71.8850156,12.1869531 71.8850156,11.5963281 C71.8850156,10.9302344 72.0228281,10.4183594 72.2984531,10.0607031 C72.5740781,9.70304688 72.9366562,9.52421875 73.3861875,9.52421875 C73.8455625,9.52421875 74.2138828,9.70550781 74.4911484,10.0680859 C74.768414,10.4306641 74.9070468,10.9039844 74.9070468,11.4880469 C74.9070468,12.1410156 74.770875,12.6487891 74.4985312,13.0113672 C74.2261875,13.3739453 73.8586875,13.5552344 73.3960312,13.5552344 Z M78.1220156,14.2 L78.1220156,10.4052344 C78.2467031,10.1492969 78.4206093,9.94257813 78.6437343,9.78507813 C78.8668593,9.62757812 79.1260781,9.54882812 79.4213906,9.54882812 C79.7856093,9.54882812 80.0538515,9.64070312 80.2261171,9.82445313 C80.3983828,10.0082031 80.4861562,10.2920312 80.4894374,10.6759375 L80.4894374,10.6759375 L80.4894374,14.2 L81.3999843,14.2 L81.3999843,10.6808594 C81.3901406,9.41101563 80.8224843,8.77609375 79.6970156,8.77609375 C79.0407656,8.77609375 78.5092031,9.03203125 78.1023281,9.54390625 L78.1023281,9.54390625 L78.0727968,8.87453125 L77.2114687,8.87453125 L77.2114687,14.2 L78.1220156,14.2 Z" id="Listenon" fill="#5F6368" fill-rule="nonzero"></path>
|
|
27
|
+
</g>
|
|
28
|
+
</g>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="165px" height="40px" viewBox="0 0 165 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>podcasts-subscription-spotify</title>
|
|
4
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="podcasts-subscription-spotify" fill-rule="nonzero">
|
|
6
|
+
<path d="M155.462317,0.5 L9.54298794,0.5 C9.23718907,0.5 9.10222971,0.5 8.9333245,0.5 C8.75914935,0.500641232 8.60147796,0.501164881 8.4503371,0.501990385 C8.31093757,0.503042293 8.31093757,0.503042293 8.17123664,0.504701114 C8.05145483,0.50622126 7.95430604,0.507728185 7.73523354,0.511324656 C7.63560663,0.512955798 7.63560663,0.512955798 7.53999468,0.514444796 C6.77532204,0.533501958 6.17590622,0.582235722 5.60805245,0.683921078 C4.97373089,0.794883016 4.40022513,0.982751407 3.84712442,1.26350199 C3.29467346,1.54621893 2.78971907,1.91364998 2.350874,2.35265774 C1.9136357,2.78495239 1.54752652,3.28900419 1.26513746,3.84593553 C0.985573621,4.39236294 0.798895233,4.96583863 0.686361558,5.611175 C0.583694388,6.17433335 0.534557489,6.76869157 0.514887789,7.53850954 C0.510904757,7.67113311 0.508296788,7.80771984 0.505899647,7.99045837 C0.50486648,8.07179097 0.50486648,8.07179097 0.503895865,8.15352806 C0.502129327,8.30229721 0.502129327,8.30229721 0.499937643,8.4443 C0.499937643,8.98825 0.499937643,8.98825 0.499937643,9.5361 L0.499937643,30.4648 C0.499937643,30.904206 0.499937643,30.904206 0.499937643,31.3385814 C0.499937643,31.4485499 0.499937643,31.4485499 0.499937643,31.5507036 C0.502129454,31.7019465 0.502129454,31.7019465 0.503895689,31.8505134 C0.504852178,31.9308028 0.504852178,31.9308028 0.505868535,32.0105901 C0.508268666,32.1932042 0.510882868,32.330397 0.514950025,32.46773 C0.53455833,33.2352268 0.583696518,33.8295783 0.687037849,34.3965174 C0.799275611,35.040243 0.986350407,35.6158457 1.26553381,36.1597408 C1.54826938,36.7147517 1.914868,37.2179189 2.35426946,37.6489326 C2.78903353,38.087359 3.2925666,38.4535299 3.84733733,38.734707 C4.39339648,39.0144827 4.96441014,39.2017457 5.61010376,39.3183422 C6.16895541,39.4185036 6.75381439,39.4656174 7.53852502,39.4874207 C7.85797197,39.4944423 8.15615495,39.498 8.44996762,39.4980075 C8.60147796,39.4988351 8.75914935,39.4993588 8.9333245,39.5 C9.10222971,39.5 9.23718907,39.5 9.54298794,39.5 L155.462417,39.5 C155.732811,39.5 155.853496,39.5 156.004198,39.5 C156.203248,39.499476 156.378467,39.4989313 156.547359,39.498 C156.839864,39.498 157.147833,39.4943606 157.45627,39.4874902 C158.246626,39.4656826 158.829251,39.4186451 159.383,39.3184485 C160.029195,39.2018314 160.602236,39.01452 161.155288,38.7338785 C161.707735,38.4533688 162.211183,38.0870066 162.649415,37.6447625 C163.081256,37.2194537 163.449134,36.7156181 163.736761,36.1609378 C164.015456,35.6102074 164.202464,35.0320689 164.310967,34.3909277 C164.412834,33.8435049 164.459672,33.2868196 164.488329,32.4742169 C164.490132,32.3308112 164.491187,32.1827793 164.491715,32.0155813 C164.492114,31.8894402 164.492193,31.7888194 164.492309,31.5478582 C164.494473,31.439896 164.494473,31.439896 164.49608,31.3317328 C164.5,31.0931827 164.5,30.9019181 164.5,30.4648 L164.5,9.5361 C164.5,8.99184779 164.5,8.7523562 164.492193,8.4443 C164.492193,8.2144775 164.492112,8.1126965 164.491708,7.98543854 C164.491176,7.81794208 164.49012,7.67034488 164.488598,7.54094437 C164.459672,6.71708606 164.412834,6.16037793 164.30953,5.60477958 C164.202818,4.97382724 164.016273,4.39803029 163.738554,3.8473707 C163.450094,3.28832338 163.082566,2.78338505 162.646527,2.35037068 C162.210469,1.91386133 161.705543,1.54618981 161.157075,1.26502432 C160.595147,0.98252524 160.019849,0.794680145 159.382845,0.683323671 C158.822393,0.581999014 158.225384,0.533353753 157.462028,0.514435472 C157.37409,0.513008314 157.37409,0.513008314 157.285869,0.511551041 C157.143548,0.509206314 157.143548,0.509206314 157.001224,0.507006454 C156.826438,0.504389215 156.681281,0.502689027 156.544858,0.501793744 C156.379942,0.500968735 156.206042,0.50047943 156.008899,0.5 C155.73508,0.5 155.73508,0.5 155.462317,0.5 Z" id="Path" stroke="#9AA0A6" fill="#FFFFFF"></path>
|
|
7
|
+
<path d="M89.3474827,18.6666318 C89.8655834,18.9767175 90.5368956,18.8045568 90.8449931,18.2823221 C91.1529511,17.7609293 90.9825765,17.086458 90.4630805,16.7763724 C86.1268307,14.1880695 79.2652415,13.9447715 75.1375994,15.2046171 C74.5597769,15.3811274 74.2340977,15.994704 74.4090771,16.5755884 C74.5840564,17.1561922 75.19467,17.4839569 75.7720738,17.3078675 C79.3678011,16.2105012 85.5808227,16.4173185 89.3474827,18.6666318 Z M89.2241321,21.9981581 C89.4874383,21.5679669 89.3526456,21.0039197 88.9244067,20.7387334 C85.317656,18.5099053 80.0417645,17.8827186 75.7976091,19.1776417 C75.3167648,19.3249675 75.0449469,19.8356967 75.1902048,20.320188 C75.3364395,20.803697 75.8453307,21.0768811 76.3271518,20.9305375 C80.0423227,19.7965502 84.8308117,20.3587733 87.9710904,22.2998251 C88.3993293,22.5644502 88.9599887,22.4293314 89.2241321,21.9981581 Z M87.7942971,25.1976523 C88.0043002,24.8524892 87.8961591,24.4013918 87.5527587,24.1905055 C84.4727599,22.298001 80.6544712,21.8575672 76.203243,22.8808497 C75.8104465,22.9707886 75.5656987,23.363517 75.6555605,23.7576484 C75.7450037,24.1516395 76.1355676,24.3987259 76.5275268,24.3083661 C80.5950285,23.3740402 84.0488467,23.7549825 86.7929801,25.4413712 C87.1359618,25.6523978 87.5844336,25.5437977 87.7942971,25.1976523 Z M82.4353811,8.25 C88.8891039,8.25 94.1206227,13.5105113 94.1206227,19.9998597 C94.1206227,26.489629 88.8891039,31.75 82.4353811,31.75 C75.9817979,31.75 70.75,26.489629 70.75,19.9998597 C70.75,13.5105113 75.9817979,8.25 82.4353811,8.25 Z M102.541677,19.0972439 C104.999759,19.698333 106.002193,20.6313961 106.002193,22.3184863 C106.002193,24.31468 104.485287,25.604552 102.137857,25.604552 C100.478484,25.604552 98.9409261,25.011601 97.6905356,23.8892594 C97.637093,23.8418345 97.6312324,23.7598934 97.6775587,23.7050321 L98.7821331,22.3831693 C98.8047381,22.3558088 98.8372502,22.3392522 98.8726926,22.3363057 C98.9064605,22.3343414 98.9430192,22.345005 98.9696707,22.3680158 C100.044245,23.3037448 101.004956,23.7026468 102.182509,23.7026468 C103.24285,23.7026468 103.901743,23.2413067 103.901743,22.4992059 C103.901743,21.8293648 103.575924,21.4548768 101.645291,21.0077081 C99.376979,20.4564292 98.0643551,19.7422501 98.0643551,17.7252905 C98.0643551,15.8444318 99.5860054,14.5298652 101.764456,14.5298652 C103.246059,14.5298652 104.513613,14.9714215 105.639257,15.8796496 C105.693816,15.9237071 105.70484,16.002842 105.664374,16.0603692 L104.679243,17.4567367 C104.658452,17.4862018 104.627335,17.5055646 104.592032,17.5108964 C104.55673,17.5165088 104.520869,17.5079499 104.492264,17.4864825 C103.546343,16.7773545 102.644376,16.4328929 101.734595,16.4328929 C100.79607,16.4328929 100.164805,16.8863756 100.164805,17.5605663 C100.164805,18.2739035 100.524112,18.6134543 102.541677,19.0972439 Z M113.017133,21.3583434 C113.017133,19.9566441 112.124376,18.9396756 110.894916,18.9396756 C109.659595,18.9396756 108.727768,19.9790938 108.727768,21.3583434 C108.727768,22.7377333 109.659595,23.7770112 110.894916,23.7770112 C112.144469,23.7770112 113.017133,22.7829132 113.017133,21.3583434 Z M111.313108,17.09642 C113.203694,17.09642 115.117583,18.5602767 115.117583,21.3583434 C115.117583,24.1558488 113.203694,25.6192846 111.313108,25.6192846 C110.295884,25.6192846 109.461174,25.2398857 108.772838,24.4631283 L108.772838,27.7228156 C108.772838,27.7961979 108.713674,27.8559701 108.640697,27.8559701 L106.834251,27.8559701 C106.761274,27.8559701 106.70225,27.7961979 106.70225,27.7228156 L106.70225,17.3957017 C106.70225,17.3223195 106.761274,17.2625473 106.834251,17.2625473 L108.640697,17.2625473 C108.713674,17.2625473 108.772838,17.3223195 108.772838,17.3957017 L108.772838,18.3251167 C109.461034,17.499391 110.295605,17.09642 111.313108,17.09642 Z M120.023422,23.7918841 C121.330883,23.7918841 122.279874,22.7816504 122.279874,21.3887907 C122.279874,20.0005612 121.296976,18.9542678 119.993561,18.9542678 C118.694612,18.9542678 117.75204,19.9653434 117.75204,21.3583434 C117.75204,22.7455907 118.72838,23.7918841 120.023422,23.7918841 Z M120.023422,17.09642 C122.450109,17.09642 124.350323,18.9684392 124.350323,21.3583434 C124.350323,23.7562453 122.436992,25.6351397 119.993561,25.6351397 C117.575526,25.6351397 115.681172,23.7697151 115.681172,21.3887907 C115.681172,18.9816283 117.588642,17.09642 120.023422,17.09642 Z M129.549748,17.2625473 C129.622726,17.2625473 129.681471,17.3223195 129.681471,17.3957017 L129.681471,18.9569337 C129.681471,19.0301757 129.622726,19.0899478 129.549748,19.0899478 L127.561766,19.0899478 L127.561766,22.8450706 C127.561766,23.438162 127.820467,23.7026468 128.399964,23.7026468 C128.776016,23.7026468 129.112439,23.6214072 129.460445,23.4453178 C129.500771,23.4252535 129.549748,23.4265162 129.589098,23.4513512 C129.628028,23.4754845 129.651889,23.5187001 129.651889,23.5645815 L129.651889,25.0513088 C129.651889,25.0987336 129.626214,25.1433523 129.585051,25.1665035 C129.078392,25.4554022 128.540757,25.5899598 127.892747,25.5899598 C126.299096,25.5899598 125.491037,24.7622697 125.491037,23.1297601 L125.491037,19.0899478 L124.62242,19.0899478 C124.549582,19.0899478 124.490837,19.0301757 124.490837,18.9569337 L124.490837,17.3957017 C124.490837,17.3223195 124.549582,17.2625473 124.62242,17.2625473 L125.491037,17.2625473 L125.491037,15.2187884 C125.491037,15.1454062 125.55048,15.0857743 125.623597,15.0857743 L127.429903,15.0857743 C127.502881,15.0857743 127.561766,15.1454062 127.561766,15.2187884 L127.561766,17.2625473 L129.549748,17.2625473 Z M136.475943,17.270545 L139.562081,17.270545 C139.61692,17.270545 139.666176,17.3045001 139.685432,17.3561342 L141.795649,22.893197 L143.722236,17.3597823 C143.740655,17.3064644 143.791167,17.270545 143.8474,17.270545 L145.728079,17.270545 C145.771894,17.270545 145.811941,17.2922931 145.836778,17.3282125 C145.861756,17.3646932 145.86636,17.4108552 145.850732,17.4518258 L142.716593,25.5954319 C142.06649,27.2763485 141.329177,27.9012903 139.995204,27.9012903 C139.28217,27.9012903 138.705046,27.7527017 138.065827,27.404592 C138.00471,27.3714788 137.979872,27.2965531 138.009035,27.232712 L138.621323,25.8819454 C138.635975,25.8481306 138.664999,25.8224538 138.699464,25.8101065 C138.734348,25.7993026 138.772442,25.8022491 138.804675,25.8200685 C139.147378,26.0086455 139.482545,26.1041968 139.800829,26.1041968 C140.194602,26.1041968 140.483025,25.9739889 140.776332,25.3194416 L138.192526,19.0899478 L136.505804,19.0899478 L136.505804,25.3211253 C136.505804,25.3945076 136.446361,25.4541395 136.373383,25.4541395 L134.566938,25.4541395 C134.4941,25.4541395 134.435215,25.3945076 134.435215,25.3211253 L134.435215,19.0899478 L133.567296,19.0899478 C133.494457,19.0899478 133.434736,19.0301757 133.434736,18.9569337 L133.434736,17.387704 C133.434736,17.3144621 133.494457,17.2546899 133.567296,17.2546899 L134.435215,17.2546899 L134.435215,16.8702399 C134.435215,15.0836697 135.317089,14.1388206 136.985811,14.1388206 C137.671496,14.1388206 138.129456,14.2488238 138.487368,14.3557402 C138.543322,14.3729983 138.580718,14.4249131 138.580718,14.4832822 L138.580718,16.0140668 C138.580718,16.0567212 138.561044,16.0969902 138.526159,16.1221057 C138.492252,16.1472213 138.448716,16.1538158 138.406995,16.1406267 C138.068199,16.0269754 137.765683,15.9517691 137.389073,15.9517691 C136.757529,15.9517691 136.475943,16.2810772 136.475943,17.01953 L136.475943,17.270545 Z M132.460628,17.2625473 C132.533467,17.2625473 132.592909,17.3223195 132.592909,17.3957017 L132.592909,25.3211253 C132.592909,25.3945076 132.533467,25.4541395 132.460628,25.4541395 L130.654044,25.4541395 C130.581066,25.4541395 130.521763,25.3945076 130.521763,25.3211253 L130.521763,17.3957017 C130.521763,17.3223195 130.581066,17.2625473 130.654044,17.2625473 L132.460628,17.2625473 Z M131.566476,13.6539084 C132.281881,13.6539084 132.862076,14.2366168 132.862076,14.956268 C132.862076,15.6761998 132.281881,16.2594694 131.566476,16.2594694 C130.85093,16.2594694 130.270038,15.6761998 130.270038,14.956268 C130.270038,14.2366168 130.85093,13.6539084 131.566476,13.6539084 Z M147.466988,18.0509505 L147.136007,18.0509505 L147.136007,18.475389 L147.466988,18.475389 C147.6322,18.475389 147.730853,18.3941494 147.730853,18.2629593 C147.730853,18.124894 147.6322,18.0509505 147.466988,18.0509505 Z M147.681596,18.6563892 L148.041183,19.1626285 L147.737969,19.1626285 L147.414243,18.698342 L147.136007,18.698342 L147.136007,19.1626285 L146.882189,19.1626285 L146.882189,17.8208417 L147.477314,17.8208417 C147.787226,17.8208417 147.991229,17.9802342 147.991229,18.248788 C147.991229,18.4687944 147.864808,18.6032116 147.681596,18.6563892 Z M147.399732,17.3742343 C146.748513,17.3742343 146.255668,17.8947852 146.255668,18.5322146 C146.255668,19.1692231 146.745024,19.6828989 147.393034,19.6828989 C148.044113,19.6828989 148.537376,19.1626285 148.537376,18.5249185 C148.537376,17.8877697 148.047741,17.3742343 147.399732,17.3742343 Z M147.393034,19.8107215 C146.678047,19.8107215 146.121713,19.2333449 146.121713,18.5322146 C146.121713,17.8309441 146.685303,17.2471132 147.399732,17.2471132 C148.114579,17.2471132 148.671053,17.8243495 148.671053,18.5249185 C148.671053,19.2260487 148.107882,19.8107215 147.393034,19.8107215 Z" id="Combined-Shape" fill="#1ED760"></path>
|
|
8
|
+
<path d="M19.609,22.904 L15.75,22.904 L15.75,16.8775 L16.923,16.8775 L16.923,21.782 L19.609,21.782 L19.609,22.904 Z M22.406419,22.904 L21.216419,22.904 L21.216419,16.8775 L22.406419,16.8775 L22.406419,22.904 Z M28.6378379,18.314 L27.5838379,18.637 C27.5243379,18.3055 27.2523379,17.787 26.4873379,17.787 C25.9178379,17.787 25.5438379,18.1525 25.5438379,18.552 C25.5438379,18.8835 25.7563379,19.147 26.1983379,19.232 L27.0398379,19.3935 C28.1363379,19.606 28.7228379,20.32 28.7228379,21.17 C28.7228379,22.0965 27.9493379,23.0315 26.5468379,23.0315 C24.9488379,23.0315 24.2433379,22.003 24.1498379,21.1445 L25.2378379,20.8555 C25.2888379,21.4505 25.7053379,21.986 26.5553379,21.986 C27.1843379,21.986 27.5328379,21.6715 27.5328379,21.2465 C27.5328379,20.898 27.2693379,20.626 26.8018379,20.5325 L25.9603379,20.3625 C24.9998379,20.167 24.3793379,19.5465 24.3793379,18.637 C24.3793379,17.566 25.3398379,16.75 26.4788379,16.75 C27.9408379,16.75 28.5018379,17.634 28.6378379,18.314 Z M34.9882569,17.991 L33.0842569,17.991 L33.0842569,22.904 L31.9027569,22.904 L31.9027569,17.991 L29.9987569,17.991 L29.9987569,16.8775 L34.9882569,16.8775 L34.9882569,17.991 Z M40.3696759,22.904 L36.5956759,22.904 L36.5956759,16.8775 L40.3696759,16.8775 L40.3696759,17.9825 L37.7686759,17.9825 L37.7686759,19.3595 L40.1231759,19.3595 L40.1231759,20.405 L37.7686759,20.405 L37.7686759,21.799 L40.3696759,21.799 L40.3696759,22.904 Z M47.4170948,22.904 L46.1845948,22.904 L43.4475948,18.6285 L43.4475948,22.904 L42.2745948,22.904 L42.2745948,16.8775 L43.7365948,16.8775 L46.2440948,20.864 L46.2440948,16.8775 L47.4170948,16.8775 L47.4170948,22.904 Z M53.1054328,19.8865 C53.1054328,21.2465 54.0574328,21.8925 54.9839328,21.8925 C55.9189328,21.8925 56.8709328,21.2465 56.8709328,19.8865 C56.8709328,18.5265 55.9189328,17.8805 54.9839328,17.8805 C54.0574328,17.8805 53.1054328,18.5265 53.1054328,19.8865 Z M51.8899328,19.895 C51.8899328,17.9485 53.3519328,16.75 54.9839328,16.75 C56.6244328,16.75 58.0864328,17.9485 58.0864328,19.895 C58.0864328,21.833 56.6244328,23.0315 54.9839328,23.0315 C53.3519328,23.0315 51.8899328,21.833 51.8899328,19.895 Z M65.0488517,22.904 L63.8163517,22.904 L61.0793517,18.6285 L61.0793517,22.904 L59.9063517,22.904 L59.9063517,16.8775 L61.3683517,16.8775 L63.8758517,20.864 L63.8758517,16.8775 L65.0488517,16.8775 L65.0488517,22.904 Z" id="LISTEN-ON" fill="#000000"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="28px" height="20px" viewBox="0 0 28 20" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<title>Path</title>
|
|
4
|
+
<g id="Section-/-Nav-/-Footer-/-Architects" transform="translate(-148.000000, -447.000000)">
|
|
5
|
+
<path d="M163.003774,447.648649 C164.8,447.648649 166.384906,448.675676 167.230189,450.189189 C167.969811,449.864865 168.762264,449.648649 169.607547,449.648649 C172.883019,449.648649 175.524528,452.351351 175.524528,455.702703 C175.524528,459.054054 172.883019,461.756757 169.607547,461.756757 C169.184906,461.756757 168.815094,461.702703 168.445283,461.648649 C167.70566,463 166.279245,463.918919 164.641509,463.918919 C163.954717,463.918919 163.320755,463.756757 162.739623,463.486486 C162,465.27027 160.256604,466.513514 158.196226,466.513514 C156.083019,466.513514 154.233962,465.162162 153.54717,463.216216 C153.230189,463.27027 152.913208,463.324324 152.596226,463.324324 C150.060377,463.324324 148,461.216216 148,458.621622 C148,456.891892 148.898113,455.378378 150.271698,454.567568 C150.007547,453.918919 149.849057,453.162162 149.849057,452.405405 C149.849057,449.432432 152.226415,447 155.184906,447 C157.033962,447.054054 158.566038,447.864865 159.516981,449.162162 C160.415094,448.243243 161.630189,447.648649 163.003774,447.648649 Z" id="Path" fill="#00A1E0"></path>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 273 191" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<title>Path</title>
|
|
4
|
+
<g id="Components" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="Salesforce_Corporate_Logo_RGB">
|
|
6
|
+
<path d="M113.3,21.2 C122.1,12.1 134.3,6.4 147.8,6.4 C165.8,6.4 181.4,16.4 189.8,31.3 C197.1,28.1 205.1,26.3 213.5,26.3 C245.9,26.3 272.2,52.8 272.2,85.5 C272.2,118.2 245.9,144.7 213.5,144.7 C209.5,144.7 205.7,144.3 201.9,143.5 C194.6,156.6 180.5,165.5 164.5,165.5 C157.8,165.5 151.4,163.9 145.7,161.2 C138.2,178.7 120.9,191 100.7,191 C79.6,191 61.7,177.7 54.8,159 C51.8,159.6 48.7,160 45.5,160 C20.4,160 0.1,139.4 0.1,114.1 C0.1,97.1 9.2,82.3 22.8,74.3 C20,67.9 18.5,60.8 18.5,53.3 C18.5,24.1 42.2,0.5 71.4,0.5 C88.4,0.5 103.6,8.6 113.3,21.2 Z" id="Path" fill="#0D9DDA" fill-rule="nonzero"></path>
|
|
7
|
+
<g id="Group" transform="translate(39.000000, 66.000000)" fill="#FFFFFF">
|
|
8
|
+
<path d="M0.4,33.3 C0.2,33.7 0.5,33.8 0.5,33.9 C1,34.3 1.5,34.5 2.1,34.8 C4.9,36.3 7.5,36.7 10.2,36.7 C15.8,36.7 19.3,33.7 19.3,29 L19.3,28.9 C19.3,24.5 15.4,22.9 11.7,21.7 L11.2,21.5 C8.4,20.6 6,19.8 6,18 L6,17.9 C6,16.3 7.4,15.2 9.6,15.2 C12,15.2 14.9,16 16.7,17 C16.7,17 17.2,17.3 17.4,16.8 C17.5,16.5 18.4,14 18.5,13.7 C18.6,13.4 18.4,13.2 18.2,13.1 C16.1,11.8 13.2,11 10.2,11 L9.6,11 C4.5,11 0.9,14.1 0.9,18.5 L0.9,18.6 C0.9,23.3 4.8,24.8 8.5,25.8 L9.1,26 C11.8,26.8 14.1,27.5 14.1,29.4 L14.1,29.5 C14.1,31.2 12.6,32.5 10.2,32.5 C9.3,32.5 6.3,32.5 3,30.4 C2.6,30.2 2.4,30 2.1,29.8 C1.9,29.7 1.5,29.5 1.4,30.1 L0.4,33.3 Z" id="Path" fill-rule="nonzero"></path>
|
|
9
|
+
<path d="M82.2,33.3 C82,33.7 82.3,33.8 82.3,33.9 C82.8,34.3 83.3,34.5 83.9,34.8 C86.7,36.3 89.3,36.7 92,36.7 C97.6,36.7 101.1,33.7 101.1,29 L101.1,28.9 C101.1,24.5 97.2,22.9 93.5,21.7 L93,21.5 C90.2,20.6 87.8,19.8 87.8,18 L87.8,17.9 C87.8,16.3 89.2,15.2 91.4,15.2 C93.8,15.2 96.7,16 98.5,17 C98.5,17 99,17.3 99.2,16.8 C99.3,16.5 100.2,14 100.3,13.7 C100.4,13.4 100.2,13.2 100,13.1 C97.9,11.8 95,11 92,11 L91.4,11 C86.3,11 82.7,14.1 82.7,18.5 L82.7,18.6 C82.7,23.3 86.6,24.8 90.3,25.8 L90.9,26 C93.6,26.8 95.9,27.5 95.9,29.4 L95.9,29.5 C95.9,31.2 94.4,32.5 92,32.5 C91.1,32.5 88.1,32.5 84.8,30.4 C84.4,30.2 84.2,30 83.9,29.8 C83.8,29.7 83.3,29.6 83.2,30.1 L82.2,33.3 Z" id="Path" fill-rule="nonzero"></path>
|
|
10
|
+
<path d="M142.6,18.9 C142.1,17.4 141.4,16 140.5,14.9 C139.5,13.8 138.3,12.8 136.9,12.2 C135.5,11.5 133.8,11.2 131.9,11.2 C130,11.2 128.3,11.5 126.9,12.2 C125.5,12.9 124.3,13.8 123.3,14.9 C122.4,16 121.6,17.4 121.2,18.9 C120.7,20.4 120.5,22.1 120.5,23.9 C120.5,25.7 120.7,27.4 121.2,28.9 C121.7,30.4 122.4,31.8 123.3,32.9 C124.3,34 125.5,35 126.9,35.6 C128.3,36.2 130,36.6 131.9,36.6 C133.8,36.6 135.5,36.3 136.9,35.6 C138.3,35 139.5,34 140.5,32.9 C141.4,31.8 142.2,30.4 142.6,28.9 C143.1,27.4 143.3,25.7 143.3,23.9 C143.3,22.1 143.1,20.4 142.6,18.9 M138,23.9 C138,26.6 137.5,28.7 136.5,30.2 C135.5,31.7 134,32.4 132,32.4 C129.9,32.4 128.5,31.7 127.5,30.2 C126.5,28.7 126,26.6 126,23.9 C126,21.2 126.5,19.1 127.5,17.6 C128.5,16.1 129.9,15.4 132,15.4 C134.1,15.4 135.6,16.1 136.5,17.6 C137.5,19.1 138,21.2 138,23.9" id="Shape" fill-rule="nonzero"></path>
|
|
11
|
+
<path d="M180.9,31.7 C180.7,31.2 180.3,31.4 180.3,31.4 C179.6,31.7 178.9,31.9 178.1,32 C177.3,32.1 176.5,32.2 175.5,32.2 C173.2,32.2 171.5,31.5 170.2,30.2 C168.9,28.9 168.2,26.7 168.2,23.8 C168.2,21.2 168.8,19.2 170,17.7 C171.1,16.2 172.9,15.4 175.2,15.4 C177.1,15.4 178.6,15.6 180.1,16.1 C180.1,16.1 180.5,16.3 180.6,15.8 C181,14.7 181.3,13.9 181.7,12.6 C181.8,12.2 181.5,12.1 181.4,12.1 C180.8,11.9 179.4,11.5 178.3,11.3 C177.3,11.1 176.1,11.1 174.8,11.1 C172.8,11.1 171.1,11.4 169.6,12.1 C168.1,12.8 166.8,13.7 165.8,14.8 C164.8,15.9 164,17.3 163.5,18.8 C163,20.3 162.7,22 162.7,23.8 C162.7,27.7 163.7,30.8 165.8,33.1 C167.9,35.4 171,36.6 175,36.6 C177.4,36.6 179.8,36.1 181.6,35.4 C181.6,35.4 181.9,35.2 181.8,34.8 L180.9,31.7 Z" id="Path"></path>
|
|
12
|
+
<path d="M204.7,18 C204.3,16.5 203.3,15 202.7,14.3 C201.7,13.2 200.7,12.4 199.7,12 C198.4,11.4 196.9,11.1 195.2,11.1 C193.2,11.1 191.4,11.4 190,12.1 C188.5,12.8 187.3,13.7 186.4,14.9 C185.4,16.1 184.7,17.4 184.3,19 C183.8,20.6 183.6,22.2 183.6,24 C183.6,25.8 183.8,27.5 184.3,29 C184.8,30.5 185.5,31.9 186.6,33 C187.6,34.1 189,35 190.6,35.6 C192.2,36.2 194.1,36.5 196.3,36.5 C200.9,36.5 203.3,35.5 204.2,34.9 C204.4,34.8 204.5,34.6 204.3,34.1 L203.3,31.2 C203.1,30.8 202.7,30.9 202.7,30.9 C201.6,31.3 200,32.1 196.2,32.1 C193.8,32.1 191.9,31.4 190.8,30.2 C189.6,29 189.1,27.3 189,25 L204.8,25 C204.8,25 205.2,25 205.3,24.6 C205.2,24.6 205.7,21.6 204.7,18 Z M189,21.3 C189.2,19.8 189.6,18.6 190.3,17.6 C191.3,16.1 192.7,15.3 194.8,15.3 C196.9,15.3 198.2,16.1 199.2,17.6 C199.9,18.6 200.1,19.9 200.2,21.3 L189,21.3 Z" id="Shape"></path>
|
|
13
|
+
<path d="M78.4,18 C78,16.5 77,15 76.4,14.3 C75.4,13.2 74.4,12.4 73.4,12 C72.1,11.4 70.6,11.1 68.9,11.1 C66.9,11.1 65.1,11.4 63.7,12.1 C62.2,12.8 61,13.7 60.1,14.9 C59.1,16.1 58.4,17.4 58,19 C57.5,20.6 57.3,22.2 57.3,24 C57.3,25.8 57.5,27.5 58,29 C58.5,30.5 59.2,31.9 60.3,33 C61.3,34.1 62.7,35 64.3,35.6 C65.9,36.2 67.8,36.5 70,36.5 C74.6,36.5 77,35.5 77.9,34.9 C78.1,34.8 78.2,34.6 78,34.1 L77,31.2 C76.8,30.8 76.4,30.9 76.4,30.9 C75.3,31.3 73.7,32.1 69.9,32.1 C67.5,32.1 65.6,31.4 64.5,30.2 C63.3,29 62.8,27.3 62.7,25 L78.5,25 C78.5,25 78.9,25 79,24.6 C78.9,24.6 79.4,21.6 78.4,18 Z M62.7,21.3 C62.9,19.8 63.3,18.6 64,17.6 C65,16.1 66.4,15.3 68.5,15.3 C70.6,15.3 71.9,16.1 72.9,17.6 C73.5,18.6 73.8,19.9 73.9,21.3 L62.7,21.3 Z" id="Shape"></path>
|
|
14
|
+
<path d="M34.9,20.5 C34.3,20.5 33.4,20.4 32.4,20.4 C31,20.4 29.7,20.6 28.5,20.9 C27.3,21.2 26.2,21.7 25.2,22.4 C24.2,23.1 23.5,24 22.9,25 C22.3,26 22.1,27.3 22.1,28.6 C22.1,30 22.3,31.2 22.8,32.2 C23.3,33.2 24,34 24.9,34.7 C25.8,35.3 26.9,35.8 28.1,36.1 C29.3,36.4 30.7,36.5 32.3,36.5 C33.9,36.5 35.5,36.4 37.1,36.1 C38.6,35.8 40.5,35.5 41.1,35.3 C41.6,35.2 42.2,35 42.2,35 C42.6,34.9 42.6,34.5 42.6,34.5 L42.6,20.1 C42.6,16.9 41.8,14.6 40.1,13.1 C38.4,11.7 36,10.9 32.9,10.9 C31.7,10.9 29.8,11.1 28.7,11.3 C28.7,11.3 25.3,12 23.8,13.1 C23.8,13.1 23.5,13.3 23.7,13.7 L24.8,16.7 C24.9,17.1 25.3,17 25.3,17 C25.3,17 25.4,17 25.6,16.9 C28.6,15.3 32.5,15.3 32.5,15.3 C34.2,15.3 35.5,15.6 36.4,16.3 C37.3,17 37.7,18 37.7,20.1 L37.7,20.8 C36.1,20.7 34.9,20.5 34.9,20.5 Z M28.6,31.6 C28,31.1 27.9,31 27.7,30.7 C27.4,30.2 27.2,29.5 27.2,28.6 C27.2,27.2 27.7,26.2 28.6,25.5 C28.6,25.5 30,24.3 33.2,24.4 C35.5,24.4 37.5,24.8 37.5,24.8 L37.5,32 L37.5,32 C37.5,32 35.5,32.4 33.2,32.6 C30,32.7 28.6,31.6 28.6,31.6 Z" id="Shape" fill-rule="nonzero"></path>
|
|
15
|
+
<path d="M162.1,12.4 C162.2,12 162,11.9 161.9,11.8 C161.6,11.7 160.3,11.4 159.3,11.4 C157.3,11.3 156.2,11.6 155.2,12.1 C154.2,12.5 153.1,13.3 152.5,14.1 L152.5,12.2 C152.5,11.9 152.3,11.7 152,11.7 L148,11.7 C147.7,11.7 147.5,11.9 147.5,12.2 L147.5,35.7 C147.5,36 147.7,36.2 148,36.2 L152.1,36.2 C152.4,36.2 152.6,36 152.6,35.7 L152.6,23.9 C152.6,22.3 152.8,20.7 153.1,19.8 C153.4,18.8 153.9,18 154.5,17.5 C155.1,16.9 155.7,16.5 156.4,16.3 C157.1,16.1 157.9,16 158.5,16 C159.3,16 160.2,16.2 160.2,16.2 C160.5,16.2 160.7,16 160.8,15.8 C161.2,15 162,12.8 162.1,12.4 Z" id="Path"></path>
|
|
16
|
+
<path d="M123.2,1.5 C122.7,1.3 122.2,1.2 121.6,1.1 C121,1 120.3,0.9 119.5,0.9 C116.6,0.9 114.4,1.7 112.8,3.3 C111.2,4.9 110.2,7.3 109.6,10.5 L109.4,11.6 L105.8,11.6 C105.8,11.6 105.4,11.6 105.3,12.1 L104.7,15.4 C104.7,15.7 104.8,15.9 105.2,15.9 L108.7,15.9 L105.2,35.6 C104.9,37.2 104.6,38.5 104.3,39.5 C104,40.5 103.6,41.2 103.2,41.7 C102.8,42.2 102.4,42.6 101.8,42.8 C101.3,43 100.6,43.1 99.9,43.1 C99.5,43.1 99,43 98.6,43 C98.2,42.9 98,42.8 97.7,42.7 C97.7,42.7 97.3,42.5 97.1,43 C97,43.3 96,45.9 95.9,46.2 C95.8,46.5 95.9,46.8 96.1,46.8 C96.6,47 96.9,47.1 97.5,47.2 C98.4,47.4 99.1,47.4 99.8,47.4 C101.3,47.4 102.6,47.2 103.7,46.8 C104.8,46.4 105.8,45.7 106.6,44.8 C107.5,43.8 108.1,42.7 108.6,41.3 C109.1,39.9 109.6,38.1 110,36 L113.6,15.9 L118.8,15.9 C118.8,15.9 119.2,15.9 119.3,15.4 L119.9,12.1 C119.9,11.8 119.8,11.6 119.4,11.6 L114.4,11.6 C114.4,11.5 114.7,9.7 115.2,8 C115.4,7.3 115.9,6.7 116.3,6.3 C116.7,5.9 117.1,5.6 117.6,5.5 C118.1,5.3 118.7,5.3 119.3,5.3 C119.8,5.3 120.2,5.4 120.6,5.4 C121.1,5.5 121.3,5.6 121.4,5.6 C121.9,5.8 122,5.6 122.1,5.4 L123.3,2.1 C123.6,1.7 123.3,1.6 123.2,1.5 Z" id="Path"></path>
|
|
17
|
+
<path d="M52.7,35.6 C52.7,35.9 52.5,36.1 52.2,36.1 L48,36.1 C47.7,36.1 47.5,35.9 47.5,35.6 L47.5,2 C47.5,1.7 47.7,1.5 48,1.5 L52.2,1.5 C52.5,1.5 52.7,1.7 52.7,2 L52.7,35.6 Z" id="Path"></path>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="108px" height="22px" viewBox="0 0 108 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Group</title>
|
|
4
|
+
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="Header" transform="translate(-64.000000, -13.000000)">
|
|
6
|
+
<g id="Header-Menu" transform="translate(64.000000, 13.000000)">
|
|
7
|
+
<g id="Group" transform="translate(0.168000, 0.430000)">
|
|
8
|
+
<path d="M40.374,16.78 C42.306,16.78 43.734,15.436 43.734,13.476 C43.734,11.656 42.586,10.802 41.018,10.284 C40.248,10.032 39.296,9.836 39.296,8.842 C39.296,8.226 39.758,7.792 40.36,7.792 C41.088,7.792 41.466,8.254 41.522,8.954 L43.482,8.954 C43.398,7.274 42.096,6 40.416,6 C38.722,6 37.378,7.246 37.378,8.954 C37.378,10.144 37.854,10.998 38.904,11.544 C39.212,11.698 39.52,11.81 39.842,11.936 C40.752,12.286 41.816,12.51 41.816,13.686 C41.816,14.47 41.13,14.988 40.388,14.988 C39.562,14.988 39.086,14.386 39.016,13.602 L37,13.602 C37.084,15.436 38.54,16.78 40.374,16.78 Z M48.27,16.822 C49.222,16.822 50.37,16.332 50.986,15.604 L50.986,16.57 L52.694,16.57 L52.694,8.8 L50.986,8.8 L50.986,9.78 L50.958,9.78 C50.888,9.668 50.762,9.542 50.678,9.458 C50.048,8.884 49.236,8.534 48.382,8.534 C46.086,8.534 44.49,10.41 44.49,12.636 C44.49,14.848 45.932,16.822 48.27,16.822 Z M48.662,15.114 C47.332,15.114 46.352,14.022 46.352,12.72 C46.352,11.39 47.276,10.242 48.662,10.242 C50.034,10.242 50.93,11.334 50.93,12.664 C50.93,13.994 50.048,15.114 48.662,15.114 Z M55.97,16.57 L55.97,6.21 L54.108,6.21 L54.108,16.57 L55.97,16.57 Z M61.248,16.822 C62.9,16.822 64.496,15.702 65,14.12 L63.04,14.12 C62.662,14.806 62.004,15.114 61.248,15.114 C60.478,15.114 59.778,14.722 59.358,14.078 C59.246,13.91 59.148,13.728 59.106,13.518 L65.14,13.518 C65.21,13.21 65.252,12.888 65.252,12.58 C65.252,10.326 63.502,8.534 61.234,8.534 C58.882,8.534 57.146,10.382 57.146,12.706 C57.146,15.016 58.924,16.822 61.248,16.822 Z M63.348,12.02 L59.05,12.02 C59.316,10.914 60.114,10.242 61.248,10.242 C62.382,10.242 63.166,10.9 63.348,12.02 Z M68.85,16.822 C70.39,16.822 71.566,15.646 71.566,14.106 C71.566,12.664 70.6,12.16 69.396,11.782 C69.172,11.712 68.948,11.642 68.724,11.558 C68.402,11.432 68.08,11.32 68.08,10.914 C68.08,10.522 68.402,10.242 68.794,10.242 C69.214,10.242 69.452,10.508 69.536,10.914 L71.356,10.914 C71.3,9.556 70.18,8.534 68.822,8.534 C67.464,8.534 66.218,9.528 66.218,10.942 C66.218,12.09 66.918,12.804 67.954,13.168 C68.346,13.308 69.34,13.574 69.592,13.924 C69.676,14.05 69.704,14.19 69.704,14.33 C69.704,14.806 69.312,15.114 68.864,15.114 C68.22,15.114 67.968,14.68 67.842,14.12 L65.938,14.12 C65.994,14.764 66.12,15.282 66.526,15.8 C67.072,16.486 67.982,16.822 68.85,16.822 Z M74.562,16.57 L74.562,10.452 L75.654,10.452 L75.654,8.8 L74.562,8.8 C74.618,7.918 74.968,7.848 75.752,7.834 L75.752,6 L75.234,6 C74.646,6 74.044,6.238 73.61,6.63 C72.966,7.232 72.77,7.96 72.7,8.8 L72.042,8.8 L72.042,10.452 L72.7,10.452 L72.7,16.57 L74.562,16.57 Z M80.246,16.822 C82.598,16.822 84.362,15.016 84.362,12.664 C84.362,10.382 82.542,8.534 80.246,8.534 C77.95,8.534 76.102,10.41 76.102,12.692 C76.102,14.96 77.978,16.822 80.246,16.822 Z M80.246,15.114 C78.902,15.114 77.964,13.994 77.964,12.692 C77.964,11.432 78.93,10.242 80.246,10.242 C81.562,10.242 82.5,11.46 82.5,12.706 C82.5,13.98 81.562,15.114 80.246,15.114 Z M87.456,16.57 L87.456,12.202 C87.456,11.068 87.932,10.382 89.15,10.34 L89.15,8.534 C88.226,8.534 87.848,8.73 87.33,9.486 L87.302,9.486 L87.302,8.8 L85.594,8.8 L85.594,16.57 L87.456,16.57 Z M93.84,16.822 C95.674,16.822 97.116,15.744 97.732,14.036 L95.632,14.036 C95.24,14.666 94.666,15.114 93.91,15.114 C92.524,15.114 91.572,14.022 91.572,12.678 C91.572,11.348 92.44,10.242 93.826,10.242 C94.694,10.242 95.226,10.648 95.632,11.376 L97.732,11.376 C97.158,9.654 95.646,8.534 93.826,8.534 C91.558,8.534 89.71,10.382 89.71,12.65 C89.71,14.932 91.544,16.822 93.84,16.822 Z M102.688,16.822 C104.34,16.822 105.936,15.702 106.44,14.12 L104.48,14.12 C104.102,14.806 103.444,15.114 102.688,15.114 C101.918,15.114 101.218,14.722 100.798,14.078 C100.686,13.91 100.588,13.728 100.546,13.518 L106.58,13.518 C106.65,13.21 106.692,12.888 106.692,12.58 C106.692,10.326 104.942,8.534 102.674,8.534 C100.322,8.534 98.586,10.382 98.586,12.706 C98.586,15.016 100.364,16.822 102.688,16.822 Z M104.788,12.02 L100.49,12.02 C100.756,10.914 101.554,10.242 102.688,10.242 C103.822,10.242 104.606,10.9 104.788,12.02 Z" id="Salesforce" fill="#032D60" fill-rule="nonzero"></path>
|
|
9
|
+
<path d="M12.8244528,3.21864865 C13.722566,2.29972973 14.9376604,1.70513514 16.3112453,1.70513514 C18.1074717,1.70513514 19.6923774,2.73216216 20.5376604,4.24567568 C21.277283,3.92135135 22.0697358,3.70513514 22.9150189,3.70513514 C26.1904906,3.70513514 28.832,6.40783784 28.832,9.75918919 C28.832,13.1105405 26.1904906,15.8132432 22.9150189,15.8132432 C22.4923774,15.8132432 22.122566,15.7591892 21.7527547,15.7051351 C21.0131321,17.0564865 19.586717,17.9754054 17.9489811,17.9754054 C17.2621887,17.9754054 16.6282264,17.8132432 16.0470943,17.542973 C15.3074717,19.3267568 13.5640755,20.57 11.5036981,20.57 C9.39049057,20.57 7.54143396,19.2186486 6.85464151,17.2727027 C6.53766038,17.3267568 6.22067925,17.3808108 5.90369811,17.3808108 C3.36784906,17.3808108 1.3074717,15.2727027 1.3074717,12.6781081 C1.3074717,10.9483784 2.20558491,9.43486486 3.57916981,8.62405405 C3.31501887,7.97540541 3.1565283,7.21864865 3.1565283,6.46189189 C3.1565283,3.48891892 5.53388679,1.05648649 8.49237736,1.05648649 C10.341434,1.11054054 11.8735094,1.92135135 12.8244528,3.21864865" id="Salesforce-Logo" fill="#00A1E0"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
|
|
2
|
+
<svg width="100%" height="374px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<g id="Scoped-Search" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
4
|
+
<g id="Docs-–-Search-Results-Loading" transform="translate(-52.000000, -240.000000)" fill="#DAD8D7">
|
|
5
|
+
<g id="Group-12" transform="translate(52.000000, 240.000000)">
|
|
6
|
+
<g id="Group-5">
|
|
7
|
+
<rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
|
|
8
|
+
<rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
|
|
9
|
+
<rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
|
|
10
|
+
</g>
|
|
11
|
+
<g id="Group-5" opacity="0.8" transform="translate(0.000000, 78.000000)">
|
|
12
|
+
<rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
|
|
13
|
+
<rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
|
|
14
|
+
<rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
|
|
15
|
+
</g>
|
|
16
|
+
<g id="Group-5" opacity="0.6" transform="translate(0.000000, 156.000000)">
|
|
17
|
+
<rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
|
|
18
|
+
<rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
|
|
19
|
+
<rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
|
|
20
|
+
</g>
|
|
21
|
+
<g id="Group-5" opacity="0.4" transform="translate(0.000000, 234.000000)">
|
|
22
|
+
<rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
|
|
23
|
+
<rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
|
|
24
|
+
<rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
|
|
25
|
+
</g>
|
|
26
|
+
<g id="Group-5" opacity="0.197206577" transform="translate(0.000000, 312.000000)">
|
|
27
|
+
<rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
|
|
28
|
+
<rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
|
|
29
|
+
<rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</g>
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="114px" height="122px" viewBox="0 0 114 122" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>podcast-cta-graphic-left</title>
|
|
4
|
+
<g id="Slack-App-CTA" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="Podcast" transform="translate(-363.000000, -3482.000000)">
|
|
6
|
+
<g id="CTA-signup" transform="translate(52.000000, 3441.500000)">
|
|
7
|
+
<g id="podcast-cta-graphic-left" transform="translate(312.000000, 41.500000)">
|
|
8
|
+
<path d="M19.3477,79.53155 C16.3647,73.75655 14.6787,67.20155 14.6787,60.25255 C14.6787,54.58155 15.8017,49.17255 17.8357,44.23455" id="Stroke-1" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
9
|
+
<path d="M98.3809,54.21995 C98.6629,56.18995 98.8099,58.20395 98.8099,60.25195 C98.8099,83.48495 79.9769,102.31795 56.7439,102.31795 C42.5819,102.31795 30.0549,95.31995 22.4319,84.59195" id="Stroke-3" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
10
|
+
<path d="M20.6133,38.69755 C27.9583,26.41255 41.3903,18.18655 56.7443,18.18655 C75.7943,18.18655 91.8853,30.84855 97.0623,48.21555" id="Stroke-5" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
11
|
+
<path d="M92.209,0.79125 L90.492,5.43125 C90.37,5.76325 90.108,6.02425 89.776,6.14625 L85.137,7.86425 C84.082,8.25425 84.082,9.74625 85.137,10.13725 L89.776,11.85425 C90.108,11.97625 90.37,12.23725 90.492,12.56925 L92.209,17.20925 C92.6,18.26425 94.092,18.26425 94.482,17.20925 L96.199,12.56925 C96.321,12.23725 96.583,11.97625 96.915,11.85425 L101.555,10.13725 C102.609,9.74625 102.609,8.25425 101.555,7.86425 L96.915,6.14625 C96.583,6.02425 96.321,5.76325 96.199,5.43125 L94.482,0.79125 C94.092,-0.26375 92.6,-0.26375 92.209,0.79125 Z" id="Stroke-7" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
12
|
+
<path d="M24.4414,114.48275 C24.4414,117.31375 22.1464,119.60875 19.3154,119.60875 C16.4854,119.60875 14.1904,117.31375 14.1904,114.48275 C14.1904,111.65275 16.4854,109.35775 19.3154,109.35775 C22.1464,109.35775 24.4414,111.65275 24.4414,114.48275 Z" id="Stroke-9" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
13
|
+
<path d="M56.7012,38.94555 C56.7012,40.32655 55.5822,41.44555 54.2012,41.44555 C52.8212,41.44555 51.7012,40.32655 51.7012,38.94555 C51.7012,37.56455 52.8212,36.44555 54.2012,36.44555 C55.5822,36.44555 56.7012,37.56455 56.7012,38.94555" id="Fill-11" fill="#8FD0FE"></path>
|
|
14
|
+
<line x1="87.835" y1="53.99925" x2="102.642" y2="53.99925" id="Stroke-13" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
15
|
+
<line x1="108.332" y1="53.99925" x2="111.857" y2="53.99925" id="Stroke-15" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
16
|
+
<line x1="16" y1="39.35765" x2="27.56" y2="39.35765" id="Stroke-17" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
17
|
+
<line x1="0" y1="39.35765" x2="5" y2="39.35765" id="Stroke-19" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
18
|
+
<path d="M11.4131,39.35765 C11.4131,39.90965 10.9651,40.35765 10.4131,40.35765 C9.8601,40.35765 9.4131,39.90965 9.4131,39.35765 C9.4131,38.80465 9.8601,38.35765 10.4131,38.35765 C10.9651,38.35765 11.4131,38.80465 11.4131,39.35765" id="Fill-21" fill="#3A49DA"></path>
|
|
19
|
+
<path d="M11.4131,39.35765 C11.4131,39.90965 10.9651,40.35765 10.4131,40.35765 C9.8601,40.35765 9.4131,39.90965 9.4131,39.35765 C9.4131,38.80465 9.8601,38.35765 10.4131,38.35765 C10.9651,38.35765 11.4131,38.80465 11.4131,39.35765 Z" id="Stroke-23" stroke="#8FD0FE"></path>
|
|
20
|
+
<line x1="11.5957" y1="84.26595" x2="27.2177" y2="84.26595" id="Stroke-25" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
21
|
+
<path d="M33.2178,84.26595 C33.2178,84.81795 32.7698,85.26595 32.2178,85.26595 C31.6648,85.26595 31.2178,84.81795 31.2178,84.26595 C31.2178,83.71295 31.6648,83.26595 32.2178,83.26595 C32.7698,83.26595 33.2178,83.71295 33.2178,84.26595" id="Fill-27" fill="#8FD0FE"></path>
|
|
22
|
+
<line x1="71.3252" y1="72.71315" x2="71.3252" y2="64.73715" id="Stroke-29" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
23
|
+
<line x1="75.3125" y1="68.72685" x2="67.3295" y2="68.72785" id="Stroke-31" stroke="#8FD0FE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></line>
|
|
24
|
+
</g>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|