chrome-devtools-frontend 1.0.1512147 → 1.0.1513662
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/docs/cookbook/release_management.md +15 -13
- package/docs/get_the_code.md +114 -35
- package/front_end/Images/src/ai-explorer-badge.svg +114 -0
- package/front_end/Images/src/code-whisperer-badge.svg +166 -0
- package/front_end/Images/src/devtools-user-badge.svg +129 -0
- package/front_end/Images/src/dom-detective-badge.svg +136 -0
- package/front_end/Images/src/speedster-badge.svg +166 -0
- package/front_end/core/common/Color.ts +40 -44
- package/front_end/core/common/Console.ts +4 -4
- package/front_end/core/common/ParsedURL.ts +14 -14
- package/front_end/core/common/ResourceType.ts +20 -20
- package/front_end/core/common/SegmentedRange.ts +13 -14
- package/front_end/core/common/Settings.ts +4 -4
- package/front_end/core/common/StringOutputStream.ts +4 -4
- package/front_end/core/host/GdpClient.ts +76 -2
- package/front_end/core/host/InspectorFrontendHost.ts +4 -1
- package/front_end/core/host/InspectorFrontendHostAPI.ts +2 -0
- package/front_end/core/host/ResourceLoader.ts +2 -2
- package/front_end/core/host/UserMetrics.ts +0 -2
- package/front_end/core/i18n/NumberFormatter.ts +7 -0
- package/front_end/core/protocol_client/InspectorBackend.ts +9 -9
- package/front_end/core/root/Runtime.ts +5 -2
- package/front_end/core/sdk/AccessibilityModel.ts +48 -48
- package/front_end/core/sdk/AnimationModel.ts +78 -79
- package/front_end/core/sdk/CPUProfilerModel.ts +5 -5
- package/front_end/core/sdk/CPUThrottlingManager.ts +17 -17
- package/front_end/core/sdk/CSSMatchedStyles.ts +44 -44
- package/front_end/core/sdk/CSSMedia.ts +22 -22
- package/front_end/core/sdk/CSSModel.ts +4 -4
- package/front_end/core/sdk/CSSProperty.ts +9 -9
- package/front_end/core/sdk/CSSPropertyParser.ts +1 -2
- package/front_end/core/sdk/CSSRule.ts +3 -3
- package/front_end/core/sdk/CSSStyleDeclaration.ts +27 -28
- package/front_end/core/sdk/CSSStyleSheetHeader.ts +13 -13
- package/front_end/core/sdk/CategorizedBreakpoint.ts +4 -4
- package/front_end/core/sdk/ChildTargetManager.ts +6 -6
- package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +4 -4
- package/front_end/core/sdk/ConsoleModel.ts +24 -24
- package/front_end/core/sdk/Cookie.ts +16 -16
- package/front_end/core/sdk/CookieParser.ts +6 -6
- package/front_end/core/sdk/DOMDebuggerModel.ts +88 -89
- package/front_end/core/sdk/DOMModel.ts +113 -113
- package/front_end/core/sdk/DebuggerModel.ts +102 -103
- package/front_end/core/sdk/EmulationModel.ts +6 -6
- package/front_end/core/sdk/EventBreakpointsModel.ts +5 -5
- package/front_end/core/sdk/HeapProfilerModel.ts +5 -5
- package/front_end/core/sdk/IsolateManager.ts +26 -26
- package/front_end/core/sdk/LayerTreeBase.ts +29 -30
- package/front_end/core/sdk/OverlayModel.ts +6 -6
- package/front_end/core/sdk/Resource.ts +43 -43
- package/front_end/core/sdk/ResourceTreeModel.ts +58 -61
- package/front_end/core/sdk/RuntimeModel.ts +12 -13
- package/front_end/core/sdk/SDKModel.ts +3 -3
- package/front_end/core/sdk/Script.ts +17 -17
- package/front_end/core/sdk/SecurityOriginManager.ts +14 -14
- package/front_end/core/sdk/ServerTiming.ts +2 -2
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +15 -15
- package/front_end/core/sdk/ServiceWorkerManager.ts +19 -24
- package/front_end/core/sdk/SourceMap.ts +10 -10
- package/front_end/core/sdk/StorageKeyManager.ts +12 -12
- package/front_end/core/sdk/Target.ts +33 -34
- package/front_end/core/sdk/TargetManager.ts +20 -20
- package/front_end/entrypoints/formatter_worker/AcornTokenizer.ts +8 -8
- package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +7 -7
- package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +7 -7
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +24 -24
- package/front_end/entrypoints/main/GlobalAiButton.ts +3 -3
- package/front_end/entrypoints/main/MainImpl.ts +16 -14
- package/front_end/entrypoints/main/main-meta.ts +1 -2
- package/front_end/generated/InspectorBackendCommands.js +3 -2
- package/front_end/generated/SupportedCSSProperties.js +20 -0
- package/front_end/generated/protocol-mapping.d.ts +4 -0
- package/front_end/generated/protocol-proxy-api.d.ts +5 -0
- package/front_end/generated/protocol.ts +20 -0
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +18 -35
- package/front_end/models/ai_assistance/ai_assistance.ts +1 -1
- package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +7 -6
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +246 -119
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +187 -73
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +106 -100
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +20 -27
- package/front_end/models/ai_assistance/data_formatters/UnitFormatters.ts +151 -0
- package/front_end/models/badges/AiExplorerBadge.ts +21 -0
- package/front_end/models/badges/Badge.ts +10 -9
- package/front_end/models/badges/CodeWhispererBadge.ts +21 -0
- package/front_end/models/badges/DOMDetectiveBadge.ts +21 -0
- package/front_end/models/badges/SpeedsterBadge.ts +7 -2
- package/front_end/models/badges/StarterBadge.ts +6 -1
- package/front_end/models/badges/UserBadges.ts +61 -9
- package/front_end/models/bindings/CSSWorkspaceBinding.ts +6 -6
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +18 -18
- package/front_end/models/bindings/FileUtils.ts +15 -15
- package/front_end/models/bindings/ResourceScriptMapping.ts +14 -14
- package/front_end/models/elements/ElementUpdateRecord.ts +11 -11
- package/front_end/models/emulation/DeviceModeModel.ts +123 -131
- package/front_end/models/emulation/EmulatedDevices.ts +22 -22
- package/front_end/models/extensions/ExtensionPanel.ts +24 -24
- package/front_end/models/extensions/ExtensionServer.ts +4 -4
- package/front_end/models/javascript_metadata/NativeFunctions.js +14 -2
- package/front_end/models/persistence/IsolatedFileSystem.ts +18 -19
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +13 -13
- package/front_end/models/trace/EventsSerializer.ts +5 -5
- package/front_end/models/trace/LanternComputationData.ts +10 -10
- package/front_end/models/trace/ModelImpl.ts +32 -54
- package/front_end/models/trace/Processor.ts +28 -30
- package/front_end/models/trace/extras/FilmStrip.ts +6 -6
- package/front_end/models/trace/extras/StackTraceForEvent.ts +22 -25
- package/front_end/models/trace/extras/ThirdParties.ts +16 -17
- package/front_end/models/trace/extras/TraceFilter.ts +1 -1
- package/front_end/models/trace/handlers/Threads.ts +10 -10
- package/front_end/models/trace/handlers/helpers.ts +9 -9
- package/front_end/models/trace/handlers/types.ts +3 -3
- package/front_end/models/trace/insights/CLSCulprits.ts +12 -14
- package/front_end/models/trace/insights/Cache.ts +8 -4
- package/front_end/models/trace/insights/DOMSize.ts +8 -5
- package/front_end/models/trace/insights/DocumentLatency.ts +2 -2
- package/front_end/models/trace/insights/DuplicatedJavaScript.ts +3 -3
- package/front_end/models/trace/insights/FontDisplay.ts +3 -4
- package/front_end/models/trace/insights/ForcedReflow.ts +3 -3
- package/front_end/models/trace/insights/INPBreakdown.ts +2 -2
- package/front_end/models/trace/insights/ImageDelivery.ts +11 -11
- package/front_end/models/trace/insights/LCPBreakdown.ts +4 -4
- package/front_end/models/trace/insights/LCPDiscovery.ts +4 -4
- package/front_end/models/trace/insights/LegacyJavaScript.ts +2 -2
- package/front_end/models/trace/insights/ModernHTTP.ts +4 -5
- package/front_end/models/trace/insights/NetworkDependencyTree.ts +12 -12
- package/front_end/models/trace/insights/RenderBlocking.ts +9 -10
- package/front_end/models/trace/insights/SlowCSSSelector.ts +2 -2
- package/front_end/models/trace/insights/ThirdParties.ts +4 -5
- package/front_end/models/trace/insights/Viewport.ts +8 -5
- package/front_end/models/trace/insights/types.ts +1 -0
- package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +10 -10
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +52 -52
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +8 -8
- package/front_end/panels/animation/AnimationTimeline.ts +5 -5
- package/front_end/panels/animation/AnimationUI.ts +22 -23
- package/front_end/panels/application/ApplicationPanelSidebar.ts +12 -12
- package/front_end/panels/application/DOMStorageModel.ts +23 -23
- package/front_end/panels/application/ExtensionStorageModel.ts +31 -31
- package/front_end/panels/application/IndexedDBModel.ts +1 -0
- package/front_end/panels/application/PreloadingTreeElement.ts +8 -8
- package/front_end/panels/application/ServiceWorkersView.ts +0 -53
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +2 -2
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +2 -2
- package/front_end/panels/common/BadgeNotification.ts +140 -10
- package/front_end/panels/common/GdpSignUpDialog.ts +5 -0
- package/front_end/panels/common/badgeNotification.css +30 -9
- package/front_end/panels/console/ConsoleContextSelector.ts +9 -9
- package/front_end/panels/console/ConsolePrompt.ts +8 -5
- package/front_end/panels/console/ConsoleView.ts +13 -13
- package/front_end/panels/console/ConsoleViewport.ts +29 -29
- package/front_end/panels/coverage/CoverageModel.ts +22 -22
- package/front_end/panels/elements/ClassesPaneWidget.ts +1 -1
- package/front_end/panels/elements/ComputedStyleModel.ts +17 -18
- package/front_end/panels/elements/DOMPath.ts +2 -2
- package/front_end/panels/elements/ElementsPanel.ts +13 -13
- package/front_end/panels/elements/ElementsTreeElement.ts +30 -18
- package/front_end/panels/elements/ElementsTreeOutline.ts +44 -48
- package/front_end/panels/elements/ShortcutTreeElement.ts +4 -4
- package/front_end/panels/elements/StylePropertiesSection.ts +7 -4
- package/front_end/panels/elements/StylePropertyTreeElement.ts +54 -50
- package/front_end/panels/elements/StylesSidebarPane.ts +19 -19
- package/front_end/panels/emulation/DeviceModeToolbar.ts +7 -7
- package/front_end/panels/emulation/DeviceModeView.ts +6 -6
- package/front_end/panels/emulation/MediaQueryInspector.ts +18 -18
- package/front_end/panels/event_listeners/EventListenersView.ts +13 -14
- package/front_end/panels/layer_viewer/LayerTreeOutline.ts +3 -3
- package/front_end/panels/layer_viewer/LayerViewHost.ts +13 -13
- package/front_end/panels/layer_viewer/PaintProfilerView.ts +9 -10
- package/front_end/panels/layer_viewer/TransformController.ts +34 -36
- package/front_end/panels/layers/LayerTreeModel.ts +41 -40
- package/front_end/panels/lighthouse/LighthouseReportSelector.ts +13 -13
- package/front_end/panels/lighthouse/LighthouseStartView.ts +7 -7
- package/front_end/panels/media/PlayerMessagesView.ts +5 -5
- package/front_end/panels/media/TickingFlameChart.ts +24 -24
- package/front_end/panels/media/TickingFlameChartHelpers.ts +32 -32
- package/front_end/panels/network/NetworkItemView.ts +4 -4
- package/front_end/panels/network/NetworkLogViewColumns.ts +29 -29
- package/front_end/panels/network/NetworkPanel.ts +8 -5
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +10 -10
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +3 -3
- package/front_end/panels/profiler/HeapProfileView.ts +1 -1
- package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +3 -4
- package/front_end/panels/profiler/ProfileHeader.ts +25 -25
- package/front_end/panels/profiler/ProfileLauncherView.ts +5 -6
- package/front_end/panels/recorder/components/ReplaySection.ts +3 -1
- package/front_end/panels/security/OriginTreeElement.ts +8 -8
- package/front_end/panels/security/SecurityPanel.ts +5 -5
- package/front_end/panels/settings/SettingsScreen.ts +18 -18
- package/front_end/panels/settings/components/SyncSection.ts +26 -8
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +3 -0
- package/front_end/panels/sources/DebuggerPausedMessage.ts +8 -9
- package/front_end/panels/sources/NavigatorView.ts +43 -46
- package/front_end/panels/sources/SourcesPanel.ts +35 -35
- package/front_end/panels/sources/SourcesView.ts +13 -13
- package/front_end/panels/sources/TabbedEditorContainer.ts +19 -22
- package/front_end/panels/sources/UISourceCodeFrame.ts +4 -4
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +34 -36
- package/front_end/panels/timeline/AnimationsTrackAppender.ts +3 -3
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +8 -8
- package/front_end/panels/timeline/CountersGraph.ts +16 -16
- package/front_end/panels/timeline/EntriesFilter.ts +4 -3
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +3 -3
- package/front_end/panels/timeline/GPUTrackAppender.ts +3 -3
- package/front_end/panels/timeline/Initiators.ts +10 -10
- package/front_end/panels/timeline/InteractionsTrackAppender.ts +5 -5
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +7 -7
- package/front_end/panels/timeline/ModificationsManager.ts +8 -15
- package/front_end/panels/timeline/TargetForEvent.ts +2 -2
- package/front_end/panels/timeline/ThirdPartyTreeView.ts +1 -1
- package/front_end/panels/timeline/ThreadAppender.ts +13 -13
- package/front_end/panels/timeline/TimelineDetailsView.ts +6 -14
- package/front_end/panels/timeline/TimelineEventOverview.ts +27 -26
- package/front_end/panels/timeline/TimelineFilters.ts +5 -5
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +54 -53
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +34 -34
- package/front_end/panels/timeline/TimelineFlameChartView.ts +18 -31
- package/front_end/panels/timeline/TimelineHistoryManager.ts +17 -18
- package/front_end/panels/timeline/TimelineMiniMap.ts +6 -6
- package/front_end/panels/timeline/TimelinePaintProfilerView.ts +6 -6
- package/front_end/panels/timeline/TimelinePanel.ts +73 -68
- package/front_end/panels/timeline/TimelineSelectorStatsView.ts +7 -5
- package/front_end/panels/timeline/TimelineTreeView.ts +10 -10
- package/front_end/panels/timeline/TimelineUIUtils.ts +47 -46
- package/front_end/panels/timeline/TimingsTrackAppender.ts +12 -12
- package/front_end/panels/timeline/TracingLayerTree.ts +43 -43
- package/front_end/panels/timeline/TrackConfigBanner.ts +6 -6
- package/front_end/panels/timeline/TrackConfiguration.ts +1 -1
- package/front_end/panels/timeline/components/DetailsView.ts +4 -4
- package/front_end/panels/timeline/components/LayoutShiftDetails.ts +12 -21
- package/front_end/panels/timeline/components/LiveMetricsView.ts +2 -1
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +5 -5
- package/front_end/panels/timeline/components/Sidebar.ts +4 -14
- package/front_end/panels/timeline/components/SidebarInsightsTab.ts +13 -36
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +21 -19
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +1 -1
- package/front_end/panels/timeline/components/insights/Cache.ts +4 -0
- package/front_end/panels/timeline/components/insights/DOMSize.ts +5 -1
- package/front_end/panels/timeline/components/insights/Helpers.ts +19 -0
- package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +1 -1
- package/front_end/panels/timeline/components/insights/Viewport.ts +4 -0
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +1 -1
- package/front_end/panels/timeline/utils/AICallTree.ts +11 -11
- package/front_end/panels/timeline/utils/AIContext.ts +17 -19
- package/front_end/panels/timeline/utils/EntityMapper.ts +6 -5
- package/front_end/panels/timeline/utils/EntryName.ts +2 -2
- package/front_end/panels/timeline/utils/EntryNodes.ts +5 -5
- package/front_end/panels/timeline/utils/EntryStyles.ts +4 -4
- package/front_end/panels/timeline/utils/FreshRecording.ts +3 -3
- package/front_end/panels/timeline/utils/Helpers.ts +0 -18
- package/front_end/panels/timeline/utils/InsightAIContext.ts +6 -6
- package/front_end/panels/timeline/utils/SourceMapsResolver.ts +7 -7
- package/front_end/panels/webauthn/WebauthnPane.ts +1 -0
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/codemirror.next/chunk/angular.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/angular.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/java.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/java.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/legacy.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/legacy.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/wast.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/wast.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js.map +1 -1
- package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
- package/front_end/third_party/codemirror.next/package.json +1 -1
- package/front_end/third_party/codemirror.next/rebuild.sh +1 -1
- package/front_end/third_party/json5/rebuild.sh +1 -1
- package/front_end/third_party/legacy-javascript/{update.sh → rebuild.sh} +1 -1
- package/front_end/third_party/lit/lib/decorators.d.ts +26 -9
- package/front_end/third_party/lit/lib/decorators.js +5 -5
- package/front_end/third_party/lit/lib/decorators.js.map +1 -1
- package/front_end/third_party/lit/lib/directive.js.map +1 -1
- package/front_end/third_party/lit/lib/directives.js +8 -13
- package/front_end/third_party/lit/lib/directives.js.map +1 -1
- package/front_end/third_party/lit/lib/lit.d.ts +26 -9
- package/front_end/third_party/lit/lib/lit.js +5 -5
- package/front_end/third_party/lit/lib/lit.js.map +1 -1
- package/front_end/third_party/lit/lib/static-html.js +2 -2
- package/front_end/third_party/lit/lib/static-html.js.map +1 -1
- package/front_end/third_party/lit/rebuild.sh +1 -1
- package/front_end/third_party/third-party-web/rebuild.sh +1 -1
- package/front_end/ui/components/dialogs/Dialog.ts +6 -7
- package/front_end/ui/legacy/ActionRegistration.ts +9 -9
- package/front_end/ui/legacy/DockController.ts +18 -18
- package/front_end/ui/legacy/FilterBar.ts +7 -7
- package/front_end/ui/legacy/Fragment.ts +4 -4
- package/front_end/ui/legacy/GlassPane.ts +12 -12
- package/front_end/ui/legacy/InspectorView.ts +5 -15
- package/front_end/ui/legacy/ListControl.ts +27 -27
- package/front_end/ui/legacy/ListWidget.ts +4 -4
- package/front_end/ui/legacy/PopoverHelper.ts +4 -4
- package/front_end/ui/legacy/ShortcutRegistry.ts +17 -17
- package/front_end/ui/legacy/TabbedPane.ts +74 -75
- package/front_end/ui/legacy/TextPrompt.ts +31 -31
- package/front_end/ui/legacy/Toolbar.ts +13 -14
- package/front_end/ui/legacy/ViewManager.ts +30 -31
- package/front_end/ui/legacy/Widget.ts +6 -6
- package/front_end/ui/legacy/XLink.ts +9 -9
- package/front_end/ui/legacy/ZoomManager.ts +9 -9
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +27 -27
- package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +30 -32
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +15 -15
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +64 -64
- package/front_end/ui/legacy/components/data_grid/ShowMoreDataGridNode.ts +2 -2
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +10 -11
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +12 -12
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +3 -3
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +14 -14
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +8 -8
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +5 -5
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +4 -4
- package/front_end/ui/legacy/filter.css +1 -1
- package/front_end/ui/legacy/inspectorCommon.css +1 -1
- package/front_end/ui/legacy/softDropDownButton.css +1 -1
- package/front_end/ui/legacy/theme_support/ThemeSupport.ts +4 -4
- package/front_end/ui/visual_logging/KnownContextValues.ts +2 -2
- package/package.json +1 -1
- package/front_end/models/ai_assistance/data_formatters/Types.ts +0 -9
@@ -0,0 +1,129 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
|
3
|
+
<defs>
|
4
|
+
<style>
|
5
|
+
.cls-1, .cls-2, .cls-3, .cls-4 {
|
6
|
+
fill: none;
|
7
|
+
}
|
8
|
+
|
9
|
+
.cls-5 {
|
10
|
+
fill: #4285f4;
|
11
|
+
}
|
12
|
+
|
13
|
+
.cls-2 {
|
14
|
+
stroke: #fff;
|
15
|
+
stroke-width: 16px;
|
16
|
+
}
|
17
|
+
|
18
|
+
.cls-6 {
|
19
|
+
clip-path: url(#clippath-1);
|
20
|
+
}
|
21
|
+
|
22
|
+
.cls-7 {
|
23
|
+
fill: #1a73e8;
|
24
|
+
}
|
25
|
+
|
26
|
+
.cls-8 {
|
27
|
+
fill: #8ab4f8;
|
28
|
+
}
|
29
|
+
|
30
|
+
.cls-9, .cls-10 {
|
31
|
+
fill: #fff;
|
32
|
+
}
|
33
|
+
|
34
|
+
.cls-11 {
|
35
|
+
fill: #f9f9f9;
|
36
|
+
}
|
37
|
+
|
38
|
+
.cls-3, .cls-4 {
|
39
|
+
stroke-width: 2px;
|
40
|
+
}
|
41
|
+
|
42
|
+
.cls-3, .cls-4, .cls-10 {
|
43
|
+
stroke-miterlimit: 10;
|
44
|
+
}
|
45
|
+
|
46
|
+
.cls-3, .cls-10 {
|
47
|
+
stroke: #dadce0;
|
48
|
+
}
|
49
|
+
|
50
|
+
.cls-12 {
|
51
|
+
fill: #1970e3;
|
52
|
+
}
|
53
|
+
|
54
|
+
.cls-13 {
|
55
|
+
fill: #f8f9fa;
|
56
|
+
}
|
57
|
+
|
58
|
+
.cls-14 {
|
59
|
+
fill: #202124;
|
60
|
+
opacity: .05;
|
61
|
+
}
|
62
|
+
|
63
|
+
.cls-4 {
|
64
|
+
stroke: #dadce0;
|
65
|
+
}
|
66
|
+
|
67
|
+
.cls-10 {
|
68
|
+
stroke-width: 2.05px;
|
69
|
+
}
|
70
|
+
|
71
|
+
.cls-15 {
|
72
|
+
clip-path: url(#clippath);
|
73
|
+
}
|
74
|
+
</style>
|
75
|
+
<clipPath id="clippath">
|
76
|
+
<path class="cls-1" d="M300,74c-16.12,0-31.84,1.7-47,4.91V31h-94v92.39c-51.81,41.41-85,105.13-85,176.61,0,124.82,101.18,226,226,226s226-101.18,226-226-101.18-226-226-226Z"/>
|
77
|
+
</clipPath>
|
78
|
+
<clipPath id="clippath-1">
|
79
|
+
<path class="cls-1" d="M503.39,257.66l-154.96-89.46-11.72-6.77c-4.51-2.6-8.17-8.94-8.17-14.14v-4.99c0-5.21-3.66-11.54-8.17-14.14l-59.84-34.55c-4.51-2.6-8.17-.49-8.17,4.71v4.99c0,5.21-3.66,7.32-8.17,4.71l-7.5-4.33-64.32-37.13v257.56c0,7.81,5.48,17.31,12.25,21.21l306.5,176.96c6.76,3.91,12.25.74,12.25-7.07v-257.56Z"/>
|
80
|
+
</clipPath>
|
81
|
+
<filter id="filter0_d_8437_5135" x="40" y="44" width="520" height="520" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
82
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
83
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
84
|
+
<feMorphology radius="6" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_8437_5135"/>
|
85
|
+
<feOffset dy="4"/>
|
86
|
+
<feGaussianBlur stdDeviation="6"/>
|
87
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.235294 0 0 0 0 0.25098 0 0 0 0 0.262745 0 0 0 0.15 0"/>
|
88
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8437_5135"/>
|
89
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8437_5135" result="shape"/>
|
90
|
+
</filter>
|
91
|
+
</defs>
|
92
|
+
<circle id="baseplate" class="cls-8" cx="300" cy="300" r="242" filter="url(#filter0_d_8437_5135)"/>
|
93
|
+
<circle id="border" class="cls-2" cx="300" cy="300" r="234"/>
|
94
|
+
<g id="illustration">
|
95
|
+
<g class="cls-15">
|
96
|
+
<g>
|
97
|
+
<path class="cls-5" d="M491.99,522.78l-308.2-177.94c-6.3-3.63-11.4-13.38-11.4-21.78V49.82c0-8.39,5.1-12.25,11.4-8.62l308.2,177.94c6.3,3.63,11.4,13.38,11.4,21.78v273.24c0,8.39-5.1,12.25-11.4,8.62Z"/>
|
98
|
+
<path class="cls-13" d="M503.39,257.66l-154.96-89.46-11.72-6.77c-4.51-2.6-8.17-8.94-8.17-14.14v-4.99c0-5.21-3.66-11.54-8.17-14.14l-59.84-34.55c-4.51-2.6-8.17-.49-8.17,4.71v4.99c0,5.21-3.66,7.32-8.17,4.71l-7.5-4.33-64.32-37.13v257.56c0,7.81,5.48,17.31,12.25,21.21l306.5,176.96c6.76,3.91,12.25.74,12.25-7.07v-257.56Z"/>
|
99
|
+
<g>
|
100
|
+
<path class="cls-13" d="M196.55,64.54c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74s2.52-5.04,5.62-3.25c3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
101
|
+
<path class="cls-13" d="M216.63,76.13c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74s2.52-5.04,5.62-3.25c3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
102
|
+
<path class="cls-13" d="M236.71,87.73c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74,0-3.59,2.52-5.04,5.62-3.25,3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
103
|
+
</g>
|
104
|
+
</g>
|
105
|
+
<g class="cls-6">
|
106
|
+
<g>
|
107
|
+
<polygon class="cls-4" points="472.84 374.98 340.29 298.45 340.29 203.77 472.84 280.29 472.84 374.98"/>
|
108
|
+
<line class="cls-4" x1="472.84" y1="280.29" x2="340.29" y2="298.45"/>
|
109
|
+
<line class="cls-4" x1="340.29" y1="203.77" x2="472.84" y2="374.98"/>
|
110
|
+
</g>
|
111
|
+
<path class="cls-14" d="M377.43,351.01c0,81.84-57.45,115.01-128.33,74.09-70.87-40.92-128.33-140.44-128.33-222.27,0-81.84,57.45-115.01,128.33-74.09,70.87,40.92,128.33,140.44,128.33,222.27Z"/>
|
112
|
+
<polygon class="cls-3" points="298.79 203.71 220.84 158.7 220.84 133.48 298.79 178.49 298.79 203.71"/>
|
113
|
+
<polygon class="cls-3" points="472.92 426.79 362.73 364.05 362.73 338.83 472.92 401.57 472.92 426.79"/>
|
114
|
+
<polygon class="cls-4" points="472.03 476.02 361.84 413.28 361.84 388.06 472.03 450.8 472.03 476.02"/>
|
115
|
+
<line class="cls-10" x1="173.35" y1="66.37" x2="173.35" y2="339"/>
|
116
|
+
</g>
|
117
|
+
</g>
|
118
|
+
<g>
|
119
|
+
<path class="cls-7" d="M135.54,455c41.21,43.71,99.64,71,164.46,71s123.25-27.29,164.46-71H135.54Z"/>
|
120
|
+
<path class="cls-9" d="M288.7,489.5c0,2.69.96,5,2.88,6.92,1.92,1.92,4.23,2.88,6.92,2.88s5-.96,6.92-2.88,2.88-4.23,2.88-6.92-.96-5-2.88-6.92-4.23-2.88-6.92-2.88-5,.96-6.92,2.88c-1.92,1.92-2.88,4.23-2.88,6.92ZM298.5,504.2c.53,0,1.04-.02,1.53-.06s.98-.12,1.47-.24l-5.76,9.92c-6.17-.69-11.33-3.34-15.5-7.93s-6.25-10.06-6.25-16.38c0-1.72.16-3.38.49-4.99s.82-3.15,1.47-4.62l9.8,16.97c1.27,2.21,3.02,3.98,5.27,5.33,2.25,1.35,4.74,2.02,7.47,2.02ZM298.5,474.8c-3.27,0-6.17.95-8.7,2.85-2.53,1.9-4.29,4.32-5.27,7.26l-5.76-9.92c2.25-3.02,5.07-5.44,8.48-7.26,3.41-1.82,7.16-2.73,11.24-2.73s7.76.89,11.15,2.66,6.21,4.15,8.45,7.14h-19.6ZM320.92,479.7c.69,1.51,1.21,3.08,1.56,4.72s.52,3.33.52,5.08c0,6.33-2.07,11.78-6.22,16.35-4.14,4.57-9.26,7.23-15.34,7.96l9.8-16.97c.61-1.06,1.09-2.22,1.44-3.46s.52-2.54.52-3.89c0-1.92-.34-3.71-1.01-5.36s-1.6-3.13-2.79-4.44h11.51Z"/>
|
121
|
+
</g>
|
122
|
+
<g>
|
123
|
+
<path class="cls-8" d="M348.56,308.54c-8.23-51.26-35.92-105.56-72.89-145.28-10.54-11.32-21.83-21.46-33.64-30.01-5.22-3.78-10.54-7.24-15.95-10.36-6.28-3.62-12.44-6.65-18.48-9.11-27.47-11.19-52.06-10.49-70.76.37l-16.92,9.83c18.7-10.87,43.3-11.57,70.76-.37,6.03,2.46,12.2,5.49,18.48,9.11,5.4,3.12,10.73,6.59,15.95,10.36,11.81,8.54,23.1,18.68,33.64,30.01,36.97,39.72,64.66,94.03,72.89,145.28,1.68,10.47,2.55,20.81,2.52,30.87-.01,3.82-.15,7.52-.41,11.12-.94,12.79-3.45,24.17-7.33,34.01-6.31,16.04-16.24,27.99-28.84,35.31l16.92-9.83c12.61-7.33,22.53-19.27,28.84-35.31,3.87-9.84,6.39-21.22,7.33-34.01.26-3.6.4-7.3.41-11.12.03-10.06-.84-20.4-2.52-30.87Z"/>
|
124
|
+
<path class="cls-12" d="M209.16,132.72c69.27,39.99,125.23,136.92,125.01,216.52-.23,79.59-56.56,111.69-125.82,71.7-69.26-39.99-125.23-136.93-125-216.52.23-79.59,56.56-111.69,125.82-71.7Z"/>
|
125
|
+
<path class="cls-11" d="M208.89,227.49c23.67,13.67,42.87,46.92,42.8,74.13-.08,27.2-19.4,38.21-43.08,24.54-23.67-13.67-42.87-46.91-42.79-74.12.08-27.2,19.4-38.22,43.07-24.55ZM208.63,319.41c20.43,11.8,37.11,2.29,37.18-21.19.07-23.48-16.5-52.18-36.94-63.98-20.43-11.8-37.11-2.29-37.18,21.19-.07,23.48,16.5,52.18,36.94,63.98"/>
|
126
|
+
<path class="cls-11" d="M317.2,329.6c-.19-3.09-.48-6.21-.85-9.34-.41-3.46-.93-6.94-1.55-10.44-.56-3.12-1.2-6.25-1.91-9.39-.64-2.82-1.35-5.65-2.12-8.49-.53-1.95-1.09-3.91-1.68-5.86-.8-2.66-1.66-5.31-2.57-7.96-.5-1.46-1.02-2.93-1.55-4.39-.56-1.54-1.13-3.07-1.72-4.6-1.74-4.5-3.62-8.97-5.63-13.41-1.77-3.9-3.65-7.76-5.62-11.59-1.39-2.71-2.83-5.39-4.32-8.05-1.8-3.21-3.66-6.39-5.59-9.52-1.28-2.09-2.6-4.16-3.94-6.21-2.01-3.08-4.08-6.1-6.21-9.08-6.38-8.93-13.28-17.37-20.59-25.16-.81-.86-1.63-1.72-2.45-2.57-12.33-12.73-25.76-23.57-39.81-31.68-17.8-10.28-34.64-15.05-49.51-14.87-1.65.02-3.27.1-4.86.24-1.33.12-2.65.28-3.95.48-.24.04-.47.08-.71.11-1.88.31-3.72.72-5.52,1.2-.4.11-.79.22-1.18.33-.94.28-1.87.58-2.78.9-1.21.43-2.4.9-3.57,1.42-2.55,1.12-5,2.43-7.33,3.94-.82.53-1.62,1.08-2.41,1.65-.29.21-.58.43-.87.65-.92.7-1.83,1.44-2.71,2.2-.13.11-.26.22-.39.34-1.03.91-2.03,1.87-3,2.87,0,0,0,0-.01.01-4.41,4.55-8.18,10.01-11.25,16.32-.62,1.27-1.2,2.57-1.76,3.91-.39.93-.76,1.87-1.12,2.83-.21.57-.42,1.15-.62,1.73-1.03,2.96-1.93,6.07-2.68,9.32-.41,1.78-.78,3.6-1.11,5.47-.3,1.74-.56,3.52-.79,5.33-.38,3.05-.66,6.19-.81,9.44-.1,2.07-.15,4.19-.16,6.34-.02,6.46.39,13.06,1.2,19.73.54,4.45,1.26,8.94,2.14,13.44.22,1.13.45,2.25.69,3.38,2.02,9.44,4.77,18.95,8.16,28.39.91,2.53,1.86,5.06,2.86,7.58,2.62,6.62,5.55,13.17,8.76,19.62,1.07,2.16,2.18,4.3,3.31,6.44.62,1.17,1.25,2.34,1.89,3.5.52.95,1.05,1.89,1.58,2.83,1.93,3.41,3.94,6.77,6.02,10.09,1.75,2.8,3.55,5.56,5.4,8.28.95,1.4,1.92,2.8,2.9,4.18.4.57.81,1.13,1.21,1.7,1.05,1.46,2.11,2.9,3.19,4.33,6.76,8.98,14.04,17.41,21.74,25.11,11.64,11.64,24.22,21.59,37.33,29.16,5.35,3.09,10.6,5.67,15.75,7.78.52.21,1.03.42,1.54.62,10.52,4.13,20.55,6.25,29.85,6.46.79.02,1.58.02,2.36.01.78,0,1.56-.03,2.33-.07.77-.04,1.54-.09,2.3-.15,2.28-.19,4.51-.51,6.69-.94.72-.14,1.44-.3,2.16-.47,2.14-.51,4.22-1.14,6.24-1.89,3.09-1.15,6.04-2.57,8.84-4.26.31-.19.63-.37.93-.57.29-.18.58-.38.87-.57.3-.2.6-.39.9-.6.29-.2.58-.41.86-.62.29-.21.59-.42.87-.63.29-.22.56-.44.85-.66.28-.22.55-.43.83-.65.28-.23.55-.47.83-.7.27-.23.55-.46.82-.7.27-.24.53-.48.79-.72.26-.24.53-.48.79-.73.27-.26.54-.53.8-.8.25-.25.5-.49.74-.75.25-.26.5-.53.75-.8.25-.27.5-.54.75-.81.25-.28.48-.56.73-.84.24-.28.48-.55.71-.83.24-.29.47-.59.7-.88.23-.29.46-.58.69-.87.24-.31.47-.63.7-.95.21-.29.42-.57.63-.86.23-.32.45-.66.67-.99.21-.31.42-.61.62-.92.22-.33.43-.67.64-1.01.2-.31.4-.62.59-.94.21-.35.42-.72.63-1.08.18-.32.37-.63.55-.96.2-.36.39-.73.59-1.1.18-.33.36-.66.53-1,.2-.38.38-.77.57-1.16.16-.33.33-.66.49-1,.2-.42.38-.85.57-1.27.14-.32.29-.63.43-.96.19-.44.37-.88.55-1.32.13-.33.27-.65.4-.99.17-.43.33-.88.5-1.32.13-.35.27-.7.39-1.06.16-.44.31-.9.46-1.35.12-.36.25-.72.37-1.08.16-.48.3-.97.45-1.46.11-.35.22-.69.32-1.04.13-.46.26-.93.39-1.4.11-.39.22-.78.32-1.18.13-.49.24-.99.37-1.49.09-.38.19-.75.27-1.13.13-.57.25-1.15.38-1.73.07-.32.14-.63.21-.96.12-.59.23-1.2.34-1.8.06-.32.12-.64.18-.97.09-.55.18-1.1.27-1.65.06-.39.13-.78.19-1.18.08-.57.16-1.14.23-1.72.05-.39.11-.77.15-1.16.08-.66.15-1.32.22-1.99.03-.32.07-.64.1-.96.07-.76.13-1.53.19-2.3.02-.24.04-.47.06-.71.06-.77.1-1.55.14-2.33.01-.25.03-.5.04-.75.04-.74.06-1.48.08-2.23,0-.3.02-.6.03-.9.03-1.05.04-2.12.04-3.19,0-3.31-.1-6.65-.31-10.02ZM120.16,165.86c4.16-5.69,9.13-10.29,14.78-13.75.87-.53,1.75-1.04,2.65-1.51,2.48-1.31,5.07-2.42,7.77-3.31,1.35-.45,2.73-.84,4.13-1.18,2.38-.57,4.84-.99,7.36-1.25,2.02-.21,4.08-.32,6.18-.31,13.88,0,29.52,4.53,46.05,14.07,1.53.88,3.05,1.81,4.56,2.76,4.89,3.07,9.69,6.48,14.37,10.19.42.33.85.67,1.27,1.01,5.09,4.11,10.05,8.58,14.85,13.35.99.99,1.98,1.99,2.96,3.01,1.96,2.03,3.89,4.12,5.79,6.25,2.85,3.19,5.62,6.49,8.32,9.89,13.48,16.96,24.97,36.22,33.57,56.2l-85.83-49.55c-31.25-18.04-56.75-3.51-56.85,32.4,0,1.48.04,2.97.12,4.47l-32.03-82.72h0ZM208.58,335.19c-28.01-16.17-50.72-55.5-50.62-87.68.09-32.19,22.95-45.22,50.96-29.05,28.01,16.17,50.72,55.51,50.63,87.7s-22.95,45.21-50.96,29.03ZM207.72,394.64c-15.77-9.23-30.69-22.07-44.01-37.2-.18-.21-.36-.42-.55-.62-2.78-3.18-5.49-6.46-8.12-9.83-.25-.32-.49-.63-.74-.95-10.31-13.35-19.4-28.03-26.84-43.31-1.01-2.07-1.98-4.15-2.93-6.24-2.02-4.47-3.89-8.98-5.62-13.51-.7-1.83-1.37-3.66-2.02-5.5-.47-1.33-.91-2.65-1.35-3.98-.62-1.87-1.21-3.74-1.78-5.61-5.13-17.08-7.95-34.21-7.9-50.44,0-1.18.02-2.36.06-3.51.07-2.32.19-4.58.38-6.8.56-6.64,1.64-12.8,3.2-18.47,1.82-6.61,4.29-12.53,7.34-17.74h0s0,0,0,0h0s42.74,110.13,42.74,110.13c9.76,25.12,28.04,48.81,48.98,60.9,11.66,6.73,22.51,8.93,31.55,7.17l12.56-17.65h0l-12.56,17.65-32.4,45.52h0ZM299.9,383.99c-.74,1.2-1.52,2.37-2.33,3.49-2.42,3.36-5.12,6.36-8.08,8.96-.99.87-2,1.7-3.04,2.48-1.56,1.17-3.18,2.25-4.86,3.23-3.92,2.28-8.15,4.01-12.66,5.18-1.93.5-3.91.9-5.94,1.19-5.41.78-11.15.8-17.17.03-1.5-.19-3.02-.43-4.56-.72-.77-.15-1.54-.3-2.32-.47-4.36-.96-8.85-2.32-13.43-4.08-.64-.25-1.29-.5-1.94-.77-2.95-1.2-5.93-2.56-8.96-4.09l-.85,1.19.85-1.2,43.1-60.68h0c4.87-6.79,7.67-16.32,7.71-28.18.07-25.55-12.74-55.14-31.39-76.59l64.33,37.14,1.61.93h0s-1.61-.93-1.61-.93c3.19,8.31,5.86,16.71,7.95,25.07,1.74,6.97,3.08,13.92,3.98,20.78.18,1.37.34,2.74.49,4.11.29,2.73.51,5.45.65,8.14.14,2.7.21,5.37.2,8.02-.06,19.62-4.29,35.73-11.73,47.76Z"/>
|
127
|
+
</g>
|
128
|
+
</g>
|
129
|
+
</svg>
|
@@ -0,0 +1,136 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
|
3
|
+
<defs>
|
4
|
+
<style>
|
5
|
+
.cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7 {
|
6
|
+
fill: none;
|
7
|
+
}
|
8
|
+
|
9
|
+
.cls-2, .cls-3, .cls-4, .cls-8, .cls-6, .cls-9, .cls-7 {
|
10
|
+
stroke-miterlimit: 10;
|
11
|
+
}
|
12
|
+
|
13
|
+
.cls-2, .cls-4, .cls-7 {
|
14
|
+
stroke: #dadce0;
|
15
|
+
}
|
16
|
+
|
17
|
+
.cls-3, .cls-6 {
|
18
|
+
stroke: #669df6;
|
19
|
+
stroke-width: 2.26px;
|
20
|
+
}
|
21
|
+
|
22
|
+
.cls-4 {
|
23
|
+
stroke-width: 3.57px;
|
24
|
+
}
|
25
|
+
|
26
|
+
.cls-8 {
|
27
|
+
fill: #f8f9fa;
|
28
|
+
}
|
29
|
+
|
30
|
+
.cls-8, .cls-9 {
|
31
|
+
stroke: #dadce0;
|
32
|
+
stroke-width: 2.1px;
|
33
|
+
}
|
34
|
+
|
35
|
+
.cls-5 {
|
36
|
+
stroke: #fff;
|
37
|
+
stroke-width: 16px;
|
38
|
+
}
|
39
|
+
|
40
|
+
.cls-10 {
|
41
|
+
fill: #1a73e8;
|
42
|
+
}
|
43
|
+
|
44
|
+
.cls-6 {
|
45
|
+
stroke-dasharray: 6.63 6.63;
|
46
|
+
}
|
47
|
+
|
48
|
+
.cls-9 {
|
49
|
+
fill: #dadce0;
|
50
|
+
}
|
51
|
+
|
52
|
+
.cls-11 {
|
53
|
+
fill: #8ab4f8;
|
54
|
+
}
|
55
|
+
|
56
|
+
.cls-12 {
|
57
|
+
fill: #fff;
|
58
|
+
}
|
59
|
+
|
60
|
+
.cls-13 {
|
61
|
+
fill: #dadce0;
|
62
|
+
}
|
63
|
+
|
64
|
+
.cls-7 {
|
65
|
+
stroke-width: 1.69px;
|
66
|
+
}
|
67
|
+
|
68
|
+
.cls-14 {
|
69
|
+
clip-path: url(#clippath);
|
70
|
+
}
|
71
|
+
</style>
|
72
|
+
<clipPath id="clippath">
|
73
|
+
<circle class="cls-1" cx="300" cy="300" r="226"/>
|
74
|
+
</clipPath>
|
75
|
+
<filter id="filter0_d_8437_5135" x="40" y="44" width="520" height="520" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
76
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
77
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
78
|
+
<feMorphology radius="6" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_8437_5135"/>
|
79
|
+
<feOffset dy="4"/>
|
80
|
+
<feGaussianBlur stdDeviation="6"/>
|
81
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.235294 0 0 0 0 0.25098 0 0 0 0 0.262745 0 0 0 0.15 0"/>
|
82
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8437_5135"/>
|
83
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8437_5135" result="shape"/>
|
84
|
+
</filter>
|
85
|
+
</defs>
|
86
|
+
<circle id="baseplate" class="cls-11" cx="300" cy="300" r="242" filter="url(#filter0_d_8437_5135)"/>
|
87
|
+
<circle id="border" class="cls-5" cx="300" cy="300" r="234"/>
|
88
|
+
<g id="illustration">
|
89
|
+
<g class="cls-14">
|
90
|
+
<g>
|
91
|
+
<g>
|
92
|
+
<path class="cls-9" d="M270.44,125.5c-7.53-4.35-20.68-3.8-29.37,1.22L48.06,238.16c-4.85,19.82-7.44,40.53-7.44,61.84,0,98.17,54.54,183.59,134.97,227.64l379.95-219.36c1.49-.86,2.74-1.8,3.77-2.79.04-1.83.07-3.66.07-5.49,0-2.53-.05-5.06-.12-7.58-.49-.38-1.02-.76-1.62-1.1L270.44,125.5Z"/>
|
93
|
+
<path class="cls-8" d="M559.27,292.6c-.76-.66-1.63-1.28-2.64-1.86l-266.75-154.01-222.16,128.27-14.02,8.09c-3.24,1.87-7.7,2.61-11.91,2.23-.77,8.13-1.18,16.36-1.18,24.68,0,98.17,54.54,183.59,134.97,227.64l381.04-220c1.02-.59,1.91-1.23,2.68-1.9.04-1.91.07-3.83.07-5.75,0-2.48-.04-4.94-.11-7.4Z"/>
|
94
|
+
</g>
|
95
|
+
<g>
|
96
|
+
<path class="cls-13" d="M413.28,333.51l-102.12,58.96c-8.34,4.82-20.96,5.34-28.18,1.17l-106.16-61.29c-7.22-4.17-6.32-11.45,2.02-16.27l102.11-58.96c8.34-4.82,20.96-5.34,28.18-1.17l106.16,61.29c7.22,4.17,6.32,11.45-2.02,16.27Z"/>
|
97
|
+
<g>
|
98
|
+
<g>
|
99
|
+
<line class="cls-3" x1="419.68" y1="245.32" x2="419.68" y2="248.7"/>
|
100
|
+
<line class="cls-6" x1="419.68" y1="255.33" x2="419.68" y2="318.27"/>
|
101
|
+
<line class="cls-3" x1="419.68" y1="321.58" x2="419.68" y2="324.96"/>
|
102
|
+
</g>
|
103
|
+
<g>
|
104
|
+
<line class="cls-3" x1="293.97" y1="316.59" x2="293.97" y2="319.97"/>
|
105
|
+
<line class="cls-6" x1="293.97" y1="326.6" x2="293.97" y2="389.54"/>
|
106
|
+
<line class="cls-3" x1="293.97" y1="392.85" x2="293.97" y2="396.23"/>
|
107
|
+
</g>
|
108
|
+
<g>
|
109
|
+
<line class="cls-3" x1="172.65" y1="246.74" x2="172.65" y2="250.12"/>
|
110
|
+
<line class="cls-6" x1="172.65" y1="256.75" x2="172.65" y2="319.69"/>
|
111
|
+
<line class="cls-3" x1="172.65" y1="323" x2="172.65" y2="326.38"/>
|
112
|
+
</g>
|
113
|
+
<path class="cls-10" d="M354.96,295.44l-75.92-43.84,75.93-43.82,15.18,8.77-50.11,28.92h100.22s0,12.29,0,12.29h-100.22s50.1,28.92,50.1,28.92l-15.19,8.76ZM324.59,312.97l-15.18-8.77,15.19-8.76,15.18,8.77-15.19,8.76ZM187.94,251.58l-15.19,8.76c-4.18-2.41-6.26-5.33-6.26-8.77,0-3.43,2.09-6.36,6.26-8.77l15.18,8.77ZM203.13,242.82l-15.18-8.77,15.19-8.76,15.18,8.77-15.19,8.76ZM233.5,225.29l-15.18-8.77,15.19-8.76,15.18,8.77-15.19,8.76ZM263.87,207.76l-15.18-8.77,15.19-8.76,15.18,8.77-15.19,8.76ZM294.24,190.23l-15.18-8.77c4.18-2.41,9.24-3.62,15.18-3.61,5.95,0,11.01,1.21,15.18,3.62l-15.19,8.76ZM294.22,312.96l15.18,8.77c-4.18,2.41-9.24,3.62-15.18,3.61-5.95,0-11.01-1.21-15.18-3.62l15.19-8.76ZM263.86,312.96l-15.18-8.77,15.19-8.76,15.18,8.77-15.19,8.76ZM233.49,295.42l-15.18-8.77,15.19-8.76,15.18,8.77-15.19,8.76ZM203.12,277.88l-15.18-8.77,15.19-8.76,15.18,8.77-15.19,8.76ZM324.61,207.77l-15.18-8.77,15.19-8.76,15.18,8.77-15.19,8.76Z"/>
|
114
|
+
</g>
|
115
|
+
</g>
|
116
|
+
<g>
|
117
|
+
<path class="cls-7" d="M70.76,335.18l-5.24-3.03c-1.92-1.11-5.28-.97-7.5.31l-14.22,8.21c.67,4.28,1.45,8.53,2.34,12.74l24.09-13.91c2.22-1.28,2.46-3.22.54-4.33Z"/>
|
118
|
+
<path class="cls-7" d="M95.49,349.46l-5.24-3.03c-1.92-1.11-5.28-.97-7.5.31l-33.61,19.4c1.07,4.06,2.23,8.09,3.49,12.07l42.32-24.43c2.22-1.28,2.46-3.22.54-4.33Z"/>
|
119
|
+
<path class="cls-7" d="M122.13,364.84l-5.24-3.03c-1.92-1.11-5.28-.97-7.5.31l-51.93,29.98c1.46,3.85,3.01,7.65,4.65,11.41l59.48-34.34c2.22-1.28,2.46-3.22.54-4.33Z"/>
|
120
|
+
<path class="cls-7" d="M75.11,421.73l-6.03-3.48c1.38,2.69,2.82,5.35,4.29,7.98l1.27-.73c1.93-1.11,2.14-2.8.47-3.76Z"/>
|
121
|
+
</g>
|
122
|
+
<path class="cls-13" d="M284.55,432.58L58.75,302.21c-.62-.36-.54-.98.17-1.39l.17-.1c.71-.41,1.8-.46,2.41-.1l225.8,130.37c.62.36.54.98-.17,1.39l-.17.1c-.71.41-1.8.46-2.41.1Z"/>
|
123
|
+
<polygon class="cls-2" points="160 493.91 125.28 473.86 210.54 424.64 245.26 444.68 160 493.91"/>
|
124
|
+
<g>
|
125
|
+
<path class="cls-13" d="M144.84,406.85c-4.13,2.38-10.83,2.39-14.96,0-4.13-2.38-4.13-6.25,0-8.64s10.83-2.39,14.96,0,4.13,6.25,0,8.64Z"/>
|
126
|
+
<path class="cls-4" d="M166.01,419.07c-11.69,6.75-30.64,6.75-42.34,0-11.69-6.75-11.69-17.69,0-24.44s30.64-6.75,42.34,0c11.69,6.75,11.69,17.69,0,24.44Z"/>
|
127
|
+
<path class="cls-13" d="M173.61,402.08c-9.01.78-17.68,3.16-24.62,7.17s-11.07,9.01-12.41,14.21c10.12,1.67,21.46.21,29.43-4.39,7.97-4.6,10.49-11.15,7.6-16.99Z"/>
|
128
|
+
</g>
|
129
|
+
</g>
|
130
|
+
</g>
|
131
|
+
<g>
|
132
|
+
<path class="cls-10" d="M135.54,455c41.21,43.71,99.64,71,164.46,71s123.25-27.29,164.46-71H135.54Z"/>
|
133
|
+
<path class="cls-12" d="M288.7,489.5c0,2.69.96,5,2.88,6.92,1.92,1.92,4.23,2.88,6.92,2.88s5-.96,6.92-2.88,2.88-4.23,2.88-6.92-.96-5-2.88-6.92-4.23-2.88-6.92-2.88-5,.96-6.92,2.88c-1.92,1.92-2.88,4.23-2.88,6.92ZM298.5,504.2c.53,0,1.04-.02,1.53-.06s.98-.12,1.47-.25l-5.76,9.92c-6.17-.69-11.33-3.34-15.5-7.93s-6.25-10.06-6.25-16.38c0-1.72.16-3.38.49-4.99s.82-3.15,1.47-4.62l9.8,16.97c1.27,2.2,3.02,3.98,5.27,5.33,2.25,1.35,4.74,2.02,7.47,2.02ZM298.5,474.8c-3.27,0-6.17.95-8.7,2.85-2.53,1.9-4.29,4.32-5.27,7.26l-5.76-9.92c2.25-3.02,5.07-5.44,8.48-7.26,3.41-1.82,7.16-2.73,11.24-2.73s7.76.89,11.15,2.66,6.21,4.15,8.45,7.14h-19.6ZM320.92,479.7c.69,1.51,1.21,3.08,1.56,4.72s.52,3.33.52,5.08c0,6.33-2.07,11.78-6.22,16.35-4.14,4.57-9.26,7.23-15.34,7.96l9.8-16.97c.61-1.06,1.09-2.22,1.44-3.46s.52-2.54.52-3.89c0-1.92-.34-3.71-1.01-5.36s-1.6-3.13-2.79-4.44h11.51Z"/>
|
134
|
+
</g>
|
135
|
+
</g>
|
136
|
+
</svg>
|
@@ -0,0 +1,166 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600">
|
3
|
+
<defs>
|
4
|
+
<style>
|
5
|
+
.cls-1, .cls-2 {
|
6
|
+
fill: none;
|
7
|
+
}
|
8
|
+
|
9
|
+
.cls-3 {
|
10
|
+
fill: #4285f4;
|
11
|
+
}
|
12
|
+
|
13
|
+
.cls-4 {
|
14
|
+
fill: #f28b82;
|
15
|
+
}
|
16
|
+
|
17
|
+
.cls-5 {
|
18
|
+
fill: #669df6;
|
19
|
+
}
|
20
|
+
|
21
|
+
.cls-6 {
|
22
|
+
fill: #81c995;
|
23
|
+
}
|
24
|
+
|
25
|
+
.cls-7 {
|
26
|
+
fill: #d2e3fc;
|
27
|
+
}
|
28
|
+
|
29
|
+
.cls-2 {
|
30
|
+
stroke: #fff;
|
31
|
+
stroke-width: 16px;
|
32
|
+
}
|
33
|
+
|
34
|
+
.cls-8 {
|
35
|
+
clip-path: url(#clippath-1);
|
36
|
+
}
|
37
|
+
|
38
|
+
.cls-9 {
|
39
|
+
clip-path: url(#clippath-2);
|
40
|
+
}
|
41
|
+
|
42
|
+
.cls-10 {
|
43
|
+
fill: #1a73e8;
|
44
|
+
}
|
45
|
+
|
46
|
+
.cls-11 {
|
47
|
+
fill: #8ab4f8;
|
48
|
+
}
|
49
|
+
|
50
|
+
.cls-12, .cls-13 {
|
51
|
+
fill: #fff;
|
52
|
+
}
|
53
|
+
|
54
|
+
.cls-14 {
|
55
|
+
fill: #f8f9fa;
|
56
|
+
}
|
57
|
+
|
58
|
+
.cls-15 {
|
59
|
+
opacity: .05;
|
60
|
+
}
|
61
|
+
|
62
|
+
.cls-13 {
|
63
|
+
stroke: #dadce0;
|
64
|
+
stroke-miterlimit: 10;
|
65
|
+
stroke-width: 2.05px;
|
66
|
+
}
|
67
|
+
|
68
|
+
.cls-16 {
|
69
|
+
fill: #aecbfa;
|
70
|
+
}
|
71
|
+
|
72
|
+
.cls-17 {
|
73
|
+
fill: #f29900;
|
74
|
+
}
|
75
|
+
|
76
|
+
.cls-18 {
|
77
|
+
fill: #202124;
|
78
|
+
}
|
79
|
+
|
80
|
+
.cls-19 {
|
81
|
+
clip-path: url(#clippath);
|
82
|
+
}
|
83
|
+
</style>
|
84
|
+
<clipPath id="clippath">
|
85
|
+
<path class="cls-1" d="M300,74c-16.12,0-31.84,1.7-47,4.91V31h-94v92.39c-51.8,41.41-85,105.13-85,176.61,0,124.82,101.18,226,226,226s226-101.18,226-226-101.18-226-226-226Z"/>
|
86
|
+
</clipPath>
|
87
|
+
<clipPath id="clippath-1">
|
88
|
+
<polygon class="cls-1" points="176.4 68.87 172.39 66.56 172.39 113.48 176.4 110.83 176.4 68.87"/>
|
89
|
+
</clipPath>
|
90
|
+
<clipPath id="clippath-2">
|
91
|
+
<path class="cls-1" d="M503.39,257.66l-154.96-89.46-11.72-6.77c-4.51-2.6-88-50.8-92.51-53.41l-7.5-4.33-64.32-37.13v257.56c0,7.81,5.48,17.31,12.25,21.21l306.5,176.96c6.76,3.91,12.25.74,12.25-7.07v-257.56Z"/>
|
92
|
+
</clipPath>
|
93
|
+
<filter id="filter0_d_8437_5135" x="40" y="44" width="520" height="520" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
94
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
95
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
96
|
+
<feMorphology radius="6" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_8437_5135"/>
|
97
|
+
<feOffset dy="4"/>
|
98
|
+
<feGaussianBlur stdDeviation="6"/>
|
99
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.235294 0 0 0 0 0.25098 0 0 0 0 0.262745 0 0 0 0.15 0"/>
|
100
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8437_5135"/>
|
101
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8437_5135" result="shape"/>
|
102
|
+
</filter>
|
103
|
+
</defs>
|
104
|
+
<circle id="baseplate" class="cls-11" cx="300" cy="300" r="242" filter="url(#filter0_d_8437_5135)"/>
|
105
|
+
<circle id="border" class="cls-2" cx="300" cy="300" r="234"/>
|
106
|
+
<g id="illustration">
|
107
|
+
<g class="cls-19">
|
108
|
+
<g>
|
109
|
+
<path class="cls-3" d="M491.99,522.78l-308.2-177.94c-6.3-3.63-11.4-13.38-11.4-21.78V49.82c0-8.39,5.1-12.25,11.4-8.62l308.2,177.94c6.3,3.63,11.4,13.38,11.4,21.78v273.24c0,8.39-5.1,12.25-11.4,8.62Z"/>
|
110
|
+
<path class="cls-14" d="M503.39,257.66l-154.96-89.46-11.72-6.77c-4.51-2.6-88-50.8-92.51-53.41l-7.5-4.33-64.32-37.13v257.56c0,7.81,5.48,17.31,12.25,21.21l306.5,176.96c6.76,3.91,12.25.74,12.25-7.07v-257.56Z"/>
|
111
|
+
<g>
|
112
|
+
<path class="cls-14" d="M196.55,64.54c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74s2.52-5.04,5.62-3.25c3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
113
|
+
<path class="cls-14" d="M216.63,76.13c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74s2.52-5.04,5.62-3.25c3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
114
|
+
<path class="cls-14" d="M236.71,87.73c0,3.59-2.52,5.04-5.62,3.25-3.11-1.79-5.62-6.15-5.62-9.74,0-3.59,2.52-5.04,5.62-3.25,3.11,1.79,5.62,6.15,5.62,9.74Z"/>
|
115
|
+
</g>
|
116
|
+
<g>
|
117
|
+
<path class="cls-10" d="M187.05,107.17v-10.08c0-2.14,1.3-3.12,2.9-2.2l136.67,78.91c1.6.93,2.9,3.41,2.9,5.55v10.08c0,2.14-1.3,3.12-2.9,2.2l-136.67-78.91c-1.6-.93-2.9-3.41-2.9-5.55Z"/>
|
118
|
+
<g>
|
119
|
+
<path class="cls-5" d="M187.05,137.72v-13.81c0-1.11.67-1.62,1.5-1.14l35.22,20.34c.83.48,1.5,1.77,1.5,2.88v13.81c0,1.11-.67,1.62-1.5,1.14l-35.22-20.34c-.83-.48-1.5-1.77-1.5-2.88Z"/>
|
120
|
+
<path class="cls-5" d="M231.24,162.03v-11.39c0-1.78,1.08-2.59,2.41-1.82l93.46,53.96c1.33.77,2.41,2.83,2.41,4.61v11.39c0,1.78-1.08,2.59-2.41,1.82l-93.46-53.96c-1.33-.77-2.41-2.83-2.41-4.61Z"/>
|
121
|
+
</g>
|
122
|
+
<path class="cls-5" d="M231.24,191.1v-12.15c0-1.57.95-2.29,2.13-1.61l94.03,54.29c1.18.68,2.13,2.5,2.13,4.07v12.15c0,1.57-.95,2.29-2.13,1.61l-94.03-54.29c-1.18-.68-2.13-2.5-2.13-4.07Z"/>
|
123
|
+
<g>
|
124
|
+
<path class="cls-5" d="M252.93,233.53v-14.58c0-.9.54-1.31,1.22-.92l19.46,11.23c.67.39,1.22,1.43,1.22,2.33v14.58c0,.9-.54,1.31-1.22.92l-19.46-11.23c-.67-.39-1.22-1.43-1.22-2.33Z"/>
|
125
|
+
<path class="cls-5" d="M280.38,248.73v-13.28c0-1.26.76-1.83,1.71-1.29l45.73,26.4c.94.54,1.71,2,1.71,3.26v13.28c0,1.26-.76,1.83-1.71,1.29l-45.73-26.4c-.94-.54-1.71-2-1.71-3.26Z"/>
|
126
|
+
</g>
|
127
|
+
<path class="cls-5" d="M299.86,288.67v-13.28c0-1.26.76-1.83,1.71-1.29l26.25,15.16c.94.54,1.71,2,1.71,3.26v13.28c0,1.26-.76,1.83-1.71,1.29l-26.25-15.16c-.94-.54-1.71-2-1.71-3.26Z"/>
|
128
|
+
</g>
|
129
|
+
<g>
|
130
|
+
<path class="cls-10" d="M344.23,197.92v-10.08c0-2.14,1.3-3.12,2.9-2.2l136.67,78.91c1.6.93,2.9,3.41,2.9,5.55v10.08c0,2.14-1.3,3.12-2.9,2.2l-136.67-78.91c-1.6-.93-2.9-3.41-2.9-5.55Z"/>
|
131
|
+
<path class="cls-5" d="M388.43,252.78v-11.39c0-1.78,1.08-2.59,2.41-1.82l93.46,53.96c1.33.77,2.41,2.83,2.41,4.61v11.39c0,1.78-1.08,2.59-2.41,1.82l-93.46-53.96c-1.33-.77-2.41-2.83-2.41-4.61Z"/>
|
132
|
+
<path class="cls-5" d="M415.47,298.03v-13.28c0-1.26.76-1.83,1.71-1.29l67.83,39.16c.94.54,1.71,2,1.71,3.26v13.28c0,1.26-.76,1.83-1.71,1.29l-67.83-39.16c-.94-.54-1.71-2-1.71-3.26Z"/>
|
133
|
+
<path class="cls-5" d="M437.57,339.48v-13.28c0-1.26.76-1.83,1.71-1.29l45.73,26.4c.94.54,1.71,2,1.71,3.26v13.28c0,1.26-.76,1.83-1.71,1.29l-45.73-26.4c-.94-.54-1.71-2-1.71-3.26Z"/>
|
134
|
+
</g>
|
135
|
+
<g>
|
136
|
+
<polygon class="cls-4" points="354.91 342.61 331.39 376.07 378.44 403.23 354.91 342.61 331.39 376.07 378.44 403.23 354.91 342.61"/>
|
137
|
+
<polygon class="cls-17" points="435.14 435.23 395.03 412.08 395.03 365.76 435.14 388.92 435.14 435.23"/>
|
138
|
+
<path class="cls-6" d="M495.11,446.69c0,13.19-9.26,18.54-20.69,11.94-11.43-6.6-20.69-22.64-20.69-35.83,0-13.19,9.26-18.54,20.69-11.94,11.43,6.6,20.69,22.64,20.69,35.83Z"/>
|
139
|
+
</g>
|
140
|
+
</g>
|
141
|
+
<g class="cls-8">
|
142
|
+
<line class="cls-13" x1="173.35" y1="66.37" x2="173.35" y2="114"/>
|
143
|
+
</g>
|
144
|
+
</g>
|
145
|
+
<g class="cls-9">
|
146
|
+
<g class="cls-15">
|
147
|
+
<path class="cls-18" d="M322.25,381.82c.13,10.12-.9,19.14-3.07,27.06-2.17,7.91-5.34,14.81-9.49,20.7-1.69,2.19-4,3.33-6.92,3.41-2.91.08-5.99-.82-9.2-2.67l-126.83-73.22c-3.22-1.86-6.28-4.5-9.19-7.94-2.9-3.44-5.19-7.23-6.87-11.37-3.96-10.22-7-20.4-9.12-30.52-2.12-10.13-3.16-20.12-3.14-29.98.04-14.61,2.49-26.9,7.35-36.88,4.86-9.97,11.48-17.35,19.86-22.12,8.38-4.77,18.17-6.7,29.36-5.79,11.2.91,23.08,4.99,35.64,12.24,9.04,5.22,17.73,11.69,26.07,19.41,8.34,7.73,16.17,16.61,23.51,26.67l-17.5,2.59c-5.04-5.9-10.29-11.18-15.71-15.82-5.44-4.64-10.91-8.54-16.43-11.73-20.37-11.76-37.74-13.55-52.11-5.36-14.37,8.19-21.58,23.99-21.65,47.4-.02,7.39.84,15.2,2.58,23.44,1.74,8.24,4.21,16.45,7.41,24.65l126.83,73.22c3.54-4.66,6.13-10.13,7.76-16.41,1.63-6.29,2.45-13.3,2.48-21.05.02-6.34-.61-12.88-1.9-19.61-1.28-6.73-3.22-13.67-5.81-20.8l11.08-13.7c4.57,10.93,8.19,21.83,10.84,32.7,2.66,10.88,4.04,21.38,4.17,31.5Z"/>
|
148
|
+
<path class="cls-18" d="M210.92,318.86c.25-6.38,2.45-9.96,6.59-10.74l77.37-14.57-51.72,59c-2.77,3.17-7.06,3.11-12.89-.17-.12-.07-.24-.13-.36-.2-5.66-3.27-10.28-8.01-13.87-14.22-3.67-6.35-5.37-12.71-5.13-19.1Z"/>
|
149
|
+
</g>
|
150
|
+
</g>
|
151
|
+
<g>
|
152
|
+
<path class="cls-7" d="M287.78,346.78c-2.65-10.88-6.27-21.78-10.84-32.7l-16.32,9.48c4.57,10.93,8.19,21.83,10.84,32.7,2.66,10.88,4.04,21.38,4.17,31.5h0c.13,10.12-.9,19.14-3.07,27.06-2.17,7.91-5.34,14.81-9.49,20.7-.73.94-1.56,1.69-2.51,2.24l16.32-9.48c.95-.55,1.79-1.3,2.51-2.24,4.16-5.89,7.32-12.79,9.49-20.7,2.17-7.91,3.19-16.93,3.07-27.06-.13-10.12-1.51-20.62-4.17-31.5Z"/>
|
153
|
+
<path class="cls-7" d="M215.98,255.83c.94.96,1.87,1.94,2.79,2.93.15.16.29.31.44.46,1.05,1.14,2.1,2.3,3.14,3.48.31.35.61.72.92,1.07.72.83,1.44,1.67,2.16,2.52.36.43.72.88,1.08,1.32.68.83,1.37,1.67,2.04,2.52.36.45.71.91,1.07,1.37.82,1.06,1.64,2.13,2.46,3.22.51.68,1.02,1.35,1.52,2.04l16.32-9.48c-.3-.41-.59-.81-.89-1.21-.21-.28-.42-.55-.63-.83-.81-1.08-1.63-2.16-2.45-3.21-.21-.27-.41-.55-.62-.81-.15-.19-.3-.37-.45-.55-.68-.85-1.36-1.69-2.04-2.52-.27-.33-.54-.68-.82-1.01-.09-.1-.18-.2-.26-.31-.71-.85-1.44-1.69-2.16-2.52-.27-.31-.53-.63-.8-.94-.04-.04-.08-.09-.12-.13-1.04-1.18-2.08-2.34-3.14-3.48-.01-.01-.02-.03-.04-.04-.13-.14-.27-.28-.41-.43-.92-.99-1.85-1.97-2.79-2.93-.08-.08-.15-.16-.22-.24-.28-.28-.56-.55-.84-.83-.76-.76-1.52-1.52-2.29-2.27-.15-.15-.3-.3-.45-.45-.69-.66-1.38-1.32-2.08-1.96-.55-.51-1.1-1.02-1.66-1.51-.2-.18-.41-.35-.61-.53-.84-.75-1.68-1.48-2.52-2.2-.27-.23-.53-.47-.8-.7-.11-.09-.21-.17-.32-.26-1.19-1-2.38-1.97-3.58-2.92-.01,0-.02-.02-.03-.03,0,0,0,0,0,0-1.2-.95-2.41-1.86-3.62-2.76-.1-.07-.19-.15-.29-.22-.3-.22-.6-.42-.89-.63-.81-.59-1.63-1.17-2.45-1.74-.19-.13-.37-.27-.56-.39-.27-.19-.55-.36-.83-.55-.76-.51-1.52-1.01-2.28-1.51-.26-.17-.52-.35-.78-.52-.21-.14-.43-.26-.64-.39-.78-.49-1.56-.97-2.35-1.44-.31-.19-.62-.39-.94-.57-.3-.18-.61-.36-.92-.53-.92-.53-1.83-1.04-2.75-1.54-.1-.05-.19-.11-.29-.16-.13-.07-.26-.13-.39-.2-1.08-.58-2.16-1.14-3.23-1.67-.06-.03-.12-.06-.18-.09-.02,0-.04-.02-.06-.03-1.09-.54-2.18-1.05-3.26-1.54-.12-.06-.25-.12-.37-.18-.11-.05-.22-.09-.34-.14-1.06-.47-2.11-.92-3.16-1.34-.04-.01-.07-.03-.11-.05-.1-.04-.2-.07-.3-.11-.96-.38-1.92-.74-2.87-1.08-.13-.05-.26-.1-.39-.15-.07-.03-.15-.05-.22-.07-1.04-.36-2.07-.7-3.09-1.01-.08-.03-.17-.06-.25-.08-.13-.04-.25-.07-.37-.1-1.04-.31-2.07-.6-3.1-.86-.04,0-.08-.02-.11-.03-.02,0-.03,0-.05-.01-.11-.03-.22-.05-.33-.08-.57-.14-1.13-.27-1.69-.39-.23-.05-.46-.1-.69-.14-.3-.06-.6-.13-.91-.19-.14-.03-.27-.05-.41-.07-.28-.05-.55-.1-.83-.15-.4-.07-.81-.14-1.21-.2-.28-.04-.56-.09-.84-.13-.17-.02-.34-.05-.5-.08-.12-.02-.24-.02-.36-.04-.99-.13-1.98-.24-2.96-.32-.25-.02-.51-.04-.76-.06-.18-.01-.36-.02-.54-.03-.46-.03-.92-.05-1.38-.07-.3-.01-.59-.02-.89-.03-.46-.01-.91-.02-1.36-.02-.18,0-.37,0-.55,0-.09,0-.19,0-.28,0-.61,0-1.22.02-1.82.04-.15,0-.3,0-.45.01-.75.04-1.49.09-2.22.15-.04,0-.09,0-.13,0-.12.01-.23.03-.35.04-.67.06-1.33.14-1.98.23-.22.03-.44.06-.66.09-.77.11-1.54.24-2.3.39-.01,0-.03,0-.05,0,0,0,0,0-.01,0-.06.01-.11.02-.17.04-.52.1-1.04.22-1.56.34-.19.05-.38.1-.58.15-.38.09-.75.19-1.12.29-.22.06-.44.13-.66.19-.34.1-.68.2-1.01.3-.23.07-.46.15-.69.23-.18.06-.37.12-.55.18-.11.04-.22.09-.34.13-.36.13-.71.26-1.06.4-.25.1-.49.19-.74.29-.36.15-.72.3-1.08.46-.23.1-.46.2-.68.3-.39.18-.77.37-1.16.56-.19.09-.38.18-.56.28-.57.29-1.13.59-1.68.91-.11.06-.22.12-.33.19l-16.32,9.48c.11-.06.22-.13.33-.19.55-.32,1.11-.62,1.68-.91.19-.1.38-.18.56-.28.38-.19.77-.38,1.16-.56.23-.1.46-.2.68-.3.36-.16.71-.31,1.07-.46.25-.1.49-.19.74-.29.35-.14.7-.27,1.06-.4.3-.11.59-.21.89-.31.23-.08.46-.15.69-.23.34-.11.67-.21,1.01-.31.22-.06.44-.13.66-.19.37-.1.75-.2,1.12-.29.19-.05.38-.1.58-.14.52-.12,1.04-.23,1.56-.34.06-.01.11-.03.17-.04.02,0,.04,0,.06,0,.76-.15,1.52-.27,2.29-.39.22-.03.44-.06.66-.09.66-.09,1.32-.16,1.98-.23.16-.02.32-.03.48-.05.73-.06,1.47-.11,2.22-.15.15,0,.3,0,.45-.01.6-.02,1.21-.04,1.82-.04.28,0,.55,0,.83,0,.45,0,.9,0,1.36.02.3,0,.59.02.89.03.46.02.92.04,1.38.07.43.03.86.05,1.3.09.98.08,1.97.19,2.97.32.29.04.58.07.86.11.28.04.56.08.84.13.4.06.81.13,1.21.2.28.05.55.1.83.15.44.08.88.17,1.32.26.23.05.46.09.69.14.56.12,1.13.26,1.7.39.11.03.22.05.33.08.05.01.11.03.16.04,1.03.26,2.06.55,3.1.86.21.06.41.12.62.18,1.03.31,2.06.65,3.09,1.01.2.07.41.15.61.22.95.34,1.91.7,2.87,1.08.14.05.28.11.41.16,1.05.42,2.1.87,3.16,1.34.24.1.47.21.71.32,1.08.49,2.17,1,3.26,1.54.08.04.16.08.24.12,1.07.53,2.15,1.09,3.23,1.68.23.12.45.24.68.36.91.5,1.83,1.01,2.75,1.54.62.36,1.23.74,1.85,1.11.79.47,1.57.95,2.35,1.44.48.3.95.6,1.42.91.76.49,1.52,1,2.28,1.51.46.31.92.62,1.38.94.82.57,1.63,1.15,2.45,1.74.4.29.79.57,1.19.86,1.21.9,2.42,1.81,3.62,2.76,0,0,.02.01.03.02,1.2.95,2.4,1.93,3.59,2.93.37.31.75.64,1.12.96.84.72,1.69,1.45,2.52,2.2.76.68,1.51,1.35,2.27,2.04.85.79,1.69,1.6,2.53,2.41.77.75,1.53,1.51,2.3,2.27.35.36.71.71,1.06,1.07Z"/>
|
154
|
+
<path class="cls-11" d="M248.26,299.49l-51.72,59c-.52.6-1.1,1.08-1.74,1.45l16.32-9.48c.63-.37,1.21-.85,1.74-1.45l51.72-59-16.32,9.48Z"/>
|
155
|
+
<path class="cls-16" d="M187.21,304.58s-.05,0-.07.01c-.37.07-.73.17-1.07.29-.01,0-.03.01-.04.02-.4.14-.79.32-1.15.53l-16.32,9.48c.36-.21.74-.38,1.15-.52.37-.13.76-.24,1.18-.32l77.37-14.57,16.32-9.48-77.37,14.57Z"/>
|
156
|
+
<path class="cls-10" d="M275.63,387.76c.13,10.12-.9,19.14-3.07,27.06-2.17,7.91-5.34,14.81-9.49,20.7-1.69,2.19-4,3.33-6.92,3.41-2.91.08-5.99-.82-9.2-2.67l-126.83-73.22c-3.22-1.86-6.28-4.5-9.19-7.94-2.9-3.44-5.19-7.23-6.87-11.37-3.96-10.22-7-20.4-9.12-30.52-2.12-10.13-3.16-20.12-3.14-29.98.04-14.61,2.49-26.9,7.35-36.88,4.86-9.97,11.48-17.35,19.86-22.12,8.38-4.77,18.17-6.7,29.36-5.79,11.2.91,23.08,4.99,35.64,12.24,9.04,5.22,17.73,11.69,26.07,19.41,8.34,7.73,16.17,16.61,23.51,26.67l-17.5,2.59c-5.04-5.9-10.29-11.18-15.71-15.82-5.44-4.64-10.91-8.54-16.43-11.73-20.37-11.76-37.74-13.55-52.11-5.36-14.37,8.19-21.58,23.99-21.65,47.4-.02,7.39.84,15.2,2.58,23.44,1.74,8.24,4.21,16.45,7.41,24.65l126.83,73.22c3.54-4.66,6.13-10.13,7.76-16.41,1.63-6.29,2.45-13.3,2.48-21.05.02-6.34-.61-12.88-1.9-19.61-1.28-6.73-3.22-13.67-5.81-20.8l11.08-13.7c4.57,10.93,8.19,21.83,10.84,32.7,2.66,10.88,4.04,21.38,4.17,31.5Z"/>
|
157
|
+
<path class="cls-10" d="M164.3,324.8c.25-6.38,2.45-9.96,6.59-10.74l77.37-14.57-51.72,59c-2.77,3.17-7.06,3.11-12.89-.17-.12-.07-.24-.13-.36-.2-5.66-3.27-10.28-8.01-13.87-14.22-3.67-6.35-5.37-12.71-5.13-19.1Z"/>
|
158
|
+
<path class="cls-7" d="M254.28,400.43l-117.79-68-16.32,9.48,126.83,73.22c3.22-4.23,5.64-9.13,7.27-14.7Z"/>
|
159
|
+
<path class="cls-7" d="M112.77,317.26c1.74,8.24,4.21,16.45,7.41,24.65l16.32-9.48c-3.2-8.2-5.67-16.41-7.41-24.65-1.74-8.23-2.6-16.05-2.58-23.44.05-18.69,4.68-32.51,13.85-41.5-2.95.83-5.78,2.03-8.51,3.58-14.37,8.19-21.58,23.99-21.65,47.4-.02,7.39.84,15.2,2.58,23.44Z"/>
|
160
|
+
</g>
|
161
|
+
<g>
|
162
|
+
<path class="cls-10" d="M135.54,455c41.21,43.71,99.64,71,164.46,71s123.25-27.29,164.46-71H135.54Z"/>
|
163
|
+
<path class="cls-12" d="M288.7,489.5c0,2.69.96,5,2.88,6.92,1.92,1.92,4.23,2.88,6.92,2.88s5-.96,6.92-2.88,2.88-4.23,2.88-6.92-.96-5-2.88-6.92-4.23-2.88-6.92-2.88-5,.96-6.92,2.88c-1.92,1.92-2.88,4.23-2.88,6.92ZM298.5,504.2c.53,0,1.04-.02,1.53-.06s.98-.12,1.47-.24l-5.76,9.92c-6.17-.69-11.33-3.34-15.5-7.93s-6.25-10.06-6.25-16.38c0-1.72.16-3.38.49-4.99s.82-3.15,1.47-4.62l9.8,16.97c1.27,2.21,3.02,3.98,5.27,5.33,2.25,1.35,4.74,2.02,7.47,2.02ZM298.5,474.8c-3.27,0-6.17.95-8.7,2.85-2.53,1.9-4.29,4.32-5.27,7.26l-5.76-9.92c2.25-3.02,5.07-5.44,8.48-7.26,3.41-1.82,7.16-2.73,11.24-2.73s7.76.89,11.15,2.66,6.21,4.15,8.45,7.14h-19.6ZM320.92,479.7c.69,1.51,1.21,3.08,1.56,4.72s.52,3.33.52,5.08c0,6.33-2.07,11.78-6.22,16.35-4.14,4.57-9.26,7.23-15.34,7.96l9.8-16.97c.61-1.06,1.09-2.22,1.44-3.46s.52-2.54.52-3.89c0-1.92-.34-3.71-1.01-5.36s-1.6-3.13-2.79-4.44h11.51Z"/>
|
164
|
+
</g>
|
165
|
+
</g>
|
166
|
+
</svg>
|