From 0b42cf420c7d3120361c26d34bf4ba699b21a154 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Mon, 4 Aug 2025 15:34:14 -0400 Subject: [PATCH 01/96] Add endpoint --- internal/dev_server/sdk/routes.go | 2 +- internal/dev_server/sdk/sdk_events.go | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 internal/dev_server/sdk/sdk_events.go diff --git a/internal/dev_server/sdk/routes.go b/internal/dev_server/sdk/routes.go index 4b348ff7a..efd276095 100644 --- a/internal/dev_server/sdk/routes.go +++ b/internal/dev_server/sdk/routes.go @@ -16,7 +16,7 @@ func BindRoutes(router *mux.Router) { router.Handle("/events/diagnostic/{envId}", EventsCorsHeaders(DevNull)) router.HandleFunc("/mobile", DevNull) router.HandleFunc("/mobile/events", DevNull) - router.HandleFunc("/mobile/events/bulk", DevNull) + router.HandleFunc("/mobile/events/bulk", SdkEventswHandler) router.HandleFunc("/mobile/events/diagnostic", DevNull) router.Handle("/all", GetProjectKeyFromAuthorizationHeader(http.HandlerFunc(StreamServerAllPayload))) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go new file mode 100644 index 000000000..61b67bf39 --- /dev/null +++ b/internal/dev_server/sdk/sdk_events.go @@ -0,0 +1,22 @@ +package sdk + +import ( + "io" + "log" + "net/http" +) + +func SdkEventswHandler(writer http.ResponseWriter, request *http.Request) { + log.Println(request.URL.Path) + bodyStr, err := io.ReadAll(request.Body) + if err != nil { + log.Printf("SdkEventswHandler: error reading request body: %v", err) + return + } + log.Printf(string(bodyStr)) + + log.Printf("SdkEventswHandler: handling request: %v", request) + + writer.Header().Set("Content-Type", "application/json") + writer.WriteHeader(http.StatusAccepted) +} From edb122e4f8f5f51d26cb1204e294dc5f8e030e03 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Mon, 4 Aug 2025 15:47:13 -0400 Subject: [PATCH 02/96] Update logging --- internal/dev_server/sdk/routes.go | 2 +- internal/dev_server/sdk/sdk_events.go | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/dev_server/sdk/routes.go b/internal/dev_server/sdk/routes.go index efd276095..d9da2f59e 100644 --- a/internal/dev_server/sdk/routes.go +++ b/internal/dev_server/sdk/routes.go @@ -10,7 +10,7 @@ var DevNull = ConstantResponseHandler(http.StatusAccepted, "") func BindRoutes(router *mux.Router) { // events - router.HandleFunc("/bulk", DevNull) + router.HandleFunc("/bulk", SdkEventswHandler) router.HandleFunc("/diagnostic", DevNull) router.Handle("/events/bulk/{envId}", EventsCorsHeaders(DevNull)) router.Handle("/events/diagnostic/{envId}", EventsCorsHeaders(DevNull)) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 61b67bf39..64ed6e493 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -15,8 +15,6 @@ func SdkEventswHandler(writer http.ResponseWriter, request *http.Request) { } log.Printf(string(bodyStr)) - log.Printf("SdkEventswHandler: handling request: %v", request) - writer.Header().Set("Content-Type", "application/json") writer.WriteHeader(http.StatusAccepted) } From 3807d19c2e9eada26e5160862458617d74ab7db7 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Mon, 4 Aug 2025 15:50:31 -0400 Subject: [PATCH 03/96] Add run configs --- .run/run with sync.run.xml | 17 +++++++++++++++++ .run/run without sync.run.xml | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .run/run with sync.run.xml create mode 100644 .run/run without sync.run.xml diff --git a/.run/run with sync.run.xml b/.run/run with sync.run.xml new file mode 100644 index 000000000..db5f00f5b --- /dev/null +++ b/.run/run with sync.run.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.run/run without sync.run.xml b/.run/run without sync.run.xml new file mode 100644 index 000000000..ab6b4b7ec --- /dev/null +++ b/.run/run without sync.run.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file From 3604ac012b7ad5e4d159afc368aa59fb75f1c83f Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Mon, 4 Aug 2025 15:58:42 -0400 Subject: [PATCH 04/96] Fix printly --- internal/dev_server/sdk/sdk_events.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 64ed6e493..9b89f1e42 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -13,7 +13,7 @@ func SdkEventswHandler(writer http.ResponseWriter, request *http.Request) { log.Printf("SdkEventswHandler: error reading request body: %v", err) return } - log.Printf(string(bodyStr)) + log.Println(string(bodyStr)) writer.Header().Set("Content-Type", "application/json") writer.WriteHeader(http.StatusAccepted) From 5db6c4dc5062f11fd6711d32c27f21e68af1bdf8 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Mon, 4 Aug 2025 16:02:26 -0400 Subject: [PATCH 05/96] Fix precommit --- .run/run with sync.run.xml | 2 +- .run/run without sync.run.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.run/run with sync.run.xml b/.run/run with sync.run.xml index db5f00f5b..5c2233e1d 100644 --- a/.run/run with sync.run.xml +++ b/.run/run with sync.run.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/.run/run without sync.run.xml b/.run/run without sync.run.xml index ab6b4b7ec..b87533443 100644 --- a/.run/run without sync.run.xml +++ b/.run/run without sync.run.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + From 5c75a46cef0f8af0cc53f55eeba7bc55fbc4dabf Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Mon, 4 Aug 2025 14:04:43 -0700 Subject: [PATCH 06/96] fix typo in function name --- internal/dev_server/sdk/routes.go | 4 ++-- internal/dev_server/sdk/sdk_events.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/dev_server/sdk/routes.go b/internal/dev_server/sdk/routes.go index d9da2f59e..13e0e043c 100644 --- a/internal/dev_server/sdk/routes.go +++ b/internal/dev_server/sdk/routes.go @@ -10,13 +10,13 @@ var DevNull = ConstantResponseHandler(http.StatusAccepted, "") func BindRoutes(router *mux.Router) { // events - router.HandleFunc("/bulk", SdkEventswHandler) + router.HandleFunc("/bulk", SdkEventsHandler) router.HandleFunc("/diagnostic", DevNull) router.Handle("/events/bulk/{envId}", EventsCorsHeaders(DevNull)) router.Handle("/events/diagnostic/{envId}", EventsCorsHeaders(DevNull)) router.HandleFunc("/mobile", DevNull) router.HandleFunc("/mobile/events", DevNull) - router.HandleFunc("/mobile/events/bulk", SdkEventswHandler) + router.HandleFunc("/mobile/events/bulk", SdkEventsHandler) router.HandleFunc("/mobile/events/diagnostic", DevNull) router.Handle("/all", GetProjectKeyFromAuthorizationHeader(http.HandlerFunc(StreamServerAllPayload))) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 9b89f1e42..201a22c1a 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -6,11 +6,11 @@ import ( "net/http" ) -func SdkEventswHandler(writer http.ResponseWriter, request *http.Request) { +func SdkEventsHandler(writer http.ResponseWriter, request *http.Request) { log.Println(request.URL.Path) bodyStr, err := io.ReadAll(request.Body) if err != nil { - log.Printf("SdkEventswHandler: error reading request body: %v", err) + log.Printf("SdkEventsHandler: error reading request body: %v", err) return } log.Println(string(bodyStr)) From 026d81a2af58ec3ce598b107292fd85043252d8e Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Mon, 4 Aug 2025 14:51:29 -0700 Subject: [PATCH 07/96] SSE plumbing --- internal/dev_server/sdk/routes.go | 5 +++-- internal/dev_server/sdk/sdk_events.go | 29 +++++++++++++++++++++++++-- 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/internal/dev_server/sdk/routes.go b/internal/dev_server/sdk/routes.go index 13e0e043c..55c847df1 100644 --- a/internal/dev_server/sdk/routes.go +++ b/internal/dev_server/sdk/routes.go @@ -10,13 +10,14 @@ var DevNull = ConstantResponseHandler(http.StatusAccepted, "") func BindRoutes(router *mux.Router) { // events - router.HandleFunc("/bulk", SdkEventsHandler) + router.HandleFunc("/bulk", SdkEventsReceiveHandler) router.HandleFunc("/diagnostic", DevNull) + router.HandleFunc("/events/tee", SdkEventsTeeHandler) router.Handle("/events/bulk/{envId}", EventsCorsHeaders(DevNull)) router.Handle("/events/diagnostic/{envId}", EventsCorsHeaders(DevNull)) router.HandleFunc("/mobile", DevNull) router.HandleFunc("/mobile/events", DevNull) - router.HandleFunc("/mobile/events/bulk", SdkEventsHandler) + router.HandleFunc("/mobile/events/bulk", SdkEventsReceiveHandler) router.HandleFunc("/mobile/events/diagnostic", DevNull) router.Handle("/all", GetProjectKeyFromAuthorizationHeader(http.HandlerFunc(StreamServerAllPayload))) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 201a22c1a..a68564618 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -1,16 +1,17 @@ package sdk import ( + "github.com/pkg/errors" "io" "log" "net/http" ) -func SdkEventsHandler(writer http.ResponseWriter, request *http.Request) { +func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) { log.Println(request.URL.Path) bodyStr, err := io.ReadAll(request.Body) if err != nil { - log.Printf("SdkEventsHandler: error reading request body: %v", err) + log.Printf("SdkEventsReceiveHandler: error reading request body: %v", err) return } log.Println(string(bodyStr)) @@ -18,3 +19,27 @@ func SdkEventsHandler(writer http.ResponseWriter, request *http.Request) { writer.Header().Set("Content-Type", "application/json") writer.WriteHeader(http.StatusAccepted) } + +func SdkEventsTeeHandler(writer http.ResponseWriter, request *http.Request) { + // Initialize SSE + updateChan, errChan := OpenStream( + writer, + request.Context().Done(), + Message{Event: TYPE_PUT, Data: []byte("start")}, + ) + defer close(updateChan) + + // Use updateChan to continually send messages back to the client. OpenStream, above, + // takes care of flushing the data. + // + // If the client cancels the request, OpenStream will notice via request.Context.Done(). + // Otherwise, this connection is never explicitly closed by us. + updateChan <- Message{Event: TYPE_PUT, Data: []byte("data1")} + updateChan <- Message{Event: TYPE_PUT, Data: []byte("data2")} + + err := <-errChan + if err != nil { + WriteError(request.Context(), writer, errors.Wrap(err, "stream failure")) + return + } +} From dbe2abc8df052f4b3887bceb6447a1ce54aea39d Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Mon, 4 Aug 2025 16:23:11 -0700 Subject: [PATCH 08/96] observer pattern --- internal/dev_server/sdk/sdk_events.go | 50 ++++++++++++++++++++------- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index a68564618..3be651a68 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -1,41 +1,67 @@ package sdk import ( - "github.com/pkg/errors" "io" "log" "net/http" + "sync" + + "github.com/launchdarkly/ldcli/internal/dev_server/model" + "github.com/pkg/errors" ) +type sdkEventObserver struct { + updateChan chan<- Message +} + +func (o sdkEventObserver) Handle(message interface{}) { + str, ok := message.(string) + if !ok { + return + } + o.updateChan <- Message{Event: TYPE_PUT, Data: []byte(str)} +} + +var observers *model.Observers +var once sync.Once + func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) { - log.Println(request.URL.Path) + once.Do(func() { + observers = model.NewObservers() + }) + bodyStr, err := io.ReadAll(request.Body) if err != nil { log.Printf("SdkEventsReceiveHandler: error reading request body: %v", err) return } - log.Println(string(bodyStr)) + if observers != nil { + observers.Notify(string(bodyStr)) + } writer.Header().Set("Content-Type", "application/json") writer.WriteHeader(http.StatusAccepted) } func SdkEventsTeeHandler(writer http.ResponseWriter, request *http.Request) { - // Initialize SSE + once.Do(func() { + observers = model.NewObservers() + }) + updateChan, errChan := OpenStream( writer, request.Context().Done(), - Message{Event: TYPE_PUT, Data: []byte("start")}, + Message{Event: TYPE_PUT, Data: []byte{}}, ) defer close(updateChan) - // Use updateChan to continually send messages back to the client. OpenStream, above, - // takes care of flushing the data. - // - // If the client cancels the request, OpenStream will notice via request.Context.Done(). - // Otherwise, this connection is never explicitly closed by us. - updateChan <- Message{Event: TYPE_PUT, Data: []byte("data1")} - updateChan <- Message{Event: TYPE_PUT, Data: []byte("data2")} + observerId := observers.RegisterObserver(sdkEventObserver{updateChan}) + defer func() { + ok := observers.DeregisterObserver(observerId) + if !ok { + log.Printf("unable to remove observer") + } + }() err := <-errChan if err != nil { From fd32694c4683d1af04ed6735bee3c560941d6004 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Mon, 4 Aug 2025 16:37:11 -0700 Subject: [PATCH 09/96] rm nil check --- internal/dev_server/sdk/sdk_events.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 3be651a68..87738dcf0 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -35,9 +35,7 @@ func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) log.Printf("SdkEventsReceiveHandler: error reading request body: %v", err) return } - if observers != nil { - observers.Notify(string(bodyStr)) - } + observers.Notify(string(bodyStr)) writer.Header().Set("Content-Type", "application/json") writer.WriteHeader(http.StatusAccepted) From 4a251b49bb1b3676c739a948a43d92500c5436b3 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 09:54:52 -0700 Subject: [PATCH 10/96] Add toggle for new "events" section on SPA. --- internal/dev_server/ui/src/App.tsx | 47 ++++++++++++--------- internal/dev_server/ui/src/Events.tsx | 5 +++ internal/dev_server/ui/src/EventsButton.tsx | 29 +++++++++++++ internal/dev_server/ui/src/FlagsButton.tsx | 29 +++++++++++++ 4 files changed, 91 insertions(+), 19 deletions(-) create mode 100644 internal/dev_server/ui/src/Events.tsx create mode 100644 internal/dev_server/ui/src/EventsButton.tsx create mode 100644 internal/dev_server/ui/src/FlagsButton.tsx diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx index bef145170..e6c5bb10d 100644 --- a/internal/dev_server/ui/src/App.tsx +++ b/internal/dev_server/ui/src/App.tsx @@ -9,6 +9,8 @@ import { Heading, Text } from '@launchpad-ui/components'; import { FlagVariation } from './api.ts'; import { apiRoute, sortFlags } from './util.ts'; import { ProjectEditor } from './ProjectEditor'; +import EventsButton from './EventsButton.tsx'; +import FlagsButton from './FlagsButton.tsx'; interface Environment { key: string; @@ -30,6 +32,7 @@ function App() { >({}); const [flags, setFlags] = useState(null); const [showBanner, setShowBanner] = useState(false); + const [showEvents, setShowEvents] = useState(false); const [context, setContext] = useState('{}'); const fetchDevFlags = useCallback(async () => { @@ -187,29 +190,35 @@ function App() { updateProjectSettings={updateProjectSettings} /> )} - + + { setShowEvents(false); }} /> + { setShowEvents(true); }} /> + + )} {selectedProject && ( - , - ) => { - setOverrides(newOverrides); - }} - /> + {!showEvents && ( + , + ) => { + setOverrides(newOverrides); + }} + /> + )} )} diff --git a/internal/dev_server/ui/src/Events.tsx b/internal/dev_server/ui/src/Events.tsx new file mode 100644 index 000000000..21f11c283 --- /dev/null +++ b/internal/dev_server/ui/src/Events.tsx @@ -0,0 +1,5 @@ +const Events = () => { + return events go here; +}; + +export default Events; diff --git a/internal/dev_server/ui/src/EventsButton.tsx b/internal/dev_server/ui/src/EventsButton.tsx new file mode 100644 index 000000000..71c2bbd85 --- /dev/null +++ b/internal/dev_server/ui/src/EventsButton.tsx @@ -0,0 +1,29 @@ +import { + Button, + Tooltip, + TooltipTrigger, +} from '@launchpad-ui/components'; +import { Icon } from '@launchpad-ui/icons'; +import { Inline } from '@launchpad-ui/core'; + +type Props = { + onPress: () => void; +}; + +const EventsButton = ({ onPress }: Props) => { + return ( + + + View events + + ); +}; + +export default EventsButton; diff --git a/internal/dev_server/ui/src/FlagsButton.tsx b/internal/dev_server/ui/src/FlagsButton.tsx new file mode 100644 index 000000000..113f47efd --- /dev/null +++ b/internal/dev_server/ui/src/FlagsButton.tsx @@ -0,0 +1,29 @@ +import { + Button, + Tooltip, + TooltipTrigger, +} from '@launchpad-ui/components'; +import { Icon } from '@launchpad-ui/icons'; +import { Inline } from '@launchpad-ui/core'; + +type Props = { + onPress: () => void; +}; + +const FlagsButton = ({ onPress }: Props) => { + return ( + + + View flags + + ); +}; + +export default FlagsButton; From 0774bfce7041cd9e794ebcabefc937e5383043b0 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 10:21:56 -0700 Subject: [PATCH 11/96] modes for SPA --- internal/dev_server/ui/src/App.tsx | 87 +++++++++++++++++------------- 1 file changed, 50 insertions(+), 37 deletions(-) diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx index e6c5bb10d..c36aa0d7c 100644 --- a/internal/dev_server/ui/src/App.tsx +++ b/internal/dev_server/ui/src/App.tsx @@ -32,8 +32,8 @@ function App() { >({}); const [flags, setFlags] = useState(null); const [showBanner, setShowBanner] = useState(false); - const [showEvents, setShowEvents] = useState(false); const [context, setContext] = useState('{}'); + const [mode, setMode] = useState<'flags' | 'events'>('flags'); const fetchDevFlags = useCallback(async () => { if (!selectedProject) { @@ -133,24 +133,8 @@ function App() { [selectedProject, fetchDevFlags], ); - return ( -
- + const flagsContent = () => { + return ( {showBanner && ( @@ -191,8 +175,6 @@ function App() { /> )} - { setShowEvents(false); }} /> - { setShowEvents(true); }} /> - {!showEvents && ( - , - ) => { - setOverrides(newOverrides); - }} - /> - )} + , + ) => { + setOverrides(newOverrides); + }} + /> )} + ) + }; + + const eventsContent = () => { + return Stubbed content; + }; + + return ( +
+ + + { setMode('flags'); }} /> + + { setMode('events'); }} /> + + + + {mode === 'flags' ? flagsContent() : eventsContent()}
); From 2c820928b8435602af2cbfc45862f4b028fdbd03 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 10:25:32 -0700 Subject: [PATCH 12/96] Revert "modes for SPA" This reverts commit 0774bfce7041cd9e794ebcabefc937e5383043b0. --- internal/dev_server/ui/src/App.tsx | 87 +++++++++++++----------------- 1 file changed, 37 insertions(+), 50 deletions(-) diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx index c36aa0d7c..e6c5bb10d 100644 --- a/internal/dev_server/ui/src/App.tsx +++ b/internal/dev_server/ui/src/App.tsx @@ -32,8 +32,8 @@ function App() { >({}); const [flags, setFlags] = useState(null); const [showBanner, setShowBanner] = useState(false); + const [showEvents, setShowEvents] = useState(false); const [context, setContext] = useState('{}'); - const [mode, setMode] = useState<'flags' | 'events'>('flags'); const fetchDevFlags = useCallback(async () => { if (!selectedProject) { @@ -133,8 +133,24 @@ function App() { [selectedProject, fetchDevFlags], ); - const flagsContent = () => { - return ( + return ( +
+ {showBanner && ( @@ -175,6 +191,8 @@ function App() { /> )} + { setShowEvents(false); }} /> + { setShowEvents(true); }} /> - , - ) => { - setOverrides(newOverrides); - }} - /> + {!showEvents && ( + , + ) => { + setOverrides(newOverrides); + }} + /> + )} )} - ) - }; - - const eventsContent = () => { - return Stubbed content; - }; - - return ( -
- - - { setMode('flags'); }} /> - - { setMode('events'); }} /> - - - - {mode === 'flags' ? flagsContent() : eventsContent()}
); From 4086268160f7c5094a8f839e7ed7764e3aff6fdb Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 10:25:43 -0700 Subject: [PATCH 13/96] Revert "Add toggle for new "events" section on SPA." This reverts commit 4a251b49bb1b3676c739a948a43d92500c5436b3. --- internal/dev_server/ui/src/App.tsx | 47 +++++++++------------ internal/dev_server/ui/src/Events.tsx | 5 --- internal/dev_server/ui/src/EventsButton.tsx | 29 ------------- internal/dev_server/ui/src/FlagsButton.tsx | 29 ------------- 4 files changed, 19 insertions(+), 91 deletions(-) delete mode 100644 internal/dev_server/ui/src/Events.tsx delete mode 100644 internal/dev_server/ui/src/EventsButton.tsx delete mode 100644 internal/dev_server/ui/src/FlagsButton.tsx diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx index e6c5bb10d..bef145170 100644 --- a/internal/dev_server/ui/src/App.tsx +++ b/internal/dev_server/ui/src/App.tsx @@ -9,8 +9,6 @@ import { Heading, Text } from '@launchpad-ui/components'; import { FlagVariation } from './api.ts'; import { apiRoute, sortFlags } from './util.ts'; import { ProjectEditor } from './ProjectEditor'; -import EventsButton from './EventsButton.tsx'; -import FlagsButton from './FlagsButton.tsx'; interface Environment { key: string; @@ -32,7 +30,6 @@ function App() { >({}); const [flags, setFlags] = useState(null); const [showBanner, setShowBanner] = useState(false); - const [showEvents, setShowEvents] = useState(false); const [context, setContext] = useState('{}'); const fetchDevFlags = useCallback(async () => { @@ -190,35 +187,29 @@ function App() { updateProjectSettings={updateProjectSettings} /> )} - - { setShowEvents(false); }} /> - { setShowEvents(true); }} /> - - +
)} {selectedProject && ( - {!showEvents && ( - , - ) => { - setOverrides(newOverrides); - }} - /> - )} + , + ) => { + setOverrides(newOverrides); + }} + /> )}
diff --git a/internal/dev_server/ui/src/Events.tsx b/internal/dev_server/ui/src/Events.tsx deleted file mode 100644 index 21f11c283..000000000 --- a/internal/dev_server/ui/src/Events.tsx +++ /dev/null @@ -1,5 +0,0 @@ -const Events = () => { - return events go here; -}; - -export default Events; diff --git a/internal/dev_server/ui/src/EventsButton.tsx b/internal/dev_server/ui/src/EventsButton.tsx deleted file mode 100644 index 71c2bbd85..000000000 --- a/internal/dev_server/ui/src/EventsButton.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { - Button, - Tooltip, - TooltipTrigger, -} from '@launchpad-ui/components'; -import { Icon } from '@launchpad-ui/icons'; -import { Inline } from '@launchpad-ui/core'; - -type Props = { - onPress: () => void; -}; - -const EventsButton = ({ onPress }: Props) => { - return ( - - - View events - - ); -}; - -export default EventsButton; diff --git a/internal/dev_server/ui/src/FlagsButton.tsx b/internal/dev_server/ui/src/FlagsButton.tsx deleted file mode 100644 index 113f47efd..000000000 --- a/internal/dev_server/ui/src/FlagsButton.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { - Button, - Tooltip, - TooltipTrigger, -} from '@launchpad-ui/components'; -import { Icon } from '@launchpad-ui/icons'; -import { Inline } from '@launchpad-ui/core'; - -type Props = { - onPress: () => void; -}; - -const FlagsButton = ({ onPress }: Props) => { - return ( - - - View flags - - ); -}; - -export default FlagsButton; From 6a4c7919e94daea1b5296572c581c469d4067537 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 10:31:19 -0700 Subject: [PATCH 14/96] update git ignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4b7275acc..4dea585d6 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ dist/ *.log node_modules/ devserver.db +ldcli From 9731ced8b70a7e6bd35d2c410a9fee17462b4c44 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 10:32:54 -0700 Subject: [PATCH 15/96] rename app to flagpage --- internal/dev_server/ui/src/{App.tsx => FlagsPage.tsx} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename internal/dev_server/ui/src/{App.tsx => FlagsPage.tsx} (100%) diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/FlagsPage.tsx similarity index 100% rename from internal/dev_server/ui/src/App.tsx rename to internal/dev_server/ui/src/FlagsPage.tsx From 62b25bf073fe4412795fb124055d04d33b25e410 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 10:35:15 -0700 Subject: [PATCH 16/96] finish multi-page refactor --- internal/dev_server/ui/src/App.tsx | 11 +++++++++++ internal/dev_server/ui/src/FlagsPage.tsx | 5 ++--- 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 internal/dev_server/ui/src/App.tsx diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx new file mode 100644 index 000000000..4a91c2fcd --- /dev/null +++ b/internal/dev_server/ui/src/App.tsx @@ -0,0 +1,11 @@ + +import './App.css'; +import FlagsPage from './FlagsPage.tsx'; + +function App() { + return ( + + ) +} + +export default App; diff --git a/internal/dev_server/ui/src/FlagsPage.tsx b/internal/dev_server/ui/src/FlagsPage.tsx index bef145170..18c4b70dd 100644 --- a/internal/dev_server/ui/src/FlagsPage.tsx +++ b/internal/dev_server/ui/src/FlagsPage.tsx @@ -1,4 +1,3 @@ -import './App.css'; import { useCallback, useEffect, useState } from 'react'; import Flags from './Flags.tsx'; import ProjectSelector from './ProjectSelector.tsx'; @@ -15,7 +14,7 @@ interface Environment { name: string; } -function App() { +function FlagsPage() { const [selectedProject, setSelectedProject] = useState(null); const [selectedEnvironment, setSelectedEnvironment] = useState(null); @@ -228,4 +227,4 @@ async function fetchEnvironments(projectKey: string) { return res.json(); } -export default App; +export default FlagsPage; From 2ae6b6a65f07cca3e384dc95620150f9a550d9d8 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 10:39:24 -0700 Subject: [PATCH 17/96] Revert "finish multi-page refactor" This reverts commit 62b25bf073fe4412795fb124055d04d33b25e410. --- internal/dev_server/ui/src/App.tsx | 11 ----------- internal/dev_server/ui/src/FlagsPage.tsx | 5 +++-- 2 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 internal/dev_server/ui/src/App.tsx diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx deleted file mode 100644 index 4a91c2fcd..000000000 --- a/internal/dev_server/ui/src/App.tsx +++ /dev/null @@ -1,11 +0,0 @@ - -import './App.css'; -import FlagsPage from './FlagsPage.tsx'; - -function App() { - return ( - - ) -} - -export default App; diff --git a/internal/dev_server/ui/src/FlagsPage.tsx b/internal/dev_server/ui/src/FlagsPage.tsx index 18c4b70dd..bef145170 100644 --- a/internal/dev_server/ui/src/FlagsPage.tsx +++ b/internal/dev_server/ui/src/FlagsPage.tsx @@ -1,3 +1,4 @@ +import './App.css'; import { useCallback, useEffect, useState } from 'react'; import Flags from './Flags.tsx'; import ProjectSelector from './ProjectSelector.tsx'; @@ -14,7 +15,7 @@ interface Environment { name: string; } -function FlagsPage() { +function App() { const [selectedProject, setSelectedProject] = useState(null); const [selectedEnvironment, setSelectedEnvironment] = useState(null); @@ -227,4 +228,4 @@ async function fetchEnvironments(projectKey: string) { return res.json(); } -export default FlagsPage; +export default App; From f5b5fe73f8295261d66fafd9ccd581cb6b2aaa51 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 10:39:33 -0700 Subject: [PATCH 18/96] Revert "rename app to flagpage" This reverts commit 9731ced8b70a7e6bd35d2c410a9fee17462b4c44. --- internal/dev_server/ui/src/{FlagsPage.tsx => App.tsx} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename internal/dev_server/ui/src/{FlagsPage.tsx => App.tsx} (100%) diff --git a/internal/dev_server/ui/src/FlagsPage.tsx b/internal/dev_server/ui/src/App.tsx similarity index 100% rename from internal/dev_server/ui/src/FlagsPage.tsx rename to internal/dev_server/ui/src/App.tsx From 0974eb5f05969fb3803d968a185cc8419c0546f5 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 12:12:53 -0700 Subject: [PATCH 19/96] add buttons to swap --- internal/dev_server/sdk/sdk_events.go | 12 +----- internal/dev_server/ui/src/App.tsx | 44 +++++++++++++++++++++ internal/dev_server/ui/src/EventsButton.tsx | 31 +++++++++++++++ internal/dev_server/ui/src/EventsPage.tsx | 10 +++++ internal/dev_server/ui/src/FlagsButton.tsx | 31 +++++++++++++++ internal/dev_server/ui/src/FlagsPage.tsx | 21 ++-------- internal/dev_server/ui/src/main.tsx | 2 +- 7 files changed, 121 insertions(+), 30 deletions(-) create mode 100644 internal/dev_server/ui/src/App.tsx create mode 100644 internal/dev_server/ui/src/EventsButton.tsx create mode 100644 internal/dev_server/ui/src/EventsPage.tsx create mode 100644 internal/dev_server/ui/src/FlagsButton.tsx diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 87738dcf0..c382581b9 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -4,7 +4,6 @@ import ( "io" "log" "net/http" - "sync" "github.com/launchdarkly/ldcli/internal/dev_server/model" "github.com/pkg/errors" @@ -22,14 +21,9 @@ func (o sdkEventObserver) Handle(message interface{}) { o.updateChan <- Message{Event: TYPE_PUT, Data: []byte(str)} } -var observers *model.Observers -var once sync.Once +var observers *model.Observers = model.NewObservers() func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) { - once.Do(func() { - observers = model.NewObservers() - }) - bodyStr, err := io.ReadAll(request.Body) if err != nil { log.Printf("SdkEventsReceiveHandler: error reading request body: %v", err) @@ -42,10 +36,6 @@ func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) } func SdkEventsTeeHandler(writer http.ResponseWriter, request *http.Request) { - once.Do(func() { - observers = model.NewObservers() - }) - updateChan, errChan := OpenStream( writer, request.Context().Done(), diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx new file mode 100644 index 000000000..c2fda03a4 --- /dev/null +++ b/internal/dev_server/ui/src/App.tsx @@ -0,0 +1,44 @@ +import './App.css'; +import { useState } from 'react'; +import { Box } from '@launchpad-ui/core'; +import FlagsButton from './FlagsButton.tsx'; +import EventsButton from './EventsButton.tsx'; +import FlagsPage from './FlagsPage.tsx'; +import EventsPage from './EventsPage.tsx'; + +function App() { + const [mode, setMode] = useState<'flags' | 'events'>('flags'); + + return ( +
+ + + { setMode('flags'); }} /> + { setMode('events'); }} /> + + + {mode === 'flags' && } + {mode === 'events' && } + + +
+ ); +} + + +export default App; diff --git a/internal/dev_server/ui/src/EventsButton.tsx b/internal/dev_server/ui/src/EventsButton.tsx new file mode 100644 index 000000000..d3b825cf6 --- /dev/null +++ b/internal/dev_server/ui/src/EventsButton.tsx @@ -0,0 +1,31 @@ +import { + Button, + Tooltip, + TooltipTrigger, +} from '@launchpad-ui/components'; +import { Icon } from '@launchpad-ui/icons'; +import { Inline } from '@launchpad-ui/core'; + +type Props = { + onPress: () => void; +}; + +const EventsButton = ({ + onPress, +}: Props) => { + return ( + + + View events + + ); +}; + +export default EventsButton; diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx new file mode 100644 index 000000000..a87aa9b68 --- /dev/null +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -0,0 +1,10 @@ +type Props = { +}; + +const EventsPage = ({}: Props) => { + return ( + events stream + ); +}; + +export default EventsPage; diff --git a/internal/dev_server/ui/src/FlagsButton.tsx b/internal/dev_server/ui/src/FlagsButton.tsx new file mode 100644 index 000000000..441626333 --- /dev/null +++ b/internal/dev_server/ui/src/FlagsButton.tsx @@ -0,0 +1,31 @@ +import { + Button, + Tooltip, + TooltipTrigger, +} from '@launchpad-ui/components'; +import { Icon } from '@launchpad-ui/icons'; +import { Inline } from '@launchpad-ui/core'; + +type Props = { + onPress: () => void; +}; + +const FlagsButton = ({ + onPress, +}: Props) => { + return ( + + + View and edit flags for the selected project + + ); +}; + +export default FlagsButton; diff --git a/internal/dev_server/ui/src/FlagsPage.tsx b/internal/dev_server/ui/src/FlagsPage.tsx index bef145170..62269102a 100644 --- a/internal/dev_server/ui/src/FlagsPage.tsx +++ b/internal/dev_server/ui/src/FlagsPage.tsx @@ -131,24 +131,9 @@ function App() { ); return ( -
- - +
+ + {showBanner && ( diff --git a/internal/dev_server/ui/src/main.tsx b/internal/dev_server/ui/src/main.tsx index 540a5de32..d207bc5af 100644 --- a/internal/dev_server/ui/src/main.tsx +++ b/internal/dev_server/ui/src/main.tsx @@ -1,6 +1,6 @@ import React, { useEffect } from 'react'; import ReactDOM from 'react-dom/client'; -import App from './FlagsPage.tsx'; +import App from './App.tsx'; import { IconProvider } from './IconProvider.tsx'; import { ToastContainer } from '@launchpad-ui/components'; From f3b19db3c937e6c916686e7d8f6933ca23fd3da2 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Tue, 5 Aug 2025 15:51:38 -0400 Subject: [PATCH 20/96] Add event splitting --- internal/dev_server/sdk/sdk_events.go | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index c382581b9..30d692662 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -1,6 +1,7 @@ package sdk import ( + "encoding/json" "io" "log" "net/http" @@ -29,7 +30,17 @@ func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) log.Printf("SdkEventsReceiveHandler: error reading request body: %v", err) return } - observers.Notify(string(bodyStr)) + + var arr []json.RawMessage + err = json.Unmarshal(bodyStr, &arr) + + if err != nil { + log.Printf("SdkEventsReceiveHandler: error unmarshaling request body: %v", err) + } + + for _, msg := range arr { + observers.Notify(string(msg)) + } writer.Header().Set("Content-Type", "application/json") writer.WriteHeader(http.StatusAccepted) From a4fde7042190a768ec7269c18e6645749b1f2b30 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Tue, 5 Aug 2025 16:26:09 -0400 Subject: [PATCH 21/96] Switch to raw message --- internal/dev_server/sdk/sdk_events.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 30d692662..3722b0635 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -15,11 +15,11 @@ type sdkEventObserver struct { } func (o sdkEventObserver) Handle(message interface{}) { - str, ok := message.(string) + str, ok := message.(json.RawMessage) if !ok { return } - o.updateChan <- Message{Event: TYPE_PUT, Data: []byte(str)} + o.updateChan <- Message{Event: TYPE_PUT, Data: str} } var observers *model.Observers = model.NewObservers() @@ -39,7 +39,7 @@ func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) } for _, msg := range arr { - observers.Notify(string(msg)) + observers.Notify(msg) } writer.Header().Set("Content-Type", "application/json") From 770455abeb62e3c0fe5b734440bce5c2806f4ffc Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 13:51:16 -0700 Subject: [PATCH 22/96] initial stream page --- internal/dev_server/ui/dist/index.html | 54 +++++++++---------- internal/dev_server/ui/src/EventsPage.tsx | 64 ++++++++++++++++++++++- 2 files changed, 90 insertions(+), 28 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index 426e916f2..c0a2208ae 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -5,7 +5,7 @@ LaunchDevly - - +}`;var o0=$h(function(){return v0(L,Fe+"return "+be).apply(n,I)});if(o0.source=be,$7(o0))throw o0;return o0}function jS(l){return P0(l).toLowerCase()}function KS(l){return P0(l).toUpperCase()}function WS(l,s,h){if(l=P0(l),l&&(h||s===n))return j1(l);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=rn(s),L=K1($,_),I=yu($,_)+1;return Fr($,L,I).join("")}function US(l,s,h){if(l=P0(l),l&&(h||s===n))return l.slice(0,ra(l)+1);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=yu($,rn(s))+1;return Fr($,0,_).join("")}function GS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.replace(Xs,"");if(!l||!(s=Xt(s)))return l;var $=rn(l),_=K1($,rn(s));return Fr($,_).join("")}function qS(l,s){var h=j,$=X;if(Q0(s)){var _="separator"in s?s.separator:_;h="length"in s?n0(s.length):h,$="omission"in s?Xt(s.omission):$}l=P0(l);var L=l.length;if(Ti(l)){var I=rn(l);L=I.length}if(h>=L)return l;var O=h-O2($);if(O<1)return $;var Y=I?Fr(I,0,O).join(""):l.slice(0,O);if(_===n)return Y+$;if(I&&(O+=Y.length-O),S7(_)){if(l.slice(O).search(_)){var pe,ve=Y;for(_.global||(_=Io(_.source,P0(Js.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;Y=Y.slice(0,be===n?O:be)}}else if(l.indexOf(Xt(_),O)!=O){var Te=Y.lastIndexOf(_);Te>-1&&(Y=Y.slice(0,Te))}return Y+$}function YS(l){return l=P0(l),l&&m1.test(l)?l.replace(D2,Y1):l}var XS=J2(function(l,s,h){return l+(h?" ":"")+s.toUpperCase()}),P7=ju("toUpperCase");function wh(l,s,h){return l=P0(l),s=h?n:s,s===n?Uf(l)?Xf(l):jf(l):l.match(s)||[]}var $h=t0(function(l,s){try{return Vt(l,n,s)}catch(h){return $7(h)?h:new Ge(h)}}),QS=hr(function(l,s){return Ct(s,function(h){h=Hn(h),sr(l,h,we(l[h],l))}),l});function JS(l){var s=l==null?0:l.length,h=He();return l=s?T0(l,function($){if(typeof $[1]!="function")throw new hn(d);return[h($[0]),$[1]]}):[],t0(function($){for(var _=-1;++_fe)return[];var h=H,$=_t(l,H);s=He(s),l-=H;for(var _=gu($,s);++h0||s<0)?new Xe(h):(l<0?h=h.takeRight(-l):l&&(h=h.drop(l)),s!==n&&(s=n0(s),h=s<0?h.dropRight(-s):h.take(s-l)),h)},Xe.prototype.takeRightWhile=function(l){return this.reverse().takeWhile(l).reverse()},Xe.prototype.toArray=function(){return this.take(H)},an(Xe.prototype,function(l,s){var h=/^(?:filter|find|map|reject)|While$/.test(s),$=/^(?:head|last)$/.test(s),_=M[$?"take"+(s=="last"?"Right":""):s],L=$||/^find/.test(s);_&&(M.prototype[s]=function(){var I=this.__wrapped__,O=$?[1]:arguments,Y=I instanceof Xe,pe=O[0],ve=Y||Qe(I),be=function(u0){var p0=_.apply(M,e2([u0],O));return $&&Te?p0[0]:p0};ve&&h&&typeof pe=="function"&&pe.length!=1&&(Y=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=L&&!Te,o0=Y&&!Fe;if(!L&&ve){I=o0?I:new Xe(this);var Ue=l.apply(I,O);return Ue.__actions__.push({func:jn,args:[be],thisArg:n}),new Pt(Ue,Te)}return We&&o0?l.apply(this,O):(Ue=this.thru(be),We?$?Ue.value()[0]:Ue.value():Ue)})}),Ct(["pop","push","shift","sort","splice","unshift"],function(l){var s=kr[l],h=/^(?:push|sort|unshift)$/.test(l)?"tap":"thru",$=/^(?:pop|shift)$/.test(l);M.prototype[l]=function(){var _=arguments;if($&&!this.__chain__){var L=this.value();return s.apply(Qe(L)?L:[],_)}return this[h](function(I){return s.apply(Qe(I)?I:[],_)})}}),an(Xe.prototype,function(l,s){var h=M[s];if(h){var $=h.name+"";h0.call(Vi,$)||(Vi[$]=[]),Vi[$].push({name:s,func:h})}}),Vi[Xi(n,V).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=va,Xe.prototype.reverse=_u,Xe.prototype.value=Zi,M.prototype.at=es,M.prototype.chain=oi,M.prototype.commit=ts,M.prototype.next=vc,M.prototype.plant=h7,M.prototype.reverse=mc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=m7,M.prototype.first=M.prototype.head,Mr&&(M.prototype[Mr]=hc),M},Mi=Qf();nr?((nr.exports=Mi)._=Mi,Bo._=Mi):B0._=Mi}).call(ZZ)}(Ac,Ac.exports)),Ac.exports}var NZ=OZ();const HZ=({availableVariations:t,currentValue:e,flagKey:n,flagValue:i,updateOverride:a})=>{switch(typeof i){case"boolean":return k.jsx("div",{className:"animated-switch-container",children:k.jsxs(LV,{className:"animated-switch",isSelected:e,onChange:c=>{a(n,c)},children:[k.jsx("span",{className:"switch-text switch-text-false",children:"False"}),k.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let c=t,d=c.findIndex(v=>NZ.isEqual(v.value,e));d===-1&&(c=[{_id:"OVERRIDE",name:"Local Override",value:e},...c],d=0);const f=v=>m=>{m.preventDefault();const g=Object.fromEntries(new FormData(m.currentTarget));a(n,JSON.parse(g.value)),v()};return k.jsxs(_r,{gap:"2",children:[k.jsx(tZ,{"aria-label":"flag variations select",selectedKey:d,onSelectionChange:v=>{typeof v!="number"?console.error(`selected non numeric key: ${v}`):a(n,c[v].value)},style:{maxWidth:"250px"},children:k.jsxs(x.Fragment,{children:[d!==null&&c[d]._id==="OVERRIDE"?k.jsxs(Il,{children:[k.jsxs(Yn,{children:[k.jsx(rm,{}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(Vl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):k.jsxs(Yn,{children:[k.jsx(rm,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(a$,{children:k.jsx(n$,{children:c.map((v,m)=>{const g=v.name?v.name:JSON.stringify(v.value);return k.jsx(r$,{id:m,textValue:g,children:v._id==="OVERRIDE"?k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"devices",size:"small"}),g]})}):g},m)})})})]},".0")}),k.jsx(Dt,{width:"2rem",height:"2rem",children:k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(ih,{icon:"edit","aria-label":"edit variation value"}),k.jsx(Vl,{children:"Edit the served variation value as JSON"})]}),k.jsx(o$,{children:k.jsx(i$,{children:k.jsx(e$,{children:({close:v})=>k.jsxs(vx,{onSubmit:f(v),children:[k.jsxs(c$,{defaultValue:JSON.stringify(e,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:m=>{try{return JSON.parse(m),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[k.jsx(v1,{children:`${n} value`}),k.jsx(u$,{style:{fontFamily:"monospace"}}),k.jsx(kf,{slot:"description",children:"Update the value as JSON"}),k.jsx(t$,{})]}),k.jsxs(Xw,{children:[k.jsx(Yn,{onPress:v,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var g5={exports:{}},zZ=g5.exports,am;function jZ(){return am||(am=1,function(t){((e,n)=>{t.exports?t.exports=n():e.fuzzysort=n()})(zZ,e=>{var n=(oe,q)=>{if(!oe||!q)return Pe;var ue=P(oe);he(q)||(q=C(q));var $e=ue.bitflags;return($e&q._bitflags)!==$e?Pe:A(ue,q)},i=(oe,q,ue)=>{if(!oe)return ue!=null&&ue.all?T(q,ue):fe;var $e=P(oe),Ee=$e.bitflags,Se=$e.containsSpace,me=b((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||_e,ke=0,ze=0,Ye=q.length;function g0(jt){kece.peek()._score&&ce.replaceTop(jt))}if(ue!=null&&ue.key)for(var k0=ue.key,l0=0;l0-1e3&&j[c0]>se){var i0=(j[c0]+X[c0])/4;i0>j[c0]&&(j[c0]=i0)}X[c0]>j[c0]&&(j[c0]=X[c0])}}if(Se){for(let e0=0;e0<$e.spaceSearches.length;e0++)if(j[e0]===se)continue e}else{var Ze=!1;for(let e0=0;e0-1e3&&$0>se){var i0=($0+a0._score)/4;i0>$0&&($0=i0)}a0._score>$0&&($0=a0._score)}}if(q0.obj=w0,q0._score=$0,ue!=null&&ue.scoreFn){if($0=ue.scoreFn(q0),!$0)continue;$0=b($0),q0._score=$0}$0=0;--l0)W0[l0]=ce.poll();return W0.total=ke+ze,W0},a=(oe,q="",ue="")=>{for(var $e=typeof q=="function"?q:void 0,Ee=oe.target,Se=Ee.length,me=oe.indexes,Be="",ke=0,ze=0,Ye=!1,g0=[],k0=0;k0{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe="");var q=R(oe);return m(oe,{_targetLower:q._lower,_targetLowerCodes:q.lowerCodes,_bitflags:q.bitflags})},d=()=>{z.clear(),U.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((q,ue)=>q-ue)}set indexes(q){return this._indexes=q}highlight(q,ue){return a(this,q,ue)}get score(){return g(this._score)}set score(q){this._score=b(q)}}class v extends Array{get score(){return g(this._score)}set score(q){this._score=b(q)}}var m=(oe,q)=>{const ue=new f;return ue.target=oe,ue.obj=q.obj??Pe,ue._score=q._score??se,ue._indexes=q._indexes??[],ue._targetLower=q._targetLower??"",ue._targetLowerCodes=q._targetLowerCodes??Pe,ue._nextBeginningIndexes=q._nextBeginningIndexes??Pe,ue._bitflags=q._bitflags??0,ue},g=oe=>oe===se?0:oe>1?oe:Math.E**(((-oe+1)**.04307-1)*-2),b=oe=>oe===0?se:oe>1?oe:1-Math.pow(Math.log(oe)/-2+1,1/.04307),S=oe=>{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe=""),oe=oe.trim();var q=R(oe),ue=[];if(q.containsSpace){var $e=oe.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=R($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:q.lowerCodes,_lower:q._lower,containsSpace:q.containsSpace,bitflags:q.bitflags,spaceSearches:ue}},C=oe=>{if(oe.length>999)return c(oe);var q=z.get(oe);return q!==void 0||(q=c(oe),z.set(oe,q)),q},P=oe=>{if(oe.length>999)return S(oe);var q=U.get(oe);return q!==void 0||(q=S(oe),U.set(oe,q)),q},T=(oe,q)=>{var ue=[];ue.total=oe.length;var $e=(q==null?void 0:q.limit)||_e;if(q!=null&&q.key)for(var Ee=0;Ee=$e)return ue}}else if(q!=null&&q.keys)for(var Ee=0;Ee=0;--ze){var me=Q(Se,q.keys[ze]);if(!me){ke[ze]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[ze]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(oe,q,ue=!1,$e=!1)=>{if(ue===!1&&oe.containsSpace)return V(oe,q,$e);for(var Ee=oe._lower,Se=oe.lowerCodes,me=Se[0],Be=q._targetLowerCodes,ke=Se.length,ze=Be.length,l0=0,Ye=0,g0=0;;){var k0=me===Be[Ye];if(k0){if(le[g0++]=Ye,++l0,l0===ke)break;me=Se[l0]}if(++Ye,Ye>=ze)return Pe}var l0=0,w0=!1,r0=0,a0=q._nextBeginningIndexes;a0===Pe&&(a0=q._nextBeginningIndexes=N(q.target)),Ye=le[0]===0?0:a0[le[0]-1];var tt=0;if(Ye!==ze)for(;;)if(Ye>=ze){if(l0<=0||(++tt,tt>200))break;--l0;var y0=D[--r0];Ye=a0[y0]}else{var k0=Se[l0]===Be[Ye];if(k0){if(D[r0++]=Ye,++l0,l0===ke){w0=!0;break}++Ye}else Ye=a0[Ye]}var d0=ke<=1?-1:q._targetLower.indexOf(Ee,le[0]),De=!!~d0,i0=De?d0===0||q._nextBeginningIndexes[d0-1]===d0:!1;if(De&&!i0){for(var Ze=0;Ze{for(var c0=0,er=0,St=1;St24&&(c0*=(pn-24)*10)}return c0-=(ze-ke)/2,De&&(c0/=1+ke*ke*1),i0&&(c0/=1+ke*ke*1),c0-=(ze-ke)/2,c0};if(w0)if(i0){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=Pe,me=0,Be=oe.spaceSearches,ke=Be.length,ze=0,Ye=()=>{for(let i0=ze-1;i0>=0;i0--)q._nextBeginningIndexes[ie[i0*2+0]]=ie[i0*2+1]},g0=!1,De=0;De=0&&tt===q._nextBeginningIndexes[Ze];Ze--)q._nextBeginningIndexes[Ze]=a0,ie[ze*2+0]=Ze,ie[ze*2+1]=tt,ze++}}Ee+=Se._score/ke,X[De]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var De=0;De{for(var q=oe.length,ue=oe.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var q=oe.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,ze=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!ze;Ee=ke,Se=ze,Ye&&(ue[$e++]=me)}return ue},N=oe=>{for(var q=oe.length,ue=F(oe),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?q:Ee);return $e},z=new Map,U=new Map,le=[],D=[],ie=[],j=[],X=[],xe=[],G=[],Q=(oe,q)=>{var ue=oe[q];if(ue!==void 0)return ue;if(typeof q=="function")return q(oe);var $e=q;Array.isArray(q)||($e=q.split("."));for(var Ee=$e.length,Se=-1;oe&&++Setypeof oe=="object"&&typeof oe._bitflags=="number",_e=1/0,se=-_e,fe=[];fe.total=0;var Pe=null,ae=c(""),H=oe=>{var q=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=q[me],ke=1;ke>1]=q[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)q[me]=q[Ye];q[me]=Be};return $e.add=Se=>{var me=ue;q[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)q[me]=q[Be];q[me]=Se},$e.poll=Se=>{if(ue!==0){var me=q[0];return q[0]=q[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return q[0]},$e.replaceTop=Se=>{q[0]=Se,Ee()},$e},ce=H();return{single:n,go:i,prepare:c,cleanup:d}})}(g5)),g5.exports}var KZ=jZ();const WZ=t1(KZ);function UZ({availableVariations:t,selectedProject:e,flags:n,overrides:i,setOverrides:a}){const[c,d]=x.useState(!1),[f,v]=x.useState(""),[m,g]=x.useState(0),b=20,S=x.useMemo(()=>i&&Object.keys(i).length>0,[i]);x.useEffect(()=>{!S&&c&&d(!1)},[S,c]);const C=x.useMemo(()=>n?Object.entries(n).filter(z=>{if(!f)return!0;const[U]=z,le=WZ.single(f.toLowerCase(),U);return le&&le.score>-5e3}).filter(z=>{const[U]=z,le=U in i;return!(c&&!le)}):[],[n,f,c,i]),P=x.useMemo(()=>{const N=m*b,z=N+b;return C.slice(N,z)},[C,m]),T=x.useCallback((N,z)=>{var le;const U={...i,[N]:{value:z,version:((le=i[N])==null?void 0:le.version)||0}};a(U),fetch(Wr(`/dev/projects/${e}/overrides/${N}`),{method:"PUT",body:JSON.stringify(z)}).then(async D=>{if(!D.ok)throw new Error(`got ${D.status} ${D.statusText}. ${await D.text()}`)}).catch(D=>{a(i),console.error("unable to update override",D)})},[i,e]),A=x.useCallback(async N=>{const z={...i};delete z[N],a(z);try{const U=await fetch(Wr(`/dev/projects/${e}/overrides/${N}`),{method:"DELETE"});if(!U.ok)throw new Error(`got ${U.status} ${U.statusText}. ${await U.text()}`)}catch(U){console.error("unable to remove override",U),a(i)}},[i,e]),V=x.useCallback(async()=>{a({});try{const N=await fetch(Wr(`/dev/projects/${e}/overrides`),{method:"DELETE"});if(!N.ok)throw new Error(`got ${N.status} ${N.statusText}. ${await N.text()}`)}catch(N){console.error("unable to remove all overrides",N),a(i)}},[i,e]);if(!n)return null;const R=Math.ceil(C.length/b),F=N=>{switch(N){case"next":g(z=>Math.min(z+1,R-1));break;case"prev":g(z=>Math.max(z-1,0));break;case"first":g(0);break;case"last":g(R-1);break;default:console.error("invalid page change direction.")}};return k.jsxs(k.Fragment,{children:[k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:IZ.borderRadius.regular,children:[k.jsxs(v1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[k.jsx(DI,{id:"only-show-overrides",isSelected:c,onChange:N=>{d(N)},isDisabled:!S,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),k.jsxs(Yn,{variant:"destructive",isDisabled:!S,onPress:async()=>{i&&(await V(),a({}),d(!1))},children:[k.jsx(K0,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),k.jsxs(xf,{gap:"4",children:[k.jsx(_r,{gap:"4",children:k.jsx(qF,{"aria-label":"Search flags",children:k.jsxs(UI,{children:[k.jsx(K0,{name:"search",size:"small"}),k.jsx(qw,{placeholder:"Search flags by key",onChange:N=>{v(N.target.value),g(0)},value:f,"aria-label":"Search flags input"}),k.jsx(ih,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>v("")})]})})}),k.jsx("ul",{className:"flags-list",children:P.map(([N,{value:z}],U)=>{var j;const le=(j=i[N])==null?void 0:j.value,D=N in i,ie=D?le:z;return k.jsxs("li",{style:{backgroundColor:U%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[k.jsx(Dt,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:k.jsxs(_r,{gap:"2",children:[k.jsx(mf,{asChild:!0,text:N,children:k.jsx("code",{className:D?"has-override":"",children:N})}),D&&k.jsx(Yn,{"aria-label":"Remove override",onPress:()=>{A(N)},variant:"destructive",children:k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"cancel",size:"small"}),"Remove override"]})})]})}),k.jsx(Dt,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:k.jsx(HZ,{availableVariations:t[N]?t[N]:[],currentValue:ie,flagValue:z,flagKey:N,updateOverride:T})})]},N)})})]}),k.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:k.jsx(SR,{currentOffset:m*b,isReady:!0,onChange:N=>F(N),pageSize:b,resourceName:"flags",totalCount:C.length})})]})}const GZ=async()=>{const t=await fetch(Wr("/dev/projects")),e=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return e};function qZ({selectedProject:t,setSelectedProject:e,setShowBanner:n}){const[i,a]=x.useState([]),[c,d]=x.useState(!0),f=v=>{a(v),n(v.length==0),v.length==1&&e(v[0]),d(!1)};return x.useEffect(()=>{GZ().then(f).catch(v=>{console.error(v),d(!1)}),a([])},[]),c?k.jsxs("div",{style:{textAlign:"center"},children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),k.jsx("p",{children:"Projects are loading"})]}):i.length>0?k.jsxs(lV,{children:[k.jsx(_r,{gap:"1",children:k.jsxs(Il,{children:[k.jsx(Yn,{children:t??"Select a project"}),k.jsx(Vl,{children:t==null?"Please select a project":"This is the selected project"})]})}),k.jsx(a$,{children:k.jsx(yF,{children:i.map(v=>k.jsx(xF,{onAction:()=>{e(v)},children:v},v))})})]}):k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const YZ=async t=>{const e=await fetch(Wr(`/dev/projects/${t}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return n},XZ=({selectedProject:t,setFlags:e,setAvailableVariations:n})=>{const[i,a]=x.useState(!1),c=async()=>{a(!0);try{const d=await YZ(t);n(d.availableVariations),e(Tp(d.flagsState))}catch(d){im.warning("Sync failed"),console.error("Sync failed:",d)}finally{im.success("Sync successful"),a(!1)}};return t?k.jsxs(Il,{children:[k.jsx(Yn,{onPress:c,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}):k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"sync",size:"small"}),k.jsx("span",{children:"Sync"})]})})}),k.jsx(Vl,{children:"Sync the selected project from the source environment"})]}):null};async function QZ(t,e){const n=await fetch(Wr(`/dev/projects/${t}/environments?limit=20${e?`&name=${e}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var S3,sm;function d$(){if(sm)return S3;sm=1;function t(e){var n=typeof e;return e!=null&&(n=="object"||n=="function")}return S3=t,S3}var C3,um;function JZ(){if(um)return C3;um=1;var t=typeof so=="object"&&so&&so.Object===Object&&so;return C3=t,C3}var _3,cm;function f$(){if(cm)return _3;cm=1;var t=JZ(),e=typeof self=="object"&&self&&self.Object===Object&&self,n=t||e||Function("return this")();return _3=n,_3}var P3,dm;function eO(){if(dm)return P3;dm=1;var t=f$(),e=function(){return t.Date.now()};return P3=e,P3}var E3,fm;function tO(){if(fm)return E3;fm=1;var t=/\s/;function e(n){for(var i=n.length;i--&&t.test(n.charAt(i)););return i}return E3=e,E3}var k3,pm;function nO(){if(pm)return k3;pm=1;var t=tO(),e=/^\s+/;function n(i){return i&&i.slice(0,t(i)+1).replace(e,"")}return k3=n,k3}var T3,vm;function p$(){if(vm)return T3;vm=1;var t=f$(),e=t.Symbol;return T3=e,T3}var M3,hm;function rO(){if(hm)return M3;hm=1;var t=p$(),e=Object.prototype,n=e.hasOwnProperty,i=e.toString,a=t?t.toStringTag:void 0;function c(d){var f=n.call(d,a),v=d[a];try{d[a]=void 0;var m=!0}catch{}var g=i.call(d);return m&&(f?d[a]=v:delete d[a]),g}return M3=c,M3}var A3,mm;function iO(){if(mm)return A3;mm=1;var t=Object.prototype,e=t.toString;function n(i){return e.call(i)}return A3=n,A3}var L3,gm;function oO(){if(gm)return L3;gm=1;var t=p$(),e=rO(),n=iO(),i="[object Null]",a="[object Undefined]",c=t?t.toStringTag:void 0;function d(f){return f==null?f===void 0?a:i:c&&c in Object(f)?e(f):n(f)}return L3=d,L3}var D3,ym;function lO(){if(ym)return D3;ym=1;function t(e){return e!=null&&typeof e=="object"}return D3=t,D3}var R3,bm;function aO(){if(bm)return R3;bm=1;var t=oO(),e=lO(),n="[object Symbol]";function i(a){return typeof a=="symbol"||e(a)&&t(a)==n}return R3=i,R3}var B3,xm;function sO(){if(xm)return B3;xm=1;var t=nO(),e=d$(),n=aO(),i=NaN,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,f=parseInt;function v(m){if(typeof m=="number")return m;if(n(m))return i;if(e(m)){var g=typeof m.valueOf=="function"?m.valueOf():m;m=e(g)?g+"":g}if(typeof m!="string")return m===0?m:+m;m=t(m);var b=c.test(m);return b||d.test(m)?f(m.slice(2),b?2:8):a.test(m)?i:+m}return B3=v,B3}var V3,wm;function uO(){if(wm)return V3;wm=1;var t=d$(),e=eO(),n=sO(),i="Expected a function",a=Math.max,c=Math.min;function d(f,v,m){var g,b,S,C,P,T,A=0,V=!1,R=!1,F=!0;if(typeof f!="function")throw new TypeError(i);v=n(v)||0,t(m)&&(V=!!m.leading,R="maxWait"in m,S=R?a(n(m.maxWait)||0,v):S,F="trailing"in m?!!m.trailing:F);function N(G){var Q=g,he=b;return g=b=void 0,A=G,C=f.apply(he,Q),C}function z(G){return A=G,P=setTimeout(D,v),V?N(G):C}function U(G){var Q=G-T,he=G-A,_e=v-Q;return R?c(_e,S-he):_e}function le(G){var Q=G-T,he=G-A;return T===void 0||Q>=v||Q<0||R&&he>=S}function D(){var G=e();if(le(G))return ie(G);P=setTimeout(D,U(G))}function ie(G){return P=void 0,F&&g?N(G):(g=b=void 0,C)}function j(){P!==void 0&&clearTimeout(P),A=0,g=T=b=P=void 0}function X(){return P===void 0?C:ie(e())}function xe(){var G=e(),Q=le(G);if(g=arguments,b=this,T=G,Q){if(P===void 0)return z(T);if(R)return clearTimeout(P),P=setTimeout(D,v),N(T)}return P===void 0&&(P=setTimeout(D,v)),C}return xe.cancel=j,xe.flush=X,xe}return V3=d,V3}var cO=uO();const dO=t1(cO);function fO({projectKey:t,sourceEnvironmentKey:e,selectedEnvironment:n,setSelectedEnvironment:i}){const[a,c]=x.useState(null),[d,f]=x.useState(""),[v,m]=x.useState(!1),g=x.useCallback(dO(b=>{m(!0),QZ(t,b).then(S=>{if(c(S),!n){const C=S.find(P=>P.key===e);C?i(C):S.length>0&&i({name:"",key:e||""})}}).catch(S=>{console.error("Error fetching environments:",S)}).finally(()=>{m(!1)})},300),[t,e,n,i]);return x.useEffect(()=>{g(d)},[g,d]),k.jsxs(xf,{gap:"3",children:[k.jsx(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:k.jsx(v1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),k.jsxs(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[k.jsxs("div",{style:{position:"relative",flexGrow:1},children:[k.jsx(qw,{id:"environmentSearch",value:d,onChange:b=>f(b.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),v&&k.jsx(Dt,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:k.jsx(h1,{size:"small","aria-label":"Loading environments"})})]}),k.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:k.jsx("code",{children:n==null?void 0:n.key})})]}),k.jsx(Dt,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:k.jsx(n$,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:b=>{const S=Array.from(b)[0],C=a==null?void 0:a.find(P=>P.key===S);C&&i(C)},children:a==null?void 0:a.map(b=>k.jsx(r$,{id:b.key,children:b.name},b.key))})})]})}function pO({context:t,setContext:e}){return k.jsxs(xf,{gap:"3",children:[k.jsx(v1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),k.jsxs(c$,{value:t,onChange:e,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[k.jsx(u$,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),k.jsx(kf,{slot:"description",children:"Edit the context as JSON"}),k.jsx(t$,{})]})]})}function vO({isSubmitting:t,selectedEnvironment:e}){return k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:t,children:t?k.jsx(_r,{gap:"2",children:k.jsxs(Dt,{display:"flex",alignItems:"center",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}),k.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):e?k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),k.jsx("span",{children:e})]}):"Environment"})}function hO({projectKey:t,selectedEnvironment:e,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:a,updateProjectSettings:c}){const[d,f]=x.useState(e),[v,m]=x.useState(a),[g,b]=x.useState(!1);x.useEffect(()=>{f(e),m(a)},[e,a]);const S=async P=>{b(!0);try{P(),await c(d,v),n(d)}catch(T){console.error("Error submitting project settings:",T)}finally{b(!1)}},C=()=>{f(e),m(a)};return k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(vO,{isSubmitting:g,selectedEnvironment:i}),k.jsx(Vl,{children:k.jsx("span",{children:"Current environment. Click to update."})})]}),k.jsx(o$,{isDismissable:!1,children:k.jsx(i$,{children:k.jsx(e$,{children:({close:P})=>k.jsxs(vx,{onSubmit:T=>{T.preventDefault(),S(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[k.jsx(v1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),k.jsxs(xf,{gap:"3",children:[k.jsx(fO,{projectKey:t,sourceEnvironmentKey:i,selectedEnvironment:d,setSelectedEnvironment:f}),k.jsx(Dt,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),k.jsx(pO,{context:v,setContext:m})]}),k.jsxs(Xw,{style:{justifyContent:"flex-end"},children:[k.jsx(Yn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:g,children:g?k.jsxs(_r,{gap:"2",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),k.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function mO(){const[t,e]=x.useState(null),[n,i]=x.useState(null),[a,c]=x.useState(null),[d,f]=x.useState({}),[v,m]=x.useState({}),[g,b]=x.useState(null),[S,C]=x.useState(!1),[P,T]=x.useState("{}"),A=x.useCallback(async()=>{if(!t)return;const R=await fetch(Wr(`/dev/projects/${t}?expand=overrides&expand=availableVariations`)),F=await R.json();if(!R.ok)throw new Error(`Got ${R.status}, ${R.statusText} from flag fetch`);const{flagsState:N,overrides:z,sourceEnvironmentKey:U,availableVariations:le,context:D}=F;b(Tp(N)),f(z),c(U),m(le),T(JSON.stringify(D||"{}",null,2));const j=(await gO(t)).find(X=>X.key===U);j&&i(j)},[t]);x.useEffect(()=>{t&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,t]),x.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const V=x.useCallback(async(R,F)=>{if(t)try{const N=await fetch(Wr(`/dev/projects/${t}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:R==null?void 0:R.key,context:JSON.parse(F)})});if(!N.ok)throw new Error(`Got ${N.status}, ${N.statusText} from project settings update`);const z=await N.json(),{flagsState:U,sourceEnvironmentKey:le,context:D}=z;b(Tp(U)),c(le),T(JSON.stringify(D||{},null,2)),i(R),await A()}catch(N){console.error("Error updating project settings:",N)}},[t,A]);return k.jsx("div",{style:{width:"100%"},children:k.jsx(Dt,{width:"100%",minWidth:"600px",children:k.jsxs(Dt,{display:"flex",flexDirection:"column",width:"100%",children:[S&&k.jsx(Dt,{marginBottom:"2rem",width:"100%",children:k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!S&&k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[k.jsx(qZ,{selectedProject:t,setSelectedProject:e,setShowBanner:C}),t&&k.jsx(hO,{projectKey:t,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:a,context:P,updateProjectSettings:V}),k.jsx(XZ,{selectedProject:t,setFlags:b,setAvailableVariations:m})]}),t&&k.jsx(Dt,{width:"100%",children:k.jsx(UZ,{availableVariations:v,selectedProject:t,flags:g,overrides:d,setOverrides:R=>{f(R)}})})]})})})}async function gO(t){const e=await fetch(Wr(`/dev/projects/${t}/environments`));if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from environments fetch`);return e.json()}const yO=({})=>{const[t,e]=x.useState([]);return x.useEffect(()=>{console.log(Wr("/events/tee"));const n=new EventSource(Wr("/events/tee"));return n.addEventListener("put",i=>{if(!i.data||i.data.trim()==="")return;const a={id:Math.random().toString(36).substr(2,9),timestamp:Date.now(),data:i.data};e(c=>[...c,a])}),()=>{console.log("closing event source"),n.close()}},[]),k.jsxs("div",{children:[k.jsx("h3",{children:"Events Stream"}),k.jsx("ul",{children:t.map(n=>{let i=n.data;try{const a=JSON.parse(n.data);i=JSON.stringify(a,null,2)}catch{i=n.data}return k.jsxs("li",{style:{marginBottom:"10px"},children:[k.jsx("div",{children:k.jsx("strong",{children:new Date(n.timestamp).toLocaleTimeString()})}),k.jsx("div",{style:{marginLeft:"10px",marginTop:"5px"},children:k.jsx("pre",{style:{margin:0,whiteSpace:"pre-wrap",wordBreak:"break-word"},children:i})})]},n.id)})}),t.length===0&&k.jsx("p",{children:"No events received yet..."})]})};function bO(){const[t,e]=x.useState("flags");return k.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:k.jsxs(Dt,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[k.jsxs(Dt,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[k.jsx(BZ,{onPress:()=>{e("flags")}}),k.jsx(VZ,{onPress:()=>{e("events")}})]}),k.jsxs(Dt,{padding:"1rem",width:"100%",children:[t==="flags"&&k.jsx(mO,{}),t==="events"&&k.jsx(yO,{})]})]})})}const xO="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function wO({children:t}){return x.useEffect(()=>{fetch(xO).then(async e=>e.text()).then(e=>{const i=new DOMParser().parseFromString(e,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(e=>{console.log("unable to fetch icon",e)})},[]),k.jsx(Pm.Provider,{value:{path:""},children:t})}const $O=()=>(x.useEffect(()=>{const t=window.matchMedia("(prefers-color-scheme: dark)"),e=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return e(t),t.addEventListener("change",e),()=>{t.removeEventListener("change",e)}},[]),k.jsx(ee.StrictMode,{children:k.jsxs(wO,{children:[k.jsx(bO,{}),k.jsx(AZ,{})]})}));KC.createRoot(document.getElementById("root")).render(k.jsx($O,{})); +
diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index a87aa9b68..5f822c162 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -1,9 +1,71 @@ +import { useEffect, useState } from "react"; +import { apiRoute } from "./util"; + type Props = { }; +interface EventData { + id: string; + timestamp: number; + data: string; +} + const EventsPage = ({}: Props) => { + const [events, setEvents] = useState([]); + + useEffect(() => { + console.log(apiRoute('/events/tee')); + const eventSource = new EventSource(apiRoute('/events/tee')); + + eventSource.addEventListener('put', (event) => { + if (!event.data || event.data.trim() === '') { + return; + } + const newEvent: EventData = { + id: Math.random().toString(36).substr(2, 9), + timestamp: Date.now(), + data: event.data + }; + setEvents(prevEvents => [...prevEvents, newEvent]); + }); + + return () => { + console.log('closing event source'); + eventSource.close(); + }; + }, []); + return ( - events stream +
+

Events Stream

+
    + {events.map((event) => { + let displayData = event.data; + try { + // Try to parse and prettify JSON + const parsed = JSON.parse(event.data); + displayData = JSON.stringify(parsed, null, 2); + } catch { + // If not JSON, keep original data + displayData = event.data; + } + + return ( +
  • +
    + {new Date(event.timestamp).toLocaleTimeString()} +
    +
    +
    +                  {displayData}
    +                
    +
    +
  • + ); + })} +
+ {events.length === 0 &&

No events received yet...

} +
); }; From 8228fa80774d4c634eee2fa7970d07c0bc15b395 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Tue, 5 Aug 2025 16:59:12 -0400 Subject: [PATCH 23/96] Add kind selection --- internal/dev_server/events/filter.go | 16 +++++++++ internal/dev_server/events/filter_test.go | 40 +++++++++++++++++++++++ internal/dev_server/sdk/sdk_events.go | 30 ++++++++++++++++- 3 files changed, 85 insertions(+), 1 deletion(-) create mode 100644 internal/dev_server/events/filter.go create mode 100644 internal/dev_server/events/filter_test.go diff --git a/internal/dev_server/events/filter.go b/internal/dev_server/events/filter.go new file mode 100644 index 000000000..0e77fbb83 --- /dev/null +++ b/internal/dev_server/events/filter.go @@ -0,0 +1,16 @@ +package events + +type Base struct { + Kind string `json:"kind"` +} + +type Filter struct { + Kind *string +} + +func (f Filter) Matches(e Base) bool { + if f.Kind == nil { + return true + } + return e.Kind == *f.Kind +} diff --git a/internal/dev_server/events/filter_test.go b/internal/dev_server/events/filter_test.go new file mode 100644 index 000000000..9f6fe6d06 --- /dev/null +++ b/internal/dev_server/events/filter_test.go @@ -0,0 +1,40 @@ +package events + +import ( + "github.com/samber/lo" + "github.com/stretchr/testify/assert" + "testing" +) + +func TestFilterMatches(t *testing.T) { + testCases := []struct { + name string + filter Filter + event Base + expected bool + }{ + { + name: "no filter matches", + filter: Filter{}, + event: Base{Kind: "kind"}, + expected: true, + }, + { + name: "filter kind matches", + filter: Filter{Kind: lo.ToPtr("kind")}, + event: Base{Kind: "kind"}, + expected: true, + }, + { + name: "filter kind does not match", + filter: Filter{Kind: lo.ToPtr("kind")}, + event: Base{Kind: "other"}, + expected: false, + }, + } + for _, tc := range testCases { + t.Run(tc.name, func(t *testing.T) { + assert.Equal(t, tc.expected, tc.filter.Matches(tc.event)) + }) + } +} diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 3722b0635..e3e12710f 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -6,12 +6,21 @@ import ( "log" "net/http" + "github.com/launchdarkly/ldcli/internal/dev_server/events" "github.com/launchdarkly/ldcli/internal/dev_server/model" "github.com/pkg/errors" ) +func newSdkEventObserver(updateChan chan<- Message, filter events.Filter) sdkEventObserver { + return sdkEventObserver{ + updateChan: updateChan, + filter: filter, + } +} + type sdkEventObserver struct { updateChan chan<- Message + filter events.Filter } func (o sdkEventObserver) Handle(message interface{}) { @@ -19,6 +28,18 @@ func (o sdkEventObserver) Handle(message interface{}) { if !ok { return } + + event := events.Base{} + err := json.Unmarshal(str, &event) + if err != nil { + log.Printf("sdkEventObserver: error unmarshaling event: %v", err) + return + } + + if !o.filter.Matches(event) { + return + } + o.updateChan <- Message{Event: TYPE_PUT, Data: str} } @@ -53,8 +74,15 @@ func SdkEventsTeeHandler(writer http.ResponseWriter, request *http.Request) { Message{Event: TYPE_PUT, Data: []byte{}}, ) defer close(updateChan) + filter := events.Filter{} + + query := request.URL.Query() + kind := query.Get("kind") + if kind != "" { + filter.Kind = &kind + } - observerId := observers.RegisterObserver(sdkEventObserver{updateChan}) + observerId := observers.RegisterObserver(newSdkEventObserver(updateChan, filter)) defer func() { ok := observers.DeregisterObserver(observerId) if !ok { From f124472ca922f07e27f593b9aafd0ac9a6273060 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 14:46:41 -0700 Subject: [PATCH 24/96] take event rendering to be its own component --- internal/dev_server/ui/dist/index.html | 18 ++++---- internal/dev_server/ui/src/Event.tsx | 13 ++++++ internal/dev_server/ui/src/EventsPage.tsx | 51 ++++++++--------------- internal/dev_server/ui/src/types.ts | 6 +++ 4 files changed, 46 insertions(+), 42 deletions(-) create mode 100644 internal/dev_server/ui/src/Event.tsx diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index c0a2208ae..f8ba0cebe 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -41,12 +41,12 @@ `+H+r}var oe=!1;function q(r,o){if(!r||oe)return"";oe=!0;var u=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(o)if(o=function(){throw Error()},Object.defineProperty(o.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(o,[])}catch(re){var p=re}Reflect.construct(r,[],o)}else{try{o.call()}catch(re){p=re}r.call(o.prototype)}else{try{throw Error()}catch(re){p=re}r()}}catch(re){if(re&&p&&typeof re.stack=="string"){for(var y=re.stack.split(` `),w=p.stack.split(` `),E=y.length-1,B=w.length-1;1<=E&&0<=B&&y[E]!==w[B];)B--;for(;1<=E&&0<=B;E--,B--)if(y[E]!==w[B]){if(E!==1||B!==1)do if(E--,B--,0>B||y[E]!==w[B]){var Z=` -`+y[E].replace(" at new "," at ");return r.displayName&&Z.includes("")&&(Z=Z.replace("",r.displayName)),Z}while(1<=E&&0<=B);break}}}finally{oe=!1,Error.prepareStackTrace=u}return(r=r?r.displayName||r.name:"")?ce(r):""}function ue(r){switch(r.tag){case 5:return ce(r.type);case 16:return ce("Lazy");case 13:return ce("Suspense");case 19:return ce("SuspenseList");case 0:case 2:case 15:return r=q(r.type,!1),r;case 11:return r=q(r.type.render,!1),r;case 1:return r=q(r.type,!0),r;default:return""}}function $e(r){if(r==null)return null;if(typeof r=="function")return r.displayName||r.name||null;if(typeof r=="string")return r;switch(r){case le:return"Fragment";case U:return"Portal";case ie:return"Profiler";case D:return"StrictMode";case G:return"Suspense";case Q:return"SuspenseList"}if(typeof r=="object")switch(r.$$typeof){case X:return(r.displayName||"Context")+".Consumer";case j:return(r._context.displayName||"Context")+".Provider";case xe:var o=r.render;return r=r.displayName,r||(r=o.displayName||o.name||"",r=r!==""?"ForwardRef("+r+")":"ForwardRef"),r;case he:return o=r.displayName||null,o!==null?o:$e(r.type)||"Memo";case _e:o=r._payload,r=r._init;try{return $e(r(o))}catch{}}return null}function Ee(r){var o=r.type;switch(r.tag){case 24:return"Cache";case 9:return(o.displayName||"Context")+".Consumer";case 10:return(o._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return r=o.render,r=r.displayName||r.name||"",o.displayName||(r!==""?"ForwardRef("+r+")":"ForwardRef");case 7:return"Fragment";case 5:return o;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return $e(o);case 8:return o===D?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof o=="function")return o.displayName||o.name||null;if(typeof o=="string")return o}return null}function Se(r){switch(typeof r){case"boolean":case"number":case"string":case"undefined":return r;case"object":return r;default:return""}}function me(r){var o=r.type;return(r=r.nodeName)&&r.toLowerCase()==="input"&&(o==="checkbox"||o==="radio")}function Be(r){var o=me(r)?"checked":"value",u=Object.getOwnPropertyDescriptor(r.constructor.prototype,o),p=""+r[o];if(!r.hasOwnProperty(o)&&typeof u<"u"&&typeof u.get=="function"&&typeof u.set=="function"){var y=u.get,w=u.set;return Object.defineProperty(r,o,{configurable:!0,get:function(){return y.call(this)},set:function(E){p=""+E,w.call(this,E)}}),Object.defineProperty(r,o,{enumerable:u.enumerable}),{getValue:function(){return p},setValue:function(E){p=""+E},stopTracking:function(){r._valueTracker=null,delete r[o]}}}}function ke(r){r._valueTracker||(r._valueTracker=Be(r))}function ze(r){if(!r)return!1;var o=r._valueTracker;if(!o)return!0;var u=o.getValue(),p="";return r&&(p=me(r)?r.checked?"true":"false":r.value),r=p,r!==u?(o.setValue(r),!0):!1}function Ye(r){if(r=r||(typeof document<"u"?document:void 0),typeof r>"u")return null;try{return r.activeElement||r.body}catch{return r.body}}function g0(r,o){var u=o.checked;return ae({},o,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:u??r._wrapperState.initialChecked})}function k0(r,o){var u=o.defaultValue==null?"":o.defaultValue,p=o.checked!=null?o.checked:o.defaultChecked;u=Se(o.value!=null?o.value:u),r._wrapperState={initialChecked:p,initialValue:u,controlled:o.type==="checkbox"||o.type==="radio"?o.checked!=null:o.value!=null}}function l0(r,o){o=o.checked,o!=null&&F(r,"checked",o,!1)}function w0(r,o){l0(r,o);var u=Se(o.value),p=o.type;if(u!=null)p==="number"?(u===0&&r.value===""||r.value!=u)&&(r.value=""+u):r.value!==""+u&&(r.value=""+u);else if(p==="submit"||p==="reset"){r.removeAttribute("value");return}o.hasOwnProperty("value")?a0(r,o.type,u):o.hasOwnProperty("defaultValue")&&a0(r,o.type,Se(o.defaultValue)),o.checked==null&&o.defaultChecked!=null&&(r.defaultChecked=!!o.defaultChecked)}function r0(r,o,u){if(o.hasOwnProperty("value")||o.hasOwnProperty("defaultValue")){var p=o.type;if(!(p!=="submit"&&p!=="reset"||o.value!==void 0&&o.value!==null))return;o=""+r._wrapperState.initialValue,u||o===r.value||(r.value=o),r.defaultValue=o}u=r.name,u!==""&&(r.name=""),r.defaultChecked=!!r._wrapperState.initialChecked,u!==""&&(r.name=u)}function a0(r,o,u){(o!=="number"||Ye(r.ownerDocument)!==r)&&(u==null?r.defaultValue=""+r._wrapperState.initialValue:r.defaultValue!==""+u&&(r.defaultValue=""+u))}var tt=Array.isArray;function y0(r,o,u,p){if(r=r.options,o){o={};for(var y=0;y"+o.valueOf().toString()+"",o=W0.firstChild;r.firstChild;)r.removeChild(r.firstChild);for(;o.firstChild;)r.appendChild(o.firstChild)}});function Kt(r,o){if(o){var u=r.firstChild;if(u&&u===r.lastChild&&u.nodeType===3){u.nodeValue=o;return}}r.textContent=o}var e0={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},c0=["Webkit","ms","Moz","O"];Object.keys(e0).forEach(function(r){c0.forEach(function(o){o=o+r.charAt(0).toUpperCase()+r.substring(1),e0[o]=e0[r]})});function er(r,o,u){return o==null||typeof o=="boolean"||o===""?"":u||typeof o!="number"||o===0||e0.hasOwnProperty(r)&&e0[r]?(""+o).trim():o+"px"}function St(r,o){r=r.style;for(var u in o)if(o.hasOwnProperty(u)){var p=u.indexOf("--")===0,y=er(u,o[u],p);u==="float"&&(u="cssFloat"),p?r.setProperty(u,y):r[u]=y}}var Ur=ae({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function pn(r,o){if(o){if(Ur[r]&&(o.children!=null||o.dangerouslySetInnerHTML!=null))throw Error(n(137,r));if(o.dangerouslySetInnerHTML!=null){if(o.children!=null)throw Error(n(60));if(typeof o.dangerouslySetInnerHTML!="object"||!("__html"in o.dangerouslySetInnerHTML))throw Error(n(61))}if(o.style!=null&&typeof o.style!="object")throw Error(n(62))}}function Gr(r,o){if(r.indexOf("-")===-1)return typeof o.is=="string";switch(r){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Ws=null;function Us(r){return r=r.target||r.srcElement||window,r.correspondingUseElement&&(r=r.correspondingUseElement),r.nodeType===3?r.parentNode:r}var Gs=null,D2=null,R2=null;function m1(r){if(r=Pt(r)){if(typeof Gs!="function")throw Error(n(280));var o=r.stateNode;o&&(o=va(o),Gs(r.stateNode,r.type,o))}}function g1(r){D2?R2?R2.push(r):R2=[r]:D2=r}function y1(){if(D2){var r=D2,o=R2;if(R2=D2=null,m1(r),o)for(r=0;r>>=0,r===0?32:31-(k1(r)/T1|0)|0}var wi=64,Hl=4194304;function $i(r){switch(r&-r){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return r&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return r&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return r}}function V2(r,o){var u=r.pendingLanes;if(u===0)return 0;var p=0,y=r.suspendedLanes,w=r.pingedLanes,E=u&268435455;if(E!==0){var B=E&~y;B!==0?p=$i(B):(w&=E,w!==0&&(p=$i(w)))}else E=u&~y,E!==0?p=$i(E):w!==0&&(p=$i(w));if(p===0)return 0;if(o!==0&&o!==p&&(o&y)===0&&(y=p&-p,w=o&-o,y>=w||y===16&&(w&4194240)!==0))return o;if((p&4)!==0&&(p|=u&16),o=r.entangledLanes,o!==0)for(r=r.entanglements,o&=p;0u;u++)o.push(r);return o}function Ao(r,o,u){r.pendingLanes|=o,o!==536870912&&(r.suspendedLanes=0,r.pingedLanes=0),r=r.eventTimes,o=31-Bn(o),r[o]=u}function L1(r,o){var u=r.pendingLanes&~o;r.pendingLanes=o,r.suspendedLanes=0,r.pingedLanes=0,r.expiredLanes&=o,r.mutableReadLanes&=o,r.entangledLanes&=o,o=r.entanglements;var p=r.eventTimes;for(r=r.expirationTimes;0=Er),W1=" ",U1=!1;function G1(r,o){switch(r){case"keyup":return nn.indexOf(o.keyCode)!==-1;case"keydown":return o.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function q1(r){return r=r.detail,typeof r=="object"&&"data"in r?r.data:null}var ki=!1;function Ti(r,o){switch(r){case"compositionend":return q1(o);case"keypress":return o.which!==32?null:(U1=!0,W1);case"textInput":return r=o.data,r===W1&&U1?null:r;default:return null}}function Uf(r,o){if(ki)return r==="compositionend"||!Vo&&G1(r,o)?(r=au(),nr=Bo=B0=null,ki=!1,r):null;switch(r){case"paste":return null;case"keypress":if(!(o.ctrlKey||o.altKey||o.metaKey)||o.ctrlKey&&o.altKey){if(o.char&&1=o)return{node:u,offset:o-r};r=p}e:{for(;u;){if(u.nextSibling){u=u.nextSibling;break e}u=u.parentNode}u=void 0}u=Ge(u)}}function nt(r,o){return r&&o?r===o?!0:r&&r.nodeType===3?!1:o&&o.nodeType===3?nt(r,o.parentNode):"contains"in r?r.contains(o):r.compareDocumentPosition?!!(r.compareDocumentPosition(o)&16):!1:!1}function _0(){for(var r=window,o=Ye();o instanceof r.HTMLIFrameElement;){try{var u=typeof o.contentWindow.location.href=="string"}catch{u=!1}if(u)r=o.contentWindow;else break;o=Ye(r.document)}return o}function Io(r){var o=r&&r.nodeName&&r.nodeName.toLowerCase();return o&&(o==="input"&&(r.type==="text"||r.type==="search"||r.type==="tel"||r.type==="url"||r.type==="password")||o==="textarea"||r.contentEditable==="true")}function Jf(r){var o=_0(),u=r.focusedElem,p=r.selectionRange;if(o!==u&&u&&u.ownerDocument&&nt(u.ownerDocument.documentElement,u)){if(p!==null&&Io(u)){if(o=p.start,r=p.end,r===void 0&&(r=o),"selectionStart"in u)u.selectionStart=o,u.selectionEnd=Math.min(r,u.value.length);else if(r=(o=u.ownerDocument||document)&&o.defaultView||window,r.getSelection){r=r.getSelection();var y=u.textContent.length,w=Math.min(p.start,y);p=p.end===void 0?w:Math.min(p.end,y),!r.extend&&w>p&&(y=p,p=w,w=y),y=v0(u,w);var E=v0(u,p);y&&E&&(r.rangeCount!==1||r.anchorNode!==y.node||r.anchorOffset!==y.offset||r.focusNode!==E.node||r.focusOffset!==E.offset)&&(o=o.createRange(),o.setStart(y.node,y.offset),r.removeAllRanges(),w>p?(r.addRange(o),r.extend(E.node,E.offset)):(o.setEnd(E.node,E.offset),r.addRange(o)))}}for(o=[],r=u;r=r.parentNode;)r.nodeType===1&&o.push({element:r,left:r.scrollLeft,top:r.scrollTop});for(typeof u.focus=="function"&&u.focus(),u=0;u=document.documentMode,kr=null,xu=null,rr=null,Ai=!1;function Fo(r,o,u){var p=u.window===u?u.document:u.nodeType===9?u:u.ownerDocument;Ai||kr==null||kr!==Ye(p)||(p=kr,"selectionStart"in p&&Io(p)?p={start:p.selectionStart,end:p.selectionEnd}:(p=(p.ownerDocument&&p.ownerDocument.defaultView||window).getSelection(),p={anchorNode:p.anchorNode,anchorOffset:p.anchorOffset,focusNode:p.focusNode,focusOffset:p.focusOffset}),rr&&Me(rr,p)||(rr=p,p=ca(xu,"onSelect"),0Zi||(r.current=_u[Zi],_u[Zi]=null,Zi--)}function M0(r,o){Zi++,_u[Zi]=r.current,r.current=o}var l2={},Et=Ut(l2),Gt=Ut(!1),It=l2;function Oi(r,o){var u=r.type.contextTypes;if(!u)return l2;var p=r.stateNode;if(p&&p.__reactInternalMemoizedUnmaskedChildContext===o)return p.__reactInternalMemoizedMaskedChildContext;var y={},w;for(w in u)y[w]=o[w];return p&&(r=r.stateNode,r.__reactInternalMemoizedUnmaskedChildContext=o,r.__reactInternalMemoizedMaskedChildContext=y),y}function qt(r){return r=r.childContextTypes,r!=null}function ha(){L0(Gt),L0(Et)}function od(r,o,u){if(Et.current!==l2)throw Error(n(168));M0(Et,o),M0(Gt,u)}function ld(r,o,u){var p=r.stateNode;if(o=o.childContextTypes,typeof p.getChildContext!="function")return u;p=p.getChildContext();for(var y in p)if(!(y in o))throw Error(n(108,Ee(r)||"Unknown",y));return ae({},u,p)}function mn(r){return r=(r=r.stateNode)&&r.__reactInternalMemoizedMergedChildContext||l2,It=Et.current,M0(Et,r),M0(Gt,Gt.current),!0}function ad(r,o,u){var p=r.stateNode;if(!p)throw Error(n(169));u?(r=ld(r,o,It),p.__reactInternalMemoizedMergedChildContext=r,L0(Gt),L0(Et),M0(Et,r)):L0(Gt),M0(Gt,u)}var Ar=null,ma=!1,Pu=!1;function sd(r){Ar===null?Ar=[r]:Ar.push(r)}function j2(r){ma=!0,sd(r)}function a2(){if(!Pu&&Ar!==null){Pu=!0;var r=0,o=b0;try{var u=Ar;for(b0=1;r>=E,y-=E,lr=1<<32-Bn(o)+y|u<Ke?(ht=Oe,Oe=null):ht=Oe.sibling;var m0=ge(J,Oe,te[Ke],Ce);if(m0===null){Oe===null&&(Oe=ht);break}r&&Oe&&m0.alternate===null&&o(J,Oe),K=w(m0,K,Ke),Ne===null?Ie=m0:Ne.sibling=m0,Ne=m0,Oe=ht}if(Ke===te.length)return u(J,Oe),D0&&W2(J,Ke),Ie;if(Oe===null){for(;KeKe?(ht=Oe,Oe=null):ht=Oe.sibling;var b2=ge(J,Oe,m0.value,Ce);if(b2===null){Oe===null&&(Oe=ht);break}r&&Oe&&b2.alternate===null&&o(J,Oe),K=w(b2,K,Ke),Ne===null?Ie=b2:Ne.sibling=b2,Ne=b2,Oe=ht}if(m0.done)return u(J,Oe),D0&&W2(J,Ke),Ie;if(Oe===null){for(;!m0.done;Ke++,m0=te.next())m0=we(J,m0.value,Ce),m0!==null&&(K=w(m0,K,Ke),Ne===null?Ie=m0:Ne.sibling=m0,Ne=m0);return D0&&W2(J,Ke),Ie}for(Oe=p(J,Oe);!m0.done;Ke++,m0=te.next())m0=Ae(Oe,J,Ke,m0.value,Ce),m0!==null&&(r&&m0.alternate!==null&&Oe.delete(m0.key===null?Ke:m0.key),K=w(m0,K,Ke),Ne===null?Ie=m0:Ne.sibling=m0,Ne=m0);return r&&Oe.forEach(function(w7){return o(J,w7)}),D0&&W2(J,Ke),Ie}function X0(J,K,te,Ce){if(typeof te=="object"&&te!==null&&te.type===le&&te.key===null&&(te=te.props.children),typeof te=="object"&&te!==null){switch(te.$$typeof){case z:e:{for(var Ie=te.key,Ne=K;Ne!==null;){if(Ne.key===Ie){if(Ie=te.type,Ie===le){if(Ne.tag===7){u(J,Ne.sibling),K=y(Ne,te.props.children),K.return=J,J=K;break e}}else if(Ne.elementType===Ie||typeof Ie=="object"&&Ie!==null&&Ie.$$typeof===_e&&fd(Ie)===Ne.type){u(J,Ne.sibling),K=y(Ne,te.props),K.ref=qo(J,Ne,te),K.return=J,J=K;break e}u(J,Ne);break}else o(J,Ne);Ne=Ne.sibling}te.type===le?(K=oi(te.props.children,J.mode,Ce,te.key),K.return=J,J=K):(Ce=es(te.type,te.key,te.props,null,J.mode,Ce),Ce.ref=qo(J,K,te),Ce.return=J,J=Ce)}return E(J);case U:e:{for(Ne=te.key;K!==null;){if(K.key===Ne)if(K.tag===4&&K.stateNode.containerInfo===te.containerInfo&&K.stateNode.implementation===te.implementation){u(J,K.sibling),K=y(K,te.children||[]),K.return=J,J=K;break e}else{u(J,K);break}else o(J,K);K=K.sibling}K=hc(te,J.mode,Ce),K.return=J,J=K}return E(J);case _e:return Ne=te._init,X0(J,K,Ne(te._payload),Ce)}if(tt(te))return Re(J,K,te,Ce);if(Pe(te))return Ve(J,K,te,Ce);G2(J,te)}return typeof te=="string"&&te!==""||typeof te=="number"?(te=""+te,K!==null&&K.tag===6?(u(J,K.sibling),K=y(K,te),K.return=J,J=K):(u(J,K),K=vc(te,J.mode,Ce),K.return=J,J=K),E(J)):u(J,K)}return X0}var U0=ku(!0),xa=ku(!1),Yo=Ut(null),an=null,s2=null,Hi=null;function Dr(){Hi=s2=an=null}function wa(r){var o=Yo.current;L0(Yo),r._currentValue=o}function yt(r,o,u){for(;r!==null;){var p=r.alternate;if((r.childLanes&o)!==o?(r.childLanes|=o,p!==null&&(p.childLanes|=o)):p!==null&&(p.childLanes&o)!==o&&(p.childLanes|=o),r===u)break;r=r.return}}function u2(r,o){an=r,Hi=s2=null,r=r.dependencies,r!==null&&r.firstContext!==null&&((r.lanes&o)!==0&&(Zt=!0),r.firstContext=null)}function bn(r){var o=r._currentValue;if(Hi!==r)if(r={context:r,memoizedValue:o,next:null},s2===null){if(an===null)throw Error(n(308));s2=r,an.dependencies={lanes:0,firstContext:r}}else s2=s2.next=r;return o}var q2=null;function Tu(r){q2===null?q2=[r]:q2.push(r)}function $a(r,o,u,p){var y=o.interleaved;return y===null?(u.next=u,Tu(o)):(u.next=y.next,y.next=u),o.interleaved=u,Rr(r,p)}function Rr(r,o){r.lanes|=o;var u=r.alternate;for(u!==null&&(u.lanes|=o),u=r,r=r.return;r!==null;)r.childLanes|=o,u=r.alternate,u!==null&&(u.childLanes|=o),u=r,r=r.return;return u.tag===3?u.stateNode:null}var xn=!1;function Sa(r){r.updateQueue={baseState:r.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function pd(r,o){r=r.updateQueue,o.updateQueue===r&&(o.updateQueue={baseState:r.baseState,firstBaseUpdate:r.firstBaseUpdate,lastBaseUpdate:r.lastBaseUpdate,shared:r.shared,effects:r.effects})}function Br(r,o){return{eventTime:r,lane:o,tag:0,payload:null,callback:null,next:null}}function wn(r,o,u){var p=r.updateQueue;if(p===null)return null;if(p=p.shared,(f0&2)!==0){var y=p.pending;return y===null?o.next=o:(o.next=y.next,y.next=o),p.pending=o,Rr(r,u)}return y=p.interleaved,y===null?(o.next=o,Tu(p)):(o.next=y.next,y.next=o),p.interleaved=o,Rr(r,u)}function Ca(r,o,u){if(o=o.updateQueue,o!==null&&(o=o.shared,(u&4194240)!==0)){var p=o.lanes;p&=r.pendingLanes,u|=p,o.lanes=u,Lo(r,u)}}function vd(r,o){var u=r.updateQueue,p=r.alternate;if(p!==null&&(p=p.updateQueue,u===p)){var y=null,w=null;if(u=u.firstBaseUpdate,u!==null){do{var E={eventTime:u.eventTime,lane:u.lane,tag:u.tag,payload:u.payload,callback:u.callback,next:null};w===null?y=w=E:w=w.next=E,u=u.next}while(u!==null);w===null?y=w=o:w=w.next=o}else y=w=o;u={baseState:p.baseState,firstBaseUpdate:y,lastBaseUpdate:w,shared:p.shared,effects:p.effects},r.updateQueue=u;return}r=u.lastBaseUpdate,r===null?u.firstBaseUpdate=o:r.next=o,u.lastBaseUpdate=o}function zi(r,o,u,p){var y=r.updateQueue;xn=!1;var w=y.firstBaseUpdate,E=y.lastBaseUpdate,B=y.shared.pending;if(B!==null){y.shared.pending=null;var Z=B,re=Z.next;Z.next=null,E===null?w=re:E.next=re,E=Z;var ye=r.alternate;ye!==null&&(ye=ye.updateQueue,B=ye.lastBaseUpdate,B!==E&&(B===null?ye.firstBaseUpdate=re:B.next=re,ye.lastBaseUpdate=Z))}if(w!==null){var we=y.baseState;E=0,ye=re=Z=null,B=w;do{var ge=B.lane,Ae=B.eventTime;if((p&ge)===ge){ye!==null&&(ye=ye.next={eventTime:Ae,lane:0,tag:B.tag,payload:B.payload,callback:B.callback,next:null});e:{var Re=r,Ve=B;switch(ge=o,Ae=u,Ve.tag){case 1:if(Re=Ve.payload,typeof Re=="function"){we=Re.call(Ae,we,ge);break e}we=Re;break e;case 3:Re.flags=Re.flags&-65537|128;case 0:if(Re=Ve.payload,ge=typeof Re=="function"?Re.call(Ae,we,ge):Re,ge==null)break e;we=ae({},we,ge);break e;case 2:xn=!0}}B.callback!==null&&B.lane!==0&&(r.flags|=64,ge=y.effects,ge===null?y.effects=[B]:ge.push(B))}else Ae={eventTime:Ae,lane:ge,tag:B.tag,payload:B.payload,callback:B.callback,next:null},ye===null?(re=ye=Ae,Z=we):ye=ye.next=Ae,E|=ge;if(B=B.next,B===null){if(B=y.shared.pending,B===null)break;ge=B,B=ge.next,ge.next=null,y.lastBaseUpdate=ge,y.shared.pending=null}}while(!0);if(ye===null&&(Z=we),y.baseState=Z,y.firstBaseUpdate=re,y.lastBaseUpdate=ye,o=y.shared.interleaved,o!==null){y=o;do E|=y.lane,y=y.next;while(y!==o)}else w===null&&(y.shared.lanes=0);v2|=E,r.lanes=E,r.memoizedState=we}}function Mu(r,o,u){if(r=o.effects,o.effects=null,r!==null)for(o=0;ou?u:4,r(!0);var p=Ru.transition;Ru.transition={};try{r(!1),o()}finally{b0=u,Ru.transition=p}}function Hu(){return $n().memoizedState}function t7(r,o,u){var p=g2(r);if(u={lane:p,action:u,hasEagerState:!1,eagerState:null,next:null},zu(r))Ft(o,u);else if(u=$a(r,o,u,p),u!==null){var y=Ht();zn(u,r,p,y),Fn(u,o,p)}}function xd(r,o,u){var p=g2(r),y={lane:p,action:u,hasEagerState:!1,eagerState:null,next:null};if(zu(r))Ft(o,y);else{var w=r.alternate;if(r.lanes===0&&(w===null||w.lanes===0)&&(w=o.lastRenderedReducer,w!==null))try{var E=o.lastRenderedState,B=w(E,u);if(y.hasEagerState=!0,y.eagerState=B,ne(B,E)){var Z=o.interleaved;Z===null?(y.next=y,Tu(o)):(y.next=Z.next,Z.next=y),o.interleaved=y;return}}catch{}finally{}u=$a(r,o,y,p),u!==null&&(y=Ht(),zn(u,r,p,y),Fn(u,o,p))}}function zu(r){var o=r.alternate;return r===N0||o!==null&&o===N0}function Ft(r,o){el=Ki=!0;var u=r.pending;u===null?o.next=o:(o.next=u.next,u.next=o),r.pending=o}function Fn(r,o,u){if((u&4194240)!==0){var p=o.lanes;p&=r.pendingLanes,u|=p,o.lanes=u,Lo(r,u)}}var La={readContext:bn,useCallback:Mt,useContext:Mt,useEffect:Mt,useImperativeHandle:Mt,useInsertionEffect:Mt,useLayoutEffect:Mt,useMemo:Mt,useReducer:Mt,useRef:Mt,useState:Mt,useDebugValue:Mt,useDeferredValue:Mt,useTransition:Mt,useMutableSource:Mt,useSyncExternalStore:Mt,useId:Mt,unstable_isNewReconciler:!1},n7={readContext:bn,useCallback:function(r,o){return fr().memoizedState=[r,o===void 0?null:o],r},useContext:bn,useEffect:Aa,useImperativeHandle:function(r,o,u){return u=u!=null?u.concat([r]):null,nl(4194308,4,Ou.bind(null,o,r),u)},useLayoutEffect:function(r,o){return nl(4194308,4,r,o)},useInsertionEffect:function(r,o){return nl(4,2,r,o)},useMemo:function(r,o){var u=fr();return o=o===void 0?null:o,r=r(),u.memoizedState=[r,o],r},useReducer:function(r,o,u){var p=fr();return o=u!==void 0?u(o):o,p.memoizedState=p.baseState=o,r={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:r,lastRenderedState:o},p.queue=r,r=r.dispatch=t7.bind(null,N0,r),[p.memoizedState,r]},useRef:function(r){var o=fr();return r={current:r},o.memoizedState=r},useState:tl,useDebugValue:rl,useDeferredValue:function(r){return fr().memoizedState=r},useTransition:function(){var r=tl(!1),o=r[0];return r=bd.bind(null,r[1]),fr().memoizedState=r,[o,r]},useMutableSource:function(){},useSyncExternalStore:function(r,o,u){var p=N0,y=fr();if(D0){if(u===void 0)throw Error(n(407));u=u()}else{if(u=o(),vt===null)throw Error(n(349));(d2&30)!==0||Fu(p,o,u)}y.memoizedState=u;var w={value:u,getSnapshot:o};return y.queue=w,Aa(Ir.bind(null,p,w,r),[r]),p.flags|=2048,Ui(9,Xt.bind(null,p,w,u,o),void 0,null),u},useId:function(){var r=fr(),o=vt.identifierPrefix;if(D0){var u=ar,p=lr;u=(p&~(1<<32-Bn(p)-1)).toString(32)+u,o=":"+o+"R"+u,u=X2++,0")&&(Z=Z.replace("",r.displayName)),Z}while(1<=E&&0<=B);break}}}finally{oe=!1,Error.prepareStackTrace=u}return(r=r?r.displayName||r.name:"")?ce(r):""}function ue(r){switch(r.tag){case 5:return ce(r.type);case 16:return ce("Lazy");case 13:return ce("Suspense");case 19:return ce("SuspenseList");case 0:case 2:case 15:return r=q(r.type,!1),r;case 11:return r=q(r.type.render,!1),r;case 1:return r=q(r.type,!0),r;default:return""}}function $e(r){if(r==null)return null;if(typeof r=="function")return r.displayName||r.name||null;if(typeof r=="string")return r;switch(r){case le:return"Fragment";case U:return"Portal";case ie:return"Profiler";case D:return"StrictMode";case G:return"Suspense";case Q:return"SuspenseList"}if(typeof r=="object")switch(r.$$typeof){case X:return(r.displayName||"Context")+".Consumer";case j:return(r._context.displayName||"Context")+".Provider";case xe:var o=r.render;return r=r.displayName,r||(r=o.displayName||o.name||"",r=r!==""?"ForwardRef("+r+")":"ForwardRef"),r;case he:return o=r.displayName||null,o!==null?o:$e(r.type)||"Memo";case _e:o=r._payload,r=r._init;try{return $e(r(o))}catch{}}return null}function Ee(r){var o=r.type;switch(r.tag){case 24:return"Cache";case 9:return(o.displayName||"Context")+".Consumer";case 10:return(o._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return r=o.render,r=r.displayName||r.name||"",o.displayName||(r!==""?"ForwardRef("+r+")":"ForwardRef");case 7:return"Fragment";case 5:return o;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return $e(o);case 8:return o===D?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof o=="function")return o.displayName||o.name||null;if(typeof o=="string")return o}return null}function Se(r){switch(typeof r){case"boolean":case"number":case"string":case"undefined":return r;case"object":return r;default:return""}}function me(r){var o=r.type;return(r=r.nodeName)&&r.toLowerCase()==="input"&&(o==="checkbox"||o==="radio")}function Be(r){var o=me(r)?"checked":"value",u=Object.getOwnPropertyDescriptor(r.constructor.prototype,o),p=""+r[o];if(!r.hasOwnProperty(o)&&typeof u<"u"&&typeof u.get=="function"&&typeof u.set=="function"){var y=u.get,w=u.set;return Object.defineProperty(r,o,{configurable:!0,get:function(){return y.call(this)},set:function(E){p=""+E,w.call(this,E)}}),Object.defineProperty(r,o,{enumerable:u.enumerable}),{getValue:function(){return p},setValue:function(E){p=""+E},stopTracking:function(){r._valueTracker=null,delete r[o]}}}}function ke(r){r._valueTracker||(r._valueTracker=Be(r))}function ze(r){if(!r)return!1;var o=r._valueTracker;if(!o)return!0;var u=o.getValue(),p="";return r&&(p=me(r)?r.checked?"true":"false":r.value),r=p,r!==u?(o.setValue(r),!0):!1}function Ye(r){if(r=r||(typeof document<"u"?document:void 0),typeof r>"u")return null;try{return r.activeElement||r.body}catch{return r.body}}function g0(r,o){var u=o.checked;return ae({},o,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:u??r._wrapperState.initialChecked})}function k0(r,o){var u=o.defaultValue==null?"":o.defaultValue,p=o.checked!=null?o.checked:o.defaultChecked;u=Se(o.value!=null?o.value:u),r._wrapperState={initialChecked:p,initialValue:u,controlled:o.type==="checkbox"||o.type==="radio"?o.checked!=null:o.value!=null}}function l0(r,o){o=o.checked,o!=null&&F(r,"checked",o,!1)}function w0(r,o){l0(r,o);var u=Se(o.value),p=o.type;if(u!=null)p==="number"?(u===0&&r.value===""||r.value!=u)&&(r.value=""+u):r.value!==""+u&&(r.value=""+u);else if(p==="submit"||p==="reset"){r.removeAttribute("value");return}o.hasOwnProperty("value")?a0(r,o.type,u):o.hasOwnProperty("defaultValue")&&a0(r,o.type,Se(o.defaultValue)),o.checked==null&&o.defaultChecked!=null&&(r.defaultChecked=!!o.defaultChecked)}function r0(r,o,u){if(o.hasOwnProperty("value")||o.hasOwnProperty("defaultValue")){var p=o.type;if(!(p!=="submit"&&p!=="reset"||o.value!==void 0&&o.value!==null))return;o=""+r._wrapperState.initialValue,u||o===r.value||(r.value=o),r.defaultValue=o}u=r.name,u!==""&&(r.name=""),r.defaultChecked=!!r._wrapperState.initialChecked,u!==""&&(r.name=u)}function a0(r,o,u){(o!=="number"||Ye(r.ownerDocument)!==r)&&(u==null?r.defaultValue=""+r._wrapperState.initialValue:r.defaultValue!==""+u&&(r.defaultValue=""+u))}var tt=Array.isArray;function y0(r,o,u,p){if(r=r.options,o){o={};for(var y=0;y"+o.valueOf().toString()+"",o=W0.firstChild;r.firstChild;)r.removeChild(r.firstChild);for(;o.firstChild;)r.appendChild(o.firstChild)}});function Kt(r,o){if(o){var u=r.firstChild;if(u&&u===r.lastChild&&u.nodeType===3){u.nodeValue=o;return}}r.textContent=o}var e0={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},c0=["Webkit","ms","Moz","O"];Object.keys(e0).forEach(function(r){c0.forEach(function(o){o=o+r.charAt(0).toUpperCase()+r.substring(1),e0[o]=e0[r]})});function er(r,o,u){return o==null||typeof o=="boolean"||o===""?"":u||typeof o!="number"||o===0||e0.hasOwnProperty(r)&&e0[r]?(""+o).trim():o+"px"}function St(r,o){r=r.style;for(var u in o)if(o.hasOwnProperty(u)){var p=u.indexOf("--")===0,y=er(u,o[u],p);u==="float"&&(u="cssFloat"),p?r.setProperty(u,y):r[u]=y}}var Wr=ae({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function pn(r,o){if(o){if(Wr[r]&&(o.children!=null||o.dangerouslySetInnerHTML!=null))throw Error(n(137,r));if(o.dangerouslySetInnerHTML!=null){if(o.children!=null)throw Error(n(60));if(typeof o.dangerouslySetInnerHTML!="object"||!("__html"in o.dangerouslySetInnerHTML))throw Error(n(61))}if(o.style!=null&&typeof o.style!="object")throw Error(n(62))}}function Ur(r,o){if(r.indexOf("-")===-1)return typeof o.is=="string";switch(r){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Ws=null;function Us(r){return r=r.target||r.srcElement||window,r.correspondingUseElement&&(r=r.correspondingUseElement),r.nodeType===3?r.parentNode:r}var Gs=null,D2=null,R2=null;function m1(r){if(r=Pt(r)){if(typeof Gs!="function")throw Error(n(280));var o=r.stateNode;o&&(o=va(o),Gs(r.stateNode,r.type,o))}}function g1(r){D2?R2?R2.push(r):R2=[r]:D2=r}function y1(){if(D2){var r=D2,o=R2;if(R2=D2=null,m1(r),o)for(r=0;r>>=0,r===0?32:31-(k1(r)/T1|0)|0}var wi=64,Hl=4194304;function $i(r){switch(r&-r){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return r&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return r&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return r}}function V2(r,o){var u=r.pendingLanes;if(u===0)return 0;var p=0,y=r.suspendedLanes,w=r.pingedLanes,E=u&268435455;if(E!==0){var B=E&~y;B!==0?p=$i(B):(w&=E,w!==0&&(p=$i(w)))}else E=u&~y,E!==0?p=$i(E):w!==0&&(p=$i(w));if(p===0)return 0;if(o!==0&&o!==p&&(o&y)===0&&(y=p&-p,w=o&-o,y>=w||y===16&&(w&4194240)!==0))return o;if((p&4)!==0&&(p|=u&16),o=r.entangledLanes,o!==0)for(r=r.entanglements,o&=p;0u;u++)o.push(r);return o}function Ao(r,o,u){r.pendingLanes|=o,o!==536870912&&(r.suspendedLanes=0,r.pingedLanes=0),r=r.eventTimes,o=31-Bn(o),r[o]=u}function L1(r,o){var u=r.pendingLanes&~o;r.pendingLanes=o,r.suspendedLanes=0,r.pingedLanes=0,r.expiredLanes&=o,r.mutableReadLanes&=o,r.entangledLanes&=o,o=r.entanglements;var p=r.eventTimes;for(r=r.expirationTimes;0=Er),W1=" ",U1=!1;function G1(r,o){switch(r){case"keyup":return nn.indexOf(o.keyCode)!==-1;case"keydown":return o.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function q1(r){return r=r.detail,typeof r=="object"&&"data"in r?r.data:null}var ki=!1;function Ti(r,o){switch(r){case"compositionend":return q1(o);case"keypress":return o.which!==32?null:(U1=!0,W1);case"textInput":return r=o.data,r===W1&&U1?null:r;default:return null}}function Uf(r,o){if(ki)return r==="compositionend"||!Vo&&G1(r,o)?(r=au(),nr=Bo=B0=null,ki=!1,r):null;switch(r){case"paste":return null;case"keypress":if(!(o.ctrlKey||o.altKey||o.metaKey)||o.ctrlKey&&o.altKey){if(o.char&&1=o)return{node:u,offset:o-r};r=p}e:{for(;u;){if(u.nextSibling){u=u.nextSibling;break e}u=u.parentNode}u=void 0}u=Ge(u)}}function nt(r,o){return r&&o?r===o?!0:r&&r.nodeType===3?!1:o&&o.nodeType===3?nt(r,o.parentNode):"contains"in r?r.contains(o):r.compareDocumentPosition?!!(r.compareDocumentPosition(o)&16):!1:!1}function _0(){for(var r=window,o=Ye();o instanceof r.HTMLIFrameElement;){try{var u=typeof o.contentWindow.location.href=="string"}catch{u=!1}if(u)r=o.contentWindow;else break;o=Ye(r.document)}return o}function Io(r){var o=r&&r.nodeName&&r.nodeName.toLowerCase();return o&&(o==="input"&&(r.type==="text"||r.type==="search"||r.type==="tel"||r.type==="url"||r.type==="password")||o==="textarea"||r.contentEditable==="true")}function Jf(r){var o=_0(),u=r.focusedElem,p=r.selectionRange;if(o!==u&&u&&u.ownerDocument&&nt(u.ownerDocument.documentElement,u)){if(p!==null&&Io(u)){if(o=p.start,r=p.end,r===void 0&&(r=o),"selectionStart"in u)u.selectionStart=o,u.selectionEnd=Math.min(r,u.value.length);else if(r=(o=u.ownerDocument||document)&&o.defaultView||window,r.getSelection){r=r.getSelection();var y=u.textContent.length,w=Math.min(p.start,y);p=p.end===void 0?w:Math.min(p.end,y),!r.extend&&w>p&&(y=p,p=w,w=y),y=v0(u,w);var E=v0(u,p);y&&E&&(r.rangeCount!==1||r.anchorNode!==y.node||r.anchorOffset!==y.offset||r.focusNode!==E.node||r.focusOffset!==E.offset)&&(o=o.createRange(),o.setStart(y.node,y.offset),r.removeAllRanges(),w>p?(r.addRange(o),r.extend(E.node,E.offset)):(o.setEnd(E.node,E.offset),r.addRange(o)))}}for(o=[],r=u;r=r.parentNode;)r.nodeType===1&&o.push({element:r,left:r.scrollLeft,top:r.scrollTop});for(typeof u.focus=="function"&&u.focus(),u=0;u=document.documentMode,kr=null,xu=null,rr=null,Ai=!1;function Fo(r,o,u){var p=u.window===u?u.document:u.nodeType===9?u:u.ownerDocument;Ai||kr==null||kr!==Ye(p)||(p=kr,"selectionStart"in p&&Io(p)?p={start:p.selectionStart,end:p.selectionEnd}:(p=(p.ownerDocument&&p.ownerDocument.defaultView||window).getSelection(),p={anchorNode:p.anchorNode,anchorOffset:p.anchorOffset,focusNode:p.focusNode,focusOffset:p.focusOffset}),rr&&Me(rr,p)||(rr=p,p=ca(xu,"onSelect"),0Zi||(r.current=_u[Zi],_u[Zi]=null,Zi--)}function M0(r,o){Zi++,_u[Zi]=r.current,r.current=o}var o2={},Et=Ut(o2),Gt=Ut(!1),It=o2;function Oi(r,o){var u=r.type.contextTypes;if(!u)return o2;var p=r.stateNode;if(p&&p.__reactInternalMemoizedUnmaskedChildContext===o)return p.__reactInternalMemoizedMaskedChildContext;var y={},w;for(w in u)y[w]=o[w];return p&&(r=r.stateNode,r.__reactInternalMemoizedUnmaskedChildContext=o,r.__reactInternalMemoizedMaskedChildContext=y),y}function qt(r){return r=r.childContextTypes,r!=null}function ha(){L0(Gt),L0(Et)}function od(r,o,u){if(Et.current!==o2)throw Error(n(168));M0(Et,o),M0(Gt,u)}function ld(r,o,u){var p=r.stateNode;if(o=o.childContextTypes,typeof p.getChildContext!="function")return u;p=p.getChildContext();for(var y in p)if(!(y in o))throw Error(n(108,Ee(r)||"Unknown",y));return ae({},u,p)}function mn(r){return r=(r=r.stateNode)&&r.__reactInternalMemoizedMergedChildContext||o2,It=Et.current,M0(Et,r),M0(Gt,Gt.current),!0}function ad(r,o,u){var p=r.stateNode;if(!p)throw Error(n(169));u?(r=ld(r,o,It),p.__reactInternalMemoizedMergedChildContext=r,L0(Gt),L0(Et),M0(Et,r)):L0(Gt),M0(Gt,u)}var Ar=null,ma=!1,Pu=!1;function sd(r){Ar===null?Ar=[r]:Ar.push(r)}function j2(r){ma=!0,sd(r)}function l2(){if(!Pu&&Ar!==null){Pu=!0;var r=0,o=b0;try{var u=Ar;for(b0=1;r>=E,y-=E,lr=1<<32-Bn(o)+y|u<Ke?(ht=Oe,Oe=null):ht=Oe.sibling;var m0=ge(J,Oe,te[Ke],Ce);if(m0===null){Oe===null&&(Oe=ht);break}r&&Oe&&m0.alternate===null&&o(J,Oe),K=w(m0,K,Ke),Ne===null?Ie=m0:Ne.sibling=m0,Ne=m0,Oe=ht}if(Ke===te.length)return u(J,Oe),D0&&W2(J,Ke),Ie;if(Oe===null){for(;KeKe?(ht=Oe,Oe=null):ht=Oe.sibling;var y2=ge(J,Oe,m0.value,Ce);if(y2===null){Oe===null&&(Oe=ht);break}r&&Oe&&y2.alternate===null&&o(J,Oe),K=w(y2,K,Ke),Ne===null?Ie=y2:Ne.sibling=y2,Ne=y2,Oe=ht}if(m0.done)return u(J,Oe),D0&&W2(J,Ke),Ie;if(Oe===null){for(;!m0.done;Ke++,m0=te.next())m0=we(J,m0.value,Ce),m0!==null&&(K=w(m0,K,Ke),Ne===null?Ie=m0:Ne.sibling=m0,Ne=m0);return D0&&W2(J,Ke),Ie}for(Oe=p(J,Oe);!m0.done;Ke++,m0=te.next())m0=Ae(Oe,J,Ke,m0.value,Ce),m0!==null&&(r&&m0.alternate!==null&&Oe.delete(m0.key===null?Ke:m0.key),K=w(m0,K,Ke),Ne===null?Ie=m0:Ne.sibling=m0,Ne=m0);return r&&Oe.forEach(function(w7){return o(J,w7)}),D0&&W2(J,Ke),Ie}function X0(J,K,te,Ce){if(typeof te=="object"&&te!==null&&te.type===le&&te.key===null&&(te=te.props.children),typeof te=="object"&&te!==null){switch(te.$$typeof){case z:e:{for(var Ie=te.key,Ne=K;Ne!==null;){if(Ne.key===Ie){if(Ie=te.type,Ie===le){if(Ne.tag===7){u(J,Ne.sibling),K=y(Ne,te.props.children),K.return=J,J=K;break e}}else if(Ne.elementType===Ie||typeof Ie=="object"&&Ie!==null&&Ie.$$typeof===_e&&fd(Ie)===Ne.type){u(J,Ne.sibling),K=y(Ne,te.props),K.ref=qo(J,Ne,te),K.return=J,J=K;break e}u(J,Ne);break}else o(J,Ne);Ne=Ne.sibling}te.type===le?(K=oi(te.props.children,J.mode,Ce,te.key),K.return=J,J=K):(Ce=es(te.type,te.key,te.props,null,J.mode,Ce),Ce.ref=qo(J,K,te),Ce.return=J,J=Ce)}return E(J);case U:e:{for(Ne=te.key;K!==null;){if(K.key===Ne)if(K.tag===4&&K.stateNode.containerInfo===te.containerInfo&&K.stateNode.implementation===te.implementation){u(J,K.sibling),K=y(K,te.children||[]),K.return=J,J=K;break e}else{u(J,K);break}else o(J,K);K=K.sibling}K=hc(te,J.mode,Ce),K.return=J,J=K}return E(J);case _e:return Ne=te._init,X0(J,K,Ne(te._payload),Ce)}if(tt(te))return Re(J,K,te,Ce);if(Pe(te))return Ve(J,K,te,Ce);G2(J,te)}return typeof te=="string"&&te!==""||typeof te=="number"?(te=""+te,K!==null&&K.tag===6?(u(J,K.sibling),K=y(K,te),K.return=J,J=K):(u(J,K),K=vc(te,J.mode,Ce),K.return=J,J=K),E(J)):u(J,K)}return X0}var U0=ku(!0),xa=ku(!1),Yo=Ut(null),an=null,a2=null,Hi=null;function Dr(){Hi=a2=an=null}function wa(r){var o=Yo.current;L0(Yo),r._currentValue=o}function yt(r,o,u){for(;r!==null;){var p=r.alternate;if((r.childLanes&o)!==o?(r.childLanes|=o,p!==null&&(p.childLanes|=o)):p!==null&&(p.childLanes&o)!==o&&(p.childLanes|=o),r===u)break;r=r.return}}function s2(r,o){an=r,Hi=a2=null,r=r.dependencies,r!==null&&r.firstContext!==null&&((r.lanes&o)!==0&&(Zt=!0),r.firstContext=null)}function bn(r){var o=r._currentValue;if(Hi!==r)if(r={context:r,memoizedValue:o,next:null},a2===null){if(an===null)throw Error(n(308));a2=r,an.dependencies={lanes:0,firstContext:r}}else a2=a2.next=r;return o}var q2=null;function Tu(r){q2===null?q2=[r]:q2.push(r)}function $a(r,o,u,p){var y=o.interleaved;return y===null?(u.next=u,Tu(o)):(u.next=y.next,y.next=u),o.interleaved=u,Rr(r,p)}function Rr(r,o){r.lanes|=o;var u=r.alternate;for(u!==null&&(u.lanes|=o),u=r,r=r.return;r!==null;)r.childLanes|=o,u=r.alternate,u!==null&&(u.childLanes|=o),u=r,r=r.return;return u.tag===3?u.stateNode:null}var xn=!1;function Sa(r){r.updateQueue={baseState:r.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function pd(r,o){r=r.updateQueue,o.updateQueue===r&&(o.updateQueue={baseState:r.baseState,firstBaseUpdate:r.firstBaseUpdate,lastBaseUpdate:r.lastBaseUpdate,shared:r.shared,effects:r.effects})}function Br(r,o){return{eventTime:r,lane:o,tag:0,payload:null,callback:null,next:null}}function wn(r,o,u){var p=r.updateQueue;if(p===null)return null;if(p=p.shared,(f0&2)!==0){var y=p.pending;return y===null?o.next=o:(o.next=y.next,y.next=o),p.pending=o,Rr(r,u)}return y=p.interleaved,y===null?(o.next=o,Tu(p)):(o.next=y.next,y.next=o),p.interleaved=o,Rr(r,u)}function Ca(r,o,u){if(o=o.updateQueue,o!==null&&(o=o.shared,(u&4194240)!==0)){var p=o.lanes;p&=r.pendingLanes,u|=p,o.lanes=u,Lo(r,u)}}function vd(r,o){var u=r.updateQueue,p=r.alternate;if(p!==null&&(p=p.updateQueue,u===p)){var y=null,w=null;if(u=u.firstBaseUpdate,u!==null){do{var E={eventTime:u.eventTime,lane:u.lane,tag:u.tag,payload:u.payload,callback:u.callback,next:null};w===null?y=w=E:w=w.next=E,u=u.next}while(u!==null);w===null?y=w=o:w=w.next=o}else y=w=o;u={baseState:p.baseState,firstBaseUpdate:y,lastBaseUpdate:w,shared:p.shared,effects:p.effects},r.updateQueue=u;return}r=u.lastBaseUpdate,r===null?u.firstBaseUpdate=o:r.next=o,u.lastBaseUpdate=o}function zi(r,o,u,p){var y=r.updateQueue;xn=!1;var w=y.firstBaseUpdate,E=y.lastBaseUpdate,B=y.shared.pending;if(B!==null){y.shared.pending=null;var Z=B,re=Z.next;Z.next=null,E===null?w=re:E.next=re,E=Z;var ye=r.alternate;ye!==null&&(ye=ye.updateQueue,B=ye.lastBaseUpdate,B!==E&&(B===null?ye.firstBaseUpdate=re:B.next=re,ye.lastBaseUpdate=Z))}if(w!==null){var we=y.baseState;E=0,ye=re=Z=null,B=w;do{var ge=B.lane,Ae=B.eventTime;if((p&ge)===ge){ye!==null&&(ye=ye.next={eventTime:Ae,lane:0,tag:B.tag,payload:B.payload,callback:B.callback,next:null});e:{var Re=r,Ve=B;switch(ge=o,Ae=u,Ve.tag){case 1:if(Re=Ve.payload,typeof Re=="function"){we=Re.call(Ae,we,ge);break e}we=Re;break e;case 3:Re.flags=Re.flags&-65537|128;case 0:if(Re=Ve.payload,ge=typeof Re=="function"?Re.call(Ae,we,ge):Re,ge==null)break e;we=ae({},we,ge);break e;case 2:xn=!0}}B.callback!==null&&B.lane!==0&&(r.flags|=64,ge=y.effects,ge===null?y.effects=[B]:ge.push(B))}else Ae={eventTime:Ae,lane:ge,tag:B.tag,payload:B.payload,callback:B.callback,next:null},ye===null?(re=ye=Ae,Z=we):ye=ye.next=Ae,E|=ge;if(B=B.next,B===null){if(B=y.shared.pending,B===null)break;ge=B,B=ge.next,ge.next=null,y.lastBaseUpdate=ge,y.shared.pending=null}}while(!0);if(ye===null&&(Z=we),y.baseState=Z,y.firstBaseUpdate=re,y.lastBaseUpdate=ye,o=y.shared.interleaved,o!==null){y=o;do E|=y.lane,y=y.next;while(y!==o)}else w===null&&(y.shared.lanes=0);p2|=E,r.lanes=E,r.memoizedState=we}}function Mu(r,o,u){if(r=o.effects,o.effects=null,r!==null)for(o=0;ou?u:4,r(!0);var p=Ru.transition;Ru.transition={};try{r(!1),o()}finally{b0=u,Ru.transition=p}}function Hu(){return $n().memoizedState}function t7(r,o,u){var p=m2(r);if(u={lane:p,action:u,hasEagerState:!1,eagerState:null,next:null},zu(r))Ft(o,u);else if(u=$a(r,o,u,p),u!==null){var y=Ht();zn(u,r,p,y),Fn(u,o,p)}}function xd(r,o,u){var p=m2(r),y={lane:p,action:u,hasEagerState:!1,eagerState:null,next:null};if(zu(r))Ft(o,y);else{var w=r.alternate;if(r.lanes===0&&(w===null||w.lanes===0)&&(w=o.lastRenderedReducer,w!==null))try{var E=o.lastRenderedState,B=w(E,u);if(y.hasEagerState=!0,y.eagerState=B,ne(B,E)){var Z=o.interleaved;Z===null?(y.next=y,Tu(o)):(y.next=Z.next,Z.next=y),o.interleaved=y;return}}catch{}finally{}u=$a(r,o,y,p),u!==null&&(y=Ht(),zn(u,r,p,y),Fn(u,o,p))}}function zu(r){var o=r.alternate;return r===N0||o!==null&&o===N0}function Ft(r,o){el=Ki=!0;var u=r.pending;u===null?o.next=o:(o.next=u.next,u.next=o),r.pending=o}function Fn(r,o,u){if((u&4194240)!==0){var p=o.lanes;p&=r.pendingLanes,u|=p,o.lanes=u,Lo(r,u)}}var La={readContext:bn,useCallback:Mt,useContext:Mt,useEffect:Mt,useImperativeHandle:Mt,useInsertionEffect:Mt,useLayoutEffect:Mt,useMemo:Mt,useReducer:Mt,useRef:Mt,useState:Mt,useDebugValue:Mt,useDeferredValue:Mt,useTransition:Mt,useMutableSource:Mt,useSyncExternalStore:Mt,useId:Mt,unstable_isNewReconciler:!1},n7={readContext:bn,useCallback:function(r,o){return fr().memoizedState=[r,o===void 0?null:o],r},useContext:bn,useEffect:Aa,useImperativeHandle:function(r,o,u){return u=u!=null?u.concat([r]):null,nl(4194308,4,Ou.bind(null,o,r),u)},useLayoutEffect:function(r,o){return nl(4194308,4,r,o)},useInsertionEffect:function(r,o){return nl(4,2,r,o)},useMemo:function(r,o){var u=fr();return o=o===void 0?null:o,r=r(),u.memoizedState=[r,o],r},useReducer:function(r,o,u){var p=fr();return o=u!==void 0?u(o):o,p.memoizedState=p.baseState=o,r={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:r,lastRenderedState:o},p.queue=r,r=r.dispatch=t7.bind(null,N0,r),[p.memoizedState,r]},useRef:function(r){var o=fr();return r={current:r},o.memoizedState=r},useState:tl,useDebugValue:rl,useDeferredValue:function(r){return fr().memoizedState=r},useTransition:function(){var r=tl(!1),o=r[0];return r=bd.bind(null,r[1]),fr().memoizedState=r,[o,r]},useMutableSource:function(){},useSyncExternalStore:function(r,o,u){var p=N0,y=fr();if(D0){if(u===void 0)throw Error(n(407));u=u()}else{if(u=o(),vt===null)throw Error(n(349));(c2&30)!==0||Fu(p,o,u)}y.memoizedState=u;var w={value:u,getSnapshot:o};return y.queue=w,Aa(Ir.bind(null,p,w,r),[r]),p.flags|=2048,Ui(9,Xt.bind(null,p,w,u,o),void 0,null),u},useId:function(){var r=fr(),o=vt.identifierPrefix;if(D0){var u=ar,p=lr;u=(p&~(1<<32-Bn(p)-1)).toString(32)+u,o=":"+o+"R"+u,u=X2++,0<\/script>",r=r.removeChild(r.firstChild)):typeof p.is=="string"?r=E.createElement(u,{is:p.is}):(r=E.createElement(u),u==="select"&&(E=r,p.multiple?E.multiple=!0:p.size&&(E.size=p.size))):r=E.createElementNS(r,u),r[ir]=o,r[o2]=p,xt(r,o,!1,!1),o.stateNode=r;e:{switch(E=Gr(u,p),u){case"dialog":A0("cancel",r),A0("close",r),y=p;break;case"iframe":case"object":case"embed":A0("load",r),y=p;break;case"video":case"audio":for(y=0;yti&&(o.flags|=128,p=!0,cl(w,!1),o.lanes=4194304)}else{if(!p)if(r=Y2(E),r!==null){if(o.flags|=128,p=!0,u=r.updateQueue,u!==null&&(o.updateQueue=u,o.flags|=4),cl(w,!0),w.tail===null&&w.tailMode==="hidden"&&!E.alternate&&!D0)return wt(o),null}else 2*R0()-w.renderingStartTime>ti&&u!==1073741824&&(o.flags|=128,p=!0,cl(w,!1),o.lanes=4194304);w.isBackwards?(E.sibling=o.child,o.child=E):(u=w.last,u!==null?u.sibling=E:o.child=E,w.last=E)}return w.tail!==null?(o=w.tail,w.rendering=o,w.tail=o.sibling,w.renderingStartTime=R0(),o.sibling=null,u=V0.current,M0(V0,p?u&1|2:u&1),o):(wt(o),null);case 22:case 23:return fc(),p=o.memoizedState!==null,r!==null&&r.memoizedState!==null!==p&&(o.flags|=8192),p&&(o.mode&1)!==0?(un&1073741824)!==0&&(wt(o),o.subtreeFlags&6&&(o.flags|=8192)):wt(o),null;case 24:return null;case 25:return null}throw Error(n(156,o.tag))}function i7(r,o){switch(U2(o),o.tag){case 1:return qt(o.type)&&ha(),r=o.flags,r&65536?(o.flags=r&-65537|128,o):null;case 3:return c2(),L0(Gt),L0(Et),Pa(),r=o.flags,(r&65536)!==0&&(r&128)===0?(o.flags=r&-65537|128,o):null;case 5:return _a(o),null;case 13:if(L0(V0),r=o.memoizedState,r!==null&&r.dehydrated!==null){if(o.alternate===null)throw Error(n(340));ur()}return r=o.flags,r&65536?(o.flags=r&-65537|128,o):null;case 19:return L0(V0),null;case 4:return c2(),null;case 10:return wa(o.type._context),null;case 22:case 23:return fc(),null;case 24:return null;default:return null}}var Na=!1,I0=!1,Ot=typeof WeakSet=="function"?WeakSet:Set,Le=null;function Ji(r,o){var u=r.ref;if(u!==null)if(typeof u=="function")try{u(null)}catch(p){H0(r,o,p)}else u.current=null}function dl(r,o,u){try{u()}catch(p){H0(r,o,p)}}var Ed=!1;function o7(r,o){if(jo=Ul,r=_0(),Io(r)){if("selectionStart"in r)var u={start:r.selectionStart,end:r.selectionEnd};else e:{u=(u=r.ownerDocument)&&u.defaultView||window;var p=u.getSelection&&u.getSelection();if(p&&p.rangeCount!==0){u=p.anchorNode;var y=p.anchorOffset,w=p.focusNode;p=p.focusOffset;try{u.nodeType,w.nodeType}catch{u=null;break e}var E=0,B=-1,Z=-1,re=0,ye=0,we=r,ge=null;t:for(;;){for(var Ae;we!==u||y!==0&&we.nodeType!==3||(B=E+y),we!==w||p!==0&&we.nodeType!==3||(Z=E+p),we.nodeType===3&&(E+=we.nodeValue.length),(Ae=we.firstChild)!==null;)ge=we,we=Ae;for(;;){if(we===r)break t;if(ge===u&&++re===y&&(B=E),ge===w&&++ye===p&&(Z=E),(Ae=we.nextSibling)!==null)break;we=ge,ge=we.parentNode}we=Ae}u=B===-1||Z===-1?null:{start:B,end:Z}}else u=null}u=u||{start:0,end:0}}else u=null;for(z2={focusedElem:r,selectionRange:u},Ul=!1,Le=o;Le!==null;)if(o=Le,r=o.child,(o.subtreeFlags&1028)!==0&&r!==null)r.return=o,Le=r;else for(;Le!==null;){o=Le;try{var Re=o.alternate;if((o.flags&1024)!==0)switch(o.tag){case 0:case 11:case 15:break;case 1:if(Re!==null){var Ve=Re.memoizedProps,X0=Re.memoizedState,J=o.stateNode,K=J.getSnapshotBeforeUpdate(o.elementType===o.type?Ve:Sn(o.type,Ve),X0);J.__reactInternalSnapshotBeforeUpdate=K}break;case 3:var te=o.stateNode.containerInfo;te.nodeType===1?te.textContent="":te.nodeType===9&&te.documentElement&&te.removeChild(te.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(Ce){H0(o,o.return,Ce)}if(r=o.sibling,r!==null){r.return=o.return,Le=r;break}Le=o.return}return Re=Ed,Ed=!1,Re}function Or(r,o,u){var p=o.updateQueue;if(p=p!==null?p.lastEffect:null,p!==null){var y=p=p.next;do{if((y.tag&r)===r){var w=y.destroy;y.destroy=void 0,w!==void 0&&dl(o,u,w)}y=y.next}while(y!==p)}}function fl(r,o){if(o=o.updateQueue,o=o!==null?o.lastEffect:null,o!==null){var u=o=o.next;do{if((u.tag&r)===r){var p=u.create;u.destroy=p()}u=u.next}while(u!==o)}}function Ha(r){var o=r.ref;if(o!==null){var u=r.stateNode;switch(r.tag){case 5:r=u;break;default:r=u}typeof o=="function"?o(r):o.current=r}}function kd(r){var o=r.alternate;o!==null&&(r.alternate=null,kd(o)),r.child=null,r.deletions=null,r.sibling=null,r.tag===5&&(o=r.stateNode,o!==null&&(delete o[ir],delete o[o2],delete o[pa],delete o[M],delete o[Fi])),r.stateNode=null,r.return=null,r.dependencies=null,r.memoizedProps=null,r.memoizedState=null,r.pendingProps=null,r.stateNode=null,r.updateQueue=null}function Td(r){return r.tag===5||r.tag===3||r.tag===4}function Md(r){e:for(;;){for(;r.sibling===null;){if(r.return===null||Td(r.return))return null;r=r.return}for(r.sibling.return=r.return,r=r.sibling;r.tag!==5&&r.tag!==6&&r.tag!==18;){if(r.flags&2||r.child===null||r.tag===4)continue e;r.child.return=r,r=r.child}if(!(r.flags&2))return r.stateNode}}function tc(r,o,u){var p=r.tag;if(p===5||p===6)r=r.stateNode,o?u.nodeType===8?u.parentNode.insertBefore(r,o):u.insertBefore(r,o):(u.nodeType===8?(o=u.parentNode,o.insertBefore(r,u)):(o=u,o.appendChild(r)),u=u._reactRootContainer,u!=null||o.onclick!==null||(o.onclick=da));else if(p!==4&&(r=r.child,r!==null))for(tc(r,o,u),r=r.sibling;r!==null;)tc(r,o,u),r=r.sibling}function za(r,o,u){var p=r.tag;if(p===5||p===6)r=r.stateNode,o?u.insertBefore(r,o):u.appendChild(r);else if(p!==4&&(r=r.child,r!==null))for(za(r,o,u),r=r.sibling;r!==null;)za(r,o,u),r=r.sibling}var pt=null,On=!1;function mr(r,o,u){for(u=u.child;u!==null;)nc(r,o,u),u=u.sibling}function nc(r,o,u){if(tr&&typeof tr.onCommitFiberUnmount=="function")try{tr.onCommitFiberUnmount(Nl,u)}catch{}switch(u.tag){case 5:I0||Ji(u,o);case 6:var p=pt,y=On;pt=null,mr(r,o,u),pt=p,On=y,pt!==null&&(On?(r=pt,u=u.stateNode,r.nodeType===8?r.parentNode.removeChild(u):r.removeChild(u)):pt.removeChild(u.stateNode));break;case 18:pt!==null&&(On?(r=pt,u=u.stateNode,r.nodeType===8?Cu(r.parentNode,u):r.nodeType===1&&Cu(r,u),x0(r)):Cu(pt,u.stateNode));break;case 4:p=pt,y=On,pt=u.stateNode.containerInfo,On=!0,mr(r,o,u),pt=p,On=y;break;case 0:case 11:case 14:case 15:if(!I0&&(p=u.updateQueue,p!==null&&(p=p.lastEffect,p!==null))){y=p=p.next;do{var w=y,E=w.destroy;w=w.tag,E!==void 0&&((w&2)!==0||(w&4)!==0)&&dl(u,o,E),y=y.next}while(y!==p)}mr(r,o,u);break;case 1:if(!I0&&(Ji(u,o),p=u.stateNode,typeof p.componentWillUnmount=="function"))try{p.props=u.memoizedProps,p.state=u.memoizedState,p.componentWillUnmount()}catch(B){H0(u,o,B)}mr(r,o,u);break;case 21:mr(r,o,u);break;case 22:u.mode&1?(I0=(p=I0)||u.memoizedState!==null,mr(r,o,u),I0=p):mr(r,o,u);break;default:mr(r,o,u)}}function eo(r){var o=r.updateQueue;if(o!==null){r.updateQueue=null;var u=r.stateNode;u===null&&(u=r.stateNode=new Ot),o.forEach(function(p){var y=f7.bind(null,r,p);u.has(p)||(u.add(p),p.then(y,y))})}}function sn(r,o){var u=o.deletions;if(u!==null)for(var p=0;py&&(y=E),p&=~w}if(p=y,p=R0()-p,p=(120>p?120:480>p?480:1080>p?1080:1920>p?1920:3e3>p?3e3:4320>p?4320:1960*Ld(p/1960))-p,10r?16:r,m2===null)var p=!1;else{if(r=m2,m2=null,Nt=0,(f0&6)!==0)throw Error(n(331));var y=f0;for(f0|=4,Le=r.current;Le!==null;){var w=Le,E=w.child;if((Le.flags&16)!==0){var B=w.deletions;if(B!==null){for(var Z=0;ZR0()-lc?ri(r,0):Wa|=u),Jt(r,o)}function Fd(r,o){o===0&&((r.mode&1)===0?o=1:(o=Hl,Hl<<=1,(Hl&130023424)===0&&(Hl=4194304)));var u=Ht();r=Rr(r,o),r!==null&&(Ao(r,o,u),Jt(r,u))}function d7(r){var o=r.memoizedState,u=0;o!==null&&(u=o.retryLane),Fd(r,u)}function f7(r,o){var u=0;switch(r.tag){case 13:var p=r.stateNode,y=r.memoizedState;y!==null&&(u=y.retryLane);break;case 19:p=r.stateNode;break;default:throw Error(n(314))}p!==null&&p.delete(o),Fd(r,u)}var Zd;Zd=function(r,o,u){if(r!==null)if(r.memoizedProps!==o.pendingProps||Gt.current)Zt=!0;else{if((r.lanes&u)===0&&(o.flags&128)===0)return Zt=!1,_d(r,o,u);Zt=(r.flags&131072)!==0}else Zt=!1,D0&&(o.flags&1048576)!==0&&ud(o,ya,o.index);switch(o.lanes=0,o.tag){case 2:var p=o.type;Oa(r,o),r=o.pendingProps;var y=Oi(o,Et.current);u2(o,u),y=Q2(null,o,p,r,y,u);var w=Ea();return o.flags|=1,typeof y=="object"&&y!==null&&typeof y.render=="function"&&y.$$typeof===void 0?(o.tag=1,o.memoizedState=null,o.updateQueue=null,qt(p)?(w=!0,mn(o)):w=!1,o.memoizedState=y.state!==null&&y.state!==void 0?y.state:null,Sa(o),y.updater=Ba,o.stateNode=y,y._reactInternals=o,Ku(o,p,r,u),o=Qu(null,o,p,!0,w,u)):(o.tag=0,D0&&w&&Uo(o),bt(null,o,y,u),o=o.child),o;case 16:p=o.elementType;e:{switch(Oa(r,o),r=o.pendingProps,y=p._init,p=y(p._payload),o.type=p,y=o.tag=v7(p),r=Sn(p,r),y){case 0:o=Yu(null,o,p,r,u);break e;case 1:o=Xu(null,o,p,r,u);break e;case 11:o=Sd(null,o,p,r,u);break e;case 14:o=Uu(null,o,p,Sn(p.type,r),u);break e}throw Error(n(306,p,""))}return o;case 0:return p=o.type,y=o.pendingProps,y=o.elementType===p?y:Sn(p,y),Yu(r,o,p,y,u);case 1:return p=o.type,y=o.pendingProps,y=o.elementType===p?y:Sn(p,y),Xu(r,o,p,y,u);case 3:e:{if(Cd(o),r===null)throw Error(n(387));p=o.pendingProps,w=o.memoizedState,y=w.element,pd(r,o),zi(o,p,null,u);var E=o.memoizedState;if(p=E.element,w.isDehydrated)if(w={element:p,isDehydrated:!1,cache:E.cache,pendingSuspenseBoundaries:E.pendingSuspenseBoundaries,transitions:E.transitions},o.updateQueue.baseState=w,o.memoizedState=w,o.flags&256){y=ei(Error(n(423)),o),o=hr(r,o,p,u,y);break e}else if(p!==y){y=ei(Error(n(424)),o),o=hr(r,o,p,u,y);break e}else for(ln=i2(o.stateNode.containerInfo.firstChild),Tt=o,D0=!0,In=null,u=xa(o,null,p,u),o.child=u;u;)u.flags=u.flags&-3|4096,u=u.sibling;else{if(ur(),p===y){o=Zn(r,o,u);break e}bt(r,o,p,u)}o=o.child}return o;case 5:return Lu(o),r===null&&Yt(o),p=o.type,y=o.pendingProps,w=r!==null?r.memoizedProps:null,E=y.children,Ko(p,y)?E=null:w!==null&&Ko(p,w)&&(o.flags|=32),qu(r,o),bt(r,o,E,u),o.child;case 6:return r===null&&Yt(o),null;case 13:return Za(r,o,u);case 4:return Au(o,o.stateNode.containerInfo),p=o.pendingProps,r===null?o.child=U0(o,null,p,u):bt(r,o,p,u),o.child;case 11:return p=o.type,y=o.pendingProps,y=o.elementType===p?y:Sn(p,y),Sd(r,o,p,y,u);case 7:return bt(r,o,o.pendingProps,u),o.child;case 8:return bt(r,o,o.pendingProps.children,u),o.child;case 12:return bt(r,o,o.pendingProps.children,u),o.child;case 10:e:{if(p=o.type._context,y=o.pendingProps,w=o.memoizedProps,E=y.value,M0(Yo,p._currentValue),p._currentValue=E,w!==null)if(ne(w.value,E)){if(w.children===y.children&&!Gt.current){o=Zn(r,o,u);break e}}else for(w=o.child,w!==null&&(w.return=o);w!==null;){var B=w.dependencies;if(B!==null){E=w.child;for(var Z=B.firstContext;Z!==null;){if(Z.context===p){if(w.tag===1){Z=Br(-1,u&-u),Z.tag=2;var re=w.updateQueue;if(re!==null){re=re.shared;var ye=re.pending;ye===null?Z.next=Z:(Z.next=ye.next,ye.next=Z),re.pending=Z}}w.lanes|=u,Z=w.alternate,Z!==null&&(Z.lanes|=u),yt(w.return,u,o),B.lanes|=u;break}Z=Z.next}}else if(w.tag===10)E=w.type===o.type?null:w.child;else if(w.tag===18){if(E=w.return,E===null)throw Error(n(341));E.lanes|=u,B=E.alternate,B!==null&&(B.lanes|=u),yt(E,u,o),E=w.sibling}else E=w.child;if(E!==null)E.return=w;else for(E=w;E!==null;){if(E===o){E=null;break}if(w=E.sibling,w!==null){w.return=E.return,E=w;break}E=E.return}w=E}bt(r,o,y.children,u),o=o.child}return o;case 9:return y=o.type,p=o.pendingProps.children,u2(o,u),y=bn(y),p=p(y),o.flags|=1,bt(r,o,p,u),o.child;case 14:return p=o.type,y=Sn(p,o.pendingProps),y=Sn(p.type,y),Uu(r,o,p,y,u);case 15:return vr(r,o,o.type,o.pendingProps,u);case 17:return p=o.type,y=o.pendingProps,y=o.elementType===p?y:Sn(p,y),Oa(r,o),o.tag=1,qt(p)?(r=!0,mn(o)):r=!1,u2(o,u),J2(o,p,y),Ku(o,p,y,u),Qu(null,o,p,!0,r,u);case 19:return f2(r,o,u);case 22:return Gu(r,o,u)}throw Error(n(156,o.tag))};function Od(r,o){return C1(r,o)}function p7(r,o,u,p){this.tag=r,this.key=u,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=o,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=p,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function _n(r,o,u,p){return new p7(r,o,u,p)}function Ja(r){return r=r.prototype,!(!r||!r.isReactComponent)}function v7(r){if(typeof r=="function")return Ja(r)?1:0;if(r!=null){if(r=r.$$typeof,r===xe)return 11;if(r===he)return 14}return 2}function jn(r,o){var u=r.alternate;return u===null?(u=_n(r.tag,o,r.key,r.mode),u.elementType=r.elementType,u.type=r.type,u.stateNode=r.stateNode,u.alternate=r,r.alternate=u):(u.pendingProps=o,u.type=r.type,u.flags=0,u.subtreeFlags=0,u.deletions=null),u.flags=r.flags&14680064,u.childLanes=r.childLanes,u.lanes=r.lanes,u.child=r.child,u.memoizedProps=r.memoizedProps,u.memoizedState=r.memoizedState,u.updateQueue=r.updateQueue,o=r.dependencies,u.dependencies=o===null?null:{lanes:o.lanes,firstContext:o.firstContext},u.sibling=r.sibling,u.index=r.index,u.ref=r.ref,u}function es(r,o,u,p,y,w){var E=2;if(p=r,typeof r=="function")Ja(r)&&(E=1);else if(typeof r=="string")E=5;else e:switch(r){case le:return oi(u.children,y,w,o);case D:E=8,y|=8;break;case ie:return r=_n(12,u,o,y|2),r.elementType=ie,r.lanes=w,r;case G:return r=_n(13,u,o,y),r.elementType=G,r.lanes=w,r;case Q:return r=_n(19,u,o,y),r.elementType=Q,r.lanes=w,r;case se:return ts(u,y,w,o);default:if(typeof r=="object"&&r!==null)switch(r.$$typeof){case j:E=10;break e;case X:E=9;break e;case xe:E=11;break e;case he:E=14;break e;case _e:E=16,p=null;break e}throw Error(n(130,r==null?r:typeof r,""))}return o=_n(E,u,o,y),o.elementType=r,o.type=p,o.lanes=w,o}function oi(r,o,u,p){return r=_n(7,r,p,o),r.lanes=u,r}function ts(r,o,u,p){return r=_n(22,r,p,o),r.elementType=se,r.lanes=u,r.stateNode={isHidden:!1},r}function vc(r,o,u){return r=_n(6,r,null,o),r.lanes=u,r}function hc(r,o,u){return o=_n(4,r.children!==null?r.children:[],r.key,o),o.lanes=u,o.stateNode={containerInfo:r.containerInfo,pendingChildren:null,implementation:r.implementation},o}function h7(r,o,u,p,y){this.tag=o,this.containerInfo=r,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Mo(0),this.expirationTimes=Mo(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Mo(0),this.identifierPrefix=p,this.onRecoverableError=y,this.mutableSourceEagerHydrationData=null}function mc(r,o,u,p,y,w,E,B,Z){return r=new h7(r,o,u,B,Z),o===1?(o=1,w===!0&&(o|=8)):o=0,w=_n(3,null,null,o),r.current=w,w.stateNode=r,w.memoizedState={element:p,isDehydrated:u,cache:null,transitions:null,pendingSuspenseBoundaries:null},Sa(w),r}function m7(r,o,u){var p=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),B7.exports=HC(),B7.exports}var Dh;function zC(){if(Dh)return qd;Dh=1;var t=$m();return qd.createRoot=t.createRoot,qd.hydrateRoot=t.hydrateRoot,qd}var jC=zC();const KC=t1(jC);function WC(t,e){typeof t=="function"?t(e):t!=null&&(t.current=e)}function UC(...t){return e=>t.forEach(n=>WC(n,e))}var n1=x.forwardRef((t,e)=>{const{children:n,...i}=t,a=x.Children.toArray(n),c=a.find(qC);if(c){const d=c.props.children,f=a.map(v=>v===c?x.Children.count(d)>1?x.Children.only(null):x.isValidElement(d)?d.props.children:null:v);return k.jsx(I3,{...i,ref:e,children:x.isValidElement(d)?x.cloneElement(d,void 0,f):null})}return k.jsx(I3,{...i,ref:e,children:n})});n1.displayName="Slot";var I3=x.forwardRef((t,e)=>{const{children:n,...i}=t;if(x.isValidElement(n)){const a=XC(n);return x.cloneElement(n,{...YC(i,n.props),ref:e?UC(e,a):a})}return x.Children.count(n)>1?x.Children.only(null):null});I3.displayName="SlotClone";var GC=({children:t})=>k.jsx(k.Fragment,{children:t});function qC(t){return x.isValidElement(t)&&t.type===GC}function YC(t,e){const n={...e};for(const i in e){const a=t[i],c=e[i];/^on[A-Z]/.test(i)?a&&c?n[i]=(...f)=>{c(...f),a(...f)}:a&&(n[i]=a):i==="style"?n[i]={...a,...c}:i==="className"&&(n[i]=[a,c].filter(Boolean).join(" "))}return{...t,...n}}function XC(t){var i,a;let e=(i=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:i.get,n=e&&"isReactWarning"in e&&e.isReactWarning;return n?t.ref:(e=(a=Object.getOwnPropertyDescriptor(t,"ref"))==null?void 0:a.get,n=e&&"isReactWarning"in e&&e.isReactWarning,n?t.props.ref:t.props.ref||t.ref)}function ft(){let t,e="",n=0;for(;n{const{icon:n,children:i,className:a,size:c,fit:d,kind:f="default",isLoading:v=!1,loadingText:m,renderIconFirst:g=!1,disabled:b=!1,asChild:S=!1,onKeyDown:C,onClick:P,type:T="button","data-test-id":A="button",...V}=t,R=S?n1:"button",F=ft(Sr.Button,Sr[`Button--${f}`],c&&Sr[`Button--${c}`],d&&Sr["Button--fit"],a),N=()=>{let X="small";return c==="big"&&(X="medium"),X},z=n&&x.cloneElement(n,{key:"icon",size:N(),"aria-hidden":!0,className:ft(n.props.className,Sr["Button-icon"])}),U=X=>[g&&z,v&&k.jsx("span",{children:m||X},"text"),!v&&X&&k.jsx("span",{children:X},"text"),!g&&z,v&&k.jsx("span",{children:"…"},"spinner")],le=()=>S&&x.isValidElement(i)?x.cloneElement(i,void 0,U(i.props.children)):U(i),D=b||v,ie=X=>{if(b)return X.preventDefault();P==null||P(X)},j=X=>{X.target instanceof HTMLAnchorElement&&["Spacebar"," "].includes(X.key)&&(X.preventDefault(),X.target.click())};return k.jsx(R,{className:F,ref:e,onClick:ie,onKeyDown:C||j,disabled:D,type:S?void 0:T,"data-test-id":A,...V,children:le()})});Sm.displayName="Button";const Rh=x.memo(Sm),e_=({spacing:t="normal",className:e,children:n,"data-test-id":i="button-group",...a})=>{const c=ft(Sr.ButtonGroup,Sr[`ButtonGroup--${t}`],e);return k.jsx("div",{className:c,"data-test-id":i,...a,children:n})},Cm=x.forwardRef((t,e)=>{const{icon:n,children:i,className:a,size:c="medium",kind:d="minimal",disabled:f=!1,asChild:v=!1,onKeyDown:m,onClick:g,type:b="button","data-test-id":S="icon-button",...C}=t,P=v?n1:"button",T=ft(Sr.IconButton,Sr.Button,Sr["Button--icon"],Sr[`Button--${d}`],c&&Sr[`Button--${c}`],a),A=()=>t.size==="small"?"small":"medium",V=x.cloneElement(n,{key:"icon",size:A(),"aria-hidden":!0,className:ft(n.props.className,"Button-icon")}),R=()=>v&&x.isValidElement(i)?x.cloneElement(i,void 0,V):V,F=z=>{if(f)return z.preventDefault();g==null||g(z)},N=z=>{z.target instanceof HTMLAnchorElement&&["Spacebar"," "].includes(z.key)&&(z.preventDefault(),z.target.click())};return k.jsx(P,{className:T,ref:e,onClick:F,disabled:f,onKeyDown:m||N,type:b,"data-test-id":S,...C,children:R()})});Cm.displayName="IconButton";const _m=x.memo(Cm),Pm=x.createContext({path:void 0}),t_="kck8EW_cyanToBlue",n_="kck8EW_cyanToPurple",r_="kck8EW_flairIcon",i_="kck8EW_flairIconContainer",o_="kck8EW_huge",l_="kck8EW_icon",a_="kck8EW_isRounded",s_="kck8EW_large",u_="kck8EW_medium",c_="kck8EW_micro",d_="kck8EW_mlarge",f_="kck8EW_pinkToPurple",p_="kck8EW_purpleToBlue",v_="kck8EW_small",h_="kck8EW_subtle",m_="kck8EW_tiny",g_="kck8EW_xlarge",y_="kck8EW_yellowToCyan",F7={cyanToBlue:t_,cyanToPurple:n_,flairIcon:r_,flairIconContainer:i_,huge:o_,icon:l_,isRounded:a_,large:s_,medium:u_,micro:c_,mlarge:d_,pinkToPurple:f_,purpleToBlue:p_,small:v_,subtle:h_,tiny:m_,xlarge:g_,yellowToCyan:y_},K0=({name:t,subtle:e,className:n,size:i,children:a,"data-test-id":c="icon","aria-label":d,"aria-labelledby":f,"aria-hidden":v,title:m,description:g,focusable:b=!1,role:S="img",...C})=>{const P=i?F7[i]:!1,T=ft(F7.icon,P,e&&F7.subtle,`icon-${t}`,n),A=`svg-${x.useId()}`,V=v??(!f&&!d),R=m&&`${A}-${t}-title`,F=g&&`${A}-${t}-description`,{path:N}=x.useContext(Pm),z=`lp-icon-${t}`,U=N===void 0?"/static/sprite.svg":N;return k.jsx("span",{"data-test-id":c,className:T,children:k.jsxs("svg",{"aria-hidden":V,"aria-label":d,"aria-labelledby":R||f,"aria-describedby":F,focusable:b,role:S,...C,children:[m&&k.jsx("title",{id:R,children:m}),g&&k.jsx("desc",{id:F,children:g}),k.jsx("use",{href:`${U}#${z}`})]})})},Em=({kind:t,size:e="medium",...n})=>{let i,a="";switch(t){case"success":i="check-circle",a="Success";break;case"warning":i="warning",a="Warning";break;case"error":i="alert-rhombus",a="Error";break;case"info":i="info-circle",a="Info";break;case"notification":i="notifications",a="Notification";break}return k.jsx(K0,{"aria-label":`${a} icon`,role:"img",size:e,...n,name:i})};function yo(t,e,n){let[i,a]=x.useState(t||e),c=x.useRef(t!==void 0),d=t!==void 0;x.useEffect(()=>{let m=c.current;m!==d&&console.warn(`WARN: A component changed from ${m?"controlled":"uncontrolled"} to ${d?"controlled":"uncontrolled"}.`),c.current=d},[d]);let f=d?t:i,v=x.useCallback((m,...g)=>{let b=(S,...C)=>{n&&(Object.is(f,S)||n(S,...C)),d||(f=S)};typeof m=="function"?(console.warn("We can not support a function callback. See Github Issues for details https://github.com/adobe/react-spectrum/issues/2320"),a((C,...P)=>{let T=m(d?f:C,...P);return b(T,...g),d?C:T})):(d||a(m),b(m,...g))},[d,f,n]);return[f,v]}function Nc(t,e=-1/0,n=1/0){return Math.min(Math.max(t,e),n)}const b_="BwAiTW_Alert",x_="BwAiTW_LinkButton",w_="BwAiTW_PrimaryButton",Mn={Alert:b_,"Alert--bordered":"BwAiTW_Alert--bordered","Alert--compact":"BwAiTW_Alert--compact","Alert--error":"BwAiTW_Alert--error","Alert--flair-default":"BwAiTW_Alert--flair-default","Alert--flair-strong":"BwAiTW_Alert--flair-strong","Alert--info":"BwAiTW_Alert--info","Alert--inline":"BwAiTW_Alert--inline","Alert--notification":"BwAiTW_Alert--notification","Alert--small":"BwAiTW_Alert--small","Alert--success":"BwAiTW_Alert--success","Alert--warning":"BwAiTW_Alert--warning","Alert--wide":"BwAiTW_Alert--wide","Alert-close":"BwAiTW_Alert-close","Alert-content":"BwAiTW_Alert-content","Alert-heading":"BwAiTW_Alert-heading","Alert-icon":"BwAiTW_Alert-icon",LinkButton:x_,PrimaryButton:w_},km=({children:t,className:e,compact:n,isInline:i,kind:a="info",flairLevel:c="default",size:d="medium",wide:f,dismissible:v,onDismiss:m,noIcon:g,header:b,dismissed:S,"data-test-id":C="alert",primaryButton:P,link:T,...A})=>{const[V,R]=yo(S,!1,le=>le&&m?m():null),F=`${Mn.Alert} ${Mn[`Alert--${a}`]}`,N=d==="small"&&Mn[`Alert--${d}`],z=a==="notification"&&Mn[`Alert--flair-${c}`],U=ft(F,e,i?Mn["Alert--inline"]:Mn["Alert--bordered"],N,n&&Mn["Alert--compact"],f&&Mn["Alert--wide"],z);return V?null:k.jsxs("div",{...A,className:U,"data-test-id":C,role:["info","success","notification"].includes(a)?"status":"alert",children:[!g&&k.jsx(Em,{kind:a,className:Mn["Alert-icon"],size:d,"data-test-id":`${C}-status-icon`}),k.jsxs("div",{className:Mn["Alert-content"],children:[b&&k.jsx("h4",{className:Mn["Alert-heading"],"data-test-id":`${C}-header`,children:b}),k.jsxs("div",{children:[k.jsx("div",{children:t}),(P||T)&&k.jsxs(e_,{children:[P&&k.jsx(Rh,{...P,kind:P.kind||(c==="strong"||a!=="notification"?"default":"defaultFlair"),className:ft(P.className,Mn.PrimaryButton)}),T&&k.jsx(Rh,{kind:"link",asChild:!0,onClick:T==null?void 0:T.onClick,className:Mn.LinkButton,icon:k.jsx(K0,{name:"link-external",size:"small"}),children:k.jsx("a",{href:T.href,children:T.text})})]})]})]}),v&&k.jsx(_m,{"aria-label":"Close this alert.",size:"small",className:Mn["Alert-close"],icon:k.jsx(K0,{name:"cancel",size:"small"}),kind:"close",onClick:()=>R(!0),"data-test-id":`${C}-dismiss-button`})]})};function $_(t){var e=t.match(/^var\((.*)\)$/);return e?e[1]:t}function S_(t,e){var n={};{var i=t;for(var a in i){var c=i[a];c!=null&&(n[$_(a)]=c)}}return Object.defineProperty(n,"toString",{value:function(){return Object.keys(this).map(f=>"".concat(f,":").concat(this[f])).join(";")},writable:!1}),n}function F3(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,i=new Array(e);n<\/script>",r=r.removeChild(r.firstChild)):typeof p.is=="string"?r=E.createElement(u,{is:p.is}):(r=E.createElement(u),u==="select"&&(E=r,p.multiple?E.multiple=!0:p.size&&(E.size=p.size))):r=E.createElementNS(r,u),r[ir]=o,r[i2]=p,xt(r,o,!1,!1),o.stateNode=r;e:{switch(E=Ur(u,p),u){case"dialog":A0("cancel",r),A0("close",r),y=p;break;case"iframe":case"object":case"embed":A0("load",r),y=p;break;case"video":case"audio":for(y=0;yti&&(o.flags|=128,p=!0,cl(w,!1),o.lanes=4194304)}else{if(!p)if(r=Y2(E),r!==null){if(o.flags|=128,p=!0,u=r.updateQueue,u!==null&&(o.updateQueue=u,o.flags|=4),cl(w,!0),w.tail===null&&w.tailMode==="hidden"&&!E.alternate&&!D0)return wt(o),null}else 2*R0()-w.renderingStartTime>ti&&u!==1073741824&&(o.flags|=128,p=!0,cl(w,!1),o.lanes=4194304);w.isBackwards?(E.sibling=o.child,o.child=E):(u=w.last,u!==null?u.sibling=E:o.child=E,w.last=E)}return w.tail!==null?(o=w.tail,w.rendering=o,w.tail=o.sibling,w.renderingStartTime=R0(),o.sibling=null,u=V0.current,M0(V0,p?u&1|2:u&1),o):(wt(o),null);case 22:case 23:return fc(),p=o.memoizedState!==null,r!==null&&r.memoizedState!==null!==p&&(o.flags|=8192),p&&(o.mode&1)!==0?(un&1073741824)!==0&&(wt(o),o.subtreeFlags&6&&(o.flags|=8192)):wt(o),null;case 24:return null;case 25:return null}throw Error(n(156,o.tag))}function i7(r,o){switch(U2(o),o.tag){case 1:return qt(o.type)&&ha(),r=o.flags,r&65536?(o.flags=r&-65537|128,o):null;case 3:return u2(),L0(Gt),L0(Et),Pa(),r=o.flags,(r&65536)!==0&&(r&128)===0?(o.flags=r&-65537|128,o):null;case 5:return _a(o),null;case 13:if(L0(V0),r=o.memoizedState,r!==null&&r.dehydrated!==null){if(o.alternate===null)throw Error(n(340));ur()}return r=o.flags,r&65536?(o.flags=r&-65537|128,o):null;case 19:return L0(V0),null;case 4:return u2(),null;case 10:return wa(o.type._context),null;case 22:case 23:return fc(),null;case 24:return null;default:return null}}var Na=!1,I0=!1,Ot=typeof WeakSet=="function"?WeakSet:Set,Le=null;function Ji(r,o){var u=r.ref;if(u!==null)if(typeof u=="function")try{u(null)}catch(p){H0(r,o,p)}else u.current=null}function dl(r,o,u){try{u()}catch(p){H0(r,o,p)}}var Ed=!1;function o7(r,o){if(jo=Ul,r=_0(),Io(r)){if("selectionStart"in r)var u={start:r.selectionStart,end:r.selectionEnd};else e:{u=(u=r.ownerDocument)&&u.defaultView||window;var p=u.getSelection&&u.getSelection();if(p&&p.rangeCount!==0){u=p.anchorNode;var y=p.anchorOffset,w=p.focusNode;p=p.focusOffset;try{u.nodeType,w.nodeType}catch{u=null;break e}var E=0,B=-1,Z=-1,re=0,ye=0,we=r,ge=null;t:for(;;){for(var Ae;we!==u||y!==0&&we.nodeType!==3||(B=E+y),we!==w||p!==0&&we.nodeType!==3||(Z=E+p),we.nodeType===3&&(E+=we.nodeValue.length),(Ae=we.firstChild)!==null;)ge=we,we=Ae;for(;;){if(we===r)break t;if(ge===u&&++re===y&&(B=E),ge===w&&++ye===p&&(Z=E),(Ae=we.nextSibling)!==null)break;we=ge,ge=we.parentNode}we=Ae}u=B===-1||Z===-1?null:{start:B,end:Z}}else u=null}u=u||{start:0,end:0}}else u=null;for(z2={focusedElem:r,selectionRange:u},Ul=!1,Le=o;Le!==null;)if(o=Le,r=o.child,(o.subtreeFlags&1028)!==0&&r!==null)r.return=o,Le=r;else for(;Le!==null;){o=Le;try{var Re=o.alternate;if((o.flags&1024)!==0)switch(o.tag){case 0:case 11:case 15:break;case 1:if(Re!==null){var Ve=Re.memoizedProps,X0=Re.memoizedState,J=o.stateNode,K=J.getSnapshotBeforeUpdate(o.elementType===o.type?Ve:Sn(o.type,Ve),X0);J.__reactInternalSnapshotBeforeUpdate=K}break;case 3:var te=o.stateNode.containerInfo;te.nodeType===1?te.textContent="":te.nodeType===9&&te.documentElement&&te.removeChild(te.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(Ce){H0(o,o.return,Ce)}if(r=o.sibling,r!==null){r.return=o.return,Le=r;break}Le=o.return}return Re=Ed,Ed=!1,Re}function Or(r,o,u){var p=o.updateQueue;if(p=p!==null?p.lastEffect:null,p!==null){var y=p=p.next;do{if((y.tag&r)===r){var w=y.destroy;y.destroy=void 0,w!==void 0&&dl(o,u,w)}y=y.next}while(y!==p)}}function fl(r,o){if(o=o.updateQueue,o=o!==null?o.lastEffect:null,o!==null){var u=o=o.next;do{if((u.tag&r)===r){var p=u.create;u.destroy=p()}u=u.next}while(u!==o)}}function Ha(r){var o=r.ref;if(o!==null){var u=r.stateNode;switch(r.tag){case 5:r=u;break;default:r=u}typeof o=="function"?o(r):o.current=r}}function kd(r){var o=r.alternate;o!==null&&(r.alternate=null,kd(o)),r.child=null,r.deletions=null,r.sibling=null,r.tag===5&&(o=r.stateNode,o!==null&&(delete o[ir],delete o[i2],delete o[pa],delete o[M],delete o[Fi])),r.stateNode=null,r.return=null,r.dependencies=null,r.memoizedProps=null,r.memoizedState=null,r.pendingProps=null,r.stateNode=null,r.updateQueue=null}function Td(r){return r.tag===5||r.tag===3||r.tag===4}function Md(r){e:for(;;){for(;r.sibling===null;){if(r.return===null||Td(r.return))return null;r=r.return}for(r.sibling.return=r.return,r=r.sibling;r.tag!==5&&r.tag!==6&&r.tag!==18;){if(r.flags&2||r.child===null||r.tag===4)continue e;r.child.return=r,r=r.child}if(!(r.flags&2))return r.stateNode}}function tc(r,o,u){var p=r.tag;if(p===5||p===6)r=r.stateNode,o?u.nodeType===8?u.parentNode.insertBefore(r,o):u.insertBefore(r,o):(u.nodeType===8?(o=u.parentNode,o.insertBefore(r,u)):(o=u,o.appendChild(r)),u=u._reactRootContainer,u!=null||o.onclick!==null||(o.onclick=da));else if(p!==4&&(r=r.child,r!==null))for(tc(r,o,u),r=r.sibling;r!==null;)tc(r,o,u),r=r.sibling}function za(r,o,u){var p=r.tag;if(p===5||p===6)r=r.stateNode,o?u.insertBefore(r,o):u.appendChild(r);else if(p!==4&&(r=r.child,r!==null))for(za(r,o,u),r=r.sibling;r!==null;)za(r,o,u),r=r.sibling}var pt=null,On=!1;function mr(r,o,u){for(u=u.child;u!==null;)nc(r,o,u),u=u.sibling}function nc(r,o,u){if(tr&&typeof tr.onCommitFiberUnmount=="function")try{tr.onCommitFiberUnmount(Nl,u)}catch{}switch(u.tag){case 5:I0||Ji(u,o);case 6:var p=pt,y=On;pt=null,mr(r,o,u),pt=p,On=y,pt!==null&&(On?(r=pt,u=u.stateNode,r.nodeType===8?r.parentNode.removeChild(u):r.removeChild(u)):pt.removeChild(u.stateNode));break;case 18:pt!==null&&(On?(r=pt,u=u.stateNode,r.nodeType===8?Cu(r.parentNode,u):r.nodeType===1&&Cu(r,u),x0(r)):Cu(pt,u.stateNode));break;case 4:p=pt,y=On,pt=u.stateNode.containerInfo,On=!0,mr(r,o,u),pt=p,On=y;break;case 0:case 11:case 14:case 15:if(!I0&&(p=u.updateQueue,p!==null&&(p=p.lastEffect,p!==null))){y=p=p.next;do{var w=y,E=w.destroy;w=w.tag,E!==void 0&&((w&2)!==0||(w&4)!==0)&&dl(u,o,E),y=y.next}while(y!==p)}mr(r,o,u);break;case 1:if(!I0&&(Ji(u,o),p=u.stateNode,typeof p.componentWillUnmount=="function"))try{p.props=u.memoizedProps,p.state=u.memoizedState,p.componentWillUnmount()}catch(B){H0(u,o,B)}mr(r,o,u);break;case 21:mr(r,o,u);break;case 22:u.mode&1?(I0=(p=I0)||u.memoizedState!==null,mr(r,o,u),I0=p):mr(r,o,u);break;default:mr(r,o,u)}}function eo(r){var o=r.updateQueue;if(o!==null){r.updateQueue=null;var u=r.stateNode;u===null&&(u=r.stateNode=new Ot),o.forEach(function(p){var y=f7.bind(null,r,p);u.has(p)||(u.add(p),p.then(y,y))})}}function sn(r,o){var u=o.deletions;if(u!==null)for(var p=0;py&&(y=E),p&=~w}if(p=y,p=R0()-p,p=(120>p?120:480>p?480:1080>p?1080:1920>p?1920:3e3>p?3e3:4320>p?4320:1960*Ld(p/1960))-p,10r?16:r,h2===null)var p=!1;else{if(r=h2,h2=null,Nt=0,(f0&6)!==0)throw Error(n(331));var y=f0;for(f0|=4,Le=r.current;Le!==null;){var w=Le,E=w.child;if((Le.flags&16)!==0){var B=w.deletions;if(B!==null){for(var Z=0;ZR0()-lc?ri(r,0):Wa|=u),Jt(r,o)}function Fd(r,o){o===0&&((r.mode&1)===0?o=1:(o=Hl,Hl<<=1,(Hl&130023424)===0&&(Hl=4194304)));var u=Ht();r=Rr(r,o),r!==null&&(Ao(r,o,u),Jt(r,u))}function d7(r){var o=r.memoizedState,u=0;o!==null&&(u=o.retryLane),Fd(r,u)}function f7(r,o){var u=0;switch(r.tag){case 13:var p=r.stateNode,y=r.memoizedState;y!==null&&(u=y.retryLane);break;case 19:p=r.stateNode;break;default:throw Error(n(314))}p!==null&&p.delete(o),Fd(r,u)}var Zd;Zd=function(r,o,u){if(r!==null)if(r.memoizedProps!==o.pendingProps||Gt.current)Zt=!0;else{if((r.lanes&u)===0&&(o.flags&128)===0)return Zt=!1,_d(r,o,u);Zt=(r.flags&131072)!==0}else Zt=!1,D0&&(o.flags&1048576)!==0&&ud(o,ya,o.index);switch(o.lanes=0,o.tag){case 2:var p=o.type;Oa(r,o),r=o.pendingProps;var y=Oi(o,Et.current);s2(o,u),y=Q2(null,o,p,r,y,u);var w=Ea();return o.flags|=1,typeof y=="object"&&y!==null&&typeof y.render=="function"&&y.$$typeof===void 0?(o.tag=1,o.memoizedState=null,o.updateQueue=null,qt(p)?(w=!0,mn(o)):w=!1,o.memoizedState=y.state!==null&&y.state!==void 0?y.state:null,Sa(o),y.updater=Ba,o.stateNode=y,y._reactInternals=o,Ku(o,p,r,u),o=Qu(null,o,p,!0,w,u)):(o.tag=0,D0&&w&&Uo(o),bt(null,o,y,u),o=o.child),o;case 16:p=o.elementType;e:{switch(Oa(r,o),r=o.pendingProps,y=p._init,p=y(p._payload),o.type=p,y=o.tag=v7(p),r=Sn(p,r),y){case 0:o=Yu(null,o,p,r,u);break e;case 1:o=Xu(null,o,p,r,u);break e;case 11:o=Sd(null,o,p,r,u);break e;case 14:o=Uu(null,o,p,Sn(p.type,r),u);break e}throw Error(n(306,p,""))}return o;case 0:return p=o.type,y=o.pendingProps,y=o.elementType===p?y:Sn(p,y),Yu(r,o,p,y,u);case 1:return p=o.type,y=o.pendingProps,y=o.elementType===p?y:Sn(p,y),Xu(r,o,p,y,u);case 3:e:{if(Cd(o),r===null)throw Error(n(387));p=o.pendingProps,w=o.memoizedState,y=w.element,pd(r,o),zi(o,p,null,u);var E=o.memoizedState;if(p=E.element,w.isDehydrated)if(w={element:p,isDehydrated:!1,cache:E.cache,pendingSuspenseBoundaries:E.pendingSuspenseBoundaries,transitions:E.transitions},o.updateQueue.baseState=w,o.memoizedState=w,o.flags&256){y=ei(Error(n(423)),o),o=hr(r,o,p,u,y);break e}else if(p!==y){y=ei(Error(n(424)),o),o=hr(r,o,p,u,y);break e}else for(ln=r2(o.stateNode.containerInfo.firstChild),Tt=o,D0=!0,In=null,u=xa(o,null,p,u),o.child=u;u;)u.flags=u.flags&-3|4096,u=u.sibling;else{if(ur(),p===y){o=Zn(r,o,u);break e}bt(r,o,p,u)}o=o.child}return o;case 5:return Lu(o),r===null&&Yt(o),p=o.type,y=o.pendingProps,w=r!==null?r.memoizedProps:null,E=y.children,Ko(p,y)?E=null:w!==null&&Ko(p,w)&&(o.flags|=32),qu(r,o),bt(r,o,E,u),o.child;case 6:return r===null&&Yt(o),null;case 13:return Za(r,o,u);case 4:return Au(o,o.stateNode.containerInfo),p=o.pendingProps,r===null?o.child=U0(o,null,p,u):bt(r,o,p,u),o.child;case 11:return p=o.type,y=o.pendingProps,y=o.elementType===p?y:Sn(p,y),Sd(r,o,p,y,u);case 7:return bt(r,o,o.pendingProps,u),o.child;case 8:return bt(r,o,o.pendingProps.children,u),o.child;case 12:return bt(r,o,o.pendingProps.children,u),o.child;case 10:e:{if(p=o.type._context,y=o.pendingProps,w=o.memoizedProps,E=y.value,M0(Yo,p._currentValue),p._currentValue=E,w!==null)if(ne(w.value,E)){if(w.children===y.children&&!Gt.current){o=Zn(r,o,u);break e}}else for(w=o.child,w!==null&&(w.return=o);w!==null;){var B=w.dependencies;if(B!==null){E=w.child;for(var Z=B.firstContext;Z!==null;){if(Z.context===p){if(w.tag===1){Z=Br(-1,u&-u),Z.tag=2;var re=w.updateQueue;if(re!==null){re=re.shared;var ye=re.pending;ye===null?Z.next=Z:(Z.next=ye.next,ye.next=Z),re.pending=Z}}w.lanes|=u,Z=w.alternate,Z!==null&&(Z.lanes|=u),yt(w.return,u,o),B.lanes|=u;break}Z=Z.next}}else if(w.tag===10)E=w.type===o.type?null:w.child;else if(w.tag===18){if(E=w.return,E===null)throw Error(n(341));E.lanes|=u,B=E.alternate,B!==null&&(B.lanes|=u),yt(E,u,o),E=w.sibling}else E=w.child;if(E!==null)E.return=w;else for(E=w;E!==null;){if(E===o){E=null;break}if(w=E.sibling,w!==null){w.return=E.return,E=w;break}E=E.return}w=E}bt(r,o,y.children,u),o=o.child}return o;case 9:return y=o.type,p=o.pendingProps.children,s2(o,u),y=bn(y),p=p(y),o.flags|=1,bt(r,o,p,u),o.child;case 14:return p=o.type,y=Sn(p,o.pendingProps),y=Sn(p.type,y),Uu(r,o,p,y,u);case 15:return vr(r,o,o.type,o.pendingProps,u);case 17:return p=o.type,y=o.pendingProps,y=o.elementType===p?y:Sn(p,y),Oa(r,o),o.tag=1,qt(p)?(r=!0,mn(o)):r=!1,s2(o,u),J2(o,p,y),Ku(o,p,y,u),Qu(null,o,p,!0,r,u);case 19:return d2(r,o,u);case 22:return Gu(r,o,u)}throw Error(n(156,o.tag))};function Od(r,o){return C1(r,o)}function p7(r,o,u,p){this.tag=r,this.key=u,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=o,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=p,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function _n(r,o,u,p){return new p7(r,o,u,p)}function Ja(r){return r=r.prototype,!(!r||!r.isReactComponent)}function v7(r){if(typeof r=="function")return Ja(r)?1:0;if(r!=null){if(r=r.$$typeof,r===xe)return 11;if(r===he)return 14}return 2}function jn(r,o){var u=r.alternate;return u===null?(u=_n(r.tag,o,r.key,r.mode),u.elementType=r.elementType,u.type=r.type,u.stateNode=r.stateNode,u.alternate=r,r.alternate=u):(u.pendingProps=o,u.type=r.type,u.flags=0,u.subtreeFlags=0,u.deletions=null),u.flags=r.flags&14680064,u.childLanes=r.childLanes,u.lanes=r.lanes,u.child=r.child,u.memoizedProps=r.memoizedProps,u.memoizedState=r.memoizedState,u.updateQueue=r.updateQueue,o=r.dependencies,u.dependencies=o===null?null:{lanes:o.lanes,firstContext:o.firstContext},u.sibling=r.sibling,u.index=r.index,u.ref=r.ref,u}function es(r,o,u,p,y,w){var E=2;if(p=r,typeof r=="function")Ja(r)&&(E=1);else if(typeof r=="string")E=5;else e:switch(r){case le:return oi(u.children,y,w,o);case D:E=8,y|=8;break;case ie:return r=_n(12,u,o,y|2),r.elementType=ie,r.lanes=w,r;case G:return r=_n(13,u,o,y),r.elementType=G,r.lanes=w,r;case Q:return r=_n(19,u,o,y),r.elementType=Q,r.lanes=w,r;case se:return ts(u,y,w,o);default:if(typeof r=="object"&&r!==null)switch(r.$$typeof){case j:E=10;break e;case X:E=9;break e;case xe:E=11;break e;case he:E=14;break e;case _e:E=16,p=null;break e}throw Error(n(130,r==null?r:typeof r,""))}return o=_n(E,u,o,y),o.elementType=r,o.type=p,o.lanes=w,o}function oi(r,o,u,p){return r=_n(7,r,p,o),r.lanes=u,r}function ts(r,o,u,p){return r=_n(22,r,p,o),r.elementType=se,r.lanes=u,r.stateNode={isHidden:!1},r}function vc(r,o,u){return r=_n(6,r,null,o),r.lanes=u,r}function hc(r,o,u){return o=_n(4,r.children!==null?r.children:[],r.key,o),o.lanes=u,o.stateNode={containerInfo:r.containerInfo,pendingChildren:null,implementation:r.implementation},o}function h7(r,o,u,p,y){this.tag=o,this.containerInfo=r,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Mo(0),this.expirationTimes=Mo(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Mo(0),this.identifierPrefix=p,this.onRecoverableError=y,this.mutableSourceEagerHydrationData=null}function mc(r,o,u,p,y,w,E,B,Z){return r=new h7(r,o,u,B,Z),o===1?(o=1,w===!0&&(o|=8)):o=0,w=_n(3,null,null,o),r.current=w,w.stateNode=r,w.memoizedState={element:p,isDehydrated:u,cache:null,transitions:null,pendingSuspenseBoundaries:null},Sa(w),r}function m7(r,o,u){var p=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),B7.exports=HC(),B7.exports}var Dh;function zC(){if(Dh)return qd;Dh=1;var t=$m();return qd.createRoot=t.createRoot,qd.hydrateRoot=t.hydrateRoot,qd}var jC=zC();const KC=t1(jC);function WC(t,e){typeof t=="function"?t(e):t!=null&&(t.current=e)}function UC(...t){return e=>t.forEach(n=>WC(n,e))}var n1=x.forwardRef((t,e)=>{const{children:n,...i}=t,a=x.Children.toArray(n),c=a.find(qC);if(c){const d=c.props.children,f=a.map(v=>v===c?x.Children.count(d)>1?x.Children.only(null):x.isValidElement(d)?d.props.children:null:v);return k.jsx(I3,{...i,ref:e,children:x.isValidElement(d)?x.cloneElement(d,void 0,f):null})}return k.jsx(I3,{...i,ref:e,children:n})});n1.displayName="Slot";var I3=x.forwardRef((t,e)=>{const{children:n,...i}=t;if(x.isValidElement(n)){const a=XC(n);return x.cloneElement(n,{...YC(i,n.props),ref:e?UC(e,a):a})}return x.Children.count(n)>1?x.Children.only(null):null});I3.displayName="SlotClone";var GC=({children:t})=>k.jsx(k.Fragment,{children:t});function qC(t){return x.isValidElement(t)&&t.type===GC}function YC(t,e){const n={...e};for(const i in e){const a=t[i],c=e[i];/^on[A-Z]/.test(i)?a&&c?n[i]=(...f)=>{c(...f),a(...f)}:a&&(n[i]=a):i==="style"?n[i]={...a,...c}:i==="className"&&(n[i]=[a,c].filter(Boolean).join(" "))}return{...t,...n}}function XC(t){var i,a;let e=(i=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:i.get,n=e&&"isReactWarning"in e&&e.isReactWarning;return n?t.ref:(e=(a=Object.getOwnPropertyDescriptor(t,"ref"))==null?void 0:a.get,n=e&&"isReactWarning"in e&&e.isReactWarning,n?t.props.ref:t.props.ref||t.ref)}function ft(){let t,e="",n=0;for(;n{const{icon:n,children:i,className:a,size:c,fit:d,kind:f="default",isLoading:v=!1,loadingText:m,renderIconFirst:g=!1,disabled:b=!1,asChild:S=!1,onKeyDown:C,onClick:P,type:T="button","data-test-id":A="button",...V}=t,R=S?n1:"button",F=ft(Sr.Button,Sr[`Button--${f}`],c&&Sr[`Button--${c}`],d&&Sr["Button--fit"],a),N=()=>{let X="small";return c==="big"&&(X="medium"),X},z=n&&x.cloneElement(n,{key:"icon",size:N(),"aria-hidden":!0,className:ft(n.props.className,Sr["Button-icon"])}),U=X=>[g&&z,v&&k.jsx("span",{children:m||X},"text"),!v&&X&&k.jsx("span",{children:X},"text"),!g&&z,v&&k.jsx("span",{children:"…"},"spinner")],le=()=>S&&x.isValidElement(i)?x.cloneElement(i,void 0,U(i.props.children)):U(i),D=b||v,ie=X=>{if(b)return X.preventDefault();P==null||P(X)},j=X=>{X.target instanceof HTMLAnchorElement&&["Spacebar"," "].includes(X.key)&&(X.preventDefault(),X.target.click())};return k.jsx(R,{className:F,ref:e,onClick:ie,onKeyDown:C||j,disabled:D,type:S?void 0:T,"data-test-id":A,...V,children:le()})});Sm.displayName="Button";const Rh=x.memo(Sm),e_=({spacing:t="normal",className:e,children:n,"data-test-id":i="button-group",...a})=>{const c=ft(Sr.ButtonGroup,Sr[`ButtonGroup--${t}`],e);return k.jsx("div",{className:c,"data-test-id":i,...a,children:n})},Cm=x.forwardRef((t,e)=>{const{icon:n,children:i,className:a,size:c="medium",kind:d="minimal",disabled:f=!1,asChild:v=!1,onKeyDown:m,onClick:g,type:b="button","data-test-id":S="icon-button",...C}=t,P=v?n1:"button",T=ft(Sr.IconButton,Sr.Button,Sr["Button--icon"],Sr[`Button--${d}`],c&&Sr[`Button--${c}`],a),A=()=>t.size==="small"?"small":"medium",V=x.cloneElement(n,{key:"icon",size:A(),"aria-hidden":!0,className:ft(n.props.className,"Button-icon")}),R=()=>v&&x.isValidElement(i)?x.cloneElement(i,void 0,V):V,F=z=>{if(f)return z.preventDefault();g==null||g(z)},N=z=>{z.target instanceof HTMLAnchorElement&&["Spacebar"," "].includes(z.key)&&(z.preventDefault(),z.target.click())};return k.jsx(P,{className:T,ref:e,onClick:F,disabled:f,onKeyDown:m||N,type:b,"data-test-id":S,...C,children:R()})});Cm.displayName="IconButton";const _m=x.memo(Cm),Pm=x.createContext({path:void 0}),t_="kck8EW_cyanToBlue",n_="kck8EW_cyanToPurple",r_="kck8EW_flairIcon",i_="kck8EW_flairIconContainer",o_="kck8EW_huge",l_="kck8EW_icon",a_="kck8EW_isRounded",s_="kck8EW_large",u_="kck8EW_medium",c_="kck8EW_micro",d_="kck8EW_mlarge",f_="kck8EW_pinkToPurple",p_="kck8EW_purpleToBlue",v_="kck8EW_small",h_="kck8EW_subtle",m_="kck8EW_tiny",g_="kck8EW_xlarge",y_="kck8EW_yellowToCyan",F7={cyanToBlue:t_,cyanToPurple:n_,flairIcon:r_,flairIconContainer:i_,huge:o_,icon:l_,isRounded:a_,large:s_,medium:u_,micro:c_,mlarge:d_,pinkToPurple:f_,purpleToBlue:p_,small:v_,subtle:h_,tiny:m_,xlarge:g_,yellowToCyan:y_},K0=({name:t,subtle:e,className:n,size:i,children:a,"data-test-id":c="icon","aria-label":d,"aria-labelledby":f,"aria-hidden":v,title:m,description:g,focusable:b=!1,role:S="img",...C})=>{const P=i?F7[i]:!1,T=ft(F7.icon,P,e&&F7.subtle,`icon-${t}`,n),A=`svg-${x.useId()}`,V=v??(!f&&!d),R=m&&`${A}-${t}-title`,F=g&&`${A}-${t}-description`,{path:N}=x.useContext(Pm),z=`lp-icon-${t}`,U=N===void 0?"/static/sprite.svg":N;return k.jsx("span",{"data-test-id":c,className:T,children:k.jsxs("svg",{"aria-hidden":V,"aria-label":d,"aria-labelledby":R||f,"aria-describedby":F,focusable:b,role:S,...C,children:[m&&k.jsx("title",{id:R,children:m}),g&&k.jsx("desc",{id:F,children:g}),k.jsx("use",{href:`${U}#${z}`})]})})},Em=({kind:t,size:e="medium",...n})=>{let i,a="";switch(t){case"success":i="check-circle",a="Success";break;case"warning":i="warning",a="Warning";break;case"error":i="alert-rhombus",a="Error";break;case"info":i="info-circle",a="Info";break;case"notification":i="notifications",a="Notification";break}return k.jsx(K0,{"aria-label":`${a} icon`,role:"img",size:e,...n,name:i})};function yo(t,e,n){let[i,a]=x.useState(t||e),c=x.useRef(t!==void 0),d=t!==void 0;x.useEffect(()=>{let m=c.current;m!==d&&console.warn(`WARN: A component changed from ${m?"controlled":"uncontrolled"} to ${d?"controlled":"uncontrolled"}.`),c.current=d},[d]);let f=d?t:i,v=x.useCallback((m,...g)=>{let b=(S,...C)=>{n&&(Object.is(f,S)||n(S,...C)),d||(f=S)};typeof m=="function"?(console.warn("We can not support a function callback. See Github Issues for details https://github.com/adobe/react-spectrum/issues/2320"),a((C,...P)=>{let T=m(d?f:C,...P);return b(T,...g),d?C:T})):(d||a(m),b(m,...g))},[d,f,n]);return[f,v]}function Nc(t,e=-1/0,n=1/0){return Math.min(Math.max(t,e),n)}const b_="BwAiTW_Alert",x_="BwAiTW_LinkButton",w_="BwAiTW_PrimaryButton",Mn={Alert:b_,"Alert--bordered":"BwAiTW_Alert--bordered","Alert--compact":"BwAiTW_Alert--compact","Alert--error":"BwAiTW_Alert--error","Alert--flair-default":"BwAiTW_Alert--flair-default","Alert--flair-strong":"BwAiTW_Alert--flair-strong","Alert--info":"BwAiTW_Alert--info","Alert--inline":"BwAiTW_Alert--inline","Alert--notification":"BwAiTW_Alert--notification","Alert--small":"BwAiTW_Alert--small","Alert--success":"BwAiTW_Alert--success","Alert--warning":"BwAiTW_Alert--warning","Alert--wide":"BwAiTW_Alert--wide","Alert-close":"BwAiTW_Alert-close","Alert-content":"BwAiTW_Alert-content","Alert-heading":"BwAiTW_Alert-heading","Alert-icon":"BwAiTW_Alert-icon",LinkButton:x_,PrimaryButton:w_},km=({children:t,className:e,compact:n,isInline:i,kind:a="info",flairLevel:c="default",size:d="medium",wide:f,dismissible:v,onDismiss:m,noIcon:g,header:b,dismissed:S,"data-test-id":C="alert",primaryButton:P,link:T,...A})=>{const[V,R]=yo(S,!1,le=>le&&m?m():null),F=`${Mn.Alert} ${Mn[`Alert--${a}`]}`,N=d==="small"&&Mn[`Alert--${d}`],z=a==="notification"&&Mn[`Alert--flair-${c}`],U=ft(F,e,i?Mn["Alert--inline"]:Mn["Alert--bordered"],N,n&&Mn["Alert--compact"],f&&Mn["Alert--wide"],z);return V?null:k.jsxs("div",{...A,className:U,"data-test-id":C,role:["info","success","notification"].includes(a)?"status":"alert",children:[!g&&k.jsx(Em,{kind:a,className:Mn["Alert-icon"],size:d,"data-test-id":`${C}-status-icon`}),k.jsxs("div",{className:Mn["Alert-content"],children:[b&&k.jsx("h4",{className:Mn["Alert-heading"],"data-test-id":`${C}-header`,children:b}),k.jsxs("div",{children:[k.jsx("div",{children:t}),(P||T)&&k.jsxs(e_,{children:[P&&k.jsx(Rh,{...P,kind:P.kind||(c==="strong"||a!=="notification"?"default":"defaultFlair"),className:ft(P.className,Mn.PrimaryButton)}),T&&k.jsx(Rh,{kind:"link",asChild:!0,onClick:T==null?void 0:T.onClick,className:Mn.LinkButton,icon:k.jsx(K0,{name:"link-external",size:"small"}),children:k.jsx("a",{href:T.href,children:T.text})})]})]})]}),v&&k.jsx(_m,{"aria-label":"Close this alert.",size:"small",className:Mn["Alert-close"],icon:k.jsx(K0,{name:"cancel",size:"small"}),kind:"close",onClick:()=>R(!0),"data-test-id":`${C}-dismiss-button`})]})};function $_(t){var e=t.match(/^var\((.*)\)$/);return e?e[1]:t}function S_(t,e){var n={};{var i=t;for(var a in i){var c=i[a];c!=null&&(n[$_(a)]=c)}}return Object.defineProperty(n,"toString",{value:function(){return Object.keys(this).map(f=>"".concat(f,":").concat(this[f])).join(";")},writable:!1}),n}function F3(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,i=new Array(e);n-1)return!1;var i=!1,a=t.replace(Am,function(c){for(var d=arguments.length,f=new Array(d>1?d-1:0),v=1;v=t.length?{done:!0}:{done:!1,value:t[i++]}},e:function(v){throw v},f:a}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var c=!0,d=!1,f;return{s:function(){n=n.call(t)},n:function(){var v=n.next();return c=v.done,v},e:function(v){d=!0,f=v},f:function(){try{!c&&n.return!=null&&n.return()}finally{if(d)throw f}}}}function Ih(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),n.push.apply(n,i)}return n}function Z7(t){for(var e=1;e{const a=t?n1:"div",{className:c,style:d,otherProps:f}=R_(i);return k.jsx(a,{className:c,style:d,"data-test-id":n,...f,children:e})},B_="modulepreload",V_=function(t,e){return new URL(t,e).href},Zh={},I_=function(e,n,i){let a=Promise.resolve();if(n&&n.length>0){let d=function(g){return Promise.all(g.map(b=>Promise.resolve(b).then(S=>({status:"fulfilled",value:S}),S=>({status:"rejected",reason:S}))))};const f=document.getElementsByTagName("link"),v=document.querySelector("meta[property=csp-nonce]"),m=(v==null?void 0:v.nonce)||(v==null?void 0:v.getAttribute("nonce"));a=d(n.map(g=>{if(g=V_(g,i),g in Zh)return;Zh[g]=!0;const b=g.endsWith(".css"),S=b?'[rel="stylesheet"]':"";if(!!i)for(let T=f.length-1;T>=0;T--){const A=f[T];if(A.href===g&&(!b||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${S}`))return;const P=document.createElement("link");if(P.rel=b?"stylesheet":B_,b||(P.as="script"),P.crossOrigin="",P.href=g,m&&P.setAttribute("nonce",m),document.head.appendChild(P),b)return new Promise((T,A)=>{P.addEventListener("load",T),P.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})}))}function c(d){const f=new Event("vite:preloadError",{cancelable:!0});if(f.payload=d,window.dispatchEvent(f),!f.defaultPrevented)throw d}return a.then(d=>{for(const f of d||[])f.status==="rejected"&&c(f.reason);return e().catch(c)})},Hc=Math.min,Ss=Math.max,y5=Math.round,fo=t=>({x:t,y:t}),F_={left:"right",right:"left",bottom:"top",top:"bottom"},Z_={start:"end",end:"start"};function Z3(t,e,n){return Ss(t,Hc(e,n))}function r1(t,e){return typeof t=="function"?t(e):t}function Ll(t){return t.split("-")[0]}function i1(t){return t.split("-")[1]}function Lm(t){return t==="x"?"y":"x"}function Mp(t){return t==="y"?"height":"width"}function N5(t){return["top","bottom"].includes(Ll(t))?"y":"x"}function Ap(t){return Lm(N5(t))}function O_(t,e,n){n===void 0&&(n=!1);const i=i1(t),a=Ap(t),c=Mp(a);let d=a==="x"?i===(n?"end":"start")?"right":"left":i==="start"?"bottom":"top";return e.reference[c]>e.floating[c]&&(d=b5(d)),[d,b5(d)]}function N_(t){const e=b5(t);return[O3(t),e,O3(e)]}function O3(t){return t.replace(/start|end/g,e=>Z_[e])}function H_(t,e,n){const i=["left","right"],a=["right","left"],c=["top","bottom"],d=["bottom","top"];switch(t){case"top":case"bottom":return n?e?a:i:e?i:a;case"left":case"right":return e?c:d;default:return[]}}function z_(t,e,n,i){const a=i1(t);let c=H_(Ll(t),n==="start",i);return a&&(c=c.map(d=>d+"-"+a),e&&(c=c.concat(c.map(O3)))),c}function b5(t){return t.replace(/left|right|bottom|top/g,e=>F_[e])}function j_(t){return{top:0,right:0,bottom:0,left:0,...t}}function Dm(t){return typeof t!="number"?j_(t):{top:t,right:t,bottom:t,left:t}}function x5(t){const{x:e,y:n,width:i,height:a}=t;return{width:i,height:a,top:n,left:e,right:e+i,bottom:n+a,x:e,y:n}}function Oh(t,e,n){let{reference:i,floating:a}=t;const c=N5(e),d=Ap(e),f=Mp(d),v=Ll(e),m=c==="y",g=i.x+i.width/2-a.width/2,b=i.y+i.height/2-a.height/2,S=i[f]/2-a[f]/2;let C;switch(v){case"top":C={x:g,y:i.y-a.height};break;case"bottom":C={x:g,y:i.y+i.height};break;case"right":C={x:i.x+i.width,y:b};break;case"left":C={x:i.x-a.width,y:b};break;default:C={x:i.x,y:i.y}}switch(i1(e)){case"start":C[d]-=S*(n&&m?-1:1);break;case"end":C[d]+=S*(n&&m?-1:1);break}return C}const K_=async(t,e,n)=>{const{placement:i="bottom",strategy:a="absolute",middleware:c=[],platform:d}=n,f=c.filter(Boolean),v=await(d.isRTL==null?void 0:d.isRTL(e));let m=await d.getElementRects({reference:t,floating:e,strategy:a}),{x:g,y:b}=Oh(m,i,v),S=i,C={},P=0;for(let T=0;T({name:"arrow",options:t,async fn(e){const{x:n,y:i,placement:a,rects:c,platform:d,elements:f,middlewareData:v}=e,{element:m,padding:g=0}=r1(t,e)||{};if(m==null)return{};const b=Dm(g),S={x:n,y:i},C=Ap(a),P=Mp(C),T=await d.getDimensions(m),A=C==="y",V=A?"top":"left",R=A?"bottom":"right",F=A?"clientHeight":"clientWidth",N=c.reference[P]+c.reference[C]-S[C]-c.floating[P],z=S[C]-c.reference[C],U=await(d.getOffsetParent==null?void 0:d.getOffsetParent(m));let le=U?U[F]:0;(!le||!await(d.isElement==null?void 0:d.isElement(U)))&&(le=f.floating[F]||c.floating[P]);const D=N/2-z/2,ie=le/2-T[P]/2-1,j=Hc(b[V],ie),X=Hc(b[R],ie),xe=j,G=le-T[P]-X,Q=le/2-T[P]/2+D,he=Z3(xe,Q,G),_e=!v.arrow&&i1(a)!=null&&Q!==he&&c.reference[P]/2-(Qxe<=0)){var ie,j;const xe=(((ie=c.flip)==null?void 0:ie.index)||0)+1,G=z[xe];if(G)return{data:{index:xe,overflows:D},reset:{placement:G}};let Q=(j=D.filter(he=>he.overflows[0]<=0).sort((he,_e)=>he.overflows[1]-_e.overflows[1])[0])==null?void 0:j.placement;if(!Q)switch(C){case"bestFit":{var X;const he=(X=D.map(_e=>[_e.placement,_e.overflows.filter(se=>se>0).reduce((se,fe)=>se+fe,0)]).sort((_e,se)=>_e[1]-se[1])[0])==null?void 0:X[0];he&&(Q=he);break}case"initialPlacement":Q=f;break}if(a!==Q)return{reset:{placement:Q}}}return{}}}};async function G_(t,e){const{placement:n,platform:i,elements:a}=t,c=await(i.isRTL==null?void 0:i.isRTL(a.floating)),d=Ll(n),f=i1(n),v=N5(n)==="y",m=["left","top"].includes(d)?-1:1,g=c&&v?-1:1,b=r1(e,t);let{mainAxis:S,crossAxis:C,alignmentAxis:P}=typeof b=="number"?{mainAxis:b,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...b};return f&&typeof P=="number"&&(C=f==="end"?P*-1:P),v?{x:C*g,y:S*m}:{x:S*m,y:C*g}}const q_=function(t){return t===void 0&&(t=0),{name:"offset",options:t,async fn(e){var n,i;const{x:a,y:c,placement:d,middlewareData:f}=e,v=await G_(e,t);return d===((n=f.offset)==null?void 0:n.placement)&&(i=f.arrow)!=null&&i.alignmentOffset?{}:{x:a+v.x,y:c+v.y,data:{...v,placement:d}}}}},Y_=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){const{x:n,y:i,placement:a}=e,{mainAxis:c=!0,crossAxis:d=!1,limiter:f={fn:A=>{let{x:V,y:R}=A;return{x:V,y:R}}},...v}=r1(t,e),m={x:n,y:i},g=await Rm(e,v),b=N5(Ll(a)),S=Lm(b);let C=m[S],P=m[b];if(c){const A=S==="y"?"top":"left",V=S==="y"?"bottom":"right",R=C+g[A],F=C-g[V];C=Z3(R,C,F)}if(d){const A=b==="y"?"top":"left",V=b==="y"?"bottom":"right",R=P+g[A],F=P-g[V];P=Z3(R,P,F)}const T=f.fn({...e,[S]:C,[b]:P});return{...T,data:{x:T.x-n,y:T.y-i}}}}};function po(t){return Bm(t)?(t.nodeName||"").toLowerCase():"#document"}function Xn(t){var e;return(t==null||(e=t.ownerDocument)==null?void 0:e.defaultView)||window}function bo(t){var e;return(e=(Bm(t)?t.ownerDocument:t.document)||window.document)==null?void 0:e.documentElement}function Bm(t){return t instanceof Node||t instanceof Xn(t).Node}function E2(t){return t instanceof Element||t instanceof Xn(t).Element}function k2(t){return t instanceof HTMLElement||t instanceof Xn(t).HTMLElement}function Nh(t){return typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof Xn(t).ShadowRoot}function o1(t){const{overflow:e,overflowX:n,overflowY:i,display:a}=Pr(t);return/auto|scroll|overlay|hidden|clip/.test(e+i+n)&&!["inline","contents"].includes(a)}function X_(t){return["table","td","th"].includes(po(t))}function Q_(t){return[":popover-open",":modal"].some(e=>{try{return t.matches(e)}catch{return!1}})}function Lp(t){const e=Dp(),n=E2(t)?Pr(t):t;return n.transform!=="none"||n.perspective!=="none"||(n.containerType?n.containerType!=="normal":!1)||!e&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!e&&(n.filter?n.filter!=="none":!1)||["transform","perspective","filter"].some(i=>(n.willChange||"").includes(i))||["paint","layout","strict","content"].some(i=>(n.contain||"").includes(i))}function Vm(t){let e=Ps(t);for(;k2(e)&&!H5(e);){if(Lp(e))return e;if(Q_(e))return null;e=Ps(e)}return null}function Dp(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function H5(t){return["html","body","#document"].includes(po(t))}function Pr(t){return Xn(t).getComputedStyle(t)}function z5(t){return E2(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.scrollX,scrollTop:t.scrollY}}function Ps(t){if(po(t)==="html")return t;const e=t.assignedSlot||t.parentNode||Nh(t)&&t.host||bo(t);return Nh(e)?e.host:e}function Im(t){const e=Ps(t);return H5(e)?t.ownerDocument?t.ownerDocument.body:t.body:k2(e)&&o1(e)?e:Im(e)}function Fm(t,e,n){var i;e===void 0&&(e=[]);const a=Im(t),c=a===((i=t.ownerDocument)==null?void 0:i.body),d=Xn(a);return c?(J_(d),e.concat(d,d.visualViewport||[],o1(a)?a:[],[])):e.concat(a,Fm(a,[]))}function J_(t){return t.parent&&Object.getPrototypeOf(t.parent)?t.frameElement:null}function Zm(t){const e=Pr(t);let n=parseFloat(e.width)||0,i=parseFloat(e.height)||0;const a=k2(t),c=a?t.offsetWidth:n,d=a?t.offsetHeight:i,f=y5(n)!==c||y5(i)!==d;return f&&(n=c,i=d),{width:n,height:i,$:f}}function Om(t){return E2(t)?t:t.contextElement}function Cs(t){const e=Om(t);if(!k2(e))return fo(1);const n=e.getBoundingClientRect(),{width:i,height:a,$:c}=Zm(e);let d=(c?y5(n.width):n.width)/i,f=(c?y5(n.height):n.height)/a;return(!d||!Number.isFinite(d))&&(d=1),(!f||!Number.isFinite(f))&&(f=1),{x:d,y:f}}const eP=fo(0);function Nm(t){const e=Xn(t);return!Dp()||!e.visualViewport?eP:{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}}function tP(t,e,n){return e===void 0&&(e=!1),!n||e&&n!==Xn(t)?!1:e}function zc(t,e,n,i){e===void 0&&(e=!1),n===void 0&&(n=!1);const a=t.getBoundingClientRect(),c=Om(t);let d=fo(1);e&&(i?E2(i)&&(d=Cs(i)):d=Cs(t));const f=tP(c,n,i)?Nm(c):fo(0);let v=(a.left+f.x)/d.x,m=(a.top+f.y)/d.y,g=a.width/d.x,b=a.height/d.y;if(c){const S=Xn(c),C=i&&E2(i)?Xn(i):i;let P=S.frameElement;for(;P&&i&&C!==S;){const T=Cs(P),A=P.getBoundingClientRect(),V=Pr(P),R=A.left+(P.clientLeft+parseFloat(V.paddingLeft))*T.x,F=A.top+(P.clientTop+parseFloat(V.paddingTop))*T.y;v*=T.x,m*=T.y,g*=T.x,b*=T.y,v+=R,m+=F,P=Xn(P).frameElement}}return x5({width:g,height:b,x:v,y:m})}const nP=[":popover-open",":modal"];function Hm(t){let e=!1,n=0,i=0;function a(c){try{e=e||t.matches(c)}catch{}}if(nP.forEach(c=>{a(c)}),e){const c=Vm(t);if(c){const d=c.getBoundingClientRect();n=d.x,i=d.y}}return[e,n,i]}function rP(t){let{elements:e,rect:n,offsetParent:i,strategy:a}=t;const c=bo(i),[d]=e?Hm(e.floating):[!1];if(i===c||d)return n;let f={scrollLeft:0,scrollTop:0},v=fo(1);const m=fo(0),g=k2(i);if((g||!g&&a!=="fixed")&&((po(i)!=="body"||o1(c))&&(f=z5(i)),k2(i))){const b=zc(i);v=Cs(i),m.x=b.x+i.clientLeft,m.y=b.y+i.clientTop}return{width:n.width*v.x,height:n.height*v.y,x:n.x*v.x-f.scrollLeft*v.x+m.x,y:n.y*v.y-f.scrollTop*v.y+m.y}}function iP(t){return Array.from(t.getClientRects())}function zm(t){return zc(bo(t)).left+z5(t).scrollLeft}function oP(t){const e=bo(t),n=z5(t),i=t.ownerDocument.body,a=Ss(e.scrollWidth,e.clientWidth,i.scrollWidth,i.clientWidth),c=Ss(e.scrollHeight,e.clientHeight,i.scrollHeight,i.clientHeight);let d=-n.scrollLeft+zm(t);const f=-n.scrollTop;return Pr(i).direction==="rtl"&&(d+=Ss(e.clientWidth,i.clientWidth)-a),{width:a,height:c,x:d,y:f}}function lP(t,e){const n=Xn(t),i=bo(t),a=n.visualViewport;let c=i.clientWidth,d=i.clientHeight,f=0,v=0;if(a){c=a.width,d=a.height;const m=Dp();(!m||m&&e==="fixed")&&(f=a.offsetLeft,v=a.offsetTop)}return{width:c,height:d,x:f,y:v}}function aP(t,e){const n=zc(t,!0,e==="fixed"),i=n.top+t.clientTop,a=n.left+t.clientLeft,c=k2(t)?Cs(t):fo(1),d=t.clientWidth*c.x,f=t.clientHeight*c.y,v=a*c.x,m=i*c.y;return{width:d,height:f,x:v,y:m}}function Hh(t,e,n){let i;if(e==="viewport")i=lP(t,n);else if(e==="document")i=oP(bo(t));else if(E2(e))i=aP(e,n);else{const a=Nm(t);i={...e,x:e.x-a.x,y:e.y-a.y}}return x5(i)}function jm(t,e){const n=Ps(t);return n===e||!E2(n)||H5(n)?!1:Pr(n).position==="fixed"||jm(n,e)}function sP(t,e){const n=e.get(t);if(n)return n;let i=Fm(t,[]).filter(f=>E2(f)&&po(f)!=="body"),a=null;const c=Pr(t).position==="fixed";let d=c?Ps(t):t;for(;E2(d)&&!H5(d);){const f=Pr(d),v=Lp(d);!v&&f.position==="fixed"&&(a=null),(c?!v&&!a:!v&&f.position==="static"&&!!a&&["absolute","fixed"].includes(a.position)||o1(d)&&!v&&jm(t,d))?i=i.filter(g=>g!==d):a=f,d=Ps(d)}return e.set(t,i),i}function uP(t){let{element:e,boundary:n,rootBoundary:i,strategy:a}=t;const d=[...n==="clippingAncestors"?sP(e,this._c):[].concat(n),i],f=d[0],v=d.reduce((m,g)=>{const b=Hh(e,g,a);return m.top=Ss(b.top,m.top),m.right=Hc(b.right,m.right),m.bottom=Hc(b.bottom,m.bottom),m.left=Ss(b.left,m.left),m},Hh(e,f,a));return{width:v.right-v.left,height:v.bottom-v.top,x:v.left,y:v.top}}function cP(t){const{width:e,height:n}=Zm(t);return{width:e,height:n}}function dP(t,e,n,i){const a=k2(e),c=bo(e),d=n==="fixed",f=zc(t,!0,d,e);let v={scrollLeft:0,scrollTop:0};const m=fo(0);if(a||!a&&!d)if((po(e)!=="body"||o1(c))&&(v=z5(e)),a){const T=zc(e,!0,d,e);m.x=T.x+e.clientLeft,m.y=T.y+e.clientTop}else c&&(m.x=zm(c));let g=f.left+v.scrollLeft-m.x,b=f.top+v.scrollTop-m.y;const[S,C,P]=Hm(i);return S&&(g+=C,b+=P,a&&(g+=e.clientLeft,b+=e.clientTop)),{x:g,y:b,width:f.width,height:f.height}}function zh(t,e){return!k2(t)||Pr(t).position==="fixed"?null:e?e(t):t.offsetParent}function Km(t,e){const n=Xn(t);if(!k2(t))return n;let i=zh(t,e);for(;i&&X_(i)&&Pr(i).position==="static";)i=zh(i,e);return i&&(po(i)==="html"||po(i)==="body"&&Pr(i).position==="static"&&!Lp(i))?n:i||Vm(t)||n}const fP=async function(t){const e=this.getOffsetParent||Km,n=this.getDimensions;return{reference:dP(t.reference,await e(t.floating),t.strategy,t.floating),floating:{x:0,y:0,...await n(t.floating)}}};function pP(t){return Pr(t).direction==="rtl"}const vP={convertOffsetParentRelativeRectToViewportRelativeRect:rP,getDocumentElement:bo,getClippingRect:uP,getOffsetParent:Km,getElementRects:fP,getClientRects:iP,getDimensions:cP,getScale:Cs,isElement:E2,isRTL:pP},hP=Y_,mP=U_,gP=W_,yP=(t,e,n)=>{const i=new Map,a={platform:vP,...n},c={...a.platform,_c:i};return K_(t,e,{...a,platform:c})},C0=typeof document<"u"?ee.useLayoutEffect:()=>{};function dn(t){const e=x.useRef(null);return C0(()=>{e.current=t},[t]),x.useCallback((...n)=>{const i=e.current;return i==null?void 0:i(...n)},[])}function bP(t){let[e,n]=x.useState(t),i=x.useRef(null),a=dn(()=>{if(!i.current)return;let d=i.current.next();if(d.done){i.current=null;return}e===d.value?a():n(d.value)});C0(()=>{i.current&&a()});let c=dn(d=>{i.current=d(e),a()});return[e,c]}const Rp={prefix:String(Math.round(Math.random()*1e10)),current:0},Wm=ee.createContext(Rp),xP=ee.createContext(!1);let wP=!!(typeof window<"u"&&window.document&&window.document.createElement),O7=new WeakMap;function $P(t=!1){let e=x.useContext(Wm),n=x.useRef(null);if(n.current===null&&!t){var i,a;let c=(a=ee.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED)===null||a===void 0||(i=a.ReactCurrentOwner)===null||i===void 0?void 0:i.current;if(c){let d=O7.get(c);d==null?O7.set(c,{id:e.current,state:c.memoizedState}):c.memoizedState!==d.state&&(e.current=d.id,O7.delete(c))}n.current=++e.current}return n.current}function SP(t){let e=x.useContext(Wm);e===Rp&&!wP&&console.warn("When server rendering, you must wrap your application in an to ensure consistent ids are generated between the client and server.");let n=$P(!!t),i=`react-aria${e.prefix}`;return t||`${i}-${n}`}function CP(t){let e=ee.useId(),[n]=x.useState(M2()),i=n?"react-aria":`react-aria${Rp.prefix}`;return t||`${i}-${e}`}const _P=typeof ee.useId=="function"?CP:SP;function PP(){return!1}function EP(){return!0}function kP(t){return()=>{}}function M2(){return typeof ee.useSyncExternalStore=="function"?ee.useSyncExternalStore(kP,PP,EP):x.useContext(xP)}let TP=!!(typeof window<"u"&&window.document&&window.document.createElement),w5=new Map;function Qn(t){let[e,n]=x.useState(t),i=x.useRef(null),a=_P(e),c=x.useCallback(d=>{i.current=d},[]);return TP&&w5.set(a,c),C0(()=>{let d=a;return()=>{w5.delete(d)}},[a]),x.useEffect(()=>{let d=i.current;d&&(i.current=null,n(d))}),a}function MP(t,e){if(t===e)return t;let n=w5.get(t);if(n)return n(e),e;let i=w5.get(e);return i?(i(t),t):e}function $2(t=[]){let e=Qn(),[n,i]=bP(e),a=x.useCallback(()=>{i(function*(){yield e,yield document.getElementById(e)?e:void 0})},[e,i]);return C0(a,[e,a,...t]),n}function vo(...t){return(...e)=>{for(let n of t)typeof n=="function"&&n(...e)}}const z0=t=>{var e;return(e=t==null?void 0:t.ownerDocument)!==null&&e!==void 0?e:document},Cr=t=>t&&"window"in t&&t.window===t?t:z0(t).defaultView||window;function Um(t){var e,n,i="";if(typeof t=="string"||typeof t=="number")i+=t;else if(typeof t=="object")if(Array.isArray(t)){var a=t.length;for(e=0;e=65&&a.charCodeAt(2)<=90?e[a]=vo(c,d):(a==="className"||a==="UNSAFE_className")&&typeof c=="string"&&typeof d=="string"?e[a]=AP(c,d):a==="id"&&c&&d?e.id=MP(c,d):e[a]=d!==void 0?d:c}}return e}function j5(...t){return t.length===1&&t[0]?t[0]:e=>{for(let n of t)typeof n=="function"?n(e):n!=null&&(n.current=e)}}const LP=new Set(["id"]),DP=new Set(["aria-label","aria-labelledby","aria-describedby","aria-details"]),RP=new Set(["href","hrefLang","target","rel","download","ping","referrerPolicy"]),BP=/^(data-.*)$/;function O0(t,e={}){let{labelable:n,isLink:i,propNames:a}=e,c={};for(const d in t)Object.prototype.hasOwnProperty.call(t,d)&&(LP.has(d)||n&&DP.has(d)||i&&RP.has(d)||a!=null&&a.has(d)||BP.test(d))&&(c[d]=t[d]);return c}function qn(t){if(VP())t.focus({preventScroll:!0});else{let e=IP(t);t.focus(),FP(e)}}let Yd=null;function VP(){if(Yd==null){Yd=!1;try{document.createElement("div").focus({get preventScroll(){return Yd=!0,!0}})}catch{}}return Yd}function IP(t){let e=t.parentNode,n=[],i=document.scrollingElement||document.documentElement;for(;e instanceof HTMLElement&&e!==i;)(e.offsetHeight"u"||window.navigator==null?!1:((e=window.navigator.userAgentData)===null||e===void 0?void 0:e.brands.some(n=>t.test(n.brand)))||t.test(window.navigator.userAgent)}function Bp(t){var e;return typeof window<"u"&&window.navigator!=null?t.test(((e=window.navigator.userAgentData)===null||e===void 0?void 0:e.platform)||window.navigator.platform):!1}function bi(t){let e=null;return()=>(e==null&&(e=t()),e)}const ho=bi(function(){return Bp(/^Mac/i)}),ZP=bi(function(){return Bp(/^iPhone/i)}),Gm=bi(function(){return Bp(/^iPad/i)||ho()&&navigator.maxTouchPoints>1}),W5=bi(function(){return ZP()||Gm()}),OP=bi(function(){return ho()||W5()}),Vp=bi(function(){return K5(/AppleWebKit/i)&&!NP()}),NP=bi(function(){return K5(/Chrome/i)}),qm=bi(function(){return K5(/Android/i)}),HP=bi(function(){return K5(/Firefox/i)}),zP=x.createContext({isNative:!0,open:KP,useHref:t=>t});function U5(){return x.useContext(zP)}function Dl(t,e,n=!0){var i,a;let{metaKey:c,ctrlKey:d,altKey:f,shiftKey:v}=e;HP()&&(!((a=window.event)===null||a===void 0||(i=a.type)===null||i===void 0)&&i.startsWith("key"))&&t.target==="_blank"&&(ho()?c=!0:d=!0);let m=Vp()&&ho()&&!Gm()?new KeyboardEvent("keydown",{keyIdentifier:"Enter",metaKey:c,ctrlKey:d,altKey:f,shiftKey:v}):new MouseEvent("click",{metaKey:c,ctrlKey:d,altKey:f,shiftKey:v,bubbles:!0,cancelable:!0});Dl.isOpening=n,qn(t),t.dispatchEvent(m),Dl.isOpening=!1}Dl.isOpening=!1;function jP(t,e){if(t instanceof HTMLAnchorElement)e(t);else if(t.hasAttribute("data-href")){let n=document.createElement("a");n.href=t.getAttribute("data-href"),t.hasAttribute("data-target")&&(n.target=t.getAttribute("data-target")),t.hasAttribute("data-rel")&&(n.rel=t.getAttribute("data-rel")),t.hasAttribute("data-download")&&(n.download=t.getAttribute("data-download")),t.hasAttribute("data-ping")&&(n.ping=t.getAttribute("data-ping")),t.hasAttribute("data-referrer-policy")&&(n.referrerPolicy=t.getAttribute("data-referrer-policy")),t.appendChild(n),e(n),t.removeChild(n)}}function KP(t,e){jP(t,n=>Dl(n,e))}function Ym(t){let e=U5();return{href:t!=null&&t.href?e.useHref(t==null?void 0:t.href):void 0,target:t==null?void 0:t.target,rel:t==null?void 0:t.rel,download:t==null?void 0:t.download,ping:t==null?void 0:t.ping,referrerPolicy:t==null?void 0:t.referrerPolicy}}let ps=new Map,N3=new Set;function jh(){if(typeof window>"u")return;function t(i){return"propertyName"in i}let e=i=>{if(!t(i)||!i.target)return;let a=ps.get(i.target);a||(a=new Set,ps.set(i.target,a),i.target.addEventListener("transitioncancel",n,{once:!0})),a.add(i.propertyName)},n=i=>{if(!t(i)||!i.target)return;let a=ps.get(i.target);if(a&&(a.delete(i.propertyName),a.size===0&&(i.target.removeEventListener("transitioncancel",n),ps.delete(i.target)),ps.size===0)){for(let c of N3)c();N3.clear()}};document.body.addEventListener("transitionrun",e),document.body.addEventListener("transitionend",n)}typeof document<"u"&&(document.readyState!=="loading"?jh():document.addEventListener("DOMContentLoaded",jh));function Xm(t){requestAnimationFrame(()=>{ps.size===0?t():N3.add(t)})}function Qm(){let t=x.useRef(new Map),e=x.useCallback((a,c,d,f)=>{let v=f!=null&&f.once?(...m)=>{t.current.delete(d),d(...m)}:d;t.current.set(d,{type:c,eventTarget:a,fn:v,options:f}),a.addEventListener(c,d,f)},[]),n=x.useCallback((a,c,d,f)=>{var v;let m=((v=t.current.get(d))===null||v===void 0?void 0:v.fn)||d;a.removeEventListener(c,m,f),t.current.delete(d)},[]),i=x.useCallback(()=>{t.current.forEach((a,c)=>{n(a.eventTarget,a.type,c,a.options)})},[n]);return x.useEffect(()=>i,[i]),{addGlobalListener:e,removeGlobalListener:n,removeAllGlobalListeners:i}}function Jm(t,e){let{id:n,"aria-label":i,"aria-labelledby":a}=t;return n=Qn(n),a&&i?a=[...new Set([n,...a.trim().split(/\s+/)])].join(" "):a&&(a=a.trim().split(/\s+/).join(" ")),!i&&!a&&e&&(i=e),{id:n,"aria-label":i,"aria-labelledby":a}}function A2(t){const e=x.useRef(null);return x.useMemo(()=>({get current(){return e.current},set current(n){e.current=n,typeof t=="function"?t(n):t&&(t.current=n)}}),[t])}function WP(){return typeof window.ResizeObserver<"u"}function $5(t){const{ref:e,box:n,onResize:i}=t;x.useEffect(()=>{let a=e==null?void 0:e.current;if(a)if(WP()){const c=new window.ResizeObserver(d=>{d.length&&i()});return c.observe(a,{box:n}),()=>{a&&c.unobserve(a)}}else return window.addEventListener("resize",i,!1),()=>{window.removeEventListener("resize",i,!1)}},[i,e,n])}function Ip(t,e){C0(()=>{if(t&&t.ref&&e)return t.ref.current=e.current,()=>{t.ref&&(t.ref.current=null)}})}function jc(t,e){let n=window.getComputedStyle(t),i=/(auto|scroll)/.test(n.overflow+n.overflowX+n.overflowY);return i&&e&&(i=t.scrollHeight!==t.clientHeight||t.scrollWidth!==t.clientWidth),i}function e8(t,e){let n=t;for(jc(n,e)&&(n=n.parentElement);n&&!jc(n,e);)n=n.parentElement;return n||document.scrollingElement||document.documentElement}function UP(t,e){const n=[];for(;t&&t!==document.documentElement;)jc(t,e)&&n.push(t),t=t.parentElement;return n}let wr=typeof document<"u"&&window.visualViewport;function GP(){let t=M2(),[e,n]=x.useState(()=>t?{width:0,height:0}:Kh());return x.useEffect(()=>{let i=()=>{n(a=>{let c=Kh();return c.width===a.width&&c.height===a.height?a:c})};return wr?wr.addEventListener("resize",i):window.addEventListener("resize",i),()=>{wr?wr.removeEventListener("resize",i):window.removeEventListener("resize",i)}},[]),e}function Kh(){return{width:wr&&(wr==null?void 0:wr.width)||window.innerWidth,height:wr&&(wr==null?void 0:wr.height)||window.innerHeight}}let qP=0;const N7=new Map;function YP(t){let[e,n]=x.useState();return C0(()=>{if(!t)return;let i=N7.get(t);if(i)n(i.element.id);else{let a=`react-aria-description-${qP++}`;n(a);let c=document.createElement("div");c.id=a,c.style.display="none",c.textContent=t,document.body.appendChild(c),i={refCount:0,element:c},N7.set(t,i)}return i.refCount++,()=>{i&&--i.refCount===0&&(i.element.remove(),N7.delete(t))}},[t]),{"aria-describedby":t?e:void 0}}function Wh(t,e,n,i){let a=dn(n),c=n==null;x.useEffect(()=>{if(c||!t.current)return;let d=t.current;return d.addEventListener(e,a,i),()=>{d.removeEventListener(e,a,i)}},[t,e,i,c,a])}function t8(t,e){let n=Uh(t,e,"left"),i=Uh(t,e,"top"),a=e.offsetWidth,c=e.offsetHeight,d=t.scrollLeft,f=t.scrollTop,{borderTopWidth:v,borderLeftWidth:m}=getComputedStyle(t),g=t.scrollLeft+parseInt(m,10),b=t.scrollTop+parseInt(v,10),S=g+t.clientWidth,C=b+t.clientHeight;n<=d?d=n-parseInt(m,10):n+a>S&&(d+=n+a-S),i<=b?f=i-parseInt(v,10):i+c>C&&(f+=i+c-C),t.scrollLeft=d,t.scrollTop=f}function Uh(t,e,n){const i=n==="left"?"offsetLeft":"offsetTop";let a=0;for(;e.offsetParent&&(a+=e[i],e.offsetParent!==t);){if(e.offsetParent.contains(t)){a-=t[i];break}e=e.offsetParent}return a}function Gh(t,e){if(document.contains(t)){let d=document.scrollingElement||document.documentElement;if(window.getComputedStyle(d).overflow==="hidden"){let v=UP(t);for(let m of v)t8(m,t)}else{var n;let{left:v,top:m}=t.getBoundingClientRect();t==null||(n=t.scrollIntoView)===null||n===void 0||n.call(t,{block:"nearest"});let{left:g,top:b}=t.getBoundingClientRect();if(Math.abs(v-g)>1||Math.abs(m-b)>1){var i,a,c;e==null||(a=e.containingElement)===null||a===void 0||(i=a.scrollIntoView)===null||i===void 0||i.call(a,{block:"center",inline:"center"}),(c=t.scrollIntoView)===null||c===void 0||c.call(t,{block:"nearest"})}}}}function H3(t){return t.mozInputSource===0&&t.isTrusted?!0:qm()&&t.pointerType?t.type==="click"&&t.buttons===1:t.detail===0&&!t.pointerType}function XP(t){return!qm()&&t.width===0&&t.height===0||t.width===1&&t.height===1&&t.pressure===0&&t.detail===0&&t.pointerType==="mouse"}function Fp(t,e,n){let i=x.useRef(e),a=dn(()=>{n&&n(i.current)});x.useEffect(()=>{var c;let d=t==null||(c=t.current)===null||c===void 0?void 0:c.form;return d==null||d.addEventListener("reset",a),()=>{d==null||d.removeEventListener("reset",a)}},[t,a])}let ms="default",z3="",u5=new WeakMap;function qh(t){if(W5()){if(ms==="default"){const e=z0(t);z3=e.documentElement.style.webkitUserSelect,e.documentElement.style.webkitUserSelect="none"}ms="disabled"}else(t instanceof HTMLElement||t instanceof SVGElement)&&(u5.set(t,t.style.userSelect),t.style.userSelect="none")}function Xd(t){if(W5()){if(ms!=="disabled")return;ms="restoring",setTimeout(()=>{Xm(()=>{if(ms==="restoring"){const e=z0(t);e.documentElement.style.webkitUserSelect==="none"&&(e.documentElement.style.webkitUserSelect=z3||""),z3="",ms="default"}})},300)}else if((t instanceof HTMLElement||t instanceof SVGElement)&&t&&u5.has(t)){let e=u5.get(t);t.style.userSelect==="none"&&(t.style.userSelect=e),t.getAttribute("style")===""&&t.removeAttribute("style"),u5.delete(t)}}const Kc=ee.createContext({register:()=>{}});Kc.displayName="PressResponderContext";function QP(t,e){return e.get?e.get.call(t):e.value}function n8(t,e,n){if(!e.has(t))throw new TypeError("attempted to "+n+" private field on non-instance");return e.get(t)}function JP(t,e){var n=n8(t,e,"get");return QP(t,n)}function eE(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function tE(t,e,n){eE(t,e),e.set(t,n)}function nE(t,e,n){if(e.set)e.set.call(t,n);else{if(!e.writable)throw new TypeError("attempted to set read only private field");e.value=n}}function Yh(t,e,n){var i=n8(t,e,"set");return nE(t,i,n),n}function rE(t){let e=x.useContext(Kc);if(e){let{register:n,...i}=e;t=qe(i,t),n()}return Ip(e,t.ref),t}var Qd=new WeakMap;class Jd{continuePropagation(){Yh(this,Qd,!1)}get shouldStopPropagation(){return JP(this,Qd)}constructor(e,n,i,a){tE(this,Qd,{writable:!0,value:void 0}),Yh(this,Qd,!0);var c;let d=(c=a==null?void 0:a.target)!==null&&c!==void 0?c:i.currentTarget;const f=d==null?void 0:d.getBoundingClientRect();let v,m=0,g,b=null;i.clientX!=null&&i.clientY!=null&&(g=i.clientX,b=i.clientY),f&&(g!=null&&b!=null?(v=g-f.left,m=b-f.top):(v=f.width/2,m=f.height/2)),this.type=e,this.pointerType=n,this.target=i.currentTarget,this.shiftKey=i.shiftKey,this.metaKey=i.metaKey,this.ctrlKey=i.ctrlKey,this.altKey=i.altKey,this.x=v,this.y=m}}const Xh=Symbol("linkClicked");function Es(t){let{onPress:e,onPressChange:n,onPressStart:i,onPressEnd:a,onPressUp:c,isDisabled:d,isPressed:f,preventFocusOnPress:v,shouldCancelOnPointerExit:m,allowTextSelectionOnPress:g,ref:b,...S}=rE(t),[C,P]=x.useState(!1),T=x.useRef({isPressed:!1,ignoreEmulatedMouseEvents:!1,ignoreClickAfterPress:!1,didFirePressStart:!1,isTriggeringEvent:!1,activePointerId:null,target:null,isOverTarget:!1,pointerType:null}),{addGlobalListener:A,removeAllGlobalListeners:V}=Qm(),R=dn((D,ie)=>{let j=T.current;if(d||j.didFirePressStart)return!1;let X=!0;if(j.isTriggeringEvent=!0,i){let xe=new Jd("pressstart",ie,D);i(xe),X=xe.shouldStopPropagation}return n&&n(!0),j.isTriggeringEvent=!1,j.didFirePressStart=!0,P(!0),X}),F=dn((D,ie,j=!0)=>{let X=T.current;if(!X.didFirePressStart)return!1;X.ignoreClickAfterPress=!0,X.didFirePressStart=!1,X.isTriggeringEvent=!0;let xe=!0;if(a){let G=new Jd("pressend",ie,D);a(G),xe=G.shouldStopPropagation}if(n&&n(!1),P(!1),e&&j&&!d){let G=new Jd("press",ie,D);e(G),xe&&(xe=G.shouldStopPropagation)}return X.isTriggeringEvent=!1,xe}),N=dn((D,ie)=>{let j=T.current;if(d)return!1;if(c){j.isTriggeringEvent=!0;let X=new Jd("pressup",ie,D);return c(X),j.isTriggeringEvent=!1,X.shouldStopPropagation}return!0}),z=dn(D=>{let ie=T.current;ie.isPressed&&ie.target&&(ie.isOverTarget&&ie.pointerType!=null&&F(ci(ie.target,D),ie.pointerType,!1),ie.isPressed=!1,ie.isOverTarget=!1,ie.activePointerId=null,ie.pointerType=null,V(),g||Xd(ie.target))}),U=dn(D=>{m&&z(D)}),le=x.useMemo(()=>{let D=T.current,ie={onKeyDown(X){if(H7(X.nativeEvent,X.currentTarget)&&X.currentTarget.contains(X.target)){var xe;Jh(X.target,X.key)&&X.preventDefault();let G=!0;if(!D.isPressed&&!X.repeat){D.target=X.currentTarget,D.isPressed=!0,G=R(X,"keyboard");let Q=X.currentTarget,he=_e=>{H7(_e,Q)&&!_e.repeat&&Q.contains(_e.target)&&D.target&&N(ci(D.target,_e),"keyboard")};A(z0(X.currentTarget),"keyup",vo(he,j),!0)}G&&X.stopPropagation(),X.metaKey&&ho()&&((xe=D.metaKeyEvents)===null||xe===void 0||xe.set(X.key,X.nativeEvent))}else X.key==="Meta"&&(D.metaKeyEvents=new Map)},onClick(X){if(!(X&&!X.currentTarget.contains(X.target))&&X&&X.button===0&&!D.isTriggeringEvent&&!Dl.isOpening){let xe=!0;if(d&&X.preventDefault(),!D.ignoreClickAfterPress&&!D.ignoreEmulatedMouseEvents&&!D.isPressed&&(D.pointerType==="virtual"||H3(X.nativeEvent))){!d&&!v&&qn(X.currentTarget);let G=R(X,"virtual"),Q=N(X,"virtual"),he=F(X,"virtual");xe=G&&Q&&he}D.ignoreEmulatedMouseEvents=!1,D.ignoreClickAfterPress=!1,xe&&X.stopPropagation()}}},j=X=>{var xe;if(D.isPressed&&D.target&&H7(X,D.target)){var G;Jh(X.target,X.key)&&X.preventDefault();let he=X.target;F(ci(D.target,X),"keyboard",D.target.contains(he)),V(),X.key!=="Enter"&&Zp(D.target)&&D.target.contains(he)&&!X[Xh]&&(X[Xh]=!0,Dl(D.target,X,!1)),D.isPressed=!1,(G=D.metaKeyEvents)===null||G===void 0||G.delete(X.key)}else if(X.key==="Meta"&&(!((xe=D.metaKeyEvents)===null||xe===void 0)&&xe.size)){var Q;let he=D.metaKeyEvents;D.metaKeyEvents=void 0;for(let _e of he.values())(Q=D.target)===null||Q===void 0||Q.dispatchEvent(new KeyboardEvent("keyup",_e))}};if(typeof PointerEvent<"u"){ie.onPointerDown=Q=>{if(Q.button!==0||!Q.currentTarget.contains(Q.target))return;if(XP(Q.nativeEvent)){D.pointerType="virtual";return}z7(Q.currentTarget)&&Q.preventDefault(),D.pointerType=Q.pointerType;let he=!0;D.isPressed||(D.isPressed=!0,D.isOverTarget=!0,D.activePointerId=Q.pointerId,D.target=Q.currentTarget,!d&&!v&&qn(Q.currentTarget),g||qh(D.target),he=R(Q,D.pointerType),A(z0(Q.currentTarget),"pointermove",X,!1),A(z0(Q.currentTarget),"pointerup",xe,!1),A(z0(Q.currentTarget),"pointercancel",G,!1)),he&&Q.stopPropagation()},ie.onMouseDown=Q=>{Q.currentTarget.contains(Q.target)&&Q.button===0&&(z7(Q.currentTarget)&&Q.preventDefault(),Q.stopPropagation())},ie.onPointerUp=Q=>{!Q.currentTarget.contains(Q.target)||D.pointerType==="virtual"||Q.button===0&&us(Q,Q.currentTarget)&&N(Q,D.pointerType||Q.pointerType)};let X=Q=>{Q.pointerId===D.activePointerId&&(D.target&&us(Q,D.target)?!D.isOverTarget&&D.pointerType!=null&&(D.isOverTarget=!0,R(ci(D.target,Q),D.pointerType)):D.target&&D.isOverTarget&&D.pointerType!=null&&(D.isOverTarget=!1,F(ci(D.target,Q),D.pointerType,!1),U(Q)))},xe=Q=>{Q.pointerId===D.activePointerId&&D.isPressed&&Q.button===0&&D.target&&(us(Q,D.target)&&D.pointerType!=null?F(ci(D.target,Q),D.pointerType):D.isOverTarget&&D.pointerType!=null&&F(ci(D.target,Q),D.pointerType,!1),D.isPressed=!1,D.isOverTarget=!1,D.activePointerId=null,D.pointerType=null,V(),g||Xd(D.target))},G=Q=>{z(Q)};ie.onDragStart=Q=>{Q.currentTarget.contains(Q.target)&&z(Q)}}else{ie.onMouseDown=G=>{if(G.button!==0||!G.currentTarget.contains(G.target))return;if(z7(G.currentTarget)&&G.preventDefault(),D.ignoreEmulatedMouseEvents){G.stopPropagation();return}D.isPressed=!0,D.isOverTarget=!0,D.target=G.currentTarget,D.pointerType=H3(G.nativeEvent)?"virtual":"mouse",!d&&!v&&qn(G.currentTarget),R(G,D.pointerType)&&G.stopPropagation(),A(z0(G.currentTarget),"mouseup",X,!1)},ie.onMouseEnter=G=>{if(!G.currentTarget.contains(G.target))return;let Q=!0;D.isPressed&&!D.ignoreEmulatedMouseEvents&&D.pointerType!=null&&(D.isOverTarget=!0,Q=R(G,D.pointerType)),Q&&G.stopPropagation()},ie.onMouseLeave=G=>{if(!G.currentTarget.contains(G.target))return;let Q=!0;D.isPressed&&!D.ignoreEmulatedMouseEvents&&D.pointerType!=null&&(D.isOverTarget=!1,Q=F(G,D.pointerType,!1),U(G)),Q&&G.stopPropagation()},ie.onMouseUp=G=>{G.currentTarget.contains(G.target)&&!D.ignoreEmulatedMouseEvents&&G.button===0&&N(G,D.pointerType||"mouse")};let X=G=>{if(G.button===0){if(D.isPressed=!1,V(),D.ignoreEmulatedMouseEvents){D.ignoreEmulatedMouseEvents=!1;return}D.target&&us(G,D.target)&&D.pointerType!=null?F(ci(D.target,G),D.pointerType):D.target&&D.isOverTarget&&D.pointerType!=null&&F(ci(D.target,G),D.pointerType,!1),D.isOverTarget=!1}};ie.onTouchStart=G=>{if(!G.currentTarget.contains(G.target))return;let Q=iE(G.nativeEvent);if(!Q)return;D.activePointerId=Q.identifier,D.ignoreEmulatedMouseEvents=!0,D.isOverTarget=!0,D.isPressed=!0,D.target=G.currentTarget,D.pointerType="touch",!d&&!v&&qn(G.currentTarget),g||qh(D.target),R(io(D.target,G),D.pointerType)&&G.stopPropagation(),A(Cr(G.currentTarget),"scroll",xe,!0)},ie.onTouchMove=G=>{if(!G.currentTarget.contains(G.target))return;if(!D.isPressed){G.stopPropagation();return}let Q=Qh(G.nativeEvent,D.activePointerId),he=!0;Q&&us(Q,G.currentTarget)?!D.isOverTarget&&D.pointerType!=null&&(D.isOverTarget=!0,he=R(io(D.target,G),D.pointerType)):D.isOverTarget&&D.pointerType!=null&&(D.isOverTarget=!1,he=F(io(D.target,G),D.pointerType,!1),U(io(D.target,G))),he&&G.stopPropagation()},ie.onTouchEnd=G=>{if(!G.currentTarget.contains(G.target))return;if(!D.isPressed){G.stopPropagation();return}let Q=Qh(G.nativeEvent,D.activePointerId),he=!0;Q&&us(Q,G.currentTarget)&&D.pointerType!=null?(N(io(D.target,G),D.pointerType),he=F(io(D.target,G),D.pointerType)):D.isOverTarget&&D.pointerType!=null&&(he=F(io(D.target,G),D.pointerType,!1)),he&&G.stopPropagation(),D.isPressed=!1,D.activePointerId=null,D.isOverTarget=!1,D.ignoreEmulatedMouseEvents=!0,D.target&&!g&&Xd(D.target),V()},ie.onTouchCancel=G=>{G.currentTarget.contains(G.target)&&(G.stopPropagation(),D.isPressed&&z(io(D.target,G)))};let xe=G=>{D.isPressed&&G.target.contains(D.target)&&z({currentTarget:D.target,shiftKey:!1,ctrlKey:!1,metaKey:!1,altKey:!1})};ie.onDragStart=G=>{G.currentTarget.contains(G.target)&&z(G)}}return ie},[A,d,v,V,g,z,U,F,R,N]);return x.useEffect(()=>()=>{var D;g||Xd((D=T.current.target)!==null&&D!==void 0?D:void 0)},[g]),{isPressed:f||C,pressProps:qe(S,le)}}function Zp(t){return t.tagName==="A"&&t.hasAttribute("href")}function H7(t,e){const{key:n,code:i}=t,a=e,c=a.getAttribute("role");return(n==="Enter"||n===" "||n==="Spacebar"||i==="Space")&&!(a instanceof Cr(a).HTMLInputElement&&!r8(a,n)||a instanceof Cr(a).HTMLTextAreaElement||a.isContentEditable)&&!((c==="link"||!c&&Zp(a))&&n!=="Enter")}function iE(t){const{targetTouches:e}=t;return e.length>0?e[0]:null}function Qh(t,e){const n=t.changedTouches;for(let i=0;ie.right||e.left>t.right||t.top>e.bottom||e.top>t.bottom)}function us(t,e){let n=e.getBoundingClientRect(),i=oE(t);return lE(n,i)}function z7(t){return!(t instanceof HTMLElement)||!t.hasAttribute("draggable")}function Jh(t,e){return t instanceof HTMLInputElement?!r8(t,e):t instanceof HTMLButtonElement?t.type!=="submit"&&t.type!=="reset":!Zp(t)}const aE=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function r8(t,e){return t.type==="checkbox"||t.type==="radio"?e===" ":aE.has(t.type)}const i8=ee.forwardRef(({children:t,...e},n)=>{let i=x.useRef(!1),a=x.useContext(Kc);n=A2(n||(a==null?void 0:a.ref));let c=qe(a||{},{...e,ref:n,register(){i.current=!0,a&&a.register()}});return Ip(a,n),x.useEffect(()=>{i.current||(console.warn("A PressResponder was rendered without a pressable child. Either call the usePress hook, or wrap your DOM node with component."),i.current=!0)},[]),ee.createElement(Kc.Provider,{value:c},t)});function sE({children:t}){let e=x.useMemo(()=>({register:()=>{}}),[]);return ee.createElement(Kc.Provider,{value:e},t)}class uE{isDefaultPrevented(){return this.nativeEvent.defaultPrevented}preventDefault(){this.defaultPrevented=!0,this.nativeEvent.preventDefault()}stopPropagation(){this.nativeEvent.stopPropagation(),this.isPropagationStopped=()=>!0}isPropagationStopped(){return!1}persist(){}constructor(e,n){this.nativeEvent=n,this.target=n.target,this.currentTarget=n.currentTarget,this.relatedTarget=n.relatedTarget,this.bubbles=n.bubbles,this.cancelable=n.cancelable,this.defaultPrevented=n.defaultPrevented,this.eventPhase=n.eventPhase,this.isTrusted=n.isTrusted,this.timeStamp=n.timeStamp,this.type=e}}function o8(t){let e=x.useRef({isFocused:!1,observer:null});C0(()=>{const i=e.current;return()=>{i.observer&&(i.observer.disconnect(),i.observer=null)}},[]);let n=dn(i=>{t==null||t(i)});return x.useCallback(i=>{if(i.target instanceof HTMLButtonElement||i.target instanceof HTMLInputElement||i.target instanceof HTMLTextAreaElement||i.target instanceof HTMLSelectElement){e.current.isFocused=!0;let a=i.target,c=d=>{e.current.isFocused=!1,a.disabled&&n(new uE("blur",d)),e.current.observer&&(e.current.observer.disconnect(),e.current.observer=null)};a.addEventListener("focusout",c,{once:!0}),e.current.observer=new MutationObserver(()=>{if(e.current.isFocused&&a.disabled){var d;(d=e.current.observer)===null||d===void 0||d.disconnect();let f=a===document.activeElement?null:document.activeElement;a.dispatchEvent(new FocusEvent("blur",{relatedTarget:f})),a.dispatchEvent(new FocusEvent("focusout",{bubbles:!0,relatedTarget:f}))}}),e.current.observer.observe(a,{attributes:!0,attributeFilter:["disabled"]})}},[n])}function Op(t){let{isDisabled:e,onFocus:n,onBlur:i,onFocusChange:a}=t;const c=x.useCallback(v=>{if(v.target===v.currentTarget)return i&&i(v),a&&a(!1),!0},[i,a]),d=o8(c),f=x.useCallback(v=>{const m=z0(v.target);v.target===v.currentTarget&&m.activeElement===v.target&&(n&&n(v),a&&a(!0),d(v))},[a,n,d]);return{focusProps:{onFocus:!e&&(n||a||i)?f:void 0,onBlur:!e&&(i||a)?c:void 0}}}let mi=null,Wc=new Set,Lc=new Map,Rl=!1,j3=!1;const cE={Tab:!0,Escape:!0};function G5(t,e){for(let n of Wc)n(t,e)}function dE(t){return!(t.metaKey||!ho()&&t.altKey||t.ctrlKey||t.key==="Control"||t.key==="Shift"||t.key==="Meta")}function S5(t){Rl=!0,dE(t)&&(mi="keyboard",G5("keyboard",t))}function $r(t){mi="pointer",(t.type==="mousedown"||t.type==="pointerdown")&&(Rl=!0,G5("pointer",t))}function l8(t){H3(t)&&(Rl=!0,mi="virtual")}function a8(t){t.target===window||t.target===document||(!Rl&&!j3&&(mi="virtual",G5("virtual",t)),Rl=!1,j3=!1)}function s8(){Rl=!1,j3=!0}function C5(t){if(typeof window>"u"||Lc.get(Cr(t)))return;const e=Cr(t),n=z0(t);let i=e.HTMLElement.prototype.focus;e.HTMLElement.prototype.focus=function(){Rl=!0,i.apply(this,arguments)},n.addEventListener("keydown",S5,!0),n.addEventListener("keyup",S5,!0),n.addEventListener("click",l8,!0),e.addEventListener("focus",a8,!0),e.addEventListener("blur",s8,!1),typeof PointerEvent<"u"?(n.addEventListener("pointerdown",$r,!0),n.addEventListener("pointermove",$r,!0),n.addEventListener("pointerup",$r,!0)):(n.addEventListener("mousedown",$r,!0),n.addEventListener("mousemove",$r,!0),n.addEventListener("mouseup",$r,!0)),e.addEventListener("beforeunload",()=>{u8(t)},{once:!0}),Lc.set(e,{focus:i})}const u8=(t,e)=>{const n=Cr(t),i=z0(t);e&&i.removeEventListener("DOMContentLoaded",e),Lc.has(n)&&(n.HTMLElement.prototype.focus=Lc.get(n).focus,i.removeEventListener("keydown",S5,!0),i.removeEventListener("keyup",S5,!0),i.removeEventListener("click",l8,!0),n.removeEventListener("focus",a8,!0),n.removeEventListener("blur",s8,!1),typeof PointerEvent<"u"?(i.removeEventListener("pointerdown",$r,!0),i.removeEventListener("pointermove",$r,!0),i.removeEventListener("pointerup",$r,!0)):(i.removeEventListener("mousedown",$r,!0),i.removeEventListener("mousemove",$r,!0),i.removeEventListener("mouseup",$r,!0)),Lc.delete(n))};function fE(t){const e=z0(t);let n;return e.readyState!=="loading"?C5(t):(n=()=>{C5(t)},e.addEventListener("DOMContentLoaded",n)),()=>u8(t,n)}typeof document<"u"&&fE();function ks(){return mi!=="pointer"}function Ts(){return mi}function c8(t){mi=t,G5(t,null)}function pE(){C5();let[t,e]=x.useState(mi);return x.useEffect(()=>{let n=()=>{e(mi)};return Wc.add(n),()=>{Wc.delete(n)}},[]),M2()?null:t}const vE=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function hE(t,e,n){var i;const a=typeof window<"u"?Cr(n==null?void 0:n.target).HTMLInputElement:HTMLInputElement,c=typeof window<"u"?Cr(n==null?void 0:n.target).HTMLTextAreaElement:HTMLTextAreaElement,d=typeof window<"u"?Cr(n==null?void 0:n.target).HTMLElement:HTMLElement,f=typeof window<"u"?Cr(n==null?void 0:n.target).KeyboardEvent:KeyboardEvent;return t=t||(n==null?void 0:n.target)instanceof a&&!vE.has(n==null||(i=n.target)===null||i===void 0?void 0:i.type)||(n==null?void 0:n.target)instanceof c||(n==null?void 0:n.target)instanceof d&&(n==null?void 0:n.target.isContentEditable),!(t&&e==="keyboard"&&n instanceof f&&!cE[n.key])}function mE(t,e,n){C5(),x.useEffect(()=>{let i=(a,c)=>{hE(!!(n!=null&&n.isTextInput),a,c)&&t(ks())};return Wc.add(i),()=>{Wc.delete(i)}},e)}function l1(t){let{isDisabled:e,onBlurWithin:n,onFocusWithin:i,onFocusWithinChange:a}=t,c=x.useRef({isFocusWithin:!1}),d=x.useCallback(m=>{c.current.isFocusWithin&&!m.currentTarget.contains(m.relatedTarget)&&(c.current.isFocusWithin=!1,n&&n(m),a&&a(!1))},[n,a,c]),f=o8(d),v=x.useCallback(m=>{!c.current.isFocusWithin&&document.activeElement===m.target&&(i&&i(m),a&&a(!0),c.current.isFocusWithin=!0,f(m))},[i,a,f]);return e?{focusWithinProps:{onFocus:void 0,onBlur:void 0}}:{focusWithinProps:{onFocus:v,onBlur:d}}}let _5=!1,j7=0;function K3(){_5=!0,setTimeout(()=>{_5=!1},50)}function e4(t){t.pointerType==="touch"&&K3()}function gE(){if(!(typeof document>"u"))return typeof PointerEvent<"u"?document.addEventListener("pointerup",e4):document.addEventListener("touchend",K3),j7++,()=>{j7--,!(j7>0)&&(typeof PointerEvent<"u"?document.removeEventListener("pointerup",e4):document.removeEventListener("touchend",K3))}}function Jn(t){let{onHoverStart:e,onHoverChange:n,onHoverEnd:i,isDisabled:a}=t,[c,d]=x.useState(!1),f=x.useRef({isHovered:!1,ignoreEmulatedMouseEvents:!1,pointerType:"",target:null}).current;x.useEffect(gE,[]);let{hoverProps:v,triggerHoverEnd:m}=x.useMemo(()=>{let g=(C,P)=>{if(f.pointerType=P,a||P==="touch"||f.isHovered||!C.currentTarget.contains(C.target))return;f.isHovered=!0;let T=C.currentTarget;f.target=T,e&&e({type:"hoverstart",target:T,pointerType:P}),n&&n(!0),d(!0)},b=(C,P)=>{if(f.pointerType="",f.target=null,P==="touch"||!f.isHovered)return;f.isHovered=!1;let T=C.currentTarget;i&&i({type:"hoverend",target:T,pointerType:P}),n&&n(!1),d(!1)},S={};return typeof PointerEvent<"u"?(S.onPointerEnter=C=>{_5&&C.pointerType==="mouse"||g(C,C.pointerType)},S.onPointerLeave=C=>{!a&&C.currentTarget.contains(C.target)&&b(C,C.pointerType)}):(S.onTouchStart=()=>{f.ignoreEmulatedMouseEvents=!0},S.onMouseEnter=C=>{!f.ignoreEmulatedMouseEvents&&!_5&&g(C,"mouse"),f.ignoreEmulatedMouseEvents=!1},S.onMouseLeave=C=>{!a&&C.currentTarget.contains(C.target)&&b(C,"mouse")}),{hoverProps:S,triggerHoverEnd:b}},[e,n,i,a,f]);return x.useEffect(()=>{a&&m({currentTarget:f.target},f.pointerType)},[a]),{hoverProps:v,isHovered:c}}function d8(t){let{ref:e,onInteractOutside:n,isDisabled:i,onInteractOutsideStart:a}=t,c=x.useRef({isPointerDown:!1,ignoreEmulatedMouseEvents:!1}),d=dn(v=>{n&&e5(v,e)&&(a&&a(v),c.current.isPointerDown=!0)}),f=dn(v=>{n&&n(v)});x.useEffect(()=>{let v=c.current;if(i)return;const m=e.current,g=z0(m);if(typeof PointerEvent<"u"){let b=S=>{v.isPointerDown&&e5(S,e)&&f(S),v.isPointerDown=!1};return g.addEventListener("pointerdown",d,!0),g.addEventListener("pointerup",b,!0),()=>{g.removeEventListener("pointerdown",d,!0),g.removeEventListener("pointerup",b,!0)}}else{let b=C=>{v.ignoreEmulatedMouseEvents?v.ignoreEmulatedMouseEvents=!1:v.isPointerDown&&e5(C,e)&&f(C),v.isPointerDown=!1},S=C=>{v.ignoreEmulatedMouseEvents=!0,v.isPointerDown&&e5(C,e)&&f(C),v.isPointerDown=!1};return g.addEventListener("mousedown",d,!0),g.addEventListener("mouseup",b,!0),g.addEventListener("touchstart",d,!0),g.addEventListener("touchend",S,!0),()=>{g.removeEventListener("mousedown",d,!0),g.removeEventListener("mouseup",b,!0),g.removeEventListener("touchstart",d,!0),g.removeEventListener("touchend",S,!0)}}},[e,i,d,f])}function e5(t,e){if(t.button>0)return!1;if(t.target){const n=t.target.ownerDocument;if(!n||!n.documentElement.contains(t.target)||t.target.closest("[data-react-aria-top-layer]"))return!1}return e.current&&!e.current.contains(t.target)}function t4(t){if(!t)return;let e=!0;return n=>{let i={...n,preventDefault(){n.preventDefault()},isDefaultPrevented(){return n.isDefaultPrevented()},stopPropagation(){console.error("stopPropagation is now the default behavior for events in React Spectrum. You can use continuePropagation() to revert this behavior.")},continuePropagation(){e=!1}};t(i),e&&n.stopPropagation()}}function f8(t){return{keyboardProps:t.isDisabled?{}:{onKeyDown:t4(t.onKeyDown),onKeyUp:t4(t.onKeyUp)}}}const yE=500;function p8(t){let{isDisabled:e,onLongPressStart:n,onLongPressEnd:i,onLongPress:a,threshold:c=yE,accessibilityDescription:d}=t;const f=x.useRef(void 0);let{addGlobalListener:v,removeGlobalListener:m}=Qm(),{pressProps:g}=Es({isDisabled:e,onPressStart(S){if(S.continuePropagation(),(S.pointerType==="mouse"||S.pointerType==="touch")&&(n&&n({...S,type:"longpressstart"}),f.current=setTimeout(()=>{S.target.dispatchEvent(new PointerEvent("pointercancel",{bubbles:!0})),a&&a({...S,type:"longpress"}),f.current=void 0},c),S.pointerType==="touch")){let C=P=>{P.preventDefault()};v(S.target,"contextmenu",C,{once:!0}),v(window,"pointerup",()=>{setTimeout(()=>{m(S.target,"contextmenu",C)},30)},{once:!0})}},onPressEnd(S){f.current&&clearTimeout(f.current),i&&(S.pointerType==="mouse"||S.pointerType==="touch")&&i({...S,type:"longpressend"})}}),b=YP(a&&!e?d:void 0);return{longPressProps:qe(g,b)}}function Bl(t){const e=z0(t);if(Ts()==="virtual"){let n=e.activeElement;Xm(()=>{e.activeElement===n&&t.isConnected&&qn(t)})}else qn(t)}function bE(t){const e=Cr(t);if(!(t instanceof e.HTMLElement)&&!(t instanceof e.SVGElement))return!1;let{display:n,visibility:i}=t.style,a=n!=="none"&&i!=="hidden"&&i!=="collapse";if(a){const{getComputedStyle:c}=t.ownerDocument.defaultView;let{display:d,visibility:f}=c(t);a=d!=="none"&&f!=="hidden"&&f!=="collapse"}return a}function xE(t,e){return!t.hasAttribute("hidden")&&!t.hasAttribute("data-react-aria-prevent-focus")&&(t.nodeName==="DETAILS"&&e&&e.nodeName!=="SUMMARY"?t.hasAttribute("open"):!0)}function v8(t,e){return t.nodeName!=="#comment"&&bE(t)&&xE(t,e)&&(!t.parentElement||v8(t.parentElement,t))}const n4=ee.createContext(null),W3="react-aria-focus-scope-restore";let F0=null;function q5(t){let{children:e,contain:n,restoreFocus:i,autoFocus:a}=t,c=x.useRef(null),d=x.useRef(null),f=x.useRef([]),{parentNode:v}=x.useContext(n4)||{},m=x.useMemo(()=>new G3({scopeRef:f}),[f]);C0(()=>{let S=v||gt.root;if(gt.getTreeNode(S.scopeRef)&&F0&&!E5(F0,S.scopeRef)){let C=gt.getTreeNode(F0);C&&(S=C)}S.addChild(m),gt.addNode(m)},[m,v]),C0(()=>{let S=gt.getTreeNode(f);S&&(S.contain=!!n)},[n]),C0(()=>{var S;let C=(S=c.current)===null||S===void 0?void 0:S.nextSibling,P=[],T=A=>A.stopPropagation();for(;C&&C!==d.current;)P.push(C),C.addEventListener(W3,T),C=C.nextSibling;return f.current=P,()=>{for(let A of P)A.removeEventListener(W3,T)}},[e]),EE(f,i,n),CE(f,n),TE(f,i,n),PE(f,a),x.useEffect(()=>{const S=z0(f.current?f.current[0]:void 0).activeElement;let C=null;if(en(S,f.current)){for(let P of gt.traverse())P.scopeRef&&en(S,P.scopeRef.current)&&(C=P);C===gt.getTreeNode(f)&&(F0=C.scopeRef)}},[f]),C0(()=>()=>{var S,C,P;let T=(P=(C=gt.getTreeNode(f))===null||C===void 0||(S=C.parent)===null||S===void 0?void 0:S.scopeRef)!==null&&P!==void 0?P:null;(f===F0||E5(f,F0))&&(!T||gt.getTreeNode(T))&&(F0=T),gt.removeTreeNode(f)},[f]);let g=x.useMemo(()=>wE(f),[]),b=x.useMemo(()=>({focusManager:g,parentNode:m}),[m,g]);return ee.createElement(n4.Provider,{value:b},ee.createElement("span",{"data-focus-scope-start":!0,hidden:!0,ref:c}),e,ee.createElement("span",{"data-focus-scope-end":!0,hidden:!0,ref:d}))}function wE(t){return{focusNext(e={}){let n=t.current,{from:i,tabbable:a,wrap:c,accept:d}=e,f=i||z0(n[0]).activeElement,v=n[0].previousElementSibling,m=kl(n),g=vi(m,{tabbable:a,accept:d},n);g.currentNode=en(f,n)?f:v;let b=g.nextNode();return!b&&c&&(g.currentNode=v,b=g.nextNode()),b&&pi(b,!0),b},focusPrevious(e={}){let n=t.current,{from:i,tabbable:a,wrap:c,accept:d}=e,f=i||z0(n[0]).activeElement,v=n[n.length-1].nextElementSibling,m=kl(n),g=vi(m,{tabbable:a,accept:d},n);g.currentNode=en(f,n)?f:v;let b=g.previousNode();return!b&&c&&(g.currentNode=v,b=g.previousNode()),b&&pi(b,!0),b},focusFirst(e={}){let n=t.current,{tabbable:i,accept:a}=e,c=kl(n),d=vi(c,{tabbable:i,accept:a},n);d.currentNode=n[0].previousElementSibling;let f=d.nextNode();return f&&pi(f,!0),f},focusLast(e={}){let n=t.current,{tabbable:i,accept:a}=e,c=kl(n),d=vi(c,{tabbable:i,accept:a},n);d.currentNode=n[n.length-1].nextElementSibling;let f=d.previousNode();return f&&pi(f,!0),f}}}const Np=["input:not([disabled]):not([type=hidden])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[contenteditable]"],$E=Np.join(":not([hidden]),")+",[tabindex]:not([disabled]):not([hidden])";Np.push('[tabindex]:not([tabindex="-1"]):not([disabled])');const SE=Np.join(':not([hidden]):not([tabindex="-1"]),');function kl(t){return t[0].parentElement}function Ec(t){let e=gt.getTreeNode(F0);for(;e&&e.scopeRef!==t;){if(e.contain)return!1;e=e.parent}return!0}function CE(t,e){let n=x.useRef(void 0),i=x.useRef(void 0);C0(()=>{let a=t.current;if(!e){i.current&&(cancelAnimationFrame(i.current),i.current=void 0);return}const c=z0(a?a[0]:void 0);let d=m=>{if(m.key!=="Tab"||m.altKey||m.ctrlKey||m.metaKey||!Ec(t)||m.isComposing)return;let g=c.activeElement,b=t.current;if(!b||!en(g,b))return;let S=kl(b),C=vi(S,{tabbable:!0},b);if(!g)return;C.currentNode=g;let P=m.shiftKey?C.previousNode():C.nextNode();P||(C.currentNode=m.shiftKey?b[b.length-1].nextElementSibling:b[0].previousElementSibling,P=m.shiftKey?C.previousNode():C.nextNode()),m.preventDefault(),P&&pi(P,!0)},f=m=>{(!F0||E5(F0,t))&&en(m.target,t.current)?(F0=t,n.current=m.target):Ec(t)&&!P5(m.target,t)?n.current?n.current.focus():F0&&F0.current&&U3(F0.current):Ec(t)&&(n.current=m.target)},v=m=>{i.current&&cancelAnimationFrame(i.current),i.current=requestAnimationFrame(()=>{if(c.activeElement&&Ec(t)&&!P5(c.activeElement,t))if(F0=t,c.body.contains(m.target)){var g;n.current=m.target,(g=n.current)===null||g===void 0||g.focus()}else F0.current&&U3(F0.current)})};return c.addEventListener("keydown",d,!1),c.addEventListener("focusin",f,!1),a==null||a.forEach(m=>m.addEventListener("focusin",f,!1)),a==null||a.forEach(m=>m.addEventListener("focusout",v,!1)),()=>{c.removeEventListener("keydown",d,!1),c.removeEventListener("focusin",f,!1),a==null||a.forEach(m=>m.removeEventListener("focusin",f,!1)),a==null||a.forEach(m=>m.removeEventListener("focusout",v,!1))}},[t,e]),C0(()=>()=>{i.current&&cancelAnimationFrame(i.current)},[i])}function h8(t){return P5(t)}function en(t,e){return!t||!e?!1:e.some(n=>n.contains(t))}function P5(t,e=null){if(t instanceof Element&&t.closest("[data-react-aria-top-layer]"))return!0;for(let{scopeRef:n}of gt.traverse(gt.getTreeNode(e)))if(n&&en(t,n.current))return!0;return!1}function _E(t){return P5(t,F0)}function E5(t,e){var n;let i=(n=gt.getTreeNode(e))===null||n===void 0?void 0:n.parent;for(;i;){if(i.scopeRef===t)return!0;i=i.parent}return!1}function pi(t,e=!1){if(t!=null&&!e)try{Bl(t)}catch{}else if(t!=null)try{t.focus()}catch{}}function m8(t,e=!0){let n=t[0].previousElementSibling,i=kl(t),a=vi(i,{tabbable:e},t);a.currentNode=n;let c=a.nextNode();return e&&!c&&(i=kl(t),a=vi(i,{tabbable:!1},t),a.currentNode=n,c=a.nextNode()),c}function U3(t,e=!0){pi(m8(t,e))}function PE(t,e){const n=ee.useRef(e);x.useEffect(()=>{if(n.current){F0=t;const i=z0(t.current?t.current[0]:void 0);!en(i.activeElement,F0.current)&&t.current&&U3(t.current)}n.current=!1},[t])}function EE(t,e,n){C0(()=>{if(e||n)return;let i=t.current;const a=z0(i?i[0]:void 0);let c=d=>{let f=d.target;en(f,t.current)?F0=t:h8(f)||(F0=null)};return a.addEventListener("focusin",c,!1),i==null||i.forEach(d=>d.addEventListener("focusin",c,!1)),()=>{a.removeEventListener("focusin",c,!1),i==null||i.forEach(d=>d.removeEventListener("focusin",c,!1))}},[t,e,n])}function kE(t){let e=gt.getTreeNode(F0);for(;e&&e.scopeRef!==t;){if(e.nodeToRestore)return!1;e=e.parent}return(e==null?void 0:e.scopeRef)===t}function TE(t,e,n){const i=x.useRef(typeof document<"u"?z0(t.current?t.current[0]:void 0).activeElement:null);C0(()=>{let a=t.current;const c=z0(a?a[0]:void 0);if(!e||n)return;let d=()=>{(!F0||E5(F0,t))&&en(c.activeElement,t.current)&&(F0=t)};return c.addEventListener("focusin",d,!1),a==null||a.forEach(f=>f.addEventListener("focusin",d,!1)),()=>{c.removeEventListener("focusin",d,!1),a==null||a.forEach(f=>f.removeEventListener("focusin",d,!1))}},[t,n]),C0(()=>{const a=z0(t.current?t.current[0]:void 0);if(!e)return;let c=d=>{if(d.key!=="Tab"||d.altKey||d.ctrlKey||d.metaKey||!Ec(t)||d.isComposing)return;let f=a.activeElement;if(!en(f,t.current))return;let v=gt.getTreeNode(t);if(!v)return;let m=v.nodeToRestore,g=vi(a.body,{tabbable:!0});g.currentNode=f;let b=d.shiftKey?g.previousNode():g.nextNode();if((!m||!a.body.contains(m)||m===a.body)&&(m=void 0,v.nodeToRestore=void 0),(!b||!en(b,t.current))&&m){g.currentNode=m;do b=d.shiftKey?g.previousNode():g.nextNode();while(en(b,t.current));d.preventDefault(),d.stopPropagation(),b?pi(b,!0):h8(m)?pi(m,!0):f.blur()}};return n||a.addEventListener("keydown",c,!0),()=>{n||a.removeEventListener("keydown",c,!0)}},[t,e,n]),C0(()=>{const a=z0(t.current?t.current[0]:void 0);if(!e)return;let c=gt.getTreeNode(t);if(c){var d;return c.nodeToRestore=(d=i.current)!==null&&d!==void 0?d:void 0,()=>{let f=gt.getTreeNode(t);if(!f)return;let v=f.nodeToRestore;if(e&&v&&(en(a.activeElement,t.current)||a.activeElement===a.body&&kE(t))){let m=gt.clone();requestAnimationFrame(()=>{if(a.activeElement===a.body){let g=m.getTreeNode(t);for(;g;){if(g.nodeToRestore&&g.nodeToRestore.isConnected){r4(g.nodeToRestore);return}g=g.parent}for(g=m.getTreeNode(t);g;){if(g.scopeRef&&g.scopeRef.current&>.getTreeNode(g.scopeRef)){let b=m8(g.scopeRef.current,!0);r4(b);return}g=g.parent}}})}}}},[t,e])}function r4(t){t.dispatchEvent(new CustomEvent(W3,{bubbles:!0,cancelable:!0}))&&pi(t)}function vi(t,e,n){let i=e!=null&&e.tabbable?SE:$E,a=z0(t).createTreeWalker(t,NodeFilter.SHOW_ELEMENT,{acceptNode(c){var d;return!(e==null||(d=e.from)===null||d===void 0)&&d.contains(c)?NodeFilter.FILTER_REJECT:c.matches(i)&&v8(c)&&(!n||en(c,n))&&(!(e!=null&&e.accept)||e.accept(c))?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});return e!=null&&e.from&&(a.currentNode=e.from),a}class Hp{get size(){return this.fastMap.size}getTreeNode(e){return this.fastMap.get(e)}addTreeNode(e,n,i){let a=this.fastMap.get(n??null);if(!a)return;let c=new G3({scopeRef:e});a.addChild(c),c.parent=a,this.fastMap.set(e,c),i&&(c.nodeToRestore=i)}addNode(e){this.fastMap.set(e.scopeRef,e)}removeTreeNode(e){if(e===null)return;let n=this.fastMap.get(e);if(!n)return;let i=n.parent;for(let c of this.traverse())c!==n&&n.nodeToRestore&&c.nodeToRestore&&n.scopeRef&&n.scopeRef.current&&en(c.nodeToRestore,n.scopeRef.current)&&(c.nodeToRestore=n.nodeToRestore);let a=n.children;i&&(i.removeChild(n),a.size>0&&a.forEach(c=>i&&i.addChild(c))),this.fastMap.delete(n.scopeRef)}*traverse(e=this.root){if(e.scopeRef!=null&&(yield e),e.children.size>0)for(let n of e.children)yield*this.traverse(n)}clone(){var e;let n=new Hp;var i;for(let a of this.traverse())n.addTreeNode(a.scopeRef,(i=(e=a.parent)===null||e===void 0?void 0:e.scopeRef)!==null&&i!==void 0?i:null,a.nodeToRestore);return n}constructor(){this.fastMap=new Map,this.root=new G3({scopeRef:null}),this.fastMap.set(null,this.root)}}class G3{addChild(e){this.children.add(e),e.parent=this}removeChild(e){this.children.delete(e),e.parent=void 0}constructor(e){this.children=new Set,this.contain=!1,this.scopeRef=e.scopeRef}}let gt=new Hp;function L2(t={}){let{autoFocus:e=!1,isTextInput:n,within:i}=t,a=x.useRef({isFocused:!1,isFocusVisible:e||ks()}),[c,d]=x.useState(!1),[f,v]=x.useState(()=>a.current.isFocused&&a.current.isFocusVisible),m=x.useCallback(()=>v(a.current.isFocused&&a.current.isFocusVisible),[]),g=x.useCallback(C=>{a.current.isFocused=C,d(C),m()},[m]);mE(C=>{a.current.isFocusVisible=C,m()},[],{isTextInput:n});let{focusProps:b}=Op({isDisabled:i,onFocusChange:g}),{focusWithinProps:S}=l1({isDisabled:!i,onFocusWithinChange:g});return{isFocused:c,isFocusVisible:f,focusProps:i?S:b}}let g8=ee.createContext(null);function ME(t){let e=x.useContext(g8)||{};Ip(e,t);let{ref:n,...i}=e;return i}function AE(t,e){let{children:n,...i}=t,a=A2(e),c={...i,ref:a};return ee.createElement(g8.Provider,{value:c},n)}let LE=ee.forwardRef(AE);function Y5(t,e){let{focusProps:n}=Op(t),{keyboardProps:i}=f8(t),a=qe(n,i),c=ME(e),d=t.isDisabled?{}:c,f=x.useRef(t.autoFocus);return x.useEffect(()=>{f.current&&e.current&&Bl(e.current),f.current=!1},[e]),{focusableProps:qe({...a,tabIndex:t.excludeFromTabOrder&&!t.isDisabled?-1:void 0},d)}}const DE=x.createContext({contain:!0}),RE=()=>x.useContext(DE),BE=t=>{const{contain:e}=RE();return k.jsx(q5,{contain:e,...t})};var Is=$m();const zp=t1(Is),y8=x.forwardRef(({container:t=(a=>(a=globalThis==null?void 0:globalThis.document)==null?void 0:a.body)(),"data-test-id":e="portal",...n},i)=>{const[a,c]=x.useState(!1);return x.useEffect(()=>{c(!0)},[]),a&&t?Is.createPortal(k.jsx("div",{...n,ref:i,"data-test-id":e}),t):null});y8.displayName="Portal";const VE=({isOpen:t,lazy:e=!0,enforceFocus:n=!0,isModal:i=!1,canOutsideClickClose:a=!0,canEscapeKeyClose:c=!0,onClose:d,children:f})=>{const[v,m]=x.useState(t),g=x.useRef(null),b=x.useCallback(V=>{var R;const F=V.target,N=(R=g.current)==null?void 0:R.contains(F),z=!!F.closest("body");t&&a&&!N&&z&&typeof d=="function"&&d(V)},[a,t,d]),S=x.useCallback(()=>{requestAnimationFrame(()=>{if(!(!t||g.current===null||document.activeElement===null)&&!g.current.contains(document.activeElement)){const V=g.current.querySelector("[autofocus]"),R=g.current.querySelector("[tabindex]");V?V.focus():R&&R.focus()}})},[t]),C=x.useCallback(V=>{const R=V.target;n&&g.current&&!g.current.contains(R)&&(V.stopImmediatePropagation(),S())},[n,S]),P=x.useCallback(()=>{a&&document.addEventListener("mousedown",b),n&&document.addEventListener("focus",C,!0),i&&document.body.classList.add("has-overlay")},[b,C,a,n,i]),T=x.useCallback(()=>{document.removeEventListener("mousedown",b),document.removeEventListener("focus",C,!0),i&&document.body.classList.remove("has-overlay")},[b,C,i]);x.useEffect(()=>(t?P():T(),m(v||t),()=>{T()}),[t,P,T,v]);const A=V=>{c&&V.key==="Escape"&&(typeof d=="function"&&d(V),V.preventDefault())};return e&&!v?null:k.jsx(y8,{onKeyDown:A,ref:g,children:t?f:null})},T2=x.createContext({transformPagePoint:t=>t,isStatic:!1,reducedMotion:"never"}),Fs=x.createContext({}),Zs=x.createContext(null),X5=typeof document<"u",xo=X5?x.useLayoutEffect:x.useEffect,jp=x.createContext({strict:!1}),Q5=t=>t.replace(/([a-z])([A-Z])/gu,"$1-$2").toLowerCase(),b8="framerAppearId",Kp="data-"+Q5(b8),J5={skipAnimations:!1,useManualTiming:!1};class i4{constructor(){this.order=[],this.scheduled=new Set}add(e){if(!this.scheduled.has(e))return this.scheduled.add(e),this.order.push(e),!0}remove(e){const n=this.order.indexOf(e);n!==-1&&(this.order.splice(n,1),this.scheduled.delete(e))}clear(){this.order.length=0,this.scheduled.clear()}}function IE(t){let e=new i4,n=new i4,i=0,a=!1,c=!1;const d=new WeakSet,f={schedule:(v,m=!1,g=!1)=>{const b=g&&a,S=b?e:n;return m&&d.add(v),S.add(v)&&b&&a&&(i=e.order.length),v},cancel:v=>{n.remove(v),d.delete(v)},process:v=>{if(a){c=!0;return}if(a=!0,[e,n]=[n,e],n.clear(),i=e.order.length,i)for(let m=0;mn=!0,d=kc.reduce((V,R)=>(V[R]=IE(c),V),{}),{read:f,resolveKeyframes:v,update:m,preRender:g,render:b,postRender:S}=d,C=()=>{const V=J5.useManualTiming?a.timestamp:performance.now();n=!1,a.delta=i?1e3/60:Math.max(Math.min(V-a.timestamp,FE),1),a.timestamp=V,a.isProcessing=!0,f.process(a),v.process(a),m.process(a),g.process(a),b.process(a),S.process(a),a.isProcessing=!1,n&&e&&(i=!1,t(C))},P=()=>{n=!0,i=!0,a.isProcessing||t(C)};return{schedule:kc.reduce((V,R)=>{const F=d[R];return V[R]=(N,z=!1,U=!1)=>(n||P(),F.schedule(N,z,U)),V},{}),cancel:V=>{for(let R=0;R{g&&g.update(n,f)});const S=x.useRef(!!(n[Kp]&&!window.HandoffComplete));return xo(()=>{g&&(g.updateFeatures(),Wp.render(g.render),S.current&&g.animationState&&g.animationState.animateChanges())}),x.useEffect(()=>{g&&(!S.current&&g.animationState&&g.animationState.animateChanges(),S.current&&(S.current=!1,o4||(o4=!0,queueMicrotask(OE))))}),g}function OE(){window.HandoffComplete=!0}function NE(t,e,n,i){const{layoutId:a,layout:c,drag:d,dragConstraints:f,layoutScroll:v,layoutRoot:m}=e;t.projection=new n(t.latestValues,e["data-framer-portal-id"]?void 0:w8(t.parent)),t.projection.setOptions({layoutId:a,layout:c,alwaysMeasureLayout:!!d||f&&gs(f),visualElement:t,scheduleRender:()=>t.scheduleRender(),animationType:typeof c=="string"?c:"both",initialPromotionConfig:i,layoutScroll:v,layoutRoot:m})}function w8(t){if(t)return t.options.allowProjection!==!1?t.projection:w8(t.parent)}function HE(t,e,n){return x.useCallback(i=>{i&&t.mount&&t.mount(i),e&&(i?e.mount(i):e.unmount()),n&&(typeof n=="function"?n(i):gs(n)&&(n.current=i))},[e])}function Uc(t){return typeof t=="string"||Array.isArray(t)}function Gc(t){return t!==null&&typeof t=="object"&&typeof t.start=="function"}const Gp=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],qp=["initial",...Gp];function ef(t){return Gc(t.animate)||qp.some(e=>Uc(t[e]))}function $8(t){return!!(ef(t)||t.variants)}function zE(t,e){if(ef(t)){const{initial:n,animate:i}=t;return{initial:n===!1||Uc(n)?n:void 0,animate:Uc(i)?i:void 0}}return t.inherit!==!1?e:{}}function jE(t){const{initial:e,animate:n}=zE(t,x.useContext(Fs));return x.useMemo(()=>({initial:e,animate:n}),[l4(e),l4(n)])}function l4(t){return Array.isArray(t)?t.join(" "):t}const a4={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]},Ms={};for(const t in a4)Ms[t]={isEnabled:e=>a4[t].some(n=>!!e[n])};function q3(t){for(const e in t)Ms[e]={...Ms[e],...t[e]}}const As=x.createContext({}),Yp=Symbol.for("motionComponentSymbol"),Rt=t=>t;let S8=Rt,tf=Rt;function Xp({preloadedFeatures:t,createVisualElement:e,useRender:n,useVisualState:i,Component:a}){t&&q3(t);function c(f,v){let m;const g={...x.useContext(T2),...f,layoutId:KE(f)},{isStatic:b}=g,S=jE(f),C=i(f,b);if(!b&&X5){WE();const P=UE(g);m=P.MeasureLayout,S.visualElement=ZE(a,C,g,e,P.ProjectionNode)}return k.jsxs(Fs.Provider,{value:S,children:[m&&S.visualElement?k.jsx(m,{visualElement:S.visualElement,...g}):null,n(a,f,HE(C,S.visualElement,v),C,b,S.visualElement)]})}const d=x.forwardRef(c);return d[Yp]=a,d}function KE({layoutId:t}){const e=x.useContext(As).id;return e&&t!==void 0?e+"-"+t:t}function WE(t,e){x.useContext(jp).strict}function UE(t){const{drag:e,layout:n}=Ms;if(!e&&!n)return{};const i={...e,...n};return{MeasureLayout:e!=null&&e.isEnabled(t)||n!=null&&n.isEnabled(t)?i.MeasureLayout:void 0,ProjectionNode:i.ProjectionNode}}function C8(t){function e(i,a={}){return Xp(t(i,a))}if(typeof Proxy>"u")return e;const n=new Map;return new Proxy(e,{get:(i,a)=>(n.has(a)||n.set(a,e(a)),n.get(a))})}const GE=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function Qp(t){return typeof t!="string"||t.includes("-")?!1:!!(GE.indexOf(t)>-1||/[A-Z]/u.test(t))}const k5={};function _8(t){Object.assign(k5,t)}const a1=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],xi=new Set(a1);function P8(t,{layout:e,layoutId:n}){return xi.has(t)||t.startsWith("origin")||(e||n!==void 0)&&(!!k5[t]||t==="opacity")}const G0=t=>!!(t&&t.getVelocity),qE={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},YE=a1.length;function E8(t,e,n){let i="";for(let a=0;ae=>typeof e=="string"&&e.startsWith(t),T8=k8("--"),XE=k8("var(--"),Jp=t=>XE(t)?QE.test(t.split("/*")[0].trim()):!1,QE=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu,JE=(t,e)=>e&&typeof t=="number"?e.transform(t):t,gi=(t,e,n)=>n>e?e:ntypeof t=="number",parse:parseFloat,transform:t=>t},Dc={...Os,transform:t=>gi(0,1,t)},t5={...Os,default:1},Rc=t=>Math.round(t*1e5)/1e5,ev=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu,ek=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu,tk=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu;function s1(t){return typeof t=="string"}function nk(t){return t==null}const u1=t=>({test:e=>s1(e)&&e.endsWith(t)&&e.split(" ").length===1,parse:parseFloat,transform:e=>`${e}${t}`}),oo=u1("deg"),S2=u1("%"),je=u1("px"),rk=u1("vh"),ik=u1("vw"),s4={...S2,parse:t=>S2.parse(t)/100,transform:t=>S2.transform(t*100)},u4={...Os,transform:Math.round},M8={borderWidth:je,borderTopWidth:je,borderRightWidth:je,borderBottomWidth:je,borderLeftWidth:je,borderRadius:je,radius:je,borderTopLeftRadius:je,borderTopRightRadius:je,borderBottomRightRadius:je,borderBottomLeftRadius:je,width:je,maxWidth:je,height:je,maxHeight:je,size:je,top:je,right:je,bottom:je,left:je,padding:je,paddingTop:je,paddingRight:je,paddingBottom:je,paddingLeft:je,margin:je,marginTop:je,marginRight:je,marginBottom:je,marginLeft:je,rotate:oo,rotateX:oo,rotateY:oo,rotateZ:oo,scale:t5,scaleX:t5,scaleY:t5,scaleZ:t5,skew:oo,skewX:oo,skewY:oo,distance:je,translateX:je,translateY:je,translateZ:je,x:je,y:je,z:je,perspective:je,transformPerspective:je,opacity:Dc,originX:s4,originY:s4,originZ:je,zIndex:u4,backgroundPositionX:je,backgroundPositionY:je,fillOpacity:Dc,strokeOpacity:Dc,numOctaves:u4};function tv(t,e,n){const{style:i,vars:a,transform:c,transformOrigin:d}=t;let f=!1,v=!1,m=!0;for(const g in e){const b=e[g];if(T8(g)){a[g]=b;continue}const S=M8[g],C=JE(b,S);if(xi.has(g)){if(f=!0,c[g]=C,!m)continue;b!==(S.default||0)&&(m=!1)}else g.startsWith("origin")?(v=!0,d[g]=C):i[g]=C}if(e.transform||(f||n?i.transform=E8(t.transform,m,n):i.transform&&(i.transform="none")),v){const{originX:g="50%",originY:b="50%",originZ:S=0}=d;i.transformOrigin=`${g} ${b} ${S}`}}const nv=()=>({style:{},transform:{},transformOrigin:{},vars:{}});function A8(t,e,n){for(const i in e)!G0(e[i])&&!P8(i,n)&&(t[i]=e[i])}function ok({transformTemplate:t},e){return x.useMemo(()=>{const n=nv();return tv(n,e,t),Object.assign({},n.vars,n.style)},[e])}function lk(t,e){const n=t.style||{},i={};return A8(i,n,t),Object.assign(i,ok(t,e)),i}function ak(t,e){const n={},i=lk(t,e);return t.drag&&t.dragListener!==!1&&(n.draggable=!1,i.userSelect=i.WebkitUserSelect=i.WebkitTouchCallout="none",i.touchAction=t.drag===!0?"none":`pan-${t.drag==="x"?"y":"x"}`),t.tabIndex===void 0&&(t.onTap||t.onTapStart||t.whileTap)&&(n.tabIndex=0),n.style=i,n}const sk=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function qc(t){return t.startsWith("while")||t.startsWith("drag")&&t!=="draggable"||t.startsWith("layout")||t.startsWith("onTap")||t.startsWith("onPan")||t.startsWith("onLayout")||sk.has(t)}let L8=t=>!qc(t);function D8(t){t&&(L8=e=>e.startsWith("on")?!qc(e):t(e))}try{D8(require("@emotion/is-prop-valid").default)}catch{}function R8(t,e,n){const i={};for(const a in t)a==="values"&&typeof t.values=="object"||(L8(a)||n===!0&&qc(a)||!e&&!qc(a)||t.draggable&&a.startsWith("onDrag"))&&(i[a]=t[a]);return i}function c4(t,e,n){return typeof t=="string"?t:je.transform(e+n*t)}function uk(t,e,n){const i=c4(e,t.x,t.width),a=c4(n,t.y,t.height);return`${i} ${a}`}const ck={offset:"stroke-dashoffset",array:"stroke-dasharray"},dk={offset:"strokeDashoffset",array:"strokeDasharray"};function fk(t,e,n=1,i=0,a=!0){t.pathLength=1;const c=a?ck:dk;t[c.offset]=je.transform(-i);const d=je.transform(e),f=je.transform(n);t[c.array]=`${d} ${f}`}function rv(t,{attrX:e,attrY:n,attrScale:i,originX:a,originY:c,pathLength:d,pathSpacing:f=1,pathOffset:v=0,...m},g,b){if(tv(t,m,b),g){t.style.viewBox&&(t.attrs.viewBox=t.style.viewBox);return}t.attrs=t.style,t.style={};const{attrs:S,style:C,dimensions:P}=t;S.transform&&(P&&(C.transform=S.transform),delete S.transform),P&&(a!==void 0||c!==void 0||C.transform)&&(C.transformOrigin=uk(P,a!==void 0?a:.5,c!==void 0?c:.5)),e!==void 0&&(S.x=e),n!==void 0&&(S.y=n),i!==void 0&&(S.scale=i),d!==void 0&&fk(S,d,f,v,!1)}const B8=()=>({...nv(),attrs:{}}),iv=t=>typeof t=="string"&&t.toLowerCase()==="svg";function pk(t,e,n,i){const a=x.useMemo(()=>{const c=B8();return rv(c,e,iv(i),t.transformTemplate),{...c.attrs,style:{...c.style}}},[e]);if(t.style){const c={};A8(c,t.style,t),a.style={...c,...a.style}}return a}function vk(t=!1){return(n,i,a,{latestValues:c},d)=>{const v=(Qp(n)?pk:ak)(i,c,d,n),m=R8(i,typeof n=="string",t),g=n!==x.Fragment?{...m,...v,ref:a}:{},{children:b}=i,S=x.useMemo(()=>G0(b)?b.get():b,[b]);return x.createElement(n,{...g,children:S})}}function V8(t,{style:e,vars:n},i,a){Object.assign(t.style,e,a&&a.getProjectionStyles(i));for(const c in n)t.style.setProperty(c,n[c])}const I8=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function F8(t,e,n,i){V8(t,e,void 0,i);for(const a in e.attrs)t.setAttribute(I8.has(a)?a:Q5(a),e.attrs[a])}function ov(t,e,n){var i;const{style:a}=t,c={};for(const d in a)(G0(a[d])||e.style&&G0(e.style[d])||P8(d,t)||((i=n==null?void 0:n.getValue(d))===null||i===void 0?void 0:i.liveStyle)!==void 0)&&(c[d]=a[d]);return n&&a&&typeof a.willChange=="string"&&(n.applyWillChange=!1),c}function Z8(t,e,n){const i=ov(t,e,n);for(const a in t)if(G0(t[a])||G0(e[a])){const c=a1.indexOf(a)!==-1?"attr"+a.charAt(0).toUpperCase()+a.substring(1):a;i[c]=t[a]}return i}function d4(t){const e=[{},{}];return t==null||t.values.forEach((n,i)=>{e[0][i]=n.get(),e[1][i]=n.getVelocity()}),e}function lv(t,e,n,i){if(typeof e=="function"){const[a,c]=d4(i);e=e(n!==void 0?n:t.custom,a,c)}if(typeof e=="string"&&(e=t.variants&&t.variants[e]),typeof e=="function"){const[a,c]=d4(i);e=e(n!==void 0?n:t.custom,a,c)}return e}function tn(t){const e=x.useRef(null);return e.current===null&&(e.current=t()),e.current}const Y3=t=>Array.isArray(t),hk=t=>!!(t&&typeof t=="object"&&t.mix&&t.toValue),mk=t=>Y3(t)?t[t.length-1]||0:t;function Bc(t){const e=G0(t)?t.get():t;return hk(e)?e.toValue():e}const O8=new Set(["opacity","clipPath","filter","transform"]);function N8(t){if(xi.has(t))return"transform";if(O8.has(t)||t==="backgroundColor")return Q5(t)}function nf(t,e){t.indexOf(e)===-1&&t.push(e)}function c1(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}function gk([...t],e,n){const i=e<0?t.length+e:e;if(i>=0&&ii(a,m,v)),v}const rf=t=>(e,n)=>{const i=x.useContext(Fs),a=x.useContext(Zs),c=()=>yk(t,e,i,a,n);return n?c():tn(c)};function f4(t,e){const n=N8(e);n&&nf(t,n)}function p4(t,e,n){const i=Array.isArray(e)?e:[e];for(let a=0;a{for(const R in A){let F=A[R];if(Array.isArray(F)){const N=P?F.length-1:0;F=F[N]}F!==null&&(d[R]=F)}for(const R in V)d[R]=V[R]}),v&&(b&&g!==!1&&!Gc(b)&&p4(t,b,A=>{for(const V in A)f4(f,V)}),f.length&&(d.willChange=f.join(","))),d}const{schedule:Je,cancel:Dn,state:mt,steps:c5}=x8(typeof requestAnimationFrame<"u"?requestAnimationFrame:Rt,!0),xk={useVisualState:rf({scrapeMotionValuesFromProps:Z8,createRenderState:B8,onMount:(t,e,{renderState:n,latestValues:i})=>{Je.read(()=>{try{n.dimensions=typeof e.getBBox=="function"?e.getBBox():e.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}}),Je.render(()=>{rv(n,i,iv(e.tagName),t.transformTemplate),F8(e,n)})}})},wk={useVisualState:rf({applyWillChange:!0,scrapeMotionValuesFromProps:ov,createRenderState:nv})};function av(t,{forwardMotionProps:e=!1},n,i){return{...Qp(t)?xk:wk,preloadedFeatures:n,useRender:vk(e),createVisualElement:i,Component:t}}function x2(t,e,n,i={passive:!0}){return t.addEventListener(e,n,i),()=>t.removeEventListener(e,n)}const H8=t=>t.pointerType==="mouse"?typeof t.button!="number"||t.button<=0:t.isPrimary!==!1;function of(t,e="page"){return{point:{x:t[`${e}X`],y:t[`${e}Y`]}}}const z8=t=>e=>H8(e)&&t(e,of(e));function C2(t,e,n,i){return x2(t,e,z8(n),i)}const $k=(t,e)=>n=>e(t(n)),_2=(...t)=>t.reduce($k);function j8(t){let e=null;return()=>{const n=()=>{e=null};return e===null?(e=t,n):!1}}const v4=j8("dragHorizontal"),h4=j8("dragVertical");function K8(t){let e=!1;if(t==="y")e=h4();else if(t==="x")e=v4();else{const n=v4(),i=h4();n&&i?e=()=>{n(),i()}:(n&&n(),i&&i())}return e}function sv(){const t=K8(!0);return t?(t(),!1):!0}class wo{constructor(e){this.isMounted=!1,this.node=e}update(){}}function m4(t,e){const n=e?"pointerenter":"pointerleave",i=e?"onHoverStart":"onHoverEnd",a=(c,d)=>{if(c.pointerType==="touch"||sv())return;const f=t.getProps();t.animationState&&f.whileHover&&t.animationState.setActive("whileHover",e);const v=f[i];v&&Je.postRender(()=>v(c,d))};return C2(t.current,n,a,{passive:!t.getProps()[i]})}class Sk extends wo{mount(){this.unmount=_2(m4(this.node,!0),m4(this.node,!1))}unmount(){}}class Ck extends wo{constructor(){super(...arguments),this.isActive=!1}onFocus(){let e=!1;try{e=this.node.current.matches(":focus-visible")}catch{e=!0}!e||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=_2(x2(this.node.current,"focus",()=>this.onFocus()),x2(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}const W8=(t,e)=>e?t===e?!0:W8(t,e.parentElement):!1;function K7(t,e){if(!e)return;const n=new PointerEvent("pointer"+t);e(n,of(n))}class _k extends wo{constructor(){super(...arguments),this.removeStartListeners=Rt,this.removeEndListeners=Rt,this.removeAccessibleListeners=Rt,this.startPointerPress=(e,n)=>{if(this.isPressing)return;this.removeEndListeners();const i=this.node.getProps(),c=C2(window,"pointerup",(f,v)=>{if(!this.checkPressEnd())return;const{onTap:m,onTapCancel:g,globalTapTarget:b}=this.node.getProps(),S=!b&&!W8(this.node.current,f.target)?g:m;S&&Je.update(()=>S(f,v))},{passive:!(i.onTap||i.onPointerUp)}),d=C2(window,"pointercancel",(f,v)=>this.cancelPress(f,v),{passive:!(i.onTapCancel||i.onPointerCancel)});this.removeEndListeners=_2(c,d),this.startPress(e,n)},this.startAccessiblePress=()=>{const e=c=>{if(c.key!=="Enter"||this.isPressing)return;const d=f=>{f.key!=="Enter"||!this.checkPressEnd()||K7("up",(v,m)=>{const{onTap:g}=this.node.getProps();g&&Je.postRender(()=>g(v,m))})};this.removeEndListeners(),this.removeEndListeners=x2(this.node.current,"keyup",d),K7("down",(f,v)=>{this.startPress(f,v)})},n=x2(this.node.current,"keydown",e),i=()=>{this.isPressing&&K7("cancel",(c,d)=>this.cancelPress(c,d))},a=x2(this.node.current,"blur",i);this.removeAccessibleListeners=_2(n,a)}}startPress(e,n){this.isPressing=!0;const{onTapStart:i,whileTap:a}=this.node.getProps();a&&this.node.animationState&&this.node.animationState.setActive("whileTap",!0),i&&Je.postRender(()=>i(e,n))}checkPressEnd(){return this.removeEndListeners(),this.isPressing=!1,this.node.getProps().whileTap&&this.node.animationState&&this.node.animationState.setActive("whileTap",!1),!sv()}cancelPress(e,n){if(!this.checkPressEnd())return;const{onTapCancel:i}=this.node.getProps();i&&Je.postRender(()=>i(e,n))}mount(){const e=this.node.getProps(),n=C2(e.globalTapTarget?window:this.node.current,"pointerdown",this.startPointerPress,{passive:!(e.onTapStart||e.onPointerStart)}),i=x2(this.node.current,"focus",this.startAccessiblePress);this.removeStartListeners=_2(n,i)}unmount(){this.removeStartListeners(),this.removeEndListeners(),this.removeAccessibleListeners()}}const X3=new WeakMap,W7=new WeakMap,Pk=t=>{const e=X3.get(t.target);e&&e(t)},Ek=t=>{t.forEach(Pk)};function kk({root:t,...e}){const n=t||document;W7.has(n)||W7.set(n,{});const i=W7.get(n),a=JSON.stringify(e);return i[a]||(i[a]=new IntersectionObserver(Ek,{root:t,...e})),i[a]}function Tk(t,e,n){const i=kk(e);return X3.set(t,n),i.observe(t),()=>{X3.delete(t),i.unobserve(t)}}const Mk={some:0,all:1};class Ak extends wo{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:e={}}=this.node.getProps(),{root:n,margin:i,amount:a="some",once:c}=e,d={root:n?n.current:void 0,rootMargin:i,threshold:typeof a=="number"?a:Mk[a]},f=v=>{const{isIntersecting:m}=v;if(this.isInView===m||(this.isInView=m,c&&!m&&this.hasEnteredView))return;m&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",m);const{onViewportEnter:g,onViewportLeave:b}=this.node.getProps(),S=m?g:b;S&&S(v)};return Tk(this.node.current,d,f)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:e,prevProps:n}=this.node;["amount","margin","root"].some(Lk(e,n))&&this.startObserver()}unmount(){}}function Lk({viewport:t={}},{viewport:e={}}={}){return n=>t[n]!==e[n]}const U8={inView:{Feature:Ak},tap:{Feature:_k},focus:{Feature:Ck},hover:{Feature:Sk}};function G8(t,e){if(!Array.isArray(e))return!1;const n=e.length;if(n!==t.length)return!1;for(let i=0;it*1e3,P2=t=>t/1e3,Dk={type:"spring",stiffness:500,damping:25,restSpeed:10},Rk=t=>({type:"spring",stiffness:550,damping:t===0?2*Math.sqrt(550):30,restSpeed:10}),Bk={type:"keyframes",duration:.8},Vk={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},Ik=(t,{keyframes:e})=>e.length>2?Bk:xi.has(t)?t.startsWith("scale")?Rk(e[1]):Dk:Vk;function Fk({when:t,delay:e,delayChildren:n,staggerChildren:i,staggerDirection:a,repeat:c,repeatType:d,repeatDelay:f,from:v,elapsed:m,...g}){return!!Object.keys(g).length}function uv(t,e){return t[e]||t.default||t}const Yc={current:!1},Zk=t=>t!==null;function af(t,{repeat:e,repeatType:n="loop"},i){const a=t.filter(Zk),c=e&&n!=="loop"&&e%2===1?0:a.length-1;return!c||i===void 0?a[c]:i}let d5;function Ok(){d5=void 0}const co={now:()=>(d5===void 0&&co.set(mt.isProcessing||J5.useManualTiming?mt.timestamp:performance.now()),d5),set:t=>{d5=t,queueMicrotask(Ok)}},q8=t=>/^0[^.\s]+$/u.test(t);function Nk(t){return typeof t=="number"?t===0:t!==null?t==="none"||t==="0"||q8(t):!0}const Y8=t=>/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(t),Hk=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function zk(t){const e=Hk.exec(t);if(!e)return[,];const[,n,i,a]=e;return[`--${n??i}`,a]}function X8(t,e,n=1){const[i,a]=zk(t);if(!i)return;const c=window.getComputedStyle(e).getPropertyValue(i);if(c){const d=c.trim();return Y8(d)?parseFloat(d):d}return Jp(a)?X8(a,e,n+1):a}const jk=new Set(["width","height","top","left","right","bottom","x","y","translateX","translateY"]),g4=t=>t===Os||t===je,y4=(t,e)=>parseFloat(t.split(", ")[e]),b4=(t,e)=>(n,{transform:i})=>{if(i==="none"||!i)return 0;const a=i.match(/^matrix3d\((.+)\)$/u);if(a)return y4(a[1],e);{const c=i.match(/^matrix\((.+)\)$/u);return c?y4(c[1],t):0}},Kk=new Set(["x","y","z"]),Wk=a1.filter(t=>!Kk.has(t));function Uk(t){const e=[];return Wk.forEach(n=>{const i=t.getValue(n);i!==void 0&&(e.push([n,i.get()]),i.set(n.startsWith("scale")?1:0))}),e}const Ls={width:({x:t},{paddingLeft:e="0",paddingRight:n="0"})=>t.max-t.min-parseFloat(e)-parseFloat(n),height:({y:t},{paddingTop:e="0",paddingBottom:n="0"})=>t.max-t.min-parseFloat(e)-parseFloat(n),top:(t,{top:e})=>parseFloat(e),left:(t,{left:e})=>parseFloat(e),bottom:({y:t},{top:e})=>parseFloat(e)+(t.max-t.min),right:({x:t},{left:e})=>parseFloat(e)+(t.max-t.min),x:b4(4,13),y:b4(5,14)};Ls.translateX=Ls.x;Ls.translateY=Ls.y;const Q8=t=>e=>e.test(t),Gk={test:t=>t==="auto",parse:t=>t},J8=[Os,je,S2,oo,ik,rk,Gk],x4=t=>J8.find(Q8(t)),Ml=new Set;let Q3=!1,J3=!1;function eg(){if(J3){const t=Array.from(Ml).filter(i=>i.needsMeasurement),e=new Set(t.map(i=>i.element)),n=new Map;e.forEach(i=>{const a=Uk(i);a.length&&(n.set(i,a),i.render())}),t.forEach(i=>i.measureInitialState()),e.forEach(i=>{i.render();const a=n.get(i);a&&a.forEach(([c,d])=>{var f;(f=i.getValue(c))===null||f===void 0||f.set(d)})}),t.forEach(i=>i.measureEndState()),t.forEach(i=>{i.suspendedScrollY!==void 0&&window.scrollTo(0,i.suspendedScrollY)})}J3=!1,Q3=!1,Ml.forEach(t=>t.complete()),Ml.clear()}function tg(){Ml.forEach(t=>{t.readKeyframes(),t.needsMeasurement&&(J3=!0)})}function qk(){tg(),eg()}class cv{constructor(e,n,i,a,c,d=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...e],this.onComplete=n,this.name=i,this.motionValue=a,this.element=c,this.isAsync=d}scheduleResolve(){this.isScheduled=!0,this.isAsync?(Ml.add(this),Q3||(Q3=!0,Je.read(tg),Je.resolveKeyframes(eg))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:e,name:n,element:i,motionValue:a}=this;for(let c=0;cn=>!!(s1(n)&&tk.test(n)&&n.startsWith(t)||e&&!nk(n)&&Object.prototype.hasOwnProperty.call(n,e)),ng=(t,e,n)=>i=>{if(!s1(i))return i;const[a,c,d,f]=i.match(ev);return{[t]:parseFloat(a),[e]:parseFloat(c),[n]:parseFloat(d),alpha:f!==void 0?parseFloat(f):1}},Yk=t=>gi(0,255,t),U7={...Os,transform:t=>Math.round(Yk(t))},Tl={test:dv("rgb","red"),parse:ng("red","green","blue"),transform:({red:t,green:e,blue:n,alpha:i=1})=>"rgba("+U7.transform(t)+", "+U7.transform(e)+", "+U7.transform(n)+", "+Rc(Dc.transform(i))+")"};function Xk(t){let e="",n="",i="",a="";return t.length>5?(e=t.substring(1,3),n=t.substring(3,5),i=t.substring(5,7),a=t.substring(7,9)):(e=t.substring(1,2),n=t.substring(2,3),i=t.substring(3,4),a=t.substring(4,5),e+=e,n+=n,i+=i,a+=a),{red:parseInt(e,16),green:parseInt(n,16),blue:parseInt(i,16),alpha:a?parseInt(a,16)/255:1}}const ep={test:dv("#"),parse:Xk,transform:Tl.transform},ys={test:dv("hsl","hue"),parse:ng("hue","saturation","lightness"),transform:({hue:t,saturation:e,lightness:n,alpha:i=1})=>"hsla("+Math.round(t)+", "+S2.transform(Rc(e))+", "+S2.transform(Rc(n))+", "+Rc(Dc.transform(i))+")"},zt={test:t=>Tl.test(t)||ep.test(t)||ys.test(t),parse:t=>Tl.test(t)?Tl.parse(t):ys.test(t)?ys.parse(t):ep.parse(t),transform:t=>s1(t)?t:t.hasOwnProperty("red")?Tl.transform(t):ys.transform(t)};function Qk(t){var e,n;return isNaN(t)&&s1(t)&&(((e=t.match(ev))===null||e===void 0?void 0:e.length)||0)+(((n=t.match(ek))===null||n===void 0?void 0:n.length)||0)>0}const rg="number",ig="color",Jk="var",eT="var(",w4="${}",tT=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function Xc(t){const e=t.toString(),n=[],i={color:[],number:[],var:[]},a=[];let c=0;const f=e.replace(tT,v=>(zt.test(v)?(i.color.push(c),a.push(ig),n.push(zt.parse(v))):v.startsWith(eT)?(i.var.push(c),a.push(Jk),n.push(v)):(i.number.push(c),a.push(rg),n.push(parseFloat(v))),++c,w4)).split(w4);return{values:n,split:f,indexes:i,types:a}}function og(t){return Xc(t).values}function lg(t){const{split:e,types:n}=Xc(t),i=e.length;return a=>{let c="";for(let d=0;dtypeof t=="number"?0:t;function rT(t){const e=og(t);return lg(t)(e.map(nT))}const yi={test:Qk,parse:og,createTransformer:lg,getAnimatableNone:rT},iT=new Set(["brightness","contrast","saturate","opacity"]);function oT(t){const[e,n]=t.slice(0,-1).split("(");if(e==="drop-shadow")return t;const[i]=n.match(ev)||[];if(!i)return t;const a=n.replace(i,"");let c=iT.has(e)?1:0;return i!==n&&(c*=100),e+"("+c+a+")"}const lT=/\b([a-z-]*)\(.*?\)/gu,tp={...yi,getAnimatableNone:t=>{const e=t.match(lT);return e?e.map(oT).join(" "):t}},aT={...M8,color:zt,backgroundColor:zt,outlineColor:zt,fill:zt,stroke:zt,borderColor:zt,borderTopColor:zt,borderRightColor:zt,borderBottomColor:zt,borderLeftColor:zt,filter:tp,WebkitFilter:tp},fv=t=>aT[t];function ag(t,e){let n=fv(t);return n!==tp&&(n=yi),n.getAnimatableNone?n.getAnimatableNone(e):void 0}const sT=new Set(["auto","none","0"]);function uT(t,e,n){let i=0,a;for(;i{n.getValue(v).set(m)}),this.resolveNoneKeyframes()}}function ug(t){let e;return()=>(e===void 0&&(e=t()),e)}const $4=(t,e)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&(yi.test(t)||t==="0")&&!t.startsWith("url("));function cT(t){const e=t[0];if(t.length===1)return!0;for(let n=0;n{this.resolveFinishedPromise=e})}}function pv(t,e){return e?t*(1e3/e):0}const fT=5;function dg(t,e,n){const i=Math.max(e-fT,0);return pv(n-t(i),e-i)}const S4=.001,pT=.01,vT=10,hT=.05,mT=1;function gT({duration:t=800,bounce:e=.25,velocity:n=0,mass:i=1}){let a,c,d=1-e;d=gi(hT,mT,d),t=gi(pT,vT,P2(t)),d<1?(a=m=>{const g=m*d,b=g*t,S=g-n,C=np(m,d),P=Math.exp(-b);return S4-S/C*P},c=m=>{const b=m*d*t,S=b*n+n,C=Math.pow(d,2)*Math.pow(m,2)*t,P=Math.exp(-b),T=np(Math.pow(m,2),d);return(-a(m)+S4>0?-1:1)*((S-C)*P)/T}):(a=m=>{const g=Math.exp(-m*t),b=(m-n)*t+1;return-.001+g*b},c=m=>{const g=Math.exp(-m*t),b=(n-m)*(t*t);return g*b});const f=5/t,v=bT(a,c,f);if(t=hi(t),isNaN(v))return{stiffness:100,damping:10,duration:t};{const m=Math.pow(v,2)*i;return{stiffness:m,damping:d*2*Math.sqrt(i*m),duration:t}}}const yT=12;function bT(t,e,n){let i=n;for(let a=1;at[n]!==void 0)}function $T(t){let e={velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1,...t};if(!C4(t,wT)&&C4(t,xT)){const n=gT(t);e={...e,...n,mass:1},e.isResolvedFromDuration=!0}return e}function sf({keyframes:t,restDelta:e,restSpeed:n,...i}){const a=t[0],c=t[t.length-1],d={done:!1,value:a},{stiffness:f,damping:v,mass:m,duration:g,velocity:b,isResolvedFromDuration:S}=$T({...i,velocity:-P2(i.velocity||0)}),C=b||0,P=v/(2*Math.sqrt(f*m)),T=c-a,A=P2(Math.sqrt(f/m)),V=Math.abs(T)<5;n||(n=V?.01:2),e||(e=V?.005:.5);let R;if(P<1){const F=np(A,P);R=N=>{const z=Math.exp(-P*A*N);return c-z*((C+P*A*T)/F*Math.sin(F*N)+T*Math.cos(F*N))}}else if(P===1)R=F=>c-Math.exp(-A*F)*(T+(C+A*T)*F);else{const F=A*Math.sqrt(P*P-1);R=N=>{const z=Math.exp(-P*A*N),U=Math.min(F*N,300);return c-z*((C+P*A*T)*Math.sinh(U)+F*T*Math.cosh(U))/F}}return{calculatedDuration:S&&g||null,next:F=>{const N=R(F);if(S)d.done=F>=g;else{let z=C;F!==0&&(P<1?z=dg(R,F,N):z=0);const U=Math.abs(z)<=n,le=Math.abs(c-N)<=e;d.done=U&&le}return d.value=d.done?c:N,d}}}function _4({keyframes:t,velocity:e=0,power:n=.8,timeConstant:i=325,bounceDamping:a=10,bounceStiffness:c=500,modifyTarget:d,min:f,max:v,restDelta:m=.5,restSpeed:g}){const b=t[0],S={done:!1,value:b},C=D=>f!==void 0&&Dv,P=D=>f===void 0?v:v===void 0||Math.abs(f-D)-T*Math.exp(-D/i),F=D=>V+R(D),N=D=>{const ie=R(D),j=F(D);S.done=Math.abs(ie)<=m,S.value=S.done?V:j};let z,U;const le=D=>{C(S.value)&&(z=D,U=sf({keyframes:[S.value,P(S.value)],velocity:dg(F,D,S.value),damping:a,stiffness:c,restDelta:m,restSpeed:g}))};return le(0),{calculatedDuration:null,next:D=>{let ie=!1;return!U&&z===void 0&&(ie=!0,N(D),le(D)),z!==void 0&&D>=z?U.next(D-z):(!ie&&N(D),S)}}}const fg=(t,e,n)=>(((1-3*n+3*e)*t+(3*n-6*e))*t+3*e)*t,ST=1e-7,CT=12;function _T(t,e,n,i,a){let c,d,f=0;do d=e+(n-e)/2,c=fg(d,i,a)-t,c>0?n=d:e=d;while(Math.abs(c)>ST&&++f_T(c,0,1,t,n);return c=>c===0||c===1?c:fg(a(c),e,i)}const pg=Ns(.42,0,1,1),vg=Ns(0,0,.58,1),vv=Ns(.42,0,.58,1),hg=t=>Array.isArray(t)&&typeof t[0]!="number",hv=t=>e=>e<=.5?t(2*e)/2:(2-t(2*(1-e)))/2,mv=t=>e=>1-t(1-e),uf=t=>1-Math.sin(Math.acos(t)),gv=mv(uf),mg=hv(uf),yv=Ns(.33,1.53,.69,.99),cf=mv(yv),gg=hv(cf),yg=t=>(t*=2)<1?.5*cf(t):.5*(2-Math.pow(2,-10*(t-1))),PT={linear:Rt,easeIn:pg,easeInOut:vv,easeOut:vg,circIn:uf,circInOut:mg,circOut:gv,backIn:cf,backInOut:gg,backOut:yv,anticipate:yg},rp=t=>{if(Array.isArray(t)){tf(t.length===4);const[e,n,i,a]=t;return Ns(e,n,i,a)}else if(typeof t=="string")return PT[t];return t},mo=(t,e,n)=>{const i=e-t;return i===0?1:(n-t)/i},j0=(t,e,n)=>t+(e-t)*n;function G7(t,e,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?t+(e-t)*6*n:n<1/2?e:n<2/3?t+(e-t)*(2/3-n)*6:t}function ET({hue:t,saturation:e,lightness:n,alpha:i}){t/=360,e/=100,n/=100;let a=0,c=0,d=0;if(!e)a=c=d=n;else{const f=n<.5?n*(1+e):n+e-n*e,v=2*n-f;a=G7(v,f,t+1/3),c=G7(v,f,t),d=G7(v,f,t-1/3)}return{red:Math.round(a*255),green:Math.round(c*255),blue:Math.round(d*255),alpha:i}}function T5(t,e){return n=>n>0?e:t}const q7=(t,e,n)=>{const i=t*t,a=n*(e*e-i)+i;return a<0?0:Math.sqrt(a)},kT=[ep,Tl,ys],TT=t=>kT.find(e=>e.test(t));function P4(t){const e=TT(t);if(!e)return!1;let n=e.parse(t);return e===ys&&(n=ET(n)),n}const E4=(t,e)=>{const n=P4(t),i=P4(e);if(!n||!i)return T5(t,e);const a={...n};return c=>(a.red=q7(n.red,i.red,c),a.green=q7(n.green,i.green,c),a.blue=q7(n.blue,i.blue,c),a.alpha=j0(n.alpha,i.alpha,c),Tl.transform(a))},ip=new Set(["none","hidden"]);function MT(t,e){return ip.has(t)?n=>n<=0?t:e:n=>n>=1?e:t}function AT(t,e){return n=>j0(t,e,n)}function bv(t){return typeof t=="number"?AT:typeof t=="string"?Jp(t)?T5:zt.test(t)?E4:RT:Array.isArray(t)?bg:typeof t=="object"?zt.test(t)?E4:LT:T5}function bg(t,e){const n=[...t],i=n.length,a=t.map((c,d)=>bv(c)(c,e[d]));return c=>{for(let d=0;d{for(const c in i)n[c]=i[c](a);return n}}function DT(t,e){var n;const i=[],a={color:0,var:0,number:0};for(let c=0;c{const n=yi.createTransformer(e),i=Xc(t),a=Xc(e);return i.indexes.var.length===a.indexes.var.length&&i.indexes.color.length===a.indexes.color.length&&i.indexes.number.length>=a.indexes.number.length?ip.has(t)&&!a.values.length||ip.has(e)&&!i.values.length?MT(t,e):_2(bg(DT(i,a),a.values),n):T5(t,e)};function xv(t,e,n){return typeof t=="number"&&typeof e=="number"&&typeof n=="number"?j0(t,e,n):bv(t)(t,e)}function BT(t,e,n){const i=[],a=n||xv,c=t.length-1;for(let d=0;de[0];if(c===2&&t[0]===t[1])return()=>e[1];t[0]>t[c-1]&&(t=[...t].reverse(),e=[...e].reverse());const d=BT(e,i,a),f=d.length,v=m=>{let g=0;if(f>1)for(;gv(gi(t[0],t[c-1],m)):v}function xg(t,e){const n=t[t.length-1];for(let i=1;i<=e;i++){const a=mo(0,e,i);t.push(j0(n,1,a))}}function wv(t){const e=[0];return xg(e,t.length-1),e}function VT(t,e){return t.map(n=>n*e)}function IT(t,e){return t.map(()=>e||vv).splice(0,t.length-1)}function M5({duration:t=300,keyframes:e,times:n,ease:i="easeInOut"}){const a=hg(i)?i.map(rp):rp(i),c={done:!1,value:e[0]},d=VT(n&&n.length===e.length?n:wv(e),t),f=df(d,e,{ease:Array.isArray(a)?a:IT(e,a)});return{calculatedDuration:t,next:v=>(c.value=f(v),c.done=v>=t,c)}}const op=2e4;function wg(t){let e=0;const n=50;let i=t.next(e);for(;!i.done&&e=op?1/0:e}const FT=t=>{const e=({timestamp:n})=>t(n);return{start:()=>Je.update(e,!0),stop:()=>Dn(e),now:()=>mt.isProcessing?mt.timestamp:co.now()}},ZT={decay:_4,inertia:_4,tween:M5,keyframes:M5,spring:sf},OT=t=>t/100;class ff extends cg{constructor({KeyframeResolver:e=cv,...n}){super(n),this.holdTime=null,this.startTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState="running",this.state="idle",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.teardown();const{onStop:f}=this.options;f&&f()};const{name:i,motionValue:a,keyframes:c}=this.options,d=(f,v)=>this.onKeyframesResolved(f,v);i&&a&&a.owner?this.resolver=a.owner.resolveKeyframes(c,d,i,a):this.resolver=new e(c,d,i,a),this.resolver.scheduleResolve()}initPlayback(e){const{type:n="keyframes",repeat:i=0,repeatDelay:a=0,repeatType:c,velocity:d=0}=this.options,f=ZT[n]||M5;let v,m;f!==M5&&typeof e[0]!="number"&&(v=_2(OT,xv(e[0],e[1])),e=[0,100]);const g=f({...this.options,keyframes:e});c==="mirror"&&(m=f({...this.options,keyframes:[...e].reverse(),velocity:-d})),g.calculatedDuration===null&&(g.calculatedDuration=wg(g));const{calculatedDuration:b}=g,S=b+a,C=S*(i+1)-a;return{generator:g,mirroredGenerator:m,mapPercentToKeyframes:v,calculatedDuration:b,resolvedDuration:S,totalDuration:C}}onPostResolved(){const{autoplay:e=!0}=this.options;this.play(),this.pendingPlayState==="paused"||!e?this.pause():this.state=this.pendingPlayState}tick(e,n=!1){const{resolved:i}=this;if(!i){const{keyframes:D}=this.options;return{done:!0,value:D[D.length-1]}}const{finalKeyframe:a,generator:c,mirroredGenerator:d,mapPercentToKeyframes:f,keyframes:v,calculatedDuration:m,totalDuration:g,resolvedDuration:b}=i;if(this.startTime===null)return c.next(0);const{delay:S,repeat:C,repeatType:P,repeatDelay:T,onUpdate:A}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,e):this.speed<0&&(this.startTime=Math.min(e-g/this.speed,this.startTime)),n?this.currentTime=e:this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=Math.round(e-this.startTime)*this.speed;const V=this.currentTime-S*(this.speed>=0?1:-1),R=this.speed>=0?V<0:V>g;this.currentTime=Math.max(V,0),this.state==="finished"&&this.holdTime===null&&(this.currentTime=g);let F=this.currentTime,N=c;if(C){const D=Math.min(this.currentTime,g)/b;let ie=Math.floor(D),j=D%1;!j&&D>=1&&(j=1),j===1&&ie--,ie=Math.min(ie,C+1),!!(ie%2)&&(P==="reverse"?(j=1-j,T&&(j-=T/b)):P==="mirror"&&(N=d)),F=gi(0,1,j)*b}const z=R?{done:!1,value:v[0]}:N.next(F);f&&(z.value=f(z.value));let{done:U}=z;!R&&m!==null&&(U=this.speed>=0?this.currentTime>=g:this.currentTime<=0);const le=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&U);return le&&a!==void 0&&(z.value=af(v,this.options,a)),A&&A(z.value),le&&this.finish(),z}get duration(){const{resolved:e}=this;return e?P2(e.calculatedDuration):0}get time(){return P2(this.currentTime)}set time(e){e=hi(e),this.currentTime=e,this.holdTime!==null||this.speed===0?this.holdTime=e:this.driver&&(this.startTime=this.driver.now()-e/this.speed)}get speed(){return this.playbackSpeed}set speed(e){const n=this.playbackSpeed!==e;this.playbackSpeed=e,n&&(this.time=P2(this.currentTime))}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved){this.pendingPlayState="running";return}if(this.isStopped)return;const{driver:e=FT,onPlay:n}=this.options;this.driver||(this.driver=e(a=>this.tick(a))),n&&n();const i=this.driver.now();this.holdTime!==null?this.startTime=i-this.holdTime:(!this.startTime||this.state==="finished")&&(this.startTime=i),this.state==="finished"&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state="running",this.driver.start()}pause(){var e;if(!this._resolved){this.pendingPlayState="paused";return}this.state="paused",this.holdTime=(e=this.currentTime)!==null&&e!==void 0?e:0}complete(){this.state!=="running"&&this.play(),this.pendingPlayState=this.state="finished",this.holdTime=null}finish(){this.teardown(),this.state="finished";const{onComplete:e}=this.options;e&&e()}cancel(){this.cancelTime!==null&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state="idle",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(e){return this.startTime=0,this.tick(e,!0)}}function $g(t){return new ff(t)}const Sg=t=>Array.isArray(t)&&typeof t[0]=="number";function Cg(t){return!!(!t||typeof t=="string"&&t in $v||Sg(t)||Array.isArray(t)&&t.every(Cg))}const Tc=([t,e,n,i])=>`cubic-bezier(${t}, ${e}, ${n}, ${i})`,$v={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:Tc([0,.65,.55,1]),circOut:Tc([.55,0,1,.45]),backIn:Tc([.31,.01,.66,-.59]),backOut:Tc([.33,1.53,.69,.99])};function NT(t){return _g(t)||$v.easeOut}function _g(t){if(t)return Sg(t)?Tc(t):Array.isArray(t)?t.map(NT):$v[t]}function lp(t,e,n,{delay:i=0,duration:a=300,repeat:c=0,repeatType:d="loop",ease:f,times:v}={}){const m={[e]:n};v&&(m.offset=v);const g=_g(f);return Array.isArray(g)&&(m.easing=g),t.animate(m,{delay:i,duration:a,easing:Array.isArray(g)?"linear":g,fill:"both",iterations:c+1,direction:d==="reverse"?"alternate":"normal"})}const HT=ug(()=>Object.hasOwnProperty.call(Element.prototype,"animate")),A5=10,zT=2e4;function jT(t){return t.type==="spring"||t.name==="backgroundColor"||!Cg(t.ease)}function KT(t,e){const n=new ff({...e,keyframes:t,repeat:0,delay:0,isGenerator:!0});let i={done:!1,value:t[0]};const a=[];let c=0;for(;!i.done&&cthis.onKeyframesResolved(c,d),n,i),this.resolver.scheduleResolve()}initPlayback(e,n){var i;let{duration:a=300,times:c,ease:d,type:f,motionValue:v,name:m}=this.options;if(!(!((i=v.owner)===null||i===void 0)&&i.current))return!1;if(jT(this.options)){const{onComplete:b,onUpdate:S,motionValue:C,...P}=this.options,T=KT(e,P);e=T.keyframes,e.length===1&&(e[1]=e[0]),a=T.duration,c=T.times,d=T.ease,f="keyframes"}const g=lp(v.owner.current,m,e,{...this.options,duration:a,times:c,ease:d});return g.startTime=co.now(),this.pendingTimeline?(g.timeline=this.pendingTimeline,this.pendingTimeline=void 0):g.onfinish=()=>{const{onComplete:b}=this.options;v.set(af(e,this.options,n)),b&&b(),this.cancel(),this.resolveFinishedPromise()},{animation:g,duration:a,times:c,type:f,ease:d,keyframes:e}}get duration(){const{resolved:e}=this;if(!e)return 0;const{duration:n}=e;return P2(n)}get time(){const{resolved:e}=this;if(!e)return 0;const{animation:n}=e;return P2(n.currentTime||0)}set time(e){const{resolved:n}=this;if(!n)return;const{animation:i}=n;i.currentTime=hi(e)}get speed(){const{resolved:e}=this;if(!e)return 1;const{animation:n}=e;return n.playbackRate}set speed(e){const{resolved:n}=this;if(!n)return;const{animation:i}=n;i.playbackRate=e}get state(){const{resolved:e}=this;if(!e)return"idle";const{animation:n}=e;return n.playState}attachTimeline(e){if(!this._resolved)this.pendingTimeline=e;else{const{resolved:n}=this;if(!n)return Rt;const{animation:i}=n;i.timeline=e,i.onfinish=null}return Rt}play(){if(this.isStopped)return;const{resolved:e}=this;if(!e)return;const{animation:n}=e;n.playState==="finished"&&this.updateFinishedPromise(),n.play()}pause(){const{resolved:e}=this;if(!e)return;const{animation:n}=e;n.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;const{resolved:e}=this;if(!e)return;const{animation:n,keyframes:i,duration:a,type:c,ease:d,times:f}=e;if(n.playState==="idle"||n.playState==="finished")return;if(this.time){const{motionValue:m,onUpdate:g,onComplete:b,...S}=this.options,C=new ff({...S,keyframes:i,duration:a,type:c,ease:d,times:f,isGenerator:!0}),P=hi(this.time);m.setWithVelocity(C.sample(P-A5).value,C.sample(P).value,A5)}const{onStop:v}=this.options;v&&v(),this.cancel()}complete(){const{resolved:e}=this;e&&e.animation.finish()}cancel(){const{resolved:e}=this;e&&e.animation.cancel()}static supports(e){const{motionValue:n,name:i,repeatDelay:a,repeatType:c,damping:d,type:f}=e;return HT()&&i&&O8.has(i)&&n&&n.owner&&n.owner.current instanceof HTMLElement&&!n.owner.getProps().onUpdate&&!a&&c!=="mirror"&&d!==0&&f!=="inertia"}}function Pg(t,e){let n;const i=()=>{const{currentTime:a}=e,d=(a===null?0:a.value)/100;n!==d&&t(d),n=d};return Je.update(i,!0),()=>Dn(i)}const Eg=ug(()=>window.ScrollTimeline!==void 0);class Sv{constructor(e){this.stop=()=>this.runAll("stop"),this.animations=e.filter(Boolean)}then(e,n){return Promise.all(this.animations).then(e).catch(n)}getAll(e){return this.animations[0][e]}setAll(e,n){for(let i=0;i{if(Eg()&&i.attachTimeline)i.attachTimeline(e);else return i.pause(),Pg(a=>{i.time=i.duration*a},e)});return()=>{n.forEach((i,a)=>{i&&i(),this.animations[a].stop()})}}get time(){return this.getAll("time")}set time(e){this.setAll("time",e)}get speed(){return this.getAll("speed")}set speed(e){this.setAll("speed",e)}get duration(){let e=0;for(let n=0;nn[e]())}play(){this.runAll("play")}pause(){this.runAll("pause")}cancel(){this.runAll("cancel")}complete(){this.runAll("complete")}}const Cv=(t,e,n,i={},a,c,d)=>f=>{const v=uv(i,t)||{},m=v.delay||i.delay||0;let{elapsed:g=0}=i;g=g-hi(m);let b={keyframes:Array.isArray(n)?n:[null,n],ease:"easeOut",velocity:e.getVelocity(),...v,delay:-g,onUpdate:C=>{e.set(C),v.onUpdate&&v.onUpdate(C)},onComplete:()=>{f(),v.onComplete&&v.onComplete(),d&&d()},onStop:d,name:t,motionValue:e,element:c?void 0:a};Fk(v)||(b={...b,...Ik(t,b)}),b.duration&&(b.duration=hi(b.duration)),b.repeatDelay&&(b.repeatDelay=hi(b.repeatDelay)),b.from!==void 0&&(b.keyframes[0]=b.from);let S=!1;if((b.type===!1||b.duration===0&&!b.repeatDelay)&&(b.duration=0,b.delay===0&&(S=!0)),(Yc.current||J5.skipAnimations)&&(S=!0,b.duration=0,b.delay=0),S&&!c&&e.get()!==void 0){const C=af(b.keyframes,v);if(C!==void 0)return Je.update(()=>{b.onUpdate(C),b.onComplete()}),new Sv([])}return!c&&ap.supports(b)?new ap(b):new ff(b)};class _v{constructor(){this.subscriptions=[]}add(e){return nf(this.subscriptions,e),()=>c1(this.subscriptions,e)}notify(e,n,i){const a=this.subscriptions.length;if(a)if(a===1)this.subscriptions[0](e,n,i);else for(let c=0;c!isNaN(parseFloat(t)),Vc={current:void 0};class Pv{constructor(e,n={}){this.version="11.3.0",this.canTrackVelocity=null,this.events={},this.updateAndNotify=(i,a=!0)=>{const c=co.now();this.updatedAt!==c&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(i),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),a&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(e),this.owner=n.owner}setCurrent(e){this.current=e,this.updatedAt=co.now(),this.canTrackVelocity===null&&e!==void 0&&(this.canTrackVelocity=WT(this.current))}setPrevFrameValue(e=this.current){this.prevFrameValue=e,this.prevUpdatedAt=this.updatedAt}onChange(e){return this.on("change",e)}on(e,n){this.events[e]||(this.events[e]=new _v);const i=this.events[e].add(n);return e==="change"?()=>{i(),Je.read(()=>{this.events.change.getSize()||this.stop()})}:i}clearListeners(){for(const e in this.events)this.events[e].clear()}attach(e,n){this.passiveEffect=e,this.stopPassiveEffect=n}set(e,n=!0){!n||!this.passiveEffect?this.updateAndNotify(e,n):this.passiveEffect(e,this.updateAndNotify)}setWithVelocity(e,n,i){this.set(n),this.prev=void 0,this.prevFrameValue=e,this.prevUpdatedAt=this.updatedAt-i}jump(e,n=!0){this.updateAndNotify(e),this.prev=e,this.prevUpdatedAt=this.prevFrameValue=void 0,n&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return Vc.current&&Vc.current.push(this),this.current}getPrevious(){return this.prev}getVelocity(){const e=co.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||e-this.updatedAt>k4)return 0;const n=Math.min(this.updatedAt-this.prevUpdatedAt,k4);return pv(parseFloat(this.current)-parseFloat(this.prevFrameValue),n)}start(e){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.animation=e(n),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function Kr(t,e){return new Pv(t,e)}function UT(t,e,n){t.hasValue(e)?t.getValue(e).set(n):t.addValue(e,Kr(n))}function Ev(t,e){const n=lf(t,e);let{transitionEnd:i={},transition:a={},...c}=n||{};c={...c,...i};for(const d in c){const f=mk(c[d]);UT(t,d,f)}}function kg(t){return t.getProps()[Kp]}class Tg extends Pv{constructor(){super(...arguments),this.output=[],this.counts=new Map}add(e){const n=N8(e);if(!n)return;const i=this.counts.get(n)||0;this.counts.set(n,i+1),i===0&&(this.output.push(n),this.update());let a=!1;return()=>{if(a)return;a=!0;const c=this.counts.get(n)-1;this.counts.set(n,c),c===0&&(c1(this.output,n),this.update())}}update(){this.set(this.output.length?this.output.join(", "):"auto")}}function GT(){return tn(()=>new Tg("auto"))}function qT(t){return!!(G0(t)&&t.add)}function sp(t,e){var n;if(!t.applyWillChange)return;let i=t.getValue("willChange");if(!i&&!(!((n=t.props.style)===null||n===void 0)&&n.willChange)&&(i=new Tg("auto"),t.addValue("willChange",i)),qT(i))return i.add(e)}function YT({protectedKeys:t,needsAnimating:e},n){const i=t.hasOwnProperty(n)&&e[n]!==!0;return e[n]=!1,i}function kv(t,e,{delay:n=0,transitionOverride:i,type:a}={}){var c;let{transition:d=t.getDefaultTransition(),transitionEnd:f,...v}=e;i&&(d=i);const m=[],g=a&&t.animationState&&t.animationState.getState()[a];for(const b in v){const S=t.getValue(b,(c=t.latestValues[b])!==null&&c!==void 0?c:null),C=v[b];if(C===void 0||g&&YT(g,b))continue;const P={delay:n,elapsed:0,...uv(d||{},b)};let T=!1;if(window.HandoffAppearAnimations){const V=kg(t);if(V){const R=window.HandoffAppearAnimations(V,b,S,Je);R!==null&&(P.elapsed=R,T=!0)}}S.start(Cv(b,S,C,t.shouldReduceMotion&&xi.has(b)?{type:!1}:P,t,T,sp(t,b)));const A=S.animation;A&&m.push(A)}return f&&Promise.all(m).then(()=>{Je.update(()=>{f&&Ev(t,f)})}),m}function up(t,e,n={}){var i;const a=lf(t,e,n.type==="exit"?(i=t.presenceContext)===null||i===void 0?void 0:i.custom:void 0);let{transition:c=t.getDefaultTransition()||{}}=a||{};n.transitionOverride&&(c=n.transitionOverride);const d=a?()=>Promise.all(kv(t,a,n)):()=>Promise.resolve(),f=t.variantChildren&&t.variantChildren.size?(m=0)=>{const{delayChildren:g=0,staggerChildren:b,staggerDirection:S}=c;return XT(t,e,g+m,b,S,n)}:()=>Promise.resolve(),{when:v}=c;if(v){const[m,g]=v==="beforeChildren"?[d,f]:[f,d];return m().then(()=>g())}else return Promise.all([d(),f(n.delay)])}function XT(t,e,n=0,i=0,a=1,c){const d=[],f=(t.variantChildren.size-1)*i,v=a===1?(m=0)=>m*i:(m=0)=>f-m*i;return Array.from(t.variantChildren).sort(QT).forEach((m,g)=>{m.notify("AnimationStart",e),d.push(up(m,e,{...c,delay:n+v(g)}).then(()=>m.notify("AnimationComplete",e)))}),Promise.all(d)}function QT(t,e){return t.sortNodePosition(e)}function pf(t,e,n={}){t.notify("AnimationStart",e);let i;if(Array.isArray(e)){const a=e.map(c=>up(t,c,n));i=Promise.all(a)}else if(typeof e=="string")i=up(t,e,n);else{const a=typeof e=="function"?lf(t,e,n.custom):e;i=Promise.all(kv(t,a,n))}return i.then(()=>{Je.postRender(()=>{t.notify("AnimationComplete",e)})})}const JT=[...Gp].reverse(),eM=Gp.length;function tM(t){return e=>Promise.all(e.map(({animation:n,options:i})=>pf(t,n,i)))}function nM(t){let e=tM(t),n=T4(),i=!0;const a=v=>(m,g)=>{var b;const S=lf(t,g,v==="exit"?(b=t.presenceContext)===null||b===void 0?void 0:b.custom:void 0);if(S){const{transition:C,transitionEnd:P,...T}=S;m={...m,...T,...P}}return m};function c(v){e=v(t)}function d(v){const m=t.getProps(),g=t.getVariantContext(!0)||{},b=[],S=new Set;let C={},P=1/0;for(let A=0;AP&&N,ie=!1;const j=Array.isArray(F)?F:[F];let X=j.reduce(a(V),{});z===!1&&(X={});const{prevResolvedValues:xe={}}=R,G={...xe,...X},Q=he=>{D=!0,S.has(he)&&(ie=!0,S.delete(he)),R.needsAnimating[he]=!0;const _e=t.getValue(he);_e&&(_e.liveStyle=!1)};for(const he in G){const _e=X[he],se=xe[he];if(C.hasOwnProperty(he))continue;let fe=!1;Y3(_e)&&Y3(se)?fe=!G8(_e,se):fe=_e!==se,fe?_e!=null?Q(he):S.add(he):_e!==void 0&&S.has(he)?Q(he):R.protectedKeys[he]=!0}R.prevProp=F,R.prevResolvedValues=X,R.isActive&&(C={...C,...X}),i&&t.blockInitialAnimation&&(D=!1),D&&(!U||ie)&&b.push(...j.map(he=>({animation:he,options:{type:V}})))}if(S.size){const A={};S.forEach(V=>{const R=t.getBaseTarget(V),F=t.getValue(V);F&&(F.liveStyle=!0),A[V]=R??null}),b.push({animation:A})}let T=!!b.length;return i&&(m.initial===!1||m.initial===m.animate)&&!t.manuallyAnimateOnMount&&(T=!1),i=!1,T?e(b):Promise.resolve()}function f(v,m){var g;if(n[v].isActive===m)return Promise.resolve();(g=t.variantChildren)===null||g===void 0||g.forEach(S=>{var C;return(C=S.animationState)===null||C===void 0?void 0:C.setActive(v,m)}),n[v].isActive=m;const b=d(v);for(const S in n)n[S].protectedKeys={};return b}return{animateChanges:d,setActive:f,setAnimateFunction:c,getState:()=>n,reset:()=>{n=T4(),i=!0}}}function rM(t,e){return typeof e=="string"?e!==t:Array.isArray(e)?!G8(e,t):!1}function wl(t=!1){return{isActive:t,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function T4(){return{animate:wl(!0),whileInView:wl(),whileHover:wl(),whileTap:wl(),whileDrag:wl(),whileFocus:wl(),exit:wl()}}class iM extends wo{constructor(e){super(e),e.animationState||(e.animationState=nM(e))}updateAnimationControlsSubscription(){const{animate:e}=this.node.getProps();Gc(e)&&(this.unmountControls=e.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:e}=this.node.getProps(),{animate:n}=this.node.prevProps||{};e!==n&&this.updateAnimationControlsSubscription()}unmount(){var e;this.node.animationState.reset(),(e=this.unmountControls)===null||e===void 0||e.call(this)}}let oM=0;class lM extends wo{constructor(){super(...arguments),this.id=oM++}update(){if(!this.node.presenceContext)return;const{isPresent:e,onExitComplete:n}=this.node.presenceContext,{isPresent:i}=this.node.prevPresenceContext||{};if(!this.node.animationState||e===i)return;const a=this.node.animationState.setActive("exit",!e);n&&!e&&a.then(()=>n(this.id))}mount(){const{register:e}=this.node.presenceContext||{};e&&(this.unmount=e(this.id))}unmount(){}}const Tv={animation:{Feature:iM},exit:{Feature:lM}},cp=(t,e)=>Math.abs(t-e);function Mg(t,e){const n=cp(t.x,e.x),i=cp(t.y,e.y);return Math.sqrt(n**2+i**2)}class Ag{constructor(e,n,{transformPagePoint:i,contextWindow:a,dragSnapToOrigin:c=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const b=X7(this.lastMoveEventInfo,this.history),S=this.startEvent!==null,C=Mg(b.offset,{x:0,y:0})>=3;if(!S&&!C)return;const{point:P}=b,{timestamp:T}=mt;this.history.push({...P,timestamp:T});const{onStart:A,onMove:V}=this.handlers;S||(A&&A(this.lastMoveEvent,b),this.startEvent=this.lastMoveEvent),V&&V(this.lastMoveEvent,b)},this.handlePointerMove=(b,S)=>{this.lastMoveEvent=b,this.lastMoveEventInfo=Y7(S,this.transformPagePoint),Je.update(this.updatePoint,!0)},this.handlePointerUp=(b,S)=>{this.end();const{onEnd:C,onSessionEnd:P,resumeAnimation:T}=this.handlers;if(this.dragSnapToOrigin&&T&&T(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const A=X7(b.type==="pointercancel"?this.lastMoveEventInfo:Y7(S,this.transformPagePoint),this.history);this.startEvent&&C&&C(b,A),P&&P(b,A)},!H8(e))return;this.dragSnapToOrigin=c,this.handlers=n,this.transformPagePoint=i,this.contextWindow=a||window;const d=of(e),f=Y7(d,this.transformPagePoint),{point:v}=f,{timestamp:m}=mt;this.history=[{...v,timestamp:m}];const{onSessionStart:g}=n;g&&g(e,X7(f,this.history)),this.removeListeners=_2(C2(this.contextWindow,"pointermove",this.handlePointerMove),C2(this.contextWindow,"pointerup",this.handlePointerUp),C2(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(e){this.handlers=e}end(){this.removeListeners&&this.removeListeners(),Dn(this.updatePoint)}}function Y7(t,e){return e?{point:e(t.point)}:t}function M4(t,e){return{x:t.x-e.x,y:t.y-e.y}}function X7({point:t},e){return{point:t,delta:M4(t,Lg(e)),offset:M4(t,aM(e)),velocity:sM(e,.1)}}function aM(t){return t[0]}function Lg(t){return t[t.length-1]}function sM(t,e){if(t.length<2)return{x:0,y:0};let n=t.length-1,i=null;const a=Lg(t);for(;n>=0&&(i=t[n],!(a.timestamp-i.timestamp>hi(e)));)n--;if(!i)return{x:0,y:0};const c=P2(a.timestamp-i.timestamp);if(c===0)return{x:0,y:0};const d={x:(a.x-i.x)/c,y:(a.y-i.y)/c};return d.x===1/0&&(d.x=0),d.y===1/0&&(d.y=0),d}function Rn(t){return t.max-t.min}function dp(t,e=0,n=.01){return Math.abs(t-e)<=n}function A4(t,e,n,i=.5){t.origin=i,t.originPoint=j0(e.min,e.max,t.origin),t.scale=Rn(n)/Rn(e),(dp(t.scale,1,1e-4)||isNaN(t.scale))&&(t.scale=1),t.translate=j0(n.min,n.max,t.origin)-t.originPoint,(dp(t.translate)||isNaN(t.translate))&&(t.translate=0)}function Ic(t,e,n,i){A4(t.x,e.x,n.x,i?i.originX:void 0),A4(t.y,e.y,n.y,i?i.originY:void 0)}function L4(t,e,n){t.min=n.min+e.min,t.max=t.min+Rn(e)}function uM(t,e,n){L4(t.x,e.x,n.x),L4(t.y,e.y,n.y)}function D4(t,e,n){t.min=e.min-n.min,t.max=t.min+Rn(e)}function Fc(t,e,n){D4(t.x,e.x,n.x),D4(t.y,e.y,n.y)}function cM(t,{min:e,max:n},i){return e!==void 0&&tn&&(t=i?j0(n,t,i.max):Math.min(t,n)),t}function R4(t,e,n){return{min:e!==void 0?t.min+e:void 0,max:n!==void 0?t.max+n-(t.max-t.min):void 0}}function dM(t,{top:e,left:n,bottom:i,right:a}){return{x:R4(t.x,n,a),y:R4(t.y,e,i)}}function B4(t,e){let n=e.min-t.min,i=e.max-t.max;return e.max-e.mini?n=mo(e.min,e.max-i,t.min):i>a&&(n=mo(t.min,t.max-a,e.min)),gi(0,1,n)}function vM(t,e){const n={};return e.min!==void 0&&(n.min=e.min-t.min),e.max!==void 0&&(n.max=e.max-t.min),n}const fp=.35;function hM(t=fp){return t===!1?t=0:t===!0&&(t=fp),{x:V4(t,"left","right"),y:V4(t,"top","bottom")}}function V4(t,e,n){return{min:I4(t,e),max:I4(t,n)}}function I4(t,e){return typeof t=="number"?t:t[e]||0}const F4=()=>({translate:0,scale:1,origin:0,originPoint:0}),bs=()=>({x:F4(),y:F4()}),Z4=()=>({min:0,max:0}),J0=()=>({x:Z4(),y:Z4()});function xr(t){return[t("x"),t("y")]}function Dg({top:t,left:e,right:n,bottom:i}){return{x:{min:e,max:n},y:{min:t,max:i}}}function mM({x:t,y:e}){return{top:e.min,right:t.max,bottom:e.max,left:t.min}}function gM(t,e){if(!e)return t;const n=e({x:t.left,y:t.top}),i=e({x:t.right,y:t.bottom});return{top:n.y,left:n.x,bottom:i.y,right:i.x}}function Q7(t){return t===void 0||t===1}function pp({scale:t,scaleX:e,scaleY:n}){return!Q7(t)||!Q7(e)||!Q7(n)}function Cl(t){return pp(t)||Rg(t)||t.z||t.rotate||t.rotateX||t.rotateY||t.skewX||t.skewY}function Rg(t){return O4(t.x)||O4(t.y)}function O4(t){return t&&t!=="0%"}function L5(t,e,n){const i=t-n,a=e*i;return n+a}function N4(t,e,n,i,a){return a!==void 0&&(t=L5(t,a,i)),L5(t,n,i)+e}function vp(t,e=0,n=1,i,a){t.min=N4(t.min,e,n,i,a),t.max=N4(t.max,e,n,i,a)}function Bg(t,{x:e,y:n}){vp(t.x,e.translate,e.scale,e.originPoint),vp(t.y,n.translate,n.scale,n.originPoint)}function yM(t,e,n,i=!1){const a=n.length;if(!a)return;e.x=e.y=1;let c,d;for(let f=0;f1.0000000000001||t<.999999999999?t:1}function ao(t,e){t.min=t.min+e,t.max=t.max+e}function z4(t,e,[n,i,a]){const c=e[a]!==void 0?e[a]:.5,d=j0(t.min,t.max,c);vp(t,e[n],e[i],d,e.scale)}const bM=["x","scaleX","originX"],xM=["y","scaleY","originY"];function xs(t,e){z4(t.x,e,bM),z4(t.y,e,xM)}function Vg(t,e){return Dg(gM(t.getBoundingClientRect(),e))}function wM(t,e,n){const i=Vg(t,n),{scroll:a}=e;return a&&(ao(i.x,a.offset.x),ao(i.y,a.offset.y)),i}const Ig=({current:t})=>t?t.ownerDocument.defaultView:null,$M=new WeakMap;class SM{constructor(e){this.openGlobalLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=J0(),this.visualElement=e}start(e,{snapToCursor:n=!1}={}){const{presenceContext:i}=this.visualElement;if(i&&i.isPresent===!1)return;const a=g=>{const{dragSnapToOrigin:b}=this.getProps();b?this.pauseAnimation():this.stopAnimation(),n&&this.snapToCursor(of(g,"page").point)},c=(g,b)=>{var S;const{drag:C,dragPropagation:P,onDragStart:T}=this.getProps();if(C&&!P&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=K8(C),!this.openGlobalLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),xr(V=>{let R=this.getAxisMotionValue(V).get()||0;if(S2.test(R)){const{projection:F}=this.visualElement;if(F&&F.layout){const N=F.layout.layoutBox[V];N&&(R=Rn(N)*(parseFloat(R)/100))}}this.originPoint[V]=R}),T&&Je.postRender(()=>T(g,b)),(S=this.removeWillChange)===null||S===void 0||S.call(this),this.removeWillChange=sp(this.visualElement,"transform");const{animationState:A}=this.visualElement;A&&A.setActive("whileDrag",!0)},d=(g,b)=>{const{dragPropagation:S,dragDirectionLock:C,onDirectionLock:P,onDrag:T}=this.getProps();if(!S&&!this.openGlobalLock)return;const{offset:A}=b;if(C&&this.currentDirection===null){this.currentDirection=CM(A),this.currentDirection!==null&&P&&P(this.currentDirection);return}this.updateAxis("x",b.point,A),this.updateAxis("y",b.point,A),this.visualElement.render(),T&&T(g,b)},f=(g,b)=>this.stop(g,b),v=()=>xr(g=>{var b;return this.getAnimationState(g)==="paused"&&((b=this.getAxisMotionValue(g).animation)===null||b===void 0?void 0:b.play())}),{dragSnapToOrigin:m}=this.getProps();this.panSession=new Ag(e,{onSessionStart:a,onStart:c,onMove:d,onSessionEnd:f,resumeAnimation:v},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:m,contextWindow:Ig(this.visualElement)})}stop(e,n){var i;(i=this.removeWillChange)===null||i===void 0||i.call(this);const a=this.isDragging;if(this.cancel(),!a)return;const{velocity:c}=n;this.startAnimation(c);const{onDragEnd:d}=this.getProps();d&&Je.postRender(()=>d(e,n))}cancel(){this.isDragging=!1;const{projection:e,animationState:n}=this.visualElement;e&&(e.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:i}=this.getProps();!i&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),n&&n.setActive("whileDrag",!1)}updateAxis(e,n,i){const{drag:a}=this.getProps();if(!i||!n5(e,a,this.currentDirection))return;const c=this.getAxisMotionValue(e);let d=this.originPoint[e]+i[e];this.constraints&&this.constraints[e]&&(d=cM(d,this.constraints[e],this.elastic[e])),c.set(d)}resolveConstraints(){var e;const{dragConstraints:n,dragElastic:i}=this.getProps(),a=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):(e=this.visualElement.projection)===null||e===void 0?void 0:e.layout,c=this.constraints;n&&gs(n)?this.constraints||(this.constraints=this.resolveRefConstraints()):n&&a?this.constraints=dM(a.layoutBox,n):this.constraints=!1,this.elastic=hM(i),c!==this.constraints&&a&&this.constraints&&!this.hasMutatedConstraints&&xr(d=>{this.constraints!==!1&&this.getAxisMotionValue(d)&&(this.constraints[d]=vM(a.layoutBox[d],this.constraints[d]))})}resolveRefConstraints(){const{dragConstraints:e,onMeasureDragConstraints:n}=this.getProps();if(!e||!gs(e))return!1;const i=e.current,{projection:a}=this.visualElement;if(!a||!a.layout)return!1;const c=wM(i,a.root,this.visualElement.getTransformPagePoint());let d=fM(a.layout.layoutBox,c);if(n){const f=n(mM(d));this.hasMutatedConstraints=!!f,f&&(d=Dg(f))}return d}startAnimation(e){const{drag:n,dragMomentum:i,dragElastic:a,dragTransition:c,dragSnapToOrigin:d,onDragTransitionEnd:f}=this.getProps(),v=this.constraints||{},m=xr(g=>{if(!n5(g,n,this.currentDirection))return;let b=v&&v[g]||{};d&&(b={min:0,max:0});const S=a?200:1e6,C=a?40:1e7,P={type:"inertia",velocity:i?e[g]:0,bounceStiffness:S,bounceDamping:C,timeConstant:750,restDelta:1,restSpeed:10,...c,...b};return this.startAxisValueAnimation(g,P)});return Promise.all(m).then(f)}startAxisValueAnimation(e,n){const i=this.getAxisMotionValue(e);return i.start(Cv(e,i,0,n,this.visualElement,!1,sp(this.visualElement,e)))}stopAnimation(){xr(e=>this.getAxisMotionValue(e).stop())}pauseAnimation(){xr(e=>{var n;return(n=this.getAxisMotionValue(e).animation)===null||n===void 0?void 0:n.pause()})}getAnimationState(e){var n;return(n=this.getAxisMotionValue(e).animation)===null||n===void 0?void 0:n.state}getAxisMotionValue(e){const n=`_drag${e.toUpperCase()}`,i=this.visualElement.getProps(),a=i[n];return a||this.visualElement.getValue(e,(i.initial?i.initial[e]:void 0)||0)}snapToCursor(e){xr(n=>{const{drag:i}=this.getProps();if(!n5(n,i,this.currentDirection))return;const{projection:a}=this.visualElement,c=this.getAxisMotionValue(n);if(a&&a.layout){const{min:d,max:f}=a.layout.layoutBox[n];c.set(e[n]-j0(d,f,.5))}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:e,dragConstraints:n}=this.getProps(),{projection:i}=this.visualElement;if(!gs(n)||!i||!this.constraints)return;this.stopAnimation();const a={x:0,y:0};xr(d=>{const f=this.getAxisMotionValue(d);if(f&&this.constraints!==!1){const v=f.get();a[d]=pM({min:v,max:v},this.constraints[d])}});const{transformTemplate:c}=this.visualElement.getProps();this.visualElement.current.style.transform=c?c({},""):"none",i.root&&i.root.updateScroll(),i.updateLayout(),this.resolveConstraints(),xr(d=>{if(!n5(d,e,null))return;const f=this.getAxisMotionValue(d),{min:v,max:m}=this.constraints[d];f.set(j0(v,m,a[d]))})}addListeners(){if(!this.visualElement.current)return;$M.set(this.visualElement,this);const e=this.visualElement.current,n=C2(e,"pointerdown",v=>{const{drag:m,dragListener:g=!0}=this.getProps();m&&g&&this.start(v)}),i=()=>{const{dragConstraints:v}=this.getProps();gs(v)&&v.current&&(this.constraints=this.resolveRefConstraints())},{projection:a}=this.visualElement,c=a.addEventListener("measure",i);a&&!a.layout&&(a.root&&a.root.updateScroll(),a.updateLayout()),Je.read(i);const d=x2(window,"resize",()=>this.scalePositionWithinConstraints()),f=a.addEventListener("didUpdate",({delta:v,hasLayoutChanged:m})=>{this.isDragging&&m&&(xr(g=>{const b=this.getAxisMotionValue(g);b&&(this.originPoint[g]+=v[g].translate,b.set(b.get()+v[g].translate))}),this.visualElement.render())});return()=>{d(),n(),c(),f&&f()}}getProps(){const e=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:i=!1,dragPropagation:a=!1,dragConstraints:c=!1,dragElastic:d=fp,dragMomentum:f=!0}=e;return{...e,drag:n,dragDirectionLock:i,dragPropagation:a,dragConstraints:c,dragElastic:d,dragMomentum:f}}}function n5(t,e,n){return(e===!0||e===t)&&(n===null||n===t)}function CM(t,e=10){let n=null;return Math.abs(t.y)>e?n="y":Math.abs(t.x)>e&&(n="x"),n}class _M extends wo{constructor(e){super(e),this.removeGroupControls=Rt,this.removeListeners=Rt,this.controls=new SM(e)}mount(){const{dragControls:e}=this.node.getProps();e&&(this.removeGroupControls=e.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||Rt}unmount(){this.removeGroupControls(),this.removeListeners()}}const j4=t=>(e,n)=>{t&&Je.postRender(()=>t(e,n))};class PM extends wo{constructor(){super(...arguments),this.removePointerDownListener=Rt}onPointerDown(e){this.session=new Ag(e,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:Ig(this.node)})}createPanHandlers(){const{onPanSessionStart:e,onPanStart:n,onPan:i,onPanEnd:a}=this.node.getProps();return{onSessionStart:j4(e),onStart:j4(n),onMove:i,onEnd:(c,d)=>{delete this.session,a&&Je.postRender(()=>a(c,d))}}}mount(){this.removePointerDownListener=C2(this.node.current,"pointerdown",e=>this.onPointerDown(e))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}function Fg(){const t=x.useContext(Zs);if(t===null)return[!0,null];const{isPresent:e,onExitComplete:n,register:i}=t,a=x.useId();return x.useEffect(()=>i(a),[]),!e&&n?[!1,()=>n&&n(a)]:[!0]}function EM(){return kM(x.useContext(Zs))}function kM(t){return t===null?!0:t.isPresent}const f5={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function K4(t,e){return e.max===e.min?0:t/(e.max-e.min)*100}const wc={correct:(t,e)=>{if(!e.target)return t;if(typeof t=="string")if(je.test(t))t=parseFloat(t);else return t;const n=K4(t,e.target.x),i=K4(t,e.target.y);return`${n}% ${i}%`}},TM={correct:(t,{treeScale:e,projectionDelta:n})=>{const i=t,a=yi.parse(t);if(a.length>5)return i;const c=yi.createTransformer(t),d=typeof a[0]!="number"?1:0,f=n.x.scale*e.x,v=n.y.scale*e.y;a[0+d]/=f,a[1+d]/=v;const m=j0(f,v,.5);return typeof a[2+d]=="number"&&(a[2+d]/=m),typeof a[3+d]=="number"&&(a[3+d]/=m),c(a)}};class MM extends x.Component{componentDidMount(){const{visualElement:e,layoutGroup:n,switchLayoutGroup:i,layoutId:a}=this.props,{projection:c}=e;_8(AM),c&&(n.group&&n.group.add(c),i&&i.register&&a&&i.register(c),c.root.didUpdate(),c.addEventListener("animationComplete",()=>{this.safeToRemove()}),c.setOptions({...c.options,onExitComplete:()=>this.safeToRemove()})),f5.hasEverUpdated=!0}getSnapshotBeforeUpdate(e){const{layoutDependency:n,visualElement:i,drag:a,isPresent:c}=this.props,d=i.projection;return d&&(d.isPresent=c,a||e.layoutDependency!==n||n===void 0?d.willUpdate():this.safeToRemove(),e.isPresent!==c&&(c?d.promote():d.relegate()||Je.postRender(()=>{const f=d.getStack();(!f||!f.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:e}=this.props.visualElement;e&&(e.root.didUpdate(),Wp.postRender(()=>{!e.currentAnimation&&e.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:e,layoutGroup:n,switchLayoutGroup:i}=this.props,{projection:a}=e;a&&(a.scheduleCheckAfterUnmount(),n&&n.group&&n.group.remove(a),i&&i.deregister&&i.deregister(a))}safeToRemove(){const{safeToRemove:e}=this.props;e&&e()}render(){return null}}function Zg(t){const[e,n]=Fg(),i=x.useContext(As);return k.jsx(MM,{...t,layoutGroup:i,switchLayoutGroup:x.useContext(Up),isPresent:e,safeToRemove:n})}const AM={borderRadius:{...wc,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:wc,borderTopRightRadius:wc,borderBottomLeftRadius:wc,borderBottomRightRadius:wc,boxShadow:TM},Og=["TopLeft","TopRight","BottomLeft","BottomRight"],LM=Og.length,W4=t=>typeof t=="string"?parseFloat(t):t,U4=t=>typeof t=="number"||je.test(t);function DM(t,e,n,i,a,c){a?(t.opacity=j0(0,n.opacity!==void 0?n.opacity:1,RM(i)),t.opacityExit=j0(e.opacity!==void 0?e.opacity:1,0,BM(i))):c&&(t.opacity=j0(e.opacity!==void 0?e.opacity:1,n.opacity!==void 0?n.opacity:1,i));for(let d=0;die?1:n(mo(t,e,i))}function q4(t,e){t.min=e.min,t.max=e.max}function yr(t,e){q4(t.x,e.x),q4(t.y,e.y)}function Y4(t,e,n,i,a){return t-=e,t=L5(t,1/n,i),a!==void 0&&(t=L5(t,1/a,i)),t}function VM(t,e=0,n=1,i=.5,a,c=t,d=t){if(S2.test(e)&&(e=parseFloat(e),e=j0(d.min,d.max,e/100)-d.min),typeof e!="number")return;let f=j0(c.min,c.max,i);t===c&&(f-=e),t.min=Y4(t.min,e,n,f,a),t.max=Y4(t.max,e,n,f,a)}function X4(t,e,[n,i,a],c,d){VM(t,e[n],e[i],e[a],e.scale,c,d)}const IM=["x","scaleX","originX"],FM=["y","scaleY","originY"];function Q4(t,e,n,i){X4(t.x,e,IM,n?n.x:void 0,i?i.x:void 0),X4(t.y,e,FM,n?n.y:void 0,i?i.y:void 0)}function J4(t){return t.translate===0&&t.scale===1}function Hg(t){return J4(t.x)&&J4(t.y)}function ZM(t,e){return t.x.min===e.x.min&&t.x.max===e.x.max&&t.y.min===e.y.min&&t.y.max===e.y.max}function zg(t,e){return Math.round(t.x.min)===Math.round(e.x.min)&&Math.round(t.x.max)===Math.round(e.x.max)&&Math.round(t.y.min)===Math.round(e.y.min)&&Math.round(t.y.max)===Math.round(e.y.max)}function e6(t){return Rn(t.x)/Rn(t.y)}class OM{constructor(){this.members=[]}add(e){nf(this.members,e),e.scheduleRender()}remove(e){if(c1(this.members,e),e===this.prevLead&&(this.prevLead=void 0),e===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(e){const n=this.members.findIndex(a=>e===a);if(n===0)return!1;let i;for(let a=n;a>=0;a--){const c=this.members[a];if(c.isPresent!==!1){i=c;break}}return i?(this.promote(i),!0):!1}promote(e,n){const i=this.lead;if(e!==i&&(this.prevLead=i,this.lead=e,e.show(),i)){i.instance&&i.scheduleRender(),e.scheduleRender(),e.resumeFrom=i,n&&(e.resumeFrom.preserveOpacity=!0),i.snapshot&&(e.snapshot=i.snapshot,e.snapshot.latestValues=i.animationValues||i.latestValues),e.root&&e.root.isUpdating&&(e.isLayoutDirty=!0);const{crossfade:a}=e.options;a===!1&&i.hide()}}exitAnimationComplete(){this.members.forEach(e=>{const{options:n,resumingFrom:i}=e;n.onExitComplete&&n.onExitComplete(),i&&i.options.onExitComplete&&i.options.onExitComplete()})}scheduleRender(){this.members.forEach(e=>{e.instance&&e.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function t6(t,e,n){let i="";const a=t.x.translate/e.x,c=t.y.translate/e.y,d=(n==null?void 0:n.z)||0;if((a||c||d)&&(i=`translate3d(${a}px, ${c}px, ${d}px) `),(e.x!==1||e.y!==1)&&(i+=`scale(${1/e.x}, ${1/e.y}) `),n){const{transformPerspective:m,rotate:g,rotateX:b,rotateY:S,skewX:C,skewY:P}=n;m&&(i=`perspective(${m}px) ${i}`),g&&(i+=`rotate(${g}deg) `),b&&(i+=`rotateX(${b}deg) `),S&&(i+=`rotateY(${S}deg) `),C&&(i+=`skewX(${C}deg) `),P&&(i+=`skewY(${P}deg) `)}const f=t.x.scale*e.x,v=t.y.scale*e.y;return(f!==1||v!==1)&&(i+=`scale(${f}, ${v})`),i||"none"}const NM=(t,e)=>t.depth-e.depth;class jg{constructor(){this.children=[],this.isDirty=!1}add(e){nf(this.children,e),this.isDirty=!0}remove(e){c1(this.children,e),this.isDirty=!0}forEach(e){this.isDirty&&this.children.sort(NM),this.isDirty=!1,this.children.forEach(e)}}function Kg(t,e){const n=co.now(),i=({timestamp:a})=>{const c=a-n;c>=e&&(Dn(i),t(c-e))};return Je.read(i,!0),()=>Dn(i)}function HM(t){window.MotionDebug&&window.MotionDebug.record(t)}function Wg(t){return t instanceof SVGElement&&t.tagName!=="svg"}function Mv(t,e,n){const i=G0(t)?t:Kr(t);return i.start(Cv("",i,e,n)),i.animation}const J7=["","X","Y","Z"],zM={visibility:"hidden"},n6=1e3;let jM=0;const _l={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0};function e3(t,e,n,i){const{latestValues:a}=e;a[t]&&(n[t]=a[t],e.setStaticValue(t,0),i&&(i[t]=0))}function Ug(t){if(t.hasCheckedOptimisedAppear=!0,t.root===t)return!1;const{visualElement:e}=t.options;return e?kg(e)?!0:t.parent&&!t.parent.hasCheckedOptimisedAppear?Ug(t.parent):!1:!1}function Gg({attachResizeListener:t,defaultParent:e,measureScroll:n,checkIsScrollRoot:i,resetTransform:a}){return class{constructor(d={},f=e==null?void 0:e()){this.id=jM++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,_l.totalNodes=_l.resolvedTargetDeltas=_l.recalculatedProjection=0,this.nodes.forEach(UM),this.nodes.forEach(QM),this.nodes.forEach(JM),this.nodes.forEach(GM),HM(_l)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=d,this.root=f?f.root||f:this,this.path=f?[...f.path,f]:[],this.parent=f,this.depth=f?f.depth+1:0;for(let v=0;vthis.root.updateBlockedByResize=!1;t(d,()=>{this.root.updateBlockedByResize=!0,b&&b(),b=Kg(S,250),f5.hasAnimatedSinceResize&&(f5.hasAnimatedSinceResize=!1,this.nodes.forEach(i6))})}v&&this.root.registerSharedNode(v,this),this.options.animate!==!1&&g&&(v||m)&&this.addEventListener("didUpdate",({delta:b,hasLayoutChanged:S,hasRelativeTargetChanged:C,layout:P})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const T=this.options.transition||g.getDefaultTransition()||iA,{onLayoutAnimationStart:A,onLayoutAnimationComplete:V}=g.getProps(),R=!this.targetLayout||!zg(this.targetLayout,P)||C,F=!S&&C;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||F||S&&(R||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(b,F);const N={...uv(T,"layout"),onPlay:A,onComplete:V};(g.shouldReduceMotion||this.options.layoutRoot)&&(N.delay=0,N.type=!1),this.startAnimation(N)}else S||i6(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=P})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const d=this.getStack();d&&d.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,Dn(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(eA),this.animationId++)}getTransformTemplate(){const{visualElement:d}=this.options;return d&&d.getProps().transformTemplate}willUpdate(d=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.HandoffCancelAllAnimations&&Ug(this)&&window.HandoffCancelAllAnimations(),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let g=0;g{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure())}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let v=0;v{const z=N/1e3;o6(b.x,d.x,z),o6(b.y,d.y,z),this.setTargetDelta(b),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(Fc(S,this.layout.layoutBox,this.relativeParent.layout.layoutBox),nA(this.relativeTarget,this.relativeTargetOrigin,S,z),F&&ZM(this.relativeTarget,F)&&(this.isProjectionDirty=!1),F||(F=J0()),yr(F,this.relativeTarget)),T&&(this.animationValues=g,DM(g,m,this.latestValues,z,R,V)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=z},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(d){this.notifyListeners("animationStart"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&(Dn(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Je.update(()=>{f5.hasAnimatedSinceResize=!0,this.currentAnimation=Mv(0,n6,{...d,onUpdate:f=>{this.mixTargetDelta(f),d.onUpdate&&d.onUpdate(f)},onComplete:()=>{d.onComplete&&d.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const d=this.getStack();d&&d.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(n6),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const d=this.getLead();let{targetWithTransforms:f,target:v,layout:m,latestValues:g}=d;if(!(!f||!v||!m)){if(this!==d&&this.layout&&m&&qg(this.options.animationType,this.layout.layoutBox,m.layoutBox)){v=this.target||J0();const b=Rn(this.layout.layoutBox.x);v.x.min=d.target.x.min,v.x.max=v.x.min+b;const S=Rn(this.layout.layoutBox.y);v.y.min=d.target.y.min,v.y.max=v.y.min+S}yr(f,v),xs(f,g),Ic(this.projectionDeltaWithTransform,this.layoutCorrected,f,g)}}registerSharedNode(d,f){this.sharedNodes.has(d)||this.sharedNodes.set(d,new OM),this.sharedNodes.get(d).add(f);const m=f.options.initialPromotionConfig;f.promote({transition:m?m.transition:void 0,preserveFollowOpacity:m&&m.shouldPreserveFollowOpacity?m.shouldPreserveFollowOpacity(f):void 0})}isLead(){const d=this.getStack();return d?d.lead===this:!0}getLead(){var d;const{layoutId:f}=this.options;return f?((d=this.getStack())===null||d===void 0?void 0:d.lead)||this:this}getPrevLead(){var d;const{layoutId:f}=this.options;return f?(d=this.getStack())===null||d===void 0?void 0:d.prevLead:void 0}getStack(){const{layoutId:d}=this.options;if(d)return this.root.sharedNodes.get(d)}promote({needsReset:d,transition:f,preserveFollowOpacity:v}={}){const m=this.getStack();m&&m.promote(this,v),d&&(this.projectionDelta=void 0,this.needsReset=!0),f&&this.setOptions({transition:f})}relegate(){const d=this.getStack();return d?d.relegate(this):!1}resetSkewAndRotation(){const{visualElement:d}=this.options;if(!d)return;let f=!1;const{latestValues:v}=d;if((v.z||v.rotate||v.rotateX||v.rotateY||v.rotateZ||v.skewX||v.skewY)&&(f=!0),!f)return;const m={};v.z&&e3("z",d,m,this.animationValues);for(let g=0;g{var f;return(f=d.currentAnimation)===null||f===void 0?void 0:f.stop()}),this.root.nodes.forEach(r6),this.root.sharedNodes.clear()}}}function KM(t){t.updateLayout()}function WM(t){var e;const n=((e=t.resumeFrom)===null||e===void 0?void 0:e.snapshot)||t.snapshot;if(t.isLead()&&t.layout&&n&&t.hasListeners("didUpdate")){const{layoutBox:i,measuredBox:a}=t.layout,{animationType:c}=t.options,d=n.source!==t.layout.source;c==="size"?xr(b=>{const S=d?n.measuredBox[b]:n.layoutBox[b],C=Rn(S);S.min=i[b].min,S.max=S.min+C}):qg(c,n.layoutBox,i)&&xr(b=>{const S=d?n.measuredBox[b]:n.layoutBox[b],C=Rn(i[b]);S.max=S.min+C,t.relativeTarget&&!t.currentAnimation&&(t.isProjectionDirty=!0,t.relativeTarget[b].max=t.relativeTarget[b].min+C)});const f=bs();Ic(f,i,n.layoutBox);const v=bs();d?Ic(v,t.applyTransform(a,!0),n.measuredBox):Ic(v,i,n.layoutBox);const m=!Hg(f);let g=!1;if(!t.resumeFrom){const b=t.getClosestProjectingParent();if(b&&!b.resumeFrom){const{snapshot:S,layout:C}=b;if(S&&C){const P=J0();Fc(P,n.layoutBox,S.layoutBox);const T=J0();Fc(T,i,C.layoutBox),zg(P,T)||(g=!0),b.options.layoutRoot&&(t.relativeTarget=T,t.relativeTargetOrigin=P,t.relativeParent=b)}}}t.notifyListeners("didUpdate",{layout:i,snapshot:n,delta:v,layoutDelta:f,hasLayoutChanged:m,hasRelativeTargetChanged:g})}else if(t.isLead()){const{onExitComplete:i}=t.options;i&&i()}t.options.transition=void 0}function UM(t){_l.totalNodes++,t.parent&&(t.isProjecting()||(t.isProjectionDirty=t.parent.isProjectionDirty),t.isSharedProjectionDirty||(t.isSharedProjectionDirty=!!(t.isProjectionDirty||t.parent.isProjectionDirty||t.parent.isSharedProjectionDirty)),t.isTransformDirty||(t.isTransformDirty=t.parent.isTransformDirty))}function GM(t){t.isProjectionDirty=t.isSharedProjectionDirty=t.isTransformDirty=!1}function qM(t){t.clearSnapshot()}function r6(t){t.clearMeasurements()}function YM(t){t.isLayoutDirty=!1}function XM(t){const{visualElement:e}=t.options;e&&e.getProps().onBeforeLayoutMeasure&&e.notify("BeforeLayoutMeasure"),t.resetTransform()}function i6(t){t.finishAnimation(),t.targetDelta=t.relativeTarget=t.target=void 0,t.isProjectionDirty=!0}function QM(t){t.resolveTargetDelta()}function JM(t){t.calcProjection()}function eA(t){t.resetSkewAndRotation()}function tA(t){t.removeLeadSnapshot()}function o6(t,e,n){t.translate=j0(e.translate,0,n),t.scale=j0(e.scale,1,n),t.origin=e.origin,t.originPoint=e.originPoint}function l6(t,e,n,i){t.min=j0(e.min,n.min,i),t.max=j0(e.max,n.max,i)}function nA(t,e,n,i){l6(t.x,e.x,n.x,i),l6(t.y,e.y,n.y,i)}function rA(t){return t.animationValues&&t.animationValues.opacityExit!==void 0}const iA={duration:.45,ease:[.4,0,.1,1]},a6=t=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(t),s6=a6("applewebkit/")&&!a6("chrome/")?Math.round:Rt;function u6(t){t.min=s6(t.min),t.max=s6(t.max)}function oA(t){u6(t.x),u6(t.y)}function qg(t,e,n){return t==="position"||t==="preserve-aspect"&&!dp(e6(e),e6(n),.2)}const lA=Gg({attachResizeListener:(t,e)=>x2(t,"resize",e),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),Al={current:void 0},Yg=Gg({measureScroll:t=>({x:t.scrollLeft,y:t.scrollTop}),defaultParent:()=>{if(!Al.current){const t=new lA({});t.mount(window),t.setOptions({layoutScroll:!0}),Al.current=t}return Al.current},resetTransform:(t,e)=>{t.style.transform=e!==void 0?e:"none"},checkIsScrollRoot:t=>window.getComputedStyle(t).position==="fixed"}),Xg={pan:{Feature:PM},drag:{Feature:_M,ProjectionNode:Yg,MeasureLayout:Zg}},D5={current:null},Av={current:!1};function Qg(){if(Av.current=!0,!!X5)if(window.matchMedia){const t=window.matchMedia("(prefers-reduced-motion)"),e=()=>D5.current=t.matches;t.addListener(e),e()}else D5.current=!1}function aA(t,e,n){for(const i in e){const a=e[i],c=n[i];if(G0(a))t.addValue(i,a);else if(G0(c))t.addValue(i,Kr(a,{owner:t}));else if(c!==a)if(t.hasValue(i)){const d=t.getValue(i);d.liveStyle===!0?d.jump(a):d.hasAnimated||d.set(a)}else{const d=t.getStaticValue(i);t.addValue(i,Kr(d!==void 0?d:a,{owner:t}))}}for(const i in n)e[i]===void 0&&t.removeValue(i);return e}const Ds=new WeakMap,sA=[...J8,zt,yi],uA=t=>sA.find(Q8(t)),c6=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"],cA=qp.length;class Lv{scrapeMotionValuesFromProps(e,n,i){return{}}constructor({parent:e,props:n,presenceContext:i,reducedMotionConfig:a,blockInitialAnimation:c,visualState:d},f={}){this.applyWillChange=!1,this.resolveKeyframes=(S,C,P,T)=>new this.KeyframeResolver(S,C,P,T,this),this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=cv,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.scheduleRender=()=>Je.render(this.render,!1,!0);const{latestValues:v,renderState:m}=d;this.latestValues=v,this.baseTarget={...v},this.initialValues=n.initial?{...v}:{},this.renderState=m,this.parent=e,this.props=n,this.presenceContext=i,this.depth=e?e.depth+1:0,this.reducedMotionConfig=a,this.options=f,this.blockInitialAnimation=!!c,this.isControllingVariants=ef(n),this.isVariantNode=$8(n),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=!!(e&&e.current);const{willChange:g,...b}=this.scrapeMotionValuesFromProps(n,{},this);for(const S in b){const C=b[S];v[S]!==void 0&&G0(C)&&C.set(v[S],!1)}}mount(e){this.current=e,Ds.set(e,this),this.projection&&!this.projection.instance&&this.projection.mount(e),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=this.parent.addVariantChild(this)),this.values.forEach((n,i)=>this.bindToMotionValue(i,n)),Av.current||Qg(),this.shouldReduceMotion=this.reducedMotionConfig==="never"?!1:this.reducedMotionConfig==="always"?!0:D5.current,this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){Ds.delete(this.current),this.projection&&this.projection.unmount(),Dn(this.notifyUpdate),Dn(this.render),this.valueSubscriptions.forEach(e=>e()),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const e in this.events)this.events[e].clear();for(const e in this.features){const n=this.features[e];n&&(n.unmount(),n.isMounted=!1)}this.current=null}bindToMotionValue(e,n){const i=xi.has(e),a=n.on("change",d=>{this.latestValues[e]=d,this.props.onUpdate&&Je.preRender(this.notifyUpdate),i&&this.projection&&(this.projection.isTransformDirty=!0)}),c=n.on("renderRequest",this.scheduleRender);this.valueSubscriptions.set(e,()=>{a(),c(),n.owner&&n.stop()})}sortNodePosition(e){return!this.current||!this.sortInstanceNodePosition||this.type!==e.type?0:this.sortInstanceNodePosition(this.current,e.current)}updateFeatures(){let e="animation";for(e in Ms){const n=Ms[e];if(!n)continue;const{isEnabled:i,Feature:a}=n;if(!this.features[e]&&a&&i(this.props)&&(this.features[e]=new a(this)),this.features[e]){const c=this.features[e];c.isMounted?c.update():(c.mount(),c.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):J0()}getStaticValue(e){return this.latestValues[e]}setStaticValue(e,n){this.latestValues[e]=n}update(e,n){(e.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=e,this.prevPresenceContext=this.presenceContext,this.presenceContext=n;for(let i=0;in.variantChildren.delete(e)}addValue(e,n){const i=this.values.get(e);n!==i&&(i&&this.removeValue(e),this.bindToMotionValue(e,n),this.values.set(e,n),this.latestValues[e]=n.get())}removeValue(e){this.values.delete(e);const n=this.valueSubscriptions.get(e);n&&(n(),this.valueSubscriptions.delete(e)),delete this.latestValues[e],this.removeValueFromRenderState(e,this.renderState)}hasValue(e){return this.values.has(e)}getValue(e,n){if(this.props.values&&this.props.values[e])return this.props.values[e];let i=this.values.get(e);return i===void 0&&n!==void 0&&(i=Kr(n===null?void 0:n,{owner:this}),this.addValue(e,i)),i}readValue(e,n){var i;let a=this.latestValues[e]!==void 0||!this.current?this.latestValues[e]:(i=this.getBaseTargetFromProps(this.props,e))!==null&&i!==void 0?i:this.readValueFromInstance(this.current,e,this.options);return a!=null&&(typeof a=="string"&&(Y8(a)||q8(a))?a=parseFloat(a):!uA(a)&&yi.test(n)&&(a=ag(e,n)),this.setBaseTarget(e,G0(a)?a.get():a)),G0(a)?a.get():a}setBaseTarget(e,n){this.baseTarget[e]=n}getBaseTarget(e){var n;const{initial:i}=this.props;let a;if(typeof i=="string"||typeof i=="object"){const d=lv(this.props,i,(n=this.presenceContext)===null||n===void 0?void 0:n.custom);d&&(a=d[e])}if(i&&a!==void 0)return a;const c=this.getBaseTargetFromProps(this.props,e);return c!==void 0&&!G0(c)?c:this.initialValues[e]!==void 0&&a===void 0?void 0:this.baseTarget[e]}on(e,n){return this.events[e]||(this.events[e]=new _v),this.events[e].add(n)}notify(e,...n){this.events[e]&&this.events[e].notify(...n)}}class Jg extends Lv{constructor(){super(...arguments),this.KeyframeResolver=sg}sortInstanceNodePosition(e,n){return e.compareDocumentPosition(n)&2?1:-1}getBaseTargetFromProps(e,n){return e.style?e.style[n]:void 0}removeValueFromRenderState(e,{vars:n,style:i}){delete n[e],delete i[e]}}function dA(t){return window.getComputedStyle(t)}class ey extends Jg{constructor(){super(...arguments),this.type="html",this.applyWillChange=!0}readValueFromInstance(e,n){if(xi.has(n)){const i=fv(n);return i&&i.default||0}else{const i=dA(e),a=(T8(n)?i.getPropertyValue(n):i[n])||0;return typeof a=="string"?a.trim():a}}measureInstanceViewportBox(e,{transformPagePoint:n}){return Vg(e,n)}build(e,n,i){tv(e,n,i.transformTemplate)}scrapeMotionValuesFromProps(e,n,i){return ov(e,n,i)}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:e}=this.props;G0(e)&&(this.childSubscription=e.on("change",n=>{this.current&&(this.current.textContent=`${n}`)}))}renderInstance(e,n,i,a){V8(e,n,i,a)}}class ty extends Jg{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1}getBaseTargetFromProps(e,n){return e[n]}readValueFromInstance(e,n){if(xi.has(n)){const i=fv(n);return i&&i.default||0}return n=I8.has(n)?n:Q5(n),e.getAttribute(n)}measureInstanceViewportBox(){return J0()}scrapeMotionValuesFromProps(e,n,i){return Z8(e,n,i)}build(e,n,i){rv(e,n,this.isSVGTag,i.transformTemplate)}renderInstance(e,n,i,a){F8(e,n,i,a)}mount(e){this.isSVGTag=iv(e.tagName),super.mount(e)}}const Dv=(t,e)=>Qp(t)?new ty(e):new ey(e,{allowProjection:t!==x.Fragment}),ny={layout:{ProjectionNode:Yg,MeasureLayout:Zg}},ry={...Tv,...U8,...Xg,...ny},Rv=C8((t,e)=>av(t,e,ry,Dv));function fA(t){return Xp(av(t,{forwardMotionProps:!1},ry,Dv))}const iy=C8(av);function oy(){const t=x.useRef(!1);return xo(()=>(t.current=!0,()=>{t.current=!1}),[]),t}function vf(){const t=oy(),[e,n]=x.useState(0),i=x.useCallback(()=>{t.current&&n(e+1)},[e]);return[x.useCallback(()=>Je.postRender(i),[i]),e]}class pA extends x.Component{getSnapshotBeforeUpdate(e){const n=this.props.childRef.current;if(n&&e.isPresent&&!this.props.isPresent){const i=this.props.sizeRef.current;i.height=n.offsetHeight||0,i.width=n.offsetWidth||0,i.top=n.offsetTop,i.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function vA({children:t,isPresent:e}){const n=x.useId(),i=x.useRef(null),a=x.useRef({width:0,height:0,top:0,left:0}),{nonce:c}=x.useContext(T2);return x.useInsertionEffect(()=>{const{width:d,height:f,top:v,left:m}=a.current;if(e||!i.current||!d||!f)return;i.current.dataset.motionPopId=n;const g=document.createElement("style");return c&&(g.nonce=c),document.head.appendChild(g),g.sheet&&g.sheet.insertRule(` +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var c=!0,d=!1,f;return{s:function(){n=n.call(t)},n:function(){var v=n.next();return c=v.done,v},e:function(v){d=!0,f=v},f:function(){try{!c&&n.return!=null&&n.return()}finally{if(d)throw f}}}}function Ih(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),n.push.apply(n,i)}return n}function Z7(t){for(var e=1;e{const a=t?n1:"div",{className:c,style:d,otherProps:f}=R_(i);return k.jsx(a,{className:c,style:d,"data-test-id":n,...f,children:e})},B_="modulepreload",V_=function(t,e){return new URL(t,e).href},Zh={},I_=function(e,n,i){let a=Promise.resolve();if(n&&n.length>0){let d=function(g){return Promise.all(g.map(b=>Promise.resolve(b).then(S=>({status:"fulfilled",value:S}),S=>({status:"rejected",reason:S}))))};const f=document.getElementsByTagName("link"),v=document.querySelector("meta[property=csp-nonce]"),m=(v==null?void 0:v.nonce)||(v==null?void 0:v.getAttribute("nonce"));a=d(n.map(g=>{if(g=V_(g,i),g in Zh)return;Zh[g]=!0;const b=g.endsWith(".css"),S=b?'[rel="stylesheet"]':"";if(!!i)for(let T=f.length-1;T>=0;T--){const A=f[T];if(A.href===g&&(!b||A.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${g}"]${S}`))return;const P=document.createElement("link");if(P.rel=b?"stylesheet":B_,b||(P.as="script"),P.crossOrigin="",P.href=g,m&&P.setAttribute("nonce",m),document.head.appendChild(P),b)return new Promise((T,A)=>{P.addEventListener("load",T),P.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${g}`)))})}))}function c(d){const f=new Event("vite:preloadError",{cancelable:!0});if(f.payload=d,window.dispatchEvent(f),!f.defaultPrevented)throw d}return a.then(d=>{for(const f of d||[])f.status==="rejected"&&c(f.reason);return e().catch(c)})},Hc=Math.min,Ss=Math.max,y5=Math.round,fo=t=>({x:t,y:t}),F_={left:"right",right:"left",bottom:"top",top:"bottom"},Z_={start:"end",end:"start"};function Z3(t,e,n){return Ss(t,Hc(e,n))}function r1(t,e){return typeof t=="function"?t(e):t}function Ll(t){return t.split("-")[0]}function i1(t){return t.split("-")[1]}function Lm(t){return t==="x"?"y":"x"}function Mp(t){return t==="y"?"height":"width"}function N5(t){return["top","bottom"].includes(Ll(t))?"y":"x"}function Ap(t){return Lm(N5(t))}function O_(t,e,n){n===void 0&&(n=!1);const i=i1(t),a=Ap(t),c=Mp(a);let d=a==="x"?i===(n?"end":"start")?"right":"left":i==="start"?"bottom":"top";return e.reference[c]>e.floating[c]&&(d=b5(d)),[d,b5(d)]}function N_(t){const e=b5(t);return[O3(t),e,O3(e)]}function O3(t){return t.replace(/start|end/g,e=>Z_[e])}function H_(t,e,n){const i=["left","right"],a=["right","left"],c=["top","bottom"],d=["bottom","top"];switch(t){case"top":case"bottom":return n?e?a:i:e?i:a;case"left":case"right":return e?c:d;default:return[]}}function z_(t,e,n,i){const a=i1(t);let c=H_(Ll(t),n==="start",i);return a&&(c=c.map(d=>d+"-"+a),e&&(c=c.concat(c.map(O3)))),c}function b5(t){return t.replace(/left|right|bottom|top/g,e=>F_[e])}function j_(t){return{top:0,right:0,bottom:0,left:0,...t}}function Dm(t){return typeof t!="number"?j_(t):{top:t,right:t,bottom:t,left:t}}function x5(t){const{x:e,y:n,width:i,height:a}=t;return{width:i,height:a,top:n,left:e,right:e+i,bottom:n+a,x:e,y:n}}function Oh(t,e,n){let{reference:i,floating:a}=t;const c=N5(e),d=Ap(e),f=Mp(d),v=Ll(e),m=c==="y",g=i.x+i.width/2-a.width/2,b=i.y+i.height/2-a.height/2,S=i[f]/2-a[f]/2;let C;switch(v){case"top":C={x:g,y:i.y-a.height};break;case"bottom":C={x:g,y:i.y+i.height};break;case"right":C={x:i.x+i.width,y:b};break;case"left":C={x:i.x-a.width,y:b};break;default:C={x:i.x,y:i.y}}switch(i1(e)){case"start":C[d]-=S*(n&&m?-1:1);break;case"end":C[d]+=S*(n&&m?-1:1);break}return C}const K_=async(t,e,n)=>{const{placement:i="bottom",strategy:a="absolute",middleware:c=[],platform:d}=n,f=c.filter(Boolean),v=await(d.isRTL==null?void 0:d.isRTL(e));let m=await d.getElementRects({reference:t,floating:e,strategy:a}),{x:g,y:b}=Oh(m,i,v),S=i,C={},P=0;for(let T=0;T({name:"arrow",options:t,async fn(e){const{x:n,y:i,placement:a,rects:c,platform:d,elements:f,middlewareData:v}=e,{element:m,padding:g=0}=r1(t,e)||{};if(m==null)return{};const b=Dm(g),S={x:n,y:i},C=Ap(a),P=Mp(C),T=await d.getDimensions(m),A=C==="y",V=A?"top":"left",R=A?"bottom":"right",F=A?"clientHeight":"clientWidth",N=c.reference[P]+c.reference[C]-S[C]-c.floating[P],z=S[C]-c.reference[C],U=await(d.getOffsetParent==null?void 0:d.getOffsetParent(m));let le=U?U[F]:0;(!le||!await(d.isElement==null?void 0:d.isElement(U)))&&(le=f.floating[F]||c.floating[P]);const D=N/2-z/2,ie=le/2-T[P]/2-1,j=Hc(b[V],ie),X=Hc(b[R],ie),xe=j,G=le-T[P]-X,Q=le/2-T[P]/2+D,he=Z3(xe,Q,G),_e=!v.arrow&&i1(a)!=null&&Q!==he&&c.reference[P]/2-(Qxe<=0)){var ie,j;const xe=(((ie=c.flip)==null?void 0:ie.index)||0)+1,G=z[xe];if(G)return{data:{index:xe,overflows:D},reset:{placement:G}};let Q=(j=D.filter(he=>he.overflows[0]<=0).sort((he,_e)=>he.overflows[1]-_e.overflows[1])[0])==null?void 0:j.placement;if(!Q)switch(C){case"bestFit":{var X;const he=(X=D.map(_e=>[_e.placement,_e.overflows.filter(se=>se>0).reduce((se,fe)=>se+fe,0)]).sort((_e,se)=>_e[1]-se[1])[0])==null?void 0:X[0];he&&(Q=he);break}case"initialPlacement":Q=f;break}if(a!==Q)return{reset:{placement:Q}}}return{}}}};async function G_(t,e){const{placement:n,platform:i,elements:a}=t,c=await(i.isRTL==null?void 0:i.isRTL(a.floating)),d=Ll(n),f=i1(n),v=N5(n)==="y",m=["left","top"].includes(d)?-1:1,g=c&&v?-1:1,b=r1(e,t);let{mainAxis:S,crossAxis:C,alignmentAxis:P}=typeof b=="number"?{mainAxis:b,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...b};return f&&typeof P=="number"&&(C=f==="end"?P*-1:P),v?{x:C*g,y:S*m}:{x:S*m,y:C*g}}const q_=function(t){return t===void 0&&(t=0),{name:"offset",options:t,async fn(e){var n,i;const{x:a,y:c,placement:d,middlewareData:f}=e,v=await G_(e,t);return d===((n=f.offset)==null?void 0:n.placement)&&(i=f.arrow)!=null&&i.alignmentOffset?{}:{x:a+v.x,y:c+v.y,data:{...v,placement:d}}}}},Y_=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){const{x:n,y:i,placement:a}=e,{mainAxis:c=!0,crossAxis:d=!1,limiter:f={fn:A=>{let{x:V,y:R}=A;return{x:V,y:R}}},...v}=r1(t,e),m={x:n,y:i},g=await Rm(e,v),b=N5(Ll(a)),S=Lm(b);let C=m[S],P=m[b];if(c){const A=S==="y"?"top":"left",V=S==="y"?"bottom":"right",R=C+g[A],F=C-g[V];C=Z3(R,C,F)}if(d){const A=b==="y"?"top":"left",V=b==="y"?"bottom":"right",R=P+g[A],F=P-g[V];P=Z3(R,P,F)}const T=f.fn({...e,[S]:C,[b]:P});return{...T,data:{x:T.x-n,y:T.y-i}}}}};function po(t){return Bm(t)?(t.nodeName||"").toLowerCase():"#document"}function Xn(t){var e;return(t==null||(e=t.ownerDocument)==null?void 0:e.defaultView)||window}function bo(t){var e;return(e=(Bm(t)?t.ownerDocument:t.document)||window.document)==null?void 0:e.documentElement}function Bm(t){return t instanceof Node||t instanceof Xn(t).Node}function E2(t){return t instanceof Element||t instanceof Xn(t).Element}function k2(t){return t instanceof HTMLElement||t instanceof Xn(t).HTMLElement}function Nh(t){return typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof Xn(t).ShadowRoot}function o1(t){const{overflow:e,overflowX:n,overflowY:i,display:a}=Pr(t);return/auto|scroll|overlay|hidden|clip/.test(e+i+n)&&!["inline","contents"].includes(a)}function X_(t){return["table","td","th"].includes(po(t))}function Q_(t){return[":popover-open",":modal"].some(e=>{try{return t.matches(e)}catch{return!1}})}function Lp(t){const e=Dp(),n=E2(t)?Pr(t):t;return n.transform!=="none"||n.perspective!=="none"||(n.containerType?n.containerType!=="normal":!1)||!e&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!e&&(n.filter?n.filter!=="none":!1)||["transform","perspective","filter"].some(i=>(n.willChange||"").includes(i))||["paint","layout","strict","content"].some(i=>(n.contain||"").includes(i))}function Vm(t){let e=Ps(t);for(;k2(e)&&!H5(e);){if(Lp(e))return e;if(Q_(e))return null;e=Ps(e)}return null}function Dp(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function H5(t){return["html","body","#document"].includes(po(t))}function Pr(t){return Xn(t).getComputedStyle(t)}function z5(t){return E2(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.scrollX,scrollTop:t.scrollY}}function Ps(t){if(po(t)==="html")return t;const e=t.assignedSlot||t.parentNode||Nh(t)&&t.host||bo(t);return Nh(e)?e.host:e}function Im(t){const e=Ps(t);return H5(e)?t.ownerDocument?t.ownerDocument.body:t.body:k2(e)&&o1(e)?e:Im(e)}function Fm(t,e,n){var i;e===void 0&&(e=[]);const a=Im(t),c=a===((i=t.ownerDocument)==null?void 0:i.body),d=Xn(a);return c?(J_(d),e.concat(d,d.visualViewport||[],o1(a)?a:[],[])):e.concat(a,Fm(a,[]))}function J_(t){return t.parent&&Object.getPrototypeOf(t.parent)?t.frameElement:null}function Zm(t){const e=Pr(t);let n=parseFloat(e.width)||0,i=parseFloat(e.height)||0;const a=k2(t),c=a?t.offsetWidth:n,d=a?t.offsetHeight:i,f=y5(n)!==c||y5(i)!==d;return f&&(n=c,i=d),{width:n,height:i,$:f}}function Om(t){return E2(t)?t:t.contextElement}function Cs(t){const e=Om(t);if(!k2(e))return fo(1);const n=e.getBoundingClientRect(),{width:i,height:a,$:c}=Zm(e);let d=(c?y5(n.width):n.width)/i,f=(c?y5(n.height):n.height)/a;return(!d||!Number.isFinite(d))&&(d=1),(!f||!Number.isFinite(f))&&(f=1),{x:d,y:f}}const eP=fo(0);function Nm(t){const e=Xn(t);return!Dp()||!e.visualViewport?eP:{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}}function tP(t,e,n){return e===void 0&&(e=!1),!n||e&&n!==Xn(t)?!1:e}function zc(t,e,n,i){e===void 0&&(e=!1),n===void 0&&(n=!1);const a=t.getBoundingClientRect(),c=Om(t);let d=fo(1);e&&(i?E2(i)&&(d=Cs(i)):d=Cs(t));const f=tP(c,n,i)?Nm(c):fo(0);let v=(a.left+f.x)/d.x,m=(a.top+f.y)/d.y,g=a.width/d.x,b=a.height/d.y;if(c){const S=Xn(c),C=i&&E2(i)?Xn(i):i;let P=S.frameElement;for(;P&&i&&C!==S;){const T=Cs(P),A=P.getBoundingClientRect(),V=Pr(P),R=A.left+(P.clientLeft+parseFloat(V.paddingLeft))*T.x,F=A.top+(P.clientTop+parseFloat(V.paddingTop))*T.y;v*=T.x,m*=T.y,g*=T.x,b*=T.y,v+=R,m+=F,P=Xn(P).frameElement}}return x5({width:g,height:b,x:v,y:m})}const nP=[":popover-open",":modal"];function Hm(t){let e=!1,n=0,i=0;function a(c){try{e=e||t.matches(c)}catch{}}if(nP.forEach(c=>{a(c)}),e){const c=Vm(t);if(c){const d=c.getBoundingClientRect();n=d.x,i=d.y}}return[e,n,i]}function rP(t){let{elements:e,rect:n,offsetParent:i,strategy:a}=t;const c=bo(i),[d]=e?Hm(e.floating):[!1];if(i===c||d)return n;let f={scrollLeft:0,scrollTop:0},v=fo(1);const m=fo(0),g=k2(i);if((g||!g&&a!=="fixed")&&((po(i)!=="body"||o1(c))&&(f=z5(i)),k2(i))){const b=zc(i);v=Cs(i),m.x=b.x+i.clientLeft,m.y=b.y+i.clientTop}return{width:n.width*v.x,height:n.height*v.y,x:n.x*v.x-f.scrollLeft*v.x+m.x,y:n.y*v.y-f.scrollTop*v.y+m.y}}function iP(t){return Array.from(t.getClientRects())}function zm(t){return zc(bo(t)).left+z5(t).scrollLeft}function oP(t){const e=bo(t),n=z5(t),i=t.ownerDocument.body,a=Ss(e.scrollWidth,e.clientWidth,i.scrollWidth,i.clientWidth),c=Ss(e.scrollHeight,e.clientHeight,i.scrollHeight,i.clientHeight);let d=-n.scrollLeft+zm(t);const f=-n.scrollTop;return Pr(i).direction==="rtl"&&(d+=Ss(e.clientWidth,i.clientWidth)-a),{width:a,height:c,x:d,y:f}}function lP(t,e){const n=Xn(t),i=bo(t),a=n.visualViewport;let c=i.clientWidth,d=i.clientHeight,f=0,v=0;if(a){c=a.width,d=a.height;const m=Dp();(!m||m&&e==="fixed")&&(f=a.offsetLeft,v=a.offsetTop)}return{width:c,height:d,x:f,y:v}}function aP(t,e){const n=zc(t,!0,e==="fixed"),i=n.top+t.clientTop,a=n.left+t.clientLeft,c=k2(t)?Cs(t):fo(1),d=t.clientWidth*c.x,f=t.clientHeight*c.y,v=a*c.x,m=i*c.y;return{width:d,height:f,x:v,y:m}}function Hh(t,e,n){let i;if(e==="viewport")i=lP(t,n);else if(e==="document")i=oP(bo(t));else if(E2(e))i=aP(e,n);else{const a=Nm(t);i={...e,x:e.x-a.x,y:e.y-a.y}}return x5(i)}function jm(t,e){const n=Ps(t);return n===e||!E2(n)||H5(n)?!1:Pr(n).position==="fixed"||jm(n,e)}function sP(t,e){const n=e.get(t);if(n)return n;let i=Fm(t,[]).filter(f=>E2(f)&&po(f)!=="body"),a=null;const c=Pr(t).position==="fixed";let d=c?Ps(t):t;for(;E2(d)&&!H5(d);){const f=Pr(d),v=Lp(d);!v&&f.position==="fixed"&&(a=null),(c?!v&&!a:!v&&f.position==="static"&&!!a&&["absolute","fixed"].includes(a.position)||o1(d)&&!v&&jm(t,d))?i=i.filter(g=>g!==d):a=f,d=Ps(d)}return e.set(t,i),i}function uP(t){let{element:e,boundary:n,rootBoundary:i,strategy:a}=t;const d=[...n==="clippingAncestors"?sP(e,this._c):[].concat(n),i],f=d[0],v=d.reduce((m,g)=>{const b=Hh(e,g,a);return m.top=Ss(b.top,m.top),m.right=Hc(b.right,m.right),m.bottom=Hc(b.bottom,m.bottom),m.left=Ss(b.left,m.left),m},Hh(e,f,a));return{width:v.right-v.left,height:v.bottom-v.top,x:v.left,y:v.top}}function cP(t){const{width:e,height:n}=Zm(t);return{width:e,height:n}}function dP(t,e,n,i){const a=k2(e),c=bo(e),d=n==="fixed",f=zc(t,!0,d,e);let v={scrollLeft:0,scrollTop:0};const m=fo(0);if(a||!a&&!d)if((po(e)!=="body"||o1(c))&&(v=z5(e)),a){const T=zc(e,!0,d,e);m.x=T.x+e.clientLeft,m.y=T.y+e.clientTop}else c&&(m.x=zm(c));let g=f.left+v.scrollLeft-m.x,b=f.top+v.scrollTop-m.y;const[S,C,P]=Hm(i);return S&&(g+=C,b+=P,a&&(g+=e.clientLeft,b+=e.clientTop)),{x:g,y:b,width:f.width,height:f.height}}function zh(t,e){return!k2(t)||Pr(t).position==="fixed"?null:e?e(t):t.offsetParent}function Km(t,e){const n=Xn(t);if(!k2(t))return n;let i=zh(t,e);for(;i&&X_(i)&&Pr(i).position==="static";)i=zh(i,e);return i&&(po(i)==="html"||po(i)==="body"&&Pr(i).position==="static"&&!Lp(i))?n:i||Vm(t)||n}const fP=async function(t){const e=this.getOffsetParent||Km,n=this.getDimensions;return{reference:dP(t.reference,await e(t.floating),t.strategy,t.floating),floating:{x:0,y:0,...await n(t.floating)}}};function pP(t){return Pr(t).direction==="rtl"}const vP={convertOffsetParentRelativeRectToViewportRelativeRect:rP,getDocumentElement:bo,getClippingRect:uP,getOffsetParent:Km,getElementRects:fP,getClientRects:iP,getDimensions:cP,getScale:Cs,isElement:E2,isRTL:pP},hP=Y_,mP=U_,gP=W_,yP=(t,e,n)=>{const i=new Map,a={platform:vP,...n},c={...a.platform,_c:i};return K_(t,e,{...a,platform:c})},C0=typeof document<"u"?ee.useLayoutEffect:()=>{};function dn(t){const e=x.useRef(null);return C0(()=>{e.current=t},[t]),x.useCallback((...n)=>{const i=e.current;return i==null?void 0:i(...n)},[])}function bP(t){let[e,n]=x.useState(t),i=x.useRef(null),a=dn(()=>{if(!i.current)return;let d=i.current.next();if(d.done){i.current=null;return}e===d.value?a():n(d.value)});C0(()=>{i.current&&a()});let c=dn(d=>{i.current=d(e),a()});return[e,c]}const Rp={prefix:String(Math.round(Math.random()*1e10)),current:0},Wm=ee.createContext(Rp),xP=ee.createContext(!1);let wP=!!(typeof window<"u"&&window.document&&window.document.createElement),O7=new WeakMap;function $P(t=!1){let e=x.useContext(Wm),n=x.useRef(null);if(n.current===null&&!t){var i,a;let c=(a=ee.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED)===null||a===void 0||(i=a.ReactCurrentOwner)===null||i===void 0?void 0:i.current;if(c){let d=O7.get(c);d==null?O7.set(c,{id:e.current,state:c.memoizedState}):c.memoizedState!==d.state&&(e.current=d.id,O7.delete(c))}n.current=++e.current}return n.current}function SP(t){let e=x.useContext(Wm);e===Rp&&!wP&&console.warn("When server rendering, you must wrap your application in an to ensure consistent ids are generated between the client and server.");let n=$P(!!t),i=`react-aria${e.prefix}`;return t||`${i}-${n}`}function CP(t){let e=ee.useId(),[n]=x.useState(M2()),i=n?"react-aria":`react-aria${Rp.prefix}`;return t||`${i}-${e}`}const _P=typeof ee.useId=="function"?CP:SP;function PP(){return!1}function EP(){return!0}function kP(t){return()=>{}}function M2(){return typeof ee.useSyncExternalStore=="function"?ee.useSyncExternalStore(kP,PP,EP):x.useContext(xP)}let TP=!!(typeof window<"u"&&window.document&&window.document.createElement),w5=new Map;function Qn(t){let[e,n]=x.useState(t),i=x.useRef(null),a=_P(e),c=x.useCallback(d=>{i.current=d},[]);return TP&&w5.set(a,c),C0(()=>{let d=a;return()=>{w5.delete(d)}},[a]),x.useEffect(()=>{let d=i.current;d&&(i.current=null,n(d))}),a}function MP(t,e){if(t===e)return t;let n=w5.get(t);if(n)return n(e),e;let i=w5.get(e);return i?(i(t),t):e}function w2(t=[]){let e=Qn(),[n,i]=bP(e),a=x.useCallback(()=>{i(function*(){yield e,yield document.getElementById(e)?e:void 0})},[e,i]);return C0(a,[e,a,...t]),n}function vo(...t){return(...e)=>{for(let n of t)typeof n=="function"&&n(...e)}}const z0=t=>{var e;return(e=t==null?void 0:t.ownerDocument)!==null&&e!==void 0?e:document},Cr=t=>t&&"window"in t&&t.window===t?t:z0(t).defaultView||window;function Um(t){var e,n,i="";if(typeof t=="string"||typeof t=="number")i+=t;else if(typeof t=="object")if(Array.isArray(t)){var a=t.length;for(e=0;e=65&&a.charCodeAt(2)<=90?e[a]=vo(c,d):(a==="className"||a==="UNSAFE_className")&&typeof c=="string"&&typeof d=="string"?e[a]=AP(c,d):a==="id"&&c&&d?e.id=MP(c,d):e[a]=d!==void 0?d:c}}return e}function j5(...t){return t.length===1&&t[0]?t[0]:e=>{for(let n of t)typeof n=="function"?n(e):n!=null&&(n.current=e)}}const LP=new Set(["id"]),DP=new Set(["aria-label","aria-labelledby","aria-describedby","aria-details"]),RP=new Set(["href","hrefLang","target","rel","download","ping","referrerPolicy"]),BP=/^(data-.*)$/;function O0(t,e={}){let{labelable:n,isLink:i,propNames:a}=e,c={};for(const d in t)Object.prototype.hasOwnProperty.call(t,d)&&(LP.has(d)||n&&DP.has(d)||i&&RP.has(d)||a!=null&&a.has(d)||BP.test(d))&&(c[d]=t[d]);return c}function qn(t){if(VP())t.focus({preventScroll:!0});else{let e=IP(t);t.focus(),FP(e)}}let Yd=null;function VP(){if(Yd==null){Yd=!1;try{document.createElement("div").focus({get preventScroll(){return Yd=!0,!0}})}catch{}}return Yd}function IP(t){let e=t.parentNode,n=[],i=document.scrollingElement||document.documentElement;for(;e instanceof HTMLElement&&e!==i;)(e.offsetHeight"u"||window.navigator==null?!1:((e=window.navigator.userAgentData)===null||e===void 0?void 0:e.brands.some(n=>t.test(n.brand)))||t.test(window.navigator.userAgent)}function Bp(t){var e;return typeof window<"u"&&window.navigator!=null?t.test(((e=window.navigator.userAgentData)===null||e===void 0?void 0:e.platform)||window.navigator.platform):!1}function bi(t){let e=null;return()=>(e==null&&(e=t()),e)}const ho=bi(function(){return Bp(/^Mac/i)}),ZP=bi(function(){return Bp(/^iPhone/i)}),Gm=bi(function(){return Bp(/^iPad/i)||ho()&&navigator.maxTouchPoints>1}),W5=bi(function(){return ZP()||Gm()}),OP=bi(function(){return ho()||W5()}),Vp=bi(function(){return K5(/AppleWebKit/i)&&!NP()}),NP=bi(function(){return K5(/Chrome/i)}),qm=bi(function(){return K5(/Android/i)}),HP=bi(function(){return K5(/Firefox/i)}),zP=x.createContext({isNative:!0,open:KP,useHref:t=>t});function U5(){return x.useContext(zP)}function Dl(t,e,n=!0){var i,a;let{metaKey:c,ctrlKey:d,altKey:f,shiftKey:v}=e;HP()&&(!((a=window.event)===null||a===void 0||(i=a.type)===null||i===void 0)&&i.startsWith("key"))&&t.target==="_blank"&&(ho()?c=!0:d=!0);let m=Vp()&&ho()&&!Gm()?new KeyboardEvent("keydown",{keyIdentifier:"Enter",metaKey:c,ctrlKey:d,altKey:f,shiftKey:v}):new MouseEvent("click",{metaKey:c,ctrlKey:d,altKey:f,shiftKey:v,bubbles:!0,cancelable:!0});Dl.isOpening=n,qn(t),t.dispatchEvent(m),Dl.isOpening=!1}Dl.isOpening=!1;function jP(t,e){if(t instanceof HTMLAnchorElement)e(t);else if(t.hasAttribute("data-href")){let n=document.createElement("a");n.href=t.getAttribute("data-href"),t.hasAttribute("data-target")&&(n.target=t.getAttribute("data-target")),t.hasAttribute("data-rel")&&(n.rel=t.getAttribute("data-rel")),t.hasAttribute("data-download")&&(n.download=t.getAttribute("data-download")),t.hasAttribute("data-ping")&&(n.ping=t.getAttribute("data-ping")),t.hasAttribute("data-referrer-policy")&&(n.referrerPolicy=t.getAttribute("data-referrer-policy")),t.appendChild(n),e(n),t.removeChild(n)}}function KP(t,e){jP(t,n=>Dl(n,e))}function Ym(t){let e=U5();return{href:t!=null&&t.href?e.useHref(t==null?void 0:t.href):void 0,target:t==null?void 0:t.target,rel:t==null?void 0:t.rel,download:t==null?void 0:t.download,ping:t==null?void 0:t.ping,referrerPolicy:t==null?void 0:t.referrerPolicy}}let ps=new Map,N3=new Set;function jh(){if(typeof window>"u")return;function t(i){return"propertyName"in i}let e=i=>{if(!t(i)||!i.target)return;let a=ps.get(i.target);a||(a=new Set,ps.set(i.target,a),i.target.addEventListener("transitioncancel",n,{once:!0})),a.add(i.propertyName)},n=i=>{if(!t(i)||!i.target)return;let a=ps.get(i.target);if(a&&(a.delete(i.propertyName),a.size===0&&(i.target.removeEventListener("transitioncancel",n),ps.delete(i.target)),ps.size===0)){for(let c of N3)c();N3.clear()}};document.body.addEventListener("transitionrun",e),document.body.addEventListener("transitionend",n)}typeof document<"u"&&(document.readyState!=="loading"?jh():document.addEventListener("DOMContentLoaded",jh));function Xm(t){requestAnimationFrame(()=>{ps.size===0?t():N3.add(t)})}function Qm(){let t=x.useRef(new Map),e=x.useCallback((a,c,d,f)=>{let v=f!=null&&f.once?(...m)=>{t.current.delete(d),d(...m)}:d;t.current.set(d,{type:c,eventTarget:a,fn:v,options:f}),a.addEventListener(c,d,f)},[]),n=x.useCallback((a,c,d,f)=>{var v;let m=((v=t.current.get(d))===null||v===void 0?void 0:v.fn)||d;a.removeEventListener(c,m,f),t.current.delete(d)},[]),i=x.useCallback(()=>{t.current.forEach((a,c)=>{n(a.eventTarget,a.type,c,a.options)})},[n]);return x.useEffect(()=>i,[i]),{addGlobalListener:e,removeGlobalListener:n,removeAllGlobalListeners:i}}function Jm(t,e){let{id:n,"aria-label":i,"aria-labelledby":a}=t;return n=Qn(n),a&&i?a=[...new Set([n,...a.trim().split(/\s+/)])].join(" "):a&&(a=a.trim().split(/\s+/).join(" ")),!i&&!a&&e&&(i=e),{id:n,"aria-label":i,"aria-labelledby":a}}function A2(t){const e=x.useRef(null);return x.useMemo(()=>({get current(){return e.current},set current(n){e.current=n,typeof t=="function"?t(n):t&&(t.current=n)}}),[t])}function WP(){return typeof window.ResizeObserver<"u"}function $5(t){const{ref:e,box:n,onResize:i}=t;x.useEffect(()=>{let a=e==null?void 0:e.current;if(a)if(WP()){const c=new window.ResizeObserver(d=>{d.length&&i()});return c.observe(a,{box:n}),()=>{a&&c.unobserve(a)}}else return window.addEventListener("resize",i,!1),()=>{window.removeEventListener("resize",i,!1)}},[i,e,n])}function Ip(t,e){C0(()=>{if(t&&t.ref&&e)return t.ref.current=e.current,()=>{t.ref&&(t.ref.current=null)}})}function jc(t,e){let n=window.getComputedStyle(t),i=/(auto|scroll)/.test(n.overflow+n.overflowX+n.overflowY);return i&&e&&(i=t.scrollHeight!==t.clientHeight||t.scrollWidth!==t.clientWidth),i}function e8(t,e){let n=t;for(jc(n,e)&&(n=n.parentElement);n&&!jc(n,e);)n=n.parentElement;return n||document.scrollingElement||document.documentElement}function UP(t,e){const n=[];for(;t&&t!==document.documentElement;)jc(t,e)&&n.push(t),t=t.parentElement;return n}let wr=typeof document<"u"&&window.visualViewport;function GP(){let t=M2(),[e,n]=x.useState(()=>t?{width:0,height:0}:Kh());return x.useEffect(()=>{let i=()=>{n(a=>{let c=Kh();return c.width===a.width&&c.height===a.height?a:c})};return wr?wr.addEventListener("resize",i):window.addEventListener("resize",i),()=>{wr?wr.removeEventListener("resize",i):window.removeEventListener("resize",i)}},[]),e}function Kh(){return{width:wr&&(wr==null?void 0:wr.width)||window.innerWidth,height:wr&&(wr==null?void 0:wr.height)||window.innerHeight}}let qP=0;const N7=new Map;function YP(t){let[e,n]=x.useState();return C0(()=>{if(!t)return;let i=N7.get(t);if(i)n(i.element.id);else{let a=`react-aria-description-${qP++}`;n(a);let c=document.createElement("div");c.id=a,c.style.display="none",c.textContent=t,document.body.appendChild(c),i={refCount:0,element:c},N7.set(t,i)}return i.refCount++,()=>{i&&--i.refCount===0&&(i.element.remove(),N7.delete(t))}},[t]),{"aria-describedby":t?e:void 0}}function Wh(t,e,n,i){let a=dn(n),c=n==null;x.useEffect(()=>{if(c||!t.current)return;let d=t.current;return d.addEventListener(e,a,i),()=>{d.removeEventListener(e,a,i)}},[t,e,i,c,a])}function t8(t,e){let n=Uh(t,e,"left"),i=Uh(t,e,"top"),a=e.offsetWidth,c=e.offsetHeight,d=t.scrollLeft,f=t.scrollTop,{borderTopWidth:v,borderLeftWidth:m}=getComputedStyle(t),g=t.scrollLeft+parseInt(m,10),b=t.scrollTop+parseInt(v,10),S=g+t.clientWidth,C=b+t.clientHeight;n<=d?d=n-parseInt(m,10):n+a>S&&(d+=n+a-S),i<=b?f=i-parseInt(v,10):i+c>C&&(f+=i+c-C),t.scrollLeft=d,t.scrollTop=f}function Uh(t,e,n){const i=n==="left"?"offsetLeft":"offsetTop";let a=0;for(;e.offsetParent&&(a+=e[i],e.offsetParent!==t);){if(e.offsetParent.contains(t)){a-=t[i];break}e=e.offsetParent}return a}function Gh(t,e){if(document.contains(t)){let d=document.scrollingElement||document.documentElement;if(window.getComputedStyle(d).overflow==="hidden"){let v=UP(t);for(let m of v)t8(m,t)}else{var n;let{left:v,top:m}=t.getBoundingClientRect();t==null||(n=t.scrollIntoView)===null||n===void 0||n.call(t,{block:"nearest"});let{left:g,top:b}=t.getBoundingClientRect();if(Math.abs(v-g)>1||Math.abs(m-b)>1){var i,a,c;e==null||(a=e.containingElement)===null||a===void 0||(i=a.scrollIntoView)===null||i===void 0||i.call(a,{block:"center",inline:"center"}),(c=t.scrollIntoView)===null||c===void 0||c.call(t,{block:"nearest"})}}}}function H3(t){return t.mozInputSource===0&&t.isTrusted?!0:qm()&&t.pointerType?t.type==="click"&&t.buttons===1:t.detail===0&&!t.pointerType}function XP(t){return!qm()&&t.width===0&&t.height===0||t.width===1&&t.height===1&&t.pressure===0&&t.detail===0&&t.pointerType==="mouse"}function Fp(t,e,n){let i=x.useRef(e),a=dn(()=>{n&&n(i.current)});x.useEffect(()=>{var c;let d=t==null||(c=t.current)===null||c===void 0?void 0:c.form;return d==null||d.addEventListener("reset",a),()=>{d==null||d.removeEventListener("reset",a)}},[t,a])}let ms="default",z3="",u5=new WeakMap;function qh(t){if(W5()){if(ms==="default"){const e=z0(t);z3=e.documentElement.style.webkitUserSelect,e.documentElement.style.webkitUserSelect="none"}ms="disabled"}else(t instanceof HTMLElement||t instanceof SVGElement)&&(u5.set(t,t.style.userSelect),t.style.userSelect="none")}function Xd(t){if(W5()){if(ms!=="disabled")return;ms="restoring",setTimeout(()=>{Xm(()=>{if(ms==="restoring"){const e=z0(t);e.documentElement.style.webkitUserSelect==="none"&&(e.documentElement.style.webkitUserSelect=z3||""),z3="",ms="default"}})},300)}else if((t instanceof HTMLElement||t instanceof SVGElement)&&t&&u5.has(t)){let e=u5.get(t);t.style.userSelect==="none"&&(t.style.userSelect=e),t.getAttribute("style")===""&&t.removeAttribute("style"),u5.delete(t)}}const Kc=ee.createContext({register:()=>{}});Kc.displayName="PressResponderContext";function QP(t,e){return e.get?e.get.call(t):e.value}function n8(t,e,n){if(!e.has(t))throw new TypeError("attempted to "+n+" private field on non-instance");return e.get(t)}function JP(t,e){var n=n8(t,e,"get");return QP(t,n)}function eE(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function tE(t,e,n){eE(t,e),e.set(t,n)}function nE(t,e,n){if(e.set)e.set.call(t,n);else{if(!e.writable)throw new TypeError("attempted to set read only private field");e.value=n}}function Yh(t,e,n){var i=n8(t,e,"set");return nE(t,i,n),n}function rE(t){let e=x.useContext(Kc);if(e){let{register:n,...i}=e;t=qe(i,t),n()}return Ip(e,t.ref),t}var Qd=new WeakMap;class Jd{continuePropagation(){Yh(this,Qd,!1)}get shouldStopPropagation(){return JP(this,Qd)}constructor(e,n,i,a){tE(this,Qd,{writable:!0,value:void 0}),Yh(this,Qd,!0);var c;let d=(c=a==null?void 0:a.target)!==null&&c!==void 0?c:i.currentTarget;const f=d==null?void 0:d.getBoundingClientRect();let v,m=0,g,b=null;i.clientX!=null&&i.clientY!=null&&(g=i.clientX,b=i.clientY),f&&(g!=null&&b!=null?(v=g-f.left,m=b-f.top):(v=f.width/2,m=f.height/2)),this.type=e,this.pointerType=n,this.target=i.currentTarget,this.shiftKey=i.shiftKey,this.metaKey=i.metaKey,this.ctrlKey=i.ctrlKey,this.altKey=i.altKey,this.x=v,this.y=m}}const Xh=Symbol("linkClicked");function Es(t){let{onPress:e,onPressChange:n,onPressStart:i,onPressEnd:a,onPressUp:c,isDisabled:d,isPressed:f,preventFocusOnPress:v,shouldCancelOnPointerExit:m,allowTextSelectionOnPress:g,ref:b,...S}=rE(t),[C,P]=x.useState(!1),T=x.useRef({isPressed:!1,ignoreEmulatedMouseEvents:!1,ignoreClickAfterPress:!1,didFirePressStart:!1,isTriggeringEvent:!1,activePointerId:null,target:null,isOverTarget:!1,pointerType:null}),{addGlobalListener:A,removeAllGlobalListeners:V}=Qm(),R=dn((D,ie)=>{let j=T.current;if(d||j.didFirePressStart)return!1;let X=!0;if(j.isTriggeringEvent=!0,i){let xe=new Jd("pressstart",ie,D);i(xe),X=xe.shouldStopPropagation}return n&&n(!0),j.isTriggeringEvent=!1,j.didFirePressStart=!0,P(!0),X}),F=dn((D,ie,j=!0)=>{let X=T.current;if(!X.didFirePressStart)return!1;X.ignoreClickAfterPress=!0,X.didFirePressStart=!1,X.isTriggeringEvent=!0;let xe=!0;if(a){let G=new Jd("pressend",ie,D);a(G),xe=G.shouldStopPropagation}if(n&&n(!1),P(!1),e&&j&&!d){let G=new Jd("press",ie,D);e(G),xe&&(xe=G.shouldStopPropagation)}return X.isTriggeringEvent=!1,xe}),N=dn((D,ie)=>{let j=T.current;if(d)return!1;if(c){j.isTriggeringEvent=!0;let X=new Jd("pressup",ie,D);return c(X),j.isTriggeringEvent=!1,X.shouldStopPropagation}return!0}),z=dn(D=>{let ie=T.current;ie.isPressed&&ie.target&&(ie.isOverTarget&&ie.pointerType!=null&&F(ci(ie.target,D),ie.pointerType,!1),ie.isPressed=!1,ie.isOverTarget=!1,ie.activePointerId=null,ie.pointerType=null,V(),g||Xd(ie.target))}),U=dn(D=>{m&&z(D)}),le=x.useMemo(()=>{let D=T.current,ie={onKeyDown(X){if(H7(X.nativeEvent,X.currentTarget)&&X.currentTarget.contains(X.target)){var xe;Jh(X.target,X.key)&&X.preventDefault();let G=!0;if(!D.isPressed&&!X.repeat){D.target=X.currentTarget,D.isPressed=!0,G=R(X,"keyboard");let Q=X.currentTarget,he=_e=>{H7(_e,Q)&&!_e.repeat&&Q.contains(_e.target)&&D.target&&N(ci(D.target,_e),"keyboard")};A(z0(X.currentTarget),"keyup",vo(he,j),!0)}G&&X.stopPropagation(),X.metaKey&&ho()&&((xe=D.metaKeyEvents)===null||xe===void 0||xe.set(X.key,X.nativeEvent))}else X.key==="Meta"&&(D.metaKeyEvents=new Map)},onClick(X){if(!(X&&!X.currentTarget.contains(X.target))&&X&&X.button===0&&!D.isTriggeringEvent&&!Dl.isOpening){let xe=!0;if(d&&X.preventDefault(),!D.ignoreClickAfterPress&&!D.ignoreEmulatedMouseEvents&&!D.isPressed&&(D.pointerType==="virtual"||H3(X.nativeEvent))){!d&&!v&&qn(X.currentTarget);let G=R(X,"virtual"),Q=N(X,"virtual"),he=F(X,"virtual");xe=G&&Q&&he}D.ignoreEmulatedMouseEvents=!1,D.ignoreClickAfterPress=!1,xe&&X.stopPropagation()}}},j=X=>{var xe;if(D.isPressed&&D.target&&H7(X,D.target)){var G;Jh(X.target,X.key)&&X.preventDefault();let he=X.target;F(ci(D.target,X),"keyboard",D.target.contains(he)),V(),X.key!=="Enter"&&Zp(D.target)&&D.target.contains(he)&&!X[Xh]&&(X[Xh]=!0,Dl(D.target,X,!1)),D.isPressed=!1,(G=D.metaKeyEvents)===null||G===void 0||G.delete(X.key)}else if(X.key==="Meta"&&(!((xe=D.metaKeyEvents)===null||xe===void 0)&&xe.size)){var Q;let he=D.metaKeyEvents;D.metaKeyEvents=void 0;for(let _e of he.values())(Q=D.target)===null||Q===void 0||Q.dispatchEvent(new KeyboardEvent("keyup",_e))}};if(typeof PointerEvent<"u"){ie.onPointerDown=Q=>{if(Q.button!==0||!Q.currentTarget.contains(Q.target))return;if(XP(Q.nativeEvent)){D.pointerType="virtual";return}z7(Q.currentTarget)&&Q.preventDefault(),D.pointerType=Q.pointerType;let he=!0;D.isPressed||(D.isPressed=!0,D.isOverTarget=!0,D.activePointerId=Q.pointerId,D.target=Q.currentTarget,!d&&!v&&qn(Q.currentTarget),g||qh(D.target),he=R(Q,D.pointerType),A(z0(Q.currentTarget),"pointermove",X,!1),A(z0(Q.currentTarget),"pointerup",xe,!1),A(z0(Q.currentTarget),"pointercancel",G,!1)),he&&Q.stopPropagation()},ie.onMouseDown=Q=>{Q.currentTarget.contains(Q.target)&&Q.button===0&&(z7(Q.currentTarget)&&Q.preventDefault(),Q.stopPropagation())},ie.onPointerUp=Q=>{!Q.currentTarget.contains(Q.target)||D.pointerType==="virtual"||Q.button===0&&us(Q,Q.currentTarget)&&N(Q,D.pointerType||Q.pointerType)};let X=Q=>{Q.pointerId===D.activePointerId&&(D.target&&us(Q,D.target)?!D.isOverTarget&&D.pointerType!=null&&(D.isOverTarget=!0,R(ci(D.target,Q),D.pointerType)):D.target&&D.isOverTarget&&D.pointerType!=null&&(D.isOverTarget=!1,F(ci(D.target,Q),D.pointerType,!1),U(Q)))},xe=Q=>{Q.pointerId===D.activePointerId&&D.isPressed&&Q.button===0&&D.target&&(us(Q,D.target)&&D.pointerType!=null?F(ci(D.target,Q),D.pointerType):D.isOverTarget&&D.pointerType!=null&&F(ci(D.target,Q),D.pointerType,!1),D.isPressed=!1,D.isOverTarget=!1,D.activePointerId=null,D.pointerType=null,V(),g||Xd(D.target))},G=Q=>{z(Q)};ie.onDragStart=Q=>{Q.currentTarget.contains(Q.target)&&z(Q)}}else{ie.onMouseDown=G=>{if(G.button!==0||!G.currentTarget.contains(G.target))return;if(z7(G.currentTarget)&&G.preventDefault(),D.ignoreEmulatedMouseEvents){G.stopPropagation();return}D.isPressed=!0,D.isOverTarget=!0,D.target=G.currentTarget,D.pointerType=H3(G.nativeEvent)?"virtual":"mouse",!d&&!v&&qn(G.currentTarget),R(G,D.pointerType)&&G.stopPropagation(),A(z0(G.currentTarget),"mouseup",X,!1)},ie.onMouseEnter=G=>{if(!G.currentTarget.contains(G.target))return;let Q=!0;D.isPressed&&!D.ignoreEmulatedMouseEvents&&D.pointerType!=null&&(D.isOverTarget=!0,Q=R(G,D.pointerType)),Q&&G.stopPropagation()},ie.onMouseLeave=G=>{if(!G.currentTarget.contains(G.target))return;let Q=!0;D.isPressed&&!D.ignoreEmulatedMouseEvents&&D.pointerType!=null&&(D.isOverTarget=!1,Q=F(G,D.pointerType,!1),U(G)),Q&&G.stopPropagation()},ie.onMouseUp=G=>{G.currentTarget.contains(G.target)&&!D.ignoreEmulatedMouseEvents&&G.button===0&&N(G,D.pointerType||"mouse")};let X=G=>{if(G.button===0){if(D.isPressed=!1,V(),D.ignoreEmulatedMouseEvents){D.ignoreEmulatedMouseEvents=!1;return}D.target&&us(G,D.target)&&D.pointerType!=null?F(ci(D.target,G),D.pointerType):D.target&&D.isOverTarget&&D.pointerType!=null&&F(ci(D.target,G),D.pointerType,!1),D.isOverTarget=!1}};ie.onTouchStart=G=>{if(!G.currentTarget.contains(G.target))return;let Q=iE(G.nativeEvent);if(!Q)return;D.activePointerId=Q.identifier,D.ignoreEmulatedMouseEvents=!0,D.isOverTarget=!0,D.isPressed=!0,D.target=G.currentTarget,D.pointerType="touch",!d&&!v&&qn(G.currentTarget),g||qh(D.target),R(io(D.target,G),D.pointerType)&&G.stopPropagation(),A(Cr(G.currentTarget),"scroll",xe,!0)},ie.onTouchMove=G=>{if(!G.currentTarget.contains(G.target))return;if(!D.isPressed){G.stopPropagation();return}let Q=Qh(G.nativeEvent,D.activePointerId),he=!0;Q&&us(Q,G.currentTarget)?!D.isOverTarget&&D.pointerType!=null&&(D.isOverTarget=!0,he=R(io(D.target,G),D.pointerType)):D.isOverTarget&&D.pointerType!=null&&(D.isOverTarget=!1,he=F(io(D.target,G),D.pointerType,!1),U(io(D.target,G))),he&&G.stopPropagation()},ie.onTouchEnd=G=>{if(!G.currentTarget.contains(G.target))return;if(!D.isPressed){G.stopPropagation();return}let Q=Qh(G.nativeEvent,D.activePointerId),he=!0;Q&&us(Q,G.currentTarget)&&D.pointerType!=null?(N(io(D.target,G),D.pointerType),he=F(io(D.target,G),D.pointerType)):D.isOverTarget&&D.pointerType!=null&&(he=F(io(D.target,G),D.pointerType,!1)),he&&G.stopPropagation(),D.isPressed=!1,D.activePointerId=null,D.isOverTarget=!1,D.ignoreEmulatedMouseEvents=!0,D.target&&!g&&Xd(D.target),V()},ie.onTouchCancel=G=>{G.currentTarget.contains(G.target)&&(G.stopPropagation(),D.isPressed&&z(io(D.target,G)))};let xe=G=>{D.isPressed&&G.target.contains(D.target)&&z({currentTarget:D.target,shiftKey:!1,ctrlKey:!1,metaKey:!1,altKey:!1})};ie.onDragStart=G=>{G.currentTarget.contains(G.target)&&z(G)}}return ie},[A,d,v,V,g,z,U,F,R,N]);return x.useEffect(()=>()=>{var D;g||Xd((D=T.current.target)!==null&&D!==void 0?D:void 0)},[g]),{isPressed:f||C,pressProps:qe(S,le)}}function Zp(t){return t.tagName==="A"&&t.hasAttribute("href")}function H7(t,e){const{key:n,code:i}=t,a=e,c=a.getAttribute("role");return(n==="Enter"||n===" "||n==="Spacebar"||i==="Space")&&!(a instanceof Cr(a).HTMLInputElement&&!r8(a,n)||a instanceof Cr(a).HTMLTextAreaElement||a.isContentEditable)&&!((c==="link"||!c&&Zp(a))&&n!=="Enter")}function iE(t){const{targetTouches:e}=t;return e.length>0?e[0]:null}function Qh(t,e){const n=t.changedTouches;for(let i=0;ie.right||e.left>t.right||t.top>e.bottom||e.top>t.bottom)}function us(t,e){let n=e.getBoundingClientRect(),i=oE(t);return lE(n,i)}function z7(t){return!(t instanceof HTMLElement)||!t.hasAttribute("draggable")}function Jh(t,e){return t instanceof HTMLInputElement?!r8(t,e):t instanceof HTMLButtonElement?t.type!=="submit"&&t.type!=="reset":!Zp(t)}const aE=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function r8(t,e){return t.type==="checkbox"||t.type==="radio"?e===" ":aE.has(t.type)}const i8=ee.forwardRef(({children:t,...e},n)=>{let i=x.useRef(!1),a=x.useContext(Kc);n=A2(n||(a==null?void 0:a.ref));let c=qe(a||{},{...e,ref:n,register(){i.current=!0,a&&a.register()}});return Ip(a,n),x.useEffect(()=>{i.current||(console.warn("A PressResponder was rendered without a pressable child. Either call the usePress hook, or wrap your DOM node with component."),i.current=!0)},[]),ee.createElement(Kc.Provider,{value:c},t)});function sE({children:t}){let e=x.useMemo(()=>({register:()=>{}}),[]);return ee.createElement(Kc.Provider,{value:e},t)}class uE{isDefaultPrevented(){return this.nativeEvent.defaultPrevented}preventDefault(){this.defaultPrevented=!0,this.nativeEvent.preventDefault()}stopPropagation(){this.nativeEvent.stopPropagation(),this.isPropagationStopped=()=>!0}isPropagationStopped(){return!1}persist(){}constructor(e,n){this.nativeEvent=n,this.target=n.target,this.currentTarget=n.currentTarget,this.relatedTarget=n.relatedTarget,this.bubbles=n.bubbles,this.cancelable=n.cancelable,this.defaultPrevented=n.defaultPrevented,this.eventPhase=n.eventPhase,this.isTrusted=n.isTrusted,this.timeStamp=n.timeStamp,this.type=e}}function o8(t){let e=x.useRef({isFocused:!1,observer:null});C0(()=>{const i=e.current;return()=>{i.observer&&(i.observer.disconnect(),i.observer=null)}},[]);let n=dn(i=>{t==null||t(i)});return x.useCallback(i=>{if(i.target instanceof HTMLButtonElement||i.target instanceof HTMLInputElement||i.target instanceof HTMLTextAreaElement||i.target instanceof HTMLSelectElement){e.current.isFocused=!0;let a=i.target,c=d=>{e.current.isFocused=!1,a.disabled&&n(new uE("blur",d)),e.current.observer&&(e.current.observer.disconnect(),e.current.observer=null)};a.addEventListener("focusout",c,{once:!0}),e.current.observer=new MutationObserver(()=>{if(e.current.isFocused&&a.disabled){var d;(d=e.current.observer)===null||d===void 0||d.disconnect();let f=a===document.activeElement?null:document.activeElement;a.dispatchEvent(new FocusEvent("blur",{relatedTarget:f})),a.dispatchEvent(new FocusEvent("focusout",{bubbles:!0,relatedTarget:f}))}}),e.current.observer.observe(a,{attributes:!0,attributeFilter:["disabled"]})}},[n])}function Op(t){let{isDisabled:e,onFocus:n,onBlur:i,onFocusChange:a}=t;const c=x.useCallback(v=>{if(v.target===v.currentTarget)return i&&i(v),a&&a(!1),!0},[i,a]),d=o8(c),f=x.useCallback(v=>{const m=z0(v.target);v.target===v.currentTarget&&m.activeElement===v.target&&(n&&n(v),a&&a(!0),d(v))},[a,n,d]);return{focusProps:{onFocus:!e&&(n||a||i)?f:void 0,onBlur:!e&&(i||a)?c:void 0}}}let mi=null,Wc=new Set,Lc=new Map,Rl=!1,j3=!1;const cE={Tab:!0,Escape:!0};function G5(t,e){for(let n of Wc)n(t,e)}function dE(t){return!(t.metaKey||!ho()&&t.altKey||t.ctrlKey||t.key==="Control"||t.key==="Shift"||t.key==="Meta")}function S5(t){Rl=!0,dE(t)&&(mi="keyboard",G5("keyboard",t))}function $r(t){mi="pointer",(t.type==="mousedown"||t.type==="pointerdown")&&(Rl=!0,G5("pointer",t))}function l8(t){H3(t)&&(Rl=!0,mi="virtual")}function a8(t){t.target===window||t.target===document||(!Rl&&!j3&&(mi="virtual",G5("virtual",t)),Rl=!1,j3=!1)}function s8(){Rl=!1,j3=!0}function C5(t){if(typeof window>"u"||Lc.get(Cr(t)))return;const e=Cr(t),n=z0(t);let i=e.HTMLElement.prototype.focus;e.HTMLElement.prototype.focus=function(){Rl=!0,i.apply(this,arguments)},n.addEventListener("keydown",S5,!0),n.addEventListener("keyup",S5,!0),n.addEventListener("click",l8,!0),e.addEventListener("focus",a8,!0),e.addEventListener("blur",s8,!1),typeof PointerEvent<"u"?(n.addEventListener("pointerdown",$r,!0),n.addEventListener("pointermove",$r,!0),n.addEventListener("pointerup",$r,!0)):(n.addEventListener("mousedown",$r,!0),n.addEventListener("mousemove",$r,!0),n.addEventListener("mouseup",$r,!0)),e.addEventListener("beforeunload",()=>{u8(t)},{once:!0}),Lc.set(e,{focus:i})}const u8=(t,e)=>{const n=Cr(t),i=z0(t);e&&i.removeEventListener("DOMContentLoaded",e),Lc.has(n)&&(n.HTMLElement.prototype.focus=Lc.get(n).focus,i.removeEventListener("keydown",S5,!0),i.removeEventListener("keyup",S5,!0),i.removeEventListener("click",l8,!0),n.removeEventListener("focus",a8,!0),n.removeEventListener("blur",s8,!1),typeof PointerEvent<"u"?(i.removeEventListener("pointerdown",$r,!0),i.removeEventListener("pointermove",$r,!0),i.removeEventListener("pointerup",$r,!0)):(i.removeEventListener("mousedown",$r,!0),i.removeEventListener("mousemove",$r,!0),i.removeEventListener("mouseup",$r,!0)),Lc.delete(n))};function fE(t){const e=z0(t);let n;return e.readyState!=="loading"?C5(t):(n=()=>{C5(t)},e.addEventListener("DOMContentLoaded",n)),()=>u8(t,n)}typeof document<"u"&&fE();function ks(){return mi!=="pointer"}function Ts(){return mi}function c8(t){mi=t,G5(t,null)}function pE(){C5();let[t,e]=x.useState(mi);return x.useEffect(()=>{let n=()=>{e(mi)};return Wc.add(n),()=>{Wc.delete(n)}},[]),M2()?null:t}const vE=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function hE(t,e,n){var i;const a=typeof window<"u"?Cr(n==null?void 0:n.target).HTMLInputElement:HTMLInputElement,c=typeof window<"u"?Cr(n==null?void 0:n.target).HTMLTextAreaElement:HTMLTextAreaElement,d=typeof window<"u"?Cr(n==null?void 0:n.target).HTMLElement:HTMLElement,f=typeof window<"u"?Cr(n==null?void 0:n.target).KeyboardEvent:KeyboardEvent;return t=t||(n==null?void 0:n.target)instanceof a&&!vE.has(n==null||(i=n.target)===null||i===void 0?void 0:i.type)||(n==null?void 0:n.target)instanceof c||(n==null?void 0:n.target)instanceof d&&(n==null?void 0:n.target.isContentEditable),!(t&&e==="keyboard"&&n instanceof f&&!cE[n.key])}function mE(t,e,n){C5(),x.useEffect(()=>{let i=(a,c)=>{hE(!!(n!=null&&n.isTextInput),a,c)&&t(ks())};return Wc.add(i),()=>{Wc.delete(i)}},e)}function l1(t){let{isDisabled:e,onBlurWithin:n,onFocusWithin:i,onFocusWithinChange:a}=t,c=x.useRef({isFocusWithin:!1}),d=x.useCallback(m=>{c.current.isFocusWithin&&!m.currentTarget.contains(m.relatedTarget)&&(c.current.isFocusWithin=!1,n&&n(m),a&&a(!1))},[n,a,c]),f=o8(d),v=x.useCallback(m=>{!c.current.isFocusWithin&&document.activeElement===m.target&&(i&&i(m),a&&a(!0),c.current.isFocusWithin=!0,f(m))},[i,a,f]);return e?{focusWithinProps:{onFocus:void 0,onBlur:void 0}}:{focusWithinProps:{onFocus:v,onBlur:d}}}let _5=!1,j7=0;function K3(){_5=!0,setTimeout(()=>{_5=!1},50)}function e4(t){t.pointerType==="touch"&&K3()}function gE(){if(!(typeof document>"u"))return typeof PointerEvent<"u"?document.addEventListener("pointerup",e4):document.addEventListener("touchend",K3),j7++,()=>{j7--,!(j7>0)&&(typeof PointerEvent<"u"?document.removeEventListener("pointerup",e4):document.removeEventListener("touchend",K3))}}function Jn(t){let{onHoverStart:e,onHoverChange:n,onHoverEnd:i,isDisabled:a}=t,[c,d]=x.useState(!1),f=x.useRef({isHovered:!1,ignoreEmulatedMouseEvents:!1,pointerType:"",target:null}).current;x.useEffect(gE,[]);let{hoverProps:v,triggerHoverEnd:m}=x.useMemo(()=>{let g=(C,P)=>{if(f.pointerType=P,a||P==="touch"||f.isHovered||!C.currentTarget.contains(C.target))return;f.isHovered=!0;let T=C.currentTarget;f.target=T,e&&e({type:"hoverstart",target:T,pointerType:P}),n&&n(!0),d(!0)},b=(C,P)=>{if(f.pointerType="",f.target=null,P==="touch"||!f.isHovered)return;f.isHovered=!1;let T=C.currentTarget;i&&i({type:"hoverend",target:T,pointerType:P}),n&&n(!1),d(!1)},S={};return typeof PointerEvent<"u"?(S.onPointerEnter=C=>{_5&&C.pointerType==="mouse"||g(C,C.pointerType)},S.onPointerLeave=C=>{!a&&C.currentTarget.contains(C.target)&&b(C,C.pointerType)}):(S.onTouchStart=()=>{f.ignoreEmulatedMouseEvents=!0},S.onMouseEnter=C=>{!f.ignoreEmulatedMouseEvents&&!_5&&g(C,"mouse"),f.ignoreEmulatedMouseEvents=!1},S.onMouseLeave=C=>{!a&&C.currentTarget.contains(C.target)&&b(C,"mouse")}),{hoverProps:S,triggerHoverEnd:b}},[e,n,i,a,f]);return x.useEffect(()=>{a&&m({currentTarget:f.target},f.pointerType)},[a]),{hoverProps:v,isHovered:c}}function d8(t){let{ref:e,onInteractOutside:n,isDisabled:i,onInteractOutsideStart:a}=t,c=x.useRef({isPointerDown:!1,ignoreEmulatedMouseEvents:!1}),d=dn(v=>{n&&e5(v,e)&&(a&&a(v),c.current.isPointerDown=!0)}),f=dn(v=>{n&&n(v)});x.useEffect(()=>{let v=c.current;if(i)return;const m=e.current,g=z0(m);if(typeof PointerEvent<"u"){let b=S=>{v.isPointerDown&&e5(S,e)&&f(S),v.isPointerDown=!1};return g.addEventListener("pointerdown",d,!0),g.addEventListener("pointerup",b,!0),()=>{g.removeEventListener("pointerdown",d,!0),g.removeEventListener("pointerup",b,!0)}}else{let b=C=>{v.ignoreEmulatedMouseEvents?v.ignoreEmulatedMouseEvents=!1:v.isPointerDown&&e5(C,e)&&f(C),v.isPointerDown=!1},S=C=>{v.ignoreEmulatedMouseEvents=!0,v.isPointerDown&&e5(C,e)&&f(C),v.isPointerDown=!1};return g.addEventListener("mousedown",d,!0),g.addEventListener("mouseup",b,!0),g.addEventListener("touchstart",d,!0),g.addEventListener("touchend",S,!0),()=>{g.removeEventListener("mousedown",d,!0),g.removeEventListener("mouseup",b,!0),g.removeEventListener("touchstart",d,!0),g.removeEventListener("touchend",S,!0)}}},[e,i,d,f])}function e5(t,e){if(t.button>0)return!1;if(t.target){const n=t.target.ownerDocument;if(!n||!n.documentElement.contains(t.target)||t.target.closest("[data-react-aria-top-layer]"))return!1}return e.current&&!e.current.contains(t.target)}function t4(t){if(!t)return;let e=!0;return n=>{let i={...n,preventDefault(){n.preventDefault()},isDefaultPrevented(){return n.isDefaultPrevented()},stopPropagation(){console.error("stopPropagation is now the default behavior for events in React Spectrum. You can use continuePropagation() to revert this behavior.")},continuePropagation(){e=!1}};t(i),e&&n.stopPropagation()}}function f8(t){return{keyboardProps:t.isDisabled?{}:{onKeyDown:t4(t.onKeyDown),onKeyUp:t4(t.onKeyUp)}}}const yE=500;function p8(t){let{isDisabled:e,onLongPressStart:n,onLongPressEnd:i,onLongPress:a,threshold:c=yE,accessibilityDescription:d}=t;const f=x.useRef(void 0);let{addGlobalListener:v,removeGlobalListener:m}=Qm(),{pressProps:g}=Es({isDisabled:e,onPressStart(S){if(S.continuePropagation(),(S.pointerType==="mouse"||S.pointerType==="touch")&&(n&&n({...S,type:"longpressstart"}),f.current=setTimeout(()=>{S.target.dispatchEvent(new PointerEvent("pointercancel",{bubbles:!0})),a&&a({...S,type:"longpress"}),f.current=void 0},c),S.pointerType==="touch")){let C=P=>{P.preventDefault()};v(S.target,"contextmenu",C,{once:!0}),v(window,"pointerup",()=>{setTimeout(()=>{m(S.target,"contextmenu",C)},30)},{once:!0})}},onPressEnd(S){f.current&&clearTimeout(f.current),i&&(S.pointerType==="mouse"||S.pointerType==="touch")&&i({...S,type:"longpressend"})}}),b=YP(a&&!e?d:void 0);return{longPressProps:qe(g,b)}}function Bl(t){const e=z0(t);if(Ts()==="virtual"){let n=e.activeElement;Xm(()=>{e.activeElement===n&&t.isConnected&&qn(t)})}else qn(t)}function bE(t){const e=Cr(t);if(!(t instanceof e.HTMLElement)&&!(t instanceof e.SVGElement))return!1;let{display:n,visibility:i}=t.style,a=n!=="none"&&i!=="hidden"&&i!=="collapse";if(a){const{getComputedStyle:c}=t.ownerDocument.defaultView;let{display:d,visibility:f}=c(t);a=d!=="none"&&f!=="hidden"&&f!=="collapse"}return a}function xE(t,e){return!t.hasAttribute("hidden")&&!t.hasAttribute("data-react-aria-prevent-focus")&&(t.nodeName==="DETAILS"&&e&&e.nodeName!=="SUMMARY"?t.hasAttribute("open"):!0)}function v8(t,e){return t.nodeName!=="#comment"&&bE(t)&&xE(t,e)&&(!t.parentElement||v8(t.parentElement,t))}const n4=ee.createContext(null),W3="react-aria-focus-scope-restore";let F0=null;function q5(t){let{children:e,contain:n,restoreFocus:i,autoFocus:a}=t,c=x.useRef(null),d=x.useRef(null),f=x.useRef([]),{parentNode:v}=x.useContext(n4)||{},m=x.useMemo(()=>new G3({scopeRef:f}),[f]);C0(()=>{let S=v||gt.root;if(gt.getTreeNode(S.scopeRef)&&F0&&!E5(F0,S.scopeRef)){let C=gt.getTreeNode(F0);C&&(S=C)}S.addChild(m),gt.addNode(m)},[m,v]),C0(()=>{let S=gt.getTreeNode(f);S&&(S.contain=!!n)},[n]),C0(()=>{var S;let C=(S=c.current)===null||S===void 0?void 0:S.nextSibling,P=[],T=A=>A.stopPropagation();for(;C&&C!==d.current;)P.push(C),C.addEventListener(W3,T),C=C.nextSibling;return f.current=P,()=>{for(let A of P)A.removeEventListener(W3,T)}},[e]),EE(f,i,n),CE(f,n),TE(f,i,n),PE(f,a),x.useEffect(()=>{const S=z0(f.current?f.current[0]:void 0).activeElement;let C=null;if(en(S,f.current)){for(let P of gt.traverse())P.scopeRef&&en(S,P.scopeRef.current)&&(C=P);C===gt.getTreeNode(f)&&(F0=C.scopeRef)}},[f]),C0(()=>()=>{var S,C,P;let T=(P=(C=gt.getTreeNode(f))===null||C===void 0||(S=C.parent)===null||S===void 0?void 0:S.scopeRef)!==null&&P!==void 0?P:null;(f===F0||E5(f,F0))&&(!T||gt.getTreeNode(T))&&(F0=T),gt.removeTreeNode(f)},[f]);let g=x.useMemo(()=>wE(f),[]),b=x.useMemo(()=>({focusManager:g,parentNode:m}),[m,g]);return ee.createElement(n4.Provider,{value:b},ee.createElement("span",{"data-focus-scope-start":!0,hidden:!0,ref:c}),e,ee.createElement("span",{"data-focus-scope-end":!0,hidden:!0,ref:d}))}function wE(t){return{focusNext(e={}){let n=t.current,{from:i,tabbable:a,wrap:c,accept:d}=e,f=i||z0(n[0]).activeElement,v=n[0].previousElementSibling,m=kl(n),g=vi(m,{tabbable:a,accept:d},n);g.currentNode=en(f,n)?f:v;let b=g.nextNode();return!b&&c&&(g.currentNode=v,b=g.nextNode()),b&&pi(b,!0),b},focusPrevious(e={}){let n=t.current,{from:i,tabbable:a,wrap:c,accept:d}=e,f=i||z0(n[0]).activeElement,v=n[n.length-1].nextElementSibling,m=kl(n),g=vi(m,{tabbable:a,accept:d},n);g.currentNode=en(f,n)?f:v;let b=g.previousNode();return!b&&c&&(g.currentNode=v,b=g.previousNode()),b&&pi(b,!0),b},focusFirst(e={}){let n=t.current,{tabbable:i,accept:a}=e,c=kl(n),d=vi(c,{tabbable:i,accept:a},n);d.currentNode=n[0].previousElementSibling;let f=d.nextNode();return f&&pi(f,!0),f},focusLast(e={}){let n=t.current,{tabbable:i,accept:a}=e,c=kl(n),d=vi(c,{tabbable:i,accept:a},n);d.currentNode=n[n.length-1].nextElementSibling;let f=d.previousNode();return f&&pi(f,!0),f}}}const Np=["input:not([disabled]):not([type=hidden])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[contenteditable]"],$E=Np.join(":not([hidden]),")+",[tabindex]:not([disabled]):not([hidden])";Np.push('[tabindex]:not([tabindex="-1"]):not([disabled])');const SE=Np.join(':not([hidden]):not([tabindex="-1"]),');function kl(t){return t[0].parentElement}function Ec(t){let e=gt.getTreeNode(F0);for(;e&&e.scopeRef!==t;){if(e.contain)return!1;e=e.parent}return!0}function CE(t,e){let n=x.useRef(void 0),i=x.useRef(void 0);C0(()=>{let a=t.current;if(!e){i.current&&(cancelAnimationFrame(i.current),i.current=void 0);return}const c=z0(a?a[0]:void 0);let d=m=>{if(m.key!=="Tab"||m.altKey||m.ctrlKey||m.metaKey||!Ec(t)||m.isComposing)return;let g=c.activeElement,b=t.current;if(!b||!en(g,b))return;let S=kl(b),C=vi(S,{tabbable:!0},b);if(!g)return;C.currentNode=g;let P=m.shiftKey?C.previousNode():C.nextNode();P||(C.currentNode=m.shiftKey?b[b.length-1].nextElementSibling:b[0].previousElementSibling,P=m.shiftKey?C.previousNode():C.nextNode()),m.preventDefault(),P&&pi(P,!0)},f=m=>{(!F0||E5(F0,t))&&en(m.target,t.current)?(F0=t,n.current=m.target):Ec(t)&&!P5(m.target,t)?n.current?n.current.focus():F0&&F0.current&&U3(F0.current):Ec(t)&&(n.current=m.target)},v=m=>{i.current&&cancelAnimationFrame(i.current),i.current=requestAnimationFrame(()=>{if(c.activeElement&&Ec(t)&&!P5(c.activeElement,t))if(F0=t,c.body.contains(m.target)){var g;n.current=m.target,(g=n.current)===null||g===void 0||g.focus()}else F0.current&&U3(F0.current)})};return c.addEventListener("keydown",d,!1),c.addEventListener("focusin",f,!1),a==null||a.forEach(m=>m.addEventListener("focusin",f,!1)),a==null||a.forEach(m=>m.addEventListener("focusout",v,!1)),()=>{c.removeEventListener("keydown",d,!1),c.removeEventListener("focusin",f,!1),a==null||a.forEach(m=>m.removeEventListener("focusin",f,!1)),a==null||a.forEach(m=>m.removeEventListener("focusout",v,!1))}},[t,e]),C0(()=>()=>{i.current&&cancelAnimationFrame(i.current)},[i])}function h8(t){return P5(t)}function en(t,e){return!t||!e?!1:e.some(n=>n.contains(t))}function P5(t,e=null){if(t instanceof Element&&t.closest("[data-react-aria-top-layer]"))return!0;for(let{scopeRef:n}of gt.traverse(gt.getTreeNode(e)))if(n&&en(t,n.current))return!0;return!1}function _E(t){return P5(t,F0)}function E5(t,e){var n;let i=(n=gt.getTreeNode(e))===null||n===void 0?void 0:n.parent;for(;i;){if(i.scopeRef===t)return!0;i=i.parent}return!1}function pi(t,e=!1){if(t!=null&&!e)try{Bl(t)}catch{}else if(t!=null)try{t.focus()}catch{}}function m8(t,e=!0){let n=t[0].previousElementSibling,i=kl(t),a=vi(i,{tabbable:e},t);a.currentNode=n;let c=a.nextNode();return e&&!c&&(i=kl(t),a=vi(i,{tabbable:!1},t),a.currentNode=n,c=a.nextNode()),c}function U3(t,e=!0){pi(m8(t,e))}function PE(t,e){const n=ee.useRef(e);x.useEffect(()=>{if(n.current){F0=t;const i=z0(t.current?t.current[0]:void 0);!en(i.activeElement,F0.current)&&t.current&&U3(t.current)}n.current=!1},[t])}function EE(t,e,n){C0(()=>{if(e||n)return;let i=t.current;const a=z0(i?i[0]:void 0);let c=d=>{let f=d.target;en(f,t.current)?F0=t:h8(f)||(F0=null)};return a.addEventListener("focusin",c,!1),i==null||i.forEach(d=>d.addEventListener("focusin",c,!1)),()=>{a.removeEventListener("focusin",c,!1),i==null||i.forEach(d=>d.removeEventListener("focusin",c,!1))}},[t,e,n])}function kE(t){let e=gt.getTreeNode(F0);for(;e&&e.scopeRef!==t;){if(e.nodeToRestore)return!1;e=e.parent}return(e==null?void 0:e.scopeRef)===t}function TE(t,e,n){const i=x.useRef(typeof document<"u"?z0(t.current?t.current[0]:void 0).activeElement:null);C0(()=>{let a=t.current;const c=z0(a?a[0]:void 0);if(!e||n)return;let d=()=>{(!F0||E5(F0,t))&&en(c.activeElement,t.current)&&(F0=t)};return c.addEventListener("focusin",d,!1),a==null||a.forEach(f=>f.addEventListener("focusin",d,!1)),()=>{c.removeEventListener("focusin",d,!1),a==null||a.forEach(f=>f.removeEventListener("focusin",d,!1))}},[t,n]),C0(()=>{const a=z0(t.current?t.current[0]:void 0);if(!e)return;let c=d=>{if(d.key!=="Tab"||d.altKey||d.ctrlKey||d.metaKey||!Ec(t)||d.isComposing)return;let f=a.activeElement;if(!en(f,t.current))return;let v=gt.getTreeNode(t);if(!v)return;let m=v.nodeToRestore,g=vi(a.body,{tabbable:!0});g.currentNode=f;let b=d.shiftKey?g.previousNode():g.nextNode();if((!m||!a.body.contains(m)||m===a.body)&&(m=void 0,v.nodeToRestore=void 0),(!b||!en(b,t.current))&&m){g.currentNode=m;do b=d.shiftKey?g.previousNode():g.nextNode();while(en(b,t.current));d.preventDefault(),d.stopPropagation(),b?pi(b,!0):h8(m)?pi(m,!0):f.blur()}};return n||a.addEventListener("keydown",c,!0),()=>{n||a.removeEventListener("keydown",c,!0)}},[t,e,n]),C0(()=>{const a=z0(t.current?t.current[0]:void 0);if(!e)return;let c=gt.getTreeNode(t);if(c){var d;return c.nodeToRestore=(d=i.current)!==null&&d!==void 0?d:void 0,()=>{let f=gt.getTreeNode(t);if(!f)return;let v=f.nodeToRestore;if(e&&v&&(en(a.activeElement,t.current)||a.activeElement===a.body&&kE(t))){let m=gt.clone();requestAnimationFrame(()=>{if(a.activeElement===a.body){let g=m.getTreeNode(t);for(;g;){if(g.nodeToRestore&&g.nodeToRestore.isConnected){r4(g.nodeToRestore);return}g=g.parent}for(g=m.getTreeNode(t);g;){if(g.scopeRef&&g.scopeRef.current&>.getTreeNode(g.scopeRef)){let b=m8(g.scopeRef.current,!0);r4(b);return}g=g.parent}}})}}}},[t,e])}function r4(t){t.dispatchEvent(new CustomEvent(W3,{bubbles:!0,cancelable:!0}))&&pi(t)}function vi(t,e,n){let i=e!=null&&e.tabbable?SE:$E,a=z0(t).createTreeWalker(t,NodeFilter.SHOW_ELEMENT,{acceptNode(c){var d;return!(e==null||(d=e.from)===null||d===void 0)&&d.contains(c)?NodeFilter.FILTER_REJECT:c.matches(i)&&v8(c)&&(!n||en(c,n))&&(!(e!=null&&e.accept)||e.accept(c))?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});return e!=null&&e.from&&(a.currentNode=e.from),a}class Hp{get size(){return this.fastMap.size}getTreeNode(e){return this.fastMap.get(e)}addTreeNode(e,n,i){let a=this.fastMap.get(n??null);if(!a)return;let c=new G3({scopeRef:e});a.addChild(c),c.parent=a,this.fastMap.set(e,c),i&&(c.nodeToRestore=i)}addNode(e){this.fastMap.set(e.scopeRef,e)}removeTreeNode(e){if(e===null)return;let n=this.fastMap.get(e);if(!n)return;let i=n.parent;for(let c of this.traverse())c!==n&&n.nodeToRestore&&c.nodeToRestore&&n.scopeRef&&n.scopeRef.current&&en(c.nodeToRestore,n.scopeRef.current)&&(c.nodeToRestore=n.nodeToRestore);let a=n.children;i&&(i.removeChild(n),a.size>0&&a.forEach(c=>i&&i.addChild(c))),this.fastMap.delete(n.scopeRef)}*traverse(e=this.root){if(e.scopeRef!=null&&(yield e),e.children.size>0)for(let n of e.children)yield*this.traverse(n)}clone(){var e;let n=new Hp;var i;for(let a of this.traverse())n.addTreeNode(a.scopeRef,(i=(e=a.parent)===null||e===void 0?void 0:e.scopeRef)!==null&&i!==void 0?i:null,a.nodeToRestore);return n}constructor(){this.fastMap=new Map,this.root=new G3({scopeRef:null}),this.fastMap.set(null,this.root)}}class G3{addChild(e){this.children.add(e),e.parent=this}removeChild(e){this.children.delete(e),e.parent=void 0}constructor(e){this.children=new Set,this.contain=!1,this.scopeRef=e.scopeRef}}let gt=new Hp;function L2(t={}){let{autoFocus:e=!1,isTextInput:n,within:i}=t,a=x.useRef({isFocused:!1,isFocusVisible:e||ks()}),[c,d]=x.useState(!1),[f,v]=x.useState(()=>a.current.isFocused&&a.current.isFocusVisible),m=x.useCallback(()=>v(a.current.isFocused&&a.current.isFocusVisible),[]),g=x.useCallback(C=>{a.current.isFocused=C,d(C),m()},[m]);mE(C=>{a.current.isFocusVisible=C,m()},[],{isTextInput:n});let{focusProps:b}=Op({isDisabled:i,onFocusChange:g}),{focusWithinProps:S}=l1({isDisabled:!i,onFocusWithinChange:g});return{isFocused:c,isFocusVisible:f,focusProps:i?S:b}}let g8=ee.createContext(null);function ME(t){let e=x.useContext(g8)||{};Ip(e,t);let{ref:n,...i}=e;return i}function AE(t,e){let{children:n,...i}=t,a=A2(e),c={...i,ref:a};return ee.createElement(g8.Provider,{value:c},n)}let LE=ee.forwardRef(AE);function Y5(t,e){let{focusProps:n}=Op(t),{keyboardProps:i}=f8(t),a=qe(n,i),c=ME(e),d=t.isDisabled?{}:c,f=x.useRef(t.autoFocus);return x.useEffect(()=>{f.current&&e.current&&Bl(e.current),f.current=!1},[e]),{focusableProps:qe({...a,tabIndex:t.excludeFromTabOrder&&!t.isDisabled?-1:void 0},d)}}const DE=x.createContext({contain:!0}),RE=()=>x.useContext(DE),BE=t=>{const{contain:e}=RE();return k.jsx(q5,{contain:e,...t})};var Is=$m();const zp=t1(Is),y8=x.forwardRef(({container:t=(a=>(a=globalThis==null?void 0:globalThis.document)==null?void 0:a.body)(),"data-test-id":e="portal",...n},i)=>{const[a,c]=x.useState(!1);return x.useEffect(()=>{c(!0)},[]),a&&t?Is.createPortal(k.jsx("div",{...n,ref:i,"data-test-id":e}),t):null});y8.displayName="Portal";const VE=({isOpen:t,lazy:e=!0,enforceFocus:n=!0,isModal:i=!1,canOutsideClickClose:a=!0,canEscapeKeyClose:c=!0,onClose:d,children:f})=>{const[v,m]=x.useState(t),g=x.useRef(null),b=x.useCallback(V=>{var R;const F=V.target,N=(R=g.current)==null?void 0:R.contains(F),z=!!F.closest("body");t&&a&&!N&&z&&typeof d=="function"&&d(V)},[a,t,d]),S=x.useCallback(()=>{requestAnimationFrame(()=>{if(!(!t||g.current===null||document.activeElement===null)&&!g.current.contains(document.activeElement)){const V=g.current.querySelector("[autofocus]"),R=g.current.querySelector("[tabindex]");V?V.focus():R&&R.focus()}})},[t]),C=x.useCallback(V=>{const R=V.target;n&&g.current&&!g.current.contains(R)&&(V.stopImmediatePropagation(),S())},[n,S]),P=x.useCallback(()=>{a&&document.addEventListener("mousedown",b),n&&document.addEventListener("focus",C,!0),i&&document.body.classList.add("has-overlay")},[b,C,a,n,i]),T=x.useCallback(()=>{document.removeEventListener("mousedown",b),document.removeEventListener("focus",C,!0),i&&document.body.classList.remove("has-overlay")},[b,C,i]);x.useEffect(()=>(t?P():T(),m(v||t),()=>{T()}),[t,P,T,v]);const A=V=>{c&&V.key==="Escape"&&(typeof d=="function"&&d(V),V.preventDefault())};return e&&!v?null:k.jsx(y8,{onKeyDown:A,ref:g,children:t?f:null})},T2=x.createContext({transformPagePoint:t=>t,isStatic:!1,reducedMotion:"never"}),Fs=x.createContext({}),Zs=x.createContext(null),X5=typeof document<"u",xo=X5?x.useLayoutEffect:x.useEffect,jp=x.createContext({strict:!1}),Q5=t=>t.replace(/([a-z])([A-Z])/gu,"$1-$2").toLowerCase(),b8="framerAppearId",Kp="data-"+Q5(b8),J5={skipAnimations:!1,useManualTiming:!1};class i4{constructor(){this.order=[],this.scheduled=new Set}add(e){if(!this.scheduled.has(e))return this.scheduled.add(e),this.order.push(e),!0}remove(e){const n=this.order.indexOf(e);n!==-1&&(this.order.splice(n,1),this.scheduled.delete(e))}clear(){this.order.length=0,this.scheduled.clear()}}function IE(t){let e=new i4,n=new i4,i=0,a=!1,c=!1;const d=new WeakSet,f={schedule:(v,m=!1,g=!1)=>{const b=g&&a,S=b?e:n;return m&&d.add(v),S.add(v)&&b&&a&&(i=e.order.length),v},cancel:v=>{n.remove(v),d.delete(v)},process:v=>{if(a){c=!0;return}if(a=!0,[e,n]=[n,e],n.clear(),i=e.order.length,i)for(let m=0;mn=!0,d=kc.reduce((V,R)=>(V[R]=IE(c),V),{}),{read:f,resolveKeyframes:v,update:m,preRender:g,render:b,postRender:S}=d,C=()=>{const V=J5.useManualTiming?a.timestamp:performance.now();n=!1,a.delta=i?1e3/60:Math.max(Math.min(V-a.timestamp,FE),1),a.timestamp=V,a.isProcessing=!0,f.process(a),v.process(a),m.process(a),g.process(a),b.process(a),S.process(a),a.isProcessing=!1,n&&e&&(i=!1,t(C))},P=()=>{n=!0,i=!0,a.isProcessing||t(C)};return{schedule:kc.reduce((V,R)=>{const F=d[R];return V[R]=(N,z=!1,U=!1)=>(n||P(),F.schedule(N,z,U)),V},{}),cancel:V=>{for(let R=0;R{g&&g.update(n,f)});const S=x.useRef(!!(n[Kp]&&!window.HandoffComplete));return xo(()=>{g&&(g.updateFeatures(),Wp.render(g.render),S.current&&g.animationState&&g.animationState.animateChanges())}),x.useEffect(()=>{g&&(!S.current&&g.animationState&&g.animationState.animateChanges(),S.current&&(S.current=!1,o4||(o4=!0,queueMicrotask(OE))))}),g}function OE(){window.HandoffComplete=!0}function NE(t,e,n,i){const{layoutId:a,layout:c,drag:d,dragConstraints:f,layoutScroll:v,layoutRoot:m}=e;t.projection=new n(t.latestValues,e["data-framer-portal-id"]?void 0:w8(t.parent)),t.projection.setOptions({layoutId:a,layout:c,alwaysMeasureLayout:!!d||f&&gs(f),visualElement:t,scheduleRender:()=>t.scheduleRender(),animationType:typeof c=="string"?c:"both",initialPromotionConfig:i,layoutScroll:v,layoutRoot:m})}function w8(t){if(t)return t.options.allowProjection!==!1?t.projection:w8(t.parent)}function HE(t,e,n){return x.useCallback(i=>{i&&t.mount&&t.mount(i),e&&(i?e.mount(i):e.unmount()),n&&(typeof n=="function"?n(i):gs(n)&&(n.current=i))},[e])}function Uc(t){return typeof t=="string"||Array.isArray(t)}function Gc(t){return t!==null&&typeof t=="object"&&typeof t.start=="function"}const Gp=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],qp=["initial",...Gp];function ef(t){return Gc(t.animate)||qp.some(e=>Uc(t[e]))}function $8(t){return!!(ef(t)||t.variants)}function zE(t,e){if(ef(t)){const{initial:n,animate:i}=t;return{initial:n===!1||Uc(n)?n:void 0,animate:Uc(i)?i:void 0}}return t.inherit!==!1?e:{}}function jE(t){const{initial:e,animate:n}=zE(t,x.useContext(Fs));return x.useMemo(()=>({initial:e,animate:n}),[l4(e),l4(n)])}function l4(t){return Array.isArray(t)?t.join(" "):t}const a4={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]},Ms={};for(const t in a4)Ms[t]={isEnabled:e=>a4[t].some(n=>!!e[n])};function q3(t){for(const e in t)Ms[e]={...Ms[e],...t[e]}}const As=x.createContext({}),Yp=Symbol.for("motionComponentSymbol"),Rt=t=>t;let S8=Rt,tf=Rt;function Xp({preloadedFeatures:t,createVisualElement:e,useRender:n,useVisualState:i,Component:a}){t&&q3(t);function c(f,v){let m;const g={...x.useContext(T2),...f,layoutId:KE(f)},{isStatic:b}=g,S=jE(f),C=i(f,b);if(!b&&X5){WE();const P=UE(g);m=P.MeasureLayout,S.visualElement=ZE(a,C,g,e,P.ProjectionNode)}return k.jsxs(Fs.Provider,{value:S,children:[m&&S.visualElement?k.jsx(m,{visualElement:S.visualElement,...g}):null,n(a,f,HE(C,S.visualElement,v),C,b,S.visualElement)]})}const d=x.forwardRef(c);return d[Yp]=a,d}function KE({layoutId:t}){const e=x.useContext(As).id;return e&&t!==void 0?e+"-"+t:t}function WE(t,e){x.useContext(jp).strict}function UE(t){const{drag:e,layout:n}=Ms;if(!e&&!n)return{};const i={...e,...n};return{MeasureLayout:e!=null&&e.isEnabled(t)||n!=null&&n.isEnabled(t)?i.MeasureLayout:void 0,ProjectionNode:i.ProjectionNode}}function C8(t){function e(i,a={}){return Xp(t(i,a))}if(typeof Proxy>"u")return e;const n=new Map;return new Proxy(e,{get:(i,a)=>(n.has(a)||n.set(a,e(a)),n.get(a))})}const GE=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function Qp(t){return typeof t!="string"||t.includes("-")?!1:!!(GE.indexOf(t)>-1||/[A-Z]/u.test(t))}const k5={};function _8(t){Object.assign(k5,t)}const a1=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],xi=new Set(a1);function P8(t,{layout:e,layoutId:n}){return xi.has(t)||t.startsWith("origin")||(e||n!==void 0)&&(!!k5[t]||t==="opacity")}const G0=t=>!!(t&&t.getVelocity),qE={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},YE=a1.length;function E8(t,e,n){let i="";for(let a=0;ae=>typeof e=="string"&&e.startsWith(t),T8=k8("--"),XE=k8("var(--"),Jp=t=>XE(t)?QE.test(t.split("/*")[0].trim()):!1,QE=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu,JE=(t,e)=>e&&typeof t=="number"?e.transform(t):t,gi=(t,e,n)=>n>e?e:ntypeof t=="number",parse:parseFloat,transform:t=>t},Dc={...Os,transform:t=>gi(0,1,t)},t5={...Os,default:1},Rc=t=>Math.round(t*1e5)/1e5,ev=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu,ek=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu,tk=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu;function s1(t){return typeof t=="string"}function nk(t){return t==null}const u1=t=>({test:e=>s1(e)&&e.endsWith(t)&&e.split(" ").length===1,parse:parseFloat,transform:e=>`${e}${t}`}),oo=u1("deg"),$2=u1("%"),je=u1("px"),rk=u1("vh"),ik=u1("vw"),s4={...$2,parse:t=>$2.parse(t)/100,transform:t=>$2.transform(t*100)},u4={...Os,transform:Math.round},M8={borderWidth:je,borderTopWidth:je,borderRightWidth:je,borderBottomWidth:je,borderLeftWidth:je,borderRadius:je,radius:je,borderTopLeftRadius:je,borderTopRightRadius:je,borderBottomRightRadius:je,borderBottomLeftRadius:je,width:je,maxWidth:je,height:je,maxHeight:je,size:je,top:je,right:je,bottom:je,left:je,padding:je,paddingTop:je,paddingRight:je,paddingBottom:je,paddingLeft:je,margin:je,marginTop:je,marginRight:je,marginBottom:je,marginLeft:je,rotate:oo,rotateX:oo,rotateY:oo,rotateZ:oo,scale:t5,scaleX:t5,scaleY:t5,scaleZ:t5,skew:oo,skewX:oo,skewY:oo,distance:je,translateX:je,translateY:je,translateZ:je,x:je,y:je,z:je,perspective:je,transformPerspective:je,opacity:Dc,originX:s4,originY:s4,originZ:je,zIndex:u4,backgroundPositionX:je,backgroundPositionY:je,fillOpacity:Dc,strokeOpacity:Dc,numOctaves:u4};function tv(t,e,n){const{style:i,vars:a,transform:c,transformOrigin:d}=t;let f=!1,v=!1,m=!0;for(const g in e){const b=e[g];if(T8(g)){a[g]=b;continue}const S=M8[g],C=JE(b,S);if(xi.has(g)){if(f=!0,c[g]=C,!m)continue;b!==(S.default||0)&&(m=!1)}else g.startsWith("origin")?(v=!0,d[g]=C):i[g]=C}if(e.transform||(f||n?i.transform=E8(t.transform,m,n):i.transform&&(i.transform="none")),v){const{originX:g="50%",originY:b="50%",originZ:S=0}=d;i.transformOrigin=`${g} ${b} ${S}`}}const nv=()=>({style:{},transform:{},transformOrigin:{},vars:{}});function A8(t,e,n){for(const i in e)!G0(e[i])&&!P8(i,n)&&(t[i]=e[i])}function ok({transformTemplate:t},e){return x.useMemo(()=>{const n=nv();return tv(n,e,t),Object.assign({},n.vars,n.style)},[e])}function lk(t,e){const n=t.style||{},i={};return A8(i,n,t),Object.assign(i,ok(t,e)),i}function ak(t,e){const n={},i=lk(t,e);return t.drag&&t.dragListener!==!1&&(n.draggable=!1,i.userSelect=i.WebkitUserSelect=i.WebkitTouchCallout="none",i.touchAction=t.drag===!0?"none":`pan-${t.drag==="x"?"y":"x"}`),t.tabIndex===void 0&&(t.onTap||t.onTapStart||t.whileTap)&&(n.tabIndex=0),n.style=i,n}const sk=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function qc(t){return t.startsWith("while")||t.startsWith("drag")&&t!=="draggable"||t.startsWith("layout")||t.startsWith("onTap")||t.startsWith("onPan")||t.startsWith("onLayout")||sk.has(t)}let L8=t=>!qc(t);function D8(t){t&&(L8=e=>e.startsWith("on")?!qc(e):t(e))}try{D8(require("@emotion/is-prop-valid").default)}catch{}function R8(t,e,n){const i={};for(const a in t)a==="values"&&typeof t.values=="object"||(L8(a)||n===!0&&qc(a)||!e&&!qc(a)||t.draggable&&a.startsWith("onDrag"))&&(i[a]=t[a]);return i}function c4(t,e,n){return typeof t=="string"?t:je.transform(e+n*t)}function uk(t,e,n){const i=c4(e,t.x,t.width),a=c4(n,t.y,t.height);return`${i} ${a}`}const ck={offset:"stroke-dashoffset",array:"stroke-dasharray"},dk={offset:"strokeDashoffset",array:"strokeDasharray"};function fk(t,e,n=1,i=0,a=!0){t.pathLength=1;const c=a?ck:dk;t[c.offset]=je.transform(-i);const d=je.transform(e),f=je.transform(n);t[c.array]=`${d} ${f}`}function rv(t,{attrX:e,attrY:n,attrScale:i,originX:a,originY:c,pathLength:d,pathSpacing:f=1,pathOffset:v=0,...m},g,b){if(tv(t,m,b),g){t.style.viewBox&&(t.attrs.viewBox=t.style.viewBox);return}t.attrs=t.style,t.style={};const{attrs:S,style:C,dimensions:P}=t;S.transform&&(P&&(C.transform=S.transform),delete S.transform),P&&(a!==void 0||c!==void 0||C.transform)&&(C.transformOrigin=uk(P,a!==void 0?a:.5,c!==void 0?c:.5)),e!==void 0&&(S.x=e),n!==void 0&&(S.y=n),i!==void 0&&(S.scale=i),d!==void 0&&fk(S,d,f,v,!1)}const B8=()=>({...nv(),attrs:{}}),iv=t=>typeof t=="string"&&t.toLowerCase()==="svg";function pk(t,e,n,i){const a=x.useMemo(()=>{const c=B8();return rv(c,e,iv(i),t.transformTemplate),{...c.attrs,style:{...c.style}}},[e]);if(t.style){const c={};A8(c,t.style,t),a.style={...c,...a.style}}return a}function vk(t=!1){return(n,i,a,{latestValues:c},d)=>{const v=(Qp(n)?pk:ak)(i,c,d,n),m=R8(i,typeof n=="string",t),g=n!==x.Fragment?{...m,...v,ref:a}:{},{children:b}=i,S=x.useMemo(()=>G0(b)?b.get():b,[b]);return x.createElement(n,{...g,children:S})}}function V8(t,{style:e,vars:n},i,a){Object.assign(t.style,e,a&&a.getProjectionStyles(i));for(const c in n)t.style.setProperty(c,n[c])}const I8=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function F8(t,e,n,i){V8(t,e,void 0,i);for(const a in e.attrs)t.setAttribute(I8.has(a)?a:Q5(a),e.attrs[a])}function ov(t,e,n){var i;const{style:a}=t,c={};for(const d in a)(G0(a[d])||e.style&&G0(e.style[d])||P8(d,t)||((i=n==null?void 0:n.getValue(d))===null||i===void 0?void 0:i.liveStyle)!==void 0)&&(c[d]=a[d]);return n&&a&&typeof a.willChange=="string"&&(n.applyWillChange=!1),c}function Z8(t,e,n){const i=ov(t,e,n);for(const a in t)if(G0(t[a])||G0(e[a])){const c=a1.indexOf(a)!==-1?"attr"+a.charAt(0).toUpperCase()+a.substring(1):a;i[c]=t[a]}return i}function d4(t){const e=[{},{}];return t==null||t.values.forEach((n,i)=>{e[0][i]=n.get(),e[1][i]=n.getVelocity()}),e}function lv(t,e,n,i){if(typeof e=="function"){const[a,c]=d4(i);e=e(n!==void 0?n:t.custom,a,c)}if(typeof e=="string"&&(e=t.variants&&t.variants[e]),typeof e=="function"){const[a,c]=d4(i);e=e(n!==void 0?n:t.custom,a,c)}return e}function tn(t){const e=x.useRef(null);return e.current===null&&(e.current=t()),e.current}const Y3=t=>Array.isArray(t),hk=t=>!!(t&&typeof t=="object"&&t.mix&&t.toValue),mk=t=>Y3(t)?t[t.length-1]||0:t;function Bc(t){const e=G0(t)?t.get():t;return hk(e)?e.toValue():e}const O8=new Set(["opacity","clipPath","filter","transform"]);function N8(t){if(xi.has(t))return"transform";if(O8.has(t)||t==="backgroundColor")return Q5(t)}function nf(t,e){t.indexOf(e)===-1&&t.push(e)}function c1(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}function gk([...t],e,n){const i=e<0?t.length+e:e;if(i>=0&&ii(a,m,v)),v}const rf=t=>(e,n)=>{const i=x.useContext(Fs),a=x.useContext(Zs),c=()=>yk(t,e,i,a,n);return n?c():tn(c)};function f4(t,e){const n=N8(e);n&&nf(t,n)}function p4(t,e,n){const i=Array.isArray(e)?e:[e];for(let a=0;a{for(const R in A){let F=A[R];if(Array.isArray(F)){const N=P?F.length-1:0;F=F[N]}F!==null&&(d[R]=F)}for(const R in V)d[R]=V[R]}),v&&(b&&g!==!1&&!Gc(b)&&p4(t,b,A=>{for(const V in A)f4(f,V)}),f.length&&(d.willChange=f.join(","))),d}const{schedule:Je,cancel:Dn,state:mt,steps:c5}=x8(typeof requestAnimationFrame<"u"?requestAnimationFrame:Rt,!0),xk={useVisualState:rf({scrapeMotionValuesFromProps:Z8,createRenderState:B8,onMount:(t,e,{renderState:n,latestValues:i})=>{Je.read(()=>{try{n.dimensions=typeof e.getBBox=="function"?e.getBBox():e.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}}),Je.render(()=>{rv(n,i,iv(e.tagName),t.transformTemplate),F8(e,n)})}})},wk={useVisualState:rf({applyWillChange:!0,scrapeMotionValuesFromProps:ov,createRenderState:nv})};function av(t,{forwardMotionProps:e=!1},n,i){return{...Qp(t)?xk:wk,preloadedFeatures:n,useRender:vk(e),createVisualElement:i,Component:t}}function b2(t,e,n,i={passive:!0}){return t.addEventListener(e,n,i),()=>t.removeEventListener(e,n)}const H8=t=>t.pointerType==="mouse"?typeof t.button!="number"||t.button<=0:t.isPrimary!==!1;function of(t,e="page"){return{point:{x:t[`${e}X`],y:t[`${e}Y`]}}}const z8=t=>e=>H8(e)&&t(e,of(e));function S2(t,e,n,i){return b2(t,e,z8(n),i)}const $k=(t,e)=>n=>e(t(n)),C2=(...t)=>t.reduce($k);function j8(t){let e=null;return()=>{const n=()=>{e=null};return e===null?(e=t,n):!1}}const v4=j8("dragHorizontal"),h4=j8("dragVertical");function K8(t){let e=!1;if(t==="y")e=h4();else if(t==="x")e=v4();else{const n=v4(),i=h4();n&&i?e=()=>{n(),i()}:(n&&n(),i&&i())}return e}function sv(){const t=K8(!0);return t?(t(),!1):!0}class wo{constructor(e){this.isMounted=!1,this.node=e}update(){}}function m4(t,e){const n=e?"pointerenter":"pointerleave",i=e?"onHoverStart":"onHoverEnd",a=(c,d)=>{if(c.pointerType==="touch"||sv())return;const f=t.getProps();t.animationState&&f.whileHover&&t.animationState.setActive("whileHover",e);const v=f[i];v&&Je.postRender(()=>v(c,d))};return S2(t.current,n,a,{passive:!t.getProps()[i]})}class Sk extends wo{mount(){this.unmount=C2(m4(this.node,!0),m4(this.node,!1))}unmount(){}}class Ck extends wo{constructor(){super(...arguments),this.isActive=!1}onFocus(){let e=!1;try{e=this.node.current.matches(":focus-visible")}catch{e=!0}!e||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=C2(b2(this.node.current,"focus",()=>this.onFocus()),b2(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}const W8=(t,e)=>e?t===e?!0:W8(t,e.parentElement):!1;function K7(t,e){if(!e)return;const n=new PointerEvent("pointer"+t);e(n,of(n))}class _k extends wo{constructor(){super(...arguments),this.removeStartListeners=Rt,this.removeEndListeners=Rt,this.removeAccessibleListeners=Rt,this.startPointerPress=(e,n)=>{if(this.isPressing)return;this.removeEndListeners();const i=this.node.getProps(),c=S2(window,"pointerup",(f,v)=>{if(!this.checkPressEnd())return;const{onTap:m,onTapCancel:g,globalTapTarget:b}=this.node.getProps(),S=!b&&!W8(this.node.current,f.target)?g:m;S&&Je.update(()=>S(f,v))},{passive:!(i.onTap||i.onPointerUp)}),d=S2(window,"pointercancel",(f,v)=>this.cancelPress(f,v),{passive:!(i.onTapCancel||i.onPointerCancel)});this.removeEndListeners=C2(c,d),this.startPress(e,n)},this.startAccessiblePress=()=>{const e=c=>{if(c.key!=="Enter"||this.isPressing)return;const d=f=>{f.key!=="Enter"||!this.checkPressEnd()||K7("up",(v,m)=>{const{onTap:g}=this.node.getProps();g&&Je.postRender(()=>g(v,m))})};this.removeEndListeners(),this.removeEndListeners=b2(this.node.current,"keyup",d),K7("down",(f,v)=>{this.startPress(f,v)})},n=b2(this.node.current,"keydown",e),i=()=>{this.isPressing&&K7("cancel",(c,d)=>this.cancelPress(c,d))},a=b2(this.node.current,"blur",i);this.removeAccessibleListeners=C2(n,a)}}startPress(e,n){this.isPressing=!0;const{onTapStart:i,whileTap:a}=this.node.getProps();a&&this.node.animationState&&this.node.animationState.setActive("whileTap",!0),i&&Je.postRender(()=>i(e,n))}checkPressEnd(){return this.removeEndListeners(),this.isPressing=!1,this.node.getProps().whileTap&&this.node.animationState&&this.node.animationState.setActive("whileTap",!1),!sv()}cancelPress(e,n){if(!this.checkPressEnd())return;const{onTapCancel:i}=this.node.getProps();i&&Je.postRender(()=>i(e,n))}mount(){const e=this.node.getProps(),n=S2(e.globalTapTarget?window:this.node.current,"pointerdown",this.startPointerPress,{passive:!(e.onTapStart||e.onPointerStart)}),i=b2(this.node.current,"focus",this.startAccessiblePress);this.removeStartListeners=C2(n,i)}unmount(){this.removeStartListeners(),this.removeEndListeners(),this.removeAccessibleListeners()}}const X3=new WeakMap,W7=new WeakMap,Pk=t=>{const e=X3.get(t.target);e&&e(t)},Ek=t=>{t.forEach(Pk)};function kk({root:t,...e}){const n=t||document;W7.has(n)||W7.set(n,{});const i=W7.get(n),a=JSON.stringify(e);return i[a]||(i[a]=new IntersectionObserver(Ek,{root:t,...e})),i[a]}function Tk(t,e,n){const i=kk(e);return X3.set(t,n),i.observe(t),()=>{X3.delete(t),i.unobserve(t)}}const Mk={some:0,all:1};class Ak extends wo{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:e={}}=this.node.getProps(),{root:n,margin:i,amount:a="some",once:c}=e,d={root:n?n.current:void 0,rootMargin:i,threshold:typeof a=="number"?a:Mk[a]},f=v=>{const{isIntersecting:m}=v;if(this.isInView===m||(this.isInView=m,c&&!m&&this.hasEnteredView))return;m&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",m);const{onViewportEnter:g,onViewportLeave:b}=this.node.getProps(),S=m?g:b;S&&S(v)};return Tk(this.node.current,d,f)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:e,prevProps:n}=this.node;["amount","margin","root"].some(Lk(e,n))&&this.startObserver()}unmount(){}}function Lk({viewport:t={}},{viewport:e={}}={}){return n=>t[n]!==e[n]}const U8={inView:{Feature:Ak},tap:{Feature:_k},focus:{Feature:Ck},hover:{Feature:Sk}};function G8(t,e){if(!Array.isArray(e))return!1;const n=e.length;if(n!==t.length)return!1;for(let i=0;it*1e3,_2=t=>t/1e3,Dk={type:"spring",stiffness:500,damping:25,restSpeed:10},Rk=t=>({type:"spring",stiffness:550,damping:t===0?2*Math.sqrt(550):30,restSpeed:10}),Bk={type:"keyframes",duration:.8},Vk={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},Ik=(t,{keyframes:e})=>e.length>2?Bk:xi.has(t)?t.startsWith("scale")?Rk(e[1]):Dk:Vk;function Fk({when:t,delay:e,delayChildren:n,staggerChildren:i,staggerDirection:a,repeat:c,repeatType:d,repeatDelay:f,from:v,elapsed:m,...g}){return!!Object.keys(g).length}function uv(t,e){return t[e]||t.default||t}const Yc={current:!1},Zk=t=>t!==null;function af(t,{repeat:e,repeatType:n="loop"},i){const a=t.filter(Zk),c=e&&n!=="loop"&&e%2===1?0:a.length-1;return!c||i===void 0?a[c]:i}let d5;function Ok(){d5=void 0}const co={now:()=>(d5===void 0&&co.set(mt.isProcessing||J5.useManualTiming?mt.timestamp:performance.now()),d5),set:t=>{d5=t,queueMicrotask(Ok)}},q8=t=>/^0[^.\s]+$/u.test(t);function Nk(t){return typeof t=="number"?t===0:t!==null?t==="none"||t==="0"||q8(t):!0}const Y8=t=>/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(t),Hk=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function zk(t){const e=Hk.exec(t);if(!e)return[,];const[,n,i,a]=e;return[`--${n??i}`,a]}function X8(t,e,n=1){const[i,a]=zk(t);if(!i)return;const c=window.getComputedStyle(e).getPropertyValue(i);if(c){const d=c.trim();return Y8(d)?parseFloat(d):d}return Jp(a)?X8(a,e,n+1):a}const jk=new Set(["width","height","top","left","right","bottom","x","y","translateX","translateY"]),g4=t=>t===Os||t===je,y4=(t,e)=>parseFloat(t.split(", ")[e]),b4=(t,e)=>(n,{transform:i})=>{if(i==="none"||!i)return 0;const a=i.match(/^matrix3d\((.+)\)$/u);if(a)return y4(a[1],e);{const c=i.match(/^matrix\((.+)\)$/u);return c?y4(c[1],t):0}},Kk=new Set(["x","y","z"]),Wk=a1.filter(t=>!Kk.has(t));function Uk(t){const e=[];return Wk.forEach(n=>{const i=t.getValue(n);i!==void 0&&(e.push([n,i.get()]),i.set(n.startsWith("scale")?1:0))}),e}const Ls={width:({x:t},{paddingLeft:e="0",paddingRight:n="0"})=>t.max-t.min-parseFloat(e)-parseFloat(n),height:({y:t},{paddingTop:e="0",paddingBottom:n="0"})=>t.max-t.min-parseFloat(e)-parseFloat(n),top:(t,{top:e})=>parseFloat(e),left:(t,{left:e})=>parseFloat(e),bottom:({y:t},{top:e})=>parseFloat(e)+(t.max-t.min),right:({x:t},{left:e})=>parseFloat(e)+(t.max-t.min),x:b4(4,13),y:b4(5,14)};Ls.translateX=Ls.x;Ls.translateY=Ls.y;const Q8=t=>e=>e.test(t),Gk={test:t=>t==="auto",parse:t=>t},J8=[Os,je,$2,oo,ik,rk,Gk],x4=t=>J8.find(Q8(t)),Ml=new Set;let Q3=!1,J3=!1;function eg(){if(J3){const t=Array.from(Ml).filter(i=>i.needsMeasurement),e=new Set(t.map(i=>i.element)),n=new Map;e.forEach(i=>{const a=Uk(i);a.length&&(n.set(i,a),i.render())}),t.forEach(i=>i.measureInitialState()),e.forEach(i=>{i.render();const a=n.get(i);a&&a.forEach(([c,d])=>{var f;(f=i.getValue(c))===null||f===void 0||f.set(d)})}),t.forEach(i=>i.measureEndState()),t.forEach(i=>{i.suspendedScrollY!==void 0&&window.scrollTo(0,i.suspendedScrollY)})}J3=!1,Q3=!1,Ml.forEach(t=>t.complete()),Ml.clear()}function tg(){Ml.forEach(t=>{t.readKeyframes(),t.needsMeasurement&&(J3=!0)})}function qk(){tg(),eg()}class cv{constructor(e,n,i,a,c,d=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...e],this.onComplete=n,this.name=i,this.motionValue=a,this.element=c,this.isAsync=d}scheduleResolve(){this.isScheduled=!0,this.isAsync?(Ml.add(this),Q3||(Q3=!0,Je.read(tg),Je.resolveKeyframes(eg))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:e,name:n,element:i,motionValue:a}=this;for(let c=0;cn=>!!(s1(n)&&tk.test(n)&&n.startsWith(t)||e&&!nk(n)&&Object.prototype.hasOwnProperty.call(n,e)),ng=(t,e,n)=>i=>{if(!s1(i))return i;const[a,c,d,f]=i.match(ev);return{[t]:parseFloat(a),[e]:parseFloat(c),[n]:parseFloat(d),alpha:f!==void 0?parseFloat(f):1}},Yk=t=>gi(0,255,t),U7={...Os,transform:t=>Math.round(Yk(t))},Tl={test:dv("rgb","red"),parse:ng("red","green","blue"),transform:({red:t,green:e,blue:n,alpha:i=1})=>"rgba("+U7.transform(t)+", "+U7.transform(e)+", "+U7.transform(n)+", "+Rc(Dc.transform(i))+")"};function Xk(t){let e="",n="",i="",a="";return t.length>5?(e=t.substring(1,3),n=t.substring(3,5),i=t.substring(5,7),a=t.substring(7,9)):(e=t.substring(1,2),n=t.substring(2,3),i=t.substring(3,4),a=t.substring(4,5),e+=e,n+=n,i+=i,a+=a),{red:parseInt(e,16),green:parseInt(n,16),blue:parseInt(i,16),alpha:a?parseInt(a,16)/255:1}}const ep={test:dv("#"),parse:Xk,transform:Tl.transform},ys={test:dv("hsl","hue"),parse:ng("hue","saturation","lightness"),transform:({hue:t,saturation:e,lightness:n,alpha:i=1})=>"hsla("+Math.round(t)+", "+$2.transform(Rc(e))+", "+$2.transform(Rc(n))+", "+Rc(Dc.transform(i))+")"},zt={test:t=>Tl.test(t)||ep.test(t)||ys.test(t),parse:t=>Tl.test(t)?Tl.parse(t):ys.test(t)?ys.parse(t):ep.parse(t),transform:t=>s1(t)?t:t.hasOwnProperty("red")?Tl.transform(t):ys.transform(t)};function Qk(t){var e,n;return isNaN(t)&&s1(t)&&(((e=t.match(ev))===null||e===void 0?void 0:e.length)||0)+(((n=t.match(ek))===null||n===void 0?void 0:n.length)||0)>0}const rg="number",ig="color",Jk="var",eT="var(",w4="${}",tT=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function Xc(t){const e=t.toString(),n=[],i={color:[],number:[],var:[]},a=[];let c=0;const f=e.replace(tT,v=>(zt.test(v)?(i.color.push(c),a.push(ig),n.push(zt.parse(v))):v.startsWith(eT)?(i.var.push(c),a.push(Jk),n.push(v)):(i.number.push(c),a.push(rg),n.push(parseFloat(v))),++c,w4)).split(w4);return{values:n,split:f,indexes:i,types:a}}function og(t){return Xc(t).values}function lg(t){const{split:e,types:n}=Xc(t),i=e.length;return a=>{let c="";for(let d=0;dtypeof t=="number"?0:t;function rT(t){const e=og(t);return lg(t)(e.map(nT))}const yi={test:Qk,parse:og,createTransformer:lg,getAnimatableNone:rT},iT=new Set(["brightness","contrast","saturate","opacity"]);function oT(t){const[e,n]=t.slice(0,-1).split("(");if(e==="drop-shadow")return t;const[i]=n.match(ev)||[];if(!i)return t;const a=n.replace(i,"");let c=iT.has(e)?1:0;return i!==n&&(c*=100),e+"("+c+a+")"}const lT=/\b([a-z-]*)\(.*?\)/gu,tp={...yi,getAnimatableNone:t=>{const e=t.match(lT);return e?e.map(oT).join(" "):t}},aT={...M8,color:zt,backgroundColor:zt,outlineColor:zt,fill:zt,stroke:zt,borderColor:zt,borderTopColor:zt,borderRightColor:zt,borderBottomColor:zt,borderLeftColor:zt,filter:tp,WebkitFilter:tp},fv=t=>aT[t];function ag(t,e){let n=fv(t);return n!==tp&&(n=yi),n.getAnimatableNone?n.getAnimatableNone(e):void 0}const sT=new Set(["auto","none","0"]);function uT(t,e,n){let i=0,a;for(;i{n.getValue(v).set(m)}),this.resolveNoneKeyframes()}}function ug(t){let e;return()=>(e===void 0&&(e=t()),e)}const $4=(t,e)=>e==="zIndex"?!1:!!(typeof t=="number"||Array.isArray(t)||typeof t=="string"&&(yi.test(t)||t==="0")&&!t.startsWith("url("));function cT(t){const e=t[0];if(t.length===1)return!0;for(let n=0;n{this.resolveFinishedPromise=e})}}function pv(t,e){return e?t*(1e3/e):0}const fT=5;function dg(t,e,n){const i=Math.max(e-fT,0);return pv(n-t(i),e-i)}const S4=.001,pT=.01,vT=10,hT=.05,mT=1;function gT({duration:t=800,bounce:e=.25,velocity:n=0,mass:i=1}){let a,c,d=1-e;d=gi(hT,mT,d),t=gi(pT,vT,_2(t)),d<1?(a=m=>{const g=m*d,b=g*t,S=g-n,C=np(m,d),P=Math.exp(-b);return S4-S/C*P},c=m=>{const b=m*d*t,S=b*n+n,C=Math.pow(d,2)*Math.pow(m,2)*t,P=Math.exp(-b),T=np(Math.pow(m,2),d);return(-a(m)+S4>0?-1:1)*((S-C)*P)/T}):(a=m=>{const g=Math.exp(-m*t),b=(m-n)*t+1;return-.001+g*b},c=m=>{const g=Math.exp(-m*t),b=(n-m)*(t*t);return g*b});const f=5/t,v=bT(a,c,f);if(t=hi(t),isNaN(v))return{stiffness:100,damping:10,duration:t};{const m=Math.pow(v,2)*i;return{stiffness:m,damping:d*2*Math.sqrt(i*m),duration:t}}}const yT=12;function bT(t,e,n){let i=n;for(let a=1;at[n]!==void 0)}function $T(t){let e={velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1,...t};if(!C4(t,wT)&&C4(t,xT)){const n=gT(t);e={...e,...n,mass:1},e.isResolvedFromDuration=!0}return e}function sf({keyframes:t,restDelta:e,restSpeed:n,...i}){const a=t[0],c=t[t.length-1],d={done:!1,value:a},{stiffness:f,damping:v,mass:m,duration:g,velocity:b,isResolvedFromDuration:S}=$T({...i,velocity:-_2(i.velocity||0)}),C=b||0,P=v/(2*Math.sqrt(f*m)),T=c-a,A=_2(Math.sqrt(f/m)),V=Math.abs(T)<5;n||(n=V?.01:2),e||(e=V?.005:.5);let R;if(P<1){const F=np(A,P);R=N=>{const z=Math.exp(-P*A*N);return c-z*((C+P*A*T)/F*Math.sin(F*N)+T*Math.cos(F*N))}}else if(P===1)R=F=>c-Math.exp(-A*F)*(T+(C+A*T)*F);else{const F=A*Math.sqrt(P*P-1);R=N=>{const z=Math.exp(-P*A*N),U=Math.min(F*N,300);return c-z*((C+P*A*T)*Math.sinh(U)+F*T*Math.cosh(U))/F}}return{calculatedDuration:S&&g||null,next:F=>{const N=R(F);if(S)d.done=F>=g;else{let z=C;F!==0&&(P<1?z=dg(R,F,N):z=0);const U=Math.abs(z)<=n,le=Math.abs(c-N)<=e;d.done=U&&le}return d.value=d.done?c:N,d}}}function _4({keyframes:t,velocity:e=0,power:n=.8,timeConstant:i=325,bounceDamping:a=10,bounceStiffness:c=500,modifyTarget:d,min:f,max:v,restDelta:m=.5,restSpeed:g}){const b=t[0],S={done:!1,value:b},C=D=>f!==void 0&&Dv,P=D=>f===void 0?v:v===void 0||Math.abs(f-D)-T*Math.exp(-D/i),F=D=>V+R(D),N=D=>{const ie=R(D),j=F(D);S.done=Math.abs(ie)<=m,S.value=S.done?V:j};let z,U;const le=D=>{C(S.value)&&(z=D,U=sf({keyframes:[S.value,P(S.value)],velocity:dg(F,D,S.value),damping:a,stiffness:c,restDelta:m,restSpeed:g}))};return le(0),{calculatedDuration:null,next:D=>{let ie=!1;return!U&&z===void 0&&(ie=!0,N(D),le(D)),z!==void 0&&D>=z?U.next(D-z):(!ie&&N(D),S)}}}const fg=(t,e,n)=>(((1-3*n+3*e)*t+(3*n-6*e))*t+3*e)*t,ST=1e-7,CT=12;function _T(t,e,n,i,a){let c,d,f=0;do d=e+(n-e)/2,c=fg(d,i,a)-t,c>0?n=d:e=d;while(Math.abs(c)>ST&&++f_T(c,0,1,t,n);return c=>c===0||c===1?c:fg(a(c),e,i)}const pg=Ns(.42,0,1,1),vg=Ns(0,0,.58,1),vv=Ns(.42,0,.58,1),hg=t=>Array.isArray(t)&&typeof t[0]!="number",hv=t=>e=>e<=.5?t(2*e)/2:(2-t(2*(1-e)))/2,mv=t=>e=>1-t(1-e),uf=t=>1-Math.sin(Math.acos(t)),gv=mv(uf),mg=hv(uf),yv=Ns(.33,1.53,.69,.99),cf=mv(yv),gg=hv(cf),yg=t=>(t*=2)<1?.5*cf(t):.5*(2-Math.pow(2,-10*(t-1))),PT={linear:Rt,easeIn:pg,easeInOut:vv,easeOut:vg,circIn:uf,circInOut:mg,circOut:gv,backIn:cf,backInOut:gg,backOut:yv,anticipate:yg},rp=t=>{if(Array.isArray(t)){tf(t.length===4);const[e,n,i,a]=t;return Ns(e,n,i,a)}else if(typeof t=="string")return PT[t];return t},mo=(t,e,n)=>{const i=e-t;return i===0?1:(n-t)/i},j0=(t,e,n)=>t+(e-t)*n;function G7(t,e,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?t+(e-t)*6*n:n<1/2?e:n<2/3?t+(e-t)*(2/3-n)*6:t}function ET({hue:t,saturation:e,lightness:n,alpha:i}){t/=360,e/=100,n/=100;let a=0,c=0,d=0;if(!e)a=c=d=n;else{const f=n<.5?n*(1+e):n+e-n*e,v=2*n-f;a=G7(v,f,t+1/3),c=G7(v,f,t),d=G7(v,f,t-1/3)}return{red:Math.round(a*255),green:Math.round(c*255),blue:Math.round(d*255),alpha:i}}function T5(t,e){return n=>n>0?e:t}const q7=(t,e,n)=>{const i=t*t,a=n*(e*e-i)+i;return a<0?0:Math.sqrt(a)},kT=[ep,Tl,ys],TT=t=>kT.find(e=>e.test(t));function P4(t){const e=TT(t);if(!e)return!1;let n=e.parse(t);return e===ys&&(n=ET(n)),n}const E4=(t,e)=>{const n=P4(t),i=P4(e);if(!n||!i)return T5(t,e);const a={...n};return c=>(a.red=q7(n.red,i.red,c),a.green=q7(n.green,i.green,c),a.blue=q7(n.blue,i.blue,c),a.alpha=j0(n.alpha,i.alpha,c),Tl.transform(a))},ip=new Set(["none","hidden"]);function MT(t,e){return ip.has(t)?n=>n<=0?t:e:n=>n>=1?e:t}function AT(t,e){return n=>j0(t,e,n)}function bv(t){return typeof t=="number"?AT:typeof t=="string"?Jp(t)?T5:zt.test(t)?E4:RT:Array.isArray(t)?bg:typeof t=="object"?zt.test(t)?E4:LT:T5}function bg(t,e){const n=[...t],i=n.length,a=t.map((c,d)=>bv(c)(c,e[d]));return c=>{for(let d=0;d{for(const c in i)n[c]=i[c](a);return n}}function DT(t,e){var n;const i=[],a={color:0,var:0,number:0};for(let c=0;c{const n=yi.createTransformer(e),i=Xc(t),a=Xc(e);return i.indexes.var.length===a.indexes.var.length&&i.indexes.color.length===a.indexes.color.length&&i.indexes.number.length>=a.indexes.number.length?ip.has(t)&&!a.values.length||ip.has(e)&&!i.values.length?MT(t,e):C2(bg(DT(i,a),a.values),n):T5(t,e)};function xv(t,e,n){return typeof t=="number"&&typeof e=="number"&&typeof n=="number"?j0(t,e,n):bv(t)(t,e)}function BT(t,e,n){const i=[],a=n||xv,c=t.length-1;for(let d=0;de[0];if(c===2&&t[0]===t[1])return()=>e[1];t[0]>t[c-1]&&(t=[...t].reverse(),e=[...e].reverse());const d=BT(e,i,a),f=d.length,v=m=>{let g=0;if(f>1)for(;gv(gi(t[0],t[c-1],m)):v}function xg(t,e){const n=t[t.length-1];for(let i=1;i<=e;i++){const a=mo(0,e,i);t.push(j0(n,1,a))}}function wv(t){const e=[0];return xg(e,t.length-1),e}function VT(t,e){return t.map(n=>n*e)}function IT(t,e){return t.map(()=>e||vv).splice(0,t.length-1)}function M5({duration:t=300,keyframes:e,times:n,ease:i="easeInOut"}){const a=hg(i)?i.map(rp):rp(i),c={done:!1,value:e[0]},d=VT(n&&n.length===e.length?n:wv(e),t),f=df(d,e,{ease:Array.isArray(a)?a:IT(e,a)});return{calculatedDuration:t,next:v=>(c.value=f(v),c.done=v>=t,c)}}const op=2e4;function wg(t){let e=0;const n=50;let i=t.next(e);for(;!i.done&&e=op?1/0:e}const FT=t=>{const e=({timestamp:n})=>t(n);return{start:()=>Je.update(e,!0),stop:()=>Dn(e),now:()=>mt.isProcessing?mt.timestamp:co.now()}},ZT={decay:_4,inertia:_4,tween:M5,keyframes:M5,spring:sf},OT=t=>t/100;class ff extends cg{constructor({KeyframeResolver:e=cv,...n}){super(n),this.holdTime=null,this.startTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState="running",this.state="idle",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.teardown();const{onStop:f}=this.options;f&&f()};const{name:i,motionValue:a,keyframes:c}=this.options,d=(f,v)=>this.onKeyframesResolved(f,v);i&&a&&a.owner?this.resolver=a.owner.resolveKeyframes(c,d,i,a):this.resolver=new e(c,d,i,a),this.resolver.scheduleResolve()}initPlayback(e){const{type:n="keyframes",repeat:i=0,repeatDelay:a=0,repeatType:c,velocity:d=0}=this.options,f=ZT[n]||M5;let v,m;f!==M5&&typeof e[0]!="number"&&(v=C2(OT,xv(e[0],e[1])),e=[0,100]);const g=f({...this.options,keyframes:e});c==="mirror"&&(m=f({...this.options,keyframes:[...e].reverse(),velocity:-d})),g.calculatedDuration===null&&(g.calculatedDuration=wg(g));const{calculatedDuration:b}=g,S=b+a,C=S*(i+1)-a;return{generator:g,mirroredGenerator:m,mapPercentToKeyframes:v,calculatedDuration:b,resolvedDuration:S,totalDuration:C}}onPostResolved(){const{autoplay:e=!0}=this.options;this.play(),this.pendingPlayState==="paused"||!e?this.pause():this.state=this.pendingPlayState}tick(e,n=!1){const{resolved:i}=this;if(!i){const{keyframes:D}=this.options;return{done:!0,value:D[D.length-1]}}const{finalKeyframe:a,generator:c,mirroredGenerator:d,mapPercentToKeyframes:f,keyframes:v,calculatedDuration:m,totalDuration:g,resolvedDuration:b}=i;if(this.startTime===null)return c.next(0);const{delay:S,repeat:C,repeatType:P,repeatDelay:T,onUpdate:A}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,e):this.speed<0&&(this.startTime=Math.min(e-g/this.speed,this.startTime)),n?this.currentTime=e:this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=Math.round(e-this.startTime)*this.speed;const V=this.currentTime-S*(this.speed>=0?1:-1),R=this.speed>=0?V<0:V>g;this.currentTime=Math.max(V,0),this.state==="finished"&&this.holdTime===null&&(this.currentTime=g);let F=this.currentTime,N=c;if(C){const D=Math.min(this.currentTime,g)/b;let ie=Math.floor(D),j=D%1;!j&&D>=1&&(j=1),j===1&&ie--,ie=Math.min(ie,C+1),!!(ie%2)&&(P==="reverse"?(j=1-j,T&&(j-=T/b)):P==="mirror"&&(N=d)),F=gi(0,1,j)*b}const z=R?{done:!1,value:v[0]}:N.next(F);f&&(z.value=f(z.value));let{done:U}=z;!R&&m!==null&&(U=this.speed>=0?this.currentTime>=g:this.currentTime<=0);const le=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&U);return le&&a!==void 0&&(z.value=af(v,this.options,a)),A&&A(z.value),le&&this.finish(),z}get duration(){const{resolved:e}=this;return e?_2(e.calculatedDuration):0}get time(){return _2(this.currentTime)}set time(e){e=hi(e),this.currentTime=e,this.holdTime!==null||this.speed===0?this.holdTime=e:this.driver&&(this.startTime=this.driver.now()-e/this.speed)}get speed(){return this.playbackSpeed}set speed(e){const n=this.playbackSpeed!==e;this.playbackSpeed=e,n&&(this.time=_2(this.currentTime))}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved){this.pendingPlayState="running";return}if(this.isStopped)return;const{driver:e=FT,onPlay:n}=this.options;this.driver||(this.driver=e(a=>this.tick(a))),n&&n();const i=this.driver.now();this.holdTime!==null?this.startTime=i-this.holdTime:(!this.startTime||this.state==="finished")&&(this.startTime=i),this.state==="finished"&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state="running",this.driver.start()}pause(){var e;if(!this._resolved){this.pendingPlayState="paused";return}this.state="paused",this.holdTime=(e=this.currentTime)!==null&&e!==void 0?e:0}complete(){this.state!=="running"&&this.play(),this.pendingPlayState=this.state="finished",this.holdTime=null}finish(){this.teardown(),this.state="finished";const{onComplete:e}=this.options;e&&e()}cancel(){this.cancelTime!==null&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state="idle",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(e){return this.startTime=0,this.tick(e,!0)}}function $g(t){return new ff(t)}const Sg=t=>Array.isArray(t)&&typeof t[0]=="number";function Cg(t){return!!(!t||typeof t=="string"&&t in $v||Sg(t)||Array.isArray(t)&&t.every(Cg))}const Tc=([t,e,n,i])=>`cubic-bezier(${t}, ${e}, ${n}, ${i})`,$v={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:Tc([0,.65,.55,1]),circOut:Tc([.55,0,1,.45]),backIn:Tc([.31,.01,.66,-.59]),backOut:Tc([.33,1.53,.69,.99])};function NT(t){return _g(t)||$v.easeOut}function _g(t){if(t)return Sg(t)?Tc(t):Array.isArray(t)?t.map(NT):$v[t]}function lp(t,e,n,{delay:i=0,duration:a=300,repeat:c=0,repeatType:d="loop",ease:f,times:v}={}){const m={[e]:n};v&&(m.offset=v);const g=_g(f);return Array.isArray(g)&&(m.easing=g),t.animate(m,{delay:i,duration:a,easing:Array.isArray(g)?"linear":g,fill:"both",iterations:c+1,direction:d==="reverse"?"alternate":"normal"})}const HT=ug(()=>Object.hasOwnProperty.call(Element.prototype,"animate")),A5=10,zT=2e4;function jT(t){return t.type==="spring"||t.name==="backgroundColor"||!Cg(t.ease)}function KT(t,e){const n=new ff({...e,keyframes:t,repeat:0,delay:0,isGenerator:!0});let i={done:!1,value:t[0]};const a=[];let c=0;for(;!i.done&&cthis.onKeyframesResolved(c,d),n,i),this.resolver.scheduleResolve()}initPlayback(e,n){var i;let{duration:a=300,times:c,ease:d,type:f,motionValue:v,name:m}=this.options;if(!(!((i=v.owner)===null||i===void 0)&&i.current))return!1;if(jT(this.options)){const{onComplete:b,onUpdate:S,motionValue:C,...P}=this.options,T=KT(e,P);e=T.keyframes,e.length===1&&(e[1]=e[0]),a=T.duration,c=T.times,d=T.ease,f="keyframes"}const g=lp(v.owner.current,m,e,{...this.options,duration:a,times:c,ease:d});return g.startTime=co.now(),this.pendingTimeline?(g.timeline=this.pendingTimeline,this.pendingTimeline=void 0):g.onfinish=()=>{const{onComplete:b}=this.options;v.set(af(e,this.options,n)),b&&b(),this.cancel(),this.resolveFinishedPromise()},{animation:g,duration:a,times:c,type:f,ease:d,keyframes:e}}get duration(){const{resolved:e}=this;if(!e)return 0;const{duration:n}=e;return _2(n)}get time(){const{resolved:e}=this;if(!e)return 0;const{animation:n}=e;return _2(n.currentTime||0)}set time(e){const{resolved:n}=this;if(!n)return;const{animation:i}=n;i.currentTime=hi(e)}get speed(){const{resolved:e}=this;if(!e)return 1;const{animation:n}=e;return n.playbackRate}set speed(e){const{resolved:n}=this;if(!n)return;const{animation:i}=n;i.playbackRate=e}get state(){const{resolved:e}=this;if(!e)return"idle";const{animation:n}=e;return n.playState}attachTimeline(e){if(!this._resolved)this.pendingTimeline=e;else{const{resolved:n}=this;if(!n)return Rt;const{animation:i}=n;i.timeline=e,i.onfinish=null}return Rt}play(){if(this.isStopped)return;const{resolved:e}=this;if(!e)return;const{animation:n}=e;n.playState==="finished"&&this.updateFinishedPromise(),n.play()}pause(){const{resolved:e}=this;if(!e)return;const{animation:n}=e;n.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;const{resolved:e}=this;if(!e)return;const{animation:n,keyframes:i,duration:a,type:c,ease:d,times:f}=e;if(n.playState==="idle"||n.playState==="finished")return;if(this.time){const{motionValue:m,onUpdate:g,onComplete:b,...S}=this.options,C=new ff({...S,keyframes:i,duration:a,type:c,ease:d,times:f,isGenerator:!0}),P=hi(this.time);m.setWithVelocity(C.sample(P-A5).value,C.sample(P).value,A5)}const{onStop:v}=this.options;v&&v(),this.cancel()}complete(){const{resolved:e}=this;e&&e.animation.finish()}cancel(){const{resolved:e}=this;e&&e.animation.cancel()}static supports(e){const{motionValue:n,name:i,repeatDelay:a,repeatType:c,damping:d,type:f}=e;return HT()&&i&&O8.has(i)&&n&&n.owner&&n.owner.current instanceof HTMLElement&&!n.owner.getProps().onUpdate&&!a&&c!=="mirror"&&d!==0&&f!=="inertia"}}function Pg(t,e){let n;const i=()=>{const{currentTime:a}=e,d=(a===null?0:a.value)/100;n!==d&&t(d),n=d};return Je.update(i,!0),()=>Dn(i)}const Eg=ug(()=>window.ScrollTimeline!==void 0);class Sv{constructor(e){this.stop=()=>this.runAll("stop"),this.animations=e.filter(Boolean)}then(e,n){return Promise.all(this.animations).then(e).catch(n)}getAll(e){return this.animations[0][e]}setAll(e,n){for(let i=0;i{if(Eg()&&i.attachTimeline)i.attachTimeline(e);else return i.pause(),Pg(a=>{i.time=i.duration*a},e)});return()=>{n.forEach((i,a)=>{i&&i(),this.animations[a].stop()})}}get time(){return this.getAll("time")}set time(e){this.setAll("time",e)}get speed(){return this.getAll("speed")}set speed(e){this.setAll("speed",e)}get duration(){let e=0;for(let n=0;nn[e]())}play(){this.runAll("play")}pause(){this.runAll("pause")}cancel(){this.runAll("cancel")}complete(){this.runAll("complete")}}const Cv=(t,e,n,i={},a,c,d)=>f=>{const v=uv(i,t)||{},m=v.delay||i.delay||0;let{elapsed:g=0}=i;g=g-hi(m);let b={keyframes:Array.isArray(n)?n:[null,n],ease:"easeOut",velocity:e.getVelocity(),...v,delay:-g,onUpdate:C=>{e.set(C),v.onUpdate&&v.onUpdate(C)},onComplete:()=>{f(),v.onComplete&&v.onComplete(),d&&d()},onStop:d,name:t,motionValue:e,element:c?void 0:a};Fk(v)||(b={...b,...Ik(t,b)}),b.duration&&(b.duration=hi(b.duration)),b.repeatDelay&&(b.repeatDelay=hi(b.repeatDelay)),b.from!==void 0&&(b.keyframes[0]=b.from);let S=!1;if((b.type===!1||b.duration===0&&!b.repeatDelay)&&(b.duration=0,b.delay===0&&(S=!0)),(Yc.current||J5.skipAnimations)&&(S=!0,b.duration=0,b.delay=0),S&&!c&&e.get()!==void 0){const C=af(b.keyframes,v);if(C!==void 0)return Je.update(()=>{b.onUpdate(C),b.onComplete()}),new Sv([])}return!c&&ap.supports(b)?new ap(b):new ff(b)};class _v{constructor(){this.subscriptions=[]}add(e){return nf(this.subscriptions,e),()=>c1(this.subscriptions,e)}notify(e,n,i){const a=this.subscriptions.length;if(a)if(a===1)this.subscriptions[0](e,n,i);else for(let c=0;c!isNaN(parseFloat(t)),Vc={current:void 0};class Pv{constructor(e,n={}){this.version="11.3.0",this.canTrackVelocity=null,this.events={},this.updateAndNotify=(i,a=!0)=>{const c=co.now();this.updatedAt!==c&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(i),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),a&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(e),this.owner=n.owner}setCurrent(e){this.current=e,this.updatedAt=co.now(),this.canTrackVelocity===null&&e!==void 0&&(this.canTrackVelocity=WT(this.current))}setPrevFrameValue(e=this.current){this.prevFrameValue=e,this.prevUpdatedAt=this.updatedAt}onChange(e){return this.on("change",e)}on(e,n){this.events[e]||(this.events[e]=new _v);const i=this.events[e].add(n);return e==="change"?()=>{i(),Je.read(()=>{this.events.change.getSize()||this.stop()})}:i}clearListeners(){for(const e in this.events)this.events[e].clear()}attach(e,n){this.passiveEffect=e,this.stopPassiveEffect=n}set(e,n=!0){!n||!this.passiveEffect?this.updateAndNotify(e,n):this.passiveEffect(e,this.updateAndNotify)}setWithVelocity(e,n,i){this.set(n),this.prev=void 0,this.prevFrameValue=e,this.prevUpdatedAt=this.updatedAt-i}jump(e,n=!0){this.updateAndNotify(e),this.prev=e,this.prevUpdatedAt=this.prevFrameValue=void 0,n&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return Vc.current&&Vc.current.push(this),this.current}getPrevious(){return this.prev}getVelocity(){const e=co.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||e-this.updatedAt>k4)return 0;const n=Math.min(this.updatedAt-this.prevUpdatedAt,k4);return pv(parseFloat(this.current)-parseFloat(this.prevFrameValue),n)}start(e){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.animation=e(n),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function Kr(t,e){return new Pv(t,e)}function UT(t,e,n){t.hasValue(e)?t.getValue(e).set(n):t.addValue(e,Kr(n))}function Ev(t,e){const n=lf(t,e);let{transitionEnd:i={},transition:a={},...c}=n||{};c={...c,...i};for(const d in c){const f=mk(c[d]);UT(t,d,f)}}function kg(t){return t.getProps()[Kp]}class Tg extends Pv{constructor(){super(...arguments),this.output=[],this.counts=new Map}add(e){const n=N8(e);if(!n)return;const i=this.counts.get(n)||0;this.counts.set(n,i+1),i===0&&(this.output.push(n),this.update());let a=!1;return()=>{if(a)return;a=!0;const c=this.counts.get(n)-1;this.counts.set(n,c),c===0&&(c1(this.output,n),this.update())}}update(){this.set(this.output.length?this.output.join(", "):"auto")}}function GT(){return tn(()=>new Tg("auto"))}function qT(t){return!!(G0(t)&&t.add)}function sp(t,e){var n;if(!t.applyWillChange)return;let i=t.getValue("willChange");if(!i&&!(!((n=t.props.style)===null||n===void 0)&&n.willChange)&&(i=new Tg("auto"),t.addValue("willChange",i)),qT(i))return i.add(e)}function YT({protectedKeys:t,needsAnimating:e},n){const i=t.hasOwnProperty(n)&&e[n]!==!0;return e[n]=!1,i}function kv(t,e,{delay:n=0,transitionOverride:i,type:a}={}){var c;let{transition:d=t.getDefaultTransition(),transitionEnd:f,...v}=e;i&&(d=i);const m=[],g=a&&t.animationState&&t.animationState.getState()[a];for(const b in v){const S=t.getValue(b,(c=t.latestValues[b])!==null&&c!==void 0?c:null),C=v[b];if(C===void 0||g&&YT(g,b))continue;const P={delay:n,elapsed:0,...uv(d||{},b)};let T=!1;if(window.HandoffAppearAnimations){const V=kg(t);if(V){const R=window.HandoffAppearAnimations(V,b,S,Je);R!==null&&(P.elapsed=R,T=!0)}}S.start(Cv(b,S,C,t.shouldReduceMotion&&xi.has(b)?{type:!1}:P,t,T,sp(t,b)));const A=S.animation;A&&m.push(A)}return f&&Promise.all(m).then(()=>{Je.update(()=>{f&&Ev(t,f)})}),m}function up(t,e,n={}){var i;const a=lf(t,e,n.type==="exit"?(i=t.presenceContext)===null||i===void 0?void 0:i.custom:void 0);let{transition:c=t.getDefaultTransition()||{}}=a||{};n.transitionOverride&&(c=n.transitionOverride);const d=a?()=>Promise.all(kv(t,a,n)):()=>Promise.resolve(),f=t.variantChildren&&t.variantChildren.size?(m=0)=>{const{delayChildren:g=0,staggerChildren:b,staggerDirection:S}=c;return XT(t,e,g+m,b,S,n)}:()=>Promise.resolve(),{when:v}=c;if(v){const[m,g]=v==="beforeChildren"?[d,f]:[f,d];return m().then(()=>g())}else return Promise.all([d(),f(n.delay)])}function XT(t,e,n=0,i=0,a=1,c){const d=[],f=(t.variantChildren.size-1)*i,v=a===1?(m=0)=>m*i:(m=0)=>f-m*i;return Array.from(t.variantChildren).sort(QT).forEach((m,g)=>{m.notify("AnimationStart",e),d.push(up(m,e,{...c,delay:n+v(g)}).then(()=>m.notify("AnimationComplete",e)))}),Promise.all(d)}function QT(t,e){return t.sortNodePosition(e)}function pf(t,e,n={}){t.notify("AnimationStart",e);let i;if(Array.isArray(e)){const a=e.map(c=>up(t,c,n));i=Promise.all(a)}else if(typeof e=="string")i=up(t,e,n);else{const a=typeof e=="function"?lf(t,e,n.custom):e;i=Promise.all(kv(t,a,n))}return i.then(()=>{Je.postRender(()=>{t.notify("AnimationComplete",e)})})}const JT=[...Gp].reverse(),eM=Gp.length;function tM(t){return e=>Promise.all(e.map(({animation:n,options:i})=>pf(t,n,i)))}function nM(t){let e=tM(t),n=T4(),i=!0;const a=v=>(m,g)=>{var b;const S=lf(t,g,v==="exit"?(b=t.presenceContext)===null||b===void 0?void 0:b.custom:void 0);if(S){const{transition:C,transitionEnd:P,...T}=S;m={...m,...T,...P}}return m};function c(v){e=v(t)}function d(v){const m=t.getProps(),g=t.getVariantContext(!0)||{},b=[],S=new Set;let C={},P=1/0;for(let A=0;AP&&N,ie=!1;const j=Array.isArray(F)?F:[F];let X=j.reduce(a(V),{});z===!1&&(X={});const{prevResolvedValues:xe={}}=R,G={...xe,...X},Q=he=>{D=!0,S.has(he)&&(ie=!0,S.delete(he)),R.needsAnimating[he]=!0;const _e=t.getValue(he);_e&&(_e.liveStyle=!1)};for(const he in G){const _e=X[he],se=xe[he];if(C.hasOwnProperty(he))continue;let fe=!1;Y3(_e)&&Y3(se)?fe=!G8(_e,se):fe=_e!==se,fe?_e!=null?Q(he):S.add(he):_e!==void 0&&S.has(he)?Q(he):R.protectedKeys[he]=!0}R.prevProp=F,R.prevResolvedValues=X,R.isActive&&(C={...C,...X}),i&&t.blockInitialAnimation&&(D=!1),D&&(!U||ie)&&b.push(...j.map(he=>({animation:he,options:{type:V}})))}if(S.size){const A={};S.forEach(V=>{const R=t.getBaseTarget(V),F=t.getValue(V);F&&(F.liveStyle=!0),A[V]=R??null}),b.push({animation:A})}let T=!!b.length;return i&&(m.initial===!1||m.initial===m.animate)&&!t.manuallyAnimateOnMount&&(T=!1),i=!1,T?e(b):Promise.resolve()}function f(v,m){var g;if(n[v].isActive===m)return Promise.resolve();(g=t.variantChildren)===null||g===void 0||g.forEach(S=>{var C;return(C=S.animationState)===null||C===void 0?void 0:C.setActive(v,m)}),n[v].isActive=m;const b=d(v);for(const S in n)n[S].protectedKeys={};return b}return{animateChanges:d,setActive:f,setAnimateFunction:c,getState:()=>n,reset:()=>{n=T4(),i=!0}}}function rM(t,e){return typeof e=="string"?e!==t:Array.isArray(e)?!G8(e,t):!1}function wl(t=!1){return{isActive:t,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function T4(){return{animate:wl(!0),whileInView:wl(),whileHover:wl(),whileTap:wl(),whileDrag:wl(),whileFocus:wl(),exit:wl()}}class iM extends wo{constructor(e){super(e),e.animationState||(e.animationState=nM(e))}updateAnimationControlsSubscription(){const{animate:e}=this.node.getProps();Gc(e)&&(this.unmountControls=e.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:e}=this.node.getProps(),{animate:n}=this.node.prevProps||{};e!==n&&this.updateAnimationControlsSubscription()}unmount(){var e;this.node.animationState.reset(),(e=this.unmountControls)===null||e===void 0||e.call(this)}}let oM=0;class lM extends wo{constructor(){super(...arguments),this.id=oM++}update(){if(!this.node.presenceContext)return;const{isPresent:e,onExitComplete:n}=this.node.presenceContext,{isPresent:i}=this.node.prevPresenceContext||{};if(!this.node.animationState||e===i)return;const a=this.node.animationState.setActive("exit",!e);n&&!e&&a.then(()=>n(this.id))}mount(){const{register:e}=this.node.presenceContext||{};e&&(this.unmount=e(this.id))}unmount(){}}const Tv={animation:{Feature:iM},exit:{Feature:lM}},cp=(t,e)=>Math.abs(t-e);function Mg(t,e){const n=cp(t.x,e.x),i=cp(t.y,e.y);return Math.sqrt(n**2+i**2)}class Ag{constructor(e,n,{transformPagePoint:i,contextWindow:a,dragSnapToOrigin:c=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const b=X7(this.lastMoveEventInfo,this.history),S=this.startEvent!==null,C=Mg(b.offset,{x:0,y:0})>=3;if(!S&&!C)return;const{point:P}=b,{timestamp:T}=mt;this.history.push({...P,timestamp:T});const{onStart:A,onMove:V}=this.handlers;S||(A&&A(this.lastMoveEvent,b),this.startEvent=this.lastMoveEvent),V&&V(this.lastMoveEvent,b)},this.handlePointerMove=(b,S)=>{this.lastMoveEvent=b,this.lastMoveEventInfo=Y7(S,this.transformPagePoint),Je.update(this.updatePoint,!0)},this.handlePointerUp=(b,S)=>{this.end();const{onEnd:C,onSessionEnd:P,resumeAnimation:T}=this.handlers;if(this.dragSnapToOrigin&&T&&T(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const A=X7(b.type==="pointercancel"?this.lastMoveEventInfo:Y7(S,this.transformPagePoint),this.history);this.startEvent&&C&&C(b,A),P&&P(b,A)},!H8(e))return;this.dragSnapToOrigin=c,this.handlers=n,this.transformPagePoint=i,this.contextWindow=a||window;const d=of(e),f=Y7(d,this.transformPagePoint),{point:v}=f,{timestamp:m}=mt;this.history=[{...v,timestamp:m}];const{onSessionStart:g}=n;g&&g(e,X7(f,this.history)),this.removeListeners=C2(S2(this.contextWindow,"pointermove",this.handlePointerMove),S2(this.contextWindow,"pointerup",this.handlePointerUp),S2(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(e){this.handlers=e}end(){this.removeListeners&&this.removeListeners(),Dn(this.updatePoint)}}function Y7(t,e){return e?{point:e(t.point)}:t}function M4(t,e){return{x:t.x-e.x,y:t.y-e.y}}function X7({point:t},e){return{point:t,delta:M4(t,Lg(e)),offset:M4(t,aM(e)),velocity:sM(e,.1)}}function aM(t){return t[0]}function Lg(t){return t[t.length-1]}function sM(t,e){if(t.length<2)return{x:0,y:0};let n=t.length-1,i=null;const a=Lg(t);for(;n>=0&&(i=t[n],!(a.timestamp-i.timestamp>hi(e)));)n--;if(!i)return{x:0,y:0};const c=_2(a.timestamp-i.timestamp);if(c===0)return{x:0,y:0};const d={x:(a.x-i.x)/c,y:(a.y-i.y)/c};return d.x===1/0&&(d.x=0),d.y===1/0&&(d.y=0),d}function Rn(t){return t.max-t.min}function dp(t,e=0,n=.01){return Math.abs(t-e)<=n}function A4(t,e,n,i=.5){t.origin=i,t.originPoint=j0(e.min,e.max,t.origin),t.scale=Rn(n)/Rn(e),(dp(t.scale,1,1e-4)||isNaN(t.scale))&&(t.scale=1),t.translate=j0(n.min,n.max,t.origin)-t.originPoint,(dp(t.translate)||isNaN(t.translate))&&(t.translate=0)}function Ic(t,e,n,i){A4(t.x,e.x,n.x,i?i.originX:void 0),A4(t.y,e.y,n.y,i?i.originY:void 0)}function L4(t,e,n){t.min=n.min+e.min,t.max=t.min+Rn(e)}function uM(t,e,n){L4(t.x,e.x,n.x),L4(t.y,e.y,n.y)}function D4(t,e,n){t.min=e.min-n.min,t.max=t.min+Rn(e)}function Fc(t,e,n){D4(t.x,e.x,n.x),D4(t.y,e.y,n.y)}function cM(t,{min:e,max:n},i){return e!==void 0&&tn&&(t=i?j0(n,t,i.max):Math.min(t,n)),t}function R4(t,e,n){return{min:e!==void 0?t.min+e:void 0,max:n!==void 0?t.max+n-(t.max-t.min):void 0}}function dM(t,{top:e,left:n,bottom:i,right:a}){return{x:R4(t.x,n,a),y:R4(t.y,e,i)}}function B4(t,e){let n=e.min-t.min,i=e.max-t.max;return e.max-e.mini?n=mo(e.min,e.max-i,t.min):i>a&&(n=mo(t.min,t.max-a,e.min)),gi(0,1,n)}function vM(t,e){const n={};return e.min!==void 0&&(n.min=e.min-t.min),e.max!==void 0&&(n.max=e.max-t.min),n}const fp=.35;function hM(t=fp){return t===!1?t=0:t===!0&&(t=fp),{x:V4(t,"left","right"),y:V4(t,"top","bottom")}}function V4(t,e,n){return{min:I4(t,e),max:I4(t,n)}}function I4(t,e){return typeof t=="number"?t:t[e]||0}const F4=()=>({translate:0,scale:1,origin:0,originPoint:0}),bs=()=>({x:F4(),y:F4()}),Z4=()=>({min:0,max:0}),J0=()=>({x:Z4(),y:Z4()});function xr(t){return[t("x"),t("y")]}function Dg({top:t,left:e,right:n,bottom:i}){return{x:{min:e,max:n},y:{min:t,max:i}}}function mM({x:t,y:e}){return{top:e.min,right:t.max,bottom:e.max,left:t.min}}function gM(t,e){if(!e)return t;const n=e({x:t.left,y:t.top}),i=e({x:t.right,y:t.bottom});return{top:n.y,left:n.x,bottom:i.y,right:i.x}}function Q7(t){return t===void 0||t===1}function pp({scale:t,scaleX:e,scaleY:n}){return!Q7(t)||!Q7(e)||!Q7(n)}function Cl(t){return pp(t)||Rg(t)||t.z||t.rotate||t.rotateX||t.rotateY||t.skewX||t.skewY}function Rg(t){return O4(t.x)||O4(t.y)}function O4(t){return t&&t!=="0%"}function L5(t,e,n){const i=t-n,a=e*i;return n+a}function N4(t,e,n,i,a){return a!==void 0&&(t=L5(t,a,i)),L5(t,n,i)+e}function vp(t,e=0,n=1,i,a){t.min=N4(t.min,e,n,i,a),t.max=N4(t.max,e,n,i,a)}function Bg(t,{x:e,y:n}){vp(t.x,e.translate,e.scale,e.originPoint),vp(t.y,n.translate,n.scale,n.originPoint)}function yM(t,e,n,i=!1){const a=n.length;if(!a)return;e.x=e.y=1;let c,d;for(let f=0;f1.0000000000001||t<.999999999999?t:1}function ao(t,e){t.min=t.min+e,t.max=t.max+e}function z4(t,e,[n,i,a]){const c=e[a]!==void 0?e[a]:.5,d=j0(t.min,t.max,c);vp(t,e[n],e[i],d,e.scale)}const bM=["x","scaleX","originX"],xM=["y","scaleY","originY"];function xs(t,e){z4(t.x,e,bM),z4(t.y,e,xM)}function Vg(t,e){return Dg(gM(t.getBoundingClientRect(),e))}function wM(t,e,n){const i=Vg(t,n),{scroll:a}=e;return a&&(ao(i.x,a.offset.x),ao(i.y,a.offset.y)),i}const Ig=({current:t})=>t?t.ownerDocument.defaultView:null,$M=new WeakMap;class SM{constructor(e){this.openGlobalLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=J0(),this.visualElement=e}start(e,{snapToCursor:n=!1}={}){const{presenceContext:i}=this.visualElement;if(i&&i.isPresent===!1)return;const a=g=>{const{dragSnapToOrigin:b}=this.getProps();b?this.pauseAnimation():this.stopAnimation(),n&&this.snapToCursor(of(g,"page").point)},c=(g,b)=>{var S;const{drag:C,dragPropagation:P,onDragStart:T}=this.getProps();if(C&&!P&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=K8(C),!this.openGlobalLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),xr(V=>{let R=this.getAxisMotionValue(V).get()||0;if($2.test(R)){const{projection:F}=this.visualElement;if(F&&F.layout){const N=F.layout.layoutBox[V];N&&(R=Rn(N)*(parseFloat(R)/100))}}this.originPoint[V]=R}),T&&Je.postRender(()=>T(g,b)),(S=this.removeWillChange)===null||S===void 0||S.call(this),this.removeWillChange=sp(this.visualElement,"transform");const{animationState:A}=this.visualElement;A&&A.setActive("whileDrag",!0)},d=(g,b)=>{const{dragPropagation:S,dragDirectionLock:C,onDirectionLock:P,onDrag:T}=this.getProps();if(!S&&!this.openGlobalLock)return;const{offset:A}=b;if(C&&this.currentDirection===null){this.currentDirection=CM(A),this.currentDirection!==null&&P&&P(this.currentDirection);return}this.updateAxis("x",b.point,A),this.updateAxis("y",b.point,A),this.visualElement.render(),T&&T(g,b)},f=(g,b)=>this.stop(g,b),v=()=>xr(g=>{var b;return this.getAnimationState(g)==="paused"&&((b=this.getAxisMotionValue(g).animation)===null||b===void 0?void 0:b.play())}),{dragSnapToOrigin:m}=this.getProps();this.panSession=new Ag(e,{onSessionStart:a,onStart:c,onMove:d,onSessionEnd:f,resumeAnimation:v},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:m,contextWindow:Ig(this.visualElement)})}stop(e,n){var i;(i=this.removeWillChange)===null||i===void 0||i.call(this);const a=this.isDragging;if(this.cancel(),!a)return;const{velocity:c}=n;this.startAnimation(c);const{onDragEnd:d}=this.getProps();d&&Je.postRender(()=>d(e,n))}cancel(){this.isDragging=!1;const{projection:e,animationState:n}=this.visualElement;e&&(e.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:i}=this.getProps();!i&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),n&&n.setActive("whileDrag",!1)}updateAxis(e,n,i){const{drag:a}=this.getProps();if(!i||!n5(e,a,this.currentDirection))return;const c=this.getAxisMotionValue(e);let d=this.originPoint[e]+i[e];this.constraints&&this.constraints[e]&&(d=cM(d,this.constraints[e],this.elastic[e])),c.set(d)}resolveConstraints(){var e;const{dragConstraints:n,dragElastic:i}=this.getProps(),a=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):(e=this.visualElement.projection)===null||e===void 0?void 0:e.layout,c=this.constraints;n&&gs(n)?this.constraints||(this.constraints=this.resolveRefConstraints()):n&&a?this.constraints=dM(a.layoutBox,n):this.constraints=!1,this.elastic=hM(i),c!==this.constraints&&a&&this.constraints&&!this.hasMutatedConstraints&&xr(d=>{this.constraints!==!1&&this.getAxisMotionValue(d)&&(this.constraints[d]=vM(a.layoutBox[d],this.constraints[d]))})}resolveRefConstraints(){const{dragConstraints:e,onMeasureDragConstraints:n}=this.getProps();if(!e||!gs(e))return!1;const i=e.current,{projection:a}=this.visualElement;if(!a||!a.layout)return!1;const c=wM(i,a.root,this.visualElement.getTransformPagePoint());let d=fM(a.layout.layoutBox,c);if(n){const f=n(mM(d));this.hasMutatedConstraints=!!f,f&&(d=Dg(f))}return d}startAnimation(e){const{drag:n,dragMomentum:i,dragElastic:a,dragTransition:c,dragSnapToOrigin:d,onDragTransitionEnd:f}=this.getProps(),v=this.constraints||{},m=xr(g=>{if(!n5(g,n,this.currentDirection))return;let b=v&&v[g]||{};d&&(b={min:0,max:0});const S=a?200:1e6,C=a?40:1e7,P={type:"inertia",velocity:i?e[g]:0,bounceStiffness:S,bounceDamping:C,timeConstant:750,restDelta:1,restSpeed:10,...c,...b};return this.startAxisValueAnimation(g,P)});return Promise.all(m).then(f)}startAxisValueAnimation(e,n){const i=this.getAxisMotionValue(e);return i.start(Cv(e,i,0,n,this.visualElement,!1,sp(this.visualElement,e)))}stopAnimation(){xr(e=>this.getAxisMotionValue(e).stop())}pauseAnimation(){xr(e=>{var n;return(n=this.getAxisMotionValue(e).animation)===null||n===void 0?void 0:n.pause()})}getAnimationState(e){var n;return(n=this.getAxisMotionValue(e).animation)===null||n===void 0?void 0:n.state}getAxisMotionValue(e){const n=`_drag${e.toUpperCase()}`,i=this.visualElement.getProps(),a=i[n];return a||this.visualElement.getValue(e,(i.initial?i.initial[e]:void 0)||0)}snapToCursor(e){xr(n=>{const{drag:i}=this.getProps();if(!n5(n,i,this.currentDirection))return;const{projection:a}=this.visualElement,c=this.getAxisMotionValue(n);if(a&&a.layout){const{min:d,max:f}=a.layout.layoutBox[n];c.set(e[n]-j0(d,f,.5))}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:e,dragConstraints:n}=this.getProps(),{projection:i}=this.visualElement;if(!gs(n)||!i||!this.constraints)return;this.stopAnimation();const a={x:0,y:0};xr(d=>{const f=this.getAxisMotionValue(d);if(f&&this.constraints!==!1){const v=f.get();a[d]=pM({min:v,max:v},this.constraints[d])}});const{transformTemplate:c}=this.visualElement.getProps();this.visualElement.current.style.transform=c?c({},""):"none",i.root&&i.root.updateScroll(),i.updateLayout(),this.resolveConstraints(),xr(d=>{if(!n5(d,e,null))return;const f=this.getAxisMotionValue(d),{min:v,max:m}=this.constraints[d];f.set(j0(v,m,a[d]))})}addListeners(){if(!this.visualElement.current)return;$M.set(this.visualElement,this);const e=this.visualElement.current,n=S2(e,"pointerdown",v=>{const{drag:m,dragListener:g=!0}=this.getProps();m&&g&&this.start(v)}),i=()=>{const{dragConstraints:v}=this.getProps();gs(v)&&v.current&&(this.constraints=this.resolveRefConstraints())},{projection:a}=this.visualElement,c=a.addEventListener("measure",i);a&&!a.layout&&(a.root&&a.root.updateScroll(),a.updateLayout()),Je.read(i);const d=b2(window,"resize",()=>this.scalePositionWithinConstraints()),f=a.addEventListener("didUpdate",({delta:v,hasLayoutChanged:m})=>{this.isDragging&&m&&(xr(g=>{const b=this.getAxisMotionValue(g);b&&(this.originPoint[g]+=v[g].translate,b.set(b.get()+v[g].translate))}),this.visualElement.render())});return()=>{d(),n(),c(),f&&f()}}getProps(){const e=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:i=!1,dragPropagation:a=!1,dragConstraints:c=!1,dragElastic:d=fp,dragMomentum:f=!0}=e;return{...e,drag:n,dragDirectionLock:i,dragPropagation:a,dragConstraints:c,dragElastic:d,dragMomentum:f}}}function n5(t,e,n){return(e===!0||e===t)&&(n===null||n===t)}function CM(t,e=10){let n=null;return Math.abs(t.y)>e?n="y":Math.abs(t.x)>e&&(n="x"),n}class _M extends wo{constructor(e){super(e),this.removeGroupControls=Rt,this.removeListeners=Rt,this.controls=new SM(e)}mount(){const{dragControls:e}=this.node.getProps();e&&(this.removeGroupControls=e.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||Rt}unmount(){this.removeGroupControls(),this.removeListeners()}}const j4=t=>(e,n)=>{t&&Je.postRender(()=>t(e,n))};class PM extends wo{constructor(){super(...arguments),this.removePointerDownListener=Rt}onPointerDown(e){this.session=new Ag(e,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:Ig(this.node)})}createPanHandlers(){const{onPanSessionStart:e,onPanStart:n,onPan:i,onPanEnd:a}=this.node.getProps();return{onSessionStart:j4(e),onStart:j4(n),onMove:i,onEnd:(c,d)=>{delete this.session,a&&Je.postRender(()=>a(c,d))}}}mount(){this.removePointerDownListener=S2(this.node.current,"pointerdown",e=>this.onPointerDown(e))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}function Fg(){const t=x.useContext(Zs);if(t===null)return[!0,null];const{isPresent:e,onExitComplete:n,register:i}=t,a=x.useId();return x.useEffect(()=>i(a),[]),!e&&n?[!1,()=>n&&n(a)]:[!0]}function EM(){return kM(x.useContext(Zs))}function kM(t){return t===null?!0:t.isPresent}const f5={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function K4(t,e){return e.max===e.min?0:t/(e.max-e.min)*100}const wc={correct:(t,e)=>{if(!e.target)return t;if(typeof t=="string")if(je.test(t))t=parseFloat(t);else return t;const n=K4(t,e.target.x),i=K4(t,e.target.y);return`${n}% ${i}%`}},TM={correct:(t,{treeScale:e,projectionDelta:n})=>{const i=t,a=yi.parse(t);if(a.length>5)return i;const c=yi.createTransformer(t),d=typeof a[0]!="number"?1:0,f=n.x.scale*e.x,v=n.y.scale*e.y;a[0+d]/=f,a[1+d]/=v;const m=j0(f,v,.5);return typeof a[2+d]=="number"&&(a[2+d]/=m),typeof a[3+d]=="number"&&(a[3+d]/=m),c(a)}};class MM extends x.Component{componentDidMount(){const{visualElement:e,layoutGroup:n,switchLayoutGroup:i,layoutId:a}=this.props,{projection:c}=e;_8(AM),c&&(n.group&&n.group.add(c),i&&i.register&&a&&i.register(c),c.root.didUpdate(),c.addEventListener("animationComplete",()=>{this.safeToRemove()}),c.setOptions({...c.options,onExitComplete:()=>this.safeToRemove()})),f5.hasEverUpdated=!0}getSnapshotBeforeUpdate(e){const{layoutDependency:n,visualElement:i,drag:a,isPresent:c}=this.props,d=i.projection;return d&&(d.isPresent=c,a||e.layoutDependency!==n||n===void 0?d.willUpdate():this.safeToRemove(),e.isPresent!==c&&(c?d.promote():d.relegate()||Je.postRender(()=>{const f=d.getStack();(!f||!f.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:e}=this.props.visualElement;e&&(e.root.didUpdate(),Wp.postRender(()=>{!e.currentAnimation&&e.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:e,layoutGroup:n,switchLayoutGroup:i}=this.props,{projection:a}=e;a&&(a.scheduleCheckAfterUnmount(),n&&n.group&&n.group.remove(a),i&&i.deregister&&i.deregister(a))}safeToRemove(){const{safeToRemove:e}=this.props;e&&e()}render(){return null}}function Zg(t){const[e,n]=Fg(),i=x.useContext(As);return k.jsx(MM,{...t,layoutGroup:i,switchLayoutGroup:x.useContext(Up),isPresent:e,safeToRemove:n})}const AM={borderRadius:{...wc,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:wc,borderTopRightRadius:wc,borderBottomLeftRadius:wc,borderBottomRightRadius:wc,boxShadow:TM},Og=["TopLeft","TopRight","BottomLeft","BottomRight"],LM=Og.length,W4=t=>typeof t=="string"?parseFloat(t):t,U4=t=>typeof t=="number"||je.test(t);function DM(t,e,n,i,a,c){a?(t.opacity=j0(0,n.opacity!==void 0?n.opacity:1,RM(i)),t.opacityExit=j0(e.opacity!==void 0?e.opacity:1,0,BM(i))):c&&(t.opacity=j0(e.opacity!==void 0?e.opacity:1,n.opacity!==void 0?n.opacity:1,i));for(let d=0;die?1:n(mo(t,e,i))}function q4(t,e){t.min=e.min,t.max=e.max}function yr(t,e){q4(t.x,e.x),q4(t.y,e.y)}function Y4(t,e,n,i,a){return t-=e,t=L5(t,1/n,i),a!==void 0&&(t=L5(t,1/a,i)),t}function VM(t,e=0,n=1,i=.5,a,c=t,d=t){if($2.test(e)&&(e=parseFloat(e),e=j0(d.min,d.max,e/100)-d.min),typeof e!="number")return;let f=j0(c.min,c.max,i);t===c&&(f-=e),t.min=Y4(t.min,e,n,f,a),t.max=Y4(t.max,e,n,f,a)}function X4(t,e,[n,i,a],c,d){VM(t,e[n],e[i],e[a],e.scale,c,d)}const IM=["x","scaleX","originX"],FM=["y","scaleY","originY"];function Q4(t,e,n,i){X4(t.x,e,IM,n?n.x:void 0,i?i.x:void 0),X4(t.y,e,FM,n?n.y:void 0,i?i.y:void 0)}function J4(t){return t.translate===0&&t.scale===1}function Hg(t){return J4(t.x)&&J4(t.y)}function ZM(t,e){return t.x.min===e.x.min&&t.x.max===e.x.max&&t.y.min===e.y.min&&t.y.max===e.y.max}function zg(t,e){return Math.round(t.x.min)===Math.round(e.x.min)&&Math.round(t.x.max)===Math.round(e.x.max)&&Math.round(t.y.min)===Math.round(e.y.min)&&Math.round(t.y.max)===Math.round(e.y.max)}function e6(t){return Rn(t.x)/Rn(t.y)}class OM{constructor(){this.members=[]}add(e){nf(this.members,e),e.scheduleRender()}remove(e){if(c1(this.members,e),e===this.prevLead&&(this.prevLead=void 0),e===this.lead){const n=this.members[this.members.length-1];n&&this.promote(n)}}relegate(e){const n=this.members.findIndex(a=>e===a);if(n===0)return!1;let i;for(let a=n;a>=0;a--){const c=this.members[a];if(c.isPresent!==!1){i=c;break}}return i?(this.promote(i),!0):!1}promote(e,n){const i=this.lead;if(e!==i&&(this.prevLead=i,this.lead=e,e.show(),i)){i.instance&&i.scheduleRender(),e.scheduleRender(),e.resumeFrom=i,n&&(e.resumeFrom.preserveOpacity=!0),i.snapshot&&(e.snapshot=i.snapshot,e.snapshot.latestValues=i.animationValues||i.latestValues),e.root&&e.root.isUpdating&&(e.isLayoutDirty=!0);const{crossfade:a}=e.options;a===!1&&i.hide()}}exitAnimationComplete(){this.members.forEach(e=>{const{options:n,resumingFrom:i}=e;n.onExitComplete&&n.onExitComplete(),i&&i.options.onExitComplete&&i.options.onExitComplete()})}scheduleRender(){this.members.forEach(e=>{e.instance&&e.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function t6(t,e,n){let i="";const a=t.x.translate/e.x,c=t.y.translate/e.y,d=(n==null?void 0:n.z)||0;if((a||c||d)&&(i=`translate3d(${a}px, ${c}px, ${d}px) `),(e.x!==1||e.y!==1)&&(i+=`scale(${1/e.x}, ${1/e.y}) `),n){const{transformPerspective:m,rotate:g,rotateX:b,rotateY:S,skewX:C,skewY:P}=n;m&&(i=`perspective(${m}px) ${i}`),g&&(i+=`rotate(${g}deg) `),b&&(i+=`rotateX(${b}deg) `),S&&(i+=`rotateY(${S}deg) `),C&&(i+=`skewX(${C}deg) `),P&&(i+=`skewY(${P}deg) `)}const f=t.x.scale*e.x,v=t.y.scale*e.y;return(f!==1||v!==1)&&(i+=`scale(${f}, ${v})`),i||"none"}const NM=(t,e)=>t.depth-e.depth;class jg{constructor(){this.children=[],this.isDirty=!1}add(e){nf(this.children,e),this.isDirty=!0}remove(e){c1(this.children,e),this.isDirty=!0}forEach(e){this.isDirty&&this.children.sort(NM),this.isDirty=!1,this.children.forEach(e)}}function Kg(t,e){const n=co.now(),i=({timestamp:a})=>{const c=a-n;c>=e&&(Dn(i),t(c-e))};return Je.read(i,!0),()=>Dn(i)}function HM(t){window.MotionDebug&&window.MotionDebug.record(t)}function Wg(t){return t instanceof SVGElement&&t.tagName!=="svg"}function Mv(t,e,n){const i=G0(t)?t:Kr(t);return i.start(Cv("",i,e,n)),i.animation}const J7=["","X","Y","Z"],zM={visibility:"hidden"},n6=1e3;let jM=0;const _l={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0};function e3(t,e,n,i){const{latestValues:a}=e;a[t]&&(n[t]=a[t],e.setStaticValue(t,0),i&&(i[t]=0))}function Ug(t){if(t.hasCheckedOptimisedAppear=!0,t.root===t)return!1;const{visualElement:e}=t.options;return e?kg(e)?!0:t.parent&&!t.parent.hasCheckedOptimisedAppear?Ug(t.parent):!1:!1}function Gg({attachResizeListener:t,defaultParent:e,measureScroll:n,checkIsScrollRoot:i,resetTransform:a}){return class{constructor(d={},f=e==null?void 0:e()){this.id=jM++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,_l.totalNodes=_l.resolvedTargetDeltas=_l.recalculatedProjection=0,this.nodes.forEach(UM),this.nodes.forEach(QM),this.nodes.forEach(JM),this.nodes.forEach(GM),HM(_l)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=d,this.root=f?f.root||f:this,this.path=f?[...f.path,f]:[],this.parent=f,this.depth=f?f.depth+1:0;for(let v=0;vthis.root.updateBlockedByResize=!1;t(d,()=>{this.root.updateBlockedByResize=!0,b&&b(),b=Kg(S,250),f5.hasAnimatedSinceResize&&(f5.hasAnimatedSinceResize=!1,this.nodes.forEach(i6))})}v&&this.root.registerSharedNode(v,this),this.options.animate!==!1&&g&&(v||m)&&this.addEventListener("didUpdate",({delta:b,hasLayoutChanged:S,hasRelativeTargetChanged:C,layout:P})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const T=this.options.transition||g.getDefaultTransition()||iA,{onLayoutAnimationStart:A,onLayoutAnimationComplete:V}=g.getProps(),R=!this.targetLayout||!zg(this.targetLayout,P)||C,F=!S&&C;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||F||S&&(R||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(b,F);const N={...uv(T,"layout"),onPlay:A,onComplete:V};(g.shouldReduceMotion||this.options.layoutRoot)&&(N.delay=0,N.type=!1),this.startAnimation(N)}else S||i6(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=P})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const d=this.getStack();d&&d.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,Dn(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(eA),this.animationId++)}getTransformTemplate(){const{visualElement:d}=this.options;return d&&d.getProps().transformTemplate}willUpdate(d=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.HandoffCancelAllAnimations&&Ug(this)&&window.HandoffCancelAllAnimations(),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let g=0;g{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure())}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let v=0;v{const z=N/1e3;o6(b.x,d.x,z),o6(b.y,d.y,z),this.setTargetDelta(b),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(Fc(S,this.layout.layoutBox,this.relativeParent.layout.layoutBox),nA(this.relativeTarget,this.relativeTargetOrigin,S,z),F&&ZM(this.relativeTarget,F)&&(this.isProjectionDirty=!1),F||(F=J0()),yr(F,this.relativeTarget)),T&&(this.animationValues=g,DM(g,m,this.latestValues,z,R,V)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=z},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(d){this.notifyListeners("animationStart"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&(Dn(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Je.update(()=>{f5.hasAnimatedSinceResize=!0,this.currentAnimation=Mv(0,n6,{...d,onUpdate:f=>{this.mixTargetDelta(f),d.onUpdate&&d.onUpdate(f)},onComplete:()=>{d.onComplete&&d.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const d=this.getStack();d&&d.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(n6),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const d=this.getLead();let{targetWithTransforms:f,target:v,layout:m,latestValues:g}=d;if(!(!f||!v||!m)){if(this!==d&&this.layout&&m&&qg(this.options.animationType,this.layout.layoutBox,m.layoutBox)){v=this.target||J0();const b=Rn(this.layout.layoutBox.x);v.x.min=d.target.x.min,v.x.max=v.x.min+b;const S=Rn(this.layout.layoutBox.y);v.y.min=d.target.y.min,v.y.max=v.y.min+S}yr(f,v),xs(f,g),Ic(this.projectionDeltaWithTransform,this.layoutCorrected,f,g)}}registerSharedNode(d,f){this.sharedNodes.has(d)||this.sharedNodes.set(d,new OM),this.sharedNodes.get(d).add(f);const m=f.options.initialPromotionConfig;f.promote({transition:m?m.transition:void 0,preserveFollowOpacity:m&&m.shouldPreserveFollowOpacity?m.shouldPreserveFollowOpacity(f):void 0})}isLead(){const d=this.getStack();return d?d.lead===this:!0}getLead(){var d;const{layoutId:f}=this.options;return f?((d=this.getStack())===null||d===void 0?void 0:d.lead)||this:this}getPrevLead(){var d;const{layoutId:f}=this.options;return f?(d=this.getStack())===null||d===void 0?void 0:d.prevLead:void 0}getStack(){const{layoutId:d}=this.options;if(d)return this.root.sharedNodes.get(d)}promote({needsReset:d,transition:f,preserveFollowOpacity:v}={}){const m=this.getStack();m&&m.promote(this,v),d&&(this.projectionDelta=void 0,this.needsReset=!0),f&&this.setOptions({transition:f})}relegate(){const d=this.getStack();return d?d.relegate(this):!1}resetSkewAndRotation(){const{visualElement:d}=this.options;if(!d)return;let f=!1;const{latestValues:v}=d;if((v.z||v.rotate||v.rotateX||v.rotateY||v.rotateZ||v.skewX||v.skewY)&&(f=!0),!f)return;const m={};v.z&&e3("z",d,m,this.animationValues);for(let g=0;g{var f;return(f=d.currentAnimation)===null||f===void 0?void 0:f.stop()}),this.root.nodes.forEach(r6),this.root.sharedNodes.clear()}}}function KM(t){t.updateLayout()}function WM(t){var e;const n=((e=t.resumeFrom)===null||e===void 0?void 0:e.snapshot)||t.snapshot;if(t.isLead()&&t.layout&&n&&t.hasListeners("didUpdate")){const{layoutBox:i,measuredBox:a}=t.layout,{animationType:c}=t.options,d=n.source!==t.layout.source;c==="size"?xr(b=>{const S=d?n.measuredBox[b]:n.layoutBox[b],C=Rn(S);S.min=i[b].min,S.max=S.min+C}):qg(c,n.layoutBox,i)&&xr(b=>{const S=d?n.measuredBox[b]:n.layoutBox[b],C=Rn(i[b]);S.max=S.min+C,t.relativeTarget&&!t.currentAnimation&&(t.isProjectionDirty=!0,t.relativeTarget[b].max=t.relativeTarget[b].min+C)});const f=bs();Ic(f,i,n.layoutBox);const v=bs();d?Ic(v,t.applyTransform(a,!0),n.measuredBox):Ic(v,i,n.layoutBox);const m=!Hg(f);let g=!1;if(!t.resumeFrom){const b=t.getClosestProjectingParent();if(b&&!b.resumeFrom){const{snapshot:S,layout:C}=b;if(S&&C){const P=J0();Fc(P,n.layoutBox,S.layoutBox);const T=J0();Fc(T,i,C.layoutBox),zg(P,T)||(g=!0),b.options.layoutRoot&&(t.relativeTarget=T,t.relativeTargetOrigin=P,t.relativeParent=b)}}}t.notifyListeners("didUpdate",{layout:i,snapshot:n,delta:v,layoutDelta:f,hasLayoutChanged:m,hasRelativeTargetChanged:g})}else if(t.isLead()){const{onExitComplete:i}=t.options;i&&i()}t.options.transition=void 0}function UM(t){_l.totalNodes++,t.parent&&(t.isProjecting()||(t.isProjectionDirty=t.parent.isProjectionDirty),t.isSharedProjectionDirty||(t.isSharedProjectionDirty=!!(t.isProjectionDirty||t.parent.isProjectionDirty||t.parent.isSharedProjectionDirty)),t.isTransformDirty||(t.isTransformDirty=t.parent.isTransformDirty))}function GM(t){t.isProjectionDirty=t.isSharedProjectionDirty=t.isTransformDirty=!1}function qM(t){t.clearSnapshot()}function r6(t){t.clearMeasurements()}function YM(t){t.isLayoutDirty=!1}function XM(t){const{visualElement:e}=t.options;e&&e.getProps().onBeforeLayoutMeasure&&e.notify("BeforeLayoutMeasure"),t.resetTransform()}function i6(t){t.finishAnimation(),t.targetDelta=t.relativeTarget=t.target=void 0,t.isProjectionDirty=!0}function QM(t){t.resolveTargetDelta()}function JM(t){t.calcProjection()}function eA(t){t.resetSkewAndRotation()}function tA(t){t.removeLeadSnapshot()}function o6(t,e,n){t.translate=j0(e.translate,0,n),t.scale=j0(e.scale,1,n),t.origin=e.origin,t.originPoint=e.originPoint}function l6(t,e,n,i){t.min=j0(e.min,n.min,i),t.max=j0(e.max,n.max,i)}function nA(t,e,n,i){l6(t.x,e.x,n.x,i),l6(t.y,e.y,n.y,i)}function rA(t){return t.animationValues&&t.animationValues.opacityExit!==void 0}const iA={duration:.45,ease:[.4,0,.1,1]},a6=t=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(t),s6=a6("applewebkit/")&&!a6("chrome/")?Math.round:Rt;function u6(t){t.min=s6(t.min),t.max=s6(t.max)}function oA(t){u6(t.x),u6(t.y)}function qg(t,e,n){return t==="position"||t==="preserve-aspect"&&!dp(e6(e),e6(n),.2)}const lA=Gg({attachResizeListener:(t,e)=>b2(t,"resize",e),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),Al={current:void 0},Yg=Gg({measureScroll:t=>({x:t.scrollLeft,y:t.scrollTop}),defaultParent:()=>{if(!Al.current){const t=new lA({});t.mount(window),t.setOptions({layoutScroll:!0}),Al.current=t}return Al.current},resetTransform:(t,e)=>{t.style.transform=e!==void 0?e:"none"},checkIsScrollRoot:t=>window.getComputedStyle(t).position==="fixed"}),Xg={pan:{Feature:PM},drag:{Feature:_M,ProjectionNode:Yg,MeasureLayout:Zg}},D5={current:null},Av={current:!1};function Qg(){if(Av.current=!0,!!X5)if(window.matchMedia){const t=window.matchMedia("(prefers-reduced-motion)"),e=()=>D5.current=t.matches;t.addListener(e),e()}else D5.current=!1}function aA(t,e,n){for(const i in e){const a=e[i],c=n[i];if(G0(a))t.addValue(i,a);else if(G0(c))t.addValue(i,Kr(a,{owner:t}));else if(c!==a)if(t.hasValue(i)){const d=t.getValue(i);d.liveStyle===!0?d.jump(a):d.hasAnimated||d.set(a)}else{const d=t.getStaticValue(i);t.addValue(i,Kr(d!==void 0?d:a,{owner:t}))}}for(const i in n)e[i]===void 0&&t.removeValue(i);return e}const Ds=new WeakMap,sA=[...J8,zt,yi],uA=t=>sA.find(Q8(t)),c6=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"],cA=qp.length;class Lv{scrapeMotionValuesFromProps(e,n,i){return{}}constructor({parent:e,props:n,presenceContext:i,reducedMotionConfig:a,blockInitialAnimation:c,visualState:d},f={}){this.applyWillChange=!1,this.resolveKeyframes=(S,C,P,T)=>new this.KeyframeResolver(S,C,P,T,this),this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=cv,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.scheduleRender=()=>Je.render(this.render,!1,!0);const{latestValues:v,renderState:m}=d;this.latestValues=v,this.baseTarget={...v},this.initialValues=n.initial?{...v}:{},this.renderState=m,this.parent=e,this.props=n,this.presenceContext=i,this.depth=e?e.depth+1:0,this.reducedMotionConfig=a,this.options=f,this.blockInitialAnimation=!!c,this.isControllingVariants=ef(n),this.isVariantNode=$8(n),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=!!(e&&e.current);const{willChange:g,...b}=this.scrapeMotionValuesFromProps(n,{},this);for(const S in b){const C=b[S];v[S]!==void 0&&G0(C)&&C.set(v[S],!1)}}mount(e){this.current=e,Ds.set(e,this),this.projection&&!this.projection.instance&&this.projection.mount(e),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=this.parent.addVariantChild(this)),this.values.forEach((n,i)=>this.bindToMotionValue(i,n)),Av.current||Qg(),this.shouldReduceMotion=this.reducedMotionConfig==="never"?!1:this.reducedMotionConfig==="always"?!0:D5.current,this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){Ds.delete(this.current),this.projection&&this.projection.unmount(),Dn(this.notifyUpdate),Dn(this.render),this.valueSubscriptions.forEach(e=>e()),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const e in this.events)this.events[e].clear();for(const e in this.features){const n=this.features[e];n&&(n.unmount(),n.isMounted=!1)}this.current=null}bindToMotionValue(e,n){const i=xi.has(e),a=n.on("change",d=>{this.latestValues[e]=d,this.props.onUpdate&&Je.preRender(this.notifyUpdate),i&&this.projection&&(this.projection.isTransformDirty=!0)}),c=n.on("renderRequest",this.scheduleRender);this.valueSubscriptions.set(e,()=>{a(),c(),n.owner&&n.stop()})}sortNodePosition(e){return!this.current||!this.sortInstanceNodePosition||this.type!==e.type?0:this.sortInstanceNodePosition(this.current,e.current)}updateFeatures(){let e="animation";for(e in Ms){const n=Ms[e];if(!n)continue;const{isEnabled:i,Feature:a}=n;if(!this.features[e]&&a&&i(this.props)&&(this.features[e]=new a(this)),this.features[e]){const c=this.features[e];c.isMounted?c.update():(c.mount(),c.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):J0()}getStaticValue(e){return this.latestValues[e]}setStaticValue(e,n){this.latestValues[e]=n}update(e,n){(e.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=e,this.prevPresenceContext=this.presenceContext,this.presenceContext=n;for(let i=0;in.variantChildren.delete(e)}addValue(e,n){const i=this.values.get(e);n!==i&&(i&&this.removeValue(e),this.bindToMotionValue(e,n),this.values.set(e,n),this.latestValues[e]=n.get())}removeValue(e){this.values.delete(e);const n=this.valueSubscriptions.get(e);n&&(n(),this.valueSubscriptions.delete(e)),delete this.latestValues[e],this.removeValueFromRenderState(e,this.renderState)}hasValue(e){return this.values.has(e)}getValue(e,n){if(this.props.values&&this.props.values[e])return this.props.values[e];let i=this.values.get(e);return i===void 0&&n!==void 0&&(i=Kr(n===null?void 0:n,{owner:this}),this.addValue(e,i)),i}readValue(e,n){var i;let a=this.latestValues[e]!==void 0||!this.current?this.latestValues[e]:(i=this.getBaseTargetFromProps(this.props,e))!==null&&i!==void 0?i:this.readValueFromInstance(this.current,e,this.options);return a!=null&&(typeof a=="string"&&(Y8(a)||q8(a))?a=parseFloat(a):!uA(a)&&yi.test(n)&&(a=ag(e,n)),this.setBaseTarget(e,G0(a)?a.get():a)),G0(a)?a.get():a}setBaseTarget(e,n){this.baseTarget[e]=n}getBaseTarget(e){var n;const{initial:i}=this.props;let a;if(typeof i=="string"||typeof i=="object"){const d=lv(this.props,i,(n=this.presenceContext)===null||n===void 0?void 0:n.custom);d&&(a=d[e])}if(i&&a!==void 0)return a;const c=this.getBaseTargetFromProps(this.props,e);return c!==void 0&&!G0(c)?c:this.initialValues[e]!==void 0&&a===void 0?void 0:this.baseTarget[e]}on(e,n){return this.events[e]||(this.events[e]=new _v),this.events[e].add(n)}notify(e,...n){this.events[e]&&this.events[e].notify(...n)}}class Jg extends Lv{constructor(){super(...arguments),this.KeyframeResolver=sg}sortInstanceNodePosition(e,n){return e.compareDocumentPosition(n)&2?1:-1}getBaseTargetFromProps(e,n){return e.style?e.style[n]:void 0}removeValueFromRenderState(e,{vars:n,style:i}){delete n[e],delete i[e]}}function dA(t){return window.getComputedStyle(t)}class ey extends Jg{constructor(){super(...arguments),this.type="html",this.applyWillChange=!0}readValueFromInstance(e,n){if(xi.has(n)){const i=fv(n);return i&&i.default||0}else{const i=dA(e),a=(T8(n)?i.getPropertyValue(n):i[n])||0;return typeof a=="string"?a.trim():a}}measureInstanceViewportBox(e,{transformPagePoint:n}){return Vg(e,n)}build(e,n,i){tv(e,n,i.transformTemplate)}scrapeMotionValuesFromProps(e,n,i){return ov(e,n,i)}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:e}=this.props;G0(e)&&(this.childSubscription=e.on("change",n=>{this.current&&(this.current.textContent=`${n}`)}))}renderInstance(e,n,i,a){V8(e,n,i,a)}}class ty extends Jg{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1}getBaseTargetFromProps(e,n){return e[n]}readValueFromInstance(e,n){if(xi.has(n)){const i=fv(n);return i&&i.default||0}return n=I8.has(n)?n:Q5(n),e.getAttribute(n)}measureInstanceViewportBox(){return J0()}scrapeMotionValuesFromProps(e,n,i){return Z8(e,n,i)}build(e,n,i){rv(e,n,this.isSVGTag,i.transformTemplate)}renderInstance(e,n,i,a){F8(e,n,i,a)}mount(e){this.isSVGTag=iv(e.tagName),super.mount(e)}}const Dv=(t,e)=>Qp(t)?new ty(e):new ey(e,{allowProjection:t!==x.Fragment}),ny={layout:{ProjectionNode:Yg,MeasureLayout:Zg}},ry={...Tv,...U8,...Xg,...ny},Rv=C8((t,e)=>av(t,e,ry,Dv));function fA(t){return Xp(av(t,{forwardMotionProps:!1},ry,Dv))}const iy=C8(av);function oy(){const t=x.useRef(!1);return xo(()=>(t.current=!0,()=>{t.current=!1}),[]),t}function vf(){const t=oy(),[e,n]=x.useState(0),i=x.useCallback(()=>{t.current&&n(e+1)},[e]);return[x.useCallback(()=>Je.postRender(i),[i]),e]}class pA extends x.Component{getSnapshotBeforeUpdate(e){const n=this.props.childRef.current;if(n&&e.isPresent&&!this.props.isPresent){const i=this.props.sizeRef.current;i.height=n.offsetHeight||0,i.width=n.offsetWidth||0,i.top=n.offsetTop,i.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function vA({children:t,isPresent:e}){const n=x.useId(),i=x.useRef(null),a=x.useRef({width:0,height:0,top:0,left:0}),{nonce:c}=x.useContext(T2);return x.useInsertionEffect(()=>{const{width:d,height:f,top:v,left:m}=a.current;if(e||!i.current||!d||!f)return;i.current.dataset.motionPopId=n;const g=document.createElement("style");return c&&(g.nonce=c),document.head.appendChild(g),g.sheet&&g.sheet.insertRule(` [data-motion-pop-id="${n}"] { position: absolute !important; width: ${d}px !important; @@ -54,7 +54,7 @@ top: ${v}px !important; left: ${m}px !important; } - `),()=>{document.head.removeChild(g)}},[e]),k.jsx(pA,{isPresent:e,childRef:i,sizeRef:a,children:x.cloneElement(t,{ref:i})})}const t3=({children:t,initial:e,isPresent:n,onExitComplete:i,custom:a,presenceAffectsLayout:c,mode:d})=>{const f=tn(hA),v=x.useId(),m=x.useMemo(()=>({id:v,initial:e,isPresent:n,custom:a,onExitComplete:g=>{f.set(g,!0);for(const b of f.values())if(!b)return;i&&i()},register:g=>(f.set(g,!1),()=>f.delete(g))}),c?[Math.random()]:[n]);return x.useMemo(()=>{f.forEach((g,b)=>f.set(b,!1))},[n]),x.useEffect(()=>{!n&&!f.size&&i&&i()},[n]),d==="popLayout"&&(t=k.jsx(vA,{isPresent:n,children:t})),k.jsx(Zs.Provider,{value:m,children:t})};function hA(){return new Map}function Bv(t){return x.useEffect(()=>()=>t(),[])}const Pl=t=>t.key||"";function mA(t,e){t.forEach(n=>{const i=Pl(n);e.set(i,n)})}function gA(t){const e=[];return x.Children.forEach(t,n=>{x.isValidElement(n)&&e.push(n)}),e}const yA=({children:t,custom:e,initial:n=!0,onExitComplete:i,exitBeforeEnter:a,presenceAffectsLayout:c=!0,mode:d="sync"})=>{const f=x.useContext(As).forceRender||vf()[0],v=oy(),m=gA(t);let g=m;const b=x.useRef(new Map).current,S=x.useRef(g),C=x.useRef(new Map).current,P=x.useRef(!0);if(xo(()=>{P.current=!1,mA(m,C),S.current=g}),Bv(()=>{P.current=!0,C.clear(),b.clear()}),P.current)return k.jsx(k.Fragment,{children:g.map(R=>k.jsx(t3,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:c,mode:d,children:R},Pl(R)))});g=[...g];const T=S.current.map(Pl),A=m.map(Pl),V=T.length;for(let R=0;R{if(A.indexOf(F)!==-1)return;const N=C.get(F);if(!N)return;const z=T.indexOf(F);let U=R;if(!U){const le=()=>{b.delete(F);const D=Array.from(C.keys()).filter(ie=>!A.includes(ie));if(D.forEach(ie=>C.delete(ie)),S.current=m.filter(ie=>{const j=Pl(ie);return j===F||D.includes(j)}),!b.size){if(v.current===!1)return;f(),i&&i()}};U=k.jsx(t3,{isPresent:!1,onExitComplete:le,custom:e,presenceAffectsLayout:c,mode:d,children:N},Pl(N)),b.set(F,U)}g.splice(z,0,U)}),g=g.map(R=>{const F=R.key;return b.has(F)?R:k.jsx(t3,{isPresent:!0,presenceAffectsLayout:c,mode:d,children:R},Pl(R))}),k.jsx(k.Fragment,{children:b.size?g:g.map(R=>x.cloneElement(R))})};function bA({children:t,isValidProp:e,...n}){e&&D8(e),n={...x.useContext(T2),...n},n.isStatic=tn(()=>n.isStatic);const i=x.useMemo(()=>n,[JSON.stringify(n.transition),n.transformPagePoint,n.reducedMotion]);return k.jsx(T2.Provider,{value:i,children:t})}function ly({children:t,features:e,strict:n=!1}){const[,i]=x.useState(!n3(e)),a=x.useRef(void 0);if(!n3(e)){const{renderer:c,...d}=e;a.current=c,q3(d)}return x.useEffect(()=>{n3(e)&&e().then(({renderer:c,...d})=>{q3(d),a.current=c,i(!0)})},[]),k.jsx(jp.Provider,{value:{renderer:a.current,strict:n},children:t})}function n3(t){return typeof t=="function"}const ay=x.createContext(null),xA=t=>!t.isLayoutDirty&&t.willUpdate(!1);function d6(){const t=new Set,e=new WeakMap,n=()=>t.forEach(xA);return{add:i=>{t.add(i),e.set(i,i.addEventListener("willUpdate",n))},remove:i=>{t.delete(i);const a=e.get(i);a&&(a(),e.delete(i)),n()},dirty:n}}const sy=t=>t===!0,wA=t=>sy(t===!0)||t==="id",uy=({children:t,id:e,inherit:n=!0})=>{const i=x.useContext(As),a=x.useContext(ay),[c,d]=vf(),f=x.useRef(null),v=i.id||a;f.current===null&&(wA(n)&&v&&(e=e?v+"-"+e:v),f.current={id:e,group:sy(n)&&i.group||d6()});const m=x.useMemo(()=>({...f.current,forceRender:c}),[d]);return k.jsx(As.Provider,{value:m,children:t})},cy=x.createContext(null);function $A(t,e,n,i){if(!i)return t;const a=t.findIndex(g=>g.value===e);if(a===-1)return t;const c=i>0?1:-1,d=t[a+c];if(!d)return t;const f=t[a],v=d.layout,m=j0(v.min,v.max,.5);return c===1&&f.layout.max+n>m||c===-1&&f.layout.min+nRv(e)),v=[],m=x.useRef(!1),g={axis:n,registerItem:(b,S)=>{const C=v.findIndex(P=>b===P.value);C!==-1?v[C].layout=S[n]:v.push({value:b,layout:S[n]}),v.sort(PA)},updateOrder:(b,S,C)=>{if(m.current)return;const P=$A(v,b,S,C);v!==P&&(m.current=!0,i(P.map(_A).filter(T=>a.indexOf(T)!==-1)))}};return x.useEffect(()=>{m.current=!1}),k.jsx(f,{...c,ref:d,ignoreStrict:!0,children:k.jsx(cy.Provider,{value:g,children:t})})}const CA=x.forwardRef(SA);function _A(t){return t.value}function PA(t,e){return t.layout.min-e.layout.min}function go(t){const e=tn(()=>Kr(t)),{isStatic:n}=x.useContext(T2);if(n){const[,i]=x.useState(t);x.useEffect(()=>e.on("change",i),[])}return e}const EA=t=>t&&typeof t=="object"&&t.mix,kA=t=>EA(t)?t.mix:void 0;function dy(...t){const e=!Array.isArray(t[0]),n=e?0:-1,i=t[0+n],a=t[1+n],c=t[2+n],d=t[3+n],f=df(a,c,{mixer:kA(c[0]),...d});return e?f(i):f}function Vv(t,e){const n=go(e()),i=()=>n.set(e());return i(),xo(()=>{const a=()=>Je.preRender(i,!1,!0),c=t.map(d=>d.on("change",a));return()=>{c.forEach(d=>d()),Dn(i)}}),n}function TA(t){Vc.current=[],t();const e=Vv(Vc.current,t);return Vc.current=void 0,e}function R5(t,e,n,i){if(typeof t=="function")return TA(t);const a=typeof e=="function"?e:dy(e,n,i);return Array.isArray(t)?f6(t,a):f6([t],([c])=>a(c))}function f6(t,e){const n=tn(()=>[]);return Vv(t,()=>{n.length=0;const i=t.length;for(let a=0;aRv(i)),m=x.useContext(cy),g={x:p6(e.x),y:p6(e.y)},b=R5([g.x,g.y],([T,A])=>T||A?1:"unset"),{axis:S,registerItem:C,updateOrder:P}=m;return k.jsx(v,{drag:S,...d,dragSnapToOrigin:!0,style:{...e,x:g.x,y:g.y,zIndex:b},layout:c,onDrag:(T,A)=>{const{velocity:V}=A;V[S]&&P(n,g[S].get(),V[S]),a&&a(T,A)},onLayoutMeasure:T=>C(n,T),ref:f,ignoreStrict:!0,children:t})}const AA=x.forwardRef(MA),LA={Group:CA,Item:AA},fy={renderer:Dv,...Tv,...U8},DA={...fy,...Xg,...ny};function RA(t,...e){const n=t.length;function i(){let a="";for(let c=0;c{}),f=()=>{const m=i.current;m&&m.time===0&&m.sample(mt.delta),v(),i.current=$g({keyframes:[a.get(),c.current],velocity:a.getVelocity(),type:"spring",restDelta:.001,restSpeed:.01,...e,onUpdate:d.current})},v=()=>{i.current&&i.current.stop()};return x.useInsertionEffect(()=>a.attach((m,g)=>n?g(m):(c.current=m,d.current=g,Je.update(f),a.get()),v),[JSON.stringify(e)]),xo(()=>{if(G0(t))return t.on("change",m=>a.set(parseFloat(m)))},[a]),a}function py(t,e,n){x.useInsertionEffect(()=>t.on(e,n),[t,e,n])}function VA(t){const e=go(t.getVelocity()),n=()=>{const i=t.getVelocity();e.set(i),i&&Je.update(n)};return py(t,"change",()=>{Je.update(n,!1,!0)}),e}function hf(t,e,n){var i;if(typeof t=="string"){let a=document;e&&(tf(!!e.current),a=e.current),n?((i=n[t])!==null&&i!==void 0||(n[t]=a.querySelectorAll(t)),t=n[t]):t=a.querySelectorAll(t)}else t instanceof Element&&(t=[t]);return Array.from(t||[])}const p5=new WeakMap;let lo;function IA(t,e){if(e){const{inlineSize:n,blockSize:i}=e[0];return{width:n,height:i}}else return t instanceof SVGElement&&"getBBox"in t?t.getBBox():{width:t.offsetWidth,height:t.offsetHeight}}function FA({target:t,contentRect:e,borderBoxSize:n}){var i;(i=p5.get(t))===null||i===void 0||i.forEach(a=>{a({target:t,contentSize:e,get size(){return IA(t,n)}})})}function ZA(t){t.forEach(FA)}function OA(){typeof ResizeObserver>"u"||(lo=new ResizeObserver(ZA))}function NA(t,e){lo||OA();const n=hf(t);return n.forEach(i=>{let a=p5.get(i);a||(a=new Set,p5.set(i,a)),a.add(e),lo==null||lo.observe(i)}),()=>{n.forEach(i=>{const a=p5.get(i);a==null||a.delete(e),a!=null&&a.size||lo==null||lo.unobserve(i)})}}const v5=new Set;let Zc;function HA(){Zc=()=>{const t={width:window.innerWidth,height:window.innerHeight},e={target:window,size:t,contentSize:t};v5.forEach(n=>n(e))},window.addEventListener("resize",Zc)}function zA(t){return v5.add(t),Zc||HA(),()=>{v5.delete(t),!v5.size&&Zc&&(Zc=void 0)}}function jA(t,e){return typeof t=="function"?zA(t):NA(t,e)}const KA=50,v6=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0}),WA=()=>({time:0,x:v6(),y:v6()}),UA={x:{length:"Width",position:"Left"},y:{length:"Height",position:"Top"}};function h6(t,e,n,i){const a=n[e],{length:c,position:d}=UA[e],f=a.current,v=n.time;a.current=t[`scroll${d}`],a.scrollLength=t[`scroll${c}`]-t[`client${c}`],a.offset.length=0,a.offset[0]=0,a.offset[1]=a.scrollLength,a.progress=mo(0,a.scrollLength,a.current);const m=i-v;a.velocity=m>KA?0:pv(a.current-f,m)}function GA(t,e,n){h6(t,"x",e,n),h6(t,"y",e,n),e.time=n}function qA(t,e){const n={x:0,y:0};let i=t;for(;i&&i!==e;)if(i instanceof HTMLElement)n.x+=i.offsetLeft,n.y+=i.offsetTop,i=i.offsetParent;else if(i.tagName==="svg"){const a=i.getBoundingClientRect();i=i.parentElement;const c=i.getBoundingClientRect();n.x+=a.left-c.left,n.y+=a.top-c.top}else if(i instanceof SVGGraphicsElement){const{x:a,y:c}=i.getBBox();n.x+=a,n.y+=c;let d=null,f=i.parentNode;for(;!d;)f.tagName==="svg"&&(d=f),f=i.parentNode;i=d}else break;return n}const YA={All:[[0,0],[1,1]]},hp={start:0,center:.5,end:1};function m6(t,e,n=0){let i=0;if(t in hp&&(t=hp[t]),typeof t=="string"){const a=parseFloat(t);t.endsWith("px")?i=a:t.endsWith("%")?t=a/100:t.endsWith("vw")?i=a/100*document.documentElement.clientWidth:t.endsWith("vh")?i=a/100*document.documentElement.clientHeight:t=a}return typeof t=="number"&&(i=e*t),n+i}const XA=[0,0];function QA(t,e,n,i){let a=Array.isArray(t)?t:XA,c=0,d=0;return typeof t=="number"?a=[t,t]:typeof t=="string"&&(t=t.trim(),t.includes(" ")?a=t.split(" "):a=[t,hp[t]?t:"0"]),c=m6(a[0],n,i),d=m6(a[1],e),c-d}const JA={x:0,y:0};function eL(t){return"getBBox"in t&&t.tagName!=="svg"?t.getBBox():{width:t.clientWidth,height:t.clientHeight}}function tL(t,e,n){const{offset:i=YA.All}=n,{target:a=t,axis:c="y"}=n,d=c==="y"?"height":"width",f=a!==t?qA(a,t):JA,v=a===t?{width:t.scrollWidth,height:t.scrollHeight}:eL(a),m={width:t.clientWidth,height:t.clientHeight};e[c].offset.length=0;let g=!e[c].interpolate;const b=i.length;for(let S=0;SnL(t,i.target,n),update:a=>{GA(t,n,a),(i.offset||i.target)&&tL(t,n,i)},notify:()=>e(n)}}const $c=new WeakMap,g6=new WeakMap,r3=new WeakMap,y6=t=>t===document.documentElement?window:t;function Iv(t,{container:e=document.documentElement,...n}={}){let i=r3.get(e);i||(i=new Set,r3.set(e,i));const a=WA(),c=rL(e,t,a,n);if(i.add(c),!$c.has(e)){const f=()=>{for(const S of i)S.measure()},v=()=>{for(const S of i)S.update(mt.timestamp)},m=()=>{for(const S of i)S.notify()},g=()=>{Je.read(f,!1,!0),Je.read(v,!1,!0),Je.update(m,!1,!0)};$c.set(e,g);const b=y6(e);window.addEventListener("resize",g,{passive:!0}),e!==document.documentElement&&g6.set(e,jA(e,g)),b.addEventListener("scroll",g,{passive:!0})}const d=$c.get(e);return Je.read(d,!1,!0),()=>{var f;Dn(d);const v=r3.get(e);if(!v||(v.delete(c),v.size))return;const m=$c.get(e);$c.delete(e),m&&(y6(e).removeEventListener("scroll",m),(f=g6.get(e))===null||f===void 0||f(),window.removeEventListener("resize",m))}}function b6(t,e){S8(!!(!e||e.current))}const iL=()=>({scrollX:Kr(0),scrollY:Kr(0),scrollXProgress:Kr(0),scrollYProgress:Kr(0)});function Fv({container:t,target:e,layoutEffect:n=!0,...i}={}){const a=tn(iL);return(n?xo:x.useEffect)(()=>(b6("target",e),b6("container",t),Iv(({x:d,y:f})=>{a.scrollX.set(d.current),a.scrollXProgress.set(d.progress),a.scrollY.set(f.current),a.scrollYProgress.set(f.progress)},{...i,container:(t==null?void 0:t.current)||void 0,target:(e==null?void 0:e.current)||void 0})),[t,e,JSON.stringify(i.offset)]),a}function oL(t){return Fv({container:t})}function lL(){return Fv()}function vy(t){const e=x.useRef(0),{isStatic:n}=x.useContext(T2);x.useEffect(()=>{if(n)return;const i=({timestamp:a,delta:c})=>{e.current||(e.current=a),t(a-e.current,c)};return Je.update(i,!0),()=>Dn(i)},[t])}function aL(){const t=go(0);return vy(e=>t.set(e)),t}function hy(){!Av.current&&Qg();const[t]=x.useState(D5.current);return t}function sL(){const t=hy(),{reducedMotion:e}=x.useContext(T2);return e==="never"?!1:e==="always"?!0:t}function uL(t){t.values.forEach(e=>e.stop())}function mp(t,e){[...e].reverse().forEach(i=>{const a=t.getVariant(i);a&&Ev(t,a),t.variantChildren&&t.variantChildren.forEach(c=>{mp(c,e)})})}function cL(t,e){if(Array.isArray(e))return mp(t,e);if(typeof e=="string")return mp(t,[e]);Ev(t,e)}function my(){const t=new Set,e={subscribe(n){return t.add(n),()=>void t.delete(n)},start(n,i){const a=[];return t.forEach(c=>{a.push(pf(c,n,{transitionOverride:i}))}),Promise.all(a)},set(n){return t.forEach(i=>{cL(i,n)})},stop(){t.forEach(n=>{uL(n)})},mount(){return()=>{e.stop()}}};return e}function dL(t){return typeof t=="object"&&!Array.isArray(t)}function fL(t){const e={presenceContext:null,props:{},visualState:{renderState:{transform:{},transformOrigin:{},style:{},vars:{},attrs:{}},latestValues:{}}},n=Wg(t)?new ty(e):new ey(e);n.mount(t),Ds.set(t,n)}function pL(t,e=100){const n=sf({keyframes:[0,e],...t}),i=Math.min(wg(n),op);return{type:"keyframes",ease:a=>n.next(i*a).value/e,duration:P2(i)}}function x6(t,e,n,i){var a;return typeof e=="number"?e:e.startsWith("-")||e.startsWith("+")?Math.max(0,t+parseFloat(e)):e==="<"?n:(a=i.get(e))!==null&&a!==void 0?a:t}const Zv=(t,e,n)=>{const i=e-t;return((n-t)%i+i)%i+t};function vL(t,e){return hg(t)?t[Zv(0,t.length,e)]:t}function hL(t,e,n){for(let i=0;ie&&a.at{const D=xL(F),{delay:ie=0,times:j=wv(D),type:X="keyframes",...xe}=N;let{ease:G=e.ease||"easeOut",duration:Q}=N;const he=typeof ie=="function"?ie(U,le):ie,_e=D.length;if(_e<=2&&X==="spring"){let ae=100;if(_e===2&&SL(D)){const oe=D[1]-D[0];ae=Math.abs(oe)}const H={...xe};Q!==void 0&&(H.duration=hi(Q));const ce=pL(H,ae);G=ce.ease,Q=ce.duration}Q??(Q=a);const se=g+he,fe=se+Q;j.length===1&&j[0]===0&&(j[1]=1);const Pe=j.length-D.length;Pe>0&&xg(j,Pe),D.length===1&&D.unshift(null),mL(z,D,G,j,se,fe),V=Math.max(he+Q,V),b=Math.max(fe,b)};if(G0(P)){const F=w6(P,d);R(T,A,$6("default",F))}else{const F=hf(P,i,f),N=F.length;for(let z=0;z{for(const P in S){const T=S[P];T.sort(gL);const A=[],V=[],R=[];for(let N=0;Ntypeof t=="number",SL=t=>t.every($L);function gy(t,e,n,i){const a=hf(t,i),c=a.length,d=[];for(let f=0;fArray.isArray(t)&&Array.isArray(t[0]);function _L(t,e,n){const i=[];return bL(t,e,n).forEach(({keyframes:c,transition:d},f)=>{let v;G0(f)?v=Mv(f,c.default,d.default):v=gy(f,c,d),i.push(v)}),new Sv(i)}const Ov=t=>{function e(n,i,a){let c;return CL(n)?c=_L(n,i,t):dL(i)?c=gy(n,i,a,t):c=Mv(n,i,a),t&&t.animations.push(c),c}return e},PL=Ov();function EL(){const t=tn(()=>({current:null,animations:[]})),e=tn(()=>Ov(t));return Bv(()=>{t.animations.forEach(n=>n.stop())}),[t,e]}function yy(){const t=tn(my);return xo(t.mount,[]),t}const kL=yy;function TL(...t){const e=x.useRef(0),[n,i]=x.useState(t[e.current]),a=x.useCallback(c=>{e.current=typeof c!="number"?Zv(0,t.length,e.current+1):c,i(t[e.current])},[t.length,...t]);return[n,a]}const ML={some:0,all:1};function by(t,e,{root:n,margin:i,amount:a="some"}={}){const c=hf(t),d=new WeakMap,f=m=>{m.forEach(g=>{const b=d.get(g.target);if(g.isIntersecting!==!!b)if(g.isIntersecting){const S=e(g);typeof S=="function"?d.set(g.target,S):v.unobserve(g.target)}else b&&(b(g),d.delete(g.target))})},v=new IntersectionObserver(f,{root:n,rootMargin:i,threshold:typeof a=="number"?a:ML[a]});return c.forEach(m=>v.observe(m)),()=>v.disconnect()}function AL(t,{root:e,margin:n,amount:i,once:a=!1}={}){const[c,d]=x.useState(!1);return x.useEffect(()=>{if(!t.current||a&&c)return;const f=()=>(d(!0),a?void 0:()=>d(!1)),v={root:e&&e.current||void 0,margin:n,amount:i};return by(t.current,f,v)},[e,t,n,a,i]),c}class xy{constructor(){this.componentControls=new Set}subscribe(e){return this.componentControls.add(e),()=>this.componentControls.delete(e)}start(e,n){this.componentControls.forEach(i=>{i.start(e.nativeEvent||e,n)})}}const LL=()=>new xy;function DL(){return tn(LL)}function RL(t,e,n,i){x.useEffect(()=>{const a=t.current;if(n&&a)return x2(a,e,n,i)},[t,e,n,i])}function wy(t){return t!==null&&typeof t=="object"&&Yp in t}function BL(t){if(wy(t))return t[Yp]}function $y(){return VL}function VL(t){Al.current&&(Al.current.isUpdating=!1,Al.current.blockUpdate(),t&&t())}function IL(){const[t,e]=vf(),n=$y(),i=x.useRef();return x.useEffect(()=>{Je.postRender(()=>Je.postRender(()=>{e===i.current&&(Yc.current=!1)}))},[e]),a=>{n(()=>{Yc.current=!0,t(),a(),i.current=e+1})}}function FL(){Yc.current=!1}function ZL(){return x.useCallback(()=>{const e=Al.current;e&&e.resetTree()},[])}const Sy=(t,e)=>`${t}: ${e}`,ws=new Map;let i3;function OL(t,e,n,i){const a=xi.has(e)?"transform":e,c=Sy(t,a),d=ws.get(c);if(!d)return null;const{animation:f,startTime:v}=d,m=()=>{if(ws.delete(c),i)i.render(()=>i.render(()=>{try{f.cancel()}catch{}}));else try{f.cancel()}catch{}};return v===null||window.HandoffComplete?(m(),null):(i3===void 0&&(i3=performance.now()),i3-v||0)}let r5,cs;function NL(t,e,n,i,a){if(window.HandoffComplete){window.HandoffAppearAnimations=void 0;return}const c=t.dataset[b8];if(!c)return;window.HandoffAppearAnimations=OL;const d=Sy(c,e);cs||(cs=lp(t,e,[n[0],n[0]],{duration:1e4,ease:"linear"}),ws.set(d,{animation:cs,startTime:null}),window.HandoffCancelAllAnimations||(window.HandoffCancelAllAnimations=()=>{ws.forEach(({animation:v})=>{v.cancel()}),ws.clear(),window.HandoffCancelAllAnimations=void 0}));const f=()=>{cs.cancel();const v=lp(t,e,n,i);r5===void 0&&(r5=performance.now()),v.startTime=r5,ws.set(d,{animation:v,startTime:r5}),a&&a(v)};cs.ready?cs.ready.then(f).catch(Rt):f()}const gp=()=>({});class HL extends Lv{build(){}measureInstanceViewportBox(){return J0()}resetTransform(){}restoreTransform(){}removeValueFromRenderState(){}renderInstance(){}scrapeMotionValuesFromProps(){return gp()}getBaseTargetFromProps(){}readValueFromInstance(e,n,i){return i.initialState[n]||0}sortInstanceNodePosition(){return 0}}const zL=rf({scrapeMotionValuesFromProps:gp,createRenderState:gp});function jL(t){const[e,n]=x.useState(t),i=zL({},!1),a=tn(()=>new HL({props:{},visualState:i,presenceContext:null},{initialState:t}));x.useEffect(()=>(a.mount({}),()=>a.unmount()),[a]),x.useEffect(()=>{a.update({onUpdate:d=>{n({...d})}},null)},[n,a]);const c=tn(()=>d=>pf(a,d));return[e,c]}const KL=1e5,S6=t=>t>.001?1/t:KL;function WL(t){let e=go(1),n=go(1);const{visualElement:i}=x.useContext(Fs);t?(e=t.scaleX||e,n=t.scaleY||n):i&&(e=i.getValue("scaleX",1),n=i.getValue("scaleY",1));const a=R5(e,S6),c=R5(n,S6);return{scaleX:a,scaleY:c}}let UL=0;const GL=({children:t})=>(x.useEffect(()=>{},[]),k.jsx(uy,{id:tn(()=>`asl-${UL++}`),children:t}));function qL({source:t,axis:e="y"}){const n={value:0},i=Iv(a=>{n.value=a[e].progress*100},{container:t,axis:e});return{currentTime:n,cancel:i}}const o3=new Map;function YL({source:t=document.documentElement,axis:e="y"}={}){o3.has(t)||o3.set(t,{});const n=o3.get(t);return n[e]||(n[e]=Eg()?new ScrollTimeline({source:t,axis:e}):qL({source:t,axis:e})),n[e]}function XL(t,e){const n=YL(e);return typeof t=="function"?Pg(t,n):t.attachTimeline(n)}function QL(t,e){if(t==="first")return 0;{const n=e-1;return t==="last"?n:n/2}}function JL(t=.1,{startDelay:e=0,from:n=0,ease:i}={}){return(a,c)=>{const d=typeof n=="number"?n:QL(n,c),f=Math.abs(d-a);let v=t*f;if(i){const m=c*t;v=rp(i)(v/m)*m}return e+v}}const eD=Je,tD=kc.reduce((t,e)=>(t[e]=n=>Dn(n),t),{}),nD=Object.freeze(Object.defineProperty({__proto__:null,AcceleratedAnimation:ap,AnimatePresence:yA,AnimateSharedLayout:GL,DeprecatedLayoutGroupContext:ay,DragControls:xy,FlatTree:jg,LayoutGroup:uy,LayoutGroupContext:As,LazyMotion:ly,MotionConfig:bA,MotionConfigContext:T2,MotionContext:Fs,MotionGlobalConfig:J5,MotionValue:Pv,PresenceContext:Zs,Reorder:LA,SwitchLayoutGroupContext:Up,VisualElement:Lv,addPointerEvent:C2,addPointerInfo:z8,addScaleCorrector:_8,animate:PL,animateValue:$g,animateVisualElement:pf,animationControls:my,animations:Tv,anticipate:yg,backIn:cf,backInOut:gg,backOut:yv,buildTransform:E8,calcLength:Rn,cancelFrame:Dn,cancelSync:tD,circIn:uf,circInOut:mg,circOut:gv,clamp:gi,color:zt,complex:yi,createBox:J0,createDomMotionComponent:fA,createMotionComponent:Xp,createScopedAnimate:Ov,cubicBezier:Ns,delay:Kg,disableInstantTransitions:FL,distance:cp,distance2D:Mg,domAnimation:fy,domMax:DA,easeIn:pg,easeInOut:vv,easeOut:vg,filterProps:R8,frame:Je,frameData:mt,inView:by,interpolate:df,invariant:tf,isBrowser:X5,isDragActive:sv,isMotionComponent:wy,isMotionValue:G0,isValidMotionProp:qc,m:iy,makeUseVisualState:rf,mirrorEasing:hv,mix:xv,motion:Rv,motionValue:Kr,optimizedAppearDataAttribute:Kp,pipe:_2,progress:mo,px:je,resolveMotionValue:Bc,reverseEasing:mv,scroll:XL,scrollInfo:Iv,spring:sf,stagger:JL,startOptimizedAppearAnimation:NL,steps:c5,sync:eD,transform:dy,unwrapMotionComponent:BL,useAnimate:EL,useAnimation:kL,useAnimationControls:yy,useAnimationFrame:vy,useCycle:TL,useDeprecatedAnimatedState:jL,useDeprecatedInvertedScale:WL,useDomEvent:RL,useDragControls:DL,useElementScroll:oL,useForceUpdate:vf,useInView:AL,useInstantLayoutTransition:$y,useInstantTransition:IL,useIsPresent:EM,useIsomorphicLayoutEffect:xo,useMotionTemplate:RA,useMotionValue:go,useMotionValueEvent:py,usePresence:Fg,useReducedMotion:hy,useReducedMotionConfig:sL,useResetProjection:ZL,useScroll:Fv,useSpring:BA,useTime:aL,useTransform:R5,useUnmountEffect:Bv,useVelocity:VA,useViewportScroll:lL,useWillChange:GT,visualElementStore:Ds,warning:S8,wrap:Zv},Symbol.toStringTag,{value:"Module"})),rD="lKzIqa_Popover",ds={Popover:rD,"Popover-content":"lKzIqa_Popover-content","Popover-content--restrictWidth":"lKzIqa_Popover-content--restrictWidth","Popover-scroller":"lKzIqa_Popover-scroller","Popover-target":"lKzIqa_Popover-target","Popover-target--disabled":"lKzIqa_Popover-target--disabled"},iD=()=>I_(()=>Promise.resolve().then(()=>nD),void 0,import.meta.url).then(t=>t.domAnimation),C6=(t,e)=>t===e||(t==null?void 0:t.contains(e)),oD=({rootElementTag:t="span",placement:e="bottom",restrictHeight:n=!0,restrictWidth:i=!0,isModal:a=!1,isFixed:c=!1,interactionKind:d="click",hoverOpenDelay:f=250,hoverCloseDelay:v=250,disablePlacementFlip:m=!1,allowBoundaryElementOverflow:g=!1,isOpen:b,enableArrow:S,enforceFocus:C,onClick:P,onInteraction:T,onClose:A,disabled:V,children:R,target:F,content:N,targetClassName:z,targetTestId:U,popoverClassName:le,popoverContentClassName:D,rootElementStyle:ie,offset:j,targetElementRef:X,"data-test-id":xe="popover"})=>{var G;const[Q,he]=x.useState(b??void 0),[_e,se]=x.useState(),fe=x.useRef(null),Pe=x.useCallback(De=>{if(De!==null)return se(De)},[]),ae=x.useRef(null),H=x.useRef(),ce=x.useRef(),oe=x.useRef(`popover-${x.useId()}`),q=x.useCallback(async()=>{var De,i0;const Ze=[];if(_e==null)return;g||Ze.push(hP({padding:5})),!m&&!j&&Ze.push(mP({padding:5})),j&&Ze.push(q_(j)),S&&ae.current&&Ze.push(gP({element:ae.current}));const q0=(De=fe.current)==null?void 0:De.closest(".has-overlay"),$0=c||q0?"fixed":"absolute";ce.current={placement:e,middleware:Ze,strategy:$0};const W0=fe.current;if(!W0||!W0.childNodes)return;const jt=W0.childNodes[0],{x:Kt,y:e0,placement:c0,middlewareData:er,strategy:St}=await yP(jt,_e,ce.current);if(_e&&(Object.assign(_e.style,{left:`${Kt}px`,top:`${e0}px`,position:St}),_e.dataset.popoverPlacement=c0),S&&ae.current&&er.arrow){const{x:Ur,y:pn}=er.arrow,Gr={top:"bottom",right:"left",bottom:"top",left:"right"}[c0.split("-")[0]];Gr&&Object.assign((i0=ae.current)==null?void 0:i0.style,{left:Ur!==null?`${Ur}px`:"",top:pn!==null?`${pn}px`:"",right:"",bottom:"",[Gr]:"5px"})}},[g,m,S,c,j,e,_e]);x.useEffect(()=>()=>{H.current&&clearTimeout(H.current)},[]),x.useEffect(()=>{(async()=>{Q&&_e!=null?(window.addEventListener("scroll",q,{passive:!0}),window.addEventListener("resize",q,{passive:!0}),await q()):(window.removeEventListener("scroll",q),window.removeEventListener("resize",q))})()},[Q,N,_e,q]),x.useEffect(()=>{he(b)},[b]);const ue=De=>{const i0=De.target;P==null||P(),!V&&fe.current&&C6(fe.current,i0)&&ze(Q?!1:!De.defaultPrevented)},$e=()=>{V||(ze(!0,f),g0())},Ee=()=>{ze(!1,v),k0()},Se=()=>{V||(ze(!0),g0())},me=()=>{ze(!1),k0()},Be=De=>{var i0;const Ze=De.target;(i0=Ze==null?void 0:Ze.closest)!=null&&i0.call(Ze,".popover-dismiss")&&ze(!1)},ke=De=>{const i0=De.target;(fe.current&&!C6(fe.current,i0)||De.nativeEvent instanceof KeyboardEvent)&&ze(!1)},ze=(De,i0)=>{H.current&&clearTimeout(H.current),typeof i0<"u"&&i0>0?H.current=setTimeout(()=>ze(De),i0):(b==null?he(De):typeof T=="function"&&T(De),De||typeof A=="function"&&A())},Ye=()=>{const[De,i0]=x.Children.toArray(R);return{target:De??F,content:i0??N}},g0=()=>{window.addEventListener("keydown",l0,!0)},k0=()=>{window.removeEventListener("keydown",l0,!0)},l0=De=>{De.key==="Escape"&&(De.stopPropagation(),he(!1),k0())},w0=De=>{const i0=ft(ds.Popover,le);let Ze={};d==="hover"&&(Ze={onMouseEnter:$e,onMouseLeave:Ee,onPointerEnter:$e,onPointerLeave:Ee}),d!=="hover-target-only"&&(Ze.onClick=Be);const q0=k.jsx(ly,{strict:!0,features:iD,children:k.jsxs(iy.div,{transition:{duration:.15},initial:{opacity:0},animate:{opacity:1},className:ft(ds["Popover-content"],i&&ds["Popover-content--restrictWidth"],D),tabIndex:d==="click"?-1:void 0,children:[S&&k.jsx("div",{id:"arrow",ref:ae}),n?k.jsx("div",{className:ds["Popover-scroller"],children:De}):De]})});return k.jsx("div",{id:oe.current,ref:Pe,className:i0,role:"tooltip","data-test-id":xe,"aria-hidden":!Q,...Ze,children:C||d==="click"?k.jsx(BE,{autoFocus:!0,children:q0}):q0})},{target:r0,content:a0}=Ye(),tt=a0==null||typeof a0=="string"&&!a0,y0=x.isValidElement(r0)?!!((G=r0==null?void 0:r0.props)!=null&&G.disabled):!1,d0={ref:fe,className:ft(ds["Popover-target"],z,y0&&ds["Popover-target--disabled"]),style:ie,"data-test-id":U||"popover-target"};return d==="hover"||d==="hover-target-only"||d==="hover-or-focus"?(d0.onMouseEnter=$e,d0.onMouseLeave=Ee,d0.onPointerEnter=$e,d0.onPointerLeave=Ee,d==="hover-or-focus"&&(d0.onFocus=Se,d0.onBlur=me)):d0.onClick=ue,x.createElement(t,d0,x.cloneElement(r0,{ref:X,...Q&&{"aria-describedby":oe.current},"data-state":Q?"open":"closed"}),k.jsx(VE,{isOpen:!!Q&&!tt,canOutsideClickClose:d==="click",isModal:a,enforceFocus:C,onClose:ke,children:k.jsx("div",{children:w0(a0)})}))},lD="gdNzta_Tooltip",_6={Tooltip:lD,"Tooltip-popover-content":"gdNzta_Tooltip-popover-content"},aD=({className:t,children:e,targetClassName:n,hoverCloseDelay:i=0,"data-test-id":a="tooltip",popoverContentClassName:c,...d})=>k.jsx(oD,{enforceFocus:!1,interactionKind:"hover-or-focus",hoverCloseDelay:i,popoverClassName:ft(_6.Tooltip,t),popoverContentClassName:ft(c,_6["Tooltip-popover-content"]),targetClassName:n,"data-test-id":a,...d,children:e}),Cy=x.forwardRef((t,e)=>k.jsx(aD,{...t,targetElementRef:e}));Cy.displayName="Tooltip";const _y=7e3;let l3=null;function sD(t,e="assertive",n=_y){l3||(l3=new uD),l3.announce(t,e,n)}class uD{createLog(e){let n=document.createElement("div");return n.setAttribute("role","log"),n.setAttribute("aria-live",e),n.setAttribute("aria-relevant","additions"),n}destroy(){this.node&&(document.body.removeChild(this.node),this.node=null)}announce(e,n="assertive",i=_y){if(!this.node)return;let a=document.createElement("div");a.textContent=e,n==="assertive"?this.assertiveLog.appendChild(a):this.politeLog.appendChild(a),e!==""&&setTimeout(()=>{a.remove()},i)}clear(e){this.node&&((!e||e==="assertive")&&(this.assertiveLog.innerHTML=""),(!e||e==="polite")&&(this.politeLog.innerHTML=""))}constructor(){this.node=document.createElement("div"),this.node.dataset.liveAnnouncer="true",Object.assign(this.node.style,{border:0,clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"}),this.assertiveLog=this.createLog("assertive"),this.node.appendChild(this.assertiveLog),this.politeLog=this.createLog("polite"),this.node.appendChild(this.politeLog),document.body.prepend(this.node)}}const cD="Qz6VAq_basic",dD="Qz6VAq_CopyCodeButton",fD="Qz6VAq_minimal",a3={basic:cD,CopyCodeButton:dD,"CopyCodeButton--icon":"Qz6VAq_CopyCodeButton--icon",minimal:fD},Py=x.forwardRef(({className:t,children:e,"data-test-id":n="copy-code-button",kind:i,...a},c)=>k.jsxs("button",{ref:c,"data-test-id":n,type:"button",className:ft(a3.CopyCodeButton,t,i&&a3[i]),...a,children:[e,(i==="basic"||i==="minimal")&&k.jsx(K0,{name:"copy-clipboard",className:ft(a3["CopyCodeButton--icon"]),"aria-hidden":"true",size:"small"})]}));Py.displayName="CopyCodeButton";const pD="_2mzveG_CopyToClipboard",h5={"Clipboard-checkmark":"_2mzveG_Clipboard-checkmark","Clipboard-confirmation":"_2mzveG_Clipboard-confirmation","Clipboard-copied":"_2mzveG_Clipboard-copied",CopyToClipboard:pD},vD=()=>k.jsxs("span",{className:h5["Clipboard-confirmation"],children:[k.jsx(K0,{name:"check-circle",className:h5["Clipboard-checkmark"],size:"medium"}),k.jsx("span",{className:h5["Clipboard-copied"],children:"Copied!"})]}),mf=x.forwardRef(({customCopiedText:t,text:e,tooltip:n,kind:i,tooltipOptions:a={placement:"bottom"},className:c,popoverTargetClassName:d,children:f,triggerAriaLabel:v,onCopy:m,asChild:g,"data-test-id":b="copy-to-clipboard",...S},C)=>{const[P,T]=x.useState(!1),[A,V]=x.useState(!1),R=x.useRef(null),F=ft(h5.CopyToClipboard,c),N=x.useCallback(async()=>{await navigator.clipboard.writeText(e);const j=R.current;j&&j.focus(),T(!0),V(!0),sD("Copied!","polite",300),m==null||m()},[m,R,e,T,V]);x.useImperativeHandle(C,()=>({handleCopy:N}),[N]);const z=A?t||k.jsx(vD,{}):n||"Copy to clipboard",U=v||`Copy ${e} to your clipboard.`,le=j=>{T(j),setTimeout(()=>V(X=>j&&X))},D=j=>{["Spacebar"," ","Enter"].includes(j.key)&&(j.preventDefault(),N())},ie=g?n1:Py;return k.jsx("span",{className:F,"data-test-id":b,...S,children:k.jsx(Cy,{...a,isOpen:P,content:z,onInteraction:le,targetClassName:d,children:k.jsx(ie,{onClick:N,onKeyDown:D,ref:R,"aria-label":U,role:"button",kind:i,tabIndex:0,children:f})})})});mf.displayName="CopyToClipboard";const hD=({children:t,delayMs:e=250})=>{const[n,i]=x.useState(!1);return x.useEffect(()=>{let a;return typeof e=="number"&&(e===0?i(!0):a=setTimeout(()=>{i(!0)},e)),()=>{a&&clearTimeout(a)}},[e]),n?t:null},mD="dGwt8W_Progress",i5={Progress:mD,"Progress--indeterminate":"dGwt8W_Progress--indeterminate","Progress-head":"dGwt8W_Progress-head","Progress-track":"dGwt8W_Progress-track"},gD=(t,e,n)=>Math.min(Math.max(t,e),n),yD=({value:t,size:e="small","data-test-id":n="progress",className:i,delayMs:a=0})=>{var c;const d={small:{diameter:16},large:{diameter:24},xLarge:{diameter:32}},f=t==null,v=((c=d[e])==null?void 0:c.diameter)||d.small.diameter,m=v*(f?.1:.5),g=v*.5-m*.5,b=2*Math.PI*g,S=k.jsxs("svg",{className:ft(i5.Progress,f&&i5["Progress--indeterminate"],i),width:v,height:v,viewBox:`0 0 ${v} ${v}`,"data-test-id":n,role:"progressbar","aria-valuemin":0,"aria-valuetext":"loading","aria-valuemax":100,children:[k.jsx("circle",{className:i5["Progress-track"],cx:v/2,cy:v/2,r:g,strokeWidth:m}),k.jsx("circle",{className:i5["Progress-head"],cx:v/2,cy:v/2,r:g,strokeWidth:m,strokeDasharray:b,strokeDashoffset:b*(1-(t==null?.25:gD(t,0,1)))})]});return a?k.jsx(hD,{delayMs:a,children:S}):S},w2={top:"top",bottom:"top",left:"left",right:"left"},B5={top:"bottom",bottom:"top",left:"right",right:"left"},bD={top:"left",left:"top"},yp={top:"height",left:"width"},Ey={width:"totalWidth",height:"totalHeight"},o5={};let An=typeof document<"u"&&window.visualViewport;function P6(t){let e=0,n=0,i=0,a=0,c=0,d=0,f={},v=(An==null?void 0:An.scale)>1;if(t.tagName==="BODY"){let b=document.documentElement;i=b.clientWidth,a=b.clientHeight;var m;e=(m=An==null?void 0:An.width)!==null&&m!==void 0?m:i;var g;n=(g=An==null?void 0:An.height)!==null&&g!==void 0?g:a,f.top=b.scrollTop||t.scrollTop,f.left=b.scrollLeft||t.scrollLeft,An&&(c=An.offsetTop,d=An.offsetLeft)}else({width:e,height:n,top:c,left:d}=_s(t)),f.top=t.scrollTop,f.left=t.scrollLeft,i=e,a=n;return Vp()&&(t.tagName==="BODY"||t.tagName==="HTML")&&v&&(f.top=0,f.left=0,c=An.pageTop,d=An.pageLeft),{width:e,height:n,totalWidth:i,totalHeight:a,scroll:f,top:c,left:d}}function xD(t){return{top:t.scrollTop,left:t.scrollLeft,width:t.scrollWidth,height:t.scrollHeight}}function E6(t,e,n,i,a,c,d){let f=a.scroll[t],v=i[yp[t]],m=i.scroll[w2[t]]+c,g=v+i.scroll[w2[t]]-c,b=e-f+d[t]-i[w2[t]],S=e-f+n+d[t]-i[w2[t]];return bg?Math.max(g-S,m-b):0}function wD(t){let e=window.getComputedStyle(t);return{top:parseInt(e.marginTop,10)||0,bottom:parseInt(e.marginBottom,10)||0,left:parseInt(e.marginLeft,10)||0,right:parseInt(e.marginRight,10)||0}}function k6(t){if(o5[t])return o5[t];let[e,n]=t.split(" "),i=w2[e]||"right",a=bD[i];w2[n]||(n="center");let c=yp[i],d=yp[a];return o5[t]={placement:e,crossPlacement:n,axis:i,crossAxis:a,size:c,crossSize:d},o5[t]}function s3(t,e,n,i,a,c,d,f,v,m){let{placement:g,crossPlacement:b,axis:S,crossAxis:C,size:P,crossSize:T}=i,A={};A[C]=t[C],b==="center"?A[C]+=(t[T]-n[T])/2:b!==C&&(A[C]+=t[T]-n[T]),A[C]+=c;const V=t[C]-n[T]+v+m,R=t[C]+t[T]-v-m;if(A[C]=Nc(A[C],V,R),g===S){const F=f?d[P]:e[Ey[P]];A[B5[S]]=Math.floor(F-t[S]+a)}else A[S]=Math.floor(t[S]+t[P]+a);return A}function $D(t,e,n,i,a,c,d,f){const v=i?n.height:e[Ey.height];let m=t.top!=null?n.top+t.top:n.top+(v-t.bottom-d),g=f!=="top"?Math.max(0,e.height+e.top+e.scroll.top-m-(a.top+a.bottom+c)):Math.max(0,m+d-(e.top+e.scroll.top)-(a.top+a.bottom+c));return Math.min(e.height-c*2,g)}function T6(t,e,n,i,a,c){let{placement:d,axis:f,size:v}=c;return d===f?Math.max(0,n[f]-t[f]-t.scroll[f]+e[f]-i[f]-i[B5[f]]-a):Math.max(0,t[v]+t[f]+t.scroll[f]-e[f]-n[f]-n[v]-i[f]-i[B5[f]]-a)}function SD(t,e,n,i,a,c,d,f,v,m,g,b,S,C,P,T){let A=k6(t),{size:V,crossAxis:R,crossSize:F,placement:N,crossPlacement:z}=A,U=s3(e,f,n,A,g,b,m,S,P,T),le=g,D=T6(f,m,e,a,c+g,A);if(d&&i[V]>D){let ae=k6(`${B5[N]} ${z}`),H=s3(e,f,n,ae,g,b,m,S,P,T);T6(f,m,e,a,c+g,ae)>D&&(A=ae,U=H,le=g)}let ie="bottom";A.axis==="top"?A.placement==="top"?ie="top":A.placement==="bottom"&&(ie="bottom"):A.crossAxis==="top"&&(A.crossPlacement==="top"?ie="bottom":A.crossPlacement==="bottom"&&(ie="top"));let j=E6(R,U[R],n[F],f,v,c,m);U[R]+=j;let X=$D(U,f,m,S,a,c,n.height,ie);C&&C{if(!n||i===null)return;let a=c=>{let d=c.target;if(!e.current||d instanceof Node&&!d.contains(e.current)||c.target instanceof HTMLInputElement||c.target instanceof HTMLTextAreaElement)return;let f=i||ky.get(e.current);f&&f()};return window.addEventListener("scroll",a,!0),()=>{window.removeEventListener("scroll",a,!0)}},[n,i,e])}const ED=new Set(["Arab","Syrc","Samr","Mand","Thaa","Mend","Nkoo","Adlm","Rohg","Hebr"]),kD=new Set(["ae","ar","arc","bcc","bqi","ckb","dv","fa","glk","he","ku","mzn","nqo","pnb","ps","sd","ug","ur","yi"]);function TD(t){if(Intl.Locale){let n=new Intl.Locale(t).maximize(),i=typeof n.getTextInfo=="function"?n.getTextInfo():n.textInfo;if(i)return i.direction==="rtl";if(n.script)return ED.has(n.script)}let e=t.split("-")[0];return kD.has(e)}const MD=Symbol.for("react-aria.i18n.locale");function Ty(){let t=typeof window<"u"&&window[MD]||typeof navigator<"u"&&(navigator.language||navigator.userLanguage)||"en-US";try{Intl.DateTimeFormat.supportedLocalesOf([t])}catch{t="en-US"}return{locale:t,direction:TD(t)?"rtl":"ltr"}}let bp=Ty(),Mc=new Set;function L6(){bp=Ty();for(let t of Mc)t(bp)}function AD(){let t=M2(),[e,n]=x.useState(bp);return x.useEffect(()=>(Mc.size===0&&window.addEventListener("languagechange",L6),Mc.add(n),()=>{Mc.delete(n),Mc.size===0&&window.removeEventListener("languagechange",L6)}),[]),t?{locale:"en-US",direction:"ltr"}:e}const LD=ee.createContext(null);function Hs(){let t=AD();return x.useContext(LD)||t}const DD=Symbol.for("react-aria.i18n.locale"),RD=Symbol.for("react-aria.i18n.strings");let fs;class gf{getStringForLocale(e,n){let a=this.getStringsForLocale(n)[e];if(!a)throw new Error(`Could not find intl message ${e} in ${n} locale`);return a}getStringsForLocale(e){let n=this.strings[e];return n||(n=BD(e,this.strings,this.defaultLocale),this.strings[e]=n),n}static getGlobalDictionaryForPackage(e){if(typeof window>"u")return null;let n=window[DD];if(fs===void 0){let a=window[RD];if(!a)return null;fs={};for(let c in a)fs[c]=new gf({[n]:a[c]},n)}let i=fs==null?void 0:fs[e];if(!i)throw new Error(`Strings for package "${e}" were not included by LocalizedStringProvider. Please add it to the list passed to createLocalizedStringDictionary.`);return i}constructor(e,n="en-US"){this.strings=Object.fromEntries(Object.entries(e).filter(([,i])=>i)),this.defaultLocale=n}}function BD(t,e,n="en-US"){if(e[t])return e[t];let i=VD(t);if(e[i])return e[i];for(let a in e)if(a.startsWith(i+"-"))return e[a];return e[n]}function VD(t){return Intl.Locale?new Intl.Locale(t).language:t.split("-")[0]}const D6=new Map,R6=new Map;class ID{format(e,n){let i=this.strings.getStringForLocale(e,this.locale);return typeof i=="function"?i(n,this):i}plural(e,n,i="cardinal"){let a=n["="+e];if(a)return typeof a=="function"?a():a;let c=this.locale+":"+i,d=D6.get(c);d||(d=new Intl.PluralRules(this.locale,{type:i}),D6.set(c,d));let f=d.select(e);return a=n[f]||n.other,typeof a=="function"?a():a}number(e){let n=R6.get(this.locale);return n||(n=new Intl.NumberFormat(this.locale),R6.set(this.locale,n)),n.format(e)}select(e,n){let i=e[n]||e.other;return typeof i=="function"?i():i}constructor(e,n){this.locale=e,this.strings=n}}const B6=new WeakMap;function FD(t){let e=B6.get(t);return e||(e=new gf(t),B6.set(t,e)),e}function ZD(t,e){return e&&gf.getGlobalDictionaryForPackage(e)||FD(t)}function zs(t,e){let{locale:n}=Hs(),i=ZD(t,e);return x.useMemo(()=>new ID(n,i),[n,i])}let u3=new Map,xp=!1;try{xp=new Intl.NumberFormat("de-DE",{signDisplay:"exceptZero"}).resolvedOptions().signDisplay==="exceptZero"}catch{}let V5=!1;try{V5=new Intl.NumberFormat("de-DE",{style:"unit",unit:"degree"}).resolvedOptions().style==="unit"}catch{}const My={degree:{narrow:{default:"°","ja-JP":" 度","zh-TW":"度","sl-SI":" °"}}};class OD{format(e){let n="";if(!xp&&this.options.signDisplay!=null?n=HD(this.numberFormatter,this.options.signDisplay,e):n=this.numberFormatter.format(e),this.options.style==="unit"&&!V5){var i;let{unit:a,unitDisplay:c="short",locale:d}=this.resolvedOptions();if(!a)return n;let f=(i=My[a])===null||i===void 0?void 0:i[c];n+=f[d]||f.default}return n}formatToParts(e){return this.numberFormatter.formatToParts(e)}formatRange(e,n){if(typeof this.numberFormatter.formatRange=="function")return this.numberFormatter.formatRange(e,n);if(n= start date");return`${this.format(e)} – ${this.format(n)}`}formatRangeToParts(e,n){if(typeof this.numberFormatter.formatRangeToParts=="function")return this.numberFormatter.formatRangeToParts(e,n);if(n= start date");let i=this.numberFormatter.formatToParts(e),a=this.numberFormatter.formatToParts(n);return[...i.map(c=>({...c,source:"startRange"})),{type:"literal",value:" – ",source:"shared"},...a.map(c=>({...c,source:"endRange"}))]}resolvedOptions(){let e=this.numberFormatter.resolvedOptions();return!xp&&this.options.signDisplay!=null&&(e={...e,signDisplay:this.options.signDisplay}),!V5&&this.options.style==="unit"&&(e={...e,style:"unit",unit:this.options.unit,unitDisplay:this.options.unitDisplay}),e}constructor(e,n={}){this.numberFormatter=ND(e,n),this.options=n}}function ND(t,e={}){let{numberingSystem:n}=e;if(n&&t.includes("-nu-")&&(t.includes("-u-")||(t+="-u-"),t+=`-nu-${n}`),e.style==="unit"&&!V5){var i;let{unit:d,unitDisplay:f="short"}=e;if(!d)throw new Error('unit option must be provided with style: "unit"');if(!(!((i=My[d])===null||i===void 0)&&i[f]))throw new Error(`Unsupported unit ${d} with unitDisplay = ${f}`);e={...e,style:"decimal"}}let a=t+(e?Object.entries(e).sort((d,f)=>d[0]0||Object.is(n,0):e==="exceptZero"&&(Object.is(n,-0)||Object.is(n,0)?n=Math.abs(n):i=n>0),i){let a=t.format(-n),c=t.format(n),d=a.replace(c,"").replace(/\u200e|\u061C/,"");return[...d].length!==1&&console.warn("@react-aria/i18n polyfill for NumberFormat signDisplay: Unsupported case"),a.replace(c,"!!!").replace(d,"+").replace("!!!",c)}else return t.format(n)}}function zD(t={}){let{locale:e}=Hs();return x.useMemo(()=>new OD(e,t),[e,t])}let c3=new Map;function Nv(t){let{locale:e}=Hs(),n=e+(t?Object.entries(t).sort((a,c)=>a[0]{C&&(N.current=dt==null?void 0:dt.scale)},[C]);let z=x.useCallback(()=>{if(S===!1||!C||!a.current||!i.current||!m||(dt==null?void 0:dt.scale)!==N.current)return;let ie=null;if(c.current&&c.current.contains(document.activeElement)){let Q=document.activeElement.getBoundingClientRect(),he=c.current.getBoundingClientRect();ie={type:"top",offset:Q.top-he.top},ie.offset>he.height/2&&(ie.type="bottom",ie.offset=Q.bottom-he.bottom)}let j=a.current;if(!T&&a.current){var X;j.style.top="0px",j.style.bottom="";var xe;j.style.maxHeight=((xe=(X=window.visualViewport)===null||X===void 0?void 0:X.height)!==null&&xe!==void 0?xe:window.innerHeight)+"px"}let G=CD({placement:KD(d,e),overlayNode:a.current,targetNode:i.current,scrollNode:c.current||a.current,padding:f,shouldFlip:v,boundaryElement:m,offset:g,crossOffset:b,maxHeight:T,arrowSize:n,arrowBoundaryOffset:A});if(j.style.top="",j.style.bottom="",j.style.left="",j.style.right="",Object.keys(G.position).forEach(Q=>j.style[Q]=G.position[Q]+"px"),j.style.maxHeight=G.maxHeight!=null?G.maxHeight+"px":void 0,ie){let Q=document.activeElement.getBoundingClientRect(),he=c.current.getBoundingClientRect(),_e=Q[ie.type]-he[ie.type];c.current.scrollTop+=_e-ie.offset}R(G)},F);C0(z,F),jD(z),$5({ref:a,onResize:z}),$5({ref:i,onResize:z});let U=x.useRef(!1);C0(()=>{let ie,j=()=>{U.current=!0,clearTimeout(ie),ie=setTimeout(()=>{U.current=!1},500),z()},X=()=>{U.current&&j()};return dt==null||dt.addEventListener("resize",j),dt==null||dt.addEventListener("scroll",X),()=>{dt==null||dt.removeEventListener("resize",j),dt==null||dt.removeEventListener("scroll",X)}},[z]);let le=x.useCallback(()=>{U.current||P()},[P,U]);PD({triggerRef:i,isOpen:C,onClose:P&&le});var D;return{overlayProps:{style:{position:"absolute",zIndex:1e5,...V.position,maxHeight:(D=V.maxHeight)!==null&&D!==void 0?D:"100vh"}},placement:V.placement,arrowProps:{"aria-hidden":"true",role:"presentation",style:{left:V.arrowOffsetLeft,top:V.arrowOffsetTop}},updatePosition:z}}function jD(t){C0(()=>(window.addEventListener("resize",t,!1),()=>{window.removeEventListener("resize",t,!1)}),[t])}function KD(t,e){return e==="rtl"?t.replace("start","right").replace("end","left"):t.replace("start","left").replace("end","right")}const di=[];function Ly(t,e){let{onClose:n,shouldCloseOnBlur:i,isOpen:a,isDismissable:c=!1,isKeyboardDismissDisabled:d=!1,shouldCloseOnInteractOutside:f}=t;x.useEffect(()=>(a&&di.push(e),()=>{let P=di.indexOf(e);P>=0&&di.splice(P,1)}),[a,e]);let v=()=>{di[di.length-1]===e&&n&&n()},m=P=>{(!f||f(P.target))&&di[di.length-1]===e&&(P.stopPropagation(),P.preventDefault())},g=P=>{(!f||f(P.target))&&(di[di.length-1]===e&&(P.stopPropagation(),P.preventDefault()),v())},b=P=>{P.key==="Escape"&&!d&&!P.nativeEvent.isComposing&&(P.stopPropagation(),P.preventDefault(),v())};d8({ref:e,onInteractOutside:c&&a?g:null,onInteractOutsideStart:m});let{focusWithinProps:S}=l1({isDisabled:!i,onBlurWithin:P=>{!P.relatedTarget||_E(P.relatedTarget)||(!f||f(P.relatedTarget))&&n()}}),C=P=>{P.target===P.currentTarget&&P.preventDefault()};return{overlayProps:{onKeyDown:b,...S},underlayProps:{onPointerDown:C}}}function Dy(t,e,n){let{type:i}=t,{isOpen:a}=e;x.useEffect(()=>{n&&n.current&&ky.set(n.current,e.close)});let c;i==="menu"?c=!0:i==="listbox"&&(c="listbox");let d=Qn();return{triggerProps:{"aria-haspopup":c,"aria-expanded":a,"aria-controls":a?d:null,onPress:e.toggle},overlayProps:{id:d}}}const d3=typeof document<"u"&&window.visualViewport,WD=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);let l5=0,f3;function Ry(t={}){let{isDisabled:e}=t;C0(()=>{if(!e)return l5++,l5===1&&(W5()?f3=GD():f3=UD()),()=>{l5--,l5===0&&f3()}},[e])}function UD(){return vo($s(document.documentElement,"paddingRight",`${window.innerWidth-document.documentElement.clientWidth}px`),$s(document.documentElement,"overflow","hidden"))}function GD(){let t,e,n=m=>{t=e8(m.target,!0),!(t===document.documentElement&&t===document.body)&&t instanceof HTMLElement&&window.getComputedStyle(t).overscrollBehavior==="auto"&&(e=$s(t,"overscrollBehavior","contain"))},i=m=>{if(!t||t===document.documentElement||t===document.body){m.preventDefault();return}t.scrollHeight===t.clientHeight&&t.scrollWidth===t.clientWidth&&m.preventDefault()},a=m=>{let g=m.target;I6(g)&&g!==document.activeElement&&(m.preventDefault(),f(),g.style.transform="translateY(-2000px)",g.focus(),requestAnimationFrame(()=>{g.style.transform=""})),e&&e()},c=m=>{let g=m.target;I6(g)&&(f(),g.style.transform="translateY(-2000px)",requestAnimationFrame(()=>{g.style.transform="",d3&&(d3.height{V6(g)}):d3.addEventListener("resize",()=>V6(g),{once:!0}))}))},d=null,f=()=>{if(d)return;let m=()=>{window.scrollTo(0,0)},g=window.pageXOffset,b=window.pageYOffset;d=vo(Sc(window,"scroll",m),$s(document.documentElement,"paddingRight",`${window.innerWidth-document.documentElement.clientWidth}px`),$s(document.documentElement,"overflow","hidden"),$s(document.body,"marginTop",`-${b}px`),()=>{window.scrollTo(g,b)}),window.scrollTo(0,0)},v=vo(Sc(document,"touchstart",n,{passive:!1,capture:!0}),Sc(document,"touchmove",i,{passive:!1,capture:!0}),Sc(document,"touchend",a,{passive:!1,capture:!0}),Sc(document,"focus",c,!0));return()=>{e==null||e(),d==null||d(),v()}}function $s(t,e,n){let i=t.style[e];return t.style[e]=n,()=>{t.style[e]=i}}function Sc(t,e,n,i){return t.addEventListener(e,n,i),()=>{t.removeEventListener(e,n,i)}}function V6(t){let e=document.scrollingElement||document.documentElement;for(;t&&t!==e;){let n=e8(t);if(n!==document.documentElement&&n!==document.body&&n!==t){let i=n.getBoundingClientRect().top,a=t.getBoundingClientRect().top;a>i+t.clientHeight&&(n.scrollTop+=a-i)}t=n.parentElement}}function I6(t){return t instanceof HTMLInputElement&&!WD.has(t.type)||t instanceof HTMLTextAreaElement||t instanceof HTMLElement&&t.isContentEditable}const wp=ee.createContext(null);function qD(t){let{children:e}=t,n=x.useContext(wp),[i,a]=x.useState(0),c=x.useMemo(()=>({parent:n,modalCount:i,addModal(){a(d=>d+1),n&&n.addModal()},removeModal(){a(d=>d-1),n&&n.removeModal()}}),[n,i]);return ee.createElement(wp.Provider,{value:c},e)}function YD(){let t=x.useContext(wp);return{modalProviderProps:{"aria-hidden":t&&t.modalCount>0?!0:null}}}function XD(t){let{modalProviderProps:e}=YD();return ee.createElement("div",{"data-overlay-container":!0,...t,...e})}function QD(t){return ee.createElement(qD,null,ee.createElement(XD,t))}function JD(t){let e=M2(),{portalContainer:n=e?null:document.body,...i}=t;if(ee.useEffect(()=>{if(n!=null&&n.closest("[data-overlay-container]"))throw new Error("An OverlayContainer must not be inside another container. Please change the portalContainer prop.")},[n]),!n)return null;let a=ee.createElement(QD,i);return zp.createPortal(a,n)}var By={};By={dismiss:"تجاهل"};var Vy={};Vy={dismiss:"Отхвърляне"};var Iy={};Iy={dismiss:"Odstranit"};var Fy={};Fy={dismiss:"Luk"};var Zy={};Zy={dismiss:"Schließen"};var Oy={};Oy={dismiss:"Απόρριψη"};var Ny={};Ny={dismiss:"Dismiss"};var Hy={};Hy={dismiss:"Descartar"};var zy={};zy={dismiss:"Lõpeta"};var jy={};jy={dismiss:"Hylkää"};var Ky={};Ky={dismiss:"Rejeter"};var Wy={};Wy={dismiss:"התעלם"};var Uy={};Uy={dismiss:"Odbaci"};var Gy={};Gy={dismiss:"Elutasítás"};var qy={};qy={dismiss:"Ignora"};var Yy={};Yy={dismiss:"閉じる"};var Xy={};Xy={dismiss:"무시"};var Qy={};Qy={dismiss:"Atmesti"};var Jy={};Jy={dismiss:"Nerādīt"};var e9={};e9={dismiss:"Lukk"};var t9={};t9={dismiss:"Negeren"};var n9={};n9={dismiss:"Zignoruj"};var r9={};r9={dismiss:"Descartar"};var i9={};i9={dismiss:"Dispensar"};var o9={};o9={dismiss:"Revocare"};var l9={};l9={dismiss:"Пропустить"};var a9={};a9={dismiss:"Zrušiť"};var s9={};s9={dismiss:"Opusti"};var u9={};u9={dismiss:"Odbaci"};var c9={};c9={dismiss:"Avvisa"};var d9={};d9={dismiss:"Kapat"};var f9={};f9={dismiss:"Скасувати"};var p9={};p9={dismiss:"取消"};var v9={};v9={dismiss:"關閉"};var h9={};h9={"ar-AE":By,"bg-BG":Vy,"cs-CZ":Iy,"da-DK":Fy,"de-DE":Zy,"el-GR":Oy,"en-US":Ny,"es-ES":Hy,"et-EE":zy,"fi-FI":jy,"fr-FR":Ky,"he-IL":Wy,"hr-HR":Uy,"hu-HU":Gy,"it-IT":qy,"ja-JP":Yy,"ko-KR":Xy,"lt-LT":Qy,"lv-LV":Jy,"nb-NO":e9,"nl-NL":t9,"pl-PL":n9,"pt-BR":r9,"pt-PT":i9,"ro-RO":o9,"ru-RU":l9,"sk-SK":a9,"sl-SI":s9,"sr-SP":u9,"sv-SE":c9,"tr-TR":d9,"uk-UA":f9,"zh-CN":p9,"zh-TW":v9};const F6={border:0,clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"};function m9(t={}){let{style:e,isFocusable:n}=t,[i,a]=x.useState(!1),{focusWithinProps:c}=l1({isDisabled:!n,onFocusWithinChange:f=>a(f)}),d=x.useMemo(()=>i?e:e?{...F6,...e}:F6,[i]);return{visuallyHiddenProps:{...c,style:d}}}function yf(t){let{children:e,elementType:n="div",isFocusable:i,style:a,...c}=t,{visuallyHiddenProps:d}=m9(t);return ee.createElement(n,qe(c,d),e)}function eR(t){return t&&t.__esModule?t.default:t}function $p(t){let{onDismiss:e,...n}=t,i=zs(eR(h9),"@react-aria/overlays"),a=Jm(n,i.format("dismiss")),c=()=>{e&&e()};return ee.createElement(yf,null,ee.createElement("button",{...a,tabIndex:-1,onClick:c,style:{width:1,height:1}}))}let Cc=new WeakMap,br=[];function g9(t,e=document.body){let n=new Set(t),i=new Set,a=v=>{for(let S of v.querySelectorAll("[data-live-announcer], [data-react-aria-top-layer]"))n.add(S);let m=S=>{if(n.has(S)||i.has(S.parentElement)&&S.parentElement.getAttribute("role")!=="row")return NodeFilter.FILTER_REJECT;for(let C of n)if(S.contains(C))return NodeFilter.FILTER_SKIP;return NodeFilter.FILTER_ACCEPT},g=document.createTreeWalker(v,NodeFilter.SHOW_ELEMENT,{acceptNode:m}),b=m(v);if(b===NodeFilter.FILTER_ACCEPT&&c(v),b!==NodeFilter.FILTER_REJECT){let S=g.nextNode();for(;S!=null;)c(S),S=g.nextNode()}},c=v=>{var m;let g=(m=Cc.get(v))!==null&&m!==void 0?m:0;v.getAttribute("aria-hidden")==="true"&&g===0||(g===0&&v.setAttribute("aria-hidden","true"),i.add(v),Cc.set(v,g+1))};br.length&&br[br.length-1].disconnect(),a(e);let d=new MutationObserver(v=>{for(let m of v)if(!(m.type!=="childList"||m.addedNodes.length===0)&&![...n,...i].some(g=>g.contains(m.target))){for(let g of m.removedNodes)g instanceof Element&&(n.delete(g),i.delete(g));for(let g of m.addedNodes)(g instanceof HTMLElement||g instanceof SVGElement)&&(g.dataset.liveAnnouncer==="true"||g.dataset.reactAriaTopLayer==="true")?n.add(g):g instanceof Element&&a(g)}});d.observe(e,{childList:!0,subtree:!0});let f={observe(){d.observe(e,{childList:!0,subtree:!0})},disconnect(){d.disconnect()}};return br.push(f),()=>{d.disconnect();for(let v of i){let m=Cc.get(v);m===1?(v.removeAttribute("aria-hidden"),Cc.delete(v)):Cc.set(v,m-1)}f===br[br.length-1]?(br.pop(),br.length&&br[br.length-1].observe()):br.splice(br.indexOf(f),1)}}function tR(t,e){let{triggerRef:n,popoverRef:i,isNonModal:a,isKeyboardDismissDisabled:c,shouldCloseOnInteractOutside:d,...f}=t,{overlayProps:v,underlayProps:m}=Ly({isOpen:e.isOpen,onClose:e.close,shouldCloseOnBlur:!0,isDismissable:!a,isKeyboardDismissDisabled:c,shouldCloseOnInteractOutside:d},i),{overlayProps:g,arrowProps:b,placement:S}=Ay({...f,targetRef:n,overlayRef:i,isOpen:e.isOpen,onClose:a?e.close:null});return Ry({isDisabled:a||!e.isOpen}),C0(()=>{if(e.isOpen&&!a&&i.current)return g9([i.current])},[a,e.isOpen,i]),{popoverProps:qe(v,g),arrowProps:b,underlayProps:m,placement:S}}const nR=x.createContext({});function rR(){var t;return(t=x.useContext(nR))!==null&&t!==void 0?t:{}}const y9=ee.createContext(null);function b9(t){let e=M2(),{portalContainer:n=e?null:document.body,isExiting:i}=t,[a,c]=x.useState(!1),d=x.useMemo(()=>({contain:a,setContain:c}),[a,c]),{getContainer:f}=rR();if(!t.portalContainer&&f&&(n=f()),!n)return null;let v=t.children;return t.disableFocusManagement||(v=ee.createElement(q5,{restoreFocus:!0,contain:a&&!i},v)),v=ee.createElement(y9.Provider,{value:d},ee.createElement(sE,null,v)),zp.createPortal(v,n)}function x9(){let t=x.useContext(y9),e=t==null?void 0:t.setContain;C0(()=>{e==null||e(!0)},[e])}function iR(t,e,n){let{overlayProps:i,underlayProps:a}=Ly({...t,isOpen:e.isOpen,onClose:e.close},n);return Ry({isDisabled:!e.isOpen}),x9(),x.useEffect(()=>{if(e.isOpen)return g9([n.current])},[e.isOpen,n]),{modalProps:qe(i),underlayProps:a}}function oR(t,e){let{elementType:n="button",isDisabled:i,onPress:a,onPressStart:c,onPressEnd:d,onPressUp:f,onPressChange:v,preventFocusOnPress:m,allowFocusWhenDisabled:g,onClick:b,href:S,target:C,rel:P,type:T="button"}=t,A;n==="button"?A={type:T,disabled:i}:A={role:"button",tabIndex:i?void 0:0,href:n==="a"&&i?void 0:S,target:n==="a"?C:void 0,type:n==="input"?T:void 0,disabled:n==="input"?i:void 0,"aria-disabled":!i||n==="input"?void 0:i,rel:n==="a"?P:void 0};let{pressProps:V,isPressed:R}=Es({onPressStart:c,onPressEnd:d,onPressChange:v,onPress:a,onPressUp:f,isDisabled:i,preventFocusOnPress:m,ref:e}),{focusableProps:F}=Y5(t,e);g&&(F.tabIndex=i?-1:F.tabIndex);let N=qe(F,V,O0(t,{labelable:!0}));return{isPressed:R,buttonProps:qe(A,N,{"aria-haspopup":t["aria-haspopup"],"aria-expanded":t["aria-expanded"],"aria-controls":t["aria-controls"],"aria-pressed":t["aria-pressed"],onClick:z=>{b&&(b(z),console.warn("onClick is deprecated, please use onPress"))}})}}const w9={badInput:!1,customError:!1,patternMismatch:!1,rangeOverflow:!1,rangeUnderflow:!1,stepMismatch:!1,tooLong:!1,tooShort:!1,typeMismatch:!1,valueMissing:!1,valid:!0},$9={...w9,customError:!0,valid:!1},vs={isInvalid:!1,validationDetails:w9,validationErrors:[]},S9=x.createContext({}),Sp="__formValidationState"+Date.now();function bf(t){if(t[Sp]){let{realtimeValidation:e,displayValidation:n,updateValidation:i,resetValidation:a,commitValidation:c}=t[Sp];return{realtimeValidation:e,displayValidation:n,updateValidation:i,resetValidation:a,commitValidation:c}}return lR(t)}function lR(t){let{isInvalid:e,validationState:n,name:i,value:a,builtinValidation:c,validate:d,validationBehavior:f="aria"}=t;n&&(e||(e=n==="invalid"));let v=e!==void 0?{isInvalid:e,validationErrors:[],validationDetails:$9}:null,m=x.useMemo(()=>Z6(aR(d,a)),[d,a]);c!=null&&c.validationDetails.valid&&(c=null);let g=x.useContext(S9),b=x.useMemo(()=>i?Array.isArray(i)?i.flatMap(j=>Cp(g[j])):Cp(g[i]):[],[g,i]),[S,C]=x.useState(g),[P,T]=x.useState(!1);g!==S&&(C(g),T(!1));let A=x.useMemo(()=>Z6(P?[]:b),[P,b]),V=x.useRef(vs),[R,F]=x.useState(vs),N=x.useRef(vs),z=()=>{if(!U)return;le(!1);let j=m||c||V.current;p3(j,N.current)||(N.current=j,F(j))},[U,le]=x.useState(!1);return x.useEffect(z),{realtimeValidation:v||A||m||c||vs,displayValidation:f==="native"?v||A||R:v||A||m||c||R,updateValidation(j){f==="aria"&&!p3(R,j)?F(j):V.current=j},resetValidation(){let j=vs;p3(j,N.current)||(N.current=j,F(j)),f==="native"&&le(!1),T(!0)},commitValidation(){f==="native"&&le(!0),T(!0)}}}function Cp(t){return t?Array.isArray(t)?t:[t]:[]}function aR(t,e){if(typeof t=="function"){let n=t(e);if(n&&typeof n!="boolean")return Cp(n)}return[]}function Z6(t){return t.length?{isInvalid:!0,validationErrors:t,validationDetails:$9}:null}function p3(t,e){return t===e?!0:t&&e&&t.isInvalid===e.isInvalid&&t.validationErrors.length===e.validationErrors.length&&t.validationErrors.every((n,i)=>n===e.validationErrors[i])&&Object.entries(t.validationDetails).every(([n,i])=>e.validationDetails[n]===i)}function Hv(t){let{id:e,label:n,"aria-labelledby":i,"aria-label":a,labelElementType:c="label"}=t;e=Qn(e);let d=Qn(),f={};n?(i=i?`${d} ${i}`:d,f={id:d,htmlFor:c==="label"?e:void 0}):!i&&!a&&console.warn("If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility");let v=Jm({id:e,"aria-label":a,"aria-labelledby":i});return{labelProps:f,fieldProps:v}}function C9(t){let{description:e,errorMessage:n,isInvalid:i,validationState:a}=t,{labelProps:c,fieldProps:d}=Hv(t),f=$2([!!e,!!n,i,a]),v=$2([!!e,!!n,i,a]);return d=qe(d,{"aria-describedby":[f,v,t["aria-describedby"]].filter(Boolean).join(" ")||void 0}),{labelProps:c,fieldProps:d,descriptionProps:{id:f},errorMessageProps:{id:v}}}function zv(t,e,n){let{validationBehavior:i,focus:a}=t;C0(()=>{if(i==="native"&&(n!=null&&n.current)){let v=e.realtimeValidation.isInvalid?e.realtimeValidation.validationErrors.join(" ")||"Invalid value.":"";n.current.setCustomValidity(v),n.current.hasAttribute("title")||(n.current.title=""),e.realtimeValidation.isInvalid||e.updateValidation(uR(n.current))}});let c=dn(()=>{e.resetValidation()}),d=dn(v=>{var m;e.displayValidation.isInvalid||e.commitValidation();let g=n==null||(m=n.current)===null||m===void 0?void 0:m.form;if(!v.defaultPrevented&&n&&g&&cR(g)===n.current){var b;a?a():(b=n.current)===null||b===void 0||b.focus(),c8("keyboard")}v.preventDefault()}),f=dn(()=>{e.commitValidation()});x.useEffect(()=>{let v=n==null?void 0:n.current;if(!v)return;let m=v.form;return v.addEventListener("invalid",d),v.addEventListener("change",f),m==null||m.addEventListener("reset",c),()=>{v.removeEventListener("invalid",d),v.removeEventListener("change",f),m==null||m.removeEventListener("reset",c)}},[n,d,f,c,i])}function sR(t){let e=t.validity;return{badInput:e.badInput,customError:e.customError,patternMismatch:e.patternMismatch,rangeOverflow:e.rangeOverflow,rangeUnderflow:e.rangeUnderflow,stepMismatch:e.stepMismatch,tooLong:e.tooLong,tooShort:e.tooShort,typeMismatch:e.typeMismatch,valueMissing:e.valueMissing,valid:e.valid}}function uR(t){return{isInvalid:!t.validity.valid,validationDetails:sR(t),validationErrors:t.validationMessage?[t.validationMessage]:[]}}function cR(t){for(let e=0;e{if(e.current instanceof Cr(e.current).HTMLTextAreaElement){let z=e.current;Object.defineProperty(z,"defaultValue",{get:()=>z.value,set:()=>{},configurable:!0})}},[e]),{labelProps:T,inputProps:qe(F,n==="input"?N:void 0,{disabled:i,readOnly:c,required:a&&f==="native","aria-required":a&&f==="aria"||void 0,"aria-invalid":S||void 0,"aria-errormessage":t["aria-errormessage"],"aria-activedescendant":t["aria-activedescendant"],"aria-autocomplete":t["aria-autocomplete"],"aria-haspopup":t["aria-haspopup"],value:v,onChange:z=>m(z.target.value),autoComplete:t.autoComplete,autoCapitalize:t.autoCapitalize,maxLength:t.maxLength,minLength:t.minLength,name:t.name,placeholder:t.placeholder,inputMode:t.inputMode,onCopy:t.onCopy,onCut:t.onCut,onPaste:t.onPaste,onCompositionEnd:t.onCompositionEnd,onCompositionStart:t.onCompositionStart,onCompositionUpdate:t.onCompositionUpdate,onSelect:t.onSelect,onBeforeInput:t.onBeforeInput,onInput:t.onInput,...g,...A}),descriptionProps:V,errorMessageProps:R,isInvalid:S,validationErrors:C,validationDetails:P}}class O6{*[Symbol.iterator](){yield*this.iterable}get size(){return this.keyMap.size}getKeys(){return this.keyMap.keys()}getKeyBefore(e){let n=this.keyMap.get(e);return n?n.prevKey:null}getKeyAfter(e){let n=this.keyMap.get(e);return n?n.nextKey:null}getFirstKey(){return this.firstKey}getLastKey(){return this.lastKey}getItem(e){return this.keyMap.get(e)}at(e){const n=[...this.getKeys()];return this.getItem(n[e])}getChildren(e){let n=this.keyMap.get(e);return(n==null?void 0:n.childNodes)||[]}constructor(e){this.keyMap=new Map,this.iterable=e;let n=c=>{if(this.keyMap.set(c.key,c),c.childNodes&&c.type==="section")for(let d of c.childNodes)n(d)};for(let c of e)n(c);let i,a=0;for(let[c,d]of this.keyMap)i?(i.nextKey=c,d.prevKey=i.key):(this.firstKey=c,d.prevKey=void 0),d.type==="item"&&(d.index=a++),i=d,i.nextKey=void 0;this.lastKey=i==null?void 0:i.key}}class jr extends Set{constructor(e,n,i){super(e),e instanceof jr?(this.anchorKey=n||e.anchorKey,this.currentKey=i||e.currentKey):(this.anchorKey=n,this.currentKey=i)}}function dR(t,e){if(t.size!==e.size)return!1;for(let n of t)if(!e.has(n))return!1;return!0}function P9(t){let{selectionMode:e="none",disallowEmptySelection:n,allowDuplicateSelectionEvents:i,selectionBehavior:a="toggle",disabledBehavior:c="all"}=t,d=x.useRef(!1),[,f]=x.useState(!1),v=x.useRef(null),m=x.useRef(null),[,g]=x.useState(null),b=x.useMemo(()=>N6(t.selectedKeys),[t.selectedKeys]),S=x.useMemo(()=>N6(t.defaultSelectedKeys,new jr),[t.defaultSelectedKeys]),[C,P]=yo(b,S,t.onSelectionChange),T=x.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),[A,V]=x.useState(a);a==="replace"&&A==="toggle"&&typeof C=="object"&&C.size===0&&V("replace");let R=x.useRef(a);return x.useEffect(()=>{a!==R.current&&(V(a),R.current=a)},[a]),{selectionMode:e,disallowEmptySelection:n,selectionBehavior:A,setSelectionBehavior:V,get isFocused(){return d.current},setFocused(F){d.current=F,f(F)},get focusedKey(){return v.current},get childFocusStrategy(){return m.current},setFocusedKey(F,N="first"){v.current=F,m.current=N,g(F)},selectedKeys:C,setSelectedKeys(F){(i||!dR(F,C))&&P(F)},disabledKeys:T,disabledBehavior:c}}function N6(t,e){return t?t==="all"?"all":new jr(t):e}class fR{build(e,n){return this.context=n,H6(()=>this.iterateCollection(e))}*iterateCollection(e){let{children:n,items:i}=e;if(typeof n=="function"){if(!i)throw new Error("props.children was a function but props.items is missing");for(let a of e.items)yield*this.getFullNode({value:a},{renderer:n})}else{let a=[];ee.Children.forEach(n,d=>{a.push(d)});let c=0;for(let d of a){let f=this.getFullNode({element:d,index:c},{});for(let v of f)c++,yield v}}}getKey(e,n,i,a){if(e.key!=null)return e.key;if(n.type==="cell"&&n.key!=null)return`${a}${n.key}`;let c=n.value;if(c!=null){var d;let f=(d=c.key)!==null&&d!==void 0?d:c.id;if(f==null)throw new Error("No key found for item");return f}return a?`${a}.${n.index}`:`$.${n.index}`}getChildState(e,n){return{renderer:n.renderer||e.renderer}}*getFullNode(e,n,i,a){let c=e.element;if(!c&&e.value&&n&&n.renderer){let v=this.cache.get(e.value);if(v&&(!v.shouldInvalidate||!v.shouldInvalidate(this.context))){v.index=e.index,v.parentKey=a?a.key:null,yield v;return}c=n.renderer(e.value)}if(ee.isValidElement(c)){let v=c.type;if(typeof v!="function"&&typeof v.getCollectionNode!="function"){let S=typeof c.type=="function"?c.type.name:c.type;throw new Error(`Unknown element <${S}> in collection.`)}let m=v.getCollectionNode(c.props,this.context),g=e.index,b=m.next();for(;!b.done&&b.value;){let S=b.value;e.index=g;let C=S.key;C||(C=S.element?null:this.getKey(c,e,n,i));let T=[...this.getFullNode({...S,key:C,index:g,wrapper:pR(e.wrapper,S.wrapper)},this.getChildState(n,S),i?`${i}${c.key}`:c.key,a)];for(let A of T){if(A.value=S.value||e.value,A.value&&this.cache.set(A.value,A),e.type&&A.type!==e.type)throw new Error(`Unsupported type <${v3(A.type)}> in <${v3(a.type)}>. Only <${v3(e.type)}> is supported.`);g++,yield A}b=m.next(T)}return}if(e.key==null)return;let d=this,f={type:e.type,props:e.props,key:e.key,parentKey:a?a.key:null,value:e.value,level:a?a.level+1:0,index:e.index,rendered:e.rendered,textValue:e.textValue,"aria-label":e["aria-label"],wrapper:e.wrapper,shouldInvalidate:e.shouldInvalidate,hasChildNodes:e.hasChildNodes,childNodes:H6(function*(){if(!e.hasChildNodes)return;let v=0;for(let m of e.childNodes()){m.key!=null&&(m.key=`${f.key}${m.key}`),m.index=v;let g=d.getFullNode(m,d.getChildState(n,m),f.key,f);for(let b of g)v++,yield b}})};yield f}constructor(){this.cache=new WeakMap}}function H6(t){let e=[],n=null;return{*[Symbol.iterator](){for(let i of e)yield i;n||(n=t());for(let i of n)e.push(i),yield i}}}function pR(t,e){if(t&&e)return n=>t(e(n));if(t)return t;if(e)return e}function v3(t){return t[0].toUpperCase()+t.slice(1)}function E9(t,e,n){let i=x.useMemo(()=>new fR,[]),{children:a,items:c,collection:d}=t;return x.useMemo(()=>{if(d)return d;let v=i.build({children:a,items:c},n);return e(v)},[i,a,c,d,n,e])}function k9(t,e){return typeof e.getChildren=="function"?e.getChildren(t.key):t.childNodes}function vR(t){return hR(t)}function hR(t,e){for(let n of t)return n}function h3(t,e,n){if(e.parentKey===n.parentKey)return e.index-n.index;let i=[...z6(t,e),e],a=[...z6(t,n),n],c=i.slice(0,a.length).findIndex((d,f)=>d!==a[f]);return c!==-1?(e=i[c],n=a[c],e.index-n.index):i.findIndex(d=>d===n)>=0?1:(a.findIndex(d=>d===e)>=0,-1)}function z6(t,e){let n=[];for(;(e==null?void 0:e.parentKey)!=null;)e=t.getItem(e.parentKey),n.unshift(e);return n}const j6=new WeakMap;function T9(t){let e=j6.get(t);if(e!=null)return e;e=0;let n=i=>{for(let a of i)a.type==="section"?n(k9(a,t)):e++};return n(t),j6.set(t,e),e}class M9{get selectionMode(){return this.state.selectionMode}get disallowEmptySelection(){return this.state.disallowEmptySelection}get selectionBehavior(){return this.state.selectionBehavior}setSelectionBehavior(e){this.state.setSelectionBehavior(e)}get isFocused(){return this.state.isFocused}setFocused(e){this.state.setFocused(e)}get focusedKey(){return this.state.focusedKey}get childFocusStrategy(){return this.state.childFocusStrategy}setFocusedKey(e,n){(e==null||this.collection.getItem(e))&&this.state.setFocusedKey(e,n)}get selectedKeys(){return this.state.selectedKeys==="all"?new Set(this.getSelectAllKeys()):this.state.selectedKeys}get rawSelection(){return this.state.selectedKeys}isSelected(e){return this.state.selectionMode==="none"?!1:(e=this.getKey(e),this.state.selectedKeys==="all"?this.canSelectItem(e):this.state.selectedKeys.has(e))}get isEmpty(){return this.state.selectedKeys!=="all"&&this.state.selectedKeys.size===0}get isSelectAll(){if(this.isEmpty)return!1;if(this.state.selectedKeys==="all")return!0;if(this._isSelectAll!=null)return this._isSelectAll;let e=this.getSelectAllKeys(),n=this.state.selectedKeys;return this._isSelectAll=e.every(i=>n.has(i)),this._isSelectAll}get firstSelectedKey(){let e=null;for(let n of this.state.selectedKeys){let i=this.collection.getItem(n);(!e||i&&h3(this.collection,i,e)<0)&&(e=i)}return e==null?void 0:e.key}get lastSelectedKey(){let e=null;for(let n of this.state.selectedKeys){let i=this.collection.getItem(n);(!e||i&&h3(this.collection,i,e)>0)&&(e=i)}return e==null?void 0:e.key}get disabledKeys(){return this.state.disabledKeys}get disabledBehavior(){return this.state.disabledBehavior}extendSelection(e){if(this.selectionMode==="none")return;if(this.selectionMode==="single"){this.replaceSelection(e);return}e=this.getKey(e);let n;if(this.state.selectedKeys==="all")n=new jr([e],e,e);else{let i=this.state.selectedKeys,a=i.anchorKey||e;n=new jr(i,a,e);for(let c of this.getKeyRange(a,i.currentKey||e))n.delete(c);for(let c of this.getKeyRange(e,a))this.canSelectItem(c)&&n.add(c)}this.state.setSelectedKeys(n)}getKeyRange(e,n){let i=this.collection.getItem(e),a=this.collection.getItem(n);return i&&a?h3(this.collection,i,a)<=0?this.getKeyRangeInternal(e,n):this.getKeyRangeInternal(n,e):[]}getKeyRangeInternal(e,n){let i=[],a=e;for(;a;){let c=this.collection.getItem(a);if((c&&c.type==="item"||c.type==="cell"&&this.allowsCellSelection)&&i.push(a),a===n)return i;a=this.collection.getKeyAfter(a)}return[]}getKey(e){let n=this.collection.getItem(e);if(!n||n.type==="cell"&&this.allowsCellSelection)return e;for(;n.type!=="item"&&n.parentKey!=null;)n=this.collection.getItem(n.parentKey);return!n||n.type!=="item"?null:n.key}toggleSelection(e){if(this.selectionMode==="none")return;if(this.selectionMode==="single"&&!this.isSelected(e)){this.replaceSelection(e);return}if(e=this.getKey(e),e==null)return;let n=new jr(this.state.selectedKeys==="all"?this.getSelectAllKeys():this.state.selectedKeys);n.has(e)?n.delete(e):this.canSelectItem(e)&&(n.add(e),n.anchorKey=e,n.currentKey=e),!(this.disallowEmptySelection&&n.size===0)&&this.state.setSelectedKeys(n)}replaceSelection(e){if(this.selectionMode==="none"||(e=this.getKey(e),e==null))return;let n=this.canSelectItem(e)?new jr([e],e,e):new jr;this.state.setSelectedKeys(n)}setSelectedKeys(e){if(this.selectionMode==="none")return;let n=new jr;for(let i of e)if(i=this.getKey(i),i!=null&&(n.add(i),this.selectionMode==="single"))break;this.state.setSelectedKeys(n)}getSelectAllKeys(){let e=[],n=i=>{for(;i!=null;){if(this.canSelectItem(i)){let a=this.collection.getItem(i);a.type==="item"&&e.push(i),a.hasChildNodes&&(this.allowsCellSelection||a.type!=="item")&&n(vR(k9(a,this.collection)).key)}i=this.collection.getKeyAfter(i)}};return n(this.collection.getFirstKey()),e}selectAll(){!this.isSelectAll&&this.selectionMode==="multiple"&&this.state.setSelectedKeys("all")}clearSelection(){!this.disallowEmptySelection&&(this.state.selectedKeys==="all"||this.state.selectedKeys.size>0)&&this.state.setSelectedKeys(new jr)}toggleSelectAll(){this.isSelectAll?this.clearSelection():this.selectAll()}select(e,n){this.selectionMode!=="none"&&(this.selectionMode==="single"?this.isSelected(e)&&!this.disallowEmptySelection?this.toggleSelection(e):this.replaceSelection(e):this.selectionBehavior==="toggle"||n&&(n.pointerType==="touch"||n.pointerType==="virtual")?this.toggleSelection(e):this.replaceSelection(e))}isSelectionEqual(e){if(e===this.state.selectedKeys)return!0;let n=this.selectedKeys;if(e.size!==n.size)return!1;for(let i of e)if(!n.has(i))return!1;for(let i of n)if(!e.has(i))return!1;return!0}canSelectItem(e){var n;if(this.state.selectionMode==="none"||this.state.disabledKeys.has(e))return!1;let i=this.collection.getItem(e);return!(!i||!(i==null||(n=i.props)===null||n===void 0)&&n.isDisabled||i.type==="cell"&&!this.allowsCellSelection)}isDisabled(e){var n,i;return this.state.disabledBehavior==="all"&&(this.state.disabledKeys.has(e)||!!(!((i=this.collection.getItem(e))===null||i===void 0||(n=i.props)===null||n===void 0)&&n.isDisabled))}isLink(e){var n,i;return!!(!((i=this.collection.getItem(e))===null||i===void 0||(n=i.props)===null||n===void 0)&&n.href)}getItemProps(e){var n;return(n=this.collection.getItem(e))===null||n===void 0?void 0:n.props}constructor(e,n,i){this.collection=e,this.state=n;var a;this.allowsCellSelection=(a=i==null?void 0:i.allowsCellSelection)!==null&&a!==void 0?a:!1,this._isSelectAll=null}}function A9(t){let{filter:e}=t,n=P9(t),i=x.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),a=x.useCallback(m=>e?new O6(e(m)):new O6(m),[e]),c=x.useMemo(()=>({suppressTextValueWarning:t.suppressTextValueWarning}),[t.suppressTextValueWarning]),d=E9(t,a,c),f=x.useMemo(()=>new M9(d,n),[d,n]);const v=x.useRef(null);return x.useEffect(()=>{if(n.focusedKey!=null&&!d.getItem(n.focusedKey)){const m=v.current.getItem(n.focusedKey),g=[...v.current.getKeys()].map(A=>{const V=v.current.getItem(A);return V.type==="item"?V:null}).filter(A=>A!==null),b=[...d.getKeys()].map(A=>{const V=d.getItem(A);return V.type==="item"?V:null}).filter(A=>A!==null),S=g.length-b.length;let C=Math.min(S>1?Math.max(m.index-S+1,0):m.index,b.length-1),P,T=!1;for(;C>=0;){if(!f.isDisabled(b[C].key)){P=b[C];break}Cm.index&&(C=m.index),C--)}n.setFocusedKey(P?P.key:null)}v.current=d},[d,f,n,n.focusedKey]),{collection:d,disabledKeys:i,selectionManager:f}}function mR(t){var e;let[n,i]=yo(t.selectedKey,(e=t.defaultSelectedKey)!==null&&e!==void 0?e:null,t.onSelectionChange),a=x.useMemo(()=>n!=null?[n]:[],[n]),{collection:c,disabledKeys:d,selectionManager:f}=A9({...t,selectionMode:"single",disallowEmptySelection:!0,allowDuplicateSelectionEvents:!0,selectedKeys:a,onSelectionChange:m=>{var g;let b=(g=m.values().next().value)!==null&&g!==void 0?g:null;b===n&&t.onSelectionChange&&t.onSelectionChange(b),i(b)}}),v=n!=null?c.getItem(n):null;return{collection:c,disabledKeys:d,selectionManager:f,selectedKey:n,setSelectedKey:i,selectedItem:v}}const gR="i1C0oq_Pagination",yR="i1C0oq_PaginationButton",bR="i1C0oq_PaginationText",I5={Pagination:gR,PaginationButton:yR,"PaginationButton--disabled":"i1C0oq_PaginationButton--disabled",PaginationText:bR},xR={first:k.jsx(K0,{name:"chevrons-left"}),prev:k.jsx(K0,{name:"chevron-left"}),next:k.jsx(K0,{name:"chevron-right"}),last:k.jsx(K0,{name:"chevrons-right"})},wR={first:"first",prev:"previous",next:"next",last:"last"},a5=({resourceName:t,kind:e,disabled:n,onClick:i,className:a,"data-test-id":c="pagination-button"})=>{const d=ft(I5.PaginationButton,n&&I5["PaginationButton--disabled"],a),f=xR[e],v=`${wR[e]} ${t} page`;return k.jsx(_m,{disabled:n,className:d,size:"small","data-test-id":c,onClick:()=>i(e),icon:f,"aria-label":v})},$R=({currentOffset:t,pageSize:e,isReady:n,totalCount:i,"data-test-id":a="pagination-text"})=>{const c=Math.max(0,t||0),d=c+1,f=i&&Math.min(c+e,i);if(!n)return k.jsx("div",{children:k.jsx(yD,{})});if(!i)return k.jsx("strong",{children:"No results"});const v=`Viewing records ${d} through ${f} of ${i} total.`;return k.jsxs("div",{className:I5.PaginationText,"data-test-id":a,children:[k.jsx(yf,{children:v}),k.jsxs("span",{"aria-hidden":!0,children:[k.jsxs("strong",{children:[d,"-",f]})," ","of ",k.jsx("strong",{children:i})]})]})},SR=({className:t,resourceName:e,isFirstDisabled:n,isPrevDisabled:i,isNextDisabled:a,isLastDisabled:c,onChange:d,currentOffset:f,pageSize:v,isReady:m,totalCount:g,"aria-label":b,"data-test-id":S="pagination",...C})=>k.jsxs("nav",{...C,className:ft(I5.Pagination,t),"aria-label":b??`Pagination for ${e} list.`,"data-test-id":S,children:[k.jsx(a5,{resourceName:e,kind:"first",disabled:!!n,onClick:d}),k.jsx(a5,{resourceName:e,kind:"prev",disabled:!!i,onClick:d}),k.jsx($R,{currentOffset:f,pageSize:v,isReady:m,totalCount:g}),k.jsx(a5,{resourceName:e,kind:"next",disabled:!!a,onClick:d}),k.jsx(a5,{resourceName:e,kind:"last",disabled:!!c,onClick:d})]}),jv=new WeakMap;function CR(t){return typeof t=="string"?t.replace(/\s*/g,""):""+t}function _R(t,e){let n=jv.get(t);if(!n)throw new Error("Unknown list");return`${n.id}-option-${CR(e)}`}function _p(t){return OP()?t.altKey:t.ctrlKey}function hs(t){return ho()?t.metaKey:t.ctrlKey}const PR=1e3;function L9(t){let{keyboardDelegate:e,selectionManager:n,onTypeSelect:i}=t,a=x.useRef({search:"",timeout:null}).current,c=d=>{let f=ER(d.key);if(!f||d.ctrlKey||d.metaKey||!d.currentTarget.contains(d.target))return;f===" "&&a.search.trim().length>0&&(d.preventDefault(),"continuePropagation"in d||d.stopPropagation()),a.search+=f;let v=e.getKeyForSearch(a.search,n.focusedKey);v==null&&(v=e.getKeyForSearch(a.search)),v!=null&&(n.setFocusedKey(v),i&&i(v)),clearTimeout(a.timeout),a.timeout=setTimeout(()=>{a.search=""},PR)};return{typeSelectProps:{onKeyDownCapture:e.getKeyForSearch?c:null}}}function ER(t){return t.length===1||!/^[A-Z]/i.test(t)?t:""}function kR(t){let{selectionManager:e,keyboardDelegate:n,ref:i,autoFocus:a=!1,shouldFocusWrap:c=!1,disallowEmptySelection:d=!1,disallowSelectAll:f=!1,selectOnFocus:v=e.selectionBehavior==="replace",disallowTypeAhead:m=!1,shouldUseVirtualFocus:g,allowsTabNavigation:b=!1,isVirtualized:S,scrollRef:C=i,linkBehavior:P="action"}=t,{direction:T}=Hs(),A=U5(),V=j=>{if(j.altKey&&j.key==="Tab"&&j.preventDefault(),!i.current.contains(j.target))return;const X=(ae,H)=>{if(ae!=null){if(e.isLink(ae)&&P==="selection"&&v&&!_p(j)){Is.flushSync(()=>{e.setFocusedKey(ae,H)});let ce=C.current.querySelector(`[data-key="${CSS.escape(ae.toString())}"]`),oe=e.getItemProps(ae);A.open(ce,j,oe.href,oe.routerOptions);return}if(e.setFocusedKey(ae,H),e.isLink(ae)&&P==="override")return;j.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(ae):v&&!_p(j)&&e.replaceSelection(ae)}};switch(j.key){case"ArrowDown":if(n.getKeyBelow){var xe,G;j.preventDefault();let ae=e.focusedKey!=null?n.getKeyBelow(e.focusedKey):(xe=n.getFirstKey)===null||xe===void 0?void 0:xe.call(n);ae==null&&c&&(ae=(G=n.getFirstKey)===null||G===void 0?void 0:G.call(n,e.focusedKey)),X(ae)}break;case"ArrowUp":if(n.getKeyAbove){var Q,he;j.preventDefault();let ae=e.focusedKey!=null?n.getKeyAbove(e.focusedKey):(Q=n.getLastKey)===null||Q===void 0?void 0:Q.call(n);ae==null&&c&&(ae=(he=n.getLastKey)===null||he===void 0?void 0:he.call(n,e.focusedKey)),X(ae)}break;case"ArrowLeft":if(n.getKeyLeftOf){var _e,se;j.preventDefault();let ae=n.getKeyLeftOf(e.focusedKey);ae==null&&c&&(ae=T==="rtl"?(_e=n.getFirstKey)===null||_e===void 0?void 0:_e.call(n,e.focusedKey):(se=n.getLastKey)===null||se===void 0?void 0:se.call(n,e.focusedKey)),X(ae,T==="rtl"?"first":"last")}break;case"ArrowRight":if(n.getKeyRightOf){var fe,Pe;j.preventDefault();let ae=n.getKeyRightOf(e.focusedKey);ae==null&&c&&(ae=T==="rtl"?(fe=n.getLastKey)===null||fe===void 0?void 0:fe.call(n,e.focusedKey):(Pe=n.getFirstKey)===null||Pe===void 0?void 0:Pe.call(n,e.focusedKey)),X(ae,T==="rtl"?"last":"first")}break;case"Home":if(n.getFirstKey){j.preventDefault();let ae=n.getFirstKey(e.focusedKey,hs(j));e.setFocusedKey(ae),hs(j)&&j.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(ae):v&&e.replaceSelection(ae)}break;case"End":if(n.getLastKey){j.preventDefault();let ae=n.getLastKey(e.focusedKey,hs(j));e.setFocusedKey(ae),hs(j)&&j.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(ae):v&&e.replaceSelection(ae)}break;case"PageDown":if(n.getKeyPageBelow){j.preventDefault();let ae=n.getKeyPageBelow(e.focusedKey);X(ae)}break;case"PageUp":if(n.getKeyPageAbove){j.preventDefault();let ae=n.getKeyPageAbove(e.focusedKey);X(ae)}break;case"a":hs(j)&&e.selectionMode==="multiple"&&f!==!0&&(j.preventDefault(),e.selectAll());break;case"Escape":!d&&e.selectedKeys.size!==0&&(j.stopPropagation(),j.preventDefault(),e.clearSelection());break;case"Tab":if(!b){if(j.shiftKey)i.current.focus();else{let ae=vi(i.current,{tabbable:!0}),H,ce;do ce=ae.lastChild(),ce&&(H=ce);while(ce);H&&!H.contains(document.activeElement)&&qn(H)}break}}},R=x.useRef({top:0,left:0});Wh(C,"scroll",S?null:()=>{R.current={top:C.current.scrollTop,left:C.current.scrollLeft}});let F=j=>{if(e.isFocused){j.currentTarget.contains(j.target)||e.setFocused(!1);return}if(j.currentTarget.contains(j.target)){if(e.setFocused(!0),e.focusedKey==null){let G=he=>{he!=null&&(e.setFocusedKey(he),v&&e.replaceSelection(he))},Q=j.relatedTarget;var X,xe;Q&&j.currentTarget.compareDocumentPosition(Q)&Node.DOCUMENT_POSITION_FOLLOWING?G((X=e.lastSelectedKey)!==null&&X!==void 0?X:n.getLastKey()):G((xe=e.firstSelectedKey)!==null&&xe!==void 0?xe:n.getFirstKey())}else S||(C.current.scrollTop=R.current.top,C.current.scrollLeft=R.current.left);if(e.focusedKey!=null){let G=C.current.querySelector(`[data-key="${CSS.escape(e.focusedKey.toString())}"]`);G&&(G.contains(document.activeElement)||qn(G),Ts()==="keyboard"&&Gh(G,{containingElement:i.current}))}}},N=j=>{j.currentTarget.contains(j.relatedTarget)||e.setFocused(!1)};const z=x.useRef(a);x.useEffect(()=>{if(z.current){let j=null;a==="first"&&(j=n.getFirstKey()),a==="last"&&(j=n.getLastKey());let X=e.selectedKeys;if(X.size){for(let xe of X)if(e.canSelectItem(xe)){j=xe;break}}e.setFocused(!0),e.setFocusedKey(j),j==null&&!g&&Bl(i.current)}},[]);let U=x.useRef(e.focusedKey);x.useEffect(()=>{if(e.isFocused&&e.focusedKey!=null&&(e.focusedKey!==U.current||z.current)&&(C!=null&&C.current)){let j=Ts(),X=i.current.querySelector(`[data-key="${CSS.escape(e.focusedKey.toString())}"]`);if(!X)return;(j==="keyboard"||z.current)&&(t8(C.current,X),j!=="virtual"&&Gh(X,{containingElement:i.current}))}!g&&e.isFocused&&e.focusedKey==null&&U.current!=null&&Bl(i.current),U.current=e.focusedKey,z.current=!1}),Wh(i,"react-aria-focus-scope-restore",j=>{j.preventDefault(),e.setFocused(!0)});let le={onKeyDown:V,onFocus:F,onBlur:N,onMouseDown(j){C.current===j.target&&j.preventDefault()}},{typeSelectProps:D}=L9({keyboardDelegate:n,selectionManager:e});m||(le=qe(D,le));let ie;return g||(ie=e.focusedKey==null?0:-1),{collectionProps:{...le,tabIndex:ie}}}function D9(t){let{selectionManager:e,key:n,ref:i,shouldSelectOnPressUp:a,shouldUseVirtualFocus:c,focus:d,isDisabled:f,onAction:v,allowsDifferentPressOrigin:m,linkBehavior:g="action"}=t,b=U5(),S=se=>{if(se.pointerType==="keyboard"&&_p(se))e.toggleSelection(n);else{if(e.selectionMode==="none")return;if(e.isLink(n)){if(g==="selection"){let fe=e.getItemProps(n);b.open(i.current,se,fe.href,fe.routerOptions),e.setSelectedKeys(e.selectedKeys);return}else if(g==="override"||g==="none")return}e.selectionMode==="single"?e.isSelected(n)&&!e.disallowEmptySelection?e.toggleSelection(n):e.replaceSelection(n):se&&se.shiftKey?e.extendSelection(n):e.selectionBehavior==="toggle"||se&&(hs(se)||se.pointerType==="touch"||se.pointerType==="virtual")?e.toggleSelection(n):e.replaceSelection(n)}};x.useEffect(()=>{n===e.focusedKey&&e.isFocused&&!c&&(d?d():document.activeElement!==i.current&&Bl(i.current))},[i,n,e.focusedKey,e.childFocusStrategy,e.isFocused,c]),f=f||e.isDisabled(n);let C={};!c&&!f?C={tabIndex:n===e.focusedKey?0:-1,onFocus(se){se.target===i.current&&e.setFocusedKey(n)}}:f&&(C.onMouseDown=se=>{se.preventDefault()});let P=e.isLink(n)&&g==="override",T=e.isLink(n)&&g!=="selection"&&g!=="none",A=!f&&e.canSelectItem(n)&&!P,V=(v||T)&&!f,R=V&&(e.selectionBehavior==="replace"?!A:!A||e.isEmpty),F=V&&A&&e.selectionBehavior==="replace",N=R||F,z=x.useRef(null),U=N&&A,le=x.useRef(!1),D=x.useRef(!1),ie=se=>{if(v&&v(),T){let fe=e.getItemProps(n);b.open(i.current,se,fe.href,fe.routerOptions)}},j={};a?(j.onPressStart=se=>{z.current=se.pointerType,le.current=U,se.pointerType==="keyboard"&&(!N||W6())&&S(se)},m?(j.onPressUp=R?null:se=>{se.pointerType!=="keyboard"&&A&&S(se)},j.onPress=R?ie:null):j.onPress=se=>{if(R||F&&se.pointerType!=="mouse"){if(se.pointerType==="keyboard"&&!K6())return;ie(se)}else se.pointerType!=="keyboard"&&A&&S(se)}):(j.onPressStart=se=>{z.current=se.pointerType,le.current=U,D.current=R,A&&(se.pointerType==="mouse"&&!R||se.pointerType==="keyboard"&&(!V||W6()))&&S(se)},j.onPress=se=>{(se.pointerType==="touch"||se.pointerType==="pen"||se.pointerType==="virtual"||se.pointerType==="keyboard"&&N&&K6()||se.pointerType==="mouse"&&D.current)&&(N?ie(se):A&&S(se))}),C["data-key"]=n,j.preventFocusOnPress=c;let{pressProps:X,isPressed:xe}=Es(j),G=F?se=>{z.current==="mouse"&&(se.stopPropagation(),se.preventDefault(),ie(se))}:void 0,{longPressProps:Q}=p8({isDisabled:!U,onLongPress(se){se.pointerType==="touch"&&(S(se),e.setSelectionBehavior("toggle"))}}),he=se=>{z.current==="touch"&&le.current&&se.preventDefault()},_e=e.isLink(n)?se=>{Dl.isOpening||se.preventDefault()}:void 0;return{itemProps:qe(C,A||R?X:{},U?Q:{},{onDoubleClick:G,onDragStartCapture:he,onClick:_e}),isPressed:xe,isSelected:e.isSelected(n),isFocused:e.isFocused&&e.focusedKey===n,isDisabled:f,allowsSelection:A,hasAction:N}}function K6(){let t=window.event;return(t==null?void 0:t.key)==="Enter"}function W6(){let t=window.event;return(t==null?void 0:t.key)===" "||(t==null?void 0:t.code)==="Space"}class U6{getItemRect(e){let n=this.ref.current,i=e!=null?n.querySelector(`[data-key="${CSS.escape(e.toString())}"]`):null;if(!i)return null;let a=n.getBoundingClientRect(),c=i.getBoundingClientRect();return{x:c.left-a.left+n.scrollLeft,y:c.top-a.top+n.scrollTop,width:c.width,height:c.height}}getContentSize(){let e=this.ref.current;return{width:e.scrollWidth,height:e.scrollHeight}}getVisibleRect(){let e=this.ref.current;return{x:e.scrollLeft,y:e.scrollTop,width:e.offsetWidth,height:e.offsetHeight}}constructor(e){this.ref=e}}class Kv{isDisabled(e){var n;return this.disabledBehavior==="all"&&(((n=e.props)===null||n===void 0?void 0:n.isDisabled)||this.disabledKeys.has(e.key))}getNextKey(e){for(e=this.collection.getKeyAfter(e);e!=null;){let n=this.collection.getItem(e);if(n.type==="item"&&!this.isDisabled(n))return e;e=this.collection.getKeyAfter(e)}return null}getPreviousKey(e){for(e=this.collection.getKeyBefore(e);e!=null;){let n=this.collection.getItem(e);if(n.type==="item"&&!this.isDisabled(n))return e;e=this.collection.getKeyBefore(e)}return null}findKey(e,n,i){let a=this.layoutDelegate.getItemRect(e);if(!a)return null;let c=a;do e=n(e),a=this.layoutDelegate.getItemRect(e);while(a&&i(c,a));return e}isSameRow(e,n){return e.y===n.y||e.x!==n.x}isSameColumn(e,n){return e.x===n.x||e.y!==n.y}getKeyBelow(e){return this.layout==="grid"&&this.orientation==="vertical"?this.findKey(e,n=>this.getNextKey(n),this.isSameRow):this.getNextKey(e)}getKeyAbove(e){return this.layout==="grid"&&this.orientation==="vertical"?this.findKey(e,n=>this.getPreviousKey(n),this.isSameRow):this.getPreviousKey(e)}getNextColumn(e,n){return n?this.getPreviousKey(e):this.getNextKey(e)}getKeyRightOf(e){return this.layout==="grid"?this.orientation==="vertical"?this.getNextColumn(e,this.direction==="rtl"):this.findKey(e,n=>this.getNextColumn(n,this.direction==="rtl"),this.isSameColumn):this.orientation==="horizontal"?this.getNextColumn(e,this.direction==="rtl"):null}getKeyLeftOf(e){return this.layout==="grid"?this.orientation==="vertical"?this.getNextColumn(e,this.direction==="ltr"):this.findKey(e,n=>this.getNextColumn(n,this.direction==="ltr"),this.isSameColumn):this.orientation==="horizontal"?this.getNextColumn(e,this.direction==="ltr"):null}getFirstKey(){let e=this.collection.getFirstKey();for(;e!=null;){let n=this.collection.getItem(e);if((n==null?void 0:n.type)==="item"&&!this.isDisabled(n))return e;e=this.collection.getKeyAfter(e)}return null}getLastKey(){let e=this.collection.getLastKey();for(;e!=null;){let n=this.collection.getItem(e);if(n.type==="item"&&!this.isDisabled(n))return e;e=this.collection.getKeyBefore(e)}return null}getKeyPageAbove(e){let n=this.ref.current,i=this.layoutDelegate.getItemRect(e);if(!i)return null;if(!jc(n))return this.getFirstKey();if(this.orientation==="horizontal"){let a=Math.max(0,i.x+i.width-this.layoutDelegate.getVisibleRect().width);for(;i&&i.x>a;)e=this.getKeyAbove(e),i=e==null?null:this.layoutDelegate.getItemRect(e)}else{let a=Math.max(0,i.y+i.height-this.layoutDelegate.getVisibleRect().height);for(;i&&i.y>a;)e=this.getKeyAbove(e),i=e==null?null:this.layoutDelegate.getItemRect(e)}return e??this.getFirstKey()}getKeyPageBelow(e){let n=this.ref.current,i=this.layoutDelegate.getItemRect(e);if(!i)return null;if(!jc(n))return this.getLastKey();if(this.orientation==="horizontal"){let a=Math.min(this.layoutDelegate.getContentSize().width,i.y-i.width+this.layoutDelegate.getVisibleRect().width);for(;i&&i.xc||new Kv({collection:n,disabledKeys:i,disabledBehavior:v,ref:a,collator:f,layoutDelegate:d}),[c,d,n,i,a,f,v]),{collectionProps:g}=kR({...t,ref:a,selectionManager:e,keyboardDelegate:m});return{listProps:g}}function TR(t,e,n){let i=O0(t,{labelable:!0}),a=t.selectionBehavior||"toggle",c=t.linkBehavior||(a==="replace"?"action":"override");a==="toggle"&&c==="action"&&(c="override");let{listProps:d}=R9({...t,ref:n,selectionManager:e.selectionManager,collection:e.collection,disabledKeys:e.disabledKeys,linkBehavior:c}),{focusWithinProps:f}=l1({onFocusWithin:t.onFocus,onBlurWithin:t.onBlur,onFocusWithinChange:t.onFocusChange}),v=Qn(t.id);jv.set(e,{id:v,shouldUseVirtualFocus:t.shouldUseVirtualFocus,shouldSelectOnPressUp:t.shouldSelectOnPressUp,shouldFocusOnHover:t.shouldFocusOnHover,isVirtualized:t.isVirtualized,onAction:t.onAction,linkBehavior:c});let{labelProps:m,fieldProps:g}=Hv({...t,id:v,labelElementType:"span"});return{labelProps:m,listBoxProps:qe(i,f,e.selectionManager.selectionMode==="multiple"?{"aria-multiselectable":"true"}:{},{role:"listbox",...qe(g,d)})}}function MR(t,e,n){var i,a;let{key:c}=t,d=jv.get(e);var f;let v=(f=t.isDisabled)!==null&&f!==void 0?f:e.selectionManager.isDisabled(c);var m;let g=(m=t.isSelected)!==null&&m!==void 0?m:e.selectionManager.isSelected(c);var b;let S=(b=t.shouldSelectOnPressUp)!==null&&b!==void 0?b:d==null?void 0:d.shouldSelectOnPressUp;var C;let P=(C=t.shouldFocusOnHover)!==null&&C!==void 0?C:d==null?void 0:d.shouldFocusOnHover;var T;let A=(T=t.shouldUseVirtualFocus)!==null&&T!==void 0?T:d==null?void 0:d.shouldUseVirtualFocus;var V;let R=(V=t.isVirtualized)!==null&&V!==void 0?V:d==null?void 0:d.isVirtualized,F=$2(),N=$2(),z={role:"option","aria-disabled":v||void 0,"aria-selected":e.selectionManager.selectionMode!=="none"?g:void 0};ho()&&Vp()||(z["aria-label"]=t["aria-label"],z["aria-labelledby"]=F,z["aria-describedby"]=N);let U=e.collection.getItem(c);if(R){let _e=Number(U==null?void 0:U.index);z["aria-posinset"]=Number.isNaN(_e)?void 0:_e+1,z["aria-setsize"]=T9(e.collection)}let le=d!=null&&d.onAction?()=>{var _e;return d==null||(_e=d.onAction)===null||_e===void 0?void 0:_e.call(d,c)}:void 0,{itemProps:D,isPressed:ie,isFocused:j,hasAction:X,allowsSelection:xe}=D9({selectionManager:e.selectionManager,key:c,ref:n,shouldSelectOnPressUp:S,allowsDifferentPressOrigin:S&&P,isVirtualized:R,shouldUseVirtualFocus:A,isDisabled:v,onAction:le||!(U==null||(i=U.props)===null||i===void 0)&&i.onAction?vo(U==null||(a=U.props)===null||a===void 0?void 0:a.onAction,le):void 0,linkBehavior:d==null?void 0:d.linkBehavior}),{hoverProps:G}=Jn({isDisabled:v||!P,onHoverStart(){ks()||(e.selectionManager.setFocused(!0),e.selectionManager.setFocusedKey(c))}}),Q=O0(U==null?void 0:U.props);delete Q.id;let he=Ym(U==null?void 0:U.props);return{optionProps:{...z,...qe(Q,D,G,he),id:_R(e,c)},labelProps:{id:F},descriptionProps:{id:N},isFocused:j,isFocusVisible:j&&ks(),isSelected:g,isDisabled:v,isPressed:ie,allowsSelection:xe,hasAction:X}}function AR(t){let{heading:e,"aria-label":n}=t,i=Qn();return{itemProps:{role:"presentation"},headingProps:e?{id:i,role:"presentation"}:{},groupProps:{role:"group","aria-label":n,"aria-labelledby":e?i:void 0}}}var B9={};B9={longPressMessage:"اضغط مطولاً أو اضغط على Alt + السهم لأسفل لفتح القائمة"};var V9={};V9={longPressMessage:"Натиснете продължително или натиснете Alt+ стрелка надолу, за да отворите менюто"};var I9={};I9={longPressMessage:"Dlouhým stiskem nebo stisknutím kláves Alt + šipka dolů otevřete nabídku"};var F9={};F9={longPressMessage:"Langt tryk eller tryk på Alt + pil ned for at åbne menuen"};var Z9={};Z9={longPressMessage:"Drücken Sie lange oder drücken Sie Alt + Nach-unten, um das Menü zu öffnen"};var O9={};O9={longPressMessage:"Πιέστε παρατεταμένα ή πατήστε Alt + κάτω βέλος για να ανοίξετε το μενού"};var N9={};N9={longPressMessage:"Long press or press Alt + ArrowDown to open menu"};var H9={};H9={longPressMessage:"Mantenga pulsado o pulse Alt + flecha abajo para abrir el menú"};var z9={};z9={longPressMessage:"Menüü avamiseks vajutage pikalt või vajutage klahve Alt + allanool"};var j9={};j9={longPressMessage:"Avaa valikko painamalla pohjassa tai näppäinyhdistelmällä Alt + Alanuoli"};var K9={};K9={longPressMessage:"Appuyez de manière prolongée ou appuyez sur Alt + Flèche vers le bas pour ouvrir le menu."};var W9={};W9={longPressMessage:"לחץ לחיצה ארוכה או הקש Alt + ArrowDown כדי לפתוח את התפריט"};var U9={};U9={longPressMessage:"Dugo pritisnite ili pritisnite Alt + strelicu prema dolje za otvaranje izbornika"};var G9={};G9={longPressMessage:"Nyomja meg hosszan, vagy nyomja meg az Alt + lefele nyíl gombot a menü megnyitásához"};var q9={};q9={longPressMessage:"Premere a lungo o premere Alt + Freccia giù per aprire il menu"};var Y9={};Y9={longPressMessage:"長押しまたは Alt+下矢印キーでメニューを開く"};var X9={};X9={longPressMessage:"길게 누르거나 Alt + 아래쪽 화살표를 눌러 메뉴 열기"};var Q9={};Q9={longPressMessage:"Norėdami atidaryti meniu, nuspaudę palaikykite arba paspauskite „Alt + ArrowDown“."};var J9={};J9={longPressMessage:"Lai atvērtu izvēlni, turiet nospiestu vai nospiediet taustiņu kombināciju Alt + lejupvērstā bultiņa"};var eb={};eb={longPressMessage:"Langt trykk eller trykk Alt + PilNed for å åpne menyen"};var tb={};tb={longPressMessage:"Druk lang op Alt + pijl-omlaag of druk op Alt om het menu te openen"};var nb={};nb={longPressMessage:"Naciśnij i przytrzymaj lub naciśnij klawisze Alt + Strzałka w dół, aby otworzyć menu"};var rb={};rb={longPressMessage:"Pressione e segure ou pressione Alt + Seta para baixo para abrir o menu"};var ib={};ib={longPressMessage:"Prima continuamente ou prima Alt + Seta Para Baixo para abrir o menu"};var ob={};ob={longPressMessage:"Apăsați lung sau apăsați pe Alt + săgeată în jos pentru a deschide meniul"};var lb={};lb={longPressMessage:"Нажмите и удерживайте или нажмите Alt + Стрелка вниз, чтобы открыть меню"};var ab={};ab={longPressMessage:"Ponuku otvoríte dlhým stlačením alebo stlačením klávesu Alt + klávesu so šípkou nadol"};var sb={};sb={longPressMessage:"Za odprtje menija pritisnite in držite gumb ali pritisnite Alt+puščica navzdol"};var ub={};ub={longPressMessage:"Dugo pritisnite ili pritisnite Alt + strelicu prema dole da otvorite meni"};var cb={};cb={longPressMessage:"Håll nedtryckt eller tryck på Alt + pil nedåt för att öppna menyn"};var db={};db={longPressMessage:"Menüyü açmak için uzun basın veya Alt + Aşağı Ok tuşuna basın"};var fb={};fb={longPressMessage:"Довго або звичайно натисніть комбінацію клавіш Alt і стрілка вниз, щоб відкрити меню"};var pb={};pb={longPressMessage:"长按或按 Alt + 向下方向键以打开菜单"};var vb={};vb={longPressMessage:"長按或按 Alt+向下鍵以開啟功能表"};var hb={};hb={"ar-AE":B9,"bg-BG":V9,"cs-CZ":I9,"da-DK":F9,"de-DE":Z9,"el-GR":O9,"en-US":N9,"es-ES":H9,"et-EE":z9,"fi-FI":j9,"fr-FR":K9,"he-IL":W9,"hr-HR":U9,"hu-HU":G9,"it-IT":q9,"ja-JP":Y9,"ko-KR":X9,"lt-LT":Q9,"lv-LV":J9,"nb-NO":eb,"nl-NL":tb,"pl-PL":nb,"pt-BR":rb,"pt-PT":ib,"ro-RO":ob,"ru-RU":lb,"sk-SK":ab,"sl-SI":sb,"sr-SP":ub,"sv-SE":cb,"tr-TR":db,"uk-UA":fb,"zh-CN":pb,"zh-TW":vb};function LR(t){return t&&t.__esModule?t.default:t}function mb(t,e,n){let{type:i="menu",isDisabled:a,trigger:c="press"}=t,d=Qn(),{triggerProps:f,overlayProps:v}=Dy({type:i},e,n),m=C=>{if(!a&&!(c==="longPress"&&!C.altKey)&&n&&n.current)switch(C.key){case"Enter":case" ":if(c==="longPress")return;case"ArrowDown":"continuePropagation"in C||C.stopPropagation(),C.preventDefault(),e.toggle("first");break;case"ArrowUp":"continuePropagation"in C||C.stopPropagation(),C.preventDefault(),e.toggle("last");break;default:"continuePropagation"in C&&C.continuePropagation()}},g=zs(LR(hb),"@react-aria/menu"),{longPressProps:b}=p8({isDisabled:a||c!=="longPress",accessibilityDescription:g.format("longPressMessage"),onLongPressStart(){e.close()},onLongPress(){e.open("first")}}),S={onPressStart(C){C.pointerType!=="touch"&&C.pointerType!=="keyboard"&&!a&&e.open(C.pointerType==="virtual"?"first":null)},onPress(C){C.pointerType==="touch"&&!a&&e.toggle()}};return delete f.onPress,{menuTriggerProps:{...f,...c==="press"?S:b,id:d,onKeyDown:m},menuProps:{...v,"aria-labelledby":d,autoFocus:e.focusStrategy||!0,onClose:e.close}}}const gb=new WeakMap;function DR(t,e,n){let{shouldFocusWrap:i=!0,onKeyDown:a,onKeyUp:c,...d}=t;!t["aria-label"]&&!t["aria-labelledby"]&&console.warn("An aria-label or aria-labelledby prop is required for accessibility.");let f=O0(t,{labelable:!0}),{listProps:v}=R9({...d,ref:n,selectionManager:e.selectionManager,collection:e.collection,disabledKeys:e.disabledKeys,shouldFocusWrap:i,linkBehavior:"override"});return gb.set(e,{onClose:t.onClose,onAction:t.onAction}),{menuProps:qe(f,{onKeyDown:a,onKeyUp:c},{role:"menu",...v,onKeyDown:m=>{m.key!=="Escape"&&v.onKeyDown(m)}})}}function RR(t,e,n){let{id:i,key:a,closeOnSelect:c,isVirtualized:d,"aria-haspopup":f,onPressStart:v,onPressUp:m,onPress:g,onPressChange:b,onPressEnd:S,onHoverStart:C,onHoverChange:P,onHoverEnd:T,onKeyDown:A,onKeyUp:V,onFocus:R,onFocusChange:F,onBlur:N}=t,z=!!f;var U;let le=(U=t.isDisabled)!==null&&U!==void 0?U:e.selectionManager.isDisabled(a);var D;let ie=(D=t.isSelected)!==null&&D!==void 0?D:e.selectionManager.isSelected(a),j=gb.get(e),X=e.collection.getItem(a),xe=t.onClose||j.onClose,G=U5(),Q=ke=>{var ze;if(!z){if(!(X==null||(ze=X.props)===null||ze===void 0)&&ze.onAction?X.props.onAction():t.onAction&&t.onAction(a),j.onAction){let Ye=j.onAction;Ye(a)}ke.target instanceof HTMLAnchorElement&&G.open(ke.target,ke,X.props.href,X.props.routerOptions)}},he="menuitem";z||(e.selectionManager.selectionMode==="single"?he="menuitemradio":e.selectionManager.selectionMode==="multiple"&&(he="menuitemcheckbox"));let _e=$2(),se=$2(),fe=$2(),Pe={id:i,"aria-disabled":le||void 0,role:he,"aria-label":t["aria-label"],"aria-labelledby":_e,"aria-describedby":[se,fe].filter(Boolean).join(" ")||void 0,"aria-controls":t["aria-controls"],"aria-haspopup":f,"aria-expanded":t["aria-expanded"]};e.selectionManager.selectionMode!=="none"&&!z&&(Pe["aria-checked"]=ie),d&&(Pe["aria-posinset"]=X==null?void 0:X.index,Pe["aria-setsize"]=T9(e.collection));let ae=ke=>{ke.pointerType==="keyboard"&&Q(ke),v==null||v(ke)},H=ke=>{ke.pointerType!=="keyboard"&&(Q(ke),!z&&xe&&(c??(e.selectionManager.selectionMode!=="multiple"||e.selectionManager.isLink(a)))&&xe()),m==null||m(ke)},{itemProps:ce,isFocused:oe}=D9({selectionManager:e.selectionManager,key:a,ref:n,shouldSelectOnPressUp:!0,allowsDifferentPressOrigin:!0,linkBehavior:"none"}),{pressProps:q,isPressed:ue}=Es({onPressStart:ae,onPress:g,onPressUp:H,onPressChange:b,onPressEnd:S,isDisabled:le}),{hoverProps:$e}=Jn({isDisabled:le,onHoverStart(ke){ks()||(e.selectionManager.setFocused(!0),e.selectionManager.setFocusedKey(a)),C==null||C(ke)},onHoverChange:P,onHoverEnd:T}),{keyboardProps:Ee}=f8({onKeyDown:ke=>{if(ke.repeat){ke.continuePropagation();return}switch(ke.key){case" ":!le&&e.selectionManager.selectionMode==="none"&&!z&&c!==!1&&xe&&xe();break;case"Enter":!le&&c!==!1&&!z&&xe&&xe();break;default:z||ke.continuePropagation(),A==null||A(ke);break}},onKeyUp:V}),{focusProps:Se}=Op({onBlur:N,onFocus:R,onFocusChange:F}),me=O0(X.props);delete me.id;let Be=Ym(X.props);return{menuItemProps:{...Pe,...qe(me,Be,z?{onFocus:ce.onFocus,"data-key":ce["data-key"]}:ce,q,$e,Ee,Se),tabIndex:ce.tabIndex!=null?-1:void 0},labelProps:{id:_e},descriptionProps:{id:se},keyboardShortcutProps:{id:fe},isFocused:oe,isSelected:ie,isPressed:ue,isDisabled:le}}function BR(t){let{heading:e,"aria-label":n}=t,i=Qn();return{itemProps:{role:"presentation"},headingProps:e?{id:i,role:"presentation"}:{},groupProps:{role:"group","aria-label":n,"aria-labelledby":e?i:void 0}}}function js(t){let[e,n]=yo(t.isOpen,t.defaultOpen||!1,t.onOpenChange);const i=x.useCallback(()=>{n(!0)},[n]),a=x.useCallback(()=>{n(!1)},[n]),c=x.useCallback(()=>{n(!e)},[n,e]);return{isOpen:e,setOpen:n,open:i,close:a,toggle:c}}function VR(t){let e=js(t),[n,i]=x.useState(null),[a,c]=x.useState([]),d=()=>{c([]),e.close()};return{focusStrategy:n,...e,open(m=null){i(m),e.open()},toggle(m=null){i(m),e.toggle()},close(){d()},expandedKeysStack:a,openSubmenu:(m,g)=>{c(b=>g>b.length?b:[...b.slice(0,g),m])},closeSubmenu:(m,g)=>{c(b=>b[g]===m?b.slice(0,g):b)}}}function yb(t,e,n){let{isDisabled:i=!1,isReadOnly:a=!1,value:c,name:d,children:f,"aria-label":v,"aria-labelledby":m,validationState:g="valid",isInvalid:b}=t,S=U=>{U.stopPropagation(),e.setSelected(U.target.checked)},C=f!=null,P=v!=null||m!=null;!C&&!P&&console.warn("If you do not provide children, you must specify an aria-label for accessibility");let{pressProps:T,isPressed:A}=Es({isDisabled:i}),{pressProps:V,isPressed:R}=Es({isDisabled:i||a,onPress(){e.toggle()}}),{focusableProps:F}=Y5(t,n),N=qe(T,F),z=O0(t,{labelable:!0});return Fp(n,e.isSelected,e.setSelected),{labelProps:qe(V,{onClick:U=>U.preventDefault()}),inputProps:qe(z,{"aria-invalid":b||g==="invalid"||void 0,"aria-errormessage":t["aria-errormessage"],"aria-controls":t["aria-controls"],"aria-readonly":a||void 0,onChange:S,disabled:i,...c==null?{}:{value:c},name:d,type:"checkbox",...N}),isSelected:e.isSelected,isPressed:A||R,isDisabled:i,isReadOnly:a,isInvalid:b||g==="invalid"}}function IR(t,e,n){let{labelProps:i,inputProps:a,isSelected:c,isPressed:d,isDisabled:f,isReadOnly:v}=yb(t,e,n);return{labelProps:i,inputProps:{...a,role:"switch",checked:c},isSelected:c,isPressed:d,isDisabled:f,isReadOnly:v}}function Wv(t={}){let{isReadOnly:e}=t,[n,i]=yo(t.isSelected,t.defaultSelected||!1,t.onChange);function a(d){e||i(d)}function c(){e||i(!n)}return{isSelected:n,setSelected:a,toggle:c}}const FR="my2veG_center",ZR="my2veG_flex",OR="my2veG_left",NR="my2veG_right",m3={center:FR,flex:ZR,"gap-0":"my2veG_gap-0","gap-1":"my2veG_gap-1","gap-2":"my2veG_gap-2","gap-3":"my2veG_gap-3","gap-4":"my2veG_gap-4","gap-5":"my2veG_gap-5","gap-6":"my2veG_gap-6","gap-7":"my2veG_gap-7","gap-8":"my2veG_gap-8",left:OR,right:NR},xf=({children:t,className:e,"data-test-id":n="stack",gap:i="0",align:a,...c})=>k.jsx("div",{...c,className:ft(m3.flex,m3[`gap-${i}`],!!a&&m3[a],e),"data-test-id":n,children:x.Children.map(t,(d,f)=>d&&k.jsx("div",{children:d},f))}),HR="GZdcSa_inline",zR="GZdcSa_item",_c={"alignX-center":"GZdcSa_alignX-center","alignX-left":"GZdcSa_alignX-left","alignX-right":"GZdcSa_alignX-right","alignY-bottom":"GZdcSa_alignY-bottom","alignY-center":"GZdcSa_alignY-center","alignY-top":"GZdcSa_alignY-top","gap-0":"GZdcSa_gap-0","gap-1":"GZdcSa_gap-1","gap-2":"GZdcSa_gap-2","gap-3":"GZdcSa_gap-3","gap-4":"GZdcSa_gap-4","gap-5":"GZdcSa_gap-5","gap-6":"GZdcSa_gap-6","gap-7":"GZdcSa_gap-7","gap-8":"GZdcSa_gap-8",inline:HR,item:zR},_r=({children:t,"data-test-id":e="inline",gap:n="0",alignX:i="left",alignY:a="center",className:c,...d})=>k.jsx("div",{...d,className:ft(_c.inline,_c[`gap-${n}`],_c[`alignX-${i}`],_c[`alignY-${a}`],c),"data-test-id":e,children:x.Children.map(t,(f,v)=>f&&k.jsx("div",{className:_c.item,children:f},v))});function bb(t,e,n){let i=bf({...t,value:e.isSelected}),{isInvalid:a,validationErrors:c,validationDetails:d}=i.displayValidation,{labelProps:f,inputProps:v,isSelected:m,isPressed:g,isDisabled:b,isReadOnly:S}=yb({...t,isInvalid:a},e,n);zv(t,i,n);let{isIndeterminate:C,isRequired:P,validationBehavior:T="aria"}=t;return x.useEffect(()=>{n.current&&(n.current.indeterminate=!!C)}),{labelProps:f,inputProps:{...v,checked:m,"aria-required":P&&T==="aria"||void 0,required:P&&T==="native"},isSelected:m,isPressed:g,isDisabled:b,isReadOnly:S,isInvalid:a,validationErrors:c,validationDetails:d}}const jR=new WeakMap;function KR(t,e,n){const i=Wv({isReadOnly:t.isReadOnly||e.isReadOnly,isSelected:e.isSelected(t.value),onChange(A){A?e.addValue(t.value):e.removeValue(t.value),t.onChange&&t.onChange(A)}});let{name:a,descriptionId:c,errorMessageId:d,validationBehavior:f}=jR.get(e);var v;f=(v=t.validationBehavior)!==null&&v!==void 0?v:f;let{realtimeValidation:m}=bf({...t,value:i.isSelected,name:void 0,validationBehavior:"aria"}),g=x.useRef(vs),b=()=>{e.setInvalid(t.value,m.isInvalid?m:g.current)};x.useEffect(b);let S=e.realtimeValidation.isInvalid?e.realtimeValidation:m,C=f==="native"?e.displayValidation:S;var P;let T=bb({...t,isReadOnly:t.isReadOnly||e.isReadOnly,isDisabled:t.isDisabled||e.isDisabled,name:t.name||a,isRequired:(P=t.isRequired)!==null&&P!==void 0?P:e.isRequired,validationBehavior:f,[Sp]:{realtimeValidation:S,displayValidation:C,resetValidation:e.resetValidation,commitValidation:e.commitValidation,updateValidation(A){g.current=A,b()}}},i,n);return{...T,inputProps:{...T.inputProps,"aria-describedby":[t["aria-describedby"],e.isInvalid?d:null,c].filter(Boolean).join(" ")||void 0}}}function xb(t){var e,n,i="";if(typeof t=="string"||typeof t=="number")i+=t;else if(typeof t=="object")if(Array.isArray(t))for(e=0;etypeof t=="boolean"?"".concat(t):t===0?"0":t,Rs=WR,E0=(t,e)=>n=>{var i;if((e==null?void 0:e.variants)==null)return Rs(t,n==null?void 0:n.class,n==null?void 0:n.className);const{variants:a,defaultVariants:c}=e,d=Object.keys(a).map(m=>{const g=n==null?void 0:n[m],b=c==null?void 0:c[m];if(g===null)return null;const S=G6(g)||G6(b);return a[m][S]}),f=n&&Object.entries(n).reduce((m,g)=>{let[b,S]=g;return S===void 0||(m[b]=S),m},{}),v=e==null||(i=e.compoundVariants)===null||i===void 0?void 0:i.reduce((m,g)=>{let{class:b,className:S,...C}=g;return Object.entries(C).every(P=>{let[T,A]=P;return Array.isArray(A)?A.includes({...c,...f}[T]):{...c,...f}[T]===A})?[...m,b,S]:m},[]);return Rs(t,d,v,n==null?void 0:n.class,n==null?void 0:n.className)},UR=x.createContext(null);x.createContext(null);x.createContext(null);x.createContext(null);x.createContext(null);const wb=x.createContext({});class Uv{get childNodes(){throw new Error("childNodes is not supported")}clone(){let e=new Uv(this.type,this.key);return e.value=this.value,e.level=this.level,e.hasChildNodes=this.hasChildNodes,e.rendered=this.rendered,e.textValue=this.textValue,e["aria-label"]=this["aria-label"],e.index=this.index,e.parentKey=this.parentKey,e.prevKey=this.prevKey,e.nextKey=this.nextKey,e.firstChildKey=this.firstChildKey,e.lastChildKey=this.lastChildKey,e.props=this.props,e.render=this.render,e}constructor(e,n){this.value=null,this.level=0,this.hasChildNodes=!1,this.rendered=null,this.textValue="",this["aria-label"]=void 0,this.index=0,this.parentKey=null,this.prevKey=null,this.nextKey=null,this.firstChildKey=null,this.lastChildKey=null,this.props={},this.type=e,this.key=n}}class GR{get size(){return this.keyMap.size}getKeys(){return this.keyMap.keys()}*[Symbol.iterator](){let e=this.firstKey!=null?this.keyMap.get(this.firstKey):void 0;for(;e;)yield e,e=e.nextKey!=null?this.keyMap.get(e.nextKey):void 0}getChildren(e){let n=this.keyMap;return{*[Symbol.iterator](){let i=n.get(e),a=(i==null?void 0:i.firstChildKey)!=null?n.get(i.firstChildKey):null;for(;a;)yield a,a=a.nextKey!=null?n.get(a.nextKey):void 0}}}getKeyBefore(e){let n=this.keyMap.get(e);if(!n)return null;if(n.prevKey!=null){for(n=this.keyMap.get(n.prevKey);n&&n.type!=="item"&&n.lastChildKey!=null;)n=this.keyMap.get(n.lastChildKey);var i;return(i=n==null?void 0:n.key)!==null&&i!==void 0?i:null}return n.parentKey}getKeyAfter(e){let n=this.keyMap.get(e);if(!n)return null;if(n.type!=="item"&&n.firstChildKey!=null)return n.firstChildKey;for(;n;){if(n.nextKey!=null)return n.nextKey;if(n.parentKey!=null)n=this.keyMap.get(n.parentKey);else return null}return null}getFirstKey(){return this.firstKey}getLastKey(){let e=this.lastKey!=null?this.keyMap.get(this.lastKey):null;for(;(e==null?void 0:e.lastChildKey)!=null;)e=this.keyMap.get(e.lastChildKey);var n;return(n=e==null?void 0:e.key)!==null&&n!==void 0?n:null}getItem(e){var n;return(n=this.keyMap.get(e))!==null&&n!==void 0?n:null}at(){throw new Error("Not implemented")}clone(){let e=this.constructor,n=new e;return n.keyMap=new Map(this.keyMap),n.firstKey=this.firstKey,n.lastKey=this.lastKey,n}addNode(e){if(this.frozen)throw new Error("Cannot add a node to a frozen collection");this.keyMap.set(e.key,e)}removeNode(e){if(this.frozen)throw new Error("Cannot remove a node to a frozen collection");this.keyMap.delete(e)}commit(e,n,i=!1){if(this.frozen)throw new Error("Cannot commit a frozen collection");this.firstKey=e,this.lastKey=n,this.frozen=!i}constructor(){this.keyMap=new Map,this.firstKey=null,this.lastKey=null,this.frozen=!1}}class $b{*[Symbol.iterator](){let e=this.firstChild;for(;e;)yield e,e=e.nextSibling}get firstChild(){return this._firstChild}set firstChild(e){this._firstChild=e,this.ownerDocument.markDirty(this)}get lastChild(){return this._lastChild}set lastChild(e){this._lastChild=e,this.ownerDocument.markDirty(this)}get previousSibling(){return this._previousSibling}set previousSibling(e){this._previousSibling=e,this.ownerDocument.markDirty(this)}get nextSibling(){return this._nextSibling}set nextSibling(e){this._nextSibling=e,this.ownerDocument.markDirty(this)}get parentNode(){return this._parentNode}set parentNode(e){this._parentNode=e,this.ownerDocument.markDirty(this)}get isConnected(){var e;return((e=this.parentNode)===null||e===void 0?void 0:e.isConnected)||!1}appendChild(e){this.ownerDocument.startTransaction(),e.parentNode&&e.parentNode.removeChild(e),this.firstChild==null&&(this.firstChild=e),this.lastChild?(this.lastChild.nextSibling=e,e.index=this.lastChild.index+1,e.previousSibling=this.lastChild):(e.previousSibling=null,e.index=0),e.parentNode=this,e.nextSibling=null,this.lastChild=e,this.ownerDocument.markDirty(this),e.hasSetProps&&this.ownerDocument.addNode(e),this.ownerDocument.endTransaction(),this.ownerDocument.queueUpdate()}insertBefore(e,n){if(n==null)return this.appendChild(e);this.ownerDocument.startTransaction(),e.parentNode&&e.parentNode.removeChild(e),e.nextSibling=n,e.previousSibling=n.previousSibling,e.index=n.index,this.firstChild===n?this.firstChild=e:n.previousSibling&&(n.previousSibling.nextSibling=e),n.previousSibling=e,e.parentNode=n.parentNode;let i=n;for(;i;)i.index++,i=i.nextSibling;e.hasSetProps&&this.ownerDocument.addNode(e),this.ownerDocument.endTransaction(),this.ownerDocument.queueUpdate()}removeChild(e){if(e.parentNode!==this||!this.ownerDocument.isMounted)return;this.ownerDocument.startTransaction();let n=e.nextSibling;for(;n;)n.index--,n=n.nextSibling;e.nextSibling&&(e.nextSibling.previousSibling=e.previousSibling),e.previousSibling&&(e.previousSibling.nextSibling=e.nextSibling),this.firstChild===e&&(this.firstChild=e.nextSibling),this.lastChild===e&&(this.lastChild=e.previousSibling),e.parentNode=null,e.nextSibling=null,e.previousSibling=null,e.index=0,this.ownerDocument.removeNode(e),this.ownerDocument.endTransaction(),this.ownerDocument.queueUpdate()}addEventListener(){}removeEventListener(){}constructor(e){this._firstChild=null,this._lastChild=null,this._previousSibling=null,this._nextSibling=null,this._parentNode=null,this.ownerDocument=e}}class Qc extends $b{get index(){return this._index}set index(e){this._index=e,this.ownerDocument.markDirty(this)}get level(){return this.parentNode instanceof Qc?this.parentNode.level+(this.node.type==="item"?1:0):0}updateNode(){var e,n,i,a;let c=this.ownerDocument.getMutableNode(this);c.index=this.index,c.level=this.level,c.parentKey=this.parentNode instanceof Qc?this.parentNode.node.key:null;var d;c.prevKey=(d=(e=this.previousSibling)===null||e===void 0?void 0:e.node.key)!==null&&d!==void 0?d:null;var f;c.nextKey=(f=(n=this.nextSibling)===null||n===void 0?void 0:n.node.key)!==null&&f!==void 0?f:null,c.hasChildNodes=!!this.firstChild;var v;c.firstChildKey=(v=(i=this.firstChild)===null||i===void 0?void 0:i.node.key)!==null&&v!==void 0?v:null;var m;c.lastChildKey=(m=(a=this.lastChild)===null||a===void 0?void 0:a.node.key)!==null&&m!==void 0?m:null}setProps(e,n,i,a){let c=this.ownerDocument.getMutableNode(this),{value:d,textValue:f,id:v,...m}=e;if(m.ref=n,c.props=m,c.rendered=i,c.render=a,c.value=d,c.textValue=f||(typeof m.children=="string"?m.children:"")||e["aria-label"]||"",v!=null&&v!==c.key){if(this.hasSetProps)throw new Error("Cannot change the id of an item");c.key=v}this.hasSetProps||(this.ownerDocument.addNode(this),this.ownerDocument.endTransaction(),this.hasSetProps=!0),this.ownerDocument.queueUpdate()}get style(){return{}}hasAttribute(){}setAttribute(){}setAttributeNS(){}removeAttribute(){}constructor(e,n){super(n),this.nodeType=8,this._index=0,this.hasSetProps=!1,this.node=new Uv(e,`react-aria-${++n.nodeId}`),this.ownerDocument.startTransaction()}}class qR extends $b{get isConnected(){return this.isMounted}createElement(e){return new Qc(e,this)}getMutableNode(e){let n=e.node;return this.mutatedNodes.has(e)||(n=e.node.clone(),this.mutatedNodes.add(e),e.node=n),this.markDirty(e),n}getMutableCollection(){return!this.isSSR&&!this.collectionMutated&&(this.collection=this.collection.clone(),this.collectionMutated=!0),this.collection}markDirty(e){this.dirtyNodes.add(e)}startTransaction(){this.transactionCount++}endTransaction(){this.transactionCount--}addNode(e){let n=this.getMutableCollection();if(!n.getItem(e.node.key)){n.addNode(e.node);for(let i of e)this.addNode(i)}this.markDirty(e)}removeNode(e){for(let i of e)this.removeNode(i);this.getMutableCollection().removeNode(e.node.key),this.markDirty(e)}getCollection(){return this.transactionCount>0?this.collection:(this.updateCollection(),this.collection)}updateCollection(){for(let c of this.dirtyNodes)c instanceof Qc&&c.isConnected&&c.updateNode();if(this.dirtyNodes.clear(),this.mutatedNodes.size||this.collectionMutated){var e,n;let c=this.getMutableCollection();for(let d of this.mutatedNodes)d.isConnected&&c.addNode(d.node);var i,a;c.commit((i=(e=this.firstChild)===null||e===void 0?void 0:e.node.key)!==null&&i!==void 0?i:null,(a=(n=this.lastChild)===null||n===void 0?void 0:n.node.key)!==null&&a!==void 0?a:null,this.isSSR),this.mutatedNodes.clear()}this.collectionMutated=!1}queueUpdate(){if(!(this.dirtyNodes.size===0||this.transactionCount>0))for(let e of this.subscriptions)e()}subscribe(e){return this.subscriptions.add(e),()=>this.subscriptions.delete(e)}resetAfterSSR(){this.isSSR&&(this.isSSR=!1,this.firstChild=null,this.lastChild=null,this.nodeId=0)}constructor(e){super(null),this.nodeType=11,this.ownerDocument=this,this.dirtyNodes=new Set,this.isSSR=!1,this.nodeId=0,this.nodesByProps=new WeakMap,this.isMounted=!0,this.mutatedNodes=new Set,this.subscriptions=new Set,this.transactionCount=0,this.collection=e,this.collectionMutated=!0}}function Sb(t){let{children:e,items:n,idScope:i,addIdAndValue:a,dependencies:c=[]}=t,d=x.useMemo(()=>new WeakMap,c);return x.useMemo(()=>{if(n&&typeof e=="function"){let m=[];for(let g of n){let b=d.get(g);if(!b){b=e(g);var f,v;let S=(v=(f=b.props.id)!==null&&f!==void 0?f:g.key)!==null&&v!==void 0?v:g.id;if(S==null)throw new Error("Could not determine key for item");i&&(S=i+":"+S),b=x.cloneElement(b,a?{key:S,id:S,value:g}:{key:S}),d.set(g,b)}m.push(b)}return m}else if(typeof e!="function")return e},[e,n,d,i,a])}if(typeof HTMLTemplateElement<"u"){const t=Object.getOwnPropertyDescriptor(Node.prototype,"firstChild").get;Object.defineProperty(HTMLTemplateElement.prototype,"firstChild",{configurable:!0,enumerable:!0,get:function(){return this.dataset.reactAriaHidden?this.content.firstChild:t.call(this)}})}const F5=x.createContext(!1),YR=typeof DocumentFragment<"u"?new DocumentFragment:null;function XR(t){let e=x.useContext(F5),n=M2();if(e)return ee.createElement(ee.Fragment,null,t.children);let i=ee.createElement(F5.Provider,{value:!0},t.children);return n?ee.createElement("template",{"data-react-aria-hidden":!0},i):Is.createPortal(i,YR)}function Gv(t){let e=(n,i)=>x.useContext(F5)?null:t(n,i);return e.displayName=t.displayName||t.name,x.forwardRef(e)}function QR(){return x.useContext(F5)}var g3={exports:{}},y3={};/** + `),()=>{document.head.removeChild(g)}},[e]),k.jsx(pA,{isPresent:e,childRef:i,sizeRef:a,children:x.cloneElement(t,{ref:i})})}const t3=({children:t,initial:e,isPresent:n,onExitComplete:i,custom:a,presenceAffectsLayout:c,mode:d})=>{const f=tn(hA),v=x.useId(),m=x.useMemo(()=>({id:v,initial:e,isPresent:n,custom:a,onExitComplete:g=>{f.set(g,!0);for(const b of f.values())if(!b)return;i&&i()},register:g=>(f.set(g,!1),()=>f.delete(g))}),c?[Math.random()]:[n]);return x.useMemo(()=>{f.forEach((g,b)=>f.set(b,!1))},[n]),x.useEffect(()=>{!n&&!f.size&&i&&i()},[n]),d==="popLayout"&&(t=k.jsx(vA,{isPresent:n,children:t})),k.jsx(Zs.Provider,{value:m,children:t})};function hA(){return new Map}function Bv(t){return x.useEffect(()=>()=>t(),[])}const Pl=t=>t.key||"";function mA(t,e){t.forEach(n=>{const i=Pl(n);e.set(i,n)})}function gA(t){const e=[];return x.Children.forEach(t,n=>{x.isValidElement(n)&&e.push(n)}),e}const yA=({children:t,custom:e,initial:n=!0,onExitComplete:i,exitBeforeEnter:a,presenceAffectsLayout:c=!0,mode:d="sync"})=>{const f=x.useContext(As).forceRender||vf()[0],v=oy(),m=gA(t);let g=m;const b=x.useRef(new Map).current,S=x.useRef(g),C=x.useRef(new Map).current,P=x.useRef(!0);if(xo(()=>{P.current=!1,mA(m,C),S.current=g}),Bv(()=>{P.current=!0,C.clear(),b.clear()}),P.current)return k.jsx(k.Fragment,{children:g.map(R=>k.jsx(t3,{isPresent:!0,initial:n?void 0:!1,presenceAffectsLayout:c,mode:d,children:R},Pl(R)))});g=[...g];const T=S.current.map(Pl),A=m.map(Pl),V=T.length;for(let R=0;R{if(A.indexOf(F)!==-1)return;const N=C.get(F);if(!N)return;const z=T.indexOf(F);let U=R;if(!U){const le=()=>{b.delete(F);const D=Array.from(C.keys()).filter(ie=>!A.includes(ie));if(D.forEach(ie=>C.delete(ie)),S.current=m.filter(ie=>{const j=Pl(ie);return j===F||D.includes(j)}),!b.size){if(v.current===!1)return;f(),i&&i()}};U=k.jsx(t3,{isPresent:!1,onExitComplete:le,custom:e,presenceAffectsLayout:c,mode:d,children:N},Pl(N)),b.set(F,U)}g.splice(z,0,U)}),g=g.map(R=>{const F=R.key;return b.has(F)?R:k.jsx(t3,{isPresent:!0,presenceAffectsLayout:c,mode:d,children:R},Pl(R))}),k.jsx(k.Fragment,{children:b.size?g:g.map(R=>x.cloneElement(R))})};function bA({children:t,isValidProp:e,...n}){e&&D8(e),n={...x.useContext(T2),...n},n.isStatic=tn(()=>n.isStatic);const i=x.useMemo(()=>n,[JSON.stringify(n.transition),n.transformPagePoint,n.reducedMotion]);return k.jsx(T2.Provider,{value:i,children:t})}function ly({children:t,features:e,strict:n=!1}){const[,i]=x.useState(!n3(e)),a=x.useRef(void 0);if(!n3(e)){const{renderer:c,...d}=e;a.current=c,q3(d)}return x.useEffect(()=>{n3(e)&&e().then(({renderer:c,...d})=>{q3(d),a.current=c,i(!0)})},[]),k.jsx(jp.Provider,{value:{renderer:a.current,strict:n},children:t})}function n3(t){return typeof t=="function"}const ay=x.createContext(null),xA=t=>!t.isLayoutDirty&&t.willUpdate(!1);function d6(){const t=new Set,e=new WeakMap,n=()=>t.forEach(xA);return{add:i=>{t.add(i),e.set(i,i.addEventListener("willUpdate",n))},remove:i=>{t.delete(i);const a=e.get(i);a&&(a(),e.delete(i)),n()},dirty:n}}const sy=t=>t===!0,wA=t=>sy(t===!0)||t==="id",uy=({children:t,id:e,inherit:n=!0})=>{const i=x.useContext(As),a=x.useContext(ay),[c,d]=vf(),f=x.useRef(null),v=i.id||a;f.current===null&&(wA(n)&&v&&(e=e?v+"-"+e:v),f.current={id:e,group:sy(n)&&i.group||d6()});const m=x.useMemo(()=>({...f.current,forceRender:c}),[d]);return k.jsx(As.Provider,{value:m,children:t})},cy=x.createContext(null);function $A(t,e,n,i){if(!i)return t;const a=t.findIndex(g=>g.value===e);if(a===-1)return t;const c=i>0?1:-1,d=t[a+c];if(!d)return t;const f=t[a],v=d.layout,m=j0(v.min,v.max,.5);return c===1&&f.layout.max+n>m||c===-1&&f.layout.min+nRv(e)),v=[],m=x.useRef(!1),g={axis:n,registerItem:(b,S)=>{const C=v.findIndex(P=>b===P.value);C!==-1?v[C].layout=S[n]:v.push({value:b,layout:S[n]}),v.sort(PA)},updateOrder:(b,S,C)=>{if(m.current)return;const P=$A(v,b,S,C);v!==P&&(m.current=!0,i(P.map(_A).filter(T=>a.indexOf(T)!==-1)))}};return x.useEffect(()=>{m.current=!1}),k.jsx(f,{...c,ref:d,ignoreStrict:!0,children:k.jsx(cy.Provider,{value:g,children:t})})}const CA=x.forwardRef(SA);function _A(t){return t.value}function PA(t,e){return t.layout.min-e.layout.min}function go(t){const e=tn(()=>Kr(t)),{isStatic:n}=x.useContext(T2);if(n){const[,i]=x.useState(t);x.useEffect(()=>e.on("change",i),[])}return e}const EA=t=>t&&typeof t=="object"&&t.mix,kA=t=>EA(t)?t.mix:void 0;function dy(...t){const e=!Array.isArray(t[0]),n=e?0:-1,i=t[0+n],a=t[1+n],c=t[2+n],d=t[3+n],f=df(a,c,{mixer:kA(c[0]),...d});return e?f(i):f}function Vv(t,e){const n=go(e()),i=()=>n.set(e());return i(),xo(()=>{const a=()=>Je.preRender(i,!1,!0),c=t.map(d=>d.on("change",a));return()=>{c.forEach(d=>d()),Dn(i)}}),n}function TA(t){Vc.current=[],t();const e=Vv(Vc.current,t);return Vc.current=void 0,e}function R5(t,e,n,i){if(typeof t=="function")return TA(t);const a=typeof e=="function"?e:dy(e,n,i);return Array.isArray(t)?f6(t,a):f6([t],([c])=>a(c))}function f6(t,e){const n=tn(()=>[]);return Vv(t,()=>{n.length=0;const i=t.length;for(let a=0;aRv(i)),m=x.useContext(cy),g={x:p6(e.x),y:p6(e.y)},b=R5([g.x,g.y],([T,A])=>T||A?1:"unset"),{axis:S,registerItem:C,updateOrder:P}=m;return k.jsx(v,{drag:S,...d,dragSnapToOrigin:!0,style:{...e,x:g.x,y:g.y,zIndex:b},layout:c,onDrag:(T,A)=>{const{velocity:V}=A;V[S]&&P(n,g[S].get(),V[S]),a&&a(T,A)},onLayoutMeasure:T=>C(n,T),ref:f,ignoreStrict:!0,children:t})}const AA=x.forwardRef(MA),LA={Group:CA,Item:AA},fy={renderer:Dv,...Tv,...U8},DA={...fy,...Xg,...ny};function RA(t,...e){const n=t.length;function i(){let a="";for(let c=0;c{}),f=()=>{const m=i.current;m&&m.time===0&&m.sample(mt.delta),v(),i.current=$g({keyframes:[a.get(),c.current],velocity:a.getVelocity(),type:"spring",restDelta:.001,restSpeed:.01,...e,onUpdate:d.current})},v=()=>{i.current&&i.current.stop()};return x.useInsertionEffect(()=>a.attach((m,g)=>n?g(m):(c.current=m,d.current=g,Je.update(f),a.get()),v),[JSON.stringify(e)]),xo(()=>{if(G0(t))return t.on("change",m=>a.set(parseFloat(m)))},[a]),a}function py(t,e,n){x.useInsertionEffect(()=>t.on(e,n),[t,e,n])}function VA(t){const e=go(t.getVelocity()),n=()=>{const i=t.getVelocity();e.set(i),i&&Je.update(n)};return py(t,"change",()=>{Je.update(n,!1,!0)}),e}function hf(t,e,n){var i;if(typeof t=="string"){let a=document;e&&(tf(!!e.current),a=e.current),n?((i=n[t])!==null&&i!==void 0||(n[t]=a.querySelectorAll(t)),t=n[t]):t=a.querySelectorAll(t)}else t instanceof Element&&(t=[t]);return Array.from(t||[])}const p5=new WeakMap;let lo;function IA(t,e){if(e){const{inlineSize:n,blockSize:i}=e[0];return{width:n,height:i}}else return t instanceof SVGElement&&"getBBox"in t?t.getBBox():{width:t.offsetWidth,height:t.offsetHeight}}function FA({target:t,contentRect:e,borderBoxSize:n}){var i;(i=p5.get(t))===null||i===void 0||i.forEach(a=>{a({target:t,contentSize:e,get size(){return IA(t,n)}})})}function ZA(t){t.forEach(FA)}function OA(){typeof ResizeObserver>"u"||(lo=new ResizeObserver(ZA))}function NA(t,e){lo||OA();const n=hf(t);return n.forEach(i=>{let a=p5.get(i);a||(a=new Set,p5.set(i,a)),a.add(e),lo==null||lo.observe(i)}),()=>{n.forEach(i=>{const a=p5.get(i);a==null||a.delete(e),a!=null&&a.size||lo==null||lo.unobserve(i)})}}const v5=new Set;let Zc;function HA(){Zc=()=>{const t={width:window.innerWidth,height:window.innerHeight},e={target:window,size:t,contentSize:t};v5.forEach(n=>n(e))},window.addEventListener("resize",Zc)}function zA(t){return v5.add(t),Zc||HA(),()=>{v5.delete(t),!v5.size&&Zc&&(Zc=void 0)}}function jA(t,e){return typeof t=="function"?zA(t):NA(t,e)}const KA=50,v6=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0}),WA=()=>({time:0,x:v6(),y:v6()}),UA={x:{length:"Width",position:"Left"},y:{length:"Height",position:"Top"}};function h6(t,e,n,i){const a=n[e],{length:c,position:d}=UA[e],f=a.current,v=n.time;a.current=t[`scroll${d}`],a.scrollLength=t[`scroll${c}`]-t[`client${c}`],a.offset.length=0,a.offset[0]=0,a.offset[1]=a.scrollLength,a.progress=mo(0,a.scrollLength,a.current);const m=i-v;a.velocity=m>KA?0:pv(a.current-f,m)}function GA(t,e,n){h6(t,"x",e,n),h6(t,"y",e,n),e.time=n}function qA(t,e){const n={x:0,y:0};let i=t;for(;i&&i!==e;)if(i instanceof HTMLElement)n.x+=i.offsetLeft,n.y+=i.offsetTop,i=i.offsetParent;else if(i.tagName==="svg"){const a=i.getBoundingClientRect();i=i.parentElement;const c=i.getBoundingClientRect();n.x+=a.left-c.left,n.y+=a.top-c.top}else if(i instanceof SVGGraphicsElement){const{x:a,y:c}=i.getBBox();n.x+=a,n.y+=c;let d=null,f=i.parentNode;for(;!d;)f.tagName==="svg"&&(d=f),f=i.parentNode;i=d}else break;return n}const YA={All:[[0,0],[1,1]]},hp={start:0,center:.5,end:1};function m6(t,e,n=0){let i=0;if(t in hp&&(t=hp[t]),typeof t=="string"){const a=parseFloat(t);t.endsWith("px")?i=a:t.endsWith("%")?t=a/100:t.endsWith("vw")?i=a/100*document.documentElement.clientWidth:t.endsWith("vh")?i=a/100*document.documentElement.clientHeight:t=a}return typeof t=="number"&&(i=e*t),n+i}const XA=[0,0];function QA(t,e,n,i){let a=Array.isArray(t)?t:XA,c=0,d=0;return typeof t=="number"?a=[t,t]:typeof t=="string"&&(t=t.trim(),t.includes(" ")?a=t.split(" "):a=[t,hp[t]?t:"0"]),c=m6(a[0],n,i),d=m6(a[1],e),c-d}const JA={x:0,y:0};function eL(t){return"getBBox"in t&&t.tagName!=="svg"?t.getBBox():{width:t.clientWidth,height:t.clientHeight}}function tL(t,e,n){const{offset:i=YA.All}=n,{target:a=t,axis:c="y"}=n,d=c==="y"?"height":"width",f=a!==t?qA(a,t):JA,v=a===t?{width:t.scrollWidth,height:t.scrollHeight}:eL(a),m={width:t.clientWidth,height:t.clientHeight};e[c].offset.length=0;let g=!e[c].interpolate;const b=i.length;for(let S=0;SnL(t,i.target,n),update:a=>{GA(t,n,a),(i.offset||i.target)&&tL(t,n,i)},notify:()=>e(n)}}const $c=new WeakMap,g6=new WeakMap,r3=new WeakMap,y6=t=>t===document.documentElement?window:t;function Iv(t,{container:e=document.documentElement,...n}={}){let i=r3.get(e);i||(i=new Set,r3.set(e,i));const a=WA(),c=rL(e,t,a,n);if(i.add(c),!$c.has(e)){const f=()=>{for(const S of i)S.measure()},v=()=>{for(const S of i)S.update(mt.timestamp)},m=()=>{for(const S of i)S.notify()},g=()=>{Je.read(f,!1,!0),Je.read(v,!1,!0),Je.update(m,!1,!0)};$c.set(e,g);const b=y6(e);window.addEventListener("resize",g,{passive:!0}),e!==document.documentElement&&g6.set(e,jA(e,g)),b.addEventListener("scroll",g,{passive:!0})}const d=$c.get(e);return Je.read(d,!1,!0),()=>{var f;Dn(d);const v=r3.get(e);if(!v||(v.delete(c),v.size))return;const m=$c.get(e);$c.delete(e),m&&(y6(e).removeEventListener("scroll",m),(f=g6.get(e))===null||f===void 0||f(),window.removeEventListener("resize",m))}}function b6(t,e){S8(!!(!e||e.current))}const iL=()=>({scrollX:Kr(0),scrollY:Kr(0),scrollXProgress:Kr(0),scrollYProgress:Kr(0)});function Fv({container:t,target:e,layoutEffect:n=!0,...i}={}){const a=tn(iL);return(n?xo:x.useEffect)(()=>(b6("target",e),b6("container",t),Iv(({x:d,y:f})=>{a.scrollX.set(d.current),a.scrollXProgress.set(d.progress),a.scrollY.set(f.current),a.scrollYProgress.set(f.progress)},{...i,container:(t==null?void 0:t.current)||void 0,target:(e==null?void 0:e.current)||void 0})),[t,e,JSON.stringify(i.offset)]),a}function oL(t){return Fv({container:t})}function lL(){return Fv()}function vy(t){const e=x.useRef(0),{isStatic:n}=x.useContext(T2);x.useEffect(()=>{if(n)return;const i=({timestamp:a,delta:c})=>{e.current||(e.current=a),t(a-e.current,c)};return Je.update(i,!0),()=>Dn(i)},[t])}function aL(){const t=go(0);return vy(e=>t.set(e)),t}function hy(){!Av.current&&Qg();const[t]=x.useState(D5.current);return t}function sL(){const t=hy(),{reducedMotion:e}=x.useContext(T2);return e==="never"?!1:e==="always"?!0:t}function uL(t){t.values.forEach(e=>e.stop())}function mp(t,e){[...e].reverse().forEach(i=>{const a=t.getVariant(i);a&&Ev(t,a),t.variantChildren&&t.variantChildren.forEach(c=>{mp(c,e)})})}function cL(t,e){if(Array.isArray(e))return mp(t,e);if(typeof e=="string")return mp(t,[e]);Ev(t,e)}function my(){const t=new Set,e={subscribe(n){return t.add(n),()=>void t.delete(n)},start(n,i){const a=[];return t.forEach(c=>{a.push(pf(c,n,{transitionOverride:i}))}),Promise.all(a)},set(n){return t.forEach(i=>{cL(i,n)})},stop(){t.forEach(n=>{uL(n)})},mount(){return()=>{e.stop()}}};return e}function dL(t){return typeof t=="object"&&!Array.isArray(t)}function fL(t){const e={presenceContext:null,props:{},visualState:{renderState:{transform:{},transformOrigin:{},style:{},vars:{},attrs:{}},latestValues:{}}},n=Wg(t)?new ty(e):new ey(e);n.mount(t),Ds.set(t,n)}function pL(t,e=100){const n=sf({keyframes:[0,e],...t}),i=Math.min(wg(n),op);return{type:"keyframes",ease:a=>n.next(i*a).value/e,duration:_2(i)}}function x6(t,e,n,i){var a;return typeof e=="number"?e:e.startsWith("-")||e.startsWith("+")?Math.max(0,t+parseFloat(e)):e==="<"?n:(a=i.get(e))!==null&&a!==void 0?a:t}const Zv=(t,e,n)=>{const i=e-t;return((n-t)%i+i)%i+t};function vL(t,e){return hg(t)?t[Zv(0,t.length,e)]:t}function hL(t,e,n){for(let i=0;ie&&a.at{const D=xL(F),{delay:ie=0,times:j=wv(D),type:X="keyframes",...xe}=N;let{ease:G=e.ease||"easeOut",duration:Q}=N;const he=typeof ie=="function"?ie(U,le):ie,_e=D.length;if(_e<=2&&X==="spring"){let ae=100;if(_e===2&&SL(D)){const oe=D[1]-D[0];ae=Math.abs(oe)}const H={...xe};Q!==void 0&&(H.duration=hi(Q));const ce=pL(H,ae);G=ce.ease,Q=ce.duration}Q??(Q=a);const se=g+he,fe=se+Q;j.length===1&&j[0]===0&&(j[1]=1);const Pe=j.length-D.length;Pe>0&&xg(j,Pe),D.length===1&&D.unshift(null),mL(z,D,G,j,se,fe),V=Math.max(he+Q,V),b=Math.max(fe,b)};if(G0(P)){const F=w6(P,d);R(T,A,$6("default",F))}else{const F=hf(P,i,f),N=F.length;for(let z=0;z{for(const P in S){const T=S[P];T.sort(gL);const A=[],V=[],R=[];for(let N=0;Ntypeof t=="number",SL=t=>t.every($L);function gy(t,e,n,i){const a=hf(t,i),c=a.length,d=[];for(let f=0;fArray.isArray(t)&&Array.isArray(t[0]);function _L(t,e,n){const i=[];return bL(t,e,n).forEach(({keyframes:c,transition:d},f)=>{let v;G0(f)?v=Mv(f,c.default,d.default):v=gy(f,c,d),i.push(v)}),new Sv(i)}const Ov=t=>{function e(n,i,a){let c;return CL(n)?c=_L(n,i,t):dL(i)?c=gy(n,i,a,t):c=Mv(n,i,a),t&&t.animations.push(c),c}return e},PL=Ov();function EL(){const t=tn(()=>({current:null,animations:[]})),e=tn(()=>Ov(t));return Bv(()=>{t.animations.forEach(n=>n.stop())}),[t,e]}function yy(){const t=tn(my);return xo(t.mount,[]),t}const kL=yy;function TL(...t){const e=x.useRef(0),[n,i]=x.useState(t[e.current]),a=x.useCallback(c=>{e.current=typeof c!="number"?Zv(0,t.length,e.current+1):c,i(t[e.current])},[t.length,...t]);return[n,a]}const ML={some:0,all:1};function by(t,e,{root:n,margin:i,amount:a="some"}={}){const c=hf(t),d=new WeakMap,f=m=>{m.forEach(g=>{const b=d.get(g.target);if(g.isIntersecting!==!!b)if(g.isIntersecting){const S=e(g);typeof S=="function"?d.set(g.target,S):v.unobserve(g.target)}else b&&(b(g),d.delete(g.target))})},v=new IntersectionObserver(f,{root:n,rootMargin:i,threshold:typeof a=="number"?a:ML[a]});return c.forEach(m=>v.observe(m)),()=>v.disconnect()}function AL(t,{root:e,margin:n,amount:i,once:a=!1}={}){const[c,d]=x.useState(!1);return x.useEffect(()=>{if(!t.current||a&&c)return;const f=()=>(d(!0),a?void 0:()=>d(!1)),v={root:e&&e.current||void 0,margin:n,amount:i};return by(t.current,f,v)},[e,t,n,a,i]),c}class xy{constructor(){this.componentControls=new Set}subscribe(e){return this.componentControls.add(e),()=>this.componentControls.delete(e)}start(e,n){this.componentControls.forEach(i=>{i.start(e.nativeEvent||e,n)})}}const LL=()=>new xy;function DL(){return tn(LL)}function RL(t,e,n,i){x.useEffect(()=>{const a=t.current;if(n&&a)return b2(a,e,n,i)},[t,e,n,i])}function wy(t){return t!==null&&typeof t=="object"&&Yp in t}function BL(t){if(wy(t))return t[Yp]}function $y(){return VL}function VL(t){Al.current&&(Al.current.isUpdating=!1,Al.current.blockUpdate(),t&&t())}function IL(){const[t,e]=vf(),n=$y(),i=x.useRef();return x.useEffect(()=>{Je.postRender(()=>Je.postRender(()=>{e===i.current&&(Yc.current=!1)}))},[e]),a=>{n(()=>{Yc.current=!0,t(),a(),i.current=e+1})}}function FL(){Yc.current=!1}function ZL(){return x.useCallback(()=>{const e=Al.current;e&&e.resetTree()},[])}const Sy=(t,e)=>`${t}: ${e}`,ws=new Map;let i3;function OL(t,e,n,i){const a=xi.has(e)?"transform":e,c=Sy(t,a),d=ws.get(c);if(!d)return null;const{animation:f,startTime:v}=d,m=()=>{if(ws.delete(c),i)i.render(()=>i.render(()=>{try{f.cancel()}catch{}}));else try{f.cancel()}catch{}};return v===null||window.HandoffComplete?(m(),null):(i3===void 0&&(i3=performance.now()),i3-v||0)}let r5,cs;function NL(t,e,n,i,a){if(window.HandoffComplete){window.HandoffAppearAnimations=void 0;return}const c=t.dataset[b8];if(!c)return;window.HandoffAppearAnimations=OL;const d=Sy(c,e);cs||(cs=lp(t,e,[n[0],n[0]],{duration:1e4,ease:"linear"}),ws.set(d,{animation:cs,startTime:null}),window.HandoffCancelAllAnimations||(window.HandoffCancelAllAnimations=()=>{ws.forEach(({animation:v})=>{v.cancel()}),ws.clear(),window.HandoffCancelAllAnimations=void 0}));const f=()=>{cs.cancel();const v=lp(t,e,n,i);r5===void 0&&(r5=performance.now()),v.startTime=r5,ws.set(d,{animation:v,startTime:r5}),a&&a(v)};cs.ready?cs.ready.then(f).catch(Rt):f()}const gp=()=>({});class HL extends Lv{build(){}measureInstanceViewportBox(){return J0()}resetTransform(){}restoreTransform(){}removeValueFromRenderState(){}renderInstance(){}scrapeMotionValuesFromProps(){return gp()}getBaseTargetFromProps(){}readValueFromInstance(e,n,i){return i.initialState[n]||0}sortInstanceNodePosition(){return 0}}const zL=rf({scrapeMotionValuesFromProps:gp,createRenderState:gp});function jL(t){const[e,n]=x.useState(t),i=zL({},!1),a=tn(()=>new HL({props:{},visualState:i,presenceContext:null},{initialState:t}));x.useEffect(()=>(a.mount({}),()=>a.unmount()),[a]),x.useEffect(()=>{a.update({onUpdate:d=>{n({...d})}},null)},[n,a]);const c=tn(()=>d=>pf(a,d));return[e,c]}const KL=1e5,S6=t=>t>.001?1/t:KL;function WL(t){let e=go(1),n=go(1);const{visualElement:i}=x.useContext(Fs);t?(e=t.scaleX||e,n=t.scaleY||n):i&&(e=i.getValue("scaleX",1),n=i.getValue("scaleY",1));const a=R5(e,S6),c=R5(n,S6);return{scaleX:a,scaleY:c}}let UL=0;const GL=({children:t})=>(x.useEffect(()=>{},[]),k.jsx(uy,{id:tn(()=>`asl-${UL++}`),children:t}));function qL({source:t,axis:e="y"}){const n={value:0},i=Iv(a=>{n.value=a[e].progress*100},{container:t,axis:e});return{currentTime:n,cancel:i}}const o3=new Map;function YL({source:t=document.documentElement,axis:e="y"}={}){o3.has(t)||o3.set(t,{});const n=o3.get(t);return n[e]||(n[e]=Eg()?new ScrollTimeline({source:t,axis:e}):qL({source:t,axis:e})),n[e]}function XL(t,e){const n=YL(e);return typeof t=="function"?Pg(t,n):t.attachTimeline(n)}function QL(t,e){if(t==="first")return 0;{const n=e-1;return t==="last"?n:n/2}}function JL(t=.1,{startDelay:e=0,from:n=0,ease:i}={}){return(a,c)=>{const d=typeof n=="number"?n:QL(n,c),f=Math.abs(d-a);let v=t*f;if(i){const m=c*t;v=rp(i)(v/m)*m}return e+v}}const eD=Je,tD=kc.reduce((t,e)=>(t[e]=n=>Dn(n),t),{}),nD=Object.freeze(Object.defineProperty({__proto__:null,AcceleratedAnimation:ap,AnimatePresence:yA,AnimateSharedLayout:GL,DeprecatedLayoutGroupContext:ay,DragControls:xy,FlatTree:jg,LayoutGroup:uy,LayoutGroupContext:As,LazyMotion:ly,MotionConfig:bA,MotionConfigContext:T2,MotionContext:Fs,MotionGlobalConfig:J5,MotionValue:Pv,PresenceContext:Zs,Reorder:LA,SwitchLayoutGroupContext:Up,VisualElement:Lv,addPointerEvent:S2,addPointerInfo:z8,addScaleCorrector:_8,animate:PL,animateValue:$g,animateVisualElement:pf,animationControls:my,animations:Tv,anticipate:yg,backIn:cf,backInOut:gg,backOut:yv,buildTransform:E8,calcLength:Rn,cancelFrame:Dn,cancelSync:tD,circIn:uf,circInOut:mg,circOut:gv,clamp:gi,color:zt,complex:yi,createBox:J0,createDomMotionComponent:fA,createMotionComponent:Xp,createScopedAnimate:Ov,cubicBezier:Ns,delay:Kg,disableInstantTransitions:FL,distance:cp,distance2D:Mg,domAnimation:fy,domMax:DA,easeIn:pg,easeInOut:vv,easeOut:vg,filterProps:R8,frame:Je,frameData:mt,inView:by,interpolate:df,invariant:tf,isBrowser:X5,isDragActive:sv,isMotionComponent:wy,isMotionValue:G0,isValidMotionProp:qc,m:iy,makeUseVisualState:rf,mirrorEasing:hv,mix:xv,motion:Rv,motionValue:Kr,optimizedAppearDataAttribute:Kp,pipe:C2,progress:mo,px:je,resolveMotionValue:Bc,reverseEasing:mv,scroll:XL,scrollInfo:Iv,spring:sf,stagger:JL,startOptimizedAppearAnimation:NL,steps:c5,sync:eD,transform:dy,unwrapMotionComponent:BL,useAnimate:EL,useAnimation:kL,useAnimationControls:yy,useAnimationFrame:vy,useCycle:TL,useDeprecatedAnimatedState:jL,useDeprecatedInvertedScale:WL,useDomEvent:RL,useDragControls:DL,useElementScroll:oL,useForceUpdate:vf,useInView:AL,useInstantLayoutTransition:$y,useInstantTransition:IL,useIsPresent:EM,useIsomorphicLayoutEffect:xo,useMotionTemplate:RA,useMotionValue:go,useMotionValueEvent:py,usePresence:Fg,useReducedMotion:hy,useReducedMotionConfig:sL,useResetProjection:ZL,useScroll:Fv,useSpring:BA,useTime:aL,useTransform:R5,useUnmountEffect:Bv,useVelocity:VA,useViewportScroll:lL,useWillChange:GT,visualElementStore:Ds,warning:S8,wrap:Zv},Symbol.toStringTag,{value:"Module"})),rD="lKzIqa_Popover",ds={Popover:rD,"Popover-content":"lKzIqa_Popover-content","Popover-content--restrictWidth":"lKzIqa_Popover-content--restrictWidth","Popover-scroller":"lKzIqa_Popover-scroller","Popover-target":"lKzIqa_Popover-target","Popover-target--disabled":"lKzIqa_Popover-target--disabled"},iD=()=>I_(()=>Promise.resolve().then(()=>nD),void 0,import.meta.url).then(t=>t.domAnimation),C6=(t,e)=>t===e||(t==null?void 0:t.contains(e)),oD=({rootElementTag:t="span",placement:e="bottom",restrictHeight:n=!0,restrictWidth:i=!0,isModal:a=!1,isFixed:c=!1,interactionKind:d="click",hoverOpenDelay:f=250,hoverCloseDelay:v=250,disablePlacementFlip:m=!1,allowBoundaryElementOverflow:g=!1,isOpen:b,enableArrow:S,enforceFocus:C,onClick:P,onInteraction:T,onClose:A,disabled:V,children:R,target:F,content:N,targetClassName:z,targetTestId:U,popoverClassName:le,popoverContentClassName:D,rootElementStyle:ie,offset:j,targetElementRef:X,"data-test-id":xe="popover"})=>{var G;const[Q,he]=x.useState(b??void 0),[_e,se]=x.useState(),fe=x.useRef(null),Pe=x.useCallback(De=>{if(De!==null)return se(De)},[]),ae=x.useRef(null),H=x.useRef(),ce=x.useRef(),oe=x.useRef(`popover-${x.useId()}`),q=x.useCallback(async()=>{var De,i0;const Ze=[];if(_e==null)return;g||Ze.push(hP({padding:5})),!m&&!j&&Ze.push(mP({padding:5})),j&&Ze.push(q_(j)),S&&ae.current&&Ze.push(gP({element:ae.current}));const q0=(De=fe.current)==null?void 0:De.closest(".has-overlay"),$0=c||q0?"fixed":"absolute";ce.current={placement:e,middleware:Ze,strategy:$0};const W0=fe.current;if(!W0||!W0.childNodes)return;const jt=W0.childNodes[0],{x:Kt,y:e0,placement:c0,middlewareData:er,strategy:St}=await yP(jt,_e,ce.current);if(_e&&(Object.assign(_e.style,{left:`${Kt}px`,top:`${e0}px`,position:St}),_e.dataset.popoverPlacement=c0),S&&ae.current&&er.arrow){const{x:Wr,y:pn}=er.arrow,Ur={top:"bottom",right:"left",bottom:"top",left:"right"}[c0.split("-")[0]];Ur&&Object.assign((i0=ae.current)==null?void 0:i0.style,{left:Wr!==null?`${Wr}px`:"",top:pn!==null?`${pn}px`:"",right:"",bottom:"",[Ur]:"5px"})}},[g,m,S,c,j,e,_e]);x.useEffect(()=>()=>{H.current&&clearTimeout(H.current)},[]),x.useEffect(()=>{(async()=>{Q&&_e!=null?(window.addEventListener("scroll",q,{passive:!0}),window.addEventListener("resize",q,{passive:!0}),await q()):(window.removeEventListener("scroll",q),window.removeEventListener("resize",q))})()},[Q,N,_e,q]),x.useEffect(()=>{he(b)},[b]);const ue=De=>{const i0=De.target;P==null||P(),!V&&fe.current&&C6(fe.current,i0)&&ze(Q?!1:!De.defaultPrevented)},$e=()=>{V||(ze(!0,f),g0())},Ee=()=>{ze(!1,v),k0()},Se=()=>{V||(ze(!0),g0())},me=()=>{ze(!1),k0()},Be=De=>{var i0;const Ze=De.target;(i0=Ze==null?void 0:Ze.closest)!=null&&i0.call(Ze,".popover-dismiss")&&ze(!1)},ke=De=>{const i0=De.target;(fe.current&&!C6(fe.current,i0)||De.nativeEvent instanceof KeyboardEvent)&&ze(!1)},ze=(De,i0)=>{H.current&&clearTimeout(H.current),typeof i0<"u"&&i0>0?H.current=setTimeout(()=>ze(De),i0):(b==null?he(De):typeof T=="function"&&T(De),De||typeof A=="function"&&A())},Ye=()=>{const[De,i0]=x.Children.toArray(R);return{target:De??F,content:i0??N}},g0=()=>{window.addEventListener("keydown",l0,!0)},k0=()=>{window.removeEventListener("keydown",l0,!0)},l0=De=>{De.key==="Escape"&&(De.stopPropagation(),he(!1),k0())},w0=De=>{const i0=ft(ds.Popover,le);let Ze={};d==="hover"&&(Ze={onMouseEnter:$e,onMouseLeave:Ee,onPointerEnter:$e,onPointerLeave:Ee}),d!=="hover-target-only"&&(Ze.onClick=Be);const q0=k.jsx(ly,{strict:!0,features:iD,children:k.jsxs(iy.div,{transition:{duration:.15},initial:{opacity:0},animate:{opacity:1},className:ft(ds["Popover-content"],i&&ds["Popover-content--restrictWidth"],D),tabIndex:d==="click"?-1:void 0,children:[S&&k.jsx("div",{id:"arrow",ref:ae}),n?k.jsx("div",{className:ds["Popover-scroller"],children:De}):De]})});return k.jsx("div",{id:oe.current,ref:Pe,className:i0,role:"tooltip","data-test-id":xe,"aria-hidden":!Q,...Ze,children:C||d==="click"?k.jsx(BE,{autoFocus:!0,children:q0}):q0})},{target:r0,content:a0}=Ye(),tt=a0==null||typeof a0=="string"&&!a0,y0=x.isValidElement(r0)?!!((G=r0==null?void 0:r0.props)!=null&&G.disabled):!1,d0={ref:fe,className:ft(ds["Popover-target"],z,y0&&ds["Popover-target--disabled"]),style:ie,"data-test-id":U||"popover-target"};return d==="hover"||d==="hover-target-only"||d==="hover-or-focus"?(d0.onMouseEnter=$e,d0.onMouseLeave=Ee,d0.onPointerEnter=$e,d0.onPointerLeave=Ee,d==="hover-or-focus"&&(d0.onFocus=Se,d0.onBlur=me)):d0.onClick=ue,x.createElement(t,d0,x.cloneElement(r0,{ref:X,...Q&&{"aria-describedby":oe.current},"data-state":Q?"open":"closed"}),k.jsx(VE,{isOpen:!!Q&&!tt,canOutsideClickClose:d==="click",isModal:a,enforceFocus:C,onClose:ke,children:k.jsx("div",{children:w0(a0)})}))},lD="gdNzta_Tooltip",_6={Tooltip:lD,"Tooltip-popover-content":"gdNzta_Tooltip-popover-content"},aD=({className:t,children:e,targetClassName:n,hoverCloseDelay:i=0,"data-test-id":a="tooltip",popoverContentClassName:c,...d})=>k.jsx(oD,{enforceFocus:!1,interactionKind:"hover-or-focus",hoverCloseDelay:i,popoverClassName:ft(_6.Tooltip,t),popoverContentClassName:ft(c,_6["Tooltip-popover-content"]),targetClassName:n,"data-test-id":a,...d,children:e}),Cy=x.forwardRef((t,e)=>k.jsx(aD,{...t,targetElementRef:e}));Cy.displayName="Tooltip";const _y=7e3;let l3=null;function sD(t,e="assertive",n=_y){l3||(l3=new uD),l3.announce(t,e,n)}class uD{createLog(e){let n=document.createElement("div");return n.setAttribute("role","log"),n.setAttribute("aria-live",e),n.setAttribute("aria-relevant","additions"),n}destroy(){this.node&&(document.body.removeChild(this.node),this.node=null)}announce(e,n="assertive",i=_y){if(!this.node)return;let a=document.createElement("div");a.textContent=e,n==="assertive"?this.assertiveLog.appendChild(a):this.politeLog.appendChild(a),e!==""&&setTimeout(()=>{a.remove()},i)}clear(e){this.node&&((!e||e==="assertive")&&(this.assertiveLog.innerHTML=""),(!e||e==="polite")&&(this.politeLog.innerHTML=""))}constructor(){this.node=document.createElement("div"),this.node.dataset.liveAnnouncer="true",Object.assign(this.node.style,{border:0,clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"}),this.assertiveLog=this.createLog("assertive"),this.node.appendChild(this.assertiveLog),this.politeLog=this.createLog("polite"),this.node.appendChild(this.politeLog),document.body.prepend(this.node)}}const cD="Qz6VAq_basic",dD="Qz6VAq_CopyCodeButton",fD="Qz6VAq_minimal",a3={basic:cD,CopyCodeButton:dD,"CopyCodeButton--icon":"Qz6VAq_CopyCodeButton--icon",minimal:fD},Py=x.forwardRef(({className:t,children:e,"data-test-id":n="copy-code-button",kind:i,...a},c)=>k.jsxs("button",{ref:c,"data-test-id":n,type:"button",className:ft(a3.CopyCodeButton,t,i&&a3[i]),...a,children:[e,(i==="basic"||i==="minimal")&&k.jsx(K0,{name:"copy-clipboard",className:ft(a3["CopyCodeButton--icon"]),"aria-hidden":"true",size:"small"})]}));Py.displayName="CopyCodeButton";const pD="_2mzveG_CopyToClipboard",h5={"Clipboard-checkmark":"_2mzveG_Clipboard-checkmark","Clipboard-confirmation":"_2mzveG_Clipboard-confirmation","Clipboard-copied":"_2mzveG_Clipboard-copied",CopyToClipboard:pD},vD=()=>k.jsxs("span",{className:h5["Clipboard-confirmation"],children:[k.jsx(K0,{name:"check-circle",className:h5["Clipboard-checkmark"],size:"medium"}),k.jsx("span",{className:h5["Clipboard-copied"],children:"Copied!"})]}),mf=x.forwardRef(({customCopiedText:t,text:e,tooltip:n,kind:i,tooltipOptions:a={placement:"bottom"},className:c,popoverTargetClassName:d,children:f,triggerAriaLabel:v,onCopy:m,asChild:g,"data-test-id":b="copy-to-clipboard",...S},C)=>{const[P,T]=x.useState(!1),[A,V]=x.useState(!1),R=x.useRef(null),F=ft(h5.CopyToClipboard,c),N=x.useCallback(async()=>{await navigator.clipboard.writeText(e);const j=R.current;j&&j.focus(),T(!0),V(!0),sD("Copied!","polite",300),m==null||m()},[m,R,e,T,V]);x.useImperativeHandle(C,()=>({handleCopy:N}),[N]);const z=A?t||k.jsx(vD,{}):n||"Copy to clipboard",U=v||`Copy ${e} to your clipboard.`,le=j=>{T(j),setTimeout(()=>V(X=>j&&X))},D=j=>{["Spacebar"," ","Enter"].includes(j.key)&&(j.preventDefault(),N())},ie=g?n1:Py;return k.jsx("span",{className:F,"data-test-id":b,...S,children:k.jsx(Cy,{...a,isOpen:P,content:z,onInteraction:le,targetClassName:d,children:k.jsx(ie,{onClick:N,onKeyDown:D,ref:R,"aria-label":U,role:"button",kind:i,tabIndex:0,children:f})})})});mf.displayName="CopyToClipboard";const hD=({children:t,delayMs:e=250})=>{const[n,i]=x.useState(!1);return x.useEffect(()=>{let a;return typeof e=="number"&&(e===0?i(!0):a=setTimeout(()=>{i(!0)},e)),()=>{a&&clearTimeout(a)}},[e]),n?t:null},mD="dGwt8W_Progress",i5={Progress:mD,"Progress--indeterminate":"dGwt8W_Progress--indeterminate","Progress-head":"dGwt8W_Progress-head","Progress-track":"dGwt8W_Progress-track"},gD=(t,e,n)=>Math.min(Math.max(t,e),n),yD=({value:t,size:e="small","data-test-id":n="progress",className:i,delayMs:a=0})=>{var c;const d={small:{diameter:16},large:{diameter:24},xLarge:{diameter:32}},f=t==null,v=((c=d[e])==null?void 0:c.diameter)||d.small.diameter,m=v*(f?.1:.5),g=v*.5-m*.5,b=2*Math.PI*g,S=k.jsxs("svg",{className:ft(i5.Progress,f&&i5["Progress--indeterminate"],i),width:v,height:v,viewBox:`0 0 ${v} ${v}`,"data-test-id":n,role:"progressbar","aria-valuemin":0,"aria-valuetext":"loading","aria-valuemax":100,children:[k.jsx("circle",{className:i5["Progress-track"],cx:v/2,cy:v/2,r:g,strokeWidth:m}),k.jsx("circle",{className:i5["Progress-head"],cx:v/2,cy:v/2,r:g,strokeWidth:m,strokeDasharray:b,strokeDashoffset:b*(1-(t==null?.25:gD(t,0,1)))})]});return a?k.jsx(hD,{delayMs:a,children:S}):S},x2={top:"top",bottom:"top",left:"left",right:"left"},B5={top:"bottom",bottom:"top",left:"right",right:"left"},bD={top:"left",left:"top"},yp={top:"height",left:"width"},Ey={width:"totalWidth",height:"totalHeight"},o5={};let An=typeof document<"u"&&window.visualViewport;function P6(t){let e=0,n=0,i=0,a=0,c=0,d=0,f={},v=(An==null?void 0:An.scale)>1;if(t.tagName==="BODY"){let b=document.documentElement;i=b.clientWidth,a=b.clientHeight;var m;e=(m=An==null?void 0:An.width)!==null&&m!==void 0?m:i;var g;n=(g=An==null?void 0:An.height)!==null&&g!==void 0?g:a,f.top=b.scrollTop||t.scrollTop,f.left=b.scrollLeft||t.scrollLeft,An&&(c=An.offsetTop,d=An.offsetLeft)}else({width:e,height:n,top:c,left:d}=_s(t)),f.top=t.scrollTop,f.left=t.scrollLeft,i=e,a=n;return Vp()&&(t.tagName==="BODY"||t.tagName==="HTML")&&v&&(f.top=0,f.left=0,c=An.pageTop,d=An.pageLeft),{width:e,height:n,totalWidth:i,totalHeight:a,scroll:f,top:c,left:d}}function xD(t){return{top:t.scrollTop,left:t.scrollLeft,width:t.scrollWidth,height:t.scrollHeight}}function E6(t,e,n,i,a,c,d){let f=a.scroll[t],v=i[yp[t]],m=i.scroll[x2[t]]+c,g=v+i.scroll[x2[t]]-c,b=e-f+d[t]-i[x2[t]],S=e-f+n+d[t]-i[x2[t]];return bg?Math.max(g-S,m-b):0}function wD(t){let e=window.getComputedStyle(t);return{top:parseInt(e.marginTop,10)||0,bottom:parseInt(e.marginBottom,10)||0,left:parseInt(e.marginLeft,10)||0,right:parseInt(e.marginRight,10)||0}}function k6(t){if(o5[t])return o5[t];let[e,n]=t.split(" "),i=x2[e]||"right",a=bD[i];x2[n]||(n="center");let c=yp[i],d=yp[a];return o5[t]={placement:e,crossPlacement:n,axis:i,crossAxis:a,size:c,crossSize:d},o5[t]}function s3(t,e,n,i,a,c,d,f,v,m){let{placement:g,crossPlacement:b,axis:S,crossAxis:C,size:P,crossSize:T}=i,A={};A[C]=t[C],b==="center"?A[C]+=(t[T]-n[T])/2:b!==C&&(A[C]+=t[T]-n[T]),A[C]+=c;const V=t[C]-n[T]+v+m,R=t[C]+t[T]-v-m;if(A[C]=Nc(A[C],V,R),g===S){const F=f?d[P]:e[Ey[P]];A[B5[S]]=Math.floor(F-t[S]+a)}else A[S]=Math.floor(t[S]+t[P]+a);return A}function $D(t,e,n,i,a,c,d,f){const v=i?n.height:e[Ey.height];let m=t.top!=null?n.top+t.top:n.top+(v-t.bottom-d),g=f!=="top"?Math.max(0,e.height+e.top+e.scroll.top-m-(a.top+a.bottom+c)):Math.max(0,m+d-(e.top+e.scroll.top)-(a.top+a.bottom+c));return Math.min(e.height-c*2,g)}function T6(t,e,n,i,a,c){let{placement:d,axis:f,size:v}=c;return d===f?Math.max(0,n[f]-t[f]-t.scroll[f]+e[f]-i[f]-i[B5[f]]-a):Math.max(0,t[v]+t[f]+t.scroll[f]-e[f]-n[f]-n[v]-i[f]-i[B5[f]]-a)}function SD(t,e,n,i,a,c,d,f,v,m,g,b,S,C,P,T){let A=k6(t),{size:V,crossAxis:R,crossSize:F,placement:N,crossPlacement:z}=A,U=s3(e,f,n,A,g,b,m,S,P,T),le=g,D=T6(f,m,e,a,c+g,A);if(d&&i[V]>D){let ae=k6(`${B5[N]} ${z}`),H=s3(e,f,n,ae,g,b,m,S,P,T);T6(f,m,e,a,c+g,ae)>D&&(A=ae,U=H,le=g)}let ie="bottom";A.axis==="top"?A.placement==="top"?ie="top":A.placement==="bottom"&&(ie="bottom"):A.crossAxis==="top"&&(A.crossPlacement==="top"?ie="bottom":A.crossPlacement==="bottom"&&(ie="top"));let j=E6(R,U[R],n[F],f,v,c,m);U[R]+=j;let X=$D(U,f,m,S,a,c,n.height,ie);C&&C{if(!n||i===null)return;let a=c=>{let d=c.target;if(!e.current||d instanceof Node&&!d.contains(e.current)||c.target instanceof HTMLInputElement||c.target instanceof HTMLTextAreaElement)return;let f=i||ky.get(e.current);f&&f()};return window.addEventListener("scroll",a,!0),()=>{window.removeEventListener("scroll",a,!0)}},[n,i,e])}const ED=new Set(["Arab","Syrc","Samr","Mand","Thaa","Mend","Nkoo","Adlm","Rohg","Hebr"]),kD=new Set(["ae","ar","arc","bcc","bqi","ckb","dv","fa","glk","he","ku","mzn","nqo","pnb","ps","sd","ug","ur","yi"]);function TD(t){if(Intl.Locale){let n=new Intl.Locale(t).maximize(),i=typeof n.getTextInfo=="function"?n.getTextInfo():n.textInfo;if(i)return i.direction==="rtl";if(n.script)return ED.has(n.script)}let e=t.split("-")[0];return kD.has(e)}const MD=Symbol.for("react-aria.i18n.locale");function Ty(){let t=typeof window<"u"&&window[MD]||typeof navigator<"u"&&(navigator.language||navigator.userLanguage)||"en-US";try{Intl.DateTimeFormat.supportedLocalesOf([t])}catch{t="en-US"}return{locale:t,direction:TD(t)?"rtl":"ltr"}}let bp=Ty(),Mc=new Set;function L6(){bp=Ty();for(let t of Mc)t(bp)}function AD(){let t=M2(),[e,n]=x.useState(bp);return x.useEffect(()=>(Mc.size===0&&window.addEventListener("languagechange",L6),Mc.add(n),()=>{Mc.delete(n),Mc.size===0&&window.removeEventListener("languagechange",L6)}),[]),t?{locale:"en-US",direction:"ltr"}:e}const LD=ee.createContext(null);function Hs(){let t=AD();return x.useContext(LD)||t}const DD=Symbol.for("react-aria.i18n.locale"),RD=Symbol.for("react-aria.i18n.strings");let fs;class gf{getStringForLocale(e,n){let a=this.getStringsForLocale(n)[e];if(!a)throw new Error(`Could not find intl message ${e} in ${n} locale`);return a}getStringsForLocale(e){let n=this.strings[e];return n||(n=BD(e,this.strings,this.defaultLocale),this.strings[e]=n),n}static getGlobalDictionaryForPackage(e){if(typeof window>"u")return null;let n=window[DD];if(fs===void 0){let a=window[RD];if(!a)return null;fs={};for(let c in a)fs[c]=new gf({[n]:a[c]},n)}let i=fs==null?void 0:fs[e];if(!i)throw new Error(`Strings for package "${e}" were not included by LocalizedStringProvider. Please add it to the list passed to createLocalizedStringDictionary.`);return i}constructor(e,n="en-US"){this.strings=Object.fromEntries(Object.entries(e).filter(([,i])=>i)),this.defaultLocale=n}}function BD(t,e,n="en-US"){if(e[t])return e[t];let i=VD(t);if(e[i])return e[i];for(let a in e)if(a.startsWith(i+"-"))return e[a];return e[n]}function VD(t){return Intl.Locale?new Intl.Locale(t).language:t.split("-")[0]}const D6=new Map,R6=new Map;class ID{format(e,n){let i=this.strings.getStringForLocale(e,this.locale);return typeof i=="function"?i(n,this):i}plural(e,n,i="cardinal"){let a=n["="+e];if(a)return typeof a=="function"?a():a;let c=this.locale+":"+i,d=D6.get(c);d||(d=new Intl.PluralRules(this.locale,{type:i}),D6.set(c,d));let f=d.select(e);return a=n[f]||n.other,typeof a=="function"?a():a}number(e){let n=R6.get(this.locale);return n||(n=new Intl.NumberFormat(this.locale),R6.set(this.locale,n)),n.format(e)}select(e,n){let i=e[n]||e.other;return typeof i=="function"?i():i}constructor(e,n){this.locale=e,this.strings=n}}const B6=new WeakMap;function FD(t){let e=B6.get(t);return e||(e=new gf(t),B6.set(t,e)),e}function ZD(t,e){return e&&gf.getGlobalDictionaryForPackage(e)||FD(t)}function zs(t,e){let{locale:n}=Hs(),i=ZD(t,e);return x.useMemo(()=>new ID(n,i),[n,i])}let u3=new Map,xp=!1;try{xp=new Intl.NumberFormat("de-DE",{signDisplay:"exceptZero"}).resolvedOptions().signDisplay==="exceptZero"}catch{}let V5=!1;try{V5=new Intl.NumberFormat("de-DE",{style:"unit",unit:"degree"}).resolvedOptions().style==="unit"}catch{}const My={degree:{narrow:{default:"°","ja-JP":" 度","zh-TW":"度","sl-SI":" °"}}};class OD{format(e){let n="";if(!xp&&this.options.signDisplay!=null?n=HD(this.numberFormatter,this.options.signDisplay,e):n=this.numberFormatter.format(e),this.options.style==="unit"&&!V5){var i;let{unit:a,unitDisplay:c="short",locale:d}=this.resolvedOptions();if(!a)return n;let f=(i=My[a])===null||i===void 0?void 0:i[c];n+=f[d]||f.default}return n}formatToParts(e){return this.numberFormatter.formatToParts(e)}formatRange(e,n){if(typeof this.numberFormatter.formatRange=="function")return this.numberFormatter.formatRange(e,n);if(n= start date");return`${this.format(e)} – ${this.format(n)}`}formatRangeToParts(e,n){if(typeof this.numberFormatter.formatRangeToParts=="function")return this.numberFormatter.formatRangeToParts(e,n);if(n= start date");let i=this.numberFormatter.formatToParts(e),a=this.numberFormatter.formatToParts(n);return[...i.map(c=>({...c,source:"startRange"})),{type:"literal",value:" – ",source:"shared"},...a.map(c=>({...c,source:"endRange"}))]}resolvedOptions(){let e=this.numberFormatter.resolvedOptions();return!xp&&this.options.signDisplay!=null&&(e={...e,signDisplay:this.options.signDisplay}),!V5&&this.options.style==="unit"&&(e={...e,style:"unit",unit:this.options.unit,unitDisplay:this.options.unitDisplay}),e}constructor(e,n={}){this.numberFormatter=ND(e,n),this.options=n}}function ND(t,e={}){let{numberingSystem:n}=e;if(n&&t.includes("-nu-")&&(t.includes("-u-")||(t+="-u-"),t+=`-nu-${n}`),e.style==="unit"&&!V5){var i;let{unit:d,unitDisplay:f="short"}=e;if(!d)throw new Error('unit option must be provided with style: "unit"');if(!(!((i=My[d])===null||i===void 0)&&i[f]))throw new Error(`Unsupported unit ${d} with unitDisplay = ${f}`);e={...e,style:"decimal"}}let a=t+(e?Object.entries(e).sort((d,f)=>d[0]0||Object.is(n,0):e==="exceptZero"&&(Object.is(n,-0)||Object.is(n,0)?n=Math.abs(n):i=n>0),i){let a=t.format(-n),c=t.format(n),d=a.replace(c,"").replace(/\u200e|\u061C/,"");return[...d].length!==1&&console.warn("@react-aria/i18n polyfill for NumberFormat signDisplay: Unsupported case"),a.replace(c,"!!!").replace(d,"+").replace("!!!",c)}else return t.format(n)}}function zD(t={}){let{locale:e}=Hs();return x.useMemo(()=>new OD(e,t),[e,t])}let c3=new Map;function Nv(t){let{locale:e}=Hs(),n=e+(t?Object.entries(t).sort((a,c)=>a[0]{C&&(N.current=dt==null?void 0:dt.scale)},[C]);let z=x.useCallback(()=>{if(S===!1||!C||!a.current||!i.current||!m||(dt==null?void 0:dt.scale)!==N.current)return;let ie=null;if(c.current&&c.current.contains(document.activeElement)){let Q=document.activeElement.getBoundingClientRect(),he=c.current.getBoundingClientRect();ie={type:"top",offset:Q.top-he.top},ie.offset>he.height/2&&(ie.type="bottom",ie.offset=Q.bottom-he.bottom)}let j=a.current;if(!T&&a.current){var X;j.style.top="0px",j.style.bottom="";var xe;j.style.maxHeight=((xe=(X=window.visualViewport)===null||X===void 0?void 0:X.height)!==null&&xe!==void 0?xe:window.innerHeight)+"px"}let G=CD({placement:KD(d,e),overlayNode:a.current,targetNode:i.current,scrollNode:c.current||a.current,padding:f,shouldFlip:v,boundaryElement:m,offset:g,crossOffset:b,maxHeight:T,arrowSize:n,arrowBoundaryOffset:A});if(j.style.top="",j.style.bottom="",j.style.left="",j.style.right="",Object.keys(G.position).forEach(Q=>j.style[Q]=G.position[Q]+"px"),j.style.maxHeight=G.maxHeight!=null?G.maxHeight+"px":void 0,ie){let Q=document.activeElement.getBoundingClientRect(),he=c.current.getBoundingClientRect(),_e=Q[ie.type]-he[ie.type];c.current.scrollTop+=_e-ie.offset}R(G)},F);C0(z,F),jD(z),$5({ref:a,onResize:z}),$5({ref:i,onResize:z});let U=x.useRef(!1);C0(()=>{let ie,j=()=>{U.current=!0,clearTimeout(ie),ie=setTimeout(()=>{U.current=!1},500),z()},X=()=>{U.current&&j()};return dt==null||dt.addEventListener("resize",j),dt==null||dt.addEventListener("scroll",X),()=>{dt==null||dt.removeEventListener("resize",j),dt==null||dt.removeEventListener("scroll",X)}},[z]);let le=x.useCallback(()=>{U.current||P()},[P,U]);PD({triggerRef:i,isOpen:C,onClose:P&&le});var D;return{overlayProps:{style:{position:"absolute",zIndex:1e5,...V.position,maxHeight:(D=V.maxHeight)!==null&&D!==void 0?D:"100vh"}},placement:V.placement,arrowProps:{"aria-hidden":"true",role:"presentation",style:{left:V.arrowOffsetLeft,top:V.arrowOffsetTop}},updatePosition:z}}function jD(t){C0(()=>(window.addEventListener("resize",t,!1),()=>{window.removeEventListener("resize",t,!1)}),[t])}function KD(t,e){return e==="rtl"?t.replace("start","right").replace("end","left"):t.replace("start","left").replace("end","right")}const di=[];function Ly(t,e){let{onClose:n,shouldCloseOnBlur:i,isOpen:a,isDismissable:c=!1,isKeyboardDismissDisabled:d=!1,shouldCloseOnInteractOutside:f}=t;x.useEffect(()=>(a&&di.push(e),()=>{let P=di.indexOf(e);P>=0&&di.splice(P,1)}),[a,e]);let v=()=>{di[di.length-1]===e&&n&&n()},m=P=>{(!f||f(P.target))&&di[di.length-1]===e&&(P.stopPropagation(),P.preventDefault())},g=P=>{(!f||f(P.target))&&(di[di.length-1]===e&&(P.stopPropagation(),P.preventDefault()),v())},b=P=>{P.key==="Escape"&&!d&&!P.nativeEvent.isComposing&&(P.stopPropagation(),P.preventDefault(),v())};d8({ref:e,onInteractOutside:c&&a?g:null,onInteractOutsideStart:m});let{focusWithinProps:S}=l1({isDisabled:!i,onBlurWithin:P=>{!P.relatedTarget||_E(P.relatedTarget)||(!f||f(P.relatedTarget))&&n()}}),C=P=>{P.target===P.currentTarget&&P.preventDefault()};return{overlayProps:{onKeyDown:b,...S},underlayProps:{onPointerDown:C}}}function Dy(t,e,n){let{type:i}=t,{isOpen:a}=e;x.useEffect(()=>{n&&n.current&&ky.set(n.current,e.close)});let c;i==="menu"?c=!0:i==="listbox"&&(c="listbox");let d=Qn();return{triggerProps:{"aria-haspopup":c,"aria-expanded":a,"aria-controls":a?d:null,onPress:e.toggle},overlayProps:{id:d}}}const d3=typeof document<"u"&&window.visualViewport,WD=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);let l5=0,f3;function Ry(t={}){let{isDisabled:e}=t;C0(()=>{if(!e)return l5++,l5===1&&(W5()?f3=GD():f3=UD()),()=>{l5--,l5===0&&f3()}},[e])}function UD(){return vo($s(document.documentElement,"paddingRight",`${window.innerWidth-document.documentElement.clientWidth}px`),$s(document.documentElement,"overflow","hidden"))}function GD(){let t,e,n=m=>{t=e8(m.target,!0),!(t===document.documentElement&&t===document.body)&&t instanceof HTMLElement&&window.getComputedStyle(t).overscrollBehavior==="auto"&&(e=$s(t,"overscrollBehavior","contain"))},i=m=>{if(!t||t===document.documentElement||t===document.body){m.preventDefault();return}t.scrollHeight===t.clientHeight&&t.scrollWidth===t.clientWidth&&m.preventDefault()},a=m=>{let g=m.target;I6(g)&&g!==document.activeElement&&(m.preventDefault(),f(),g.style.transform="translateY(-2000px)",g.focus(),requestAnimationFrame(()=>{g.style.transform=""})),e&&e()},c=m=>{let g=m.target;I6(g)&&(f(),g.style.transform="translateY(-2000px)",requestAnimationFrame(()=>{g.style.transform="",d3&&(d3.height{V6(g)}):d3.addEventListener("resize",()=>V6(g),{once:!0}))}))},d=null,f=()=>{if(d)return;let m=()=>{window.scrollTo(0,0)},g=window.pageXOffset,b=window.pageYOffset;d=vo(Sc(window,"scroll",m),$s(document.documentElement,"paddingRight",`${window.innerWidth-document.documentElement.clientWidth}px`),$s(document.documentElement,"overflow","hidden"),$s(document.body,"marginTop",`-${b}px`),()=>{window.scrollTo(g,b)}),window.scrollTo(0,0)},v=vo(Sc(document,"touchstart",n,{passive:!1,capture:!0}),Sc(document,"touchmove",i,{passive:!1,capture:!0}),Sc(document,"touchend",a,{passive:!1,capture:!0}),Sc(document,"focus",c,!0));return()=>{e==null||e(),d==null||d(),v()}}function $s(t,e,n){let i=t.style[e];return t.style[e]=n,()=>{t.style[e]=i}}function Sc(t,e,n,i){return t.addEventListener(e,n,i),()=>{t.removeEventListener(e,n,i)}}function V6(t){let e=document.scrollingElement||document.documentElement;for(;t&&t!==e;){let n=e8(t);if(n!==document.documentElement&&n!==document.body&&n!==t){let i=n.getBoundingClientRect().top,a=t.getBoundingClientRect().top;a>i+t.clientHeight&&(n.scrollTop+=a-i)}t=n.parentElement}}function I6(t){return t instanceof HTMLInputElement&&!WD.has(t.type)||t instanceof HTMLTextAreaElement||t instanceof HTMLElement&&t.isContentEditable}const wp=ee.createContext(null);function qD(t){let{children:e}=t,n=x.useContext(wp),[i,a]=x.useState(0),c=x.useMemo(()=>({parent:n,modalCount:i,addModal(){a(d=>d+1),n&&n.addModal()},removeModal(){a(d=>d-1),n&&n.removeModal()}}),[n,i]);return ee.createElement(wp.Provider,{value:c},e)}function YD(){let t=x.useContext(wp);return{modalProviderProps:{"aria-hidden":t&&t.modalCount>0?!0:null}}}function XD(t){let{modalProviderProps:e}=YD();return ee.createElement("div",{"data-overlay-container":!0,...t,...e})}function QD(t){return ee.createElement(qD,null,ee.createElement(XD,t))}function JD(t){let e=M2(),{portalContainer:n=e?null:document.body,...i}=t;if(ee.useEffect(()=>{if(n!=null&&n.closest("[data-overlay-container]"))throw new Error("An OverlayContainer must not be inside another container. Please change the portalContainer prop.")},[n]),!n)return null;let a=ee.createElement(QD,i);return zp.createPortal(a,n)}var By={};By={dismiss:"تجاهل"};var Vy={};Vy={dismiss:"Отхвърляне"};var Iy={};Iy={dismiss:"Odstranit"};var Fy={};Fy={dismiss:"Luk"};var Zy={};Zy={dismiss:"Schließen"};var Oy={};Oy={dismiss:"Απόρριψη"};var Ny={};Ny={dismiss:"Dismiss"};var Hy={};Hy={dismiss:"Descartar"};var zy={};zy={dismiss:"Lõpeta"};var jy={};jy={dismiss:"Hylkää"};var Ky={};Ky={dismiss:"Rejeter"};var Wy={};Wy={dismiss:"התעלם"};var Uy={};Uy={dismiss:"Odbaci"};var Gy={};Gy={dismiss:"Elutasítás"};var qy={};qy={dismiss:"Ignora"};var Yy={};Yy={dismiss:"閉じる"};var Xy={};Xy={dismiss:"무시"};var Qy={};Qy={dismiss:"Atmesti"};var Jy={};Jy={dismiss:"Nerādīt"};var e9={};e9={dismiss:"Lukk"};var t9={};t9={dismiss:"Negeren"};var n9={};n9={dismiss:"Zignoruj"};var r9={};r9={dismiss:"Descartar"};var i9={};i9={dismiss:"Dispensar"};var o9={};o9={dismiss:"Revocare"};var l9={};l9={dismiss:"Пропустить"};var a9={};a9={dismiss:"Zrušiť"};var s9={};s9={dismiss:"Opusti"};var u9={};u9={dismiss:"Odbaci"};var c9={};c9={dismiss:"Avvisa"};var d9={};d9={dismiss:"Kapat"};var f9={};f9={dismiss:"Скасувати"};var p9={};p9={dismiss:"取消"};var v9={};v9={dismiss:"關閉"};var h9={};h9={"ar-AE":By,"bg-BG":Vy,"cs-CZ":Iy,"da-DK":Fy,"de-DE":Zy,"el-GR":Oy,"en-US":Ny,"es-ES":Hy,"et-EE":zy,"fi-FI":jy,"fr-FR":Ky,"he-IL":Wy,"hr-HR":Uy,"hu-HU":Gy,"it-IT":qy,"ja-JP":Yy,"ko-KR":Xy,"lt-LT":Qy,"lv-LV":Jy,"nb-NO":e9,"nl-NL":t9,"pl-PL":n9,"pt-BR":r9,"pt-PT":i9,"ro-RO":o9,"ru-RU":l9,"sk-SK":a9,"sl-SI":s9,"sr-SP":u9,"sv-SE":c9,"tr-TR":d9,"uk-UA":f9,"zh-CN":p9,"zh-TW":v9};const F6={border:0,clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"};function m9(t={}){let{style:e,isFocusable:n}=t,[i,a]=x.useState(!1),{focusWithinProps:c}=l1({isDisabled:!n,onFocusWithinChange:f=>a(f)}),d=x.useMemo(()=>i?e:e?{...F6,...e}:F6,[i]);return{visuallyHiddenProps:{...c,style:d}}}function yf(t){let{children:e,elementType:n="div",isFocusable:i,style:a,...c}=t,{visuallyHiddenProps:d}=m9(t);return ee.createElement(n,qe(c,d),e)}function eR(t){return t&&t.__esModule?t.default:t}function $p(t){let{onDismiss:e,...n}=t,i=zs(eR(h9),"@react-aria/overlays"),a=Jm(n,i.format("dismiss")),c=()=>{e&&e()};return ee.createElement(yf,null,ee.createElement("button",{...a,tabIndex:-1,onClick:c,style:{width:1,height:1}}))}let Cc=new WeakMap,br=[];function g9(t,e=document.body){let n=new Set(t),i=new Set,a=v=>{for(let S of v.querySelectorAll("[data-live-announcer], [data-react-aria-top-layer]"))n.add(S);let m=S=>{if(n.has(S)||i.has(S.parentElement)&&S.parentElement.getAttribute("role")!=="row")return NodeFilter.FILTER_REJECT;for(let C of n)if(S.contains(C))return NodeFilter.FILTER_SKIP;return NodeFilter.FILTER_ACCEPT},g=document.createTreeWalker(v,NodeFilter.SHOW_ELEMENT,{acceptNode:m}),b=m(v);if(b===NodeFilter.FILTER_ACCEPT&&c(v),b!==NodeFilter.FILTER_REJECT){let S=g.nextNode();for(;S!=null;)c(S),S=g.nextNode()}},c=v=>{var m;let g=(m=Cc.get(v))!==null&&m!==void 0?m:0;v.getAttribute("aria-hidden")==="true"&&g===0||(g===0&&v.setAttribute("aria-hidden","true"),i.add(v),Cc.set(v,g+1))};br.length&&br[br.length-1].disconnect(),a(e);let d=new MutationObserver(v=>{for(let m of v)if(!(m.type!=="childList"||m.addedNodes.length===0)&&![...n,...i].some(g=>g.contains(m.target))){for(let g of m.removedNodes)g instanceof Element&&(n.delete(g),i.delete(g));for(let g of m.addedNodes)(g instanceof HTMLElement||g instanceof SVGElement)&&(g.dataset.liveAnnouncer==="true"||g.dataset.reactAriaTopLayer==="true")?n.add(g):g instanceof Element&&a(g)}});d.observe(e,{childList:!0,subtree:!0});let f={observe(){d.observe(e,{childList:!0,subtree:!0})},disconnect(){d.disconnect()}};return br.push(f),()=>{d.disconnect();for(let v of i){let m=Cc.get(v);m===1?(v.removeAttribute("aria-hidden"),Cc.delete(v)):Cc.set(v,m-1)}f===br[br.length-1]?(br.pop(),br.length&&br[br.length-1].observe()):br.splice(br.indexOf(f),1)}}function tR(t,e){let{triggerRef:n,popoverRef:i,isNonModal:a,isKeyboardDismissDisabled:c,shouldCloseOnInteractOutside:d,...f}=t,{overlayProps:v,underlayProps:m}=Ly({isOpen:e.isOpen,onClose:e.close,shouldCloseOnBlur:!0,isDismissable:!a,isKeyboardDismissDisabled:c,shouldCloseOnInteractOutside:d},i),{overlayProps:g,arrowProps:b,placement:S}=Ay({...f,targetRef:n,overlayRef:i,isOpen:e.isOpen,onClose:a?e.close:null});return Ry({isDisabled:a||!e.isOpen}),C0(()=>{if(e.isOpen&&!a&&i.current)return g9([i.current])},[a,e.isOpen,i]),{popoverProps:qe(v,g),arrowProps:b,underlayProps:m,placement:S}}const nR=x.createContext({});function rR(){var t;return(t=x.useContext(nR))!==null&&t!==void 0?t:{}}const y9=ee.createContext(null);function b9(t){let e=M2(),{portalContainer:n=e?null:document.body,isExiting:i}=t,[a,c]=x.useState(!1),d=x.useMemo(()=>({contain:a,setContain:c}),[a,c]),{getContainer:f}=rR();if(!t.portalContainer&&f&&(n=f()),!n)return null;let v=t.children;return t.disableFocusManagement||(v=ee.createElement(q5,{restoreFocus:!0,contain:a&&!i},v)),v=ee.createElement(y9.Provider,{value:d},ee.createElement(sE,null,v)),zp.createPortal(v,n)}function x9(){let t=x.useContext(y9),e=t==null?void 0:t.setContain;C0(()=>{e==null||e(!0)},[e])}function iR(t,e,n){let{overlayProps:i,underlayProps:a}=Ly({...t,isOpen:e.isOpen,onClose:e.close},n);return Ry({isDisabled:!e.isOpen}),x9(),x.useEffect(()=>{if(e.isOpen)return g9([n.current])},[e.isOpen,n]),{modalProps:qe(i),underlayProps:a}}function oR(t,e){let{elementType:n="button",isDisabled:i,onPress:a,onPressStart:c,onPressEnd:d,onPressUp:f,onPressChange:v,preventFocusOnPress:m,allowFocusWhenDisabled:g,onClick:b,href:S,target:C,rel:P,type:T="button"}=t,A;n==="button"?A={type:T,disabled:i}:A={role:"button",tabIndex:i?void 0:0,href:n==="a"&&i?void 0:S,target:n==="a"?C:void 0,type:n==="input"?T:void 0,disabled:n==="input"?i:void 0,"aria-disabled":!i||n==="input"?void 0:i,rel:n==="a"?P:void 0};let{pressProps:V,isPressed:R}=Es({onPressStart:c,onPressEnd:d,onPressChange:v,onPress:a,onPressUp:f,isDisabled:i,preventFocusOnPress:m,ref:e}),{focusableProps:F}=Y5(t,e);g&&(F.tabIndex=i?-1:F.tabIndex);let N=qe(F,V,O0(t,{labelable:!0}));return{isPressed:R,buttonProps:qe(A,N,{"aria-haspopup":t["aria-haspopup"],"aria-expanded":t["aria-expanded"],"aria-controls":t["aria-controls"],"aria-pressed":t["aria-pressed"],onClick:z=>{b&&(b(z),console.warn("onClick is deprecated, please use onPress"))}})}}const w9={badInput:!1,customError:!1,patternMismatch:!1,rangeOverflow:!1,rangeUnderflow:!1,stepMismatch:!1,tooLong:!1,tooShort:!1,typeMismatch:!1,valueMissing:!1,valid:!0},$9={...w9,customError:!0,valid:!1},vs={isInvalid:!1,validationDetails:w9,validationErrors:[]},S9=x.createContext({}),Sp="__formValidationState"+Date.now();function bf(t){if(t[Sp]){let{realtimeValidation:e,displayValidation:n,updateValidation:i,resetValidation:a,commitValidation:c}=t[Sp];return{realtimeValidation:e,displayValidation:n,updateValidation:i,resetValidation:a,commitValidation:c}}return lR(t)}function lR(t){let{isInvalid:e,validationState:n,name:i,value:a,builtinValidation:c,validate:d,validationBehavior:f="aria"}=t;n&&(e||(e=n==="invalid"));let v=e!==void 0?{isInvalid:e,validationErrors:[],validationDetails:$9}:null,m=x.useMemo(()=>Z6(aR(d,a)),[d,a]);c!=null&&c.validationDetails.valid&&(c=null);let g=x.useContext(S9),b=x.useMemo(()=>i?Array.isArray(i)?i.flatMap(j=>Cp(g[j])):Cp(g[i]):[],[g,i]),[S,C]=x.useState(g),[P,T]=x.useState(!1);g!==S&&(C(g),T(!1));let A=x.useMemo(()=>Z6(P?[]:b),[P,b]),V=x.useRef(vs),[R,F]=x.useState(vs),N=x.useRef(vs),z=()=>{if(!U)return;le(!1);let j=m||c||V.current;p3(j,N.current)||(N.current=j,F(j))},[U,le]=x.useState(!1);return x.useEffect(z),{realtimeValidation:v||A||m||c||vs,displayValidation:f==="native"?v||A||R:v||A||m||c||R,updateValidation(j){f==="aria"&&!p3(R,j)?F(j):V.current=j},resetValidation(){let j=vs;p3(j,N.current)||(N.current=j,F(j)),f==="native"&&le(!1),T(!0)},commitValidation(){f==="native"&&le(!0),T(!0)}}}function Cp(t){return t?Array.isArray(t)?t:[t]:[]}function aR(t,e){if(typeof t=="function"){let n=t(e);if(n&&typeof n!="boolean")return Cp(n)}return[]}function Z6(t){return t.length?{isInvalid:!0,validationErrors:t,validationDetails:$9}:null}function p3(t,e){return t===e?!0:t&&e&&t.isInvalid===e.isInvalid&&t.validationErrors.length===e.validationErrors.length&&t.validationErrors.every((n,i)=>n===e.validationErrors[i])&&Object.entries(t.validationDetails).every(([n,i])=>e.validationDetails[n]===i)}function Hv(t){let{id:e,label:n,"aria-labelledby":i,"aria-label":a,labelElementType:c="label"}=t;e=Qn(e);let d=Qn(),f={};n?(i=i?`${d} ${i}`:d,f={id:d,htmlFor:c==="label"?e:void 0}):!i&&!a&&console.warn("If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility");let v=Jm({id:e,"aria-label":a,"aria-labelledby":i});return{labelProps:f,fieldProps:v}}function C9(t){let{description:e,errorMessage:n,isInvalid:i,validationState:a}=t,{labelProps:c,fieldProps:d}=Hv(t),f=w2([!!e,!!n,i,a]),v=w2([!!e,!!n,i,a]);return d=qe(d,{"aria-describedby":[f,v,t["aria-describedby"]].filter(Boolean).join(" ")||void 0}),{labelProps:c,fieldProps:d,descriptionProps:{id:f},errorMessageProps:{id:v}}}function zv(t,e,n){let{validationBehavior:i,focus:a}=t;C0(()=>{if(i==="native"&&(n!=null&&n.current)){let v=e.realtimeValidation.isInvalid?e.realtimeValidation.validationErrors.join(" ")||"Invalid value.":"";n.current.setCustomValidity(v),n.current.hasAttribute("title")||(n.current.title=""),e.realtimeValidation.isInvalid||e.updateValidation(uR(n.current))}});let c=dn(()=>{e.resetValidation()}),d=dn(v=>{var m;e.displayValidation.isInvalid||e.commitValidation();let g=n==null||(m=n.current)===null||m===void 0?void 0:m.form;if(!v.defaultPrevented&&n&&g&&cR(g)===n.current){var b;a?a():(b=n.current)===null||b===void 0||b.focus(),c8("keyboard")}v.preventDefault()}),f=dn(()=>{e.commitValidation()});x.useEffect(()=>{let v=n==null?void 0:n.current;if(!v)return;let m=v.form;return v.addEventListener("invalid",d),v.addEventListener("change",f),m==null||m.addEventListener("reset",c),()=>{v.removeEventListener("invalid",d),v.removeEventListener("change",f),m==null||m.removeEventListener("reset",c)}},[n,d,f,c,i])}function sR(t){let e=t.validity;return{badInput:e.badInput,customError:e.customError,patternMismatch:e.patternMismatch,rangeOverflow:e.rangeOverflow,rangeUnderflow:e.rangeUnderflow,stepMismatch:e.stepMismatch,tooLong:e.tooLong,tooShort:e.tooShort,typeMismatch:e.typeMismatch,valueMissing:e.valueMissing,valid:e.valid}}function uR(t){return{isInvalid:!t.validity.valid,validationDetails:sR(t),validationErrors:t.validationMessage?[t.validationMessage]:[]}}function cR(t){for(let e=0;e{if(e.current instanceof Cr(e.current).HTMLTextAreaElement){let z=e.current;Object.defineProperty(z,"defaultValue",{get:()=>z.value,set:()=>{},configurable:!0})}},[e]),{labelProps:T,inputProps:qe(F,n==="input"?N:void 0,{disabled:i,readOnly:c,required:a&&f==="native","aria-required":a&&f==="aria"||void 0,"aria-invalid":S||void 0,"aria-errormessage":t["aria-errormessage"],"aria-activedescendant":t["aria-activedescendant"],"aria-autocomplete":t["aria-autocomplete"],"aria-haspopup":t["aria-haspopup"],value:v,onChange:z=>m(z.target.value),autoComplete:t.autoComplete,autoCapitalize:t.autoCapitalize,maxLength:t.maxLength,minLength:t.minLength,name:t.name,placeholder:t.placeholder,inputMode:t.inputMode,onCopy:t.onCopy,onCut:t.onCut,onPaste:t.onPaste,onCompositionEnd:t.onCompositionEnd,onCompositionStart:t.onCompositionStart,onCompositionUpdate:t.onCompositionUpdate,onSelect:t.onSelect,onBeforeInput:t.onBeforeInput,onInput:t.onInput,...g,...A}),descriptionProps:V,errorMessageProps:R,isInvalid:S,validationErrors:C,validationDetails:P}}class O6{*[Symbol.iterator](){yield*this.iterable}get size(){return this.keyMap.size}getKeys(){return this.keyMap.keys()}getKeyBefore(e){let n=this.keyMap.get(e);return n?n.prevKey:null}getKeyAfter(e){let n=this.keyMap.get(e);return n?n.nextKey:null}getFirstKey(){return this.firstKey}getLastKey(){return this.lastKey}getItem(e){return this.keyMap.get(e)}at(e){const n=[...this.getKeys()];return this.getItem(n[e])}getChildren(e){let n=this.keyMap.get(e);return(n==null?void 0:n.childNodes)||[]}constructor(e){this.keyMap=new Map,this.iterable=e;let n=c=>{if(this.keyMap.set(c.key,c),c.childNodes&&c.type==="section")for(let d of c.childNodes)n(d)};for(let c of e)n(c);let i,a=0;for(let[c,d]of this.keyMap)i?(i.nextKey=c,d.prevKey=i.key):(this.firstKey=c,d.prevKey=void 0),d.type==="item"&&(d.index=a++),i=d,i.nextKey=void 0;this.lastKey=i==null?void 0:i.key}}class jr extends Set{constructor(e,n,i){super(e),e instanceof jr?(this.anchorKey=n||e.anchorKey,this.currentKey=i||e.currentKey):(this.anchorKey=n,this.currentKey=i)}}function dR(t,e){if(t.size!==e.size)return!1;for(let n of t)if(!e.has(n))return!1;return!0}function P9(t){let{selectionMode:e="none",disallowEmptySelection:n,allowDuplicateSelectionEvents:i,selectionBehavior:a="toggle",disabledBehavior:c="all"}=t,d=x.useRef(!1),[,f]=x.useState(!1),v=x.useRef(null),m=x.useRef(null),[,g]=x.useState(null),b=x.useMemo(()=>N6(t.selectedKeys),[t.selectedKeys]),S=x.useMemo(()=>N6(t.defaultSelectedKeys,new jr),[t.defaultSelectedKeys]),[C,P]=yo(b,S,t.onSelectionChange),T=x.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),[A,V]=x.useState(a);a==="replace"&&A==="toggle"&&typeof C=="object"&&C.size===0&&V("replace");let R=x.useRef(a);return x.useEffect(()=>{a!==R.current&&(V(a),R.current=a)},[a]),{selectionMode:e,disallowEmptySelection:n,selectionBehavior:A,setSelectionBehavior:V,get isFocused(){return d.current},setFocused(F){d.current=F,f(F)},get focusedKey(){return v.current},get childFocusStrategy(){return m.current},setFocusedKey(F,N="first"){v.current=F,m.current=N,g(F)},selectedKeys:C,setSelectedKeys(F){(i||!dR(F,C))&&P(F)},disabledKeys:T,disabledBehavior:c}}function N6(t,e){return t?t==="all"?"all":new jr(t):e}class fR{build(e,n){return this.context=n,H6(()=>this.iterateCollection(e))}*iterateCollection(e){let{children:n,items:i}=e;if(typeof n=="function"){if(!i)throw new Error("props.children was a function but props.items is missing");for(let a of e.items)yield*this.getFullNode({value:a},{renderer:n})}else{let a=[];ee.Children.forEach(n,d=>{a.push(d)});let c=0;for(let d of a){let f=this.getFullNode({element:d,index:c},{});for(let v of f)c++,yield v}}}getKey(e,n,i,a){if(e.key!=null)return e.key;if(n.type==="cell"&&n.key!=null)return`${a}${n.key}`;let c=n.value;if(c!=null){var d;let f=(d=c.key)!==null&&d!==void 0?d:c.id;if(f==null)throw new Error("No key found for item");return f}return a?`${a}.${n.index}`:`$.${n.index}`}getChildState(e,n){return{renderer:n.renderer||e.renderer}}*getFullNode(e,n,i,a){let c=e.element;if(!c&&e.value&&n&&n.renderer){let v=this.cache.get(e.value);if(v&&(!v.shouldInvalidate||!v.shouldInvalidate(this.context))){v.index=e.index,v.parentKey=a?a.key:null,yield v;return}c=n.renderer(e.value)}if(ee.isValidElement(c)){let v=c.type;if(typeof v!="function"&&typeof v.getCollectionNode!="function"){let S=typeof c.type=="function"?c.type.name:c.type;throw new Error(`Unknown element <${S}> in collection.`)}let m=v.getCollectionNode(c.props,this.context),g=e.index,b=m.next();for(;!b.done&&b.value;){let S=b.value;e.index=g;let C=S.key;C||(C=S.element?null:this.getKey(c,e,n,i));let T=[...this.getFullNode({...S,key:C,index:g,wrapper:pR(e.wrapper,S.wrapper)},this.getChildState(n,S),i?`${i}${c.key}`:c.key,a)];for(let A of T){if(A.value=S.value||e.value,A.value&&this.cache.set(A.value,A),e.type&&A.type!==e.type)throw new Error(`Unsupported type <${v3(A.type)}> in <${v3(a.type)}>. Only <${v3(e.type)}> is supported.`);g++,yield A}b=m.next(T)}return}if(e.key==null)return;let d=this,f={type:e.type,props:e.props,key:e.key,parentKey:a?a.key:null,value:e.value,level:a?a.level+1:0,index:e.index,rendered:e.rendered,textValue:e.textValue,"aria-label":e["aria-label"],wrapper:e.wrapper,shouldInvalidate:e.shouldInvalidate,hasChildNodes:e.hasChildNodes,childNodes:H6(function*(){if(!e.hasChildNodes)return;let v=0;for(let m of e.childNodes()){m.key!=null&&(m.key=`${f.key}${m.key}`),m.index=v;let g=d.getFullNode(m,d.getChildState(n,m),f.key,f);for(let b of g)v++,yield b}})};yield f}constructor(){this.cache=new WeakMap}}function H6(t){let e=[],n=null;return{*[Symbol.iterator](){for(let i of e)yield i;n||(n=t());for(let i of n)e.push(i),yield i}}}function pR(t,e){if(t&&e)return n=>t(e(n));if(t)return t;if(e)return e}function v3(t){return t[0].toUpperCase()+t.slice(1)}function E9(t,e,n){let i=x.useMemo(()=>new fR,[]),{children:a,items:c,collection:d}=t;return x.useMemo(()=>{if(d)return d;let v=i.build({children:a,items:c},n);return e(v)},[i,a,c,d,n,e])}function k9(t,e){return typeof e.getChildren=="function"?e.getChildren(t.key):t.childNodes}function vR(t){return hR(t)}function hR(t,e){for(let n of t)return n}function h3(t,e,n){if(e.parentKey===n.parentKey)return e.index-n.index;let i=[...z6(t,e),e],a=[...z6(t,n),n],c=i.slice(0,a.length).findIndex((d,f)=>d!==a[f]);return c!==-1?(e=i[c],n=a[c],e.index-n.index):i.findIndex(d=>d===n)>=0?1:(a.findIndex(d=>d===e)>=0,-1)}function z6(t,e){let n=[];for(;(e==null?void 0:e.parentKey)!=null;)e=t.getItem(e.parentKey),n.unshift(e);return n}const j6=new WeakMap;function T9(t){let e=j6.get(t);if(e!=null)return e;e=0;let n=i=>{for(let a of i)a.type==="section"?n(k9(a,t)):e++};return n(t),j6.set(t,e),e}class M9{get selectionMode(){return this.state.selectionMode}get disallowEmptySelection(){return this.state.disallowEmptySelection}get selectionBehavior(){return this.state.selectionBehavior}setSelectionBehavior(e){this.state.setSelectionBehavior(e)}get isFocused(){return this.state.isFocused}setFocused(e){this.state.setFocused(e)}get focusedKey(){return this.state.focusedKey}get childFocusStrategy(){return this.state.childFocusStrategy}setFocusedKey(e,n){(e==null||this.collection.getItem(e))&&this.state.setFocusedKey(e,n)}get selectedKeys(){return this.state.selectedKeys==="all"?new Set(this.getSelectAllKeys()):this.state.selectedKeys}get rawSelection(){return this.state.selectedKeys}isSelected(e){return this.state.selectionMode==="none"?!1:(e=this.getKey(e),this.state.selectedKeys==="all"?this.canSelectItem(e):this.state.selectedKeys.has(e))}get isEmpty(){return this.state.selectedKeys!=="all"&&this.state.selectedKeys.size===0}get isSelectAll(){if(this.isEmpty)return!1;if(this.state.selectedKeys==="all")return!0;if(this._isSelectAll!=null)return this._isSelectAll;let e=this.getSelectAllKeys(),n=this.state.selectedKeys;return this._isSelectAll=e.every(i=>n.has(i)),this._isSelectAll}get firstSelectedKey(){let e=null;for(let n of this.state.selectedKeys){let i=this.collection.getItem(n);(!e||i&&h3(this.collection,i,e)<0)&&(e=i)}return e==null?void 0:e.key}get lastSelectedKey(){let e=null;for(let n of this.state.selectedKeys){let i=this.collection.getItem(n);(!e||i&&h3(this.collection,i,e)>0)&&(e=i)}return e==null?void 0:e.key}get disabledKeys(){return this.state.disabledKeys}get disabledBehavior(){return this.state.disabledBehavior}extendSelection(e){if(this.selectionMode==="none")return;if(this.selectionMode==="single"){this.replaceSelection(e);return}e=this.getKey(e);let n;if(this.state.selectedKeys==="all")n=new jr([e],e,e);else{let i=this.state.selectedKeys,a=i.anchorKey||e;n=new jr(i,a,e);for(let c of this.getKeyRange(a,i.currentKey||e))n.delete(c);for(let c of this.getKeyRange(e,a))this.canSelectItem(c)&&n.add(c)}this.state.setSelectedKeys(n)}getKeyRange(e,n){let i=this.collection.getItem(e),a=this.collection.getItem(n);return i&&a?h3(this.collection,i,a)<=0?this.getKeyRangeInternal(e,n):this.getKeyRangeInternal(n,e):[]}getKeyRangeInternal(e,n){let i=[],a=e;for(;a;){let c=this.collection.getItem(a);if((c&&c.type==="item"||c.type==="cell"&&this.allowsCellSelection)&&i.push(a),a===n)return i;a=this.collection.getKeyAfter(a)}return[]}getKey(e){let n=this.collection.getItem(e);if(!n||n.type==="cell"&&this.allowsCellSelection)return e;for(;n.type!=="item"&&n.parentKey!=null;)n=this.collection.getItem(n.parentKey);return!n||n.type!=="item"?null:n.key}toggleSelection(e){if(this.selectionMode==="none")return;if(this.selectionMode==="single"&&!this.isSelected(e)){this.replaceSelection(e);return}if(e=this.getKey(e),e==null)return;let n=new jr(this.state.selectedKeys==="all"?this.getSelectAllKeys():this.state.selectedKeys);n.has(e)?n.delete(e):this.canSelectItem(e)&&(n.add(e),n.anchorKey=e,n.currentKey=e),!(this.disallowEmptySelection&&n.size===0)&&this.state.setSelectedKeys(n)}replaceSelection(e){if(this.selectionMode==="none"||(e=this.getKey(e),e==null))return;let n=this.canSelectItem(e)?new jr([e],e,e):new jr;this.state.setSelectedKeys(n)}setSelectedKeys(e){if(this.selectionMode==="none")return;let n=new jr;for(let i of e)if(i=this.getKey(i),i!=null&&(n.add(i),this.selectionMode==="single"))break;this.state.setSelectedKeys(n)}getSelectAllKeys(){let e=[],n=i=>{for(;i!=null;){if(this.canSelectItem(i)){let a=this.collection.getItem(i);a.type==="item"&&e.push(i),a.hasChildNodes&&(this.allowsCellSelection||a.type!=="item")&&n(vR(k9(a,this.collection)).key)}i=this.collection.getKeyAfter(i)}};return n(this.collection.getFirstKey()),e}selectAll(){!this.isSelectAll&&this.selectionMode==="multiple"&&this.state.setSelectedKeys("all")}clearSelection(){!this.disallowEmptySelection&&(this.state.selectedKeys==="all"||this.state.selectedKeys.size>0)&&this.state.setSelectedKeys(new jr)}toggleSelectAll(){this.isSelectAll?this.clearSelection():this.selectAll()}select(e,n){this.selectionMode!=="none"&&(this.selectionMode==="single"?this.isSelected(e)&&!this.disallowEmptySelection?this.toggleSelection(e):this.replaceSelection(e):this.selectionBehavior==="toggle"||n&&(n.pointerType==="touch"||n.pointerType==="virtual")?this.toggleSelection(e):this.replaceSelection(e))}isSelectionEqual(e){if(e===this.state.selectedKeys)return!0;let n=this.selectedKeys;if(e.size!==n.size)return!1;for(let i of e)if(!n.has(i))return!1;for(let i of n)if(!e.has(i))return!1;return!0}canSelectItem(e){var n;if(this.state.selectionMode==="none"||this.state.disabledKeys.has(e))return!1;let i=this.collection.getItem(e);return!(!i||!(i==null||(n=i.props)===null||n===void 0)&&n.isDisabled||i.type==="cell"&&!this.allowsCellSelection)}isDisabled(e){var n,i;return this.state.disabledBehavior==="all"&&(this.state.disabledKeys.has(e)||!!(!((i=this.collection.getItem(e))===null||i===void 0||(n=i.props)===null||n===void 0)&&n.isDisabled))}isLink(e){var n,i;return!!(!((i=this.collection.getItem(e))===null||i===void 0||(n=i.props)===null||n===void 0)&&n.href)}getItemProps(e){var n;return(n=this.collection.getItem(e))===null||n===void 0?void 0:n.props}constructor(e,n,i){this.collection=e,this.state=n;var a;this.allowsCellSelection=(a=i==null?void 0:i.allowsCellSelection)!==null&&a!==void 0?a:!1,this._isSelectAll=null}}function A9(t){let{filter:e}=t,n=P9(t),i=x.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),a=x.useCallback(m=>e?new O6(e(m)):new O6(m),[e]),c=x.useMemo(()=>({suppressTextValueWarning:t.suppressTextValueWarning}),[t.suppressTextValueWarning]),d=E9(t,a,c),f=x.useMemo(()=>new M9(d,n),[d,n]);const v=x.useRef(null);return x.useEffect(()=>{if(n.focusedKey!=null&&!d.getItem(n.focusedKey)){const m=v.current.getItem(n.focusedKey),g=[...v.current.getKeys()].map(A=>{const V=v.current.getItem(A);return V.type==="item"?V:null}).filter(A=>A!==null),b=[...d.getKeys()].map(A=>{const V=d.getItem(A);return V.type==="item"?V:null}).filter(A=>A!==null),S=g.length-b.length;let C=Math.min(S>1?Math.max(m.index-S+1,0):m.index,b.length-1),P,T=!1;for(;C>=0;){if(!f.isDisabled(b[C].key)){P=b[C];break}Cm.index&&(C=m.index),C--)}n.setFocusedKey(P?P.key:null)}v.current=d},[d,f,n,n.focusedKey]),{collection:d,disabledKeys:i,selectionManager:f}}function mR(t){var e;let[n,i]=yo(t.selectedKey,(e=t.defaultSelectedKey)!==null&&e!==void 0?e:null,t.onSelectionChange),a=x.useMemo(()=>n!=null?[n]:[],[n]),{collection:c,disabledKeys:d,selectionManager:f}=A9({...t,selectionMode:"single",disallowEmptySelection:!0,allowDuplicateSelectionEvents:!0,selectedKeys:a,onSelectionChange:m=>{var g;let b=(g=m.values().next().value)!==null&&g!==void 0?g:null;b===n&&t.onSelectionChange&&t.onSelectionChange(b),i(b)}}),v=n!=null?c.getItem(n):null;return{collection:c,disabledKeys:d,selectionManager:f,selectedKey:n,setSelectedKey:i,selectedItem:v}}const gR="i1C0oq_Pagination",yR="i1C0oq_PaginationButton",bR="i1C0oq_PaginationText",I5={Pagination:gR,PaginationButton:yR,"PaginationButton--disabled":"i1C0oq_PaginationButton--disabled",PaginationText:bR},xR={first:k.jsx(K0,{name:"chevrons-left"}),prev:k.jsx(K0,{name:"chevron-left"}),next:k.jsx(K0,{name:"chevron-right"}),last:k.jsx(K0,{name:"chevrons-right"})},wR={first:"first",prev:"previous",next:"next",last:"last"},a5=({resourceName:t,kind:e,disabled:n,onClick:i,className:a,"data-test-id":c="pagination-button"})=>{const d=ft(I5.PaginationButton,n&&I5["PaginationButton--disabled"],a),f=xR[e],v=`${wR[e]} ${t} page`;return k.jsx(_m,{disabled:n,className:d,size:"small","data-test-id":c,onClick:()=>i(e),icon:f,"aria-label":v})},$R=({currentOffset:t,pageSize:e,isReady:n,totalCount:i,"data-test-id":a="pagination-text"})=>{const c=Math.max(0,t||0),d=c+1,f=i&&Math.min(c+e,i);if(!n)return k.jsx("div",{children:k.jsx(yD,{})});if(!i)return k.jsx("strong",{children:"No results"});const v=`Viewing records ${d} through ${f} of ${i} total.`;return k.jsxs("div",{className:I5.PaginationText,"data-test-id":a,children:[k.jsx(yf,{children:v}),k.jsxs("span",{"aria-hidden":!0,children:[k.jsxs("strong",{children:[d,"-",f]})," ","of ",k.jsx("strong",{children:i})]})]})},SR=({className:t,resourceName:e,isFirstDisabled:n,isPrevDisabled:i,isNextDisabled:a,isLastDisabled:c,onChange:d,currentOffset:f,pageSize:v,isReady:m,totalCount:g,"aria-label":b,"data-test-id":S="pagination",...C})=>k.jsxs("nav",{...C,className:ft(I5.Pagination,t),"aria-label":b??`Pagination for ${e} list.`,"data-test-id":S,children:[k.jsx(a5,{resourceName:e,kind:"first",disabled:!!n,onClick:d}),k.jsx(a5,{resourceName:e,kind:"prev",disabled:!!i,onClick:d}),k.jsx($R,{currentOffset:f,pageSize:v,isReady:m,totalCount:g}),k.jsx(a5,{resourceName:e,kind:"next",disabled:!!a,onClick:d}),k.jsx(a5,{resourceName:e,kind:"last",disabled:!!c,onClick:d})]}),jv=new WeakMap;function CR(t){return typeof t=="string"?t.replace(/\s*/g,""):""+t}function _R(t,e){let n=jv.get(t);if(!n)throw new Error("Unknown list");return`${n.id}-option-${CR(e)}`}function _p(t){return OP()?t.altKey:t.ctrlKey}function hs(t){return ho()?t.metaKey:t.ctrlKey}const PR=1e3;function L9(t){let{keyboardDelegate:e,selectionManager:n,onTypeSelect:i}=t,a=x.useRef({search:"",timeout:null}).current,c=d=>{let f=ER(d.key);if(!f||d.ctrlKey||d.metaKey||!d.currentTarget.contains(d.target))return;f===" "&&a.search.trim().length>0&&(d.preventDefault(),"continuePropagation"in d||d.stopPropagation()),a.search+=f;let v=e.getKeyForSearch(a.search,n.focusedKey);v==null&&(v=e.getKeyForSearch(a.search)),v!=null&&(n.setFocusedKey(v),i&&i(v)),clearTimeout(a.timeout),a.timeout=setTimeout(()=>{a.search=""},PR)};return{typeSelectProps:{onKeyDownCapture:e.getKeyForSearch?c:null}}}function ER(t){return t.length===1||!/^[A-Z]/i.test(t)?t:""}function kR(t){let{selectionManager:e,keyboardDelegate:n,ref:i,autoFocus:a=!1,shouldFocusWrap:c=!1,disallowEmptySelection:d=!1,disallowSelectAll:f=!1,selectOnFocus:v=e.selectionBehavior==="replace",disallowTypeAhead:m=!1,shouldUseVirtualFocus:g,allowsTabNavigation:b=!1,isVirtualized:S,scrollRef:C=i,linkBehavior:P="action"}=t,{direction:T}=Hs(),A=U5(),V=j=>{if(j.altKey&&j.key==="Tab"&&j.preventDefault(),!i.current.contains(j.target))return;const X=(ae,H)=>{if(ae!=null){if(e.isLink(ae)&&P==="selection"&&v&&!_p(j)){Is.flushSync(()=>{e.setFocusedKey(ae,H)});let ce=C.current.querySelector(`[data-key="${CSS.escape(ae.toString())}"]`),oe=e.getItemProps(ae);A.open(ce,j,oe.href,oe.routerOptions);return}if(e.setFocusedKey(ae,H),e.isLink(ae)&&P==="override")return;j.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(ae):v&&!_p(j)&&e.replaceSelection(ae)}};switch(j.key){case"ArrowDown":if(n.getKeyBelow){var xe,G;j.preventDefault();let ae=e.focusedKey!=null?n.getKeyBelow(e.focusedKey):(xe=n.getFirstKey)===null||xe===void 0?void 0:xe.call(n);ae==null&&c&&(ae=(G=n.getFirstKey)===null||G===void 0?void 0:G.call(n,e.focusedKey)),X(ae)}break;case"ArrowUp":if(n.getKeyAbove){var Q,he;j.preventDefault();let ae=e.focusedKey!=null?n.getKeyAbove(e.focusedKey):(Q=n.getLastKey)===null||Q===void 0?void 0:Q.call(n);ae==null&&c&&(ae=(he=n.getLastKey)===null||he===void 0?void 0:he.call(n,e.focusedKey)),X(ae)}break;case"ArrowLeft":if(n.getKeyLeftOf){var _e,se;j.preventDefault();let ae=n.getKeyLeftOf(e.focusedKey);ae==null&&c&&(ae=T==="rtl"?(_e=n.getFirstKey)===null||_e===void 0?void 0:_e.call(n,e.focusedKey):(se=n.getLastKey)===null||se===void 0?void 0:se.call(n,e.focusedKey)),X(ae,T==="rtl"?"first":"last")}break;case"ArrowRight":if(n.getKeyRightOf){var fe,Pe;j.preventDefault();let ae=n.getKeyRightOf(e.focusedKey);ae==null&&c&&(ae=T==="rtl"?(fe=n.getLastKey)===null||fe===void 0?void 0:fe.call(n,e.focusedKey):(Pe=n.getFirstKey)===null||Pe===void 0?void 0:Pe.call(n,e.focusedKey)),X(ae,T==="rtl"?"last":"first")}break;case"Home":if(n.getFirstKey){j.preventDefault();let ae=n.getFirstKey(e.focusedKey,hs(j));e.setFocusedKey(ae),hs(j)&&j.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(ae):v&&e.replaceSelection(ae)}break;case"End":if(n.getLastKey){j.preventDefault();let ae=n.getLastKey(e.focusedKey,hs(j));e.setFocusedKey(ae),hs(j)&&j.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(ae):v&&e.replaceSelection(ae)}break;case"PageDown":if(n.getKeyPageBelow){j.preventDefault();let ae=n.getKeyPageBelow(e.focusedKey);X(ae)}break;case"PageUp":if(n.getKeyPageAbove){j.preventDefault();let ae=n.getKeyPageAbove(e.focusedKey);X(ae)}break;case"a":hs(j)&&e.selectionMode==="multiple"&&f!==!0&&(j.preventDefault(),e.selectAll());break;case"Escape":!d&&e.selectedKeys.size!==0&&(j.stopPropagation(),j.preventDefault(),e.clearSelection());break;case"Tab":if(!b){if(j.shiftKey)i.current.focus();else{let ae=vi(i.current,{tabbable:!0}),H,ce;do ce=ae.lastChild(),ce&&(H=ce);while(ce);H&&!H.contains(document.activeElement)&&qn(H)}break}}},R=x.useRef({top:0,left:0});Wh(C,"scroll",S?null:()=>{R.current={top:C.current.scrollTop,left:C.current.scrollLeft}});let F=j=>{if(e.isFocused){j.currentTarget.contains(j.target)||e.setFocused(!1);return}if(j.currentTarget.contains(j.target)){if(e.setFocused(!0),e.focusedKey==null){let G=he=>{he!=null&&(e.setFocusedKey(he),v&&e.replaceSelection(he))},Q=j.relatedTarget;var X,xe;Q&&j.currentTarget.compareDocumentPosition(Q)&Node.DOCUMENT_POSITION_FOLLOWING?G((X=e.lastSelectedKey)!==null&&X!==void 0?X:n.getLastKey()):G((xe=e.firstSelectedKey)!==null&&xe!==void 0?xe:n.getFirstKey())}else S||(C.current.scrollTop=R.current.top,C.current.scrollLeft=R.current.left);if(e.focusedKey!=null){let G=C.current.querySelector(`[data-key="${CSS.escape(e.focusedKey.toString())}"]`);G&&(G.contains(document.activeElement)||qn(G),Ts()==="keyboard"&&Gh(G,{containingElement:i.current}))}}},N=j=>{j.currentTarget.contains(j.relatedTarget)||e.setFocused(!1)};const z=x.useRef(a);x.useEffect(()=>{if(z.current){let j=null;a==="first"&&(j=n.getFirstKey()),a==="last"&&(j=n.getLastKey());let X=e.selectedKeys;if(X.size){for(let xe of X)if(e.canSelectItem(xe)){j=xe;break}}e.setFocused(!0),e.setFocusedKey(j),j==null&&!g&&Bl(i.current)}},[]);let U=x.useRef(e.focusedKey);x.useEffect(()=>{if(e.isFocused&&e.focusedKey!=null&&(e.focusedKey!==U.current||z.current)&&(C!=null&&C.current)){let j=Ts(),X=i.current.querySelector(`[data-key="${CSS.escape(e.focusedKey.toString())}"]`);if(!X)return;(j==="keyboard"||z.current)&&(t8(C.current,X),j!=="virtual"&&Gh(X,{containingElement:i.current}))}!g&&e.isFocused&&e.focusedKey==null&&U.current!=null&&Bl(i.current),U.current=e.focusedKey,z.current=!1}),Wh(i,"react-aria-focus-scope-restore",j=>{j.preventDefault(),e.setFocused(!0)});let le={onKeyDown:V,onFocus:F,onBlur:N,onMouseDown(j){C.current===j.target&&j.preventDefault()}},{typeSelectProps:D}=L9({keyboardDelegate:n,selectionManager:e});m||(le=qe(D,le));let ie;return g||(ie=e.focusedKey==null?0:-1),{collectionProps:{...le,tabIndex:ie}}}function D9(t){let{selectionManager:e,key:n,ref:i,shouldSelectOnPressUp:a,shouldUseVirtualFocus:c,focus:d,isDisabled:f,onAction:v,allowsDifferentPressOrigin:m,linkBehavior:g="action"}=t,b=U5(),S=se=>{if(se.pointerType==="keyboard"&&_p(se))e.toggleSelection(n);else{if(e.selectionMode==="none")return;if(e.isLink(n)){if(g==="selection"){let fe=e.getItemProps(n);b.open(i.current,se,fe.href,fe.routerOptions),e.setSelectedKeys(e.selectedKeys);return}else if(g==="override"||g==="none")return}e.selectionMode==="single"?e.isSelected(n)&&!e.disallowEmptySelection?e.toggleSelection(n):e.replaceSelection(n):se&&se.shiftKey?e.extendSelection(n):e.selectionBehavior==="toggle"||se&&(hs(se)||se.pointerType==="touch"||se.pointerType==="virtual")?e.toggleSelection(n):e.replaceSelection(n)}};x.useEffect(()=>{n===e.focusedKey&&e.isFocused&&!c&&(d?d():document.activeElement!==i.current&&Bl(i.current))},[i,n,e.focusedKey,e.childFocusStrategy,e.isFocused,c]),f=f||e.isDisabled(n);let C={};!c&&!f?C={tabIndex:n===e.focusedKey?0:-1,onFocus(se){se.target===i.current&&e.setFocusedKey(n)}}:f&&(C.onMouseDown=se=>{se.preventDefault()});let P=e.isLink(n)&&g==="override",T=e.isLink(n)&&g!=="selection"&&g!=="none",A=!f&&e.canSelectItem(n)&&!P,V=(v||T)&&!f,R=V&&(e.selectionBehavior==="replace"?!A:!A||e.isEmpty),F=V&&A&&e.selectionBehavior==="replace",N=R||F,z=x.useRef(null),U=N&&A,le=x.useRef(!1),D=x.useRef(!1),ie=se=>{if(v&&v(),T){let fe=e.getItemProps(n);b.open(i.current,se,fe.href,fe.routerOptions)}},j={};a?(j.onPressStart=se=>{z.current=se.pointerType,le.current=U,se.pointerType==="keyboard"&&(!N||W6())&&S(se)},m?(j.onPressUp=R?null:se=>{se.pointerType!=="keyboard"&&A&&S(se)},j.onPress=R?ie:null):j.onPress=se=>{if(R||F&&se.pointerType!=="mouse"){if(se.pointerType==="keyboard"&&!K6())return;ie(se)}else se.pointerType!=="keyboard"&&A&&S(se)}):(j.onPressStart=se=>{z.current=se.pointerType,le.current=U,D.current=R,A&&(se.pointerType==="mouse"&&!R||se.pointerType==="keyboard"&&(!V||W6()))&&S(se)},j.onPress=se=>{(se.pointerType==="touch"||se.pointerType==="pen"||se.pointerType==="virtual"||se.pointerType==="keyboard"&&N&&K6()||se.pointerType==="mouse"&&D.current)&&(N?ie(se):A&&S(se))}),C["data-key"]=n,j.preventFocusOnPress=c;let{pressProps:X,isPressed:xe}=Es(j),G=F?se=>{z.current==="mouse"&&(se.stopPropagation(),se.preventDefault(),ie(se))}:void 0,{longPressProps:Q}=p8({isDisabled:!U,onLongPress(se){se.pointerType==="touch"&&(S(se),e.setSelectionBehavior("toggle"))}}),he=se=>{z.current==="touch"&&le.current&&se.preventDefault()},_e=e.isLink(n)?se=>{Dl.isOpening||se.preventDefault()}:void 0;return{itemProps:qe(C,A||R?X:{},U?Q:{},{onDoubleClick:G,onDragStartCapture:he,onClick:_e}),isPressed:xe,isSelected:e.isSelected(n),isFocused:e.isFocused&&e.focusedKey===n,isDisabled:f,allowsSelection:A,hasAction:N}}function K6(){let t=window.event;return(t==null?void 0:t.key)==="Enter"}function W6(){let t=window.event;return(t==null?void 0:t.key)===" "||(t==null?void 0:t.code)==="Space"}class U6{getItemRect(e){let n=this.ref.current,i=e!=null?n.querySelector(`[data-key="${CSS.escape(e.toString())}"]`):null;if(!i)return null;let a=n.getBoundingClientRect(),c=i.getBoundingClientRect();return{x:c.left-a.left+n.scrollLeft,y:c.top-a.top+n.scrollTop,width:c.width,height:c.height}}getContentSize(){let e=this.ref.current;return{width:e.scrollWidth,height:e.scrollHeight}}getVisibleRect(){let e=this.ref.current;return{x:e.scrollLeft,y:e.scrollTop,width:e.offsetWidth,height:e.offsetHeight}}constructor(e){this.ref=e}}class Kv{isDisabled(e){var n;return this.disabledBehavior==="all"&&(((n=e.props)===null||n===void 0?void 0:n.isDisabled)||this.disabledKeys.has(e.key))}getNextKey(e){for(e=this.collection.getKeyAfter(e);e!=null;){let n=this.collection.getItem(e);if(n.type==="item"&&!this.isDisabled(n))return e;e=this.collection.getKeyAfter(e)}return null}getPreviousKey(e){for(e=this.collection.getKeyBefore(e);e!=null;){let n=this.collection.getItem(e);if(n.type==="item"&&!this.isDisabled(n))return e;e=this.collection.getKeyBefore(e)}return null}findKey(e,n,i){let a=this.layoutDelegate.getItemRect(e);if(!a)return null;let c=a;do e=n(e),a=this.layoutDelegate.getItemRect(e);while(a&&i(c,a));return e}isSameRow(e,n){return e.y===n.y||e.x!==n.x}isSameColumn(e,n){return e.x===n.x||e.y!==n.y}getKeyBelow(e){return this.layout==="grid"&&this.orientation==="vertical"?this.findKey(e,n=>this.getNextKey(n),this.isSameRow):this.getNextKey(e)}getKeyAbove(e){return this.layout==="grid"&&this.orientation==="vertical"?this.findKey(e,n=>this.getPreviousKey(n),this.isSameRow):this.getPreviousKey(e)}getNextColumn(e,n){return n?this.getPreviousKey(e):this.getNextKey(e)}getKeyRightOf(e){return this.layout==="grid"?this.orientation==="vertical"?this.getNextColumn(e,this.direction==="rtl"):this.findKey(e,n=>this.getNextColumn(n,this.direction==="rtl"),this.isSameColumn):this.orientation==="horizontal"?this.getNextColumn(e,this.direction==="rtl"):null}getKeyLeftOf(e){return this.layout==="grid"?this.orientation==="vertical"?this.getNextColumn(e,this.direction==="ltr"):this.findKey(e,n=>this.getNextColumn(n,this.direction==="ltr"),this.isSameColumn):this.orientation==="horizontal"?this.getNextColumn(e,this.direction==="ltr"):null}getFirstKey(){let e=this.collection.getFirstKey();for(;e!=null;){let n=this.collection.getItem(e);if((n==null?void 0:n.type)==="item"&&!this.isDisabled(n))return e;e=this.collection.getKeyAfter(e)}return null}getLastKey(){let e=this.collection.getLastKey();for(;e!=null;){let n=this.collection.getItem(e);if(n.type==="item"&&!this.isDisabled(n))return e;e=this.collection.getKeyBefore(e)}return null}getKeyPageAbove(e){let n=this.ref.current,i=this.layoutDelegate.getItemRect(e);if(!i)return null;if(!jc(n))return this.getFirstKey();if(this.orientation==="horizontal"){let a=Math.max(0,i.x+i.width-this.layoutDelegate.getVisibleRect().width);for(;i&&i.x>a;)e=this.getKeyAbove(e),i=e==null?null:this.layoutDelegate.getItemRect(e)}else{let a=Math.max(0,i.y+i.height-this.layoutDelegate.getVisibleRect().height);for(;i&&i.y>a;)e=this.getKeyAbove(e),i=e==null?null:this.layoutDelegate.getItemRect(e)}return e??this.getFirstKey()}getKeyPageBelow(e){let n=this.ref.current,i=this.layoutDelegate.getItemRect(e);if(!i)return null;if(!jc(n))return this.getLastKey();if(this.orientation==="horizontal"){let a=Math.min(this.layoutDelegate.getContentSize().width,i.y-i.width+this.layoutDelegate.getVisibleRect().width);for(;i&&i.xc||new Kv({collection:n,disabledKeys:i,disabledBehavior:v,ref:a,collator:f,layoutDelegate:d}),[c,d,n,i,a,f,v]),{collectionProps:g}=kR({...t,ref:a,selectionManager:e,keyboardDelegate:m});return{listProps:g}}function TR(t,e,n){let i=O0(t,{labelable:!0}),a=t.selectionBehavior||"toggle",c=t.linkBehavior||(a==="replace"?"action":"override");a==="toggle"&&c==="action"&&(c="override");let{listProps:d}=R9({...t,ref:n,selectionManager:e.selectionManager,collection:e.collection,disabledKeys:e.disabledKeys,linkBehavior:c}),{focusWithinProps:f}=l1({onFocusWithin:t.onFocus,onBlurWithin:t.onBlur,onFocusWithinChange:t.onFocusChange}),v=Qn(t.id);jv.set(e,{id:v,shouldUseVirtualFocus:t.shouldUseVirtualFocus,shouldSelectOnPressUp:t.shouldSelectOnPressUp,shouldFocusOnHover:t.shouldFocusOnHover,isVirtualized:t.isVirtualized,onAction:t.onAction,linkBehavior:c});let{labelProps:m,fieldProps:g}=Hv({...t,id:v,labelElementType:"span"});return{labelProps:m,listBoxProps:qe(i,f,e.selectionManager.selectionMode==="multiple"?{"aria-multiselectable":"true"}:{},{role:"listbox",...qe(g,d)})}}function MR(t,e,n){var i,a;let{key:c}=t,d=jv.get(e);var f;let v=(f=t.isDisabled)!==null&&f!==void 0?f:e.selectionManager.isDisabled(c);var m;let g=(m=t.isSelected)!==null&&m!==void 0?m:e.selectionManager.isSelected(c);var b;let S=(b=t.shouldSelectOnPressUp)!==null&&b!==void 0?b:d==null?void 0:d.shouldSelectOnPressUp;var C;let P=(C=t.shouldFocusOnHover)!==null&&C!==void 0?C:d==null?void 0:d.shouldFocusOnHover;var T;let A=(T=t.shouldUseVirtualFocus)!==null&&T!==void 0?T:d==null?void 0:d.shouldUseVirtualFocus;var V;let R=(V=t.isVirtualized)!==null&&V!==void 0?V:d==null?void 0:d.isVirtualized,F=w2(),N=w2(),z={role:"option","aria-disabled":v||void 0,"aria-selected":e.selectionManager.selectionMode!=="none"?g:void 0};ho()&&Vp()||(z["aria-label"]=t["aria-label"],z["aria-labelledby"]=F,z["aria-describedby"]=N);let U=e.collection.getItem(c);if(R){let _e=Number(U==null?void 0:U.index);z["aria-posinset"]=Number.isNaN(_e)?void 0:_e+1,z["aria-setsize"]=T9(e.collection)}let le=d!=null&&d.onAction?()=>{var _e;return d==null||(_e=d.onAction)===null||_e===void 0?void 0:_e.call(d,c)}:void 0,{itemProps:D,isPressed:ie,isFocused:j,hasAction:X,allowsSelection:xe}=D9({selectionManager:e.selectionManager,key:c,ref:n,shouldSelectOnPressUp:S,allowsDifferentPressOrigin:S&&P,isVirtualized:R,shouldUseVirtualFocus:A,isDisabled:v,onAction:le||!(U==null||(i=U.props)===null||i===void 0)&&i.onAction?vo(U==null||(a=U.props)===null||a===void 0?void 0:a.onAction,le):void 0,linkBehavior:d==null?void 0:d.linkBehavior}),{hoverProps:G}=Jn({isDisabled:v||!P,onHoverStart(){ks()||(e.selectionManager.setFocused(!0),e.selectionManager.setFocusedKey(c))}}),Q=O0(U==null?void 0:U.props);delete Q.id;let he=Ym(U==null?void 0:U.props);return{optionProps:{...z,...qe(Q,D,G,he),id:_R(e,c)},labelProps:{id:F},descriptionProps:{id:N},isFocused:j,isFocusVisible:j&&ks(),isSelected:g,isDisabled:v,isPressed:ie,allowsSelection:xe,hasAction:X}}function AR(t){let{heading:e,"aria-label":n}=t,i=Qn();return{itemProps:{role:"presentation"},headingProps:e?{id:i,role:"presentation"}:{},groupProps:{role:"group","aria-label":n,"aria-labelledby":e?i:void 0}}}var B9={};B9={longPressMessage:"اضغط مطولاً أو اضغط على Alt + السهم لأسفل لفتح القائمة"};var V9={};V9={longPressMessage:"Натиснете продължително или натиснете Alt+ стрелка надолу, за да отворите менюто"};var I9={};I9={longPressMessage:"Dlouhým stiskem nebo stisknutím kláves Alt + šipka dolů otevřete nabídku"};var F9={};F9={longPressMessage:"Langt tryk eller tryk på Alt + pil ned for at åbne menuen"};var Z9={};Z9={longPressMessage:"Drücken Sie lange oder drücken Sie Alt + Nach-unten, um das Menü zu öffnen"};var O9={};O9={longPressMessage:"Πιέστε παρατεταμένα ή πατήστε Alt + κάτω βέλος για να ανοίξετε το μενού"};var N9={};N9={longPressMessage:"Long press or press Alt + ArrowDown to open menu"};var H9={};H9={longPressMessage:"Mantenga pulsado o pulse Alt + flecha abajo para abrir el menú"};var z9={};z9={longPressMessage:"Menüü avamiseks vajutage pikalt või vajutage klahve Alt + allanool"};var j9={};j9={longPressMessage:"Avaa valikko painamalla pohjassa tai näppäinyhdistelmällä Alt + Alanuoli"};var K9={};K9={longPressMessage:"Appuyez de manière prolongée ou appuyez sur Alt + Flèche vers le bas pour ouvrir le menu."};var W9={};W9={longPressMessage:"לחץ לחיצה ארוכה או הקש Alt + ArrowDown כדי לפתוח את התפריט"};var U9={};U9={longPressMessage:"Dugo pritisnite ili pritisnite Alt + strelicu prema dolje za otvaranje izbornika"};var G9={};G9={longPressMessage:"Nyomja meg hosszan, vagy nyomja meg az Alt + lefele nyíl gombot a menü megnyitásához"};var q9={};q9={longPressMessage:"Premere a lungo o premere Alt + Freccia giù per aprire il menu"};var Y9={};Y9={longPressMessage:"長押しまたは Alt+下矢印キーでメニューを開く"};var X9={};X9={longPressMessage:"길게 누르거나 Alt + 아래쪽 화살표를 눌러 메뉴 열기"};var Q9={};Q9={longPressMessage:"Norėdami atidaryti meniu, nuspaudę palaikykite arba paspauskite „Alt + ArrowDown“."};var J9={};J9={longPressMessage:"Lai atvērtu izvēlni, turiet nospiestu vai nospiediet taustiņu kombināciju Alt + lejupvērstā bultiņa"};var eb={};eb={longPressMessage:"Langt trykk eller trykk Alt + PilNed for å åpne menyen"};var tb={};tb={longPressMessage:"Druk lang op Alt + pijl-omlaag of druk op Alt om het menu te openen"};var nb={};nb={longPressMessage:"Naciśnij i przytrzymaj lub naciśnij klawisze Alt + Strzałka w dół, aby otworzyć menu"};var rb={};rb={longPressMessage:"Pressione e segure ou pressione Alt + Seta para baixo para abrir o menu"};var ib={};ib={longPressMessage:"Prima continuamente ou prima Alt + Seta Para Baixo para abrir o menu"};var ob={};ob={longPressMessage:"Apăsați lung sau apăsați pe Alt + săgeată în jos pentru a deschide meniul"};var lb={};lb={longPressMessage:"Нажмите и удерживайте или нажмите Alt + Стрелка вниз, чтобы открыть меню"};var ab={};ab={longPressMessage:"Ponuku otvoríte dlhým stlačením alebo stlačením klávesu Alt + klávesu so šípkou nadol"};var sb={};sb={longPressMessage:"Za odprtje menija pritisnite in držite gumb ali pritisnite Alt+puščica navzdol"};var ub={};ub={longPressMessage:"Dugo pritisnite ili pritisnite Alt + strelicu prema dole da otvorite meni"};var cb={};cb={longPressMessage:"Håll nedtryckt eller tryck på Alt + pil nedåt för att öppna menyn"};var db={};db={longPressMessage:"Menüyü açmak için uzun basın veya Alt + Aşağı Ok tuşuna basın"};var fb={};fb={longPressMessage:"Довго або звичайно натисніть комбінацію клавіш Alt і стрілка вниз, щоб відкрити меню"};var pb={};pb={longPressMessage:"长按或按 Alt + 向下方向键以打开菜单"};var vb={};vb={longPressMessage:"長按或按 Alt+向下鍵以開啟功能表"};var hb={};hb={"ar-AE":B9,"bg-BG":V9,"cs-CZ":I9,"da-DK":F9,"de-DE":Z9,"el-GR":O9,"en-US":N9,"es-ES":H9,"et-EE":z9,"fi-FI":j9,"fr-FR":K9,"he-IL":W9,"hr-HR":U9,"hu-HU":G9,"it-IT":q9,"ja-JP":Y9,"ko-KR":X9,"lt-LT":Q9,"lv-LV":J9,"nb-NO":eb,"nl-NL":tb,"pl-PL":nb,"pt-BR":rb,"pt-PT":ib,"ro-RO":ob,"ru-RU":lb,"sk-SK":ab,"sl-SI":sb,"sr-SP":ub,"sv-SE":cb,"tr-TR":db,"uk-UA":fb,"zh-CN":pb,"zh-TW":vb};function LR(t){return t&&t.__esModule?t.default:t}function mb(t,e,n){let{type:i="menu",isDisabled:a,trigger:c="press"}=t,d=Qn(),{triggerProps:f,overlayProps:v}=Dy({type:i},e,n),m=C=>{if(!a&&!(c==="longPress"&&!C.altKey)&&n&&n.current)switch(C.key){case"Enter":case" ":if(c==="longPress")return;case"ArrowDown":"continuePropagation"in C||C.stopPropagation(),C.preventDefault(),e.toggle("first");break;case"ArrowUp":"continuePropagation"in C||C.stopPropagation(),C.preventDefault(),e.toggle("last");break;default:"continuePropagation"in C&&C.continuePropagation()}},g=zs(LR(hb),"@react-aria/menu"),{longPressProps:b}=p8({isDisabled:a||c!=="longPress",accessibilityDescription:g.format("longPressMessage"),onLongPressStart(){e.close()},onLongPress(){e.open("first")}}),S={onPressStart(C){C.pointerType!=="touch"&&C.pointerType!=="keyboard"&&!a&&e.open(C.pointerType==="virtual"?"first":null)},onPress(C){C.pointerType==="touch"&&!a&&e.toggle()}};return delete f.onPress,{menuTriggerProps:{...f,...c==="press"?S:b,id:d,onKeyDown:m},menuProps:{...v,"aria-labelledby":d,autoFocus:e.focusStrategy||!0,onClose:e.close}}}const gb=new WeakMap;function DR(t,e,n){let{shouldFocusWrap:i=!0,onKeyDown:a,onKeyUp:c,...d}=t;!t["aria-label"]&&!t["aria-labelledby"]&&console.warn("An aria-label or aria-labelledby prop is required for accessibility.");let f=O0(t,{labelable:!0}),{listProps:v}=R9({...d,ref:n,selectionManager:e.selectionManager,collection:e.collection,disabledKeys:e.disabledKeys,shouldFocusWrap:i,linkBehavior:"override"});return gb.set(e,{onClose:t.onClose,onAction:t.onAction}),{menuProps:qe(f,{onKeyDown:a,onKeyUp:c},{role:"menu",...v,onKeyDown:m=>{m.key!=="Escape"&&v.onKeyDown(m)}})}}function RR(t,e,n){let{id:i,key:a,closeOnSelect:c,isVirtualized:d,"aria-haspopup":f,onPressStart:v,onPressUp:m,onPress:g,onPressChange:b,onPressEnd:S,onHoverStart:C,onHoverChange:P,onHoverEnd:T,onKeyDown:A,onKeyUp:V,onFocus:R,onFocusChange:F,onBlur:N}=t,z=!!f;var U;let le=(U=t.isDisabled)!==null&&U!==void 0?U:e.selectionManager.isDisabled(a);var D;let ie=(D=t.isSelected)!==null&&D!==void 0?D:e.selectionManager.isSelected(a),j=gb.get(e),X=e.collection.getItem(a),xe=t.onClose||j.onClose,G=U5(),Q=ke=>{var ze;if(!z){if(!(X==null||(ze=X.props)===null||ze===void 0)&&ze.onAction?X.props.onAction():t.onAction&&t.onAction(a),j.onAction){let Ye=j.onAction;Ye(a)}ke.target instanceof HTMLAnchorElement&&G.open(ke.target,ke,X.props.href,X.props.routerOptions)}},he="menuitem";z||(e.selectionManager.selectionMode==="single"?he="menuitemradio":e.selectionManager.selectionMode==="multiple"&&(he="menuitemcheckbox"));let _e=w2(),se=w2(),fe=w2(),Pe={id:i,"aria-disabled":le||void 0,role:he,"aria-label":t["aria-label"],"aria-labelledby":_e,"aria-describedby":[se,fe].filter(Boolean).join(" ")||void 0,"aria-controls":t["aria-controls"],"aria-haspopup":f,"aria-expanded":t["aria-expanded"]};e.selectionManager.selectionMode!=="none"&&!z&&(Pe["aria-checked"]=ie),d&&(Pe["aria-posinset"]=X==null?void 0:X.index,Pe["aria-setsize"]=T9(e.collection));let ae=ke=>{ke.pointerType==="keyboard"&&Q(ke),v==null||v(ke)},H=ke=>{ke.pointerType!=="keyboard"&&(Q(ke),!z&&xe&&(c??(e.selectionManager.selectionMode!=="multiple"||e.selectionManager.isLink(a)))&&xe()),m==null||m(ke)},{itemProps:ce,isFocused:oe}=D9({selectionManager:e.selectionManager,key:a,ref:n,shouldSelectOnPressUp:!0,allowsDifferentPressOrigin:!0,linkBehavior:"none"}),{pressProps:q,isPressed:ue}=Es({onPressStart:ae,onPress:g,onPressUp:H,onPressChange:b,onPressEnd:S,isDisabled:le}),{hoverProps:$e}=Jn({isDisabled:le,onHoverStart(ke){ks()||(e.selectionManager.setFocused(!0),e.selectionManager.setFocusedKey(a)),C==null||C(ke)},onHoverChange:P,onHoverEnd:T}),{keyboardProps:Ee}=f8({onKeyDown:ke=>{if(ke.repeat){ke.continuePropagation();return}switch(ke.key){case" ":!le&&e.selectionManager.selectionMode==="none"&&!z&&c!==!1&&xe&&xe();break;case"Enter":!le&&c!==!1&&!z&&xe&&xe();break;default:z||ke.continuePropagation(),A==null||A(ke);break}},onKeyUp:V}),{focusProps:Se}=Op({onBlur:N,onFocus:R,onFocusChange:F}),me=O0(X.props);delete me.id;let Be=Ym(X.props);return{menuItemProps:{...Pe,...qe(me,Be,z?{onFocus:ce.onFocus,"data-key":ce["data-key"]}:ce,q,$e,Ee,Se),tabIndex:ce.tabIndex!=null?-1:void 0},labelProps:{id:_e},descriptionProps:{id:se},keyboardShortcutProps:{id:fe},isFocused:oe,isSelected:ie,isPressed:ue,isDisabled:le}}function BR(t){let{heading:e,"aria-label":n}=t,i=Qn();return{itemProps:{role:"presentation"},headingProps:e?{id:i,role:"presentation"}:{},groupProps:{role:"group","aria-label":n,"aria-labelledby":e?i:void 0}}}function js(t){let[e,n]=yo(t.isOpen,t.defaultOpen||!1,t.onOpenChange);const i=x.useCallback(()=>{n(!0)},[n]),a=x.useCallback(()=>{n(!1)},[n]),c=x.useCallback(()=>{n(!e)},[n,e]);return{isOpen:e,setOpen:n,open:i,close:a,toggle:c}}function VR(t){let e=js(t),[n,i]=x.useState(null),[a,c]=x.useState([]),d=()=>{c([]),e.close()};return{focusStrategy:n,...e,open(m=null){i(m),e.open()},toggle(m=null){i(m),e.toggle()},close(){d()},expandedKeysStack:a,openSubmenu:(m,g)=>{c(b=>g>b.length?b:[...b.slice(0,g),m])},closeSubmenu:(m,g)=>{c(b=>b[g]===m?b.slice(0,g):b)}}}function yb(t,e,n){let{isDisabled:i=!1,isReadOnly:a=!1,value:c,name:d,children:f,"aria-label":v,"aria-labelledby":m,validationState:g="valid",isInvalid:b}=t,S=U=>{U.stopPropagation(),e.setSelected(U.target.checked)},C=f!=null,P=v!=null||m!=null;!C&&!P&&console.warn("If you do not provide children, you must specify an aria-label for accessibility");let{pressProps:T,isPressed:A}=Es({isDisabled:i}),{pressProps:V,isPressed:R}=Es({isDisabled:i||a,onPress(){e.toggle()}}),{focusableProps:F}=Y5(t,n),N=qe(T,F),z=O0(t,{labelable:!0});return Fp(n,e.isSelected,e.setSelected),{labelProps:qe(V,{onClick:U=>U.preventDefault()}),inputProps:qe(z,{"aria-invalid":b||g==="invalid"||void 0,"aria-errormessage":t["aria-errormessage"],"aria-controls":t["aria-controls"],"aria-readonly":a||void 0,onChange:S,disabled:i,...c==null?{}:{value:c},name:d,type:"checkbox",...N}),isSelected:e.isSelected,isPressed:A||R,isDisabled:i,isReadOnly:a,isInvalid:b||g==="invalid"}}function IR(t,e,n){let{labelProps:i,inputProps:a,isSelected:c,isPressed:d,isDisabled:f,isReadOnly:v}=yb(t,e,n);return{labelProps:i,inputProps:{...a,role:"switch",checked:c},isSelected:c,isPressed:d,isDisabled:f,isReadOnly:v}}function Wv(t={}){let{isReadOnly:e}=t,[n,i]=yo(t.isSelected,t.defaultSelected||!1,t.onChange);function a(d){e||i(d)}function c(){e||i(!n)}return{isSelected:n,setSelected:a,toggle:c}}const FR="my2veG_center",ZR="my2veG_flex",OR="my2veG_left",NR="my2veG_right",m3={center:FR,flex:ZR,"gap-0":"my2veG_gap-0","gap-1":"my2veG_gap-1","gap-2":"my2veG_gap-2","gap-3":"my2veG_gap-3","gap-4":"my2veG_gap-4","gap-5":"my2veG_gap-5","gap-6":"my2veG_gap-6","gap-7":"my2veG_gap-7","gap-8":"my2veG_gap-8",left:OR,right:NR},xf=({children:t,className:e,"data-test-id":n="stack",gap:i="0",align:a,...c})=>k.jsx("div",{...c,className:ft(m3.flex,m3[`gap-${i}`],!!a&&m3[a],e),"data-test-id":n,children:x.Children.map(t,(d,f)=>d&&k.jsx("div",{children:d},f))}),HR="GZdcSa_inline",zR="GZdcSa_item",_c={"alignX-center":"GZdcSa_alignX-center","alignX-left":"GZdcSa_alignX-left","alignX-right":"GZdcSa_alignX-right","alignY-bottom":"GZdcSa_alignY-bottom","alignY-center":"GZdcSa_alignY-center","alignY-top":"GZdcSa_alignY-top","gap-0":"GZdcSa_gap-0","gap-1":"GZdcSa_gap-1","gap-2":"GZdcSa_gap-2","gap-3":"GZdcSa_gap-3","gap-4":"GZdcSa_gap-4","gap-5":"GZdcSa_gap-5","gap-6":"GZdcSa_gap-6","gap-7":"GZdcSa_gap-7","gap-8":"GZdcSa_gap-8",inline:HR,item:zR},_r=({children:t,"data-test-id":e="inline",gap:n="0",alignX:i="left",alignY:a="center",className:c,...d})=>k.jsx("div",{...d,className:ft(_c.inline,_c[`gap-${n}`],_c[`alignX-${i}`],_c[`alignY-${a}`],c),"data-test-id":e,children:x.Children.map(t,(f,v)=>f&&k.jsx("div",{className:_c.item,children:f},v))});function bb(t,e,n){let i=bf({...t,value:e.isSelected}),{isInvalid:a,validationErrors:c,validationDetails:d}=i.displayValidation,{labelProps:f,inputProps:v,isSelected:m,isPressed:g,isDisabled:b,isReadOnly:S}=yb({...t,isInvalid:a},e,n);zv(t,i,n);let{isIndeterminate:C,isRequired:P,validationBehavior:T="aria"}=t;return x.useEffect(()=>{n.current&&(n.current.indeterminate=!!C)}),{labelProps:f,inputProps:{...v,checked:m,"aria-required":P&&T==="aria"||void 0,required:P&&T==="native"},isSelected:m,isPressed:g,isDisabled:b,isReadOnly:S,isInvalid:a,validationErrors:c,validationDetails:d}}const jR=new WeakMap;function KR(t,e,n){const i=Wv({isReadOnly:t.isReadOnly||e.isReadOnly,isSelected:e.isSelected(t.value),onChange(A){A?e.addValue(t.value):e.removeValue(t.value),t.onChange&&t.onChange(A)}});let{name:a,descriptionId:c,errorMessageId:d,validationBehavior:f}=jR.get(e);var v;f=(v=t.validationBehavior)!==null&&v!==void 0?v:f;let{realtimeValidation:m}=bf({...t,value:i.isSelected,name:void 0,validationBehavior:"aria"}),g=x.useRef(vs),b=()=>{e.setInvalid(t.value,m.isInvalid?m:g.current)};x.useEffect(b);let S=e.realtimeValidation.isInvalid?e.realtimeValidation:m,C=f==="native"?e.displayValidation:S;var P;let T=bb({...t,isReadOnly:t.isReadOnly||e.isReadOnly,isDisabled:t.isDisabled||e.isDisabled,name:t.name||a,isRequired:(P=t.isRequired)!==null&&P!==void 0?P:e.isRequired,validationBehavior:f,[Sp]:{realtimeValidation:S,displayValidation:C,resetValidation:e.resetValidation,commitValidation:e.commitValidation,updateValidation(A){g.current=A,b()}}},i,n);return{...T,inputProps:{...T.inputProps,"aria-describedby":[t["aria-describedby"],e.isInvalid?d:null,c].filter(Boolean).join(" ")||void 0}}}function xb(t){var e,n,i="";if(typeof t=="string"||typeof t=="number")i+=t;else if(typeof t=="object")if(Array.isArray(t))for(e=0;etypeof t=="boolean"?"".concat(t):t===0?"0":t,Rs=WR,E0=(t,e)=>n=>{var i;if((e==null?void 0:e.variants)==null)return Rs(t,n==null?void 0:n.class,n==null?void 0:n.className);const{variants:a,defaultVariants:c}=e,d=Object.keys(a).map(m=>{const g=n==null?void 0:n[m],b=c==null?void 0:c[m];if(g===null)return null;const S=G6(g)||G6(b);return a[m][S]}),f=n&&Object.entries(n).reduce((m,g)=>{let[b,S]=g;return S===void 0||(m[b]=S),m},{}),v=e==null||(i=e.compoundVariants)===null||i===void 0?void 0:i.reduce((m,g)=>{let{class:b,className:S,...C}=g;return Object.entries(C).every(P=>{let[T,A]=P;return Array.isArray(A)?A.includes({...c,...f}[T]):{...c,...f}[T]===A})?[...m,b,S]:m},[]);return Rs(t,d,v,n==null?void 0:n.class,n==null?void 0:n.className)},UR=x.createContext(null);x.createContext(null);x.createContext(null);x.createContext(null);x.createContext(null);const wb=x.createContext({});class Uv{get childNodes(){throw new Error("childNodes is not supported")}clone(){let e=new Uv(this.type,this.key);return e.value=this.value,e.level=this.level,e.hasChildNodes=this.hasChildNodes,e.rendered=this.rendered,e.textValue=this.textValue,e["aria-label"]=this["aria-label"],e.index=this.index,e.parentKey=this.parentKey,e.prevKey=this.prevKey,e.nextKey=this.nextKey,e.firstChildKey=this.firstChildKey,e.lastChildKey=this.lastChildKey,e.props=this.props,e.render=this.render,e}constructor(e,n){this.value=null,this.level=0,this.hasChildNodes=!1,this.rendered=null,this.textValue="",this["aria-label"]=void 0,this.index=0,this.parentKey=null,this.prevKey=null,this.nextKey=null,this.firstChildKey=null,this.lastChildKey=null,this.props={},this.type=e,this.key=n}}class GR{get size(){return this.keyMap.size}getKeys(){return this.keyMap.keys()}*[Symbol.iterator](){let e=this.firstKey!=null?this.keyMap.get(this.firstKey):void 0;for(;e;)yield e,e=e.nextKey!=null?this.keyMap.get(e.nextKey):void 0}getChildren(e){let n=this.keyMap;return{*[Symbol.iterator](){let i=n.get(e),a=(i==null?void 0:i.firstChildKey)!=null?n.get(i.firstChildKey):null;for(;a;)yield a,a=a.nextKey!=null?n.get(a.nextKey):void 0}}}getKeyBefore(e){let n=this.keyMap.get(e);if(!n)return null;if(n.prevKey!=null){for(n=this.keyMap.get(n.prevKey);n&&n.type!=="item"&&n.lastChildKey!=null;)n=this.keyMap.get(n.lastChildKey);var i;return(i=n==null?void 0:n.key)!==null&&i!==void 0?i:null}return n.parentKey}getKeyAfter(e){let n=this.keyMap.get(e);if(!n)return null;if(n.type!=="item"&&n.firstChildKey!=null)return n.firstChildKey;for(;n;){if(n.nextKey!=null)return n.nextKey;if(n.parentKey!=null)n=this.keyMap.get(n.parentKey);else return null}return null}getFirstKey(){return this.firstKey}getLastKey(){let e=this.lastKey!=null?this.keyMap.get(this.lastKey):null;for(;(e==null?void 0:e.lastChildKey)!=null;)e=this.keyMap.get(e.lastChildKey);var n;return(n=e==null?void 0:e.key)!==null&&n!==void 0?n:null}getItem(e){var n;return(n=this.keyMap.get(e))!==null&&n!==void 0?n:null}at(){throw new Error("Not implemented")}clone(){let e=this.constructor,n=new e;return n.keyMap=new Map(this.keyMap),n.firstKey=this.firstKey,n.lastKey=this.lastKey,n}addNode(e){if(this.frozen)throw new Error("Cannot add a node to a frozen collection");this.keyMap.set(e.key,e)}removeNode(e){if(this.frozen)throw new Error("Cannot remove a node to a frozen collection");this.keyMap.delete(e)}commit(e,n,i=!1){if(this.frozen)throw new Error("Cannot commit a frozen collection");this.firstKey=e,this.lastKey=n,this.frozen=!i}constructor(){this.keyMap=new Map,this.firstKey=null,this.lastKey=null,this.frozen=!1}}class $b{*[Symbol.iterator](){let e=this.firstChild;for(;e;)yield e,e=e.nextSibling}get firstChild(){return this._firstChild}set firstChild(e){this._firstChild=e,this.ownerDocument.markDirty(this)}get lastChild(){return this._lastChild}set lastChild(e){this._lastChild=e,this.ownerDocument.markDirty(this)}get previousSibling(){return this._previousSibling}set previousSibling(e){this._previousSibling=e,this.ownerDocument.markDirty(this)}get nextSibling(){return this._nextSibling}set nextSibling(e){this._nextSibling=e,this.ownerDocument.markDirty(this)}get parentNode(){return this._parentNode}set parentNode(e){this._parentNode=e,this.ownerDocument.markDirty(this)}get isConnected(){var e;return((e=this.parentNode)===null||e===void 0?void 0:e.isConnected)||!1}appendChild(e){this.ownerDocument.startTransaction(),e.parentNode&&e.parentNode.removeChild(e),this.firstChild==null&&(this.firstChild=e),this.lastChild?(this.lastChild.nextSibling=e,e.index=this.lastChild.index+1,e.previousSibling=this.lastChild):(e.previousSibling=null,e.index=0),e.parentNode=this,e.nextSibling=null,this.lastChild=e,this.ownerDocument.markDirty(this),e.hasSetProps&&this.ownerDocument.addNode(e),this.ownerDocument.endTransaction(),this.ownerDocument.queueUpdate()}insertBefore(e,n){if(n==null)return this.appendChild(e);this.ownerDocument.startTransaction(),e.parentNode&&e.parentNode.removeChild(e),e.nextSibling=n,e.previousSibling=n.previousSibling,e.index=n.index,this.firstChild===n?this.firstChild=e:n.previousSibling&&(n.previousSibling.nextSibling=e),n.previousSibling=e,e.parentNode=n.parentNode;let i=n;for(;i;)i.index++,i=i.nextSibling;e.hasSetProps&&this.ownerDocument.addNode(e),this.ownerDocument.endTransaction(),this.ownerDocument.queueUpdate()}removeChild(e){if(e.parentNode!==this||!this.ownerDocument.isMounted)return;this.ownerDocument.startTransaction();let n=e.nextSibling;for(;n;)n.index--,n=n.nextSibling;e.nextSibling&&(e.nextSibling.previousSibling=e.previousSibling),e.previousSibling&&(e.previousSibling.nextSibling=e.nextSibling),this.firstChild===e&&(this.firstChild=e.nextSibling),this.lastChild===e&&(this.lastChild=e.previousSibling),e.parentNode=null,e.nextSibling=null,e.previousSibling=null,e.index=0,this.ownerDocument.removeNode(e),this.ownerDocument.endTransaction(),this.ownerDocument.queueUpdate()}addEventListener(){}removeEventListener(){}constructor(e){this._firstChild=null,this._lastChild=null,this._previousSibling=null,this._nextSibling=null,this._parentNode=null,this.ownerDocument=e}}class Qc extends $b{get index(){return this._index}set index(e){this._index=e,this.ownerDocument.markDirty(this)}get level(){return this.parentNode instanceof Qc?this.parentNode.level+(this.node.type==="item"?1:0):0}updateNode(){var e,n,i,a;let c=this.ownerDocument.getMutableNode(this);c.index=this.index,c.level=this.level,c.parentKey=this.parentNode instanceof Qc?this.parentNode.node.key:null;var d;c.prevKey=(d=(e=this.previousSibling)===null||e===void 0?void 0:e.node.key)!==null&&d!==void 0?d:null;var f;c.nextKey=(f=(n=this.nextSibling)===null||n===void 0?void 0:n.node.key)!==null&&f!==void 0?f:null,c.hasChildNodes=!!this.firstChild;var v;c.firstChildKey=(v=(i=this.firstChild)===null||i===void 0?void 0:i.node.key)!==null&&v!==void 0?v:null;var m;c.lastChildKey=(m=(a=this.lastChild)===null||a===void 0?void 0:a.node.key)!==null&&m!==void 0?m:null}setProps(e,n,i,a){let c=this.ownerDocument.getMutableNode(this),{value:d,textValue:f,id:v,...m}=e;if(m.ref=n,c.props=m,c.rendered=i,c.render=a,c.value=d,c.textValue=f||(typeof m.children=="string"?m.children:"")||e["aria-label"]||"",v!=null&&v!==c.key){if(this.hasSetProps)throw new Error("Cannot change the id of an item");c.key=v}this.hasSetProps||(this.ownerDocument.addNode(this),this.ownerDocument.endTransaction(),this.hasSetProps=!0),this.ownerDocument.queueUpdate()}get style(){return{}}hasAttribute(){}setAttribute(){}setAttributeNS(){}removeAttribute(){}constructor(e,n){super(n),this.nodeType=8,this._index=0,this.hasSetProps=!1,this.node=new Uv(e,`react-aria-${++n.nodeId}`),this.ownerDocument.startTransaction()}}class qR extends $b{get isConnected(){return this.isMounted}createElement(e){return new Qc(e,this)}getMutableNode(e){let n=e.node;return this.mutatedNodes.has(e)||(n=e.node.clone(),this.mutatedNodes.add(e),e.node=n),this.markDirty(e),n}getMutableCollection(){return!this.isSSR&&!this.collectionMutated&&(this.collection=this.collection.clone(),this.collectionMutated=!0),this.collection}markDirty(e){this.dirtyNodes.add(e)}startTransaction(){this.transactionCount++}endTransaction(){this.transactionCount--}addNode(e){let n=this.getMutableCollection();if(!n.getItem(e.node.key)){n.addNode(e.node);for(let i of e)this.addNode(i)}this.markDirty(e)}removeNode(e){for(let i of e)this.removeNode(i);this.getMutableCollection().removeNode(e.node.key),this.markDirty(e)}getCollection(){return this.transactionCount>0?this.collection:(this.updateCollection(),this.collection)}updateCollection(){for(let c of this.dirtyNodes)c instanceof Qc&&c.isConnected&&c.updateNode();if(this.dirtyNodes.clear(),this.mutatedNodes.size||this.collectionMutated){var e,n;let c=this.getMutableCollection();for(let d of this.mutatedNodes)d.isConnected&&c.addNode(d.node);var i,a;c.commit((i=(e=this.firstChild)===null||e===void 0?void 0:e.node.key)!==null&&i!==void 0?i:null,(a=(n=this.lastChild)===null||n===void 0?void 0:n.node.key)!==null&&a!==void 0?a:null,this.isSSR),this.mutatedNodes.clear()}this.collectionMutated=!1}queueUpdate(){if(!(this.dirtyNodes.size===0||this.transactionCount>0))for(let e of this.subscriptions)e()}subscribe(e){return this.subscriptions.add(e),()=>this.subscriptions.delete(e)}resetAfterSSR(){this.isSSR&&(this.isSSR=!1,this.firstChild=null,this.lastChild=null,this.nodeId=0)}constructor(e){super(null),this.nodeType=11,this.ownerDocument=this,this.dirtyNodes=new Set,this.isSSR=!1,this.nodeId=0,this.nodesByProps=new WeakMap,this.isMounted=!0,this.mutatedNodes=new Set,this.subscriptions=new Set,this.transactionCount=0,this.collection=e,this.collectionMutated=!0}}function Sb(t){let{children:e,items:n,idScope:i,addIdAndValue:a,dependencies:c=[]}=t,d=x.useMemo(()=>new WeakMap,c);return x.useMemo(()=>{if(n&&typeof e=="function"){let m=[];for(let g of n){let b=d.get(g);if(!b){b=e(g);var f,v;let S=(v=(f=b.props.id)!==null&&f!==void 0?f:g.key)!==null&&v!==void 0?v:g.id;if(S==null)throw new Error("Could not determine key for item");i&&(S=i+":"+S),b=x.cloneElement(b,a?{key:S,id:S,value:g}:{key:S}),d.set(g,b)}m.push(b)}return m}else if(typeof e!="function")return e},[e,n,d,i,a])}if(typeof HTMLTemplateElement<"u"){const t=Object.getOwnPropertyDescriptor(Node.prototype,"firstChild").get;Object.defineProperty(HTMLTemplateElement.prototype,"firstChild",{configurable:!0,enumerable:!0,get:function(){return this.dataset.reactAriaHidden?this.content.firstChild:t.call(this)}})}const F5=x.createContext(!1),YR=typeof DocumentFragment<"u"?new DocumentFragment:null;function XR(t){let e=x.useContext(F5),n=M2();if(e)return ee.createElement(ee.Fragment,null,t.children);let i=ee.createElement(F5.Provider,{value:!0},t.children);return n?ee.createElement("template",{"data-react-aria-hidden":!0},i):Is.createPortal(i,YR)}function Gv(t){let e=(n,i)=>x.useContext(F5)?null:t(n,i);return e.displayName=t.displayName||t.name,x.forwardRef(e)}function QR(){return x.useContext(F5)}var g3={exports:{}},y3={};/** * @license React * use-sync-external-store-shim.production.min.js * @@ -62,16 +62,16 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var q6;function JR(){if(q6)return y3;q6=1;var t=O5();function e(b,S){return b===S&&(b!==0||1/b===1/S)||b!==b&&S!==S}var n=typeof Object.is=="function"?Object.is:e,i=t.useState,a=t.useEffect,c=t.useLayoutEffect,d=t.useDebugValue;function f(b,S){var C=S(),P=i({inst:{value:C,getSnapshot:S}}),T=P[0].inst,A=P[1];return c(function(){T.value=C,T.getSnapshot=S,v(T)&&A({inst:T})},[b,C,S]),a(function(){return v(T)&&A({inst:T}),b(function(){v(T)&&A({inst:T})})},[b]),d(C),C}function v(b){var S=b.getSnapshot;b=b.value;try{var C=S();return!n(b,C)}catch{return!0}}function m(b,S){return S()}var g=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?m:f;return y3.useSyncExternalStore=t.useSyncExternalStore!==void 0?t.useSyncExternalStore:g,y3}var Y6;function eB(){return Y6||(Y6=1,g3.exports=JR()),g3.exports}var qv=eB();const Cb=x.createContext(!1),Jc=x.createContext(null);function Yv(t){if(x.useContext(Jc))return t.content;let{collection:n,document:i}=iB(t.createCollection);return ee.createElement(ee.Fragment,null,ee.createElement(XR,null,ee.createElement(Jc.Provider,{value:i},t.content)),ee.createElement(tB,{render:t.children,collection:n}))}function tB({collection:t,render:e}){return e(t)}function nB(t,e,n){let i=M2(),a=x.useRef(i);a.current=i;let c=x.useCallback(()=>a.current?n():e(),[e,n]);return qv.useSyncExternalStore(t,c)}const rB=typeof ee.useSyncExternalStore=="function"?ee.useSyncExternalStore:nB;function iB(t){let[e]=x.useState(()=>new qR((t==null?void 0:t())||new GR)),n=x.useCallback(d=>e.subscribe(d),[e]),i=x.useCallback(()=>{let d=e.getCollection();return e.isSSR&&e.resetAfterSSR(),d},[e]),a=x.useCallback(()=>(e.isSSR=!0,e.getCollection()),[e]),c=rB(n,i,a);return C0(()=>(e.isMounted=!0,()=>{e.isMounted=!1}),[e]),{collection:c,document:e}}const Pp=x.createContext(null);function oB(t,e,n,i,a,c){let d=x.useCallback(v=>{v==null||v.setProps(e,n,i,c)},[e,n,i,c]),f=x.useContext(Pp);if(f){let v=f.ownerDocument.nodesByProps.get(e);return v||(v=f.ownerDocument.createElement(t),v.setProps(e,n,i,c),f.appendChild(v),f.ownerDocument.updateCollection(),f.ownerDocument.nodesByProps.set(e,v)),a?ee.createElement(Pp.Provider,{value:v},a):null}return ee.createElement(t,{ref:d},a)}function _b(t,e){let n=({node:a})=>e(a.props,a.props.ref,a),i=x.forwardRef((a,c)=>{if(!x.useContext(Cb)){if(e.length>=3)throw new Error(e.name+" cannot be rendered outside a collection.");return e(a,c)}return oB(t,a,c,"children"in a?a.children:null,null,f=>ee.createElement(n,{node:f}))});return i.displayName=e.name,i}function lB(t){return Sb({...t,addIdAndValue:!0})}const X6=x.createContext(null);function Pb(t){let e=x.useContext(X6),n=((e==null?void 0:e.dependencies)||[]).concat(t.dependencies),i=t.idScope||(e==null?void 0:e.idScope),a=lB({...t,idScope:i,dependencies:n});return x.useContext(Jc)&&(a=ee.createElement(aB,null,a)),e=x.useMemo(()=>({dependencies:n,idScope:i}),[i,...n]),ee.createElement(X6.Provider,{value:e},a)}function aB({children:t}){let e=x.useContext(Jc),n=x.useMemo(()=>ee.createElement(Jc.Provider,{value:null},ee.createElement(Cb.Provider,{value:!0},t)),[t]);return M2()?ee.createElement(Pp.Provider,{value:e},n):Is.createPortal(n,e)}const Eb=x.createContext(null),sB={CollectionRoot({collection:t,renderDropIndicator:e}){return Q6(t,null,e)},CollectionBranch({collection:t,parent:e,renderDropIndicator:n}){return Q6(t,e,n)}};function Q6(t,e,n){return Sb({items:e?t.getChildren(e.key):t,dependencies:[n],children(i){var a;let c=i.render(i);if(!n||i.type!=="item")return c;let d=i.key,f=t.getKeyAfter(d);return ee.createElement(ee.Fragment,null,n({type:"item",key:d,dropPosition:"before"}),c,(f==null||((a=t.getItem(f))===null||a===void 0?void 0:a.type)!=="item")&&n({type:"item",key:d,dropPosition:"after"}))}})}const wf=x.createContext(sB);function uB(t){return x.useMemo(()=>t!=null?new Set([t]):null,[t])}const Ep=Symbol("default");function fn({values:t,children:e}){for(let[n,i]of t)e=ee.createElement(n.Provider,{value:i},e);return e}function et(t){let{className:e,style:n,children:i,defaultClassName:a,defaultChildren:c,defaultStyle:d,values:f}=t;return x.useMemo(()=>{let v,m,g;return typeof e=="function"?v=e({...f,defaultClassName:a}):v=e,typeof n=="function"?m=n({...f,defaultStyle:d||{}}):m=n,typeof i=="function"?g=i({...f,defaultChildren:c}):i==null?g=c:g=i,{className:v??a,style:m||d?{...d,...m}:void 0,children:g??c,"data-rac":""}},[e,n,i,a,c,d,f])}function Z0(t,e){return n=>e(typeof t=="function"?t(n):t,n)}function $o(t,e){let n=x.useContext(t);if(e===null)return null;if(n&&typeof n=="object"&&"slots"in n&&n.slots){let i=new Intl.ListFormat().format(Object.keys(n.slots).map(c=>`"${c}"`));if(!e&&!n.slots[Ep])throw new Error(`A slot prop is required. Valid slot names are ${i}.`);let a=e||Ep;if(!n.slots[a])throw new Error(`Invalid slot "${e}". Valid slot names are ${i}.`);return n.slots[a]}return n}function lt(t,e,n){let i=$o(n,t.slot)||{},{ref:a,...c}=i,d=A2(x.useMemo(()=>j5(e,a),[e,a])),f=qe(c,t);return"style"in c&&c.style&&"style"in t&&t.style&&(typeof c.style=="function"||typeof t.style=="function"?f.style=v=>{let m=typeof c.style=="function"?c.style(v):c.style,g={...v.defaultStyle,...m},b=typeof t.style=="function"?t.style({...v,defaultStyle:g}):t.style;return{...g,...b}}:f.style={...c.style,...t.style}),[f,d]}function Ks(){let[t,e]=x.useState(!0),n=x.useRef(!1),i=x.useCallback(a=>{n.current=!0,e(!!a)},[]);return C0(()=>{n.current||e(!1)},[]),[i,t]}function $f(t,e=!0){let[n,i]=x.useState(!0);return kb(t,n&&e,x.useCallback(()=>i(!1),[])),n&&e}function Z5(t,e){let[n,i]=x.useState(!1),[a,c]=x.useState("idle");return!e&&t.current&&a==="idle"&&(n=!0,i(!0),c("exiting")),!t.current&&a==="exited"&&c("idle"),kb(t,n,x.useCallback(()=>{c("exited"),i(!1)},[])),n}function kb(t,e,n){let i=x.useRef(null);e&&t.current&&(i.current=window.getComputedStyle(t.current).animation),C0(()=>{if(e&&t.current){let a=window.getComputedStyle(t.current);if(a.animationName&&a.animationName!=="none"&&a.animation!==i.current){let c=f=>{f.target===t.current&&(d.removeEventListener("animationend",c),zp.flushSync(()=>{n()}))},d=t.current;return d.addEventListener("animationend",c),()=>{d.removeEventListener("animationend",c)}}else n()}},[t,e,n])}function Sf(t){const e=/^(data-.*)$/;let n={};for(const i in t)e.test(i)||(n[i]=t[i]);return n}function cB(t,e){let{role:n="dialog"}=t,i=$2();i=t["aria-label"]?void 0:i;let a=x.useRef(!1);return x.useEffect(()=>{if(e.current&&!e.current.contains(document.activeElement)){Bl(e.current);let c=setTimeout(()=>{document.activeElement===e.current&&(a.current=!0,e.current&&(e.current.blur(),Bl(e.current)),a.current=!1)},500);return()=>{clearTimeout(c)}}},[e]),x9(),{dialogProps:{...O0(t,{labelable:!0}),role:n,tabIndex:-1,"aria-labelledby":t["aria-labelledby"]||i,onBlur:c=>{a.current&&c.stopPropagation()}},titleProps:{id:i}}}function dB(t){let{value:e=0,minValue:n=0,maxValue:i=100,valueLabel:a,isIndeterminate:c,formatOptions:d={style:"percent"}}=t,f=O0(t,{labelable:!0}),{labelProps:v,fieldProps:m}=Hv({...t,labelElementType:"span"});e=Nc(e,n,i);let g=(e-n)/(i-n),b=zD(d);if(!c&&!a){let S=d.style==="percent"?g:e;a=b.format(S)}return{progressBarProps:qe(f,{...m,"aria-valuenow":c?void 0:e,"aria-valuemin":n,"aria-valuemax":i,"aria-valuetext":c?void 0:a,role:"progressbar"}),labelProps:v}}var Tb={};Tb={"Clear search":"مسح البحث"};var Mb={};Mb={"Clear search":"Изчистване на търсене"};var Ab={};Ab={"Clear search":"Vymazat hledání"};var Lb={};Lb={"Clear search":"Ryd søgning"};var Db={};Db={"Clear search":"Suche zurücksetzen"};var Rb={};Rb={"Clear search":"Απαλοιφή αναζήτησης"};var Bb={};Bb={"Clear search":"Clear search"};var Vb={};Vb={"Clear search":"Borrar búsqueda"};var Ib={};Ib={"Clear search":"Tühjenda otsing"};var Fb={};Fb={"Clear search":"Tyhjennä haku"};var Zb={};Zb={"Clear search":"Effacer la recherche"};var Ob={};Ob={"Clear search":"נקה חיפוש"};var Nb={};Nb={"Clear search":"Obriši pretragu"};var Hb={};Hb={"Clear search":"Keresés törlése"};var zb={};zb={"Clear search":"Cancella ricerca"};var jb={};jb={"Clear search":"検索をクリア"};var Kb={};Kb={"Clear search":"검색 지우기"};var Wb={};Wb={"Clear search":"Išvalyti iešką"};var Ub={};Ub={"Clear search":"Notīrīt meklēšanu"};var Gb={};Gb={"Clear search":"Tøm søk"};var qb={};qb={"Clear search":"Zoekactie wissen"};var Yb={};Yb={"Clear search":"Wyczyść zawartość wyszukiwania"};var Xb={};Xb={"Clear search":"Limpar pesquisa"};var Qb={};Qb={"Clear search":"Limpar pesquisa"};var Jb={};Jb={"Clear search":"Ştergeţi căutarea"};var ex={};ex={"Clear search":"Очистить поиск"};var tx={};tx={"Clear search":"Vymazať vyhľadávanie"};var nx={};nx={"Clear search":"Počisti iskanje"};var rx={};rx={"Clear search":"Obriši pretragu"};var ix={};ix={"Clear search":"Rensa sökning"};var ox={};ox={"Clear search":"Aramayı temizle"};var lx={};lx={"Clear search":"Очистити пошук"};var ax={};ax={"Clear search":"清除搜索"};var sx={};sx={"Clear search":"清除搜尋條件"};var ux={};ux={"ar-AE":Tb,"bg-BG":Mb,"cs-CZ":Ab,"da-DK":Lb,"de-DE":Db,"el-GR":Rb,"en-US":Bb,"es-ES":Vb,"et-EE":Ib,"fi-FI":Fb,"fr-FR":Zb,"he-IL":Ob,"hr-HR":Nb,"hu-HU":Hb,"it-IT":zb,"ja-JP":jb,"ko-KR":Kb,"lt-LT":Wb,"lv-LV":Ub,"nb-NO":Gb,"nl-NL":qb,"pl-PL":Yb,"pt-BR":Xb,"pt-PT":Qb,"ro-RO":Jb,"ru-RU":ex,"sk-SK":tx,"sl-SI":nx,"sr-SP":rx,"sv-SE":ix,"tr-TR":ox,"uk-UA":lx,"zh-CN":ax,"zh-TW":sx};function fB(t){return t&&t.__esModule?t.default:t}function pB(t,e,n){let i=zs(fB(ux),"@react-aria/searchfield"),{isDisabled:a,isReadOnly:c,onSubmit:d,onClear:f,type:v="search"}=t,m=V=>{const R=V.key;R==="Enter"&&(a||c)&&V.preventDefault(),!(a||c)&&(R==="Enter"&&d&&(V.preventDefault(),d(e.value)),R==="Escape"&&(e.value===""?V.continuePropagation():(e.setValue(""),f&&f())))},g=()=>{e.setValue(""),f&&f()},b=()=>{var V;(V=n.current)===null||V===void 0||V.focus()},{labelProps:S,inputProps:C,descriptionProps:P,errorMessageProps:T,...A}=_9({...t,value:e.value,onChange:e.setValue,onKeyDown:c?t.onKeyDown:vo(m,t.onKeyDown),type:v},n);return{labelProps:S,inputProps:{...C,defaultValue:void 0},clearButtonProps:{"aria-label":i.format("Clear search"),excludeFromTabOrder:!0,preventFocusOnPress:!0,isDisabled:a||c,onPress:g,onPressStart:b},descriptionProps:P,errorMessageProps:T,...A}}const cx=new WeakMap;function vB(t,e,n){let{keyboardDelegate:i,isDisabled:a,isRequired:c,name:d,validationBehavior:f="aria"}=t,v=Nv({usage:"search",sensitivity:"base"}),m=x.useMemo(()=>i||new Kv(e.collection,e.disabledKeys,null,v),[i,e.collection,e.disabledKeys,v]),{menuTriggerProps:g,menuProps:b}=mb({isDisabled:a,type:"listbox"},e,n),S=D=>{switch(D.key){case"ArrowLeft":{D.preventDefault();let ie=e.selectedKey!=null?m.getKeyAbove(e.selectedKey):m.getFirstKey();ie&&e.setSelectedKey(ie);break}case"ArrowRight":{D.preventDefault();let ie=e.selectedKey!=null?m.getKeyBelow(e.selectedKey):m.getFirstKey();ie&&e.setSelectedKey(ie);break}}},{typeSelectProps:C}=L9({keyboardDelegate:m,selectionManager:e.selectionManager,onTypeSelect(D){e.setSelectedKey(D)}}),{isInvalid:P,validationErrors:T,validationDetails:A}=e.displayValidation,{labelProps:V,fieldProps:R,descriptionProps:F,errorMessageProps:N}=C9({...t,labelElementType:"span",isInvalid:P,errorMessage:t.errorMessage||T});C.onKeyDown=C.onKeyDownCapture,delete C.onKeyDownCapture;let z=O0(t,{labelable:!0}),U=qe(C,g,R),le=Qn();return cx.set(e,{isDisabled:a,isRequired:c,name:d,validationBehavior:f}),{labelProps:{...V,onClick:()=>{t.isDisabled||(n.current.focus(),c8("keyboard"))}},triggerProps:qe(z,{...U,isDisabled:a,onKeyDown:vo(U.onKeyDown,S,t.onKeyDown),onKeyUp:t.onKeyUp,"aria-labelledby":[le,U["aria-labelledby"],U["aria-label"]&&!U["aria-labelledby"]?U.id:null].filter(Boolean).join(" "),onFocus(D){e.isFocused||(t.onFocus&&t.onFocus(D),t.onFocusChange&&t.onFocusChange(!0),e.setFocused(!0))},onBlur(D){e.isOpen||(t.onBlur&&t.onBlur(D),t.onFocusChange&&t.onFocusChange(!1),e.setFocused(!1))}}),valueProps:{id:le},menuProps:{...b,autoFocus:e.focusStrategy||!0,shouldSelectOnPressUp:!0,shouldFocusOnHover:!0,disallowEmptySelection:!0,linkBehavior:"selection",onBlur:D=>{D.currentTarget.contains(D.relatedTarget)||(t.onBlur&&t.onBlur(D),t.onFocusChange&&t.onFocusChange(!1),e.setFocused(!1))},"aria-labelledby":[R["aria-labelledby"],U["aria-label"]&&!R["aria-labelledby"]?U.id:null].filter(Boolean).join(" ")},descriptionProps:F,errorMessageProps:N,isInvalid:P,validationErrors:T,validationDetails:A}}function hB(t,e,n){let i=cx.get(e)||{},{autoComplete:a,name:c=i.name,isDisabled:d=i.isDisabled}=t,{validationBehavior:f,isRequired:v}=i,m=pE(),{visuallyHiddenProps:g}=m9();Fp(t.selectRef,e.selectedKey,e.setSelectedKey),zv({validationBehavior:f,focus:()=>n.current.focus()},e,t.selectRef);var b;return{containerProps:{...g,"aria-hidden":!0,"data-react-aria-prevent-focus":!0,"data-a11y-ignore":"aria-hidden-focus"},inputProps:{type:"text",tabIndex:m==null||e.isFocused||e.isOpen?-1:0,style:{fontSize:16},onFocus:()=>n.current.focus(),disabled:d},selectProps:{tabIndex:-1,autoComplete:a,disabled:d,required:f==="native"&&v,name:c,value:(b=e.selectedKey)!==null&&b!==void 0?b:"",onChange:S=>e.setSelectedKey(S.target.value)}}}function mB(t){let{state:e,triggerRef:n,label:i,name:a,isDisabled:c}=t,d=x.useRef(null),{containerProps:f,inputProps:v,selectProps:m}=hB({...t,selectRef:d},e,n);var g;return e.collection.size<=300?ee.createElement("div",{...f,"data-testid":"hidden-select-container"},ee.createElement("input",v),ee.createElement("label",null,i,ee.createElement("select",{...m,ref:d},ee.createElement("option",null),[...e.collection.getKeys()].map(b=>{let S=e.collection.getItem(b);if(S.type==="item")return ee.createElement("option",{key:S.key,value:S.key},S.textValue)})))):a?ee.createElement("input",{type:"hidden",autoComplete:m.autoComplete,name:a,disabled:c,value:(g=e.selectedKey)!==null&&g!==void 0?g:""}):null}function gB(t,e){let n=O0(t,{labelable:!0}),{hoverProps:i}=Jn({onHoverStart:()=>e==null?void 0:e.open(!0),onHoverEnd:()=>e==null?void 0:e.close()});return{tooltipProps:qe(n,i,{role:"tooltip"})}}function yB(t,e,n){let{isDisabled:i,trigger:a}=t,c=Qn(),d=x.useRef(!1),f=x.useRef(!1),v=()=>{(d.current||f.current)&&e.open(f.current)},m=V=>{!d.current&&!f.current&&e.close(V)};x.useEffect(()=>{let V=R=>{n&&n.current&&R.key==="Escape"&&(R.stopPropagation(),e.close(!0))};if(e.isOpen)return document.addEventListener("keydown",V,!0),()=>{document.removeEventListener("keydown",V,!0)}},[n,e]);let g=()=>{a!=="focus"&&(Ts()==="pointer"?d.current=!0:d.current=!1,v())},b=()=>{a!=="focus"&&(f.current=!1,d.current=!1,m())},S=()=>{f.current=!1,d.current=!1,m(!0)},C=()=>{ks()&&(f.current=!0,v())},P=()=>{f.current=!1,d.current=!1,m(!0)},{hoverProps:T}=Jn({isDisabled:i,onHoverStart:g,onHoverEnd:b}),{focusableProps:A}=Y5({isDisabled:i,onFocus:C,onBlur:P},n);return{triggerProps:{"aria-describedby":e.isOpen?c:void 0,...qe(A,T,{onPointerDown:S,onKeyDown:S})},tooltipProps:{id:c}}}const bB=new Set(["form","formAction","formEncType","formMethod","formNoValidate","formTarget","name","value"]),Cf=x.createContext({});function xB(t,e){[t,e]=lt(t,e,Cf);let n=t,{buttonProps:i,isPressed:a}=oR(t,e),{focusProps:c,isFocused:d,isFocusVisible:f}=L2(t),{hoverProps:v,isHovered:m}=Jn(t),g=et({...t,values:{isHovered:m,isPressed:a,isFocused:d,isFocusVisible:f,isDisabled:t.isDisabled||!1},defaultClassName:"react-aria-Button"});return ee.createElement("button",{...O0(t,{propNames:bB}),...qe(i,c,v),...g,ref:e,slot:t.slot||void 0,"data-disabled":t.isDisabled||void 0,"data-pressed":n.isPressed||a||void 0,"data-hovered":m||void 0,"data-focused":d||void 0,"data-focus-visible":f||void 0})}const dx=Gv(xB),So=x.createContext({});function wB(t,e){[t,e]=lt(t,e,So);let{elementType:n="span",...i}=t;return ee.createElement(n,{className:"react-aria-Text",...i,ref:e})}const fx=x.forwardRef(wB);function $B(t){let[e,n]=yo(J6(t.value),J6(t.defaultValue)||"",t.onChange);return{value:e,setValue:n}}function J6(t){if(t!=null)return t.toString()}function SB(t){let e=js(t),[n,i]=x.useState(null),a=mR({...t,onSelectionChange:v=>{t.onSelectionChange!=null&&t.onSelectionChange(v),e.close(),c.commitValidation()}}),c=bf({...t,value:a.selectedKey}),[d,f]=x.useState(!1);return{...c,...a,...e,focusStrategy:n,open(v=null){a.collection.size!==0&&(i(v),e.open())},toggle(v=null){a.collection.size!==0&&(i(v),e.toggle())},isFocused:d,setFocused:f}}const CB=1500,em=500;let $l={},_B=0,Pc=!1,fi=null,Sl=null;function px(t={}){let{delay:e=CB,closeDelay:n=em}=t,{isOpen:i,open:a,close:c}=js(t),d=x.useMemo(()=>`${++_B}`,[]),f=x.useRef(void 0),v=x.useRef(c),m=()=>{$l[d]=S},g=()=>{for(let P in $l)P!==d&&($l[P](!0),delete $l[P])},b=()=>{clearTimeout(f.current),f.current=null,g(),m(),Pc=!0,a(),fi&&(clearTimeout(fi),fi=null),Sl&&(clearTimeout(Sl),Sl=null)},S=P=>{P||n<=0?(clearTimeout(f.current),f.current=null,v.current()):f.current||(f.current=setTimeout(()=>{f.current=null,v.current()},n)),fi&&(clearTimeout(fi),fi=null),Pc&&(Sl&&clearTimeout(Sl),Sl=setTimeout(()=>{delete $l[d],Sl=null,Pc=!1},Math.max(em,n)))},C=()=>{g(),m(),!i&&!fi&&!Pc?fi=setTimeout(()=>{fi=null,Pc=!0,b()},e):i||b()};return x.useEffect(()=>{v.current=c},[c]),x.useEffect(()=>()=>{clearTimeout(f.current),$l[d]&&delete $l[d]},[d]),{isOpen:i,open:P=>{!P&&e>0&&!f.current?C():b()},close:S}}class PB{*[Symbol.iterator](){yield*this.iterable}get size(){return this.keyMap.size}getKeys(){return this.keyMap.keys()}getKeyBefore(e){let n=this.keyMap.get(e);return n?n.prevKey:null}getKeyAfter(e){let n=this.keyMap.get(e);return n?n.nextKey:null}getFirstKey(){return this.firstKey}getLastKey(){return this.lastKey}getItem(e){return this.keyMap.get(e)}at(e){const n=[...this.getKeys()];return this.getItem(n[e])}constructor(e,{expandedKeys:n}={}){this.keyMap=new Map,this.iterable=e,n=n||new Set;let i=d=>{if(this.keyMap.set(d.key,d),d.childNodes&&(d.type==="section"||n.has(d.key)))for(let f of d.childNodes)i(f)};for(let d of e)i(d);let a,c=0;for(let[d,f]of this.keyMap)a?(a.nextKey=d,f.prevKey=a.key):(this.firstKey=d,f.prevKey=void 0),f.type==="item"&&(f.index=c++),a=f,a.nextKey=void 0;this.lastKey=a==null?void 0:a.key}}function EB(t){let{onExpandedChange:e}=t,[n,i]=yo(t.expandedKeys?new Set(t.expandedKeys):void 0,t.defaultExpandedKeys?new Set(t.defaultExpandedKeys):new Set,e),a=P9(t),c=x.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),d=E9(t,x.useCallback(v=>new PB(v,{expandedKeys:n}),[n]),null);return x.useEffect(()=>{a.focusedKey!=null&&!d.getItem(a.focusedKey)&&a.setFocusedKey(null)},[d,a.focusedKey]),{collection:d,expandedKeys:n,disabledKeys:c,toggleKey:v=>{i(kB(n,v))},setExpandedKeys:i,selectionManager:new M9(d,a)}}function kB(t,e){let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n}const d1=x.createContext(null);function TB(t,e){let n=x.useContext(d1);return n!=null&&n.isInvalid?ee.createElement(AB,{...t,ref:e}):null}const MB=x.forwardRef(TB),AB=x.forwardRef((t,e)=>{let n=x.useContext(d1),i=et({...t,defaultClassName:"react-aria-FieldError",defaultChildren:n.validationErrors.length===0?void 0:n.validationErrors.join(" "),values:n});return i.children==null?null:ee.createElement(fx,{slot:"errorMessage",...i,ref:e})}),Bs=x.createContext(null);function LB(t,e){[t,e]=lt(t,e,Bs);let{validationErrors:n,validationBehavior:i="native",children:a,className:c,...d}=t;return ee.createElement("form",{noValidate:i!=="native",...d,ref:e,className:c||"react-aria-Form"},ee.createElement(Bs.Provider,{value:{...t,validationBehavior:i}},ee.createElement(S9.Provider,{value:n??{}},a)))}const vx=x.forwardRef(LB),f1=x.createContext({});function DB(t,e){[t,e]=lt(t,e,f1);let{elementType:n="label",...i}=t;return ee.createElement(n,{className:"react-aria-Label",...i,ref:e})}const RB=Gv(DB),BB=x.createContext(null);function VB(t,e){let{inputRef:n=null,...i}=t;[t,e]=lt(i,e,UR);let{validationBehavior:a}=$o(Bs)||{};var c,d;let f=(d=(c=t.validationBehavior)!==null&&c!==void 0?c:a)!==null&&d!==void 0?d:"native",v=x.useContext(BB),m=A2(j5(n,t.inputRef!==void 0?t.inputRef:null)),{labelProps:g,inputProps:b,isSelected:S,isDisabled:C,isReadOnly:P,isPressed:T,isInvalid:A}=v?KR({...t,value:t.value,children:typeof t.children=="function"?!0:t.children},v,m):bb({...t,children:typeof t.children=="function"?!0:t.children,validationBehavior:f},Wv(t),m),{isFocused:V,isFocusVisible:R,focusProps:F}=L2(),N=C||P,{hoverProps:z,isHovered:U}=Jn({...t,isDisabled:N}),le=et({...t,defaultClassName:"react-aria-Checkbox",values:{isSelected:S,isIndeterminate:t.isIndeterminate||!1,isPressed:T,isHovered:U,isFocused:V,isFocusVisible:R,isDisabled:C,isReadOnly:P,isInvalid:A,isRequired:t.isRequired||!1}}),D=O0(t);return delete D.id,ee.createElement("label",{...qe(D,g,z,le),ref:e,slot:t.slot||void 0,"data-selected":S||void 0,"data-indeterminate":t.isIndeterminate||void 0,"data-pressed":T||void 0,"data-hovered":U||void 0,"data-focused":V||void 0,"data-focus-visible":R||void 0,"data-disabled":C||void 0,"data-readonly":P||void 0,"data-invalid":A||void 0,"data-required":t.isRequired||void 0},ee.createElement(yf,{elementType:"span"},ee.createElement("input",{...qe(b,F),ref:m})),le.children)}const IB=x.forwardRef(VB),Xv=x.createContext({});let FB=t=>{let{onHoverStart:e,onHoverChange:n,onHoverEnd:i,...a}=t;return a};function ZB(t,e){[t,e]=lt(t,e,Xv);let{hoverProps:n,isHovered:i}=Jn(t),{isFocused:a,isFocusVisible:c,focusProps:d}=L2({isTextInput:!0,autoFocus:t.autoFocus}),f=!!t["aria-invalid"]&&t["aria-invalid"]!=="false",v=et({...t,values:{isHovered:i,isFocused:a,isFocusVisible:c,isDisabled:t.disabled||!1,isInvalid:f},defaultClassName:"react-aria-Input"});return ee.createElement("input",{...qe(FB(t),d,n),...v,ref:e,"data-focused":a||void 0,"data-disabled":t.disabled||void 0,"data-hovered":i||void 0,"data-focus-visible":c||void 0,"data-invalid":f||void 0})}const OB=Gv(ZB);var hx={};hx={colorSwatchPicker:"تغييرات الألوان",dropzoneLabel:"DropZone",selectPlaceholder:"حدد عنصرًا",tableResizer:"أداة تغيير الحجم"};var mx={};mx={colorSwatchPicker:"Цветови мостри",dropzoneLabel:"DropZone",selectPlaceholder:"Изберете предмет",tableResizer:"Преоразмерител"};var gx={};gx={colorSwatchPicker:"Vzorky barev",dropzoneLabel:"Místo pro přetažení",selectPlaceholder:"Vyberte položku",tableResizer:"Změna velikosti"};var yx={};yx={colorSwatchPicker:"Farveprøver",dropzoneLabel:"DropZone",selectPlaceholder:"Vælg et element",tableResizer:"Størrelsesændring"};var bx={};bx={colorSwatchPicker:"Farbfelder",dropzoneLabel:"Ablegebereich",selectPlaceholder:"Element wählen",tableResizer:"Größenanpassung"};var xx={};xx={colorSwatchPicker:"Χρωματικά δείγματα",dropzoneLabel:"DropZone",selectPlaceholder:"Επιλέξτε ένα αντικείμενο",tableResizer:"Αλλαγή μεγέθους"};var wx={};wx={selectPlaceholder:"Select an item",tableResizer:"Resizer",dropzoneLabel:"DropZone",colorSwatchPicker:"Color swatches"};var $x={};$x={colorSwatchPicker:"Muestras de colores",dropzoneLabel:"DropZone",selectPlaceholder:"Seleccionar un artículo",tableResizer:"Cambiador de tamaño"};var Sx={};Sx={colorSwatchPicker:"Värvinäidised",dropzoneLabel:"DropZone",selectPlaceholder:"Valige üksus",tableResizer:"Suuruse muutja"};var Cx={};Cx={colorSwatchPicker:"Värimallit",dropzoneLabel:"DropZone",selectPlaceholder:"Valitse kohde",tableResizer:"Koon muuttaja"};var _x={};_x={colorSwatchPicker:"Échantillons de couleurs",dropzoneLabel:"DropZone",selectPlaceholder:"Sélectionner un élément",tableResizer:"Redimensionneur"};var Px={};Px={colorSwatchPicker:"דוגמיות צבע",dropzoneLabel:"DropZone",selectPlaceholder:"בחר פריט",tableResizer:"שינוי גודל"};var Ex={};Ex={colorSwatchPicker:"Uzorci boja",dropzoneLabel:"Zona spuštanja",selectPlaceholder:"Odaberite stavku",tableResizer:"Promjena veličine"};var kx={};kx={colorSwatchPicker:"Színtárak",dropzoneLabel:"DropZone",selectPlaceholder:"Válasszon ki egy elemet",tableResizer:"Átméretező"};var Tx={};Tx={colorSwatchPicker:"Campioni di colore",dropzoneLabel:"Zona di rilascio",selectPlaceholder:"Seleziona un elemento",tableResizer:"Ridimensionamento"};var Mx={};Mx={colorSwatchPicker:"カラースウォッチ",dropzoneLabel:"ドロップゾーン",selectPlaceholder:"項目を選択",tableResizer:"サイズ変更ツール"};var Ax={};Ax={colorSwatchPicker:"색상 견본",dropzoneLabel:"드롭 영역",selectPlaceholder:"항목 선택",tableResizer:"크기 조정기"};var Lx={};Lx={colorSwatchPicker:"Spalvų pavyzdžiai",dropzoneLabel:"„DropZone“",selectPlaceholder:"Pasirinkite elementą",tableResizer:"Dydžio keitiklis"};var Dx={};Dx={colorSwatchPicker:"Krāsu paraugi",dropzoneLabel:"DropZone",selectPlaceholder:"Izvēlēties vienumu",tableResizer:"Izmēra mainītājs"};var Rx={};Rx={colorSwatchPicker:"Fargekart",dropzoneLabel:"Droppsone",selectPlaceholder:"Velg et element",tableResizer:"Størrelsesendrer"};var Bx={};Bx={colorSwatchPicker:"kleurstalen",dropzoneLabel:"DropZone",selectPlaceholder:"Selecteer een item",tableResizer:"Resizer"};var Vx={};Vx={colorSwatchPicker:"Próbki kolorów",dropzoneLabel:"Strefa upuszczania",selectPlaceholder:"Wybierz element",tableResizer:"Zmiana rozmiaru"};var Ix={};Ix={colorSwatchPicker:"Amostras de cores",dropzoneLabel:"DropZone",selectPlaceholder:"Selecione um item",tableResizer:"Redimensionador"};var Fx={};Fx={colorSwatchPicker:"Amostras de cores",dropzoneLabel:"DropZone",selectPlaceholder:"Selecione um item",tableResizer:"Redimensionador"};var Zx={};Zx={colorSwatchPicker:"Specimene de culoare",dropzoneLabel:"Zonă de plasare",selectPlaceholder:"Selectați un element",tableResizer:"Instrument de redimensionare"};var Ox={};Ox={colorSwatchPicker:"Цветовые образцы",dropzoneLabel:"DropZone",selectPlaceholder:"Выберите элемент",tableResizer:"Средство изменения размера"};var Nx={};Nx={colorSwatchPicker:"Vzorkovníky farieb",dropzoneLabel:"DropZone",selectPlaceholder:"Vyberte položku",tableResizer:"Nástroj na zmenu veľkosti"};var Hx={};Hx={colorSwatchPicker:"Barvne palete",dropzoneLabel:"DropZone",selectPlaceholder:"Izberite element",tableResizer:"Spreminjanje velikosti"};var zx={};zx={colorSwatchPicker:"Uzorci boje",dropzoneLabel:"DropZone",selectPlaceholder:"Izaberite stavku",tableResizer:"Promena veličine"};var jx={};jx={colorSwatchPicker:"Färgrutor",dropzoneLabel:"DropZone",selectPlaceholder:"Välj en artikel",tableResizer:"Storleksändrare"};var Kx={};Kx={colorSwatchPicker:"Renk örnekleri",dropzoneLabel:"Bırakma Bölgesi",selectPlaceholder:"Bir öğe seçin",tableResizer:"Yeniden boyutlandırıcı"};var Wx={};Wx={colorSwatchPicker:"Зразки кольорів",dropzoneLabel:"DropZone",selectPlaceholder:"Виберіть елемент",tableResizer:"Засіб змінення розміру"};var Ux={};Ux={colorSwatchPicker:"颜色色板",dropzoneLabel:"放置区域",selectPlaceholder:"选择一个项目",tableResizer:"尺寸调整器"};var Gx={};Gx={colorSwatchPicker:"色票",dropzoneLabel:"放置區",selectPlaceholder:"選取項目",tableResizer:"大小調整器"};var qx={};qx={"ar-AE":hx,"bg-BG":mx,"cs-CZ":gx,"da-DK":yx,"de-DE":bx,"el-GR":xx,"en-US":wx,"es-ES":$x,"et-EE":Sx,"fi-FI":Cx,"fr-FR":_x,"he-IL":Px,"hr-HR":Ex,"hu-HU":kx,"it-IT":Tx,"ja-JP":Mx,"ko-KR":Ax,"lt-LT":Lx,"lv-LV":Dx,"nb-NO":Rx,"nl-NL":Bx,"pl-PL":Vx,"pt-BR":Ix,"pt-PT":Fx,"ro-RO":Zx,"ru-RU":Ox,"sk-SK":Nx,"sl-SI":Hx,"sr-SP":zx,"sv-SE":jx,"tr-TR":Kx,"uk-UA":Wx,"zh-CN":Ux,"zh-TW":Gx};const _f=x.createContext({}),Yx=x.createContext(null);function NB(t,e){let{render:n}=x.useContext(Yx);return ee.createElement(ee.Fragment,null,n(t,e))}const HB=x.forwardRef(NB);function Xx(t,e){var n;let i=t==null?void 0:t.renderDropIndicator,a=t==null||(n=t.isVirtualDragging)===null||n===void 0?void 0:n.call(t),c=x.useCallback(d=>{if(a||e!=null&&e.isDropTarget(d))return i?i(d):ee.createElement(HB,{target:d})},[e==null?void 0:e.target,a,i]);return t!=null&&t.useDropIndicator?c:void 0}function zB(t,e,n){var i,a;let c=t.focusedKey,d=null;if(!(e==null||(i=e.isVirtualDragging)===null||i===void 0)&&i.call(e)&&(n==null||(a=n.target)===null||a===void 0?void 0:a.type)==="item"){d=n.target.key;var f;n.target.dropPosition==="after"&&(d=(f=n.collection.getKeyAfter(d))!==null&&f!==void 0?f:d)}return x.useMemo(()=>new Set([c,d].filter(v=>v!==null)),[c,d])}const Qx=x.createContext({}),Jx=x.createContext({}),Qv=x.createContext(null),p1=x.createContext(null);function jB(t,e){[t,e]=lt(t,e,Qv);let n=x.useContext(p1);return n?ee.createElement(ew,{state:n,props:t,listBoxRef:e}):ee.createElement(Yv,{content:ee.createElement(Pb,t)},i=>ee.createElement(KB,{props:t,listBoxRef:e,collection:i}))}function KB({props:t,listBoxRef:e,collection:n}){t={...t,collection:n,children:null,items:null};let i=A9(t);return ee.createElement(ew,{state:i,props:t,listBoxRef:e})}const WB=x.forwardRef(jB);function ew({state:t,props:e,listBoxRef:n}){let{dragAndDropHooks:i,layout:a="stack",orientation:c="vertical"}=e,{collection:d,selectionManager:f}=t,v=!!(i!=null&&i.useDraggableCollectionState),m=!!(i!=null&&i.useDroppableCollectionState),{direction:g}=Hs(),{disabledBehavior:b,disabledKeys:S}=f,C=Nv({usage:"search",sensitivity:"base"}),{isVirtualized:P,layoutDelegate:T,dropTargetDelegate:A,CollectionRoot:V}=x.useContext(wf),R=x.useMemo(()=>e.keyboardDelegate||new Kv({collection:d,collator:C,ref:n,disabledKeys:S,disabledBehavior:b,layout:a,orientation:c,direction:g,layoutDelegate:T}),[d,C,n,b,S,c,g,e.keyboardDelegate,a,T]),{listBoxProps:F}=TR({...e,shouldSelectOnPressUp:v||e.shouldSelectOnPressUp,keyboardDelegate:R,isVirtualized:P},t,n),N=x.useRef(v),z=x.useRef(m);x.useEffect(()=>{N.current!==v&&console.warn("Drag hooks were provided during one render, but not another. This should be avoided as it may produce unexpected behavior."),z.current!==m&&console.warn("Drop hooks were provided during one render, but not another. This should be avoided as it may produce unexpected behavior.")},[v,m]);let U,le,D,ie=!1,j=null,X=x.useRef(null);if(v&&i){U=i.useDraggableCollectionState({collection:d,selectionManager:f,preview:i.renderDragPreview?X:void 0}),i.useDraggableCollection({},U,n);let fe=i.DragPreview;j=i.renderDragPreview?ee.createElement(fe,{ref:X},i.renderDragPreview):null}if(m&&i){le=i.useDroppableCollectionState({collection:d,selectionManager:f});let fe=i.dropTargetDelegate||A||new i.ListDropTargetDelegate(d,n,{orientation:c,layout:a,direction:g});D=i.useDroppableCollection({keyboardDelegate:R,dropTargetDelegate:fe},le,n),ie=le.isDropTarget({type:"root"})}let{focusProps:xe,isFocused:G,isFocusVisible:Q}=L2(),he={isDropTarget:ie,isEmpty:t.collection.size===0,isFocused:G,isFocusVisible:Q,layout:e.layout||"stack",state:t},_e=et({className:e.className,style:e.style,defaultClassName:"react-aria-ListBox",values:he}),se=null;return t.collection.size===0&&e.renderEmptyState&&(se=ee.createElement("div",{role:"option",style:{display:"contents"}},e.renderEmptyState(he))),ee.createElement(q5,null,ee.createElement("div",{...O0(e),...qe(F,xe,D==null?void 0:D.collectionProps),..._e,ref:n,slot:e.slot||void 0,onScroll:e.onScroll,"data-drop-target":ie||void 0,"data-empty":t.collection.size===0||void 0,"data-focused":G||void 0,"data-focus-visible":Q||void 0,"data-layout":e.layout||"stack","data-orientation":e.orientation||"vertical"},ee.createElement(fn,{values:[[Qv,e],[p1,t],[_f,{dragAndDropHooks:i,dragState:U,dropState:le}],[Jx,{elementType:"div"}],[Yx,{render:qB}],[Eb,{render:UB}]]},ee.createElement(V,{collection:d,scrollRef:n,persistedKeys:zB(f,i,le),renderDropIndicator:Xx(i,le)})),se,j))}function UB(t,e,n){let i=x.useContext(p1),{dragAndDropHooks:a,dropState:c}=x.useContext(_f),{CollectionBranch:d}=x.useContext(wf),[f,v]=Ks();var m;let{headingProps:g,groupProps:b}=AR({heading:v,"aria-label":(m=t["aria-label"])!==null&&m!==void 0?m:void 0}),S=et({defaultClassName:"react-aria-Section",className:t.className,style:t.style,values:{}});return ee.createElement("section",{...O0(t),...b,...S,ref:e},ee.createElement(Qx.Provider,{value:{...g,ref:f}},ee.createElement(d,{collection:i.collection,parent:n,renderDropIndicator:Xx(a,c)})))}const GB=_b("item",function(e,n,i){let a=A2(n),c=x.useContext(p1),{dragAndDropHooks:d,dragState:f,dropState:v}=x.useContext(_f),{optionProps:m,labelProps:g,descriptionProps:b,...S}=MR({key:i.key,"aria-label":e==null?void 0:e["aria-label"]},c,a),{hoverProps:C,isHovered:P}=Jn({isDisabled:!S.allowsSelection&&!S.hasAction,onHoverStart:i.props.onHoverStart,onHoverChange:i.props.onHoverChange,onHoverEnd:i.props.onHoverEnd}),T=null;f&&d&&(T=d.useDraggableItem({key:i.key},f));let A=null;v&&d&&(A=d.useDroppableItem({target:{type:"item",key:i.key,dropPosition:"on"}},v,a));let V=f&&f.isDragging(i.key),R=et({...e,id:void 0,children:e.children,defaultClassName:"react-aria-ListBoxItem",values:{...S,isHovered:P,selectionMode:c.selectionManager.selectionMode,selectionBehavior:c.selectionManager.selectionBehavior,allowsDragging:!!f,isDragging:V,isDropTarget:A==null?void 0:A.isDropTarget}});x.useEffect(()=>{i.textValue||console.warn("A `textValue` prop is required for elements with non-plain text children in order to support accessibility features such as type to select.")},[i.textValue]);let F=e.href?"a":"div";return ee.createElement(F,{...qe(m,C,T==null?void 0:T.dragProps,A==null?void 0:A.dropProps),...R,ref:a,"data-allows-dragging":!!f||void 0,"data-selected":S.isSelected||void 0,"data-disabled":S.isDisabled||void 0,"data-hovered":P||void 0,"data-focused":S.isFocused||void 0,"data-focus-visible":S.isFocusVisible||void 0,"data-pressed":S.isPressed||void 0,"data-dragging":V||void 0,"data-drop-target":(A==null?void 0:A.isDropTarget)||void 0,"data-selection-mode":c.selectionManager.selectionMode==="none"?void 0:c.selectionManager.selectionMode},ee.createElement(fn,{values:[[So,{slots:{label:g,description:b}}]]},R.children))});function qB(t,e){e=A2(e);let{dragAndDropHooks:n,dropState:i}=x.useContext(_f),{dropIndicatorProps:a,isHidden:c,isDropTarget:d}=n.useDropIndicator(t,i,e);return c?null:ee.createElement(XB,{...t,dropIndicatorProps:a,isDropTarget:d,ref:e})}function YB(t,e){let{dropIndicatorProps:n,isDropTarget:i,...a}=t,c=et({...a,defaultClassName:"react-aria-DropIndicator",values:{isDropTarget:i}});return ee.createElement("div",{...n,...c,role:"option",ref:e,"data-drop-target":i||void 0})}const XB=x.forwardRef(YB),Jv=x.createContext({});function QB(t,e){[t,e]=lt(t,e,Jv);let{isDisabled:n,isInvalid:i,onHoverStart:a,onHoverChange:c,onHoverEnd:d,...f}=t,{hoverProps:v,isHovered:m}=Jn({onHoverStart:a,onHoverChange:c,onHoverEnd:d,isDisabled:n}),{isFocused:g,isFocusVisible:b,focusProps:S}=L2({within:!0});n??(n=!!t["aria-disabled"]&&t["aria-disabled"]!=="false"),i??(i=!!t["aria-invalid"]&&t["aria-invalid"]!=="false");let C=et({...t,values:{isHovered:m,isFocusWithin:g,isFocusVisible:b,isDisabled:n,isInvalid:i},defaultClassName:"react-aria-Group"});var P,T;return ee.createElement("div",{...qe(f,S,v),...C,ref:e,role:(P=t.role)!==null&&P!==void 0?P:"group",slot:(T=t.slot)!==null&&T!==void 0?T:void 0,"data-focus-within":g||void 0,"data-hovered":m||void 0,"data-focus-visible":b||void 0,"data-disabled":n||void 0,"data-invalid":i||void 0},C.children)}const tw=x.forwardRef(QB),nw=x.createContext({placement:"bottom"}),Vs=x.createContext(null);function JB(t,e){[t,e]=lt(t,e,Vs);let n=x.useContext(Co),i=js(t),a=t.isOpen!=null||t.defaultOpen!=null||!n?i:n,c=Z5(e,a.isOpen)||t.isExiting||!1;if(QR()){let f=t.children;return typeof f=="function"&&(f=f({trigger:t.trigger||null,placement:"bottom",isEntering:!1,isExiting:!1,defaultChildren:null})),ee.createElement(ee.Fragment,null,f)}return a&&!a.isOpen&&!c?null:ee.createElement(tV,{...t,triggerRef:t.triggerRef,state:a,popoverRef:e,isExiting:c})}const eV=x.forwardRef(JB);function tV({state:t,isExiting:e,UNSTABLE_portalContainer:n,...i}){let a=x.useRef(null),[c,d]=x.useState(0);C0(()=>{a.current&&t.isOpen&&d(a.current.getBoundingClientRect().width)},[t.isOpen,a]);var f;let{popoverProps:v,underlayProps:m,arrowProps:g,placement:b}=tR({...i,offset:(f=i.offset)!==null&&f!==void 0?f:8,arrowSize:c},t),S=i.popoverRef,C=$f(S,!!b)||i.isEntering||!1,P=et({...i,defaultClassName:"react-aria-Popover",values:{trigger:i.trigger||null,placement:b,isEntering:C,isExiting:e}}),T={...v.style,...P.style};return ee.createElement(b9,{isExiting:e,portalContainer:n},!i.isNonModal&&t.isOpen&&ee.createElement("div",{"data-testid":"underlay",...m,style:{position:"fixed",inset:0}}),ee.createElement("div",{...qe(O0(i),v),...P,ref:S,slot:i.slot||void 0,style:T,"data-trigger":i.trigger,"data-placement":b,"data-entering":C||void 0,"data-exiting":e||void 0},!i.isNonModal&&ee.createElement($p,{onDismiss:t.close}),ee.createElement(nw.Provider,{value:{...g,placement:b,ref:a}},P.children),ee.createElement($p,{onDismiss:t.close})))}const rw=x.createContext(null),Co=x.createContext(null);function iw(t){let e=js(t),n=x.useRef(null),{triggerProps:i,overlayProps:a}=Dy({type:"dialog"},e,n);return i.id=Qn(),a["aria-labelledby"]=i.id,ee.createElement(fn,{values:[[Co,e],[rw,a],[Vs,{trigger:"DialogTrigger",triggerRef:n}]]},ee.createElement(i8,{...i,ref:n,isPressed:e.isOpen},t.children))}function nV(t,e){let n=t["aria-labelledby"];[t,e]=lt(t,e,rw);let{dialogProps:i,titleProps:a}=cB({...t,"aria-labelledby":n},e),c=x.useContext(Co),d=t.children;typeof d=="function"&&(d=d({close:(c==null?void 0:c.close)||(()=>{})})),!i["aria-label"]&&!i["aria-labelledby"]&&(t["aria-labelledby"]?i["aria-labelledby"]=t["aria-labelledby"]:console.warn('If a Dialog does not contain a , it must have an aria-label or aria-labelledby attribute for accessibility.'));var f;return ee.createElement("section",{...O0(t),...i,ref:e,slot:t.slot||void 0,style:t.style,className:(f=t.className)!==null&&f!==void 0?f:"react-aria-Dialog"},ee.createElement(fn,{values:[[wb,{slots:{[Ep]:{},title:{...a,level:2}}}]]},d))}const rV=x.forwardRef(nV);function iV(t,e){[t,e]=lt(t,e,wb);let{children:n,level:i=3,className:a,...c}=t,d=`h${i}`;return ee.createElement(d,{...c,ref:e,className:a??"react-aria-Heading"},n)}const ow=x.forwardRef(iV),oV=x.createContext({}),lw=x.createContext(null),eh=x.createContext(null),aw=x.createContext(null);function lV(t){let e=VR(t),n=x.useRef(null),{menuTriggerProps:i,menuProps:a}=mb({...t,type:"menu"},e,n),[c,d]=x.useState(null),f=x.useCallback(()=>{n.current&&d(n.current.offsetWidth+"px")},[n]);$5({ref:n,onResize:f});let v=x.useRef(null);return ee.createElement(fn,{values:[[lw,{...a,ref:v}],[Co,e],[aw,e],[Vs,{trigger:"MenuTrigger",triggerRef:n,scrollRef:v,placement:"bottom start",style:{"--trigger-width":c}}]]},ee.createElement(i8,{...i,ref:n,isPressed:e.isOpen},t.children))}const aV=x.createContext(null);function sV(t,e){return[t,e]=lt(t,e,lw),ee.createElement(Yv,{content:ee.createElement(Pb,t)},n=>n.size>0&&ee.createElement(uV,{props:t,collection:n,menuRef:e}))}function uV({props:t,collection:e,menuRef:n}){let i=EB({...t,collection:e,children:void 0}),[a,c]=x.useState(null),{isVirtualized:d,CollectionRoot:f}=x.useContext(wf),{menuProps:v}=DR({...t,isVirtualized:d},i,n),m=x.useContext(aw),g=x.useContext(Vs),b=(g==null?void 0:g.trigger)==="SubmenuTrigger";d8({ref:n,onInteractOutside:A=>{m&&!(a!=null&&a.contains(A.target))&&m.close()},isDisabled:b||(m==null?void 0:m.expandedKeysStack.length)===0});let S=x.useRef(null),[C,P]=x.useState({left:0});x.useEffect(()=>{if(a&&S.current!==a&&C.left===0){S.current=a;let{left:A}=a.getBoundingClientRect();P({left:-1*A})}},[C,a]);let T=et({defaultClassName:"react-aria-Menu",className:t.className,style:t.style,values:{}});return ee.createElement(q5,null,ee.createElement("div",{...O0(t),...v,...T,ref:n,slot:t.slot||void 0,onScroll:t.onScroll},ee.createElement(fn,{values:[[eh,i],[Jx,{elementType:"div"}],[Vs,{UNSTABLE_portalContainer:a||void 0}],[Eb,{render:dV}],[aV,{parentMenuRef:n}],[kp,null]]},ee.createElement(f,{collection:e,persistedKeys:uB(i.selectionManager.focusedKey),scrollRef:n}))),ee.createElement("div",{ref:c,style:{width:"100vw",position:"absolute",top:0,...C}}))}const cV=x.forwardRef(sV);function dV(t,e,n){var i,a;let c=x.useContext(eh),{CollectionBranch:d}=x.useContext(wf),[f,v]=Ks();var m;let{headingProps:g,groupProps:b}=BR({heading:v,"aria-label":(m=n.props["aria-label"])!==null&&m!==void 0?m:void 0}),S=et({defaultClassName:"react-aria-Section",className:(i=n.props)===null||i===void 0?void 0:i.className,style:(a=n.props)===null||a===void 0?void 0:a.style,values:{}});return ee.createElement("section",{...O0(t),...b,...S,ref:e},ee.createElement(Qx.Provider,{value:{...g,ref:f}},ee.createElement(d,{collection:c.collection,parent:n})))}const kp=x.createContext(null),fV=_b("item",function(e,n,i){var a;[e,n]=lt(e,n,kp);let c=(a=$o(kp))===null||a===void 0?void 0:a.id,d=x.useContext(eh),f=A2(n),{menuItemProps:v,labelProps:m,descriptionProps:g,keyboardShortcutProps:b,...S}=RR({...e,id:c,key:i.key},d,f),{isFocusVisible:C,focusProps:P}=L2(),{hoverProps:T,isHovered:A}=Jn({isDisabled:S.isDisabled}),V=et({...e,id:void 0,children:i.rendered,defaultClassName:"react-aria-MenuItem",values:{...S,isHovered:A,isFocusVisible:C,selectionMode:d.selectionManager.selectionMode,selectionBehavior:d.selectionManager.selectionBehavior,hasSubmenu:!!e["aria-haspopup"],isOpen:e["aria-expanded"]==="true"}}),R=e.href?"a":"div";return ee.createElement(R,{...qe(v,P,T),...V,ref:f,"data-disabled":S.isDisabled||void 0,"data-hovered":A||void 0,"data-focused":S.isFocused||void 0,"data-focus-visible":C||void 0,"data-pressed":S.isPressed||void 0,"data-selected":S.isSelected||void 0,"data-selection-mode":d.selectionManager.selectionMode==="none"?void 0:d.selectionManager.selectionMode,"data-has-submenu":!!e["aria-haspopup"]||void 0,"data-open":e["aria-expanded"]==="true"||void 0},ee.createElement(fn,{values:[[So,{slots:{label:m,description:g}}],[oV,b]]},V.children))}),pV=x.createContext(null),th=x.createContext(null);function vV(t,e){if(x.useContext(th))return ee.createElement(tm,{...t,modalRef:e},t.children);let{isDismissable:i,isKeyboardDismissDisabled:a,isOpen:c,defaultOpen:d,onOpenChange:f,children:v,isEntering:m,isExiting:g,UNSTABLE_portalContainer:b,shouldCloseOnInteractOutside:S,...C}=t;return ee.createElement(sw,{isDismissable:i,isKeyboardDismissDisabled:a,isOpen:c,defaultOpen:d,onOpenChange:f,isEntering:m,isExiting:g,UNSTABLE_portalContainer:b,shouldCloseOnInteractOutside:S},ee.createElement(tm,{...C,modalRef:e},v))}const hV=x.forwardRef(vV);function mV(t,e){[t,e]=lt(t,e,pV);let n=x.useContext(Co),i=js(t),a=t.isOpen!=null||t.defaultOpen!=null||!n?i:n,c=A2(e),d=x.useRef(null),f=Z5(c,a.isOpen),v=Z5(d,a.isOpen),m=f||v||t.isExiting||!1,g=M2();return!a.isOpen&&!m||g?null:ee.createElement(gV,{...t,state:a,isExiting:m,overlayRef:c,modalRef:d})}const sw=x.forwardRef(mV);function gV({UNSTABLE_portalContainer:t,...e}){let n=e.modalRef,{state:i}=e,{modalProps:a,underlayProps:c}=iR(e,i,n),d=$f(e.overlayRef)||e.isEntering||!1,f=et({...e,defaultClassName:"react-aria-ModalOverlay",values:{isEntering:d,isExiting:e.isExiting,state:i}}),v=GP(),m={...f.style,"--visual-viewport-height":v.height+"px"};return ee.createElement(b9,{isExiting:e.isExiting,portalContainer:t},ee.createElement("div",{...qe(O0(e),c),...f,style:m,ref:e.overlayRef,"data-entering":d||void 0,"data-exiting":e.isExiting||void 0},ee.createElement(fn,{values:[[th,{modalProps:a,modalRef:n,isExiting:e.isExiting,isDismissable:e.isDismissable}],[Co,i]]},f.children)))}function tm(t){let{modalProps:e,modalRef:n,isExiting:i,isDismissable:a}=x.useContext(th),c=x.useContext(Co),d=x.useMemo(()=>j5(t.modalRef,n),[t.modalRef,n]),f=A2(d),v=$f(f),m=et({...t,defaultClassName:"react-aria-Modal",values:{isEntering:v,isExiting:i,state:c}});return ee.createElement("div",{...qe(O0(t),e),...m,ref:f,"data-entering":v||void 0,"data-exiting":i||void 0},a&&ee.createElement($p,{onDismiss:c.close}),m.children)}const yV=x.createContext(null);function bV(t,e){[t,e]=lt(t,e,yV);let{value:n=0,minValue:i=0,maxValue:a=100,isIndeterminate:c=!1}=t;n=Nc(n,i,a);let[d,f]=Ks(),{progressBarProps:v,labelProps:m}=dB({...t,label:f}),g=c?void 0:(n-i)/(a-i)*100,b=et({...t,defaultClassName:"react-aria-ProgressBar",values:{percentage:g,valueText:v["aria-valuetext"],isIndeterminate:c}});return ee.createElement("div",{...v,...b,ref:e,slot:t.slot||void 0},ee.createElement(f1.Provider,{value:{...m,ref:d,elementType:"span"}},b.children))}const xV=x.forwardRef(bV),wV=x.createContext(null);function $V(t,e){[t,e]=lt(t,e,wV);let{validationBehavior:n}=$o(Bs)||{};var i,a;let c=(a=(i=t.validationBehavior)!==null&&i!==void 0?i:n)!==null&&a!==void 0?a:"native",d=x.useRef(null),[f,v]=Ks(),m=$B({...t,validationBehavior:c}),{labelProps:g,inputProps:b,clearButtonProps:S,descriptionProps:C,errorMessageProps:P,...T}=pB({...Sf(t),label:v,validationBehavior:c},m,d),A=et({...t,values:{isEmpty:m.value==="",isDisabled:t.isDisabled||!1,isInvalid:T.isInvalid||!1,state:m},defaultClassName:"react-aria-SearchField"}),V=O0(t);return delete V.id,ee.createElement("div",{...V,...A,ref:e,slot:t.slot||void 0,"data-empty":m.value===""||void 0,"data-disabled":t.isDisabled||void 0,"data-invalid":T.isInvalid||void 0},ee.createElement(fn,{values:[[f1,{...g,ref:f}],[Xv,{...b,ref:d}],[Cf,S],[So,{slots:{description:C,errorMessage:P}}],[Jv,{isInvalid:T.isInvalid,isDisabled:t.isDisabled||!1}],[d1,T]]},A.children))}const SV=x.forwardRef($V);function CV(t){return t&&t.__esModule?t.default:t}const Pf=x.createContext(null),uw=x.createContext(null);function _V(t,e){[t,e]=lt(t,e,Pf);let{children:n,isDisabled:i=!1,isInvalid:a=!1,isRequired:c=!1}=t,d=x.useMemo(()=>typeof n=="function"?n({isOpen:!1,isDisabled:i,isInvalid:a,isRequired:c,isFocused:!1,isFocusVisible:!1,defaultChildren:null}):n,[n,i,a,c]);return ee.createElement(Yv,{content:d},f=>ee.createElement(PV,{props:t,collection:f,selectRef:e}))}function PV({props:t,selectRef:e,collection:n}){let{validationBehavior:i}=$o(Bs)||{};var a,c;let d=(c=(a=t.validationBehavior)!==null&&a!==void 0?a:i)!==null&&c!==void 0?c:"native",f=SB({...t,collection:n,children:void 0,validationBehavior:d}),{isFocusVisible:v,focusProps:m}=L2({within:!0}),g=x.useRef(null),[b,S]=Ks(),{labelProps:C,triggerProps:P,valueProps:T,menuProps:A,descriptionProps:V,errorMessageProps:R,...F}=vB({...Sf(t),label:S,validationBehavior:d},f,g),[N,z]=x.useState(null),U=x.useCallback(()=>{g.current&&z(g.current.offsetWidth+"px")},[g]);$5({ref:g,onResize:U});let le=x.useMemo(()=>({isOpen:f.isOpen,isFocused:f.isFocused,isFocusVisible:v,isDisabled:t.isDisabled||!1,isInvalid:F.isInvalid||!1,isRequired:t.isRequired||!1}),[f.isOpen,f.isFocused,v,t.isDisabled,F.isInvalid,t.isRequired]),D=et({...t,values:le,defaultClassName:"react-aria-Select"}),ie=O0(t);delete ie.id;let j=x.useRef(null);return ee.createElement(fn,{values:[[Pf,t],[uw,f],[cw,T],[f1,{...C,ref:b,elementType:"span"}],[Cf,{...P,ref:g,isPressed:f.isOpen}],[Co,f],[Vs,{trigger:"Select",triggerRef:g,scrollRef:j,placement:"bottom start",style:{"--trigger-width":N}}],[Qv,{...A,ref:j}],[p1,f],[So,{slots:{description:V,errorMessage:R}}],[d1,F]]},ee.createElement("div",{...ie,...D,...m,ref:e,slot:t.slot||void 0,"data-focused":f.isFocused||void 0,"data-focus-visible":v||void 0,"data-open":f.isOpen||void 0,"data-disabled":t.isDisabled||void 0,"data-invalid":F.isInvalid||void 0,"data-required":t.isRequired||void 0}),ee.createElement(mB,{state:f,triggerRef:g,label:S,name:t.name,isDisabled:t.isDisabled}))}const EV=x.forwardRef(_V),cw=x.createContext(null);function kV(t,e){var n,i;[t,e]=lt(t,e,cw);let a=x.useContext(uw),{placeholder:c}=$o(Pf),d=a.selectedKey!=null?a.collection.getItem(a.selectedKey):null,f=d==null?void 0:d.props.children;typeof f=="function"&&(f=f({isHovered:!1,isPressed:!1,isSelected:!1,isFocused:!1,isFocusVisible:!1,isDisabled:!1,selectionMode:"single",selectionBehavior:"toggle"}));let v=zs(CV(qx),"react-aria-components");var m,g;let b=et({...t,defaultChildren:f||c||v.format("selectPlaceholder"),defaultClassName:"react-aria-SelectValue",values:{selectedItem:(m=(n=a.selectedItem)===null||n===void 0?void 0:n.value)!==null&&m!==void 0?m:null,selectedText:(g=(i=a.selectedItem)===null||i===void 0?void 0:i.textValue)!==null&&g!==void 0?g:null,isPlaceholder:!d}}),S=O0(t);return ee.createElement("span",{ref:e,...S,...b,"data-placeholder":!d||void 0},ee.createElement(So.Provider,{value:void 0},b.children))}const TV=x.forwardRef(kV),MV=x.createContext(null);function AV(t,e){let{inputRef:n=null,...i}=t;[t,e]=lt(i,e,MV);let a=A2(j5(n,t.inputRef!==void 0?t.inputRef:null)),c=Wv(t),{labelProps:d,inputProps:f,isSelected:v,isDisabled:m,isReadOnly:g,isPressed:b}=IR({...Sf(t),children:typeof t.children=="function"?!0:t.children},c,a),{isFocused:S,isFocusVisible:C,focusProps:P}=L2(),T=t.isDisabled||t.isReadOnly,{hoverProps:A,isHovered:V}=Jn({...t,isDisabled:T}),R=et({...t,defaultClassName:"react-aria-Switch",values:{isSelected:v,isPressed:b,isHovered:V,isFocused:S,isFocusVisible:C,isDisabled:m,isReadOnly:g,state:c}}),F=O0(t);return delete F.id,ee.createElement("label",{...qe(F,d,A,R),ref:e,slot:t.slot||void 0,"data-selected":v||void 0,"data-pressed":b||void 0,"data-hovered":V||void 0,"data-focused":S||void 0,"data-focus-visible":C||void 0,"data-disabled":m||void 0,"data-readonly":g||void 0},ee.createElement(yf,{elementType:"span"},ee.createElement("input",{...qe(f,P),ref:a})),R.children)}const LV=x.forwardRef(AV),dw=x.createContext({});let DV=t=>{let{onHoverStart:e,onHoverChange:n,onHoverEnd:i,...a}=t;return a};function RV(t,e){[t,e]=lt(t,e,dw);let{hoverProps:n,isHovered:i}=Jn(t),{isFocused:a,isFocusVisible:c,focusProps:d}=L2({isTextInput:!0,autoFocus:t.autoFocus}),f=!!t["aria-invalid"]&&t["aria-invalid"]!=="false",v=et({...t,values:{isHovered:i,isFocused:a,isFocusVisible:c,isDisabled:t.disabled||!1,isInvalid:f},defaultClassName:"react-aria-TextArea"});return ee.createElement("textarea",{...qe(DV(t),d,n),...v,ref:e,"data-focused":a||void 0,"data-disabled":t.disabled||void 0,"data-hovered":i||void 0,"data-focus-visible":c||void 0,"data-invalid":f||void 0})}const BV=x.forwardRef(RV),VV=x.createContext(null);function IV(t,e){[t,e]=lt(t,e,VV);let{validationBehavior:n}=$o(Bs)||{};var i,a;let c=(a=(i=t.validationBehavior)!==null&&i!==void 0?i:n)!==null&&a!==void 0?a:"native",d=x.useRef(null),[f,v]=Ks(),[m,g]=x.useState("input"),{labelProps:b,inputProps:S,descriptionProps:C,errorMessageProps:P,...T}=_9({...Sf(t),inputElementType:m,label:v,validationBehavior:c},d),A=x.useCallback(F=>{d.current=F,F&&g(F instanceof HTMLTextAreaElement?"textarea":"input")},[]),V=et({...t,values:{isDisabled:t.isDisabled||!1,isInvalid:T.isInvalid,isReadOnly:t.isReadOnly||!1,isRequired:t.isRequired||!1},defaultClassName:"react-aria-TextField"}),R=O0(t);return delete R.id,ee.createElement("div",{...R,...V,ref:e,slot:t.slot||void 0,"data-disabled":t.isDisabled||void 0,"data-invalid":T.isInvalid||void 0,"data-readonly":t.isReadOnly||void 0,"data-required":t.isRequired||void 0},ee.createElement(fn,{values:[[f1,{...b,ref:f}],[Xv,{...S,ref:A}],[dw,{...S,ref:A}],[So,{slots:{description:C,errorMessage:P}}],[d1,T]]},V.children))}const FV=x.forwardRef(IV),ZV=x.createContext({}),nh=x.createContext(null),fw=x.createContext(null);function OV(t){let e=px(t),n=x.useRef(null),{triggerProps:i,tooltipProps:a}=yB(t,e,n);return ee.createElement(fn,{values:[[nh,e],[fw,{...a,triggerRef:n}]]},ee.createElement(LE,{...i,ref:n},t.children))}function NV({UNSTABLE_portalContainer:t,...e},n){[e,n]=lt(e,n,fw);let i=x.useContext(nh),a=px(e),c=e.isOpen!=null||e.defaultOpen!=null||!i?a:i,d=Z5(n,c.isOpen)||e.isExiting||!1;return!c.isOpen&&!d?null:ee.createElement(JD,{portalContainer:t},ee.createElement(zV,{...e,tooltipRef:n,isExiting:d}))}const HV=x.forwardRef(NV);function zV(t){let e=x.useContext(nh),n=x.useRef(null),[i,a]=x.useState(0);C0(()=>{n.current&&e.isOpen&&a(n.current.getBoundingClientRect().width)},[e.isOpen,n]);let{overlayProps:c,arrowProps:d,placement:f}=Ay({placement:t.placement||"top",targetRef:t.triggerRef,overlayRef:t.tooltipRef,offset:t.offset,crossOffset:t.crossOffset,isOpen:e.isOpen,arrowSize:i,arrowBoundaryOffset:t.arrowBoundaryOffset,shouldFlip:t.shouldFlip}),v=$f(t.tooltipRef,!!f)||t.isEntering||!1,m=et({...t,defaultClassName:"react-aria-Tooltip",values:{placement:f,isEntering:v,isExiting:t.isExiting,state:e}});t=qe(t,c);let{tooltipProps:g}=gB(t,e);return ee.createElement("div",{...g,ref:t.tooltipRef,...m,style:{...c.style,...m.style},"data-placement":f,"data-entering":v||void 0,"data-exiting":t.isExiting||void 0},ee.createElement(nw.Provider,{value:{...d,placement:f,ref:n}},m.children))}var pw={};pw={close:"إغلاق",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} إشعار`,other:()=>`${e.number(t.count)} إشعارات`})}.`};var vw={};vw={close:"Затвори",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} известие`,other:()=>`${e.number(t.count)} известия`})}.`};var hw={};hw={close:"Zavřít",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} oznámení`,other:()=>`${e.number(t.count)} oznámení`})}.`};var mw={};mw={close:"Luk",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} besked`,other:()=>`${e.number(t.count)} beskeder`})}.`};var gw={};gw={close:"Schließen",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} Benachrichtigung`,other:()=>`${e.number(t.count)} Benachrichtigungen`})}.`};var yw={};yw={close:"Κλείσιμο",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} ειδοποίηση`,other:()=>`${e.number(t.count)} ειδοποιήσεις`})}.`};var bw={};bw={close:"Close",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notification`,other:()=>`${e.number(t.count)} notifications`})}.`};var xw={};xw={close:"Cerrar",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notificación`,other:()=>`${e.number(t.count)} notificaciones`})}.`};var ww={};ww={close:"Sule",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} teatis`,other:()=>`${e.number(t.count)} teatist`})}.`};var $w={};$w={close:"Sulje",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} ilmoitus`,other:()=>`${e.number(t.count)} ilmoitusta`})}.`};var Sw={};Sw={close:"Fermer",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notification`,other:()=>`${e.number(t.count)} notifications`})}.`};var Cw={};Cw={close:"סגור",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} התראה`,other:()=>`${e.number(t.count)} התראות`})}.`};var _w={};_w={close:"Zatvori",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} obavijest`,other:()=>`${e.number(t.count)} obavijesti`})}.`};var Pw={};Pw={close:"Bezárás",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} értesítés`,other:()=>`${e.number(t.count)} értesítés`})}.`};var Ew={};Ew={close:"Chiudi",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notifica`,other:()=>`${e.number(t.count)} notifiche`})}.`};var kw={};kw={close:"閉じる",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} 個の通知`,other:()=>`${e.number(t.count)} 個の通知`})}。`};var Tw={};Tw={close:"닫기",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 알림`,other:()=>`${e.number(t.count)}개 알림`})}.`};var Mw={};Mw={close:"Uždaryti",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} pranešimas`,other:()=>`${e.number(t.count)} pranešimai`})}.`};var Aw={};Aw={close:"Aizvērt",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} paziņojums`,other:()=>`${e.number(t.count)} paziņojumi`})}.`};var Lw={};Lw={close:"Lukk",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} varsling`,other:()=>`${e.number(t.count)} varsler`})}.`};var Dw={};Dw={close:"Sluiten",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} melding`,other:()=>`${e.number(t.count)} meldingen`})}.`};var Rw={};Rw={close:"Zamknij",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} powiadomienie`,few:()=>`${e.number(t.count)} powiadomienia`,many:()=>`${e.number(t.count)} powiadomień`,other:()=>`${e.number(t.count)} powiadomienia`})}.`};var Bw={};Bw={close:"Fechar",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notificação`,other:()=>`${e.number(t.count)} notificações`})}.`};var Vw={};Vw={close:"Fechar",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notificação`,other:()=>`${e.number(t.count)} notificações`})}.`};var Iw={};Iw={close:"Închideţi",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notificare`,other:()=>`${e.number(t.count)} notificări`})}.`};var Fw={};Fw={close:"Закрыть",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} уведомление`,other:()=>`${e.number(t.count)} уведомления`})}.`};var Zw={};Zw={close:"Zatvoriť",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} oznámenie`,few:()=>`${e.number(t.count)} oznámenia`,other:()=>`${e.number(t.count)} oznámení`})}.`};var Ow={};Ow={close:"Zapri",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} obvestilo`,two:()=>`${e.number(t.count)} obvestili`,few:()=>`${e.number(t.count)} obvestila`,other:()=>`${e.number(t.count)} obvestil`})}.`};var Nw={};Nw={close:"Zatvori",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} obaveštenje`,other:()=>`${e.number(t.count)} obaveštenja`})}.`};var Hw={};Hw={close:"Stäng",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} meddelande`,other:()=>`${e.number(t.count)} meddelanden`})}.`};var zw={};zw={close:"Kapat",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} bildirim`,other:()=>`${e.number(t.count)} bildirim`})}.`};var jw={};jw={close:"Закрити",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} сповіщення`,other:()=>`${e.number(t.count)} сповіщення`})}.`};var Kw={};Kw={close:"关闭",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} 个通知`,other:()=>`${e.number(t.count)} 个通知`})}。`};var Ww={};Ww={close:"關閉",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} 個通知`,other:()=>`${e.number(t.count)} 個通知`})}。`};var rh={};rh={"ar-AE":pw,"bg-BG":vw,"cs-CZ":hw,"da-DK":mw,"de-DE":gw,"el-GR":yw,"en-US":bw,"es-ES":xw,"et-EE":ww,"fi-FI":$w,"fr-FR":Sw,"he-IL":Cw,"hr-HR":_w,"hu-HU":Pw,"it-IT":Ew,"ja-JP":kw,"ko-KR":Tw,"lt-LT":Mw,"lv-LV":Aw,"nb-NO":Lw,"nl-NL":Dw,"pl-PL":Rw,"pt-BR":Bw,"pt-PT":Vw,"ro-RO":Iw,"ru-RU":Fw,"sk-SK":Zw,"sl-SI":Ow,"sr-SP":Nw,"sv-SE":Hw,"tr-TR":zw,"uk-UA":jw,"zh-CN":Kw,"zh-TW":Ww};function jV(t){return t&&t.__esModule?t.default:t}function KV(t,e,n){let{key:i,timer:a,timeout:c,animation:d}=t.toast;x.useEffect(()=>{if(a)return a.reset(c),()=>{a.pause()}},[a,c]);let[f,v]=ee.useState(!1);x.useEffect(()=>{(d==="entering"||d==="queued")&&v(!0)},[d]);let m=Qn(),g=$2(),b=zs(jV(rh),"@react-aria/toast");return{toastProps:{role:"alertdialog","aria-modal":"false","aria-label":t["aria-label"],"aria-labelledby":t["aria-labelledby"]||m,"aria-describedby":t["aria-describedby"]||g,"aria-details":t["aria-details"],"aria-hidden":d==="exiting"?"true":void 0,tabIndex:0},contentProps:{role:"alert","aria-atomic":"true",style:{visibility:f||d===null?"visible":"hidden"}},titleProps:{id:m},descriptionProps:{id:g},closeButtonProps:{"aria-label":b.format("close"),onPress:()=>e.close(i)}}}const Uw=1,b3=Symbol.for("react-aria-landmark-manager");function WV(t){return document.addEventListener("react-aria-landmark-manager-change",t),()=>document.removeEventListener("react-aria-landmark-manager-change",t)}function nm(){if(typeof document>"u")return null;let t=document[b3];return t&&t.version>=Uw?t:(document[b3]=new GV,document.dispatchEvent(new CustomEvent("react-aria-landmark-manager-change")),document[b3])}function UV(){return qv.useSyncExternalStore(WV,nm,nm)}class GV{setupIfNeeded(){this.isListening||(document.addEventListener("keydown",this.f6Handler,{capture:!0}),document.addEventListener("focusin",this.focusinHandler,{capture:!0}),document.addEventListener("focusout",this.focusoutHandler,{capture:!0}),this.isListening=!0)}teardownIfNeeded(){!this.isListening||this.landmarks.length>0||this.refCount>0||(document.removeEventListener("keydown",this.f6Handler,{capture:!0}),document.removeEventListener("focusin",this.focusinHandler,{capture:!0}),document.removeEventListener("focusout",this.focusoutHandler,{capture:!0}),this.isListening=!1)}focusLandmark(e,n){var i,a;(a=this.landmarks.find(c=>c.ref.current===e))===null||a===void 0||(i=a.focus)===null||i===void 0||i.call(a,n)}getLandmarksByRole(e){return new Set(this.landmarks.filter(n=>n.role===e))}getLandmarkByRole(e){return this.landmarks.find(n=>n.role===e)}addLandmark(e){if(this.setupIfNeeded(),this.landmarks.find(a=>a.ref===e.ref)||!e.ref.current)return;if(this.landmarks.filter(a=>a.role==="main").length>1&&console.error('Page can contain no more than one landmark with the role "main".'),this.landmarks.length===0){this.landmarks=[e],this.checkLabels(e.role);return}let n=0,i=this.landmarks.length-1;for(;n<=i;){let a=Math.floor((n+i)/2),c=e.ref.current.compareDocumentPosition(this.landmarks[a].ref.current);!!(c&Node.DOCUMENT_POSITION_PRECEDING||c&Node.DOCUMENT_POSITION_CONTAINS)?n=a+1:i=a-1}this.landmarks.splice(n,0,e),this.checkLabels(e.role)}updateLandmark(e){let n=this.landmarks.findIndex(i=>i.ref===e.ref);n>=0&&(this.landmarks[n]={...this.landmarks[n],...e},this.checkLabels(this.landmarks[n].role))}removeLandmark(e){this.landmarks=this.landmarks.filter(n=>n.ref!==e),this.teardownIfNeeded()}checkLabels(e){let n=this.getLandmarksByRole(e);if(n.size>1){let i=[...n].filter(a=>!a.label);if(i.length>0)console.warn(`Page contains more than one landmark with the '${e}' role. If two or more landmarks on a page share the same role, all must be labeled with an aria-label or aria-labelledby attribute: `,i.map(a=>a.ref.current));else{let a=[...n].map(d=>d.label);a.filter((d,f)=>a.indexOf(d)!==f).forEach(d=>{console.warn(`Page contains more than one landmark with the '${e}' role and '${d}' label. If two or more landmarks on a page share the same role, they must have unique labels: `,[...n].filter(f=>f.label===d).map(f=>f.ref.current))})}}}closestLandmark(e){let n=new Map(this.landmarks.map(a=>[a.ref.current,a])),i=e;for(;i&&!n.has(i)&&i!==document.body&&i.parentElement;)i=i.parentElement;return n.get(i)}getNextLandmark(e,{backward:n}){var i;let a=this.closestLandmark(e),c=n?this.landmarks.length-1:0;a&&(c=this.landmarks.indexOf(a)+(n?-1:1));let d=()=>{if(c<0){if(!e.dispatchEvent(new CustomEvent("react-aria-landmark-navigation",{detail:{direction:"backward"},bubbles:!0,cancelable:!0})))return!0;c=this.landmarks.length-1}else if(c>=this.landmarks.length){if(!e.dispatchEvent(new CustomEvent("react-aria-landmark-navigation",{detail:{direction:"forward"},bubbles:!0,cancelable:!0})))return!0;c=0}return c<0||c>=this.landmarks.length};if(d())return;let f=c;for(;!((i=this.landmarks[c].ref.current)===null||i===void 0)&&i.closest("[aria-hidden=true]");){if(c+=n?-1:1,d())return;if(c===f)break}return this.landmarks[c]}f6Handler(e){e.key==="F6"&&(e.altKey?this.focusMain():this.navigate(e.target,e.shiftKey))&&(e.preventDefault(),e.stopPropagation())}focusMain(){let e=this.getLandmarkByRole("main");return e&&e.ref.current&&document.contains(e.ref.current)?(this.focusLandmark(e.ref.current,"forward"),!0):!1}navigate(e,n){let i=this.getNextLandmark(e,{backward:n});if(!i)return!1;if(i.lastFocused){let a=i.lastFocused;if(document.body.contains(a))return a.focus(),!0}return i.ref.current&&document.contains(i.ref.current)?(this.focusLandmark(i.ref.current,n?"backward":"forward"),!0):!1}focusinHandler(e){let n=this.closestLandmark(e.target);n&&n.ref.current!==e.target&&this.updateLandmark({ref:n.ref,lastFocused:e.target});let i=e.relatedTarget;if(i){let a=this.closestLandmark(i);a&&a.ref.current===i&&a.blur()}}focusoutHandler(e){let n=e.target,i=e.relatedTarget;if(!i||i===document){let a=this.closestLandmark(n);a&&a.ref.current===n&&a.blur()}}createLandmarkController(){let e=this;return e.refCount++,e.setupIfNeeded(),{navigate(n,i){let a=(i==null?void 0:i.from)||document.activeElement;return e.navigate(a,n==="backward")},focusNext(n){let i=(n==null?void 0:n.from)||document.activeElement;return e.navigate(i,!1)},focusPrevious(n){let i=(n==null?void 0:n.from)||document.activeElement;return e.navigate(i,!0)},focusMain(){return e.focusMain()},dispose(){e&&(e.refCount--,e.teardownIfNeeded(),e=null)}}}registerLandmark(e){return this.landmarks.find(n=>n.ref===e.ref)?this.updateLandmark(e):this.addLandmark(e),()=>this.removeLandmark(e.ref)}constructor(){this.landmarks=[],this.isListening=!1,this.refCount=0,this.version=Uw,this.f6Handler=this.f6Handler.bind(this),this.focusinHandler=this.focusinHandler.bind(this),this.focusoutHandler=this.focusoutHandler.bind(this)}}function qV(t,e){const{role:n,"aria-label":i,"aria-labelledby":a,focus:c}=t;let d=UV(),f=i||a,[v,m]=x.useState(!1),g=x.useCallback(()=>{m(!0)},[m]),b=x.useCallback(()=>{m(!1)},[m]);return C0(()=>{if(d)return d.registerLandmark({ref:e,label:f,role:n,focus:c||g,blur:b})},[d,f,e,n,c,g,b]),x.useEffect(()=>{var S;v&&((S=e.current)===null||S===void 0||S.focus())},[v,e]),{landmarkProps:{role:n,tabIndex:v?-1:void 0,"aria-label":i,"aria-labelledby":a}}}function YV(t){return t&&t.__esModule?t.default:t}function XV(t,e,n){let i=zs(YV(rh),"@react-aria/toast"),{landmarkProps:a}=qV({role:"region","aria-label":t["aria-label"]||i.format("notifications",{count:e.visibleToasts.length})},n),{hoverProps:c}=Jn({onHoverStart:e.pauseAll,onHoverEnd:e.resumeAll}),d=x.useRef([]),f=x.useRef(e.visibleToasts),v=x.useRef(null);C0(()=>{if(v.current===-1||e.visibleToasts.length===0){d.current=[],f.current=e.visibleToasts;return}if(d.current=[...n.current.querySelectorAll('[role="alertdialog"]')],f.current.length===e.visibleToasts.length&&e.visibleToasts.every((C,P)=>C.key===f.current[P].key)){f.current=e.visibleToasts;return}let b=f.current.map((C,P)=>({...C,i:P,isRemoved:!e.visibleToasts.some(T=>C.key===T.key)})),S=b.findIndex(C=>C.i===v.current);if(S>-1){let C=0,P,T;for(;C<=S;)b[C].isRemoved||(T=Math.max(0,C-1)),C++;for(;C=0&&T=0&&P{e.pauseAll(),m.current=b.relatedTarget},onBlurWithin:()=>{e.resumeAll(),m.current=null}});return x.useEffect(()=>{e.visibleToasts.length===0&&m.current&&document.body.contains(m.current)&&(Ts()==="pointer"?qn(m.current):m.current.focus(),m.current=null)},[n,e.visibleToasts.length]),x.useEffect(()=>()=>{m.current&&document.body.contains(m.current)&&(Ts()==="pointer"?qn(m.current):m.current.focus(),m.current=null)},[n]),{regionProps:qe(a,c,g,{tabIndex:-1,"data-react-aria-top-layer":!0,onFocus:b=>{let S=b.target.closest('[role="alertdialog"]');v.current=d.current.findIndex(C=>C===S)},onBlur:()=>{v.current=-1}})}}function QV(t){let e=x.useCallback(a=>t.subscribe(a),[t]),n=x.useCallback(()=>t.visibleToasts,[t]);return{visibleToasts:qv.useSyncExternalStore(e,n,n),add:(a,c)=>t.add(a,c),close:a=>t.close(a),remove:a=>t.remove(a),pauseAll:()=>t.pauseAll(),resumeAll:()=>t.resumeAll()}}class Gw{subscribe(e){return this.subscriptions.add(e),()=>this.subscriptions.delete(e)}add(e,n={}){let i=Math.random().toString(36),a={...n,content:e,key:i,timer:n.timeout?new JV(()=>this.close(i),n.timeout):null},c=0,d=this.queue.length;for(;c(this.queue[v].priority||0)?d=v:c=v+1}this.queue.splice(c,0,a),a.animation=cc.key===e);if(n>=0){var i,a;(i=(a=this.queue[n]).onClose)===null||i===void 0||i.call(a),this.queue.splice(n,1)}this.updateVisibleToasts({action:"close",key:e})}remove(e){this.updateVisibleToasts({action:"remove",key:e})}updateVisibleToasts(e){let{action:n,key:i}=e,a=this.queue.slice(0,this.maxVisibleToasts);if(n==="add"&&this.hasExitAnimation){let c=this.visibleToasts.filter(d=>!a.some(f=>d.key===f.key)).map(d=>({...d,animation:"exiting"}));this.visibleToasts=c.concat(a).sort((d,f)=>f.priority-d.priority)}else n==="close"&&this.hasExitAnimation?this.visibleToasts=this.visibleToasts.map(c=>c.key!==i?c:{...c,animation:"exiting"}):this.visibleToasts=a;for(let c of this.subscriptions)c()}pauseAll(){for(let e of this.visibleToasts)e.timer&&e.timer.pause()}resumeAll(){for(let e of this.visibleToasts)e.timer&&e.timer.resume()}constructor(e){this.queue=[],this.subscriptions=new Set,this.visibleToasts=[];var n;this.maxVisibleToasts=(n=e==null?void 0:e.maxVisibleToasts)!==null&&n!==void 0?n:1;var i;this.hasExitAnimation=(i=e==null?void 0:e.hasExitAnimation)!==null&&i!==void 0?i:!1}}class JV{reset(e){this.remaining=e,this.resume()}pause(){this.timerId!=null&&(clearTimeout(this.timerId),this.timerId=null,this.remaining-=Date.now()-this.startTime)}resume(){this.remaining<=0||(this.startTime=Date.now(),this.timerId=setTimeout(()=>{this.timerId=null,this.remaining=0,this.callback()},this.remaining))}constructor(e,n){this.remaining=n,this.callback=e}}const eI="DJIQHa_base",tI="DJIQHa_minimal",x3={base:eI,default:"DJIQHa_default",minimal:tI},Ef=E0(x3.base,{variants:{variant:{default:x3.default,minimal:x3.minimal}},defaultVariants:{variant:"default"}}),nI=({variant:t="default",...e},n)=>k.jsx(OB,{...e,ref:n,className:Z0(e.className,(i,a)=>Ef({...a,variant:t,className:i}))}),qw=x.forwardRef(nI),rI="C_Feta_base",iI="C_Feta_defaultFlair",oI="C_Feta_destructive",lI="C_Feta_invalid",aI="C_Feta_large",sI="C_Feta_medium",uI="C_Feta_minimal",cI="C_Feta_minimalFlair",dI="C_Feta_primary",fI="C_Feta_primaryFlair",pI="C_Feta_select",vI="C_Feta_small",Gn={base:rI,default:"C_Feta_default",defaultFlair:iI,destructive:oI,invalid:lI,large:aI,medium:sI,minimal:uI,minimalFlair:cI,primary:dI,primaryFlair:fI,select:pI,small:vI},Yw=E0(Gn.base,{variants:{size:{small:Gn.small,medium:Gn.medium,large:Gn.large},variant:{default:Gn.default,primary:Gn.primary,destructive:Gn.destructive,minimal:Gn.minimal,primaryFlair:Gn.primaryFlair,defaultFlair:Gn.defaultFlair,minimalFlair:Gn.minimalFlair}},defaultVariants:{size:"medium",variant:"default"}}),hI=({size:t="medium",variant:e="default",...n},i)=>{const a=$o(Pf);return k.jsx(dx,{...n,ref:i,className:Z0(n.className,(c,d)=>a?Rs(Ef(),Gn.select,a.isInvalid&&Gn.invalid,c):Yw({...d,size:t,variant:e,className:c}))})},Yn=x.forwardRef(hI),mI="_4yLvRa_base",gI="_4yLvRa_medium",yI="_4yLvRa_small",w3={base:mI,medium:gI,small:yI},bI=E0(w3.base,{variants:{size:{small:w3.small,medium:w3.medium}},defaultVariants:{size:"medium"}}),xI=({size:t="medium",variant:e="default",icon:n,...i},a)=>k.jsx(dx,{...i,ref:a,className:Z0(i.className,(c,d)=>Rs(Yw({...d,size:t,variant:e,className:c}),bI({size:t}))),children:k.jsx(K0,{name:n,size:"small","aria-hidden":!0})}),ih=x.forwardRef(xI),wI="kblPOW_base",$I="kblPOW_basic",SI="kblPOW_compact",CI="kblPOW_large",s5={base:wI,basic:$I,compact:SI,large:CI},_I=E0(s5.base,{variants:{spacing:{basic:s5.basic,compact:s5.compact,large:s5.large}},defaultVariants:{spacing:"basic"}}),PI=({spacing:t="basic",...e},n)=>k.jsx(tw,{...e,ref:n,className:Z0(e.className,(i,a)=>_I({...a,spacing:t,className:i})),children:Z0(e.children,(i,{isDisabled:a})=>k.jsx(fn,{values:[[Cf,{isDisabled:a}],[ZV,{isDisabled:a}]],children:i}))}),Xw=x.forwardRef(PI),EI="_4zkhoG_box",kI="_4zkhoG_checkbox",TI="_4zkhoG_container",MI="_4zkhoG_icon",e1={box:EI,checkbox:kI,container:TI,icon:MI},Qw=E0(e1.checkbox),AI=E0(e1.box),Jw=({isSelected:t,isIndeterminate:e})=>k.jsx("div",{className:AI(),children:e?k.jsx(K0,{name:"minus",size:"small",className:e1.icon}):t?k.jsx(K0,{name:"check",size:"small",className:e1.icon}):null}),LI=(t,e)=>k.jsx(IB,{...t,ref:e,className:Z0(t.className,(n,i)=>Qw({...i,className:n})),children:Z0(t.children,(n,{isSelected:i,isIndeterminate:a})=>k.jsxs(k.Fragment,{children:[k.jsx("div",{className:e1.container,children:k.jsx(Jw,{isSelected:i,isIndeterminate:a})}),n]}))}),DI=x.forwardRef(LI),RI=x.createContext({}),BI="mO5CFq_dialog",VI={dialog:BI},II=E0(VI.dialog),FI=({className:t,...e},n)=>{const i=$2();return k.jsx(rV,{...e,ref:n,className:II({className:t}),"aria-describedby":e["aria-describedby"]||i,children:Z0(e.children,a=>k.jsx(fn,{values:[[So,{slots:{subtitle:{id:i,elementType:"h3"}}}]],children:a}))})},e$=x.forwardRef(FI),ZI="NTUORW_error",OI={error:ZI},NI=E0(OI.error),HI=(t,e)=>k.jsx(MB,{...t,ref:e,className:Z0(t.className,(n,i)=>NI({...i,className:n}))}),t$=x.forwardRef(HI),zI="XLBffq_group",jI={group:zI},KI=E0(jI.group),WI=({variant:t="default",...e},n)=>k.jsx(tw,{...e,ref:n,className:Z0(e.className,(i,a)=>Rs(Ef({variant:t}),KI({...a,className:i})))}),UI=x.forwardRef(WI),GI="hZ0aYW_label",qI={label:GI},YI=E0(qI.label),XI=({className:t,...e},n)=>k.jsx(RB,{...e,ref:n,className:YI({className:t})}),v1=x.forwardRef(XI),QI="_6iLpCG_box lH5Eaq_menu",JI="_6iLpCG_content lH5Eaq_content",eF="_6iLpCG_item lH5Eaq_item",oh={box:QI,content:JI,item:eF},tF=E0(oh.box),nF=E0(oh.item),rF=(t,e)=>k.jsx(WB,{...t,ref:e,className:Z0(t.className,(n,i)=>tF({...i,className:n}))}),n$=x.forwardRef(rF),iF=(t,e)=>{const n=t.textValue||(typeof t.children=="string"?t.children:void 0);return k.jsx(GB,{textValue:n,...t,ref:e,className:Z0(t.className,(i,a)=>nF({...a,className:i})),children:Z0(t.children,(i,{isSelected:a})=>k.jsxs(k.Fragment,{children:[k.jsx("span",{className:oh.content,children:i}),a&&k.jsx(K0,{name:"check",size:"medium"})]}))})},r$=x.forwardRef(iF),oF="qZpqmq_circle",lF="qZpqmq_icon",aF="qZpqmq_radio",lh={circle:oF,icon:lF,radio:aF},sF=E0(lh.radio),uF=E0(lh.circle),cF=({isSelected:t})=>k.jsx("div",{className:uF(),children:t?k.jsx(K0,{name:"circle",className:lh.icon}):null}),dF="C73R2W_content",fF="C73R2W_destructive",pF="C73R2W_item",vF="C73R2W_menu",Oc={content:dF,destructive:fF,item:pF,menu:vF},hF=E0(Oc.menu),mF=E0(Oc.item,{variants:{variant:{default:Oc.default,destructive:Oc.destructive}},defaultVariants:{variant:"default"}}),gF=({className:t,...e},n)=>k.jsx(cV,{...e,ref:n,className:hF({className:t})}),yF=x.forwardRef(gF),bF=({variant:t="default",...e},n)=>k.jsx(fV,{...e,ref:n,className:Z0(e.className,(i,a)=>mF({...a,variant:t,className:i})),children:Z0(e.children,(i,{selectionMode:a,isSelected:c,hasSubmenu:d,isDisabled:f})=>k.jsxs(k.Fragment,{children:[a==="multiple"&&k.jsx("div",{className:Qw(),"data-selected":c||void 0,"data-disabled":f||void 0,children:k.jsx(Jw,{isSelected:c})}),a==="single"&&k.jsx("div",{className:sF(),"data-disabled":f||void 0,children:k.jsx(cF,{isSelected:c})}),k.jsx("span",{className:Oc.content,children:i}),d&&k.jsx(K0,{name:"chevron-right",size:"small"})]}))}),xF=x.forwardRef(bF),wF="bYbWKG_base",$F="bYbWKG_drawer",SF="bYbWKG_large",CF="bYbWKG_medium",_F="bYbWKG_overlay",PF="bYbWKG_small",El={base:wF,default:"bYbWKG_default",drawer:$F,large:SF,medium:CF,overlay:_F,small:PF},EF=E0(El.base,{variants:{size:{small:El.small,medium:El.medium,large:El.large},variant:{default:El.default,drawer:El.drawer}},defaultVariants:{size:"medium",variant:"default"}}),kF=E0(El.overlay),TF=({size:t="medium",variant:e="default",...n},i)=>k.jsx(hV,{...n,ref:i,className:Z0(n.className,(a,c)=>EF({...c,size:t,variant:e,className:a}))}),i$=x.forwardRef(TF),MF=({isDismissable:t=!0,...e},n)=>k.jsx(sw,{isDismissable:t,...e,ref:n,className:Z0(e.className,(i,a)=>kF({...a,className:i}))}),o$=x.forwardRef(MF),AF="lKzIqa_popover",l$={popover:AF},LF=E0(l$.popover),DF=(t,e)=>{const n=x.useContext(RI);return k.jsx(eV,{...n,...t,offset:4,crossOffset:0,ref:e,className:Z0(t.className,(i,a)=>LF({...a,className:i}))})},a$=x.forwardRef(DF),RF="wytVOa_base",BF="wytVOa_indeterminate",VF="wytVOa_innerCircle",IF="wytVOa_large",FF="wytVOa_medium",ZF="wytVOa_outerCircle",OF="wytVOa_progress",NF="wytVOa_small",uo={base:RF,indeterminate:BF,innerCircle:VF,large:IF,medium:FF,outerCircle:ZF,progress:OF,small:NF},HF=E0(uo.progress),zF=E0(uo.base,{variants:{size:{small:uo.small,medium:uo.medium,large:uo.large}},defaultVariants:{size:"small"}}),jF=({size:t="small",...e},n)=>{const d=24*Math.PI;return k.jsx(xV,{...e,ref:n,className:Z0(e.className,(f,v)=>HF({...v,className:f})),children:({percentage:f,isIndeterminate:v})=>k.jsxs("svg",{viewBox:"0 0 32 32",fill:"none",strokeWidth:4,className:Rs(zF({size:t}),v&&uo.indeterminate),children:[k.jsx("circle",{cx:16,cy:16,r:12,strokeWidth:4,className:uo.outerCircle}),k.jsx("circle",{cx:16,cy:16,r:12,strokeDasharray:`${d} ${d}`,strokeDashoffset:d-(v?.34:f||0/100)*d,transform:"rotate(-90 16 16)",className:uo.innerCircle})]})})},h1=x.forwardRef(jF),KF="adZH_q_search",WF={search:KF},UF=E0(WF.search),GF=(t,e)=>k.jsx(SV,{...t,ref:e,className:Z0(t.className,(n,i)=>UF({...i,className:n}))}),qF=x.forwardRef(GF),YF="VIpzwq_select",XF="VIpzwq_value",s$={select:YF,value:XF},QF=E0(s$.select),JF=E0(s$.value),eZ=(t,e)=>k.jsx(EV,{...t,ref:e,className:Z0(t.className,(n,i)=>QF({...i,className:n}))}),tZ=x.forwardRef(eZ),nZ=(t,e)=>k.jsx(TV,{...t,ref:e,className:Z0(t.className,(n,i)=>JF({...i,className:n}))}),rm=x.forwardRef(nZ),rZ="K81Z_G_text",iZ={text:rZ},oZ=E0(iZ.text),lZ=({className:t,...e},n)=>k.jsx(fx,{...e,ref:n,className:oZ({className:t})}),kf=x.forwardRef(lZ),aZ=({variant:t="default",...e},n)=>k.jsx(BV,{...e,ref:n,className:Z0(e.className,(i,a)=>Ef({...a,variant:t,className:i}))}),u$=x.forwardRef(aZ),sZ="dvJ4qG_field",uZ={field:sZ},cZ=E0(uZ.field),dZ=(t,e)=>k.jsx(FV,{...t,ref:e,className:Z0(t.className,(n,i)=>cZ({...i,className:n})),children:Z0(t.children,(n,{isInvalid:i,isDisabled:a})=>k.jsx(fn,{values:[[Jv,{isInvalid:i,isDisabled:a}]],children:n}))}),c$=x.forwardRef(dZ),fZ="iPUTXW_bottom",pZ="iPUTXW_content",vZ="iPUTXW_description",hZ="iPUTXW_error",mZ="iPUTXW_icon",gZ="iPUTXW_info",yZ="iPUTXW_region",bZ="iPUTXW_right",xZ="iPUTXW_snackbar",wZ="iPUTXW_success",$Z="iPUTXW_title",SZ="iPUTXW_toast",CZ="iPUTXW_warning",Ln={bottom:fZ,content:pZ,default:"iPUTXW_default",description:vZ,error:hZ,icon:mZ,info:gZ,region:yZ,right:bZ,snackbar:xZ,success:wZ,title:$Z,toast:SZ,warning:CZ},_Z=t=>{const[e,n]=x.useState(!1);return x.useEffect(()=>{if(typeof window<"u"){const i=window.matchMedia(t);n(i.matches);const a=c=>{n(c.matches)};return i.addEventListener("change",a),()=>{i.removeEventListener("change",a)}}},[t]),e},PZ=E0(Ln.region,{variants:{placement:{bottom:Ln.bottom,right:Ln.right}},defaultVariants:{placement:"bottom"}}),EZ=E0(Ln.icon,{variants:{status:{error:Ln.error,info:Ln.info,success:Ln.success,warning:Ln.warning}},defaultVariants:{status:"info"}}),kZ=E0(Ln.toast,{variants:{variant:{default:Ln.default,snackbar:Ln.snackbar}},defaultVariants:{variant:"default"}}),TZ=({state:t,placement:e="bottom",...n})=>{const i=x.useRef(null),{regionProps:a}=XV(n,t,i);return k.jsx("div",{...a,ref:i,className:PZ({placement:e}),children:t.visibleToasts.map(c=>k.jsx(MZ,{toast:c,state:t,variant:e==="bottom"?"default":"snackbar"},c.key))})},MZ=({state:t,variant:e="default",...n})=>{const i=x.useRef(null),{toastProps:a,contentProps:c,titleProps:d,descriptionProps:f,closeButtonProps:v}=KV(n,t),m=_Z("(prefers-reduced-motion: no-preference)"),{isFocusVisible:g,focusProps:b}=L2(),S=n.toast.content,{children:C,status:P,title:T,description:A,action:V}=S,R=V&&x.cloneElement(V,qe(V.props,{onPress:()=>t.close(n.toast.key)}));return x.useEffect(()=>{m===!1&&n.toast.animation==="exiting"&&t.remove(n.toast.key)},[m,n.toast,t]),k.jsxs("div",{"data-theme":"dark",...qe(a,b),ref:i,className:kZ({variant:e}),"data-animation":n.toast.animation,"data-focus-visible":g||void 0,onAnimationEnd:()=>{n.toast.animation==="exiting"&&t.remove(n.toast.key)},children:[k.jsx(Em,{kind:P||"info",className:EZ({status:P})}),k.jsx("div",{...c,className:Ln.content,children:e==="default"?k.jsx("div",{...d,children:C}):k.jsxs(k.Fragment,{children:[k.jsx("div",{...d,className:Ln.title,children:T}),k.jsxs("div",{...f,className:Ln.description,children:[A,R&&" ",R]})]})}),k.jsx(ih,{"aria-label":"Close",...v,children:void 0,icon:"cancel",variant:"minimal",size:"small"})]})},m5=new Gw({maxVisibleToasts:5,hasExitAnimation:!0});new Gw({maxVisibleToasts:5,hasExitAnimation:!0});const $3=6e3,im={info:(t,e)=>m5.add({children:t,status:"info"},{...e,timeout:$3}),success:(t,e)=>m5.add({children:t,status:"success"},{...e,timeout:$3}),warning:(t,e)=>m5.add({children:t,status:"warning"},{...e,timeout:$3})},AZ=t=>{const e=QV(m5);return e.visibleToasts.length>0?Is.createPortal(k.jsx(TZ,{...t,state:e,placement:"bottom"}),document.body):null},LZ="gdNzta_tooltip",om={tooltip:LZ},DZ=E0(om.base,{variants:{variant:{default:om.tooltip,popover:l$.popover}},defaultVariants:{variant:"default"}}),RZ=({variant:t="default",...e},n)=>k.jsx(HV,{...e,offset:4,crossOffset:0,ref:n,className:Z0(e.className,(i,a)=>DZ({...a,variant:t,className:i})),"data-trigger":t==="popover"?"DialogTrigger":void 0}),Vl=x.forwardRef(RZ),Il=t=>k.jsx(OV,{delay:500,...t,closeDelay:250}),BZ=({onPress:t})=>k.jsxs(Il,{children:[k.jsx(Yn,{onPress:t,children:k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"flag",size:"small"}),k.jsx("span",{children:"Flags"})]})})}),k.jsx(Vl,{children:"View and edit flags for the selected project"})]}),VZ=({onPress:t})=>k.jsxs(Il,{children:[k.jsx(Yn,{onPress:t,children:k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"play",size:"small"}),k.jsx("span",{children:"Events"})]})})}),k.jsx(Vl,{children:"View events"})]}),IZ={borderRadius:{regular:"0.1875rem"}},FZ="",Wr=t=>`${FZ}${t}`,Tp=t=>Object.keys(t).sort((e,n)=>e.localeCompare(n)).reduce((e,n)=>(e[n]=t[n],e),{});var Ac={exports:{}};/** + */var q6;function JR(){if(q6)return y3;q6=1;var t=O5();function e(b,S){return b===S&&(b!==0||1/b===1/S)||b!==b&&S!==S}var n=typeof Object.is=="function"?Object.is:e,i=t.useState,a=t.useEffect,c=t.useLayoutEffect,d=t.useDebugValue;function f(b,S){var C=S(),P=i({inst:{value:C,getSnapshot:S}}),T=P[0].inst,A=P[1];return c(function(){T.value=C,T.getSnapshot=S,v(T)&&A({inst:T})},[b,C,S]),a(function(){return v(T)&&A({inst:T}),b(function(){v(T)&&A({inst:T})})},[b]),d(C),C}function v(b){var S=b.getSnapshot;b=b.value;try{var C=S();return!n(b,C)}catch{return!0}}function m(b,S){return S()}var g=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?m:f;return y3.useSyncExternalStore=t.useSyncExternalStore!==void 0?t.useSyncExternalStore:g,y3}var Y6;function eB(){return Y6||(Y6=1,g3.exports=JR()),g3.exports}var qv=eB();const Cb=x.createContext(!1),Jc=x.createContext(null);function Yv(t){if(x.useContext(Jc))return t.content;let{collection:n,document:i}=iB(t.createCollection);return ee.createElement(ee.Fragment,null,ee.createElement(XR,null,ee.createElement(Jc.Provider,{value:i},t.content)),ee.createElement(tB,{render:t.children,collection:n}))}function tB({collection:t,render:e}){return e(t)}function nB(t,e,n){let i=M2(),a=x.useRef(i);a.current=i;let c=x.useCallback(()=>a.current?n():e(),[e,n]);return qv.useSyncExternalStore(t,c)}const rB=typeof ee.useSyncExternalStore=="function"?ee.useSyncExternalStore:nB;function iB(t){let[e]=x.useState(()=>new qR((t==null?void 0:t())||new GR)),n=x.useCallback(d=>e.subscribe(d),[e]),i=x.useCallback(()=>{let d=e.getCollection();return e.isSSR&&e.resetAfterSSR(),d},[e]),a=x.useCallback(()=>(e.isSSR=!0,e.getCollection()),[e]),c=rB(n,i,a);return C0(()=>(e.isMounted=!0,()=>{e.isMounted=!1}),[e]),{collection:c,document:e}}const Pp=x.createContext(null);function oB(t,e,n,i,a,c){let d=x.useCallback(v=>{v==null||v.setProps(e,n,i,c)},[e,n,i,c]),f=x.useContext(Pp);if(f){let v=f.ownerDocument.nodesByProps.get(e);return v||(v=f.ownerDocument.createElement(t),v.setProps(e,n,i,c),f.appendChild(v),f.ownerDocument.updateCollection(),f.ownerDocument.nodesByProps.set(e,v)),a?ee.createElement(Pp.Provider,{value:v},a):null}return ee.createElement(t,{ref:d},a)}function _b(t,e){let n=({node:a})=>e(a.props,a.props.ref,a),i=x.forwardRef((a,c)=>{if(!x.useContext(Cb)){if(e.length>=3)throw new Error(e.name+" cannot be rendered outside a collection.");return e(a,c)}return oB(t,a,c,"children"in a?a.children:null,null,f=>ee.createElement(n,{node:f}))});return i.displayName=e.name,i}function lB(t){return Sb({...t,addIdAndValue:!0})}const X6=x.createContext(null);function Pb(t){let e=x.useContext(X6),n=((e==null?void 0:e.dependencies)||[]).concat(t.dependencies),i=t.idScope||(e==null?void 0:e.idScope),a=lB({...t,idScope:i,dependencies:n});return x.useContext(Jc)&&(a=ee.createElement(aB,null,a)),e=x.useMemo(()=>({dependencies:n,idScope:i}),[i,...n]),ee.createElement(X6.Provider,{value:e},a)}function aB({children:t}){let e=x.useContext(Jc),n=x.useMemo(()=>ee.createElement(Jc.Provider,{value:null},ee.createElement(Cb.Provider,{value:!0},t)),[t]);return M2()?ee.createElement(Pp.Provider,{value:e},n):Is.createPortal(n,e)}const Eb=x.createContext(null),sB={CollectionRoot({collection:t,renderDropIndicator:e}){return Q6(t,null,e)},CollectionBranch({collection:t,parent:e,renderDropIndicator:n}){return Q6(t,e,n)}};function Q6(t,e,n){return Sb({items:e?t.getChildren(e.key):t,dependencies:[n],children(i){var a;let c=i.render(i);if(!n||i.type!=="item")return c;let d=i.key,f=t.getKeyAfter(d);return ee.createElement(ee.Fragment,null,n({type:"item",key:d,dropPosition:"before"}),c,(f==null||((a=t.getItem(f))===null||a===void 0?void 0:a.type)!=="item")&&n({type:"item",key:d,dropPosition:"after"}))}})}const wf=x.createContext(sB);function uB(t){return x.useMemo(()=>t!=null?new Set([t]):null,[t])}const Ep=Symbol("default");function fn({values:t,children:e}){for(let[n,i]of t)e=ee.createElement(n.Provider,{value:i},e);return e}function et(t){let{className:e,style:n,children:i,defaultClassName:a,defaultChildren:c,defaultStyle:d,values:f}=t;return x.useMemo(()=>{let v,m,g;return typeof e=="function"?v=e({...f,defaultClassName:a}):v=e,typeof n=="function"?m=n({...f,defaultStyle:d||{}}):m=n,typeof i=="function"?g=i({...f,defaultChildren:c}):i==null?g=c:g=i,{className:v??a,style:m||d?{...d,...m}:void 0,children:g??c,"data-rac":""}},[e,n,i,a,c,d,f])}function Z0(t,e){return n=>e(typeof t=="function"?t(n):t,n)}function $o(t,e){let n=x.useContext(t);if(e===null)return null;if(n&&typeof n=="object"&&"slots"in n&&n.slots){let i=new Intl.ListFormat().format(Object.keys(n.slots).map(c=>`"${c}"`));if(!e&&!n.slots[Ep])throw new Error(`A slot prop is required. Valid slot names are ${i}.`);let a=e||Ep;if(!n.slots[a])throw new Error(`Invalid slot "${e}". Valid slot names are ${i}.`);return n.slots[a]}return n}function lt(t,e,n){let i=$o(n,t.slot)||{},{ref:a,...c}=i,d=A2(x.useMemo(()=>j5(e,a),[e,a])),f=qe(c,t);return"style"in c&&c.style&&"style"in t&&t.style&&(typeof c.style=="function"||typeof t.style=="function"?f.style=v=>{let m=typeof c.style=="function"?c.style(v):c.style,g={...v.defaultStyle,...m},b=typeof t.style=="function"?t.style({...v,defaultStyle:g}):t.style;return{...g,...b}}:f.style={...c.style,...t.style}),[f,d]}function Ks(){let[t,e]=x.useState(!0),n=x.useRef(!1),i=x.useCallback(a=>{n.current=!0,e(!!a)},[]);return C0(()=>{n.current||e(!1)},[]),[i,t]}function $f(t,e=!0){let[n,i]=x.useState(!0);return kb(t,n&&e,x.useCallback(()=>i(!1),[])),n&&e}function Z5(t,e){let[n,i]=x.useState(!1),[a,c]=x.useState("idle");return!e&&t.current&&a==="idle"&&(n=!0,i(!0),c("exiting")),!t.current&&a==="exited"&&c("idle"),kb(t,n,x.useCallback(()=>{c("exited"),i(!1)},[])),n}function kb(t,e,n){let i=x.useRef(null);e&&t.current&&(i.current=window.getComputedStyle(t.current).animation),C0(()=>{if(e&&t.current){let a=window.getComputedStyle(t.current);if(a.animationName&&a.animationName!=="none"&&a.animation!==i.current){let c=f=>{f.target===t.current&&(d.removeEventListener("animationend",c),zp.flushSync(()=>{n()}))},d=t.current;return d.addEventListener("animationend",c),()=>{d.removeEventListener("animationend",c)}}else n()}},[t,e,n])}function Sf(t){const e=/^(data-.*)$/;let n={};for(const i in t)e.test(i)||(n[i]=t[i]);return n}function cB(t,e){let{role:n="dialog"}=t,i=w2();i=t["aria-label"]?void 0:i;let a=x.useRef(!1);return x.useEffect(()=>{if(e.current&&!e.current.contains(document.activeElement)){Bl(e.current);let c=setTimeout(()=>{document.activeElement===e.current&&(a.current=!0,e.current&&(e.current.blur(),Bl(e.current)),a.current=!1)},500);return()=>{clearTimeout(c)}}},[e]),x9(),{dialogProps:{...O0(t,{labelable:!0}),role:n,tabIndex:-1,"aria-labelledby":t["aria-labelledby"]||i,onBlur:c=>{a.current&&c.stopPropagation()}},titleProps:{id:i}}}function dB(t){let{value:e=0,minValue:n=0,maxValue:i=100,valueLabel:a,isIndeterminate:c,formatOptions:d={style:"percent"}}=t,f=O0(t,{labelable:!0}),{labelProps:v,fieldProps:m}=Hv({...t,labelElementType:"span"});e=Nc(e,n,i);let g=(e-n)/(i-n),b=zD(d);if(!c&&!a){let S=d.style==="percent"?g:e;a=b.format(S)}return{progressBarProps:qe(f,{...m,"aria-valuenow":c?void 0:e,"aria-valuemin":n,"aria-valuemax":i,"aria-valuetext":c?void 0:a,role:"progressbar"}),labelProps:v}}var Tb={};Tb={"Clear search":"مسح البحث"};var Mb={};Mb={"Clear search":"Изчистване на търсене"};var Ab={};Ab={"Clear search":"Vymazat hledání"};var Lb={};Lb={"Clear search":"Ryd søgning"};var Db={};Db={"Clear search":"Suche zurücksetzen"};var Rb={};Rb={"Clear search":"Απαλοιφή αναζήτησης"};var Bb={};Bb={"Clear search":"Clear search"};var Vb={};Vb={"Clear search":"Borrar búsqueda"};var Ib={};Ib={"Clear search":"Tühjenda otsing"};var Fb={};Fb={"Clear search":"Tyhjennä haku"};var Zb={};Zb={"Clear search":"Effacer la recherche"};var Ob={};Ob={"Clear search":"נקה חיפוש"};var Nb={};Nb={"Clear search":"Obriši pretragu"};var Hb={};Hb={"Clear search":"Keresés törlése"};var zb={};zb={"Clear search":"Cancella ricerca"};var jb={};jb={"Clear search":"検索をクリア"};var Kb={};Kb={"Clear search":"검색 지우기"};var Wb={};Wb={"Clear search":"Išvalyti iešką"};var Ub={};Ub={"Clear search":"Notīrīt meklēšanu"};var Gb={};Gb={"Clear search":"Tøm søk"};var qb={};qb={"Clear search":"Zoekactie wissen"};var Yb={};Yb={"Clear search":"Wyczyść zawartość wyszukiwania"};var Xb={};Xb={"Clear search":"Limpar pesquisa"};var Qb={};Qb={"Clear search":"Limpar pesquisa"};var Jb={};Jb={"Clear search":"Ştergeţi căutarea"};var ex={};ex={"Clear search":"Очистить поиск"};var tx={};tx={"Clear search":"Vymazať vyhľadávanie"};var nx={};nx={"Clear search":"Počisti iskanje"};var rx={};rx={"Clear search":"Obriši pretragu"};var ix={};ix={"Clear search":"Rensa sökning"};var ox={};ox={"Clear search":"Aramayı temizle"};var lx={};lx={"Clear search":"Очистити пошук"};var ax={};ax={"Clear search":"清除搜索"};var sx={};sx={"Clear search":"清除搜尋條件"};var ux={};ux={"ar-AE":Tb,"bg-BG":Mb,"cs-CZ":Ab,"da-DK":Lb,"de-DE":Db,"el-GR":Rb,"en-US":Bb,"es-ES":Vb,"et-EE":Ib,"fi-FI":Fb,"fr-FR":Zb,"he-IL":Ob,"hr-HR":Nb,"hu-HU":Hb,"it-IT":zb,"ja-JP":jb,"ko-KR":Kb,"lt-LT":Wb,"lv-LV":Ub,"nb-NO":Gb,"nl-NL":qb,"pl-PL":Yb,"pt-BR":Xb,"pt-PT":Qb,"ro-RO":Jb,"ru-RU":ex,"sk-SK":tx,"sl-SI":nx,"sr-SP":rx,"sv-SE":ix,"tr-TR":ox,"uk-UA":lx,"zh-CN":ax,"zh-TW":sx};function fB(t){return t&&t.__esModule?t.default:t}function pB(t,e,n){let i=zs(fB(ux),"@react-aria/searchfield"),{isDisabled:a,isReadOnly:c,onSubmit:d,onClear:f,type:v="search"}=t,m=V=>{const R=V.key;R==="Enter"&&(a||c)&&V.preventDefault(),!(a||c)&&(R==="Enter"&&d&&(V.preventDefault(),d(e.value)),R==="Escape"&&(e.value===""?V.continuePropagation():(e.setValue(""),f&&f())))},g=()=>{e.setValue(""),f&&f()},b=()=>{var V;(V=n.current)===null||V===void 0||V.focus()},{labelProps:S,inputProps:C,descriptionProps:P,errorMessageProps:T,...A}=_9({...t,value:e.value,onChange:e.setValue,onKeyDown:c?t.onKeyDown:vo(m,t.onKeyDown),type:v},n);return{labelProps:S,inputProps:{...C,defaultValue:void 0},clearButtonProps:{"aria-label":i.format("Clear search"),excludeFromTabOrder:!0,preventFocusOnPress:!0,isDisabled:a||c,onPress:g,onPressStart:b},descriptionProps:P,errorMessageProps:T,...A}}const cx=new WeakMap;function vB(t,e,n){let{keyboardDelegate:i,isDisabled:a,isRequired:c,name:d,validationBehavior:f="aria"}=t,v=Nv({usage:"search",sensitivity:"base"}),m=x.useMemo(()=>i||new Kv(e.collection,e.disabledKeys,null,v),[i,e.collection,e.disabledKeys,v]),{menuTriggerProps:g,menuProps:b}=mb({isDisabled:a,type:"listbox"},e,n),S=D=>{switch(D.key){case"ArrowLeft":{D.preventDefault();let ie=e.selectedKey!=null?m.getKeyAbove(e.selectedKey):m.getFirstKey();ie&&e.setSelectedKey(ie);break}case"ArrowRight":{D.preventDefault();let ie=e.selectedKey!=null?m.getKeyBelow(e.selectedKey):m.getFirstKey();ie&&e.setSelectedKey(ie);break}}},{typeSelectProps:C}=L9({keyboardDelegate:m,selectionManager:e.selectionManager,onTypeSelect(D){e.setSelectedKey(D)}}),{isInvalid:P,validationErrors:T,validationDetails:A}=e.displayValidation,{labelProps:V,fieldProps:R,descriptionProps:F,errorMessageProps:N}=C9({...t,labelElementType:"span",isInvalid:P,errorMessage:t.errorMessage||T});C.onKeyDown=C.onKeyDownCapture,delete C.onKeyDownCapture;let z=O0(t,{labelable:!0}),U=qe(C,g,R),le=Qn();return cx.set(e,{isDisabled:a,isRequired:c,name:d,validationBehavior:f}),{labelProps:{...V,onClick:()=>{t.isDisabled||(n.current.focus(),c8("keyboard"))}},triggerProps:qe(z,{...U,isDisabled:a,onKeyDown:vo(U.onKeyDown,S,t.onKeyDown),onKeyUp:t.onKeyUp,"aria-labelledby":[le,U["aria-labelledby"],U["aria-label"]&&!U["aria-labelledby"]?U.id:null].filter(Boolean).join(" "),onFocus(D){e.isFocused||(t.onFocus&&t.onFocus(D),t.onFocusChange&&t.onFocusChange(!0),e.setFocused(!0))},onBlur(D){e.isOpen||(t.onBlur&&t.onBlur(D),t.onFocusChange&&t.onFocusChange(!1),e.setFocused(!1))}}),valueProps:{id:le},menuProps:{...b,autoFocus:e.focusStrategy||!0,shouldSelectOnPressUp:!0,shouldFocusOnHover:!0,disallowEmptySelection:!0,linkBehavior:"selection",onBlur:D=>{D.currentTarget.contains(D.relatedTarget)||(t.onBlur&&t.onBlur(D),t.onFocusChange&&t.onFocusChange(!1),e.setFocused(!1))},"aria-labelledby":[R["aria-labelledby"],U["aria-label"]&&!R["aria-labelledby"]?U.id:null].filter(Boolean).join(" ")},descriptionProps:F,errorMessageProps:N,isInvalid:P,validationErrors:T,validationDetails:A}}function hB(t,e,n){let i=cx.get(e)||{},{autoComplete:a,name:c=i.name,isDisabled:d=i.isDisabled}=t,{validationBehavior:f,isRequired:v}=i,m=pE(),{visuallyHiddenProps:g}=m9();Fp(t.selectRef,e.selectedKey,e.setSelectedKey),zv({validationBehavior:f,focus:()=>n.current.focus()},e,t.selectRef);var b;return{containerProps:{...g,"aria-hidden":!0,"data-react-aria-prevent-focus":!0,"data-a11y-ignore":"aria-hidden-focus"},inputProps:{type:"text",tabIndex:m==null||e.isFocused||e.isOpen?-1:0,style:{fontSize:16},onFocus:()=>n.current.focus(),disabled:d},selectProps:{tabIndex:-1,autoComplete:a,disabled:d,required:f==="native"&&v,name:c,value:(b=e.selectedKey)!==null&&b!==void 0?b:"",onChange:S=>e.setSelectedKey(S.target.value)}}}function mB(t){let{state:e,triggerRef:n,label:i,name:a,isDisabled:c}=t,d=x.useRef(null),{containerProps:f,inputProps:v,selectProps:m}=hB({...t,selectRef:d},e,n);var g;return e.collection.size<=300?ee.createElement("div",{...f,"data-testid":"hidden-select-container"},ee.createElement("input",v),ee.createElement("label",null,i,ee.createElement("select",{...m,ref:d},ee.createElement("option",null),[...e.collection.getKeys()].map(b=>{let S=e.collection.getItem(b);if(S.type==="item")return ee.createElement("option",{key:S.key,value:S.key},S.textValue)})))):a?ee.createElement("input",{type:"hidden",autoComplete:m.autoComplete,name:a,disabled:c,value:(g=e.selectedKey)!==null&&g!==void 0?g:""}):null}function gB(t,e){let n=O0(t,{labelable:!0}),{hoverProps:i}=Jn({onHoverStart:()=>e==null?void 0:e.open(!0),onHoverEnd:()=>e==null?void 0:e.close()});return{tooltipProps:qe(n,i,{role:"tooltip"})}}function yB(t,e,n){let{isDisabled:i,trigger:a}=t,c=Qn(),d=x.useRef(!1),f=x.useRef(!1),v=()=>{(d.current||f.current)&&e.open(f.current)},m=V=>{!d.current&&!f.current&&e.close(V)};x.useEffect(()=>{let V=R=>{n&&n.current&&R.key==="Escape"&&(R.stopPropagation(),e.close(!0))};if(e.isOpen)return document.addEventListener("keydown",V,!0),()=>{document.removeEventListener("keydown",V,!0)}},[n,e]);let g=()=>{a!=="focus"&&(Ts()==="pointer"?d.current=!0:d.current=!1,v())},b=()=>{a!=="focus"&&(f.current=!1,d.current=!1,m())},S=()=>{f.current=!1,d.current=!1,m(!0)},C=()=>{ks()&&(f.current=!0,v())},P=()=>{f.current=!1,d.current=!1,m(!0)},{hoverProps:T}=Jn({isDisabled:i,onHoverStart:g,onHoverEnd:b}),{focusableProps:A}=Y5({isDisabled:i,onFocus:C,onBlur:P},n);return{triggerProps:{"aria-describedby":e.isOpen?c:void 0,...qe(A,T,{onPointerDown:S,onKeyDown:S})},tooltipProps:{id:c}}}const bB=new Set(["form","formAction","formEncType","formMethod","formNoValidate","formTarget","name","value"]),Cf=x.createContext({});function xB(t,e){[t,e]=lt(t,e,Cf);let n=t,{buttonProps:i,isPressed:a}=oR(t,e),{focusProps:c,isFocused:d,isFocusVisible:f}=L2(t),{hoverProps:v,isHovered:m}=Jn(t),g=et({...t,values:{isHovered:m,isPressed:a,isFocused:d,isFocusVisible:f,isDisabled:t.isDisabled||!1},defaultClassName:"react-aria-Button"});return ee.createElement("button",{...O0(t,{propNames:bB}),...qe(i,c,v),...g,ref:e,slot:t.slot||void 0,"data-disabled":t.isDisabled||void 0,"data-pressed":n.isPressed||a||void 0,"data-hovered":m||void 0,"data-focused":d||void 0,"data-focus-visible":f||void 0})}const dx=Gv(xB),So=x.createContext({});function wB(t,e){[t,e]=lt(t,e,So);let{elementType:n="span",...i}=t;return ee.createElement(n,{className:"react-aria-Text",...i,ref:e})}const fx=x.forwardRef(wB);function $B(t){let[e,n]=yo(J6(t.value),J6(t.defaultValue)||"",t.onChange);return{value:e,setValue:n}}function J6(t){if(t!=null)return t.toString()}function SB(t){let e=js(t),[n,i]=x.useState(null),a=mR({...t,onSelectionChange:v=>{t.onSelectionChange!=null&&t.onSelectionChange(v),e.close(),c.commitValidation()}}),c=bf({...t,value:a.selectedKey}),[d,f]=x.useState(!1);return{...c,...a,...e,focusStrategy:n,open(v=null){a.collection.size!==0&&(i(v),e.open())},toggle(v=null){a.collection.size!==0&&(i(v),e.toggle())},isFocused:d,setFocused:f}}const CB=1500,em=500;let $l={},_B=0,Pc=!1,fi=null,Sl=null;function px(t={}){let{delay:e=CB,closeDelay:n=em}=t,{isOpen:i,open:a,close:c}=js(t),d=x.useMemo(()=>`${++_B}`,[]),f=x.useRef(void 0),v=x.useRef(c),m=()=>{$l[d]=S},g=()=>{for(let P in $l)P!==d&&($l[P](!0),delete $l[P])},b=()=>{clearTimeout(f.current),f.current=null,g(),m(),Pc=!0,a(),fi&&(clearTimeout(fi),fi=null),Sl&&(clearTimeout(Sl),Sl=null)},S=P=>{P||n<=0?(clearTimeout(f.current),f.current=null,v.current()):f.current||(f.current=setTimeout(()=>{f.current=null,v.current()},n)),fi&&(clearTimeout(fi),fi=null),Pc&&(Sl&&clearTimeout(Sl),Sl=setTimeout(()=>{delete $l[d],Sl=null,Pc=!1},Math.max(em,n)))},C=()=>{g(),m(),!i&&!fi&&!Pc?fi=setTimeout(()=>{fi=null,Pc=!0,b()},e):i||b()};return x.useEffect(()=>{v.current=c},[c]),x.useEffect(()=>()=>{clearTimeout(f.current),$l[d]&&delete $l[d]},[d]),{isOpen:i,open:P=>{!P&&e>0&&!f.current?C():b()},close:S}}class PB{*[Symbol.iterator](){yield*this.iterable}get size(){return this.keyMap.size}getKeys(){return this.keyMap.keys()}getKeyBefore(e){let n=this.keyMap.get(e);return n?n.prevKey:null}getKeyAfter(e){let n=this.keyMap.get(e);return n?n.nextKey:null}getFirstKey(){return this.firstKey}getLastKey(){return this.lastKey}getItem(e){return this.keyMap.get(e)}at(e){const n=[...this.getKeys()];return this.getItem(n[e])}constructor(e,{expandedKeys:n}={}){this.keyMap=new Map,this.iterable=e,n=n||new Set;let i=d=>{if(this.keyMap.set(d.key,d),d.childNodes&&(d.type==="section"||n.has(d.key)))for(let f of d.childNodes)i(f)};for(let d of e)i(d);let a,c=0;for(let[d,f]of this.keyMap)a?(a.nextKey=d,f.prevKey=a.key):(this.firstKey=d,f.prevKey=void 0),f.type==="item"&&(f.index=c++),a=f,a.nextKey=void 0;this.lastKey=a==null?void 0:a.key}}function EB(t){let{onExpandedChange:e}=t,[n,i]=yo(t.expandedKeys?new Set(t.expandedKeys):void 0,t.defaultExpandedKeys?new Set(t.defaultExpandedKeys):new Set,e),a=P9(t),c=x.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),d=E9(t,x.useCallback(v=>new PB(v,{expandedKeys:n}),[n]),null);return x.useEffect(()=>{a.focusedKey!=null&&!d.getItem(a.focusedKey)&&a.setFocusedKey(null)},[d,a.focusedKey]),{collection:d,expandedKeys:n,disabledKeys:c,toggleKey:v=>{i(kB(n,v))},setExpandedKeys:i,selectionManager:new M9(d,a)}}function kB(t,e){let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n}const d1=x.createContext(null);function TB(t,e){let n=x.useContext(d1);return n!=null&&n.isInvalid?ee.createElement(AB,{...t,ref:e}):null}const MB=x.forwardRef(TB),AB=x.forwardRef((t,e)=>{let n=x.useContext(d1),i=et({...t,defaultClassName:"react-aria-FieldError",defaultChildren:n.validationErrors.length===0?void 0:n.validationErrors.join(" "),values:n});return i.children==null?null:ee.createElement(fx,{slot:"errorMessage",...i,ref:e})}),Bs=x.createContext(null);function LB(t,e){[t,e]=lt(t,e,Bs);let{validationErrors:n,validationBehavior:i="native",children:a,className:c,...d}=t;return ee.createElement("form",{noValidate:i!=="native",...d,ref:e,className:c||"react-aria-Form"},ee.createElement(Bs.Provider,{value:{...t,validationBehavior:i}},ee.createElement(S9.Provider,{value:n??{}},a)))}const vx=x.forwardRef(LB),f1=x.createContext({});function DB(t,e){[t,e]=lt(t,e,f1);let{elementType:n="label",...i}=t;return ee.createElement(n,{className:"react-aria-Label",...i,ref:e})}const RB=Gv(DB),BB=x.createContext(null);function VB(t,e){let{inputRef:n=null,...i}=t;[t,e]=lt(i,e,UR);let{validationBehavior:a}=$o(Bs)||{};var c,d;let f=(d=(c=t.validationBehavior)!==null&&c!==void 0?c:a)!==null&&d!==void 0?d:"native",v=x.useContext(BB),m=A2(j5(n,t.inputRef!==void 0?t.inputRef:null)),{labelProps:g,inputProps:b,isSelected:S,isDisabled:C,isReadOnly:P,isPressed:T,isInvalid:A}=v?KR({...t,value:t.value,children:typeof t.children=="function"?!0:t.children},v,m):bb({...t,children:typeof t.children=="function"?!0:t.children,validationBehavior:f},Wv(t),m),{isFocused:V,isFocusVisible:R,focusProps:F}=L2(),N=C||P,{hoverProps:z,isHovered:U}=Jn({...t,isDisabled:N}),le=et({...t,defaultClassName:"react-aria-Checkbox",values:{isSelected:S,isIndeterminate:t.isIndeterminate||!1,isPressed:T,isHovered:U,isFocused:V,isFocusVisible:R,isDisabled:C,isReadOnly:P,isInvalid:A,isRequired:t.isRequired||!1}}),D=O0(t);return delete D.id,ee.createElement("label",{...qe(D,g,z,le),ref:e,slot:t.slot||void 0,"data-selected":S||void 0,"data-indeterminate":t.isIndeterminate||void 0,"data-pressed":T||void 0,"data-hovered":U||void 0,"data-focused":V||void 0,"data-focus-visible":R||void 0,"data-disabled":C||void 0,"data-readonly":P||void 0,"data-invalid":A||void 0,"data-required":t.isRequired||void 0},ee.createElement(yf,{elementType:"span"},ee.createElement("input",{...qe(b,F),ref:m})),le.children)}const IB=x.forwardRef(VB),Xv=x.createContext({});let FB=t=>{let{onHoverStart:e,onHoverChange:n,onHoverEnd:i,...a}=t;return a};function ZB(t,e){[t,e]=lt(t,e,Xv);let{hoverProps:n,isHovered:i}=Jn(t),{isFocused:a,isFocusVisible:c,focusProps:d}=L2({isTextInput:!0,autoFocus:t.autoFocus}),f=!!t["aria-invalid"]&&t["aria-invalid"]!=="false",v=et({...t,values:{isHovered:i,isFocused:a,isFocusVisible:c,isDisabled:t.disabled||!1,isInvalid:f},defaultClassName:"react-aria-Input"});return ee.createElement("input",{...qe(FB(t),d,n),...v,ref:e,"data-focused":a||void 0,"data-disabled":t.disabled||void 0,"data-hovered":i||void 0,"data-focus-visible":c||void 0,"data-invalid":f||void 0})}const OB=Gv(ZB);var hx={};hx={colorSwatchPicker:"تغييرات الألوان",dropzoneLabel:"DropZone",selectPlaceholder:"حدد عنصرًا",tableResizer:"أداة تغيير الحجم"};var mx={};mx={colorSwatchPicker:"Цветови мостри",dropzoneLabel:"DropZone",selectPlaceholder:"Изберете предмет",tableResizer:"Преоразмерител"};var gx={};gx={colorSwatchPicker:"Vzorky barev",dropzoneLabel:"Místo pro přetažení",selectPlaceholder:"Vyberte položku",tableResizer:"Změna velikosti"};var yx={};yx={colorSwatchPicker:"Farveprøver",dropzoneLabel:"DropZone",selectPlaceholder:"Vælg et element",tableResizer:"Størrelsesændring"};var bx={};bx={colorSwatchPicker:"Farbfelder",dropzoneLabel:"Ablegebereich",selectPlaceholder:"Element wählen",tableResizer:"Größenanpassung"};var xx={};xx={colorSwatchPicker:"Χρωματικά δείγματα",dropzoneLabel:"DropZone",selectPlaceholder:"Επιλέξτε ένα αντικείμενο",tableResizer:"Αλλαγή μεγέθους"};var wx={};wx={selectPlaceholder:"Select an item",tableResizer:"Resizer",dropzoneLabel:"DropZone",colorSwatchPicker:"Color swatches"};var $x={};$x={colorSwatchPicker:"Muestras de colores",dropzoneLabel:"DropZone",selectPlaceholder:"Seleccionar un artículo",tableResizer:"Cambiador de tamaño"};var Sx={};Sx={colorSwatchPicker:"Värvinäidised",dropzoneLabel:"DropZone",selectPlaceholder:"Valige üksus",tableResizer:"Suuruse muutja"};var Cx={};Cx={colorSwatchPicker:"Värimallit",dropzoneLabel:"DropZone",selectPlaceholder:"Valitse kohde",tableResizer:"Koon muuttaja"};var _x={};_x={colorSwatchPicker:"Échantillons de couleurs",dropzoneLabel:"DropZone",selectPlaceholder:"Sélectionner un élément",tableResizer:"Redimensionneur"};var Px={};Px={colorSwatchPicker:"דוגמיות צבע",dropzoneLabel:"DropZone",selectPlaceholder:"בחר פריט",tableResizer:"שינוי גודל"};var Ex={};Ex={colorSwatchPicker:"Uzorci boja",dropzoneLabel:"Zona spuštanja",selectPlaceholder:"Odaberite stavku",tableResizer:"Promjena veličine"};var kx={};kx={colorSwatchPicker:"Színtárak",dropzoneLabel:"DropZone",selectPlaceholder:"Válasszon ki egy elemet",tableResizer:"Átméretező"};var Tx={};Tx={colorSwatchPicker:"Campioni di colore",dropzoneLabel:"Zona di rilascio",selectPlaceholder:"Seleziona un elemento",tableResizer:"Ridimensionamento"};var Mx={};Mx={colorSwatchPicker:"カラースウォッチ",dropzoneLabel:"ドロップゾーン",selectPlaceholder:"項目を選択",tableResizer:"サイズ変更ツール"};var Ax={};Ax={colorSwatchPicker:"색상 견본",dropzoneLabel:"드롭 영역",selectPlaceholder:"항목 선택",tableResizer:"크기 조정기"};var Lx={};Lx={colorSwatchPicker:"Spalvų pavyzdžiai",dropzoneLabel:"„DropZone“",selectPlaceholder:"Pasirinkite elementą",tableResizer:"Dydžio keitiklis"};var Dx={};Dx={colorSwatchPicker:"Krāsu paraugi",dropzoneLabel:"DropZone",selectPlaceholder:"Izvēlēties vienumu",tableResizer:"Izmēra mainītājs"};var Rx={};Rx={colorSwatchPicker:"Fargekart",dropzoneLabel:"Droppsone",selectPlaceholder:"Velg et element",tableResizer:"Størrelsesendrer"};var Bx={};Bx={colorSwatchPicker:"kleurstalen",dropzoneLabel:"DropZone",selectPlaceholder:"Selecteer een item",tableResizer:"Resizer"};var Vx={};Vx={colorSwatchPicker:"Próbki kolorów",dropzoneLabel:"Strefa upuszczania",selectPlaceholder:"Wybierz element",tableResizer:"Zmiana rozmiaru"};var Ix={};Ix={colorSwatchPicker:"Amostras de cores",dropzoneLabel:"DropZone",selectPlaceholder:"Selecione um item",tableResizer:"Redimensionador"};var Fx={};Fx={colorSwatchPicker:"Amostras de cores",dropzoneLabel:"DropZone",selectPlaceholder:"Selecione um item",tableResizer:"Redimensionador"};var Zx={};Zx={colorSwatchPicker:"Specimene de culoare",dropzoneLabel:"Zonă de plasare",selectPlaceholder:"Selectați un element",tableResizer:"Instrument de redimensionare"};var Ox={};Ox={colorSwatchPicker:"Цветовые образцы",dropzoneLabel:"DropZone",selectPlaceholder:"Выберите элемент",tableResizer:"Средство изменения размера"};var Nx={};Nx={colorSwatchPicker:"Vzorkovníky farieb",dropzoneLabel:"DropZone",selectPlaceholder:"Vyberte položku",tableResizer:"Nástroj na zmenu veľkosti"};var Hx={};Hx={colorSwatchPicker:"Barvne palete",dropzoneLabel:"DropZone",selectPlaceholder:"Izberite element",tableResizer:"Spreminjanje velikosti"};var zx={};zx={colorSwatchPicker:"Uzorci boje",dropzoneLabel:"DropZone",selectPlaceholder:"Izaberite stavku",tableResizer:"Promena veličine"};var jx={};jx={colorSwatchPicker:"Färgrutor",dropzoneLabel:"DropZone",selectPlaceholder:"Välj en artikel",tableResizer:"Storleksändrare"};var Kx={};Kx={colorSwatchPicker:"Renk örnekleri",dropzoneLabel:"Bırakma Bölgesi",selectPlaceholder:"Bir öğe seçin",tableResizer:"Yeniden boyutlandırıcı"};var Wx={};Wx={colorSwatchPicker:"Зразки кольорів",dropzoneLabel:"DropZone",selectPlaceholder:"Виберіть елемент",tableResizer:"Засіб змінення розміру"};var Ux={};Ux={colorSwatchPicker:"颜色色板",dropzoneLabel:"放置区域",selectPlaceholder:"选择一个项目",tableResizer:"尺寸调整器"};var Gx={};Gx={colorSwatchPicker:"色票",dropzoneLabel:"放置區",selectPlaceholder:"選取項目",tableResizer:"大小調整器"};var qx={};qx={"ar-AE":hx,"bg-BG":mx,"cs-CZ":gx,"da-DK":yx,"de-DE":bx,"el-GR":xx,"en-US":wx,"es-ES":$x,"et-EE":Sx,"fi-FI":Cx,"fr-FR":_x,"he-IL":Px,"hr-HR":Ex,"hu-HU":kx,"it-IT":Tx,"ja-JP":Mx,"ko-KR":Ax,"lt-LT":Lx,"lv-LV":Dx,"nb-NO":Rx,"nl-NL":Bx,"pl-PL":Vx,"pt-BR":Ix,"pt-PT":Fx,"ro-RO":Zx,"ru-RU":Ox,"sk-SK":Nx,"sl-SI":Hx,"sr-SP":zx,"sv-SE":jx,"tr-TR":Kx,"uk-UA":Wx,"zh-CN":Ux,"zh-TW":Gx};const _f=x.createContext({}),Yx=x.createContext(null);function NB(t,e){let{render:n}=x.useContext(Yx);return ee.createElement(ee.Fragment,null,n(t,e))}const HB=x.forwardRef(NB);function Xx(t,e){var n;let i=t==null?void 0:t.renderDropIndicator,a=t==null||(n=t.isVirtualDragging)===null||n===void 0?void 0:n.call(t),c=x.useCallback(d=>{if(a||e!=null&&e.isDropTarget(d))return i?i(d):ee.createElement(HB,{target:d})},[e==null?void 0:e.target,a,i]);return t!=null&&t.useDropIndicator?c:void 0}function zB(t,e,n){var i,a;let c=t.focusedKey,d=null;if(!(e==null||(i=e.isVirtualDragging)===null||i===void 0)&&i.call(e)&&(n==null||(a=n.target)===null||a===void 0?void 0:a.type)==="item"){d=n.target.key;var f;n.target.dropPosition==="after"&&(d=(f=n.collection.getKeyAfter(d))!==null&&f!==void 0?f:d)}return x.useMemo(()=>new Set([c,d].filter(v=>v!==null)),[c,d])}const Qx=x.createContext({}),Jx=x.createContext({}),Qv=x.createContext(null),p1=x.createContext(null);function jB(t,e){[t,e]=lt(t,e,Qv);let n=x.useContext(p1);return n?ee.createElement(ew,{state:n,props:t,listBoxRef:e}):ee.createElement(Yv,{content:ee.createElement(Pb,t)},i=>ee.createElement(KB,{props:t,listBoxRef:e,collection:i}))}function KB({props:t,listBoxRef:e,collection:n}){t={...t,collection:n,children:null,items:null};let i=A9(t);return ee.createElement(ew,{state:i,props:t,listBoxRef:e})}const WB=x.forwardRef(jB);function ew({state:t,props:e,listBoxRef:n}){let{dragAndDropHooks:i,layout:a="stack",orientation:c="vertical"}=e,{collection:d,selectionManager:f}=t,v=!!(i!=null&&i.useDraggableCollectionState),m=!!(i!=null&&i.useDroppableCollectionState),{direction:g}=Hs(),{disabledBehavior:b,disabledKeys:S}=f,C=Nv({usage:"search",sensitivity:"base"}),{isVirtualized:P,layoutDelegate:T,dropTargetDelegate:A,CollectionRoot:V}=x.useContext(wf),R=x.useMemo(()=>e.keyboardDelegate||new Kv({collection:d,collator:C,ref:n,disabledKeys:S,disabledBehavior:b,layout:a,orientation:c,direction:g,layoutDelegate:T}),[d,C,n,b,S,c,g,e.keyboardDelegate,a,T]),{listBoxProps:F}=TR({...e,shouldSelectOnPressUp:v||e.shouldSelectOnPressUp,keyboardDelegate:R,isVirtualized:P},t,n),N=x.useRef(v),z=x.useRef(m);x.useEffect(()=>{N.current!==v&&console.warn("Drag hooks were provided during one render, but not another. This should be avoided as it may produce unexpected behavior."),z.current!==m&&console.warn("Drop hooks were provided during one render, but not another. This should be avoided as it may produce unexpected behavior.")},[v,m]);let U,le,D,ie=!1,j=null,X=x.useRef(null);if(v&&i){U=i.useDraggableCollectionState({collection:d,selectionManager:f,preview:i.renderDragPreview?X:void 0}),i.useDraggableCollection({},U,n);let fe=i.DragPreview;j=i.renderDragPreview?ee.createElement(fe,{ref:X},i.renderDragPreview):null}if(m&&i){le=i.useDroppableCollectionState({collection:d,selectionManager:f});let fe=i.dropTargetDelegate||A||new i.ListDropTargetDelegate(d,n,{orientation:c,layout:a,direction:g});D=i.useDroppableCollection({keyboardDelegate:R,dropTargetDelegate:fe},le,n),ie=le.isDropTarget({type:"root"})}let{focusProps:xe,isFocused:G,isFocusVisible:Q}=L2(),he={isDropTarget:ie,isEmpty:t.collection.size===0,isFocused:G,isFocusVisible:Q,layout:e.layout||"stack",state:t},_e=et({className:e.className,style:e.style,defaultClassName:"react-aria-ListBox",values:he}),se=null;return t.collection.size===0&&e.renderEmptyState&&(se=ee.createElement("div",{role:"option",style:{display:"contents"}},e.renderEmptyState(he))),ee.createElement(q5,null,ee.createElement("div",{...O0(e),...qe(F,xe,D==null?void 0:D.collectionProps),..._e,ref:n,slot:e.slot||void 0,onScroll:e.onScroll,"data-drop-target":ie||void 0,"data-empty":t.collection.size===0||void 0,"data-focused":G||void 0,"data-focus-visible":Q||void 0,"data-layout":e.layout||"stack","data-orientation":e.orientation||"vertical"},ee.createElement(fn,{values:[[Qv,e],[p1,t],[_f,{dragAndDropHooks:i,dragState:U,dropState:le}],[Jx,{elementType:"div"}],[Yx,{render:qB}],[Eb,{render:UB}]]},ee.createElement(V,{collection:d,scrollRef:n,persistedKeys:zB(f,i,le),renderDropIndicator:Xx(i,le)})),se,j))}function UB(t,e,n){let i=x.useContext(p1),{dragAndDropHooks:a,dropState:c}=x.useContext(_f),{CollectionBranch:d}=x.useContext(wf),[f,v]=Ks();var m;let{headingProps:g,groupProps:b}=AR({heading:v,"aria-label":(m=t["aria-label"])!==null&&m!==void 0?m:void 0}),S=et({defaultClassName:"react-aria-Section",className:t.className,style:t.style,values:{}});return ee.createElement("section",{...O0(t),...b,...S,ref:e},ee.createElement(Qx.Provider,{value:{...g,ref:f}},ee.createElement(d,{collection:i.collection,parent:n,renderDropIndicator:Xx(a,c)})))}const GB=_b("item",function(e,n,i){let a=A2(n),c=x.useContext(p1),{dragAndDropHooks:d,dragState:f,dropState:v}=x.useContext(_f),{optionProps:m,labelProps:g,descriptionProps:b,...S}=MR({key:i.key,"aria-label":e==null?void 0:e["aria-label"]},c,a),{hoverProps:C,isHovered:P}=Jn({isDisabled:!S.allowsSelection&&!S.hasAction,onHoverStart:i.props.onHoverStart,onHoverChange:i.props.onHoverChange,onHoverEnd:i.props.onHoverEnd}),T=null;f&&d&&(T=d.useDraggableItem({key:i.key},f));let A=null;v&&d&&(A=d.useDroppableItem({target:{type:"item",key:i.key,dropPosition:"on"}},v,a));let V=f&&f.isDragging(i.key),R=et({...e,id:void 0,children:e.children,defaultClassName:"react-aria-ListBoxItem",values:{...S,isHovered:P,selectionMode:c.selectionManager.selectionMode,selectionBehavior:c.selectionManager.selectionBehavior,allowsDragging:!!f,isDragging:V,isDropTarget:A==null?void 0:A.isDropTarget}});x.useEffect(()=>{i.textValue||console.warn("A `textValue` prop is required for elements with non-plain text children in order to support accessibility features such as type to select.")},[i.textValue]);let F=e.href?"a":"div";return ee.createElement(F,{...qe(m,C,T==null?void 0:T.dragProps,A==null?void 0:A.dropProps),...R,ref:a,"data-allows-dragging":!!f||void 0,"data-selected":S.isSelected||void 0,"data-disabled":S.isDisabled||void 0,"data-hovered":P||void 0,"data-focused":S.isFocused||void 0,"data-focus-visible":S.isFocusVisible||void 0,"data-pressed":S.isPressed||void 0,"data-dragging":V||void 0,"data-drop-target":(A==null?void 0:A.isDropTarget)||void 0,"data-selection-mode":c.selectionManager.selectionMode==="none"?void 0:c.selectionManager.selectionMode},ee.createElement(fn,{values:[[So,{slots:{label:g,description:b}}]]},R.children))});function qB(t,e){e=A2(e);let{dragAndDropHooks:n,dropState:i}=x.useContext(_f),{dropIndicatorProps:a,isHidden:c,isDropTarget:d}=n.useDropIndicator(t,i,e);return c?null:ee.createElement(XB,{...t,dropIndicatorProps:a,isDropTarget:d,ref:e})}function YB(t,e){let{dropIndicatorProps:n,isDropTarget:i,...a}=t,c=et({...a,defaultClassName:"react-aria-DropIndicator",values:{isDropTarget:i}});return ee.createElement("div",{...n,...c,role:"option",ref:e,"data-drop-target":i||void 0})}const XB=x.forwardRef(YB),Jv=x.createContext({});function QB(t,e){[t,e]=lt(t,e,Jv);let{isDisabled:n,isInvalid:i,onHoverStart:a,onHoverChange:c,onHoverEnd:d,...f}=t,{hoverProps:v,isHovered:m}=Jn({onHoverStart:a,onHoverChange:c,onHoverEnd:d,isDisabled:n}),{isFocused:g,isFocusVisible:b,focusProps:S}=L2({within:!0});n??(n=!!t["aria-disabled"]&&t["aria-disabled"]!=="false"),i??(i=!!t["aria-invalid"]&&t["aria-invalid"]!=="false");let C=et({...t,values:{isHovered:m,isFocusWithin:g,isFocusVisible:b,isDisabled:n,isInvalid:i},defaultClassName:"react-aria-Group"});var P,T;return ee.createElement("div",{...qe(f,S,v),...C,ref:e,role:(P=t.role)!==null&&P!==void 0?P:"group",slot:(T=t.slot)!==null&&T!==void 0?T:void 0,"data-focus-within":g||void 0,"data-hovered":m||void 0,"data-focus-visible":b||void 0,"data-disabled":n||void 0,"data-invalid":i||void 0},C.children)}const tw=x.forwardRef(QB),nw=x.createContext({placement:"bottom"}),Vs=x.createContext(null);function JB(t,e){[t,e]=lt(t,e,Vs);let n=x.useContext(Co),i=js(t),a=t.isOpen!=null||t.defaultOpen!=null||!n?i:n,c=Z5(e,a.isOpen)||t.isExiting||!1;if(QR()){let f=t.children;return typeof f=="function"&&(f=f({trigger:t.trigger||null,placement:"bottom",isEntering:!1,isExiting:!1,defaultChildren:null})),ee.createElement(ee.Fragment,null,f)}return a&&!a.isOpen&&!c?null:ee.createElement(tV,{...t,triggerRef:t.triggerRef,state:a,popoverRef:e,isExiting:c})}const eV=x.forwardRef(JB);function tV({state:t,isExiting:e,UNSTABLE_portalContainer:n,...i}){let a=x.useRef(null),[c,d]=x.useState(0);C0(()=>{a.current&&t.isOpen&&d(a.current.getBoundingClientRect().width)},[t.isOpen,a]);var f;let{popoverProps:v,underlayProps:m,arrowProps:g,placement:b}=tR({...i,offset:(f=i.offset)!==null&&f!==void 0?f:8,arrowSize:c},t),S=i.popoverRef,C=$f(S,!!b)||i.isEntering||!1,P=et({...i,defaultClassName:"react-aria-Popover",values:{trigger:i.trigger||null,placement:b,isEntering:C,isExiting:e}}),T={...v.style,...P.style};return ee.createElement(b9,{isExiting:e,portalContainer:n},!i.isNonModal&&t.isOpen&&ee.createElement("div",{"data-testid":"underlay",...m,style:{position:"fixed",inset:0}}),ee.createElement("div",{...qe(O0(i),v),...P,ref:S,slot:i.slot||void 0,style:T,"data-trigger":i.trigger,"data-placement":b,"data-entering":C||void 0,"data-exiting":e||void 0},!i.isNonModal&&ee.createElement($p,{onDismiss:t.close}),ee.createElement(nw.Provider,{value:{...g,placement:b,ref:a}},P.children),ee.createElement($p,{onDismiss:t.close})))}const rw=x.createContext(null),Co=x.createContext(null);function iw(t){let e=js(t),n=x.useRef(null),{triggerProps:i,overlayProps:a}=Dy({type:"dialog"},e,n);return i.id=Qn(),a["aria-labelledby"]=i.id,ee.createElement(fn,{values:[[Co,e],[rw,a],[Vs,{trigger:"DialogTrigger",triggerRef:n}]]},ee.createElement(i8,{...i,ref:n,isPressed:e.isOpen},t.children))}function nV(t,e){let n=t["aria-labelledby"];[t,e]=lt(t,e,rw);let{dialogProps:i,titleProps:a}=cB({...t,"aria-labelledby":n},e),c=x.useContext(Co),d=t.children;typeof d=="function"&&(d=d({close:(c==null?void 0:c.close)||(()=>{})})),!i["aria-label"]&&!i["aria-labelledby"]&&(t["aria-labelledby"]?i["aria-labelledby"]=t["aria-labelledby"]:console.warn('If a Dialog does not contain a , it must have an aria-label or aria-labelledby attribute for accessibility.'));var f;return ee.createElement("section",{...O0(t),...i,ref:e,slot:t.slot||void 0,style:t.style,className:(f=t.className)!==null&&f!==void 0?f:"react-aria-Dialog"},ee.createElement(fn,{values:[[wb,{slots:{[Ep]:{},title:{...a,level:2}}}]]},d))}const rV=x.forwardRef(nV);function iV(t,e){[t,e]=lt(t,e,wb);let{children:n,level:i=3,className:a,...c}=t,d=`h${i}`;return ee.createElement(d,{...c,ref:e,className:a??"react-aria-Heading"},n)}const ow=x.forwardRef(iV),oV=x.createContext({}),lw=x.createContext(null),eh=x.createContext(null),aw=x.createContext(null);function lV(t){let e=VR(t),n=x.useRef(null),{menuTriggerProps:i,menuProps:a}=mb({...t,type:"menu"},e,n),[c,d]=x.useState(null),f=x.useCallback(()=>{n.current&&d(n.current.offsetWidth+"px")},[n]);$5({ref:n,onResize:f});let v=x.useRef(null);return ee.createElement(fn,{values:[[lw,{...a,ref:v}],[Co,e],[aw,e],[Vs,{trigger:"MenuTrigger",triggerRef:n,scrollRef:v,placement:"bottom start",style:{"--trigger-width":c}}]]},ee.createElement(i8,{...i,ref:n,isPressed:e.isOpen},t.children))}const aV=x.createContext(null);function sV(t,e){return[t,e]=lt(t,e,lw),ee.createElement(Yv,{content:ee.createElement(Pb,t)},n=>n.size>0&&ee.createElement(uV,{props:t,collection:n,menuRef:e}))}function uV({props:t,collection:e,menuRef:n}){let i=EB({...t,collection:e,children:void 0}),[a,c]=x.useState(null),{isVirtualized:d,CollectionRoot:f}=x.useContext(wf),{menuProps:v}=DR({...t,isVirtualized:d},i,n),m=x.useContext(aw),g=x.useContext(Vs),b=(g==null?void 0:g.trigger)==="SubmenuTrigger";d8({ref:n,onInteractOutside:A=>{m&&!(a!=null&&a.contains(A.target))&&m.close()},isDisabled:b||(m==null?void 0:m.expandedKeysStack.length)===0});let S=x.useRef(null),[C,P]=x.useState({left:0});x.useEffect(()=>{if(a&&S.current!==a&&C.left===0){S.current=a;let{left:A}=a.getBoundingClientRect();P({left:-1*A})}},[C,a]);let T=et({defaultClassName:"react-aria-Menu",className:t.className,style:t.style,values:{}});return ee.createElement(q5,null,ee.createElement("div",{...O0(t),...v,...T,ref:n,slot:t.slot||void 0,onScroll:t.onScroll},ee.createElement(fn,{values:[[eh,i],[Jx,{elementType:"div"}],[Vs,{UNSTABLE_portalContainer:a||void 0}],[Eb,{render:dV}],[aV,{parentMenuRef:n}],[kp,null]]},ee.createElement(f,{collection:e,persistedKeys:uB(i.selectionManager.focusedKey),scrollRef:n}))),ee.createElement("div",{ref:c,style:{width:"100vw",position:"absolute",top:0,...C}}))}const cV=x.forwardRef(sV);function dV(t,e,n){var i,a;let c=x.useContext(eh),{CollectionBranch:d}=x.useContext(wf),[f,v]=Ks();var m;let{headingProps:g,groupProps:b}=BR({heading:v,"aria-label":(m=n.props["aria-label"])!==null&&m!==void 0?m:void 0}),S=et({defaultClassName:"react-aria-Section",className:(i=n.props)===null||i===void 0?void 0:i.className,style:(a=n.props)===null||a===void 0?void 0:a.style,values:{}});return ee.createElement("section",{...O0(t),...b,...S,ref:e},ee.createElement(Qx.Provider,{value:{...g,ref:f}},ee.createElement(d,{collection:c.collection,parent:n})))}const kp=x.createContext(null),fV=_b("item",function(e,n,i){var a;[e,n]=lt(e,n,kp);let c=(a=$o(kp))===null||a===void 0?void 0:a.id,d=x.useContext(eh),f=A2(n),{menuItemProps:v,labelProps:m,descriptionProps:g,keyboardShortcutProps:b,...S}=RR({...e,id:c,key:i.key},d,f),{isFocusVisible:C,focusProps:P}=L2(),{hoverProps:T,isHovered:A}=Jn({isDisabled:S.isDisabled}),V=et({...e,id:void 0,children:i.rendered,defaultClassName:"react-aria-MenuItem",values:{...S,isHovered:A,isFocusVisible:C,selectionMode:d.selectionManager.selectionMode,selectionBehavior:d.selectionManager.selectionBehavior,hasSubmenu:!!e["aria-haspopup"],isOpen:e["aria-expanded"]==="true"}}),R=e.href?"a":"div";return ee.createElement(R,{...qe(v,P,T),...V,ref:f,"data-disabled":S.isDisabled||void 0,"data-hovered":A||void 0,"data-focused":S.isFocused||void 0,"data-focus-visible":C||void 0,"data-pressed":S.isPressed||void 0,"data-selected":S.isSelected||void 0,"data-selection-mode":d.selectionManager.selectionMode==="none"?void 0:d.selectionManager.selectionMode,"data-has-submenu":!!e["aria-haspopup"]||void 0,"data-open":e["aria-expanded"]==="true"||void 0},ee.createElement(fn,{values:[[So,{slots:{label:m,description:g}}],[oV,b]]},V.children))}),pV=x.createContext(null),th=x.createContext(null);function vV(t,e){if(x.useContext(th))return ee.createElement(tm,{...t,modalRef:e},t.children);let{isDismissable:i,isKeyboardDismissDisabled:a,isOpen:c,defaultOpen:d,onOpenChange:f,children:v,isEntering:m,isExiting:g,UNSTABLE_portalContainer:b,shouldCloseOnInteractOutside:S,...C}=t;return ee.createElement(sw,{isDismissable:i,isKeyboardDismissDisabled:a,isOpen:c,defaultOpen:d,onOpenChange:f,isEntering:m,isExiting:g,UNSTABLE_portalContainer:b,shouldCloseOnInteractOutside:S},ee.createElement(tm,{...C,modalRef:e},v))}const hV=x.forwardRef(vV);function mV(t,e){[t,e]=lt(t,e,pV);let n=x.useContext(Co),i=js(t),a=t.isOpen!=null||t.defaultOpen!=null||!n?i:n,c=A2(e),d=x.useRef(null),f=Z5(c,a.isOpen),v=Z5(d,a.isOpen),m=f||v||t.isExiting||!1,g=M2();return!a.isOpen&&!m||g?null:ee.createElement(gV,{...t,state:a,isExiting:m,overlayRef:c,modalRef:d})}const sw=x.forwardRef(mV);function gV({UNSTABLE_portalContainer:t,...e}){let n=e.modalRef,{state:i}=e,{modalProps:a,underlayProps:c}=iR(e,i,n),d=$f(e.overlayRef)||e.isEntering||!1,f=et({...e,defaultClassName:"react-aria-ModalOverlay",values:{isEntering:d,isExiting:e.isExiting,state:i}}),v=GP(),m={...f.style,"--visual-viewport-height":v.height+"px"};return ee.createElement(b9,{isExiting:e.isExiting,portalContainer:t},ee.createElement("div",{...qe(O0(e),c),...f,style:m,ref:e.overlayRef,"data-entering":d||void 0,"data-exiting":e.isExiting||void 0},ee.createElement(fn,{values:[[th,{modalProps:a,modalRef:n,isExiting:e.isExiting,isDismissable:e.isDismissable}],[Co,i]]},f.children)))}function tm(t){let{modalProps:e,modalRef:n,isExiting:i,isDismissable:a}=x.useContext(th),c=x.useContext(Co),d=x.useMemo(()=>j5(t.modalRef,n),[t.modalRef,n]),f=A2(d),v=$f(f),m=et({...t,defaultClassName:"react-aria-Modal",values:{isEntering:v,isExiting:i,state:c}});return ee.createElement("div",{...qe(O0(t),e),...m,ref:f,"data-entering":v||void 0,"data-exiting":i||void 0},a&&ee.createElement($p,{onDismiss:c.close}),m.children)}const yV=x.createContext(null);function bV(t,e){[t,e]=lt(t,e,yV);let{value:n=0,minValue:i=0,maxValue:a=100,isIndeterminate:c=!1}=t;n=Nc(n,i,a);let[d,f]=Ks(),{progressBarProps:v,labelProps:m}=dB({...t,label:f}),g=c?void 0:(n-i)/(a-i)*100,b=et({...t,defaultClassName:"react-aria-ProgressBar",values:{percentage:g,valueText:v["aria-valuetext"],isIndeterminate:c}});return ee.createElement("div",{...v,...b,ref:e,slot:t.slot||void 0},ee.createElement(f1.Provider,{value:{...m,ref:d,elementType:"span"}},b.children))}const xV=x.forwardRef(bV),wV=x.createContext(null);function $V(t,e){[t,e]=lt(t,e,wV);let{validationBehavior:n}=$o(Bs)||{};var i,a;let c=(a=(i=t.validationBehavior)!==null&&i!==void 0?i:n)!==null&&a!==void 0?a:"native",d=x.useRef(null),[f,v]=Ks(),m=$B({...t,validationBehavior:c}),{labelProps:g,inputProps:b,clearButtonProps:S,descriptionProps:C,errorMessageProps:P,...T}=pB({...Sf(t),label:v,validationBehavior:c},m,d),A=et({...t,values:{isEmpty:m.value==="",isDisabled:t.isDisabled||!1,isInvalid:T.isInvalid||!1,state:m},defaultClassName:"react-aria-SearchField"}),V=O0(t);return delete V.id,ee.createElement("div",{...V,...A,ref:e,slot:t.slot||void 0,"data-empty":m.value===""||void 0,"data-disabled":t.isDisabled||void 0,"data-invalid":T.isInvalid||void 0},ee.createElement(fn,{values:[[f1,{...g,ref:f}],[Xv,{...b,ref:d}],[Cf,S],[So,{slots:{description:C,errorMessage:P}}],[Jv,{isInvalid:T.isInvalid,isDisabled:t.isDisabled||!1}],[d1,T]]},A.children))}const SV=x.forwardRef($V);function CV(t){return t&&t.__esModule?t.default:t}const Pf=x.createContext(null),uw=x.createContext(null);function _V(t,e){[t,e]=lt(t,e,Pf);let{children:n,isDisabled:i=!1,isInvalid:a=!1,isRequired:c=!1}=t,d=x.useMemo(()=>typeof n=="function"?n({isOpen:!1,isDisabled:i,isInvalid:a,isRequired:c,isFocused:!1,isFocusVisible:!1,defaultChildren:null}):n,[n,i,a,c]);return ee.createElement(Yv,{content:d},f=>ee.createElement(PV,{props:t,collection:f,selectRef:e}))}function PV({props:t,selectRef:e,collection:n}){let{validationBehavior:i}=$o(Bs)||{};var a,c;let d=(c=(a=t.validationBehavior)!==null&&a!==void 0?a:i)!==null&&c!==void 0?c:"native",f=SB({...t,collection:n,children:void 0,validationBehavior:d}),{isFocusVisible:v,focusProps:m}=L2({within:!0}),g=x.useRef(null),[b,S]=Ks(),{labelProps:C,triggerProps:P,valueProps:T,menuProps:A,descriptionProps:V,errorMessageProps:R,...F}=vB({...Sf(t),label:S,validationBehavior:d},f,g),[N,z]=x.useState(null),U=x.useCallback(()=>{g.current&&z(g.current.offsetWidth+"px")},[g]);$5({ref:g,onResize:U});let le=x.useMemo(()=>({isOpen:f.isOpen,isFocused:f.isFocused,isFocusVisible:v,isDisabled:t.isDisabled||!1,isInvalid:F.isInvalid||!1,isRequired:t.isRequired||!1}),[f.isOpen,f.isFocused,v,t.isDisabled,F.isInvalid,t.isRequired]),D=et({...t,values:le,defaultClassName:"react-aria-Select"}),ie=O0(t);delete ie.id;let j=x.useRef(null);return ee.createElement(fn,{values:[[Pf,t],[uw,f],[cw,T],[f1,{...C,ref:b,elementType:"span"}],[Cf,{...P,ref:g,isPressed:f.isOpen}],[Co,f],[Vs,{trigger:"Select",triggerRef:g,scrollRef:j,placement:"bottom start",style:{"--trigger-width":N}}],[Qv,{...A,ref:j}],[p1,f],[So,{slots:{description:V,errorMessage:R}}],[d1,F]]},ee.createElement("div",{...ie,...D,...m,ref:e,slot:t.slot||void 0,"data-focused":f.isFocused||void 0,"data-focus-visible":v||void 0,"data-open":f.isOpen||void 0,"data-disabled":t.isDisabled||void 0,"data-invalid":F.isInvalid||void 0,"data-required":t.isRequired||void 0}),ee.createElement(mB,{state:f,triggerRef:g,label:S,name:t.name,isDisabled:t.isDisabled}))}const EV=x.forwardRef(_V),cw=x.createContext(null);function kV(t,e){var n,i;[t,e]=lt(t,e,cw);let a=x.useContext(uw),{placeholder:c}=$o(Pf),d=a.selectedKey!=null?a.collection.getItem(a.selectedKey):null,f=d==null?void 0:d.props.children;typeof f=="function"&&(f=f({isHovered:!1,isPressed:!1,isSelected:!1,isFocused:!1,isFocusVisible:!1,isDisabled:!1,selectionMode:"single",selectionBehavior:"toggle"}));let v=zs(CV(qx),"react-aria-components");var m,g;let b=et({...t,defaultChildren:f||c||v.format("selectPlaceholder"),defaultClassName:"react-aria-SelectValue",values:{selectedItem:(m=(n=a.selectedItem)===null||n===void 0?void 0:n.value)!==null&&m!==void 0?m:null,selectedText:(g=(i=a.selectedItem)===null||i===void 0?void 0:i.textValue)!==null&&g!==void 0?g:null,isPlaceholder:!d}}),S=O0(t);return ee.createElement("span",{ref:e,...S,...b,"data-placeholder":!d||void 0},ee.createElement(So.Provider,{value:void 0},b.children))}const TV=x.forwardRef(kV),MV=x.createContext(null);function AV(t,e){let{inputRef:n=null,...i}=t;[t,e]=lt(i,e,MV);let a=A2(j5(n,t.inputRef!==void 0?t.inputRef:null)),c=Wv(t),{labelProps:d,inputProps:f,isSelected:v,isDisabled:m,isReadOnly:g,isPressed:b}=IR({...Sf(t),children:typeof t.children=="function"?!0:t.children},c,a),{isFocused:S,isFocusVisible:C,focusProps:P}=L2(),T=t.isDisabled||t.isReadOnly,{hoverProps:A,isHovered:V}=Jn({...t,isDisabled:T}),R=et({...t,defaultClassName:"react-aria-Switch",values:{isSelected:v,isPressed:b,isHovered:V,isFocused:S,isFocusVisible:C,isDisabled:m,isReadOnly:g,state:c}}),F=O0(t);return delete F.id,ee.createElement("label",{...qe(F,d,A,R),ref:e,slot:t.slot||void 0,"data-selected":v||void 0,"data-pressed":b||void 0,"data-hovered":V||void 0,"data-focused":S||void 0,"data-focus-visible":C||void 0,"data-disabled":m||void 0,"data-readonly":g||void 0},ee.createElement(yf,{elementType:"span"},ee.createElement("input",{...qe(f,P),ref:a})),R.children)}const LV=x.forwardRef(AV),dw=x.createContext({});let DV=t=>{let{onHoverStart:e,onHoverChange:n,onHoverEnd:i,...a}=t;return a};function RV(t,e){[t,e]=lt(t,e,dw);let{hoverProps:n,isHovered:i}=Jn(t),{isFocused:a,isFocusVisible:c,focusProps:d}=L2({isTextInput:!0,autoFocus:t.autoFocus}),f=!!t["aria-invalid"]&&t["aria-invalid"]!=="false",v=et({...t,values:{isHovered:i,isFocused:a,isFocusVisible:c,isDisabled:t.disabled||!1,isInvalid:f},defaultClassName:"react-aria-TextArea"});return ee.createElement("textarea",{...qe(DV(t),d,n),...v,ref:e,"data-focused":a||void 0,"data-disabled":t.disabled||void 0,"data-hovered":i||void 0,"data-focus-visible":c||void 0,"data-invalid":f||void 0})}const BV=x.forwardRef(RV),VV=x.createContext(null);function IV(t,e){[t,e]=lt(t,e,VV);let{validationBehavior:n}=$o(Bs)||{};var i,a;let c=(a=(i=t.validationBehavior)!==null&&i!==void 0?i:n)!==null&&a!==void 0?a:"native",d=x.useRef(null),[f,v]=Ks(),[m,g]=x.useState("input"),{labelProps:b,inputProps:S,descriptionProps:C,errorMessageProps:P,...T}=_9({...Sf(t),inputElementType:m,label:v,validationBehavior:c},d),A=x.useCallback(F=>{d.current=F,F&&g(F instanceof HTMLTextAreaElement?"textarea":"input")},[]),V=et({...t,values:{isDisabled:t.isDisabled||!1,isInvalid:T.isInvalid,isReadOnly:t.isReadOnly||!1,isRequired:t.isRequired||!1},defaultClassName:"react-aria-TextField"}),R=O0(t);return delete R.id,ee.createElement("div",{...R,...V,ref:e,slot:t.slot||void 0,"data-disabled":t.isDisabled||void 0,"data-invalid":T.isInvalid||void 0,"data-readonly":t.isReadOnly||void 0,"data-required":t.isRequired||void 0},ee.createElement(fn,{values:[[f1,{...b,ref:f}],[Xv,{...S,ref:A}],[dw,{...S,ref:A}],[So,{slots:{description:C,errorMessage:P}}],[d1,T]]},V.children))}const FV=x.forwardRef(IV),ZV=x.createContext({}),nh=x.createContext(null),fw=x.createContext(null);function OV(t){let e=px(t),n=x.useRef(null),{triggerProps:i,tooltipProps:a}=yB(t,e,n);return ee.createElement(fn,{values:[[nh,e],[fw,{...a,triggerRef:n}]]},ee.createElement(LE,{...i,ref:n},t.children))}function NV({UNSTABLE_portalContainer:t,...e},n){[e,n]=lt(e,n,fw);let i=x.useContext(nh),a=px(e),c=e.isOpen!=null||e.defaultOpen!=null||!i?a:i,d=Z5(n,c.isOpen)||e.isExiting||!1;return!c.isOpen&&!d?null:ee.createElement(JD,{portalContainer:t},ee.createElement(zV,{...e,tooltipRef:n,isExiting:d}))}const HV=x.forwardRef(NV);function zV(t){let e=x.useContext(nh),n=x.useRef(null),[i,a]=x.useState(0);C0(()=>{n.current&&e.isOpen&&a(n.current.getBoundingClientRect().width)},[e.isOpen,n]);let{overlayProps:c,arrowProps:d,placement:f}=Ay({placement:t.placement||"top",targetRef:t.triggerRef,overlayRef:t.tooltipRef,offset:t.offset,crossOffset:t.crossOffset,isOpen:e.isOpen,arrowSize:i,arrowBoundaryOffset:t.arrowBoundaryOffset,shouldFlip:t.shouldFlip}),v=$f(t.tooltipRef,!!f)||t.isEntering||!1,m=et({...t,defaultClassName:"react-aria-Tooltip",values:{placement:f,isEntering:v,isExiting:t.isExiting,state:e}});t=qe(t,c);let{tooltipProps:g}=gB(t,e);return ee.createElement("div",{...g,ref:t.tooltipRef,...m,style:{...c.style,...m.style},"data-placement":f,"data-entering":v||void 0,"data-exiting":t.isExiting||void 0},ee.createElement(nw.Provider,{value:{...d,placement:f,ref:n}},m.children))}var pw={};pw={close:"إغلاق",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} إشعار`,other:()=>`${e.number(t.count)} إشعارات`})}.`};var vw={};vw={close:"Затвори",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} известие`,other:()=>`${e.number(t.count)} известия`})}.`};var hw={};hw={close:"Zavřít",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} oznámení`,other:()=>`${e.number(t.count)} oznámení`})}.`};var mw={};mw={close:"Luk",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} besked`,other:()=>`${e.number(t.count)} beskeder`})}.`};var gw={};gw={close:"Schließen",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} Benachrichtigung`,other:()=>`${e.number(t.count)} Benachrichtigungen`})}.`};var yw={};yw={close:"Κλείσιμο",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} ειδοποίηση`,other:()=>`${e.number(t.count)} ειδοποιήσεις`})}.`};var bw={};bw={close:"Close",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notification`,other:()=>`${e.number(t.count)} notifications`})}.`};var xw={};xw={close:"Cerrar",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notificación`,other:()=>`${e.number(t.count)} notificaciones`})}.`};var ww={};ww={close:"Sule",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} teatis`,other:()=>`${e.number(t.count)} teatist`})}.`};var $w={};$w={close:"Sulje",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} ilmoitus`,other:()=>`${e.number(t.count)} ilmoitusta`})}.`};var Sw={};Sw={close:"Fermer",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notification`,other:()=>`${e.number(t.count)} notifications`})}.`};var Cw={};Cw={close:"סגור",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} התראה`,other:()=>`${e.number(t.count)} התראות`})}.`};var _w={};_w={close:"Zatvori",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} obavijest`,other:()=>`${e.number(t.count)} obavijesti`})}.`};var Pw={};Pw={close:"Bezárás",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} értesítés`,other:()=>`${e.number(t.count)} értesítés`})}.`};var Ew={};Ew={close:"Chiudi",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notifica`,other:()=>`${e.number(t.count)} notifiche`})}.`};var kw={};kw={close:"閉じる",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} 個の通知`,other:()=>`${e.number(t.count)} 個の通知`})}。`};var Tw={};Tw={close:"닫기",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 알림`,other:()=>`${e.number(t.count)}개 알림`})}.`};var Mw={};Mw={close:"Uždaryti",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} pranešimas`,other:()=>`${e.number(t.count)} pranešimai`})}.`};var Aw={};Aw={close:"Aizvērt",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} paziņojums`,other:()=>`${e.number(t.count)} paziņojumi`})}.`};var Lw={};Lw={close:"Lukk",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} varsling`,other:()=>`${e.number(t.count)} varsler`})}.`};var Dw={};Dw={close:"Sluiten",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} melding`,other:()=>`${e.number(t.count)} meldingen`})}.`};var Rw={};Rw={close:"Zamknij",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} powiadomienie`,few:()=>`${e.number(t.count)} powiadomienia`,many:()=>`${e.number(t.count)} powiadomień`,other:()=>`${e.number(t.count)} powiadomienia`})}.`};var Bw={};Bw={close:"Fechar",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notificação`,other:()=>`${e.number(t.count)} notificações`})}.`};var Vw={};Vw={close:"Fechar",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notificação`,other:()=>`${e.number(t.count)} notificações`})}.`};var Iw={};Iw={close:"Închideţi",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} notificare`,other:()=>`${e.number(t.count)} notificări`})}.`};var Fw={};Fw={close:"Закрыть",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} уведомление`,other:()=>`${e.number(t.count)} уведомления`})}.`};var Zw={};Zw={close:"Zatvoriť",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} oznámenie`,few:()=>`${e.number(t.count)} oznámenia`,other:()=>`${e.number(t.count)} oznámení`})}.`};var Ow={};Ow={close:"Zapri",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} obvestilo`,two:()=>`${e.number(t.count)} obvestili`,few:()=>`${e.number(t.count)} obvestila`,other:()=>`${e.number(t.count)} obvestil`})}.`};var Nw={};Nw={close:"Zatvori",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} obaveštenje`,other:()=>`${e.number(t.count)} obaveštenja`})}.`};var Hw={};Hw={close:"Stäng",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} meddelande`,other:()=>`${e.number(t.count)} meddelanden`})}.`};var zw={};zw={close:"Kapat",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} bildirim`,other:()=>`${e.number(t.count)} bildirim`})}.`};var jw={};jw={close:"Закрити",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} сповіщення`,other:()=>`${e.number(t.count)} сповіщення`})}.`};var Kw={};Kw={close:"关闭",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} 个通知`,other:()=>`${e.number(t.count)} 个通知`})}。`};var Ww={};Ww={close:"關閉",notifications:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} 個通知`,other:()=>`${e.number(t.count)} 個通知`})}。`};var rh={};rh={"ar-AE":pw,"bg-BG":vw,"cs-CZ":hw,"da-DK":mw,"de-DE":gw,"el-GR":yw,"en-US":bw,"es-ES":xw,"et-EE":ww,"fi-FI":$w,"fr-FR":Sw,"he-IL":Cw,"hr-HR":_w,"hu-HU":Pw,"it-IT":Ew,"ja-JP":kw,"ko-KR":Tw,"lt-LT":Mw,"lv-LV":Aw,"nb-NO":Lw,"nl-NL":Dw,"pl-PL":Rw,"pt-BR":Bw,"pt-PT":Vw,"ro-RO":Iw,"ru-RU":Fw,"sk-SK":Zw,"sl-SI":Ow,"sr-SP":Nw,"sv-SE":Hw,"tr-TR":zw,"uk-UA":jw,"zh-CN":Kw,"zh-TW":Ww};function jV(t){return t&&t.__esModule?t.default:t}function KV(t,e,n){let{key:i,timer:a,timeout:c,animation:d}=t.toast;x.useEffect(()=>{if(a)return a.reset(c),()=>{a.pause()}},[a,c]);let[f,v]=ee.useState(!1);x.useEffect(()=>{(d==="entering"||d==="queued")&&v(!0)},[d]);let m=Qn(),g=w2(),b=zs(jV(rh),"@react-aria/toast");return{toastProps:{role:"alertdialog","aria-modal":"false","aria-label":t["aria-label"],"aria-labelledby":t["aria-labelledby"]||m,"aria-describedby":t["aria-describedby"]||g,"aria-details":t["aria-details"],"aria-hidden":d==="exiting"?"true":void 0,tabIndex:0},contentProps:{role:"alert","aria-atomic":"true",style:{visibility:f||d===null?"visible":"hidden"}},titleProps:{id:m},descriptionProps:{id:g},closeButtonProps:{"aria-label":b.format("close"),onPress:()=>e.close(i)}}}const Uw=1,b3=Symbol.for("react-aria-landmark-manager");function WV(t){return document.addEventListener("react-aria-landmark-manager-change",t),()=>document.removeEventListener("react-aria-landmark-manager-change",t)}function nm(){if(typeof document>"u")return null;let t=document[b3];return t&&t.version>=Uw?t:(document[b3]=new GV,document.dispatchEvent(new CustomEvent("react-aria-landmark-manager-change")),document[b3])}function UV(){return qv.useSyncExternalStore(WV,nm,nm)}class GV{setupIfNeeded(){this.isListening||(document.addEventListener("keydown",this.f6Handler,{capture:!0}),document.addEventListener("focusin",this.focusinHandler,{capture:!0}),document.addEventListener("focusout",this.focusoutHandler,{capture:!0}),this.isListening=!0)}teardownIfNeeded(){!this.isListening||this.landmarks.length>0||this.refCount>0||(document.removeEventListener("keydown",this.f6Handler,{capture:!0}),document.removeEventListener("focusin",this.focusinHandler,{capture:!0}),document.removeEventListener("focusout",this.focusoutHandler,{capture:!0}),this.isListening=!1)}focusLandmark(e,n){var i,a;(a=this.landmarks.find(c=>c.ref.current===e))===null||a===void 0||(i=a.focus)===null||i===void 0||i.call(a,n)}getLandmarksByRole(e){return new Set(this.landmarks.filter(n=>n.role===e))}getLandmarkByRole(e){return this.landmarks.find(n=>n.role===e)}addLandmark(e){if(this.setupIfNeeded(),this.landmarks.find(a=>a.ref===e.ref)||!e.ref.current)return;if(this.landmarks.filter(a=>a.role==="main").length>1&&console.error('Page can contain no more than one landmark with the role "main".'),this.landmarks.length===0){this.landmarks=[e],this.checkLabels(e.role);return}let n=0,i=this.landmarks.length-1;for(;n<=i;){let a=Math.floor((n+i)/2),c=e.ref.current.compareDocumentPosition(this.landmarks[a].ref.current);!!(c&Node.DOCUMENT_POSITION_PRECEDING||c&Node.DOCUMENT_POSITION_CONTAINS)?n=a+1:i=a-1}this.landmarks.splice(n,0,e),this.checkLabels(e.role)}updateLandmark(e){let n=this.landmarks.findIndex(i=>i.ref===e.ref);n>=0&&(this.landmarks[n]={...this.landmarks[n],...e},this.checkLabels(this.landmarks[n].role))}removeLandmark(e){this.landmarks=this.landmarks.filter(n=>n.ref!==e),this.teardownIfNeeded()}checkLabels(e){let n=this.getLandmarksByRole(e);if(n.size>1){let i=[...n].filter(a=>!a.label);if(i.length>0)console.warn(`Page contains more than one landmark with the '${e}' role. If two or more landmarks on a page share the same role, all must be labeled with an aria-label or aria-labelledby attribute: `,i.map(a=>a.ref.current));else{let a=[...n].map(d=>d.label);a.filter((d,f)=>a.indexOf(d)!==f).forEach(d=>{console.warn(`Page contains more than one landmark with the '${e}' role and '${d}' label. If two or more landmarks on a page share the same role, they must have unique labels: `,[...n].filter(f=>f.label===d).map(f=>f.ref.current))})}}}closestLandmark(e){let n=new Map(this.landmarks.map(a=>[a.ref.current,a])),i=e;for(;i&&!n.has(i)&&i!==document.body&&i.parentElement;)i=i.parentElement;return n.get(i)}getNextLandmark(e,{backward:n}){var i;let a=this.closestLandmark(e),c=n?this.landmarks.length-1:0;a&&(c=this.landmarks.indexOf(a)+(n?-1:1));let d=()=>{if(c<0){if(!e.dispatchEvent(new CustomEvent("react-aria-landmark-navigation",{detail:{direction:"backward"},bubbles:!0,cancelable:!0})))return!0;c=this.landmarks.length-1}else if(c>=this.landmarks.length){if(!e.dispatchEvent(new CustomEvent("react-aria-landmark-navigation",{detail:{direction:"forward"},bubbles:!0,cancelable:!0})))return!0;c=0}return c<0||c>=this.landmarks.length};if(d())return;let f=c;for(;!((i=this.landmarks[c].ref.current)===null||i===void 0)&&i.closest("[aria-hidden=true]");){if(c+=n?-1:1,d())return;if(c===f)break}return this.landmarks[c]}f6Handler(e){e.key==="F6"&&(e.altKey?this.focusMain():this.navigate(e.target,e.shiftKey))&&(e.preventDefault(),e.stopPropagation())}focusMain(){let e=this.getLandmarkByRole("main");return e&&e.ref.current&&document.contains(e.ref.current)?(this.focusLandmark(e.ref.current,"forward"),!0):!1}navigate(e,n){let i=this.getNextLandmark(e,{backward:n});if(!i)return!1;if(i.lastFocused){let a=i.lastFocused;if(document.body.contains(a))return a.focus(),!0}return i.ref.current&&document.contains(i.ref.current)?(this.focusLandmark(i.ref.current,n?"backward":"forward"),!0):!1}focusinHandler(e){let n=this.closestLandmark(e.target);n&&n.ref.current!==e.target&&this.updateLandmark({ref:n.ref,lastFocused:e.target});let i=e.relatedTarget;if(i){let a=this.closestLandmark(i);a&&a.ref.current===i&&a.blur()}}focusoutHandler(e){let n=e.target,i=e.relatedTarget;if(!i||i===document){let a=this.closestLandmark(n);a&&a.ref.current===n&&a.blur()}}createLandmarkController(){let e=this;return e.refCount++,e.setupIfNeeded(),{navigate(n,i){let a=(i==null?void 0:i.from)||document.activeElement;return e.navigate(a,n==="backward")},focusNext(n){let i=(n==null?void 0:n.from)||document.activeElement;return e.navigate(i,!1)},focusPrevious(n){let i=(n==null?void 0:n.from)||document.activeElement;return e.navigate(i,!0)},focusMain(){return e.focusMain()},dispose(){e&&(e.refCount--,e.teardownIfNeeded(),e=null)}}}registerLandmark(e){return this.landmarks.find(n=>n.ref===e.ref)?this.updateLandmark(e):this.addLandmark(e),()=>this.removeLandmark(e.ref)}constructor(){this.landmarks=[],this.isListening=!1,this.refCount=0,this.version=Uw,this.f6Handler=this.f6Handler.bind(this),this.focusinHandler=this.focusinHandler.bind(this),this.focusoutHandler=this.focusoutHandler.bind(this)}}function qV(t,e){const{role:n,"aria-label":i,"aria-labelledby":a,focus:c}=t;let d=UV(),f=i||a,[v,m]=x.useState(!1),g=x.useCallback(()=>{m(!0)},[m]),b=x.useCallback(()=>{m(!1)},[m]);return C0(()=>{if(d)return d.registerLandmark({ref:e,label:f,role:n,focus:c||g,blur:b})},[d,f,e,n,c,g,b]),x.useEffect(()=>{var S;v&&((S=e.current)===null||S===void 0||S.focus())},[v,e]),{landmarkProps:{role:n,tabIndex:v?-1:void 0,"aria-label":i,"aria-labelledby":a}}}function YV(t){return t&&t.__esModule?t.default:t}function XV(t,e,n){let i=zs(YV(rh),"@react-aria/toast"),{landmarkProps:a}=qV({role:"region","aria-label":t["aria-label"]||i.format("notifications",{count:e.visibleToasts.length})},n),{hoverProps:c}=Jn({onHoverStart:e.pauseAll,onHoverEnd:e.resumeAll}),d=x.useRef([]),f=x.useRef(e.visibleToasts),v=x.useRef(null);C0(()=>{if(v.current===-1||e.visibleToasts.length===0){d.current=[],f.current=e.visibleToasts;return}if(d.current=[...n.current.querySelectorAll('[role="alertdialog"]')],f.current.length===e.visibleToasts.length&&e.visibleToasts.every((C,P)=>C.key===f.current[P].key)){f.current=e.visibleToasts;return}let b=f.current.map((C,P)=>({...C,i:P,isRemoved:!e.visibleToasts.some(T=>C.key===T.key)})),S=b.findIndex(C=>C.i===v.current);if(S>-1){let C=0,P,T;for(;C<=S;)b[C].isRemoved||(T=Math.max(0,C-1)),C++;for(;C=0&&T=0&&P{e.pauseAll(),m.current=b.relatedTarget},onBlurWithin:()=>{e.resumeAll(),m.current=null}});return x.useEffect(()=>{e.visibleToasts.length===0&&m.current&&document.body.contains(m.current)&&(Ts()==="pointer"?qn(m.current):m.current.focus(),m.current=null)},[n,e.visibleToasts.length]),x.useEffect(()=>()=>{m.current&&document.body.contains(m.current)&&(Ts()==="pointer"?qn(m.current):m.current.focus(),m.current=null)},[n]),{regionProps:qe(a,c,g,{tabIndex:-1,"data-react-aria-top-layer":!0,onFocus:b=>{let S=b.target.closest('[role="alertdialog"]');v.current=d.current.findIndex(C=>C===S)},onBlur:()=>{v.current=-1}})}}function QV(t){let e=x.useCallback(a=>t.subscribe(a),[t]),n=x.useCallback(()=>t.visibleToasts,[t]);return{visibleToasts:qv.useSyncExternalStore(e,n,n),add:(a,c)=>t.add(a,c),close:a=>t.close(a),remove:a=>t.remove(a),pauseAll:()=>t.pauseAll(),resumeAll:()=>t.resumeAll()}}class Gw{subscribe(e){return this.subscriptions.add(e),()=>this.subscriptions.delete(e)}add(e,n={}){let i=Math.random().toString(36),a={...n,content:e,key:i,timer:n.timeout?new JV(()=>this.close(i),n.timeout):null},c=0,d=this.queue.length;for(;c(this.queue[v].priority||0)?d=v:c=v+1}this.queue.splice(c,0,a),a.animation=cc.key===e);if(n>=0){var i,a;(i=(a=this.queue[n]).onClose)===null||i===void 0||i.call(a),this.queue.splice(n,1)}this.updateVisibleToasts({action:"close",key:e})}remove(e){this.updateVisibleToasts({action:"remove",key:e})}updateVisibleToasts(e){let{action:n,key:i}=e,a=this.queue.slice(0,this.maxVisibleToasts);if(n==="add"&&this.hasExitAnimation){let c=this.visibleToasts.filter(d=>!a.some(f=>d.key===f.key)).map(d=>({...d,animation:"exiting"}));this.visibleToasts=c.concat(a).sort((d,f)=>f.priority-d.priority)}else n==="close"&&this.hasExitAnimation?this.visibleToasts=this.visibleToasts.map(c=>c.key!==i?c:{...c,animation:"exiting"}):this.visibleToasts=a;for(let c of this.subscriptions)c()}pauseAll(){for(let e of this.visibleToasts)e.timer&&e.timer.pause()}resumeAll(){for(let e of this.visibleToasts)e.timer&&e.timer.resume()}constructor(e){this.queue=[],this.subscriptions=new Set,this.visibleToasts=[];var n;this.maxVisibleToasts=(n=e==null?void 0:e.maxVisibleToasts)!==null&&n!==void 0?n:1;var i;this.hasExitAnimation=(i=e==null?void 0:e.hasExitAnimation)!==null&&i!==void 0?i:!1}}class JV{reset(e){this.remaining=e,this.resume()}pause(){this.timerId!=null&&(clearTimeout(this.timerId),this.timerId=null,this.remaining-=Date.now()-this.startTime)}resume(){this.remaining<=0||(this.startTime=Date.now(),this.timerId=setTimeout(()=>{this.timerId=null,this.remaining=0,this.callback()},this.remaining))}constructor(e,n){this.remaining=n,this.callback=e}}const eI="DJIQHa_base",tI="DJIQHa_minimal",x3={base:eI,default:"DJIQHa_default",minimal:tI},Ef=E0(x3.base,{variants:{variant:{default:x3.default,minimal:x3.minimal}},defaultVariants:{variant:"default"}}),nI=({variant:t="default",...e},n)=>k.jsx(OB,{...e,ref:n,className:Z0(e.className,(i,a)=>Ef({...a,variant:t,className:i}))}),qw=x.forwardRef(nI),rI="C_Feta_base",iI="C_Feta_defaultFlair",oI="C_Feta_destructive",lI="C_Feta_invalid",aI="C_Feta_large",sI="C_Feta_medium",uI="C_Feta_minimal",cI="C_Feta_minimalFlair",dI="C_Feta_primary",fI="C_Feta_primaryFlair",pI="C_Feta_select",vI="C_Feta_small",Gn={base:rI,default:"C_Feta_default",defaultFlair:iI,destructive:oI,invalid:lI,large:aI,medium:sI,minimal:uI,minimalFlair:cI,primary:dI,primaryFlair:fI,select:pI,small:vI},Yw=E0(Gn.base,{variants:{size:{small:Gn.small,medium:Gn.medium,large:Gn.large},variant:{default:Gn.default,primary:Gn.primary,destructive:Gn.destructive,minimal:Gn.minimal,primaryFlair:Gn.primaryFlair,defaultFlair:Gn.defaultFlair,minimalFlair:Gn.minimalFlair}},defaultVariants:{size:"medium",variant:"default"}}),hI=({size:t="medium",variant:e="default",...n},i)=>{const a=$o(Pf);return k.jsx(dx,{...n,ref:i,className:Z0(n.className,(c,d)=>a?Rs(Ef(),Gn.select,a.isInvalid&&Gn.invalid,c):Yw({...d,size:t,variant:e,className:c}))})},Yn=x.forwardRef(hI),mI="_4yLvRa_base",gI="_4yLvRa_medium",yI="_4yLvRa_small",w3={base:mI,medium:gI,small:yI},bI=E0(w3.base,{variants:{size:{small:w3.small,medium:w3.medium}},defaultVariants:{size:"medium"}}),xI=({size:t="medium",variant:e="default",icon:n,...i},a)=>k.jsx(dx,{...i,ref:a,className:Z0(i.className,(c,d)=>Rs(Yw({...d,size:t,variant:e,className:c}),bI({size:t}))),children:k.jsx(K0,{name:n,size:"small","aria-hidden":!0})}),ih=x.forwardRef(xI),wI="kblPOW_base",$I="kblPOW_basic",SI="kblPOW_compact",CI="kblPOW_large",s5={base:wI,basic:$I,compact:SI,large:CI},_I=E0(s5.base,{variants:{spacing:{basic:s5.basic,compact:s5.compact,large:s5.large}},defaultVariants:{spacing:"basic"}}),PI=({spacing:t="basic",...e},n)=>k.jsx(tw,{...e,ref:n,className:Z0(e.className,(i,a)=>_I({...a,spacing:t,className:i})),children:Z0(e.children,(i,{isDisabled:a})=>k.jsx(fn,{values:[[Cf,{isDisabled:a}],[ZV,{isDisabled:a}]],children:i}))}),Xw=x.forwardRef(PI),EI="_4zkhoG_box",kI="_4zkhoG_checkbox",TI="_4zkhoG_container",MI="_4zkhoG_icon",e1={box:EI,checkbox:kI,container:TI,icon:MI},Qw=E0(e1.checkbox),AI=E0(e1.box),Jw=({isSelected:t,isIndeterminate:e})=>k.jsx("div",{className:AI(),children:e?k.jsx(K0,{name:"minus",size:"small",className:e1.icon}):t?k.jsx(K0,{name:"check",size:"small",className:e1.icon}):null}),LI=(t,e)=>k.jsx(IB,{...t,ref:e,className:Z0(t.className,(n,i)=>Qw({...i,className:n})),children:Z0(t.children,(n,{isSelected:i,isIndeterminate:a})=>k.jsxs(k.Fragment,{children:[k.jsx("div",{className:e1.container,children:k.jsx(Jw,{isSelected:i,isIndeterminate:a})}),n]}))}),DI=x.forwardRef(LI),RI=x.createContext({}),BI="mO5CFq_dialog",VI={dialog:BI},II=E0(VI.dialog),FI=({className:t,...e},n)=>{const i=w2();return k.jsx(rV,{...e,ref:n,className:II({className:t}),"aria-describedby":e["aria-describedby"]||i,children:Z0(e.children,a=>k.jsx(fn,{values:[[So,{slots:{subtitle:{id:i,elementType:"h3"}}}]],children:a}))})},e$=x.forwardRef(FI),ZI="NTUORW_error",OI={error:ZI},NI=E0(OI.error),HI=(t,e)=>k.jsx(MB,{...t,ref:e,className:Z0(t.className,(n,i)=>NI({...i,className:n}))}),t$=x.forwardRef(HI),zI="XLBffq_group",jI={group:zI},KI=E0(jI.group),WI=({variant:t="default",...e},n)=>k.jsx(tw,{...e,ref:n,className:Z0(e.className,(i,a)=>Rs(Ef({variant:t}),KI({...a,className:i})))}),UI=x.forwardRef(WI),GI="hZ0aYW_label",qI={label:GI},YI=E0(qI.label),XI=({className:t,...e},n)=>k.jsx(RB,{...e,ref:n,className:YI({className:t})}),v1=x.forwardRef(XI),QI="_6iLpCG_box lH5Eaq_menu",JI="_6iLpCG_content lH5Eaq_content",eF="_6iLpCG_item lH5Eaq_item",oh={box:QI,content:JI,item:eF},tF=E0(oh.box),nF=E0(oh.item),rF=(t,e)=>k.jsx(WB,{...t,ref:e,className:Z0(t.className,(n,i)=>tF({...i,className:n}))}),n$=x.forwardRef(rF),iF=(t,e)=>{const n=t.textValue||(typeof t.children=="string"?t.children:void 0);return k.jsx(GB,{textValue:n,...t,ref:e,className:Z0(t.className,(i,a)=>nF({...a,className:i})),children:Z0(t.children,(i,{isSelected:a})=>k.jsxs(k.Fragment,{children:[k.jsx("span",{className:oh.content,children:i}),a&&k.jsx(K0,{name:"check",size:"medium"})]}))})},r$=x.forwardRef(iF),oF="qZpqmq_circle",lF="qZpqmq_icon",aF="qZpqmq_radio",lh={circle:oF,icon:lF,radio:aF},sF=E0(lh.radio),uF=E0(lh.circle),cF=({isSelected:t})=>k.jsx("div",{className:uF(),children:t?k.jsx(K0,{name:"circle",className:lh.icon}):null}),dF="C73R2W_content",fF="C73R2W_destructive",pF="C73R2W_item",vF="C73R2W_menu",Oc={content:dF,destructive:fF,item:pF,menu:vF},hF=E0(Oc.menu),mF=E0(Oc.item,{variants:{variant:{default:Oc.default,destructive:Oc.destructive}},defaultVariants:{variant:"default"}}),gF=({className:t,...e},n)=>k.jsx(cV,{...e,ref:n,className:hF({className:t})}),yF=x.forwardRef(gF),bF=({variant:t="default",...e},n)=>k.jsx(fV,{...e,ref:n,className:Z0(e.className,(i,a)=>mF({...a,variant:t,className:i})),children:Z0(e.children,(i,{selectionMode:a,isSelected:c,hasSubmenu:d,isDisabled:f})=>k.jsxs(k.Fragment,{children:[a==="multiple"&&k.jsx("div",{className:Qw(),"data-selected":c||void 0,"data-disabled":f||void 0,children:k.jsx(Jw,{isSelected:c})}),a==="single"&&k.jsx("div",{className:sF(),"data-disabled":f||void 0,children:k.jsx(cF,{isSelected:c})}),k.jsx("span",{className:Oc.content,children:i}),d&&k.jsx(K0,{name:"chevron-right",size:"small"})]}))}),xF=x.forwardRef(bF),wF="bYbWKG_base",$F="bYbWKG_drawer",SF="bYbWKG_large",CF="bYbWKG_medium",_F="bYbWKG_overlay",PF="bYbWKG_small",El={base:wF,default:"bYbWKG_default",drawer:$F,large:SF,medium:CF,overlay:_F,small:PF},EF=E0(El.base,{variants:{size:{small:El.small,medium:El.medium,large:El.large},variant:{default:El.default,drawer:El.drawer}},defaultVariants:{size:"medium",variant:"default"}}),kF=E0(El.overlay),TF=({size:t="medium",variant:e="default",...n},i)=>k.jsx(hV,{...n,ref:i,className:Z0(n.className,(a,c)=>EF({...c,size:t,variant:e,className:a}))}),i$=x.forwardRef(TF),MF=({isDismissable:t=!0,...e},n)=>k.jsx(sw,{isDismissable:t,...e,ref:n,className:Z0(e.className,(i,a)=>kF({...a,className:i}))}),o$=x.forwardRef(MF),AF="lKzIqa_popover",l$={popover:AF},LF=E0(l$.popover),DF=(t,e)=>{const n=x.useContext(RI);return k.jsx(eV,{...n,...t,offset:4,crossOffset:0,ref:e,className:Z0(t.className,(i,a)=>LF({...a,className:i}))})},a$=x.forwardRef(DF),RF="wytVOa_base",BF="wytVOa_indeterminate",VF="wytVOa_innerCircle",IF="wytVOa_large",FF="wytVOa_medium",ZF="wytVOa_outerCircle",OF="wytVOa_progress",NF="wytVOa_small",uo={base:RF,indeterminate:BF,innerCircle:VF,large:IF,medium:FF,outerCircle:ZF,progress:OF,small:NF},HF=E0(uo.progress),zF=E0(uo.base,{variants:{size:{small:uo.small,medium:uo.medium,large:uo.large}},defaultVariants:{size:"small"}}),jF=({size:t="small",...e},n)=>{const d=24*Math.PI;return k.jsx(xV,{...e,ref:n,className:Z0(e.className,(f,v)=>HF({...v,className:f})),children:({percentage:f,isIndeterminate:v})=>k.jsxs("svg",{viewBox:"0 0 32 32",fill:"none",strokeWidth:4,className:Rs(zF({size:t}),v&&uo.indeterminate),children:[k.jsx("circle",{cx:16,cy:16,r:12,strokeWidth:4,className:uo.outerCircle}),k.jsx("circle",{cx:16,cy:16,r:12,strokeDasharray:`${d} ${d}`,strokeDashoffset:d-(v?.34:f||0/100)*d,transform:"rotate(-90 16 16)",className:uo.innerCircle})]})})},h1=x.forwardRef(jF),KF="adZH_q_search",WF={search:KF},UF=E0(WF.search),GF=(t,e)=>k.jsx(SV,{...t,ref:e,className:Z0(t.className,(n,i)=>UF({...i,className:n}))}),qF=x.forwardRef(GF),YF="VIpzwq_select",XF="VIpzwq_value",s$={select:YF,value:XF},QF=E0(s$.select),JF=E0(s$.value),eZ=(t,e)=>k.jsx(EV,{...t,ref:e,className:Z0(t.className,(n,i)=>QF({...i,className:n}))}),tZ=x.forwardRef(eZ),nZ=(t,e)=>k.jsx(TV,{...t,ref:e,className:Z0(t.className,(n,i)=>JF({...i,className:n}))}),rm=x.forwardRef(nZ),rZ="K81Z_G_text",iZ={text:rZ},oZ=E0(iZ.text),lZ=({className:t,...e},n)=>k.jsx(fx,{...e,ref:n,className:oZ({className:t})}),kf=x.forwardRef(lZ),aZ=({variant:t="default",...e},n)=>k.jsx(BV,{...e,ref:n,className:Z0(e.className,(i,a)=>Ef({...a,variant:t,className:i}))}),u$=x.forwardRef(aZ),sZ="dvJ4qG_field",uZ={field:sZ},cZ=E0(uZ.field),dZ=(t,e)=>k.jsx(FV,{...t,ref:e,className:Z0(t.className,(n,i)=>cZ({...i,className:n})),children:Z0(t.children,(n,{isInvalid:i,isDisabled:a})=>k.jsx(fn,{values:[[Jv,{isInvalid:i,isDisabled:a}]],children:n}))}),c$=x.forwardRef(dZ),fZ="iPUTXW_bottom",pZ="iPUTXW_content",vZ="iPUTXW_description",hZ="iPUTXW_error",mZ="iPUTXW_icon",gZ="iPUTXW_info",yZ="iPUTXW_region",bZ="iPUTXW_right",xZ="iPUTXW_snackbar",wZ="iPUTXW_success",$Z="iPUTXW_title",SZ="iPUTXW_toast",CZ="iPUTXW_warning",Ln={bottom:fZ,content:pZ,default:"iPUTXW_default",description:vZ,error:hZ,icon:mZ,info:gZ,region:yZ,right:bZ,snackbar:xZ,success:wZ,title:$Z,toast:SZ,warning:CZ},_Z=t=>{const[e,n]=x.useState(!1);return x.useEffect(()=>{if(typeof window<"u"){const i=window.matchMedia(t);n(i.matches);const a=c=>{n(c.matches)};return i.addEventListener("change",a),()=>{i.removeEventListener("change",a)}}},[t]),e},PZ=E0(Ln.region,{variants:{placement:{bottom:Ln.bottom,right:Ln.right}},defaultVariants:{placement:"bottom"}}),EZ=E0(Ln.icon,{variants:{status:{error:Ln.error,info:Ln.info,success:Ln.success,warning:Ln.warning}},defaultVariants:{status:"info"}}),kZ=E0(Ln.toast,{variants:{variant:{default:Ln.default,snackbar:Ln.snackbar}},defaultVariants:{variant:"default"}}),TZ=({state:t,placement:e="bottom",...n})=>{const i=x.useRef(null),{regionProps:a}=XV(n,t,i);return k.jsx("div",{...a,ref:i,className:PZ({placement:e}),children:t.visibleToasts.map(c=>k.jsx(MZ,{toast:c,state:t,variant:e==="bottom"?"default":"snackbar"},c.key))})},MZ=({state:t,variant:e="default",...n})=>{const i=x.useRef(null),{toastProps:a,contentProps:c,titleProps:d,descriptionProps:f,closeButtonProps:v}=KV(n,t),m=_Z("(prefers-reduced-motion: no-preference)"),{isFocusVisible:g,focusProps:b}=L2(),S=n.toast.content,{children:C,status:P,title:T,description:A,action:V}=S,R=V&&x.cloneElement(V,qe(V.props,{onPress:()=>t.close(n.toast.key)}));return x.useEffect(()=>{m===!1&&n.toast.animation==="exiting"&&t.remove(n.toast.key)},[m,n.toast,t]),k.jsxs("div",{"data-theme":"dark",...qe(a,b),ref:i,className:kZ({variant:e}),"data-animation":n.toast.animation,"data-focus-visible":g||void 0,onAnimationEnd:()=>{n.toast.animation==="exiting"&&t.remove(n.toast.key)},children:[k.jsx(Em,{kind:P||"info",className:EZ({status:P})}),k.jsx("div",{...c,className:Ln.content,children:e==="default"?k.jsx("div",{...d,children:C}):k.jsxs(k.Fragment,{children:[k.jsx("div",{...d,className:Ln.title,children:T}),k.jsxs("div",{...f,className:Ln.description,children:[A,R&&" ",R]})]})}),k.jsx(ih,{"aria-label":"Close",...v,children:void 0,icon:"cancel",variant:"minimal",size:"small"})]})},m5=new Gw({maxVisibleToasts:5,hasExitAnimation:!0});new Gw({maxVisibleToasts:5,hasExitAnimation:!0});const $3=6e3,im={info:(t,e)=>m5.add({children:t,status:"info"},{...e,timeout:$3}),success:(t,e)=>m5.add({children:t,status:"success"},{...e,timeout:$3}),warning:(t,e)=>m5.add({children:t,status:"warning"},{...e,timeout:$3})},AZ=t=>{const e=QV(m5);return e.visibleToasts.length>0?Is.createPortal(k.jsx(TZ,{...t,state:e,placement:"bottom"}),document.body):null},LZ="gdNzta_tooltip",om={tooltip:LZ},DZ=E0(om.base,{variants:{variant:{default:om.tooltip,popover:l$.popover}},defaultVariants:{variant:"default"}}),RZ=({variant:t="default",...e},n)=>k.jsx(HV,{...e,offset:4,crossOffset:0,ref:n,className:Z0(e.className,(i,a)=>DZ({...a,variant:t,className:i})),"data-trigger":t==="popover"?"DialogTrigger":void 0}),Vl=x.forwardRef(RZ),Il=t=>k.jsx(OV,{delay:500,...t,closeDelay:250}),BZ=({onPress:t})=>k.jsxs(Il,{children:[k.jsx(Yn,{onPress:t,children:k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"flag",size:"small"}),k.jsx("span",{children:"Flags"})]})})}),k.jsx(Vl,{children:"View and edit flags for the selected project"})]}),VZ=({onPress:t})=>k.jsxs(Il,{children:[k.jsx(Yn,{onPress:t,children:k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"play",size:"small"}),k.jsx("span",{children:"Events"})]})})}),k.jsx(Vl,{children:"View events"})]}),IZ={borderRadius:{regular:"0.1875rem"}},FZ="",P2=t=>`${FZ}${t}`,Tp=t=>Object.keys(t).sort((e,n)=>e.localeCompare(n)).reduce((e,n)=>(e[n]=t[n],e),{});var Ac={exports:{}};/** * @license * Lodash * Copyright OpenJS Foundation and other contributors * Released under MIT license * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */var ZZ=Ac.exports,lm;function OZ(){return lm||(lm=1,function(t,e){(function(){var n,i="4.17.21",a=200,c="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",d="Expected a function",f="Invalid `variable` option passed into `_.template`",v="__lodash_hash_undefined__",m=500,g="__lodash_placeholder__",b=1,S=2,C=4,P=1,T=2,A=1,V=2,R=4,F=8,N=16,z=32,U=64,le=128,D=256,ie=512,j=30,X="...",xe=800,G=16,Q=1,he=2,_e=3,se=1/0,fe=9007199254740991,Pe=17976931348623157e292,ae=NaN,H=4294967295,ce=H-1,oe=H>>>1,q=[["ary",le],["bind",A],["bindKey",V],["curry",F],["curryRight",N],["flip",ie],["partial",z],["partialRight",U],["rearg",D]],ue="[object Arguments]",$e="[object Array]",Ee="[object AsyncFunction]",Se="[object Boolean]",me="[object Date]",Be="[object DOMException]",ke="[object Error]",ze="[object Function]",Ye="[object GeneratorFunction]",g0="[object Map]",k0="[object Number]",l0="[object Null]",w0="[object Object]",r0="[object Promise]",a0="[object Proxy]",tt="[object RegExp]",y0="[object Set]",d0="[object String]",De="[object Symbol]",i0="[object Undefined]",Ze="[object WeakMap]",q0="[object WeakSet]",$0="[object ArrayBuffer]",W0="[object DataView]",jt="[object Float32Array]",Kt="[object Float64Array]",e0="[object Int8Array]",c0="[object Int16Array]",er="[object Int32Array]",St="[object Uint8Array]",Ur="[object Uint8ClampedArray]",pn="[object Uint16Array]",Gr="[object Uint32Array]",Ws=/\b__p \+= '';/g,Us=/\b(__p \+=) '' \+/g,Gs=/(__e\(.*?\)|\b__t\)) \+\n'';/g,D2=/&(?:amp|lt|gt|quot|#39);/g,R2=/[&<>"']/g,m1=RegExp(D2.source),g1=RegExp(R2.source),y1=/<%-([\s\S]+?)%>/g,b1=/<%([\s\S]+?)%>/g,qs=/<%=([\s\S]+?)%>/g,Ys=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,x1=/^\w*$/,_o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Po=/[\\^$.*+?()[\]{}|]/g,Eo=RegExp(Po.source),Xs=/^\s+/,ko=/\s/,Fl=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Zl=/\{\n\/\* \[wrapped with (.+)\] \*/,Qs=/,? & /,Tf=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Mf=/[()=,{}\[\]\/\s]/,Af=/\\(\\)?/g,B2=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Js=/\w*$/,w1=/^[-+]0x[0-9a-f]+$/i,Lf=/^0b[01]+$/i,$1=/^\[object .+?Constructor\]$/,S1=/^0o[0-7]+$/i,C1=/^(?:0|[1-9]\d*)$/,_1=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Ol=/($^)/,Df=/['\n\r\u2028\u2029\\]/g,R0="\\ud800-\\udfff",Rf="\\u0300-\\u036f",eu="\\ufe20-\\ufe2f",P1="\\u20d0-\\u20ff",To=Rf+eu+P1,E1="\\u2700-\\u27bf",tu="a-z\\xdf-\\xf6\\xf8-\\xff",Nl="\\xac\\xb1\\xd7\\xf7",tr="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Bf="\\u2000-\\u206f",Bn=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",k1="A-Z\\xc0-\\xd6\\xd8-\\xde",T1="\\ufe0e\\ufe0f",M1=Nl+tr+Bf+Bn,wi="['’]",Hl="["+R0+"]",$i="["+M1+"]",V2="["+To+"]",A1="\\d+",Vf="["+E1+"]",zl="["+tu+"]",nu="[^"+R0+M1+A1+E1+tu+k1+"]",Mo="\\ud83c[\\udffb-\\udfff]",Ao="(?:"+V2+"|"+Mo+")",L1="[^"+R0+"]",Lo="(?:\\ud83c[\\udde6-\\uddff]){2}",b0="[\\ud800-\\udbff][\\udc00-\\udfff]",I2="["+k1+"]",ru="\\u200d",jl="(?:"+zl+"|"+nu+")",D1="(?:"+I2+"|"+nu+")",iu="(?:"+wi+"(?:d|ll|m|re|s|t|ve))?",ou="(?:"+wi+"(?:D|LL|M|RE|S|T|VE))?",Kl=Ao+"?",Do="["+T1+"]?",qr="(?:"+ru+"(?:"+[L1,Lo,b0].join("|")+")"+Do+Kl+")*",Yr="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Xr="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Si=Do+Kl+qr,Ro="(?:"+[Vf,Lo,b0].join("|")+")"+Si,Qr="(?:"+[L1+V2+"?",V2,Lo,b0,Hl].join("|")+")",If=RegExp(wi,"g"),R1=RegExp(V2,"g"),F2=RegExp(Mo+"(?="+Mo+")|"+Qr+Si,"g"),Ff=RegExp([I2+"?"+zl+"+"+iu+"(?="+[$i,I2,"$"].join("|")+")",D1+"+"+ou+"(?="+[$i,I2+jl,"$"].join("|")+")",I2+"?"+jl+"+"+iu,I2+"+"+ou,Xr,Yr,A1,Ro].join("|"),"g"),B1=RegExp("["+ru+R0+To+T1+"]"),Wl=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,V1=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Zf=-1,S0={};S0[jt]=S0[Kt]=S0[e0]=S0[c0]=S0[er]=S0[St]=S0[Ur]=S0[pn]=S0[Gr]=!0,S0[ue]=S0[$e]=S0[$0]=S0[Se]=S0[W0]=S0[me]=S0[ke]=S0[ze]=S0[g0]=S0[k0]=S0[w0]=S0[tt]=S0[y0]=S0[d0]=S0[Ze]=!1;var x0={};x0[ue]=x0[$e]=x0[$0]=x0[W0]=x0[Se]=x0[me]=x0[jt]=x0[Kt]=x0[e0]=x0[c0]=x0[er]=x0[g0]=x0[k0]=x0[w0]=x0[tt]=x0[y0]=x0[d0]=x0[De]=x0[St]=x0[Ur]=x0[pn]=x0[Gr]=!0,x0[ke]=x0[ze]=x0[Ze]=!1;var Ci={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},Ul={"&":"&","<":"<",">":">",'"':""","'":"'"},Of={"&":"&","<":"<",">":">",""":'"',"'":"'"},Nf={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},lu=parseFloat,Gl=parseInt,ql=typeof so=="object"&&so&&so.Object===Object&&so,I1=typeof self=="object"&&self&&self.Object===Object&&self,B0=ql||I1||Function("return this")(),Bo=e&&!e.nodeType&&e,nr=Bo&&!0&&t&&!t.nodeType&&t,au=nr&&nr.exports===Bo,_i=au&&ql.process,Bt=function(){try{var W=nr&&nr.require&&nr.require("util").types;return W||_i&&_i.binding&&_i.binding("util")}catch{}}(),su=Bt&&Bt.isArrayBuffer,Wt=Bt&&Bt.isDate,Z2=Bt&&Bt.isMap,Yl=Bt&&Bt.isRegExp,Pi=Bt&&Bt.isSet,F1=Bt&&Bt.isTypedArray;function Vt(W,de,ne){switch(ne.length){case 0:return W.call(de);case 1:return W.call(de,ne[0]);case 2:return W.call(de,ne[0],ne[1]);case 3:return W.call(de,ne[0],ne[1],ne[2])}return W.apply(de,ne)}function uu(W,de,ne,Me){for(var Ge=-1,v0=W==null?0:W.length;++Ge-1}function du(W,de,ne){for(var Me=-1,Ge=W==null?0:W.length;++Me-1;);return ne}function yu(W,de){for(var ne=W.length;ne--&&Ei(de,W[ne],0)>-1;);return ne}function W1(W,de){for(var ne=W.length,Me=0;ne--;)W[ne]===de&&++Me;return Me}var U1=ea(Ci),G1=ea(Ul);function q1(W){return"\\"+Nf[W]}function ki(W,de){return W==null?n:W[de]}function Ti(W){return B1.test(W)}function Uf(W){return Wl.test(W)}function Gf(W){for(var de,ne=[];!(de=W.next()).done;)ne.push(de.value);return ne}function ta(W){var de=-1,ne=Array(W.size);return W.forEach(function(Me,Ge){ne[++de]=[Ge,Me]}),ne}function bu(W,de){return function(ne){return W(de(ne))}}function vn(W,de){for(var ne=-1,Me=W.length,Ge=0,v0=[];++ne-1}function ld(l,s){var h=this.__data__,$=Tt(h,l);return $<0?(++this.size,h.push([l,s])):h[$][1]=s,this}It.prototype.clear=Oi,It.prototype.delete=qt,It.prototype.get=ha,It.prototype.has=od,It.prototype.set=ld;function mn(l){var s=-1,h=l==null?0:l.length;for(this.clear();++s=s?l:s)),l}function Yt(l,s,h,$,_,L){var I,O=s&b,Y=s&S,pe=s&C;if(h&&(I=_?h(l,$,_,L):h(l)),I!==n)return I;if(!Q0(l))return l;var ve=Qe(l);if(ve){if(I=cl(l),!O)return Ft(l,I)}else{var be=xt(l),Te=be==ze||be==Ye;if(ro(l))return Nu(l,O);if(be==w0||be==ue||Te&&!_){if(I=Y||Te?{}:wt(l),!O)return Y?n7(l,In(I,l)):La(l,D0(I,l))}else{if(!x0[be])return _?l:{};I=r7(l,be,O)}}L||(L=new kt);var Fe=L.get(l);if(Fe)return Fe;L.set(l,I),ch(l)?l.forEach(function(Ue){I.add(Yt(Ue,s,h,Ue,l,L))}):sh(l)&&l.forEach(function(Ue,u0){I.set(u0,Yt(Ue,s,h,u0,l,L))});var We=pe?Y?al:ll:Y?En:Lt,o0=ve?n:We(l);return Ct(o0||l,function(Ue,u0){o0&&(u0=Ue,Ue=l[u0]),U2(I,u0,Yt(Ue,s,h,u0,l,L))}),I}function cd(l){var s=Lt(l);return function(h){return Go(h,l,s)}}function Go(l,s,h){var $=h.length;if(l==null)return!$;for(l=_0(l);$--;){var _=h[$],L=s[_],I=l[_];if(I===n&&!(_ in l)||!L(I))return!1}return!0}function Eu(l,s,h){if(typeof l!="function")throw new hn(d);return eo(function(){l.apply(n,h)},s)}function ur(l,s,h,$){var _=-1,L=Ql,I=!0,O=l.length,Y=[],pe=s.length;if(!O)return Y;h&&(s=T0(s,nn(h))),$?(L=du,I=!1):s.length>=a&&(L=Er,I=!1,s=new j2(s));e:for(;++__?0:_+h),$=$===n||$>_?_:n0($),$<0&&($+=_),$=h>$?0:fh($);h<$;)l[h++]=s;return l}function ku(l,s){var h=[];return cr(l,function($,_,L){s($,_,L)&&h.push($)}),h}function U0(l,s,h,$,_){var L=-1,I=l.length;for(h||(h=Na),_||(_=[]);++L0&&h(O)?s>1?U0(O,s-1,h,$,_):e2(_,O):$||(_[_.length]=O)}return _}var xa=Ra(),Yo=Ra(!0);function an(l,s){return l&&xa(l,s,Lt)}function s2(l,s){return l&&Yo(l,s,Lt)}function Hi(l,s){return Jr(s,function(h){return ai(l[h])})}function Dr(l,s){s=pr(s,l);for(var h=0,$=s.length;l!=null&&h<$;)l=l[Hn(s[h++])];return h&&h==$?l:n}function wa(l,s,h){var $=s(l);return Qe(l)?$:e2($,h(l))}function yt(l){return l==null?l===n?i0:l0:N2&&N2 in _0(l)?Oa(l):tc(l)}function u2(l,s){return l>s}function bn(l,s){return l!=null&&h0.call(l,s)}function q2(l,s){return l!=null&&s in _0(l)}function Tu(l,s,h){return l>=_t(s,h)&&l=120&&ve.length>=120)?new j2(I&&ve):n}ve=l[0];var be=-1,Te=O[0];e:for(;++be<_&&pe.length-1;)O!==l&&sa.call(O,Y,1),sa.call(l,Y,1);return l}function at(l,s){for(var h=l?s.length:0,$=h-1;h--;){var _=s[h];if(h==$||_!==L){var L=_;I0(_)?sa.call(l,_,1):Ta(l,_)}}return l}function Ki(l,s){return l+n2(zo()*(s-l+1))}function el(l,s,h,$){for(var _=-1,L=rt(H2((s-l)/(h||1)),0),I=ne(L);L--;)I[$?L:++_]=l,l+=h;return I}function X2(l,s){var h="";if(!l||s<1||s>fe)return h;do s%2&&(h+=l),s=n2(s/2),s&&(l+=l);while(s);return h}function t0(l,s){return sn(za(l,s,kn),l+"")}function Mt(l){return ar(ss(l))}function Bu(l,s){var h=ss(l);return ja(h,Lr(s,0,h.length))}function Q2(l,s,h,$){if(!Q0(l))return l;s=pr(s,l);for(var _=-1,L=s.length,I=L-1,O=l;O!=null&&++__?0:_+s),h=h>_?_:h,h<0&&(h+=_),_=s>h?0:h-s>>>0,s>>>=0;for(var L=ne(_);++$<_;)L[$]=l[$+s];return L}function Vu(l,s){var h;return cr(l,function($,_,L){return h=s($,_,L),!h}),!!h}function Wi(l,s,h){var $=0,_=l==null?$:l.length;if(typeof s=="number"&&s===s&&_<=oe){for(;$<_;){var L=$+_>>>1,I=l[L];I!==null&&!Kn(I)&&(h?I<=s:I=a){var pe=s?null:Sd(l);if(pe)return t2(pe);I=!1,_=Er,Y=new j2}else Y=s?[]:O;e:for(;++$=$?l:At(l,s,h)}var Ou=nd||function(l){return B0.clearTimeout(l)};function Nu(l,s){if(s)return l.slice();var h=l.length,$=wu?wu(h):new l.constructor(h);return l.copy($),$}function rl(l){var s=new l.constructor(l.byteLength);return new No(s).set(new No(l)),s}function md(l,s){var h=s?rl(l.buffer):l.buffer;return new l.constructor(h,l.byteOffset,l.byteLength)}function gd(l){var s=new l.constructor(l.source,Js.exec(l));return s.lastIndex=l.lastIndex,s}function yd(l){return on?_0(on.call(l)):{}}function bd(l,s){var h=s?rl(l.buffer):l.buffer;return new l.constructor(h,l.byteOffset,l.length)}function Hu(l,s){if(l!==s){var h=l!==n,$=l===null,_=l===l,L=Kn(l),I=s!==n,O=s===null,Y=s===s,pe=Kn(s);if(!O&&!pe&&!L&&l>s||L&&I&&Y&&!O&&!pe||$&&I&&Y||!h&&Y||!_)return 1;if(!$&&!L&&!pe&&l=O)return Y;var pe=h[$];return Y*(pe=="desc"?-1:1)}}return l.index-s.index}function xd(l,s,h,$){for(var _=-1,L=l.length,I=h.length,O=-1,Y=s.length,pe=rt(L-I,0),ve=ne(Y+pe),be=!$;++O1?h[_-1]:n,I=_>2?h[2]:n;for(L=l.length>3&&typeof L=="function"?(_--,L):n,I&&Ot(h[0],h[1],I)&&(L=_<3?n:L,_=1),s=_0(s);++$<_;){var O=h[$];O&&l(s,O,$,L)}return s})}function Sn(l,s){return function(h,$){if(h==null)return h;if(!Pn(h))return l(h,$);for(var _=h.length,L=s?_:-1,I=_0(h);(s?L--:++L<_)&&$(I[L],L,I)!==!1;);return h}}function Ra(l){return function(s,h,$){for(var _=-1,L=_0(s),I=$(s),O=I.length;O--;){var Y=I[l?O:++_];if(h(L[Y],Y,L)===!1)break}return s}}function Ba(l,s,h){var $=s&A,_=Yi(l);function L(){var I=this&&this!==B0&&this instanceof L?_:l;return I.apply($?h:this,arguments)}return L}function ju(l){return function(s){s=P0(s);var h=Ti(s)?rn(s):n,$=h?h[0]:s.charAt(0),_=h?Fr(h,1).join(""):s.slice(1);return $[l]()+_}}function J2(l){return function(s){return fu(wh(xh(s).replace(If,"")),l,"")}}function Yi(l){return function(){var s=arguments;switch(s.length){case 0:return new l;case 1:return new l(s[0]);case 2:return new l(s[0],s[1]);case 3:return new l(s[0],s[1],s[2]);case 4:return new l(s[0],s[1],s[2],s[3]);case 5:return new l(s[0],s[1],s[2],s[3],s[4]);case 6:return new l(s[0],s[1],s[2],s[3],s[4],s[5]);case 7:return new l(s[0],s[1],s[2],s[3],s[4],s[5],s[6])}var h=Fi(l.prototype),$=l.apply(h,s);return Q0($)?$:h}}function Ku(l,s,h){var $=Yi(l);function _(){for(var L=arguments.length,I=ne(L),O=L,Y=Zr(_);O--;)I[O]=arguments[O];var pe=L<3&&I[0]!==Y&&I[L-1]!==Y?[]:vn(I,Y);if(L-=pe.length,L-1?_[L?s[I]:I]:n}}function Va(l){return hr(function(s){var h=s.length,$=h,_=Pt.prototype.thru;for(l&&s.reverse();$--;){var L=s[$];if(typeof L!="function")throw new hn(d);if(_&&!I&&Qi(L)=="wrapper")var I=new Pt([],!0)}for($=I?$:h;++$1&&p0.reverse(),ve&&YO))return!1;var pe=L.get(l),ve=L.get(s);if(pe&&ve)return pe==s&&ve==l;var be=-1,Te=!0,Fe=h&T?new j2:n;for(L.set(l,s),L.set(s,l);++be1?"& ":"")+s[$],s=s.join(h>2?", ":" "),l.replace(Fl,`{ + */var ZZ=Ac.exports,lm;function OZ(){return lm||(lm=1,function(t,e){(function(){var n,i="4.17.21",a=200,c="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",d="Expected a function",f="Invalid `variable` option passed into `_.template`",v="__lodash_hash_undefined__",m=500,g="__lodash_placeholder__",b=1,S=2,C=4,P=1,T=2,A=1,V=2,R=4,F=8,N=16,z=32,U=64,le=128,D=256,ie=512,j=30,X="...",xe=800,G=16,Q=1,he=2,_e=3,se=1/0,fe=9007199254740991,Pe=17976931348623157e292,ae=NaN,H=4294967295,ce=H-1,oe=H>>>1,q=[["ary",le],["bind",A],["bindKey",V],["curry",F],["curryRight",N],["flip",ie],["partial",z],["partialRight",U],["rearg",D]],ue="[object Arguments]",$e="[object Array]",Ee="[object AsyncFunction]",Se="[object Boolean]",me="[object Date]",Be="[object DOMException]",ke="[object Error]",ze="[object Function]",Ye="[object GeneratorFunction]",g0="[object Map]",k0="[object Number]",l0="[object Null]",w0="[object Object]",r0="[object Promise]",a0="[object Proxy]",tt="[object RegExp]",y0="[object Set]",d0="[object String]",De="[object Symbol]",i0="[object Undefined]",Ze="[object WeakMap]",q0="[object WeakSet]",$0="[object ArrayBuffer]",W0="[object DataView]",jt="[object Float32Array]",Kt="[object Float64Array]",e0="[object Int8Array]",c0="[object Int16Array]",er="[object Int32Array]",St="[object Uint8Array]",Wr="[object Uint8ClampedArray]",pn="[object Uint16Array]",Ur="[object Uint32Array]",Ws=/\b__p \+= '';/g,Us=/\b(__p \+=) '' \+/g,Gs=/(__e\(.*?\)|\b__t\)) \+\n'';/g,D2=/&(?:amp|lt|gt|quot|#39);/g,R2=/[&<>"']/g,m1=RegExp(D2.source),g1=RegExp(R2.source),y1=/<%-([\s\S]+?)%>/g,b1=/<%([\s\S]+?)%>/g,qs=/<%=([\s\S]+?)%>/g,Ys=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,x1=/^\w*$/,_o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Po=/[\\^$.*+?()[\]{}|]/g,Eo=RegExp(Po.source),Xs=/^\s+/,ko=/\s/,Fl=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Zl=/\{\n\/\* \[wrapped with (.+)\] \*/,Qs=/,? & /,Tf=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Mf=/[()=,{}\[\]\/\s]/,Af=/\\(\\)?/g,B2=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Js=/\w*$/,w1=/^[-+]0x[0-9a-f]+$/i,Lf=/^0b[01]+$/i,$1=/^\[object .+?Constructor\]$/,S1=/^0o[0-7]+$/i,C1=/^(?:0|[1-9]\d*)$/,_1=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Ol=/($^)/,Df=/['\n\r\u2028\u2029\\]/g,R0="\\ud800-\\udfff",Rf="\\u0300-\\u036f",eu="\\ufe20-\\ufe2f",P1="\\u20d0-\\u20ff",To=Rf+eu+P1,E1="\\u2700-\\u27bf",tu="a-z\\xdf-\\xf6\\xf8-\\xff",Nl="\\xac\\xb1\\xd7\\xf7",tr="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Bf="\\u2000-\\u206f",Bn=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",k1="A-Z\\xc0-\\xd6\\xd8-\\xde",T1="\\ufe0e\\ufe0f",M1=Nl+tr+Bf+Bn,wi="['’]",Hl="["+R0+"]",$i="["+M1+"]",V2="["+To+"]",A1="\\d+",Vf="["+E1+"]",zl="["+tu+"]",nu="[^"+R0+M1+A1+E1+tu+k1+"]",Mo="\\ud83c[\\udffb-\\udfff]",Ao="(?:"+V2+"|"+Mo+")",L1="[^"+R0+"]",Lo="(?:\\ud83c[\\udde6-\\uddff]){2}",b0="[\\ud800-\\udbff][\\udc00-\\udfff]",I2="["+k1+"]",ru="\\u200d",jl="(?:"+zl+"|"+nu+")",D1="(?:"+I2+"|"+nu+")",iu="(?:"+wi+"(?:d|ll|m|re|s|t|ve))?",ou="(?:"+wi+"(?:D|LL|M|RE|S|T|VE))?",Kl=Ao+"?",Do="["+T1+"]?",Gr="(?:"+ru+"(?:"+[L1,Lo,b0].join("|")+")"+Do+Kl+")*",qr="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Yr="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Si=Do+Kl+Gr,Ro="(?:"+[Vf,Lo,b0].join("|")+")"+Si,Xr="(?:"+[L1+V2+"?",V2,Lo,b0,Hl].join("|")+")",If=RegExp(wi,"g"),R1=RegExp(V2,"g"),F2=RegExp(Mo+"(?="+Mo+")|"+Xr+Si,"g"),Ff=RegExp([I2+"?"+zl+"+"+iu+"(?="+[$i,I2,"$"].join("|")+")",D1+"+"+ou+"(?="+[$i,I2+jl,"$"].join("|")+")",I2+"?"+jl+"+"+iu,I2+"+"+ou,Yr,qr,A1,Ro].join("|"),"g"),B1=RegExp("["+ru+R0+To+T1+"]"),Wl=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,V1=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Zf=-1,S0={};S0[jt]=S0[Kt]=S0[e0]=S0[c0]=S0[er]=S0[St]=S0[Wr]=S0[pn]=S0[Ur]=!0,S0[ue]=S0[$e]=S0[$0]=S0[Se]=S0[W0]=S0[me]=S0[ke]=S0[ze]=S0[g0]=S0[k0]=S0[w0]=S0[tt]=S0[y0]=S0[d0]=S0[Ze]=!1;var x0={};x0[ue]=x0[$e]=x0[$0]=x0[W0]=x0[Se]=x0[me]=x0[jt]=x0[Kt]=x0[e0]=x0[c0]=x0[er]=x0[g0]=x0[k0]=x0[w0]=x0[tt]=x0[y0]=x0[d0]=x0[De]=x0[St]=x0[Wr]=x0[pn]=x0[Ur]=!0,x0[ke]=x0[ze]=x0[Ze]=!1;var Ci={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},Ul={"&":"&","<":"<",">":">",'"':""","'":"'"},Of={"&":"&","<":"<",">":">",""":'"',"'":"'"},Nf={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},lu=parseFloat,Gl=parseInt,ql=typeof so=="object"&&so&&so.Object===Object&&so,I1=typeof self=="object"&&self&&self.Object===Object&&self,B0=ql||I1||Function("return this")(),Bo=e&&!e.nodeType&&e,nr=Bo&&!0&&t&&!t.nodeType&&t,au=nr&&nr.exports===Bo,_i=au&&ql.process,Bt=function(){try{var W=nr&&nr.require&&nr.require("util").types;return W||_i&&_i.binding&&_i.binding("util")}catch{}}(),su=Bt&&Bt.isArrayBuffer,Wt=Bt&&Bt.isDate,Z2=Bt&&Bt.isMap,Yl=Bt&&Bt.isRegExp,Pi=Bt&&Bt.isSet,F1=Bt&&Bt.isTypedArray;function Vt(W,de,ne){switch(ne.length){case 0:return W.call(de);case 1:return W.call(de,ne[0]);case 2:return W.call(de,ne[0],ne[1]);case 3:return W.call(de,ne[0],ne[1],ne[2])}return W.apply(de,ne)}function uu(W,de,ne,Me){for(var Ge=-1,v0=W==null?0:W.length;++Ge-1}function du(W,de,ne){for(var Me=-1,Ge=W==null?0:W.length;++Me-1;);return ne}function yu(W,de){for(var ne=W.length;ne--&&Ei(de,W[ne],0)>-1;);return ne}function W1(W,de){for(var ne=W.length,Me=0;ne--;)W[ne]===de&&++Me;return Me}var U1=ea(Ci),G1=ea(Ul);function q1(W){return"\\"+Nf[W]}function ki(W,de){return W==null?n:W[de]}function Ti(W){return B1.test(W)}function Uf(W){return Wl.test(W)}function Gf(W){for(var de,ne=[];!(de=W.next()).done;)ne.push(de.value);return ne}function ta(W){var de=-1,ne=Array(W.size);return W.forEach(function(Me,Ge){ne[++de]=[Ge,Me]}),ne}function bu(W,de){return function(ne){return W(de(ne))}}function vn(W,de){for(var ne=-1,Me=W.length,Ge=0,v0=[];++ne-1}function ld(l,s){var h=this.__data__,$=Tt(h,l);return $<0?(++this.size,h.push([l,s])):h[$][1]=s,this}It.prototype.clear=Oi,It.prototype.delete=qt,It.prototype.get=ha,It.prototype.has=od,It.prototype.set=ld;function mn(l){var s=-1,h=l==null?0:l.length;for(this.clear();++s=s?l:s)),l}function Yt(l,s,h,$,_,L){var I,O=s&b,Y=s&S,pe=s&C;if(h&&(I=_?h(l,$,_,L):h(l)),I!==n)return I;if(!Q0(l))return l;var ve=Qe(l);if(ve){if(I=cl(l),!O)return Ft(l,I)}else{var be=xt(l),Te=be==ze||be==Ye;if(ro(l))return Nu(l,O);if(be==w0||be==ue||Te&&!_){if(I=Y||Te?{}:wt(l),!O)return Y?n7(l,In(I,l)):La(l,D0(I,l))}else{if(!x0[be])return _?l:{};I=r7(l,be,O)}}L||(L=new kt);var Fe=L.get(l);if(Fe)return Fe;L.set(l,I),ch(l)?l.forEach(function(Ue){I.add(Yt(Ue,s,h,Ue,l,L))}):sh(l)&&l.forEach(function(Ue,u0){I.set(u0,Yt(Ue,s,h,u0,l,L))});var We=pe?Y?al:ll:Y?En:Lt,o0=ve?n:We(l);return Ct(o0||l,function(Ue,u0){o0&&(u0=Ue,Ue=l[u0]),U2(I,u0,Yt(Ue,s,h,u0,l,L))}),I}function cd(l){var s=Lt(l);return function(h){return Go(h,l,s)}}function Go(l,s,h){var $=h.length;if(l==null)return!$;for(l=_0(l);$--;){var _=h[$],L=s[_],I=l[_];if(I===n&&!(_ in l)||!L(I))return!1}return!0}function Eu(l,s,h){if(typeof l!="function")throw new hn(d);return eo(function(){l.apply(n,h)},s)}function ur(l,s,h,$){var _=-1,L=Ql,I=!0,O=l.length,Y=[],pe=s.length;if(!O)return Y;h&&(s=T0(s,nn(h))),$?(L=du,I=!1):s.length>=a&&(L=Er,I=!1,s=new j2(s));e:for(;++__?0:_+h),$=$===n||$>_?_:n0($),$<0&&($+=_),$=h>$?0:fh($);h<$;)l[h++]=s;return l}function ku(l,s){var h=[];return cr(l,function($,_,L){s($,_,L)&&h.push($)}),h}function U0(l,s,h,$,_){var L=-1,I=l.length;for(h||(h=Na),_||(_=[]);++L0&&h(O)?s>1?U0(O,s-1,h,$,_):Jr(_,O):$||(_[_.length]=O)}return _}var xa=Ra(),Yo=Ra(!0);function an(l,s){return l&&xa(l,s,Lt)}function a2(l,s){return l&&Yo(l,s,Lt)}function Hi(l,s){return Qr(s,function(h){return ai(l[h])})}function Dr(l,s){s=pr(s,l);for(var h=0,$=s.length;l!=null&&h<$;)l=l[Hn(s[h++])];return h&&h==$?l:n}function wa(l,s,h){var $=s(l);return Qe(l)?$:Jr($,h(l))}function yt(l){return l==null?l===n?i0:l0:N2&&N2 in _0(l)?Oa(l):tc(l)}function s2(l,s){return l>s}function bn(l,s){return l!=null&&h0.call(l,s)}function q2(l,s){return l!=null&&s in _0(l)}function Tu(l,s,h){return l>=_t(s,h)&&l=120&&ve.length>=120)?new j2(I&&ve):n}ve=l[0];var be=-1,Te=O[0];e:for(;++be<_&&pe.length-1;)O!==l&&sa.call(O,Y,1),sa.call(l,Y,1);return l}function at(l,s){for(var h=l?s.length:0,$=h-1;h--;){var _=s[h];if(h==$||_!==L){var L=_;I0(_)?sa.call(l,_,1):Ta(l,_)}}return l}function Ki(l,s){return l+t2(zo()*(s-l+1))}function el(l,s,h,$){for(var _=-1,L=rt(H2((s-l)/(h||1)),0),I=ne(L);L--;)I[$?L:++_]=l,l+=h;return I}function X2(l,s){var h="";if(!l||s<1||s>fe)return h;do s%2&&(h+=l),s=t2(s/2),s&&(l+=l);while(s);return h}function t0(l,s){return sn(za(l,s,kn),l+"")}function Mt(l){return ar(ss(l))}function Bu(l,s){var h=ss(l);return ja(h,Lr(s,0,h.length))}function Q2(l,s,h,$){if(!Q0(l))return l;s=pr(s,l);for(var _=-1,L=s.length,I=L-1,O=l;O!=null&&++__?0:_+s),h=h>_?_:h,h<0&&(h+=_),_=s>h?0:h-s>>>0,s>>>=0;for(var L=ne(_);++$<_;)L[$]=l[$+s];return L}function Vu(l,s){var h;return cr(l,function($,_,L){return h=s($,_,L),!h}),!!h}function Wi(l,s,h){var $=0,_=l==null?$:l.length;if(typeof s=="number"&&s===s&&_<=oe){for(;$<_;){var L=$+_>>>1,I=l[L];I!==null&&!Kn(I)&&(h?I<=s:I=a){var pe=s?null:Sd(l);if(pe)return e2(pe);I=!1,_=Er,Y=new j2}else Y=s?[]:O;e:for(;++$=$?l:At(l,s,h)}var Ou=nd||function(l){return B0.clearTimeout(l)};function Nu(l,s){if(s)return l.slice();var h=l.length,$=wu?wu(h):new l.constructor(h);return l.copy($),$}function rl(l){var s=new l.constructor(l.byteLength);return new No(s).set(new No(l)),s}function md(l,s){var h=s?rl(l.buffer):l.buffer;return new l.constructor(h,l.byteOffset,l.byteLength)}function gd(l){var s=new l.constructor(l.source,Js.exec(l));return s.lastIndex=l.lastIndex,s}function yd(l){return on?_0(on.call(l)):{}}function bd(l,s){var h=s?rl(l.buffer):l.buffer;return new l.constructor(h,l.byteOffset,l.length)}function Hu(l,s){if(l!==s){var h=l!==n,$=l===null,_=l===l,L=Kn(l),I=s!==n,O=s===null,Y=s===s,pe=Kn(s);if(!O&&!pe&&!L&&l>s||L&&I&&Y&&!O&&!pe||$&&I&&Y||!h&&Y||!_)return 1;if(!$&&!L&&!pe&&l=O)return Y;var pe=h[$];return Y*(pe=="desc"?-1:1)}}return l.index-s.index}function xd(l,s,h,$){for(var _=-1,L=l.length,I=h.length,O=-1,Y=s.length,pe=rt(L-I,0),ve=ne(Y+pe),be=!$;++O1?h[_-1]:n,I=_>2?h[2]:n;for(L=l.length>3&&typeof L=="function"?(_--,L):n,I&&Ot(h[0],h[1],I)&&(L=_<3?n:L,_=1),s=_0(s);++$<_;){var O=h[$];O&&l(s,O,$,L)}return s})}function Sn(l,s){return function(h,$){if(h==null)return h;if(!Pn(h))return l(h,$);for(var _=h.length,L=s?_:-1,I=_0(h);(s?L--:++L<_)&&$(I[L],L,I)!==!1;);return h}}function Ra(l){return function(s,h,$){for(var _=-1,L=_0(s),I=$(s),O=I.length;O--;){var Y=I[l?O:++_];if(h(L[Y],Y,L)===!1)break}return s}}function Ba(l,s,h){var $=s&A,_=Yi(l);function L(){var I=this&&this!==B0&&this instanceof L?_:l;return I.apply($?h:this,arguments)}return L}function ju(l){return function(s){s=P0(s);var h=Ti(s)?rn(s):n,$=h?h[0]:s.charAt(0),_=h?Fr(h,1).join(""):s.slice(1);return $[l]()+_}}function J2(l){return function(s){return fu(wh(xh(s).replace(If,"")),l,"")}}function Yi(l){return function(){var s=arguments;switch(s.length){case 0:return new l;case 1:return new l(s[0]);case 2:return new l(s[0],s[1]);case 3:return new l(s[0],s[1],s[2]);case 4:return new l(s[0],s[1],s[2],s[3]);case 5:return new l(s[0],s[1],s[2],s[3],s[4]);case 6:return new l(s[0],s[1],s[2],s[3],s[4],s[5]);case 7:return new l(s[0],s[1],s[2],s[3],s[4],s[5],s[6])}var h=Fi(l.prototype),$=l.apply(h,s);return Q0($)?$:h}}function Ku(l,s,h){var $=Yi(l);function _(){for(var L=arguments.length,I=ne(L),O=L,Y=Zr(_);O--;)I[O]=arguments[O];var pe=L<3&&I[0]!==Y&&I[L-1]!==Y?[]:vn(I,Y);if(L-=pe.length,L-1?_[L?s[I]:I]:n}}function Va(l){return hr(function(s){var h=s.length,$=h,_=Pt.prototype.thru;for(l&&s.reverse();$--;){var L=s[$];if(typeof L!="function")throw new hn(d);if(_&&!I&&Qi(L)=="wrapper")var I=new Pt([],!0)}for($=I?$:h;++$1&&p0.reverse(),ve&&YO))return!1;var pe=L.get(l),ve=L.get(s);if(pe&&ve)return pe==s&&ve==l;var be=-1,Te=!0,Fe=h&T?new j2:n;for(L.set(l,s),L.set(s,l);++be1?"& ":"")+s[$],s=s.join(h>2?", ":" "),l.replace(Fl,`{ /* [wrapped with `+s+`] */ -`)}function Na(l){return Qe(l)||xl(l)||!!(td&&l&&l[td])}function I0(l,s){var h=typeof l;return s=s??fe,!!s&&(h=="number"||h!="symbol"&&C1.test(l))&&l>-1&&l%1==0&&l0){if(++s>=xe)return arguments[0]}else s=0;return l.apply(n,arguments)}}function ja(l,s){var h=-1,$=l.length,_=$-1;for(s=s===n?$:s;++h1?l[s-1]:n;return h=typeof h=="function"?(l.pop(),h):n,H0(l,h)});function Ja(l){var s=M(l);return s.__chain__=!0,s}function v7(l,s){return s(l),l}function jn(l,s){return s(l)}var es=hr(function(l){var s=l.length,h=s?l[0]:0,$=this.__wrapped__,_=function(L){return ba(L,l)};return s>1||this.__actions__.length||!($ instanceof Xe)||!I0(h)?this.thru(_):($=$.slice(h,+h+(s?1:0)),$.__actions__.push({func:jn,args:[_],thisArg:n}),new Pt($,this.__chain__).thru(function(L){return s&&!L.length&&L.push(n),L}))});function oi(){return Ja(this)}function ts(){return new Pt(this.value(),this.__chain__)}function vc(){this.__values__===n&&(this.__values__=dh(this.value()));var l=this.__index__>=this.__values__.length,s=l?n:this.__values__[this.__index__++];return{done:l,value:s}}function hc(){return this}function h7(l){for(var s,h=this;h instanceof or;){var $=Ld(h);$.__index__=0,$.__values__=n,s?_.__wrapped__=$:s=$;var _=$;h=h.__wrapped__}return _.__wrapped__=l,s}function mc(){var l=this.__wrapped__;if(l instanceof Xe){var s=l;return this.__actions__.length&&(s=new Xe(this)),s=s.reverse(),s.__actions__.push({func:jn,args:[Ya],thisArg:n}),new Pt(s,this.__chain__)}return this.thru(Ya)}function m7(){return Ui(this.__wrapped__,this.__actions__)}var Nd=Da(function(l,s,h){h0.call(l,h)?++l[h]:sr(l,h,1)});function Hd(l,s,h){var $=Qe(l)?cu:qo;return h&&Ot(l,s,h)&&(s=n),$(l,He(s,3))}function ns(l,s){var h=Qe(l)?Jr:ku;return h(l,He(s,3))}var rs=ei(v2),zd=ei(vl);function gc(l,s){return U0(li(l,s),1)}function g7(l,s){return U0(li(l,s),se)}function jd(l,s,h){return h=h===n?1:n0(h),U0(li(l,s),h)}function is(l,s){var h=Qe(l)?Ct:cr;return h(l,He(s,3))}function yl(l,s){var h=Qe(l)?Xl:dd;return h(l,He(s,3))}var yc=Da(function(l,s,h){h0.call(l,h)?l[h].push(s):sr(l,h,[s])});function os(l,s,h,$){l=Pn(l)?l:ss(l),h=h&&!$?n0(h):0;var _=l.length;return h<0&&(h=rt(_+h,0)),Ud(l)?h<=_&&l.indexOf(s,h)>-1:!!_&&Ei(l,s,h)>-1}var Kd=t0(function(l,s,h){var $=-1,_=typeof s=="function",L=Pn(l)?ne(l.length):[];return cr(l,function(I){L[++$]=_?Vt(s,I,h):xn(I,s,h)}),L}),y7=Da(function(l,s,h){sr(l,h,s)});function li(l,s){var h=Qe(l)?T0:Lu;return h(l,He(s,3))}function b7(l,s,h,$){return l==null?[]:(Qe(s)||(s=s==null?[]:[s]),h=$?n:h,Qe(h)||(h=h==null?[]:[h]),Jo(l,s,h))}var bl=Da(function(l,s,h){l[h?0:1].push(s)},function(){return[[],[]]});function x7(l,s,h){var $=Qe(l)?fu:z1,_=arguments.length<3;return $(l,He(s,4),h,_,cr)}function ls(l,s,h){var $=Qe(l)?Hf:z1,_=arguments.length<3;return $(l,He(s,4),h,_,dd)}function r(l,s){var h=Qe(l)?Jr:ku;return h(l,Ce(He(s,3)))}function o(l){var s=Qe(l)?ar:Mt;return s(l)}function u(l,s,h){(h?Ot(l,s,h):s===n)?s=1:s=n0(s);var $=Qe(l)?W2:Bu;return $(l,s)}function p(l){var s=Qe(l)?ud:$n;return s(l)}function y(l){if(l==null)return 0;if(Pn(l))return Ud(l)?O2(l):l.length;var s=xt(l);return s==g0||s==y0?l.size:Vr(l).length}function w(l,s,h){var $=Qe(l)?pu:Vu;return h&&Ot(l,s,h)&&(s=n),$(l,He(s,3))}var E=t0(function(l,s){if(l==null)return[];var h=s.length;return h>1&&Ot(l,s[0],s[1])?s=[]:h>2&&Ot(s[0],s[1],s[2])&&(s=[s[0]]),Jo(l,U0(s,1),[])}),B=A0||function(){return B0.Date.now()};function Z(l,s){if(typeof s!="function")throw new hn(d);return l=n0(l),function(){if(--l<1)return s.apply(this,arguments)}}function re(l,s,h){return s=h?n:s,s=l&&s==null?l.length:s,vr(l,le,n,n,n,n,s)}function ye(l,s){var h;if(typeof s!="function")throw new hn(d);return l=n0(l),function(){return--l>0&&(h=s.apply(this,arguments)),l<=1&&(s=n),h}}var we=t0(function(l,s,h){var $=A;if(h.length){var _=vn(h,Zr(we));$|=z}return vr(l,$,s,h,_)}),ge=t0(function(l,s,h){var $=A|V;if(h.length){var _=vn(h,Zr(ge));$|=z}return vr(s,$,l,h,_)});function Ae(l,s,h){s=h?n:s;var $=vr(l,F,n,n,n,n,n,s);return $.placeholder=Ae.placeholder,$}function Re(l,s,h){s=h?n:s;var $=vr(l,N,n,n,n,n,n,s);return $.placeholder=Re.placeholder,$}function Ve(l,s,h){var $,_,L,I,O,Y,pe=0,ve=!1,be=!1,Te=!0;if(typeof l!="function")throw new hn(d);s=gr(s)||0,Q0(h)&&(ve=!!h.leading,be="maxWait"in h,L=be?rt(gr(h.maxWait)||0,s):L,Te="trailing"in h?!!h.trailing:Te);function Fe(ct){var zr=$,ui=_;return $=_=n,pe=ct,I=l.apply(ui,zr),I}function We(ct){return pe=ct,O=eo(u0,s),ve?Fe(ct):I}function o0(ct){var zr=ct-Y,ui=ct-pe,Ch=s-zr;return be?_t(Ch,L-ui):Ch}function Ue(ct){var zr=ct-Y,ui=ct-pe;return Y===n||zr>=s||zr<0||be&&ui>=L}function u0(){var ct=B();if(Ue(ct))return p0(ct);O=eo(u0,o0(ct))}function p0(ct){return O=n,Te&&$?Fe(ct):($=_=n,I)}function Wn(){O!==n&&Ou(O),pe=0,$=Y=_=O=n}function cn(){return O===n?I:p0(B())}function Un(){var ct=B(),zr=Ue(ct);if($=arguments,_=this,Y=ct,zr){if(O===n)return We(Y);if(be)return Ou(O),O=eo(u0,s),Fe(Y)}return O===n&&(O=eo(u0,s)),I}return Un.cancel=Wn,Un.flush=cn,Un}var X0=t0(function(l,s){return Eu(l,1,s)}),J=t0(function(l,s,h){return Eu(l,gr(s)||0,h)});function K(l){return vr(l,ie)}function te(l,s){if(typeof l!="function"||s!=null&&typeof s!="function")throw new hn(d);var h=function(){var $=arguments,_=s?s.apply(this,$):$[0],L=h.cache;if(L.has(_))return L.get(_);var I=l.apply(this,$);return h.cache=L.set(_,I)||L,I};return h.cache=new(te.Cache||mn),h}te.Cache=mn;function Ce(l){if(typeof l!="function")throw new hn(d);return function(){var s=arguments;switch(s.length){case 0:return!l.call(this);case 1:return!l.call(this,s[0]);case 2:return!l.call(this,s[0],s[1]);case 3:return!l.call(this,s[0],s[1],s[2])}return!l.apply(this,s)}}function Ie(l){return ye(2,l)}var Ne=hd(function(l,s){s=s.length==1&&Qe(s[0])?T0(s[0],nn(He())):T0(U0(s,1),nn(He()));var h=s.length;return t0(function($){for(var _=-1,L=_t($.length,h);++_=s}),xl=Sa(function(){return arguments}())?Sa:function(l){return ot(l)&&h0.call(l,"callee")&&!aa.call(l,"callee")},Qe=ne.isArray,C$=su?nn(su):pd;function Pn(l){return l!=null&&Wd(l.length)&&!ai(l)}function ut(l){return ot(l)&&Pn(l)}function _$(l){return l===!0||l===!1||ot(l)&&yt(l)==Se}var ro=Su||L7,P$=Wt?nn(Wt):Br;function E$(l){return ot(l)&&l.nodeType===1&&!bc(l)}function k$(l){if(l==null)return!0;if(Pn(l)&&(Qe(l)||typeof l=="string"||typeof l.splice=="function"||ro(l)||as(l)||xl(l)))return!l.length;var s=xt(l);if(s==g0||s==y0)return!l.size;if(Or(l))return!Vr(l).length;for(var h in l)if(h0.call(l,h))return!1;return!0}function T$(l,s){return wn(l,s)}function M$(l,s,h){h=typeof h=="function"?h:n;var $=h?h(l,s):n;return $===n?wn(l,s,n,h):!!$}function $7(l){if(!ot(l))return!1;var s=yt(l);return s==ke||s==Be||typeof l.message=="string"&&typeof l.name=="string"&&!bc(l)}function A$(l){return typeof l=="number"&&Di(l)}function ai(l){if(!Q0(l))return!1;var s=yt(l);return s==ze||s==Ye||s==Ee||s==a0}function ah(l){return typeof l=="number"&&l==n0(l)}function Wd(l){return typeof l=="number"&&l>-1&&l%1==0&&l<=fe}function Q0(l){var s=typeof l;return l!=null&&(s=="object"||s=="function")}function ot(l){return l!=null&&typeof l=="object"}var sh=Z2?nn(Z2):vd;function L$(l,s){return l===s||zi(l,s,ul(s))}function D$(l,s,h){return h=typeof h=="function"?h:n,zi(l,s,ul(s),h)}function R$(l){return uh(l)&&l!=+l}function B$(l){if(o7(l))throw new Ge(c);return Mu(l)}function V$(l){return l===null}function I$(l){return l==null}function uh(l){return typeof l=="number"||ot(l)&&yt(l)==k0}function bc(l){if(!ot(l)||yt(l)!=w0)return!1;var s=Vn(l);if(s===null)return!0;var h=h0.call(s,"constructor")&&s.constructor;return typeof h=="function"&&h instanceof h&&Fo.call(h)==oa}var S7=Yl?nn(Yl):Xo;function F$(l){return ah(l)&&l>=-9007199254740991&&l<=fe}var ch=Pi?nn(Pi):dr;function Ud(l){return typeof l=="string"||!Qe(l)&&ot(l)&&yt(l)==d0}function Kn(l){return typeof l=="symbol"||ot(l)&&yt(l)==De}var as=F1?nn(F1):Qo;function Z$(l){return l===n}function O$(l){return ot(l)&&xt(l)==Ze}function N$(l){return ot(l)&&yt(l)==q0}var H$=Fa(c2),z$=Fa(function(l,s){return l<=s});function dh(l){if(!l)return[];if(Pn(l))return Ud(l)?rn(l):Ft(l);if(Mr&&l[Mr])return Gf(l[Mr]());var s=xt(l),h=s==g0?ta:s==y0?t2:ss;return h(l)}function si(l){if(!l)return l===0?l:0;if(l=gr(l),l===se||l===-1/0){var s=l<0?-1:1;return s*Pe}return l===l?l:0}function n0(l){var s=si(l),h=s%1;return s===s?h?s-h:s:0}function fh(l){return l?Lr(n0(l),0,H):0}function gr(l){if(typeof l=="number")return l;if(Kn(l))return ae;if(Q0(l)){var s=typeof l.valueOf=="function"?l.valueOf():l;l=Q0(s)?s+"":s}if(typeof l!="string")return l===0?l:+l;l=j1(l);var h=Lf.test(l);return h||S1.test(l)?Gl(l.slice(2),h?2:8):w1.test(l)?ae:+l}function ph(l){return Fn(l,En(l))}function j$(l){return l?Lr(n0(l),-9007199254740991,fe):l===0?l:0}function P0(l){return l==null?"":Xt(l)}var K$=qi(function(l,s){if(Or(s)||Pn(s)){Fn(s,Lt(s),l);return}for(var h in s)h0.call(s,h)&&U2(l,h,s[h])}),vh=qi(function(l,s){Fn(s,En(s),l)}),Gd=qi(function(l,s,h,$){Fn(s,En(s),l,$)}),W$=qi(function(l,s,h,$){Fn(s,Lt(s),l,$)}),U$=hr(ba);function G$(l,s){var h=Fi(l);return s==null?h:D0(h,s)}var q$=t0(function(l,s){l=_0(l);var h=-1,$=s.length,_=$>2?s[2]:n;for(_&&Ot(s[0],s[1],_)&&($=1);++h<$;)for(var L=s[h],I=En(L),O=-1,Y=I.length;++O1),L}),Fn(l,al(l),h),$&&(h=Yt(h,b|S|C,Yu));for(var _=s.length;_--;)Ta(h,s[_]);return h});function pS(l,s){return mh(l,Ce(He(s)))}var vS=hr(function(l,s){return l==null?{}:Ru(l,s)});function mh(l,s){if(l==null)return{};var h=T0(al(l),function($){return[$]});return s=He(s),d2(l,h,function($,_){return s($,_[0])})}function hS(l,s,h){s=pr(s,l);var $=-1,_=s.length;for(_||(_=1,l=n);++$<_;){var L=l==null?n:l[Hn(s[$])];L===n&&($=_,L=h),l=ai(L)?L.call(l):L}return l}function mS(l,s,h){return l==null?l:Q2(l,s,h)}function gS(l,s,h,$){return $=typeof $=="function"?$:n,l==null?l:Q2(l,s,h,$)}var gh=Uu(Lt),yh=Uu(En);function yS(l,s,h){var $=Qe(l),_=$||ro(l)||as(l);if(s=He(s,4),h==null){var L=l&&l.constructor;_?h=$?new L:[]:Q0(l)?h=ai(L)?Fi(Vn(l)):{}:h={}}return(_?Ct:an)(l,function(I,O,Y){return s(h,I,O,Y)}),h}function bS(l,s){return l==null?!0:Ta(l,s)}function xS(l,s,h){return l==null?l:Zu(l,s,Aa(h))}function wS(l,s,h,$){return $=typeof $=="function"?$:n,l==null?l:Zu(l,s,Aa(h),$)}function ss(l){return l==null?[]:Vo(l,Lt(l))}function $S(l){return l==null?[]:Vo(l,En(l))}function SS(l,s,h){return h===n&&(h=s,s=n),h!==n&&(h=gr(h),h=h===h?h:0),s!==n&&(s=gr(s),s=s===s?s:0),Lr(gr(l),s,h)}function CS(l,s,h){return s=si(s),h===n?(h=s,s=0):h=si(h),l=gr(l),Tu(l,s,h)}function _S(l,s,h){if(h&&typeof h!="boolean"&&Ot(l,s,h)&&(s=h=n),h===n&&(typeof s=="boolean"?(h=s,s=n):typeof l=="boolean"&&(h=l,l=n)),l===n&&s===n?(l=0,s=1):(l=si(l),s===n?(s=l,l=0):s=si(s)),l>s){var $=l;l=s,s=$}if(h||l%1||s%1){var _=zo();return _t(l+_*(s-l+lu("1e-"+((_+"").length-1))),s)}return Ki(l,s)}var PS=J2(function(l,s,h){return s=s.toLowerCase(),l+(h?bh(s):s)});function bh(l){return P7(P0(l).toLowerCase())}function xh(l){return l=P0(l),l&&l.replace(_1,U1).replace(R1,"")}function ES(l,s,h){l=P0(l),s=Xt(s);var $=l.length;h=h===n?$:Lr(n0(h),0,$);var _=h;return h-=s.length,h>=0&&l.slice(h,_)==s}function kS(l){return l=P0(l),l&&g1.test(l)?l.replace(R2,G1):l}function TS(l){return l=P0(l),l&&Eo.test(l)?l.replace(Po,"\\$&"):l}var MS=J2(function(l,s,h){return l+(h?"-":"")+s.toLowerCase()}),AS=J2(function(l,s,h){return l+(h?" ":"")+s.toLowerCase()}),LS=ju("toLowerCase");function DS(l,s,h){l=P0(l),s=n0(s);var $=s?O2(l):0;if(!s||$>=s)return l;var _=(s-$)/2;return ol(n2(_),h)+l+ol(H2(_),h)}function RS(l,s,h){l=P0(l),s=n0(s);var $=s?O2(l):0;return s&&$>>0,h?(l=P0(l),l&&(typeof s=="string"||s!=null&&!S7(s))&&(s=Xt(s),!s&&Ti(l))?Fr(rn(l),0,h):l.split(s,h)):[]}var NS=J2(function(l,s,h){return l+(h?" ":"")+P7(s)});function HS(l,s,h){return l=P0(l),h=h==null?0:Lr(n0(h),0,l.length),s=Xt(s),l.slice(h,h+s.length)==s}function zS(l,s,h){var $=M.templateSettings;h&&Ot(l,s,h)&&(s=n),l=P0(l),s=Gd({},s,$,Gu);var _=Gd({},s.imports,$.imports,Gu),L=Lt(_),I=Vo(_,L),O,Y,pe=0,ve=s.interpolate||Ol,be="__p += '",Te=Io((s.escape||Ol).source+"|"+ve.source+"|"+(ve===qs?B2:Ol).source+"|"+(s.evaluate||Ol).source+"|$","g"),Fe="//# sourceURL="+(h0.call(s,"sourceURL")?(s.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++Zf+"]")+` +`)}function Na(l){return Qe(l)||xl(l)||!!(td&&l&&l[td])}function I0(l,s){var h=typeof l;return s=s??fe,!!s&&(h=="number"||h!="symbol"&&C1.test(l))&&l>-1&&l%1==0&&l0){if(++s>=xe)return arguments[0]}else s=0;return l.apply(n,arguments)}}function ja(l,s){var h=-1,$=l.length,_=$-1;for(s=s===n?$:s;++h1?l[s-1]:n;return h=typeof h=="function"?(l.pop(),h):n,H0(l,h)});function Ja(l){var s=M(l);return s.__chain__=!0,s}function v7(l,s){return s(l),l}function jn(l,s){return s(l)}var es=hr(function(l){var s=l.length,h=s?l[0]:0,$=this.__wrapped__,_=function(L){return ba(L,l)};return s>1||this.__actions__.length||!($ instanceof Xe)||!I0(h)?this.thru(_):($=$.slice(h,+h+(s?1:0)),$.__actions__.push({func:jn,args:[_],thisArg:n}),new Pt($,this.__chain__).thru(function(L){return s&&!L.length&&L.push(n),L}))});function oi(){return Ja(this)}function ts(){return new Pt(this.value(),this.__chain__)}function vc(){this.__values__===n&&(this.__values__=dh(this.value()));var l=this.__index__>=this.__values__.length,s=l?n:this.__values__[this.__index__++];return{done:l,value:s}}function hc(){return this}function h7(l){for(var s,h=this;h instanceof or;){var $=Ld(h);$.__index__=0,$.__values__=n,s?_.__wrapped__=$:s=$;var _=$;h=h.__wrapped__}return _.__wrapped__=l,s}function mc(){var l=this.__wrapped__;if(l instanceof Xe){var s=l;return this.__actions__.length&&(s=new Xe(this)),s=s.reverse(),s.__actions__.push({func:jn,args:[Ya],thisArg:n}),new Pt(s,this.__chain__)}return this.thru(Ya)}function m7(){return Ui(this.__wrapped__,this.__actions__)}var Nd=Da(function(l,s,h){h0.call(l,h)?++l[h]:sr(l,h,1)});function Hd(l,s,h){var $=Qe(l)?cu:qo;return h&&Ot(l,s,h)&&(s=n),$(l,He(s,3))}function ns(l,s){var h=Qe(l)?Qr:ku;return h(l,He(s,3))}var rs=ei(p2),zd=ei(vl);function gc(l,s){return U0(li(l,s),1)}function g7(l,s){return U0(li(l,s),se)}function jd(l,s,h){return h=h===n?1:n0(h),U0(li(l,s),h)}function is(l,s){var h=Qe(l)?Ct:cr;return h(l,He(s,3))}function yl(l,s){var h=Qe(l)?Xl:dd;return h(l,He(s,3))}var yc=Da(function(l,s,h){h0.call(l,h)?l[h].push(s):sr(l,h,[s])});function os(l,s,h,$){l=Pn(l)?l:ss(l),h=h&&!$?n0(h):0;var _=l.length;return h<0&&(h=rt(_+h,0)),Ud(l)?h<=_&&l.indexOf(s,h)>-1:!!_&&Ei(l,s,h)>-1}var Kd=t0(function(l,s,h){var $=-1,_=typeof s=="function",L=Pn(l)?ne(l.length):[];return cr(l,function(I){L[++$]=_?Vt(s,I,h):xn(I,s,h)}),L}),y7=Da(function(l,s,h){sr(l,h,s)});function li(l,s){var h=Qe(l)?T0:Lu;return h(l,He(s,3))}function b7(l,s,h,$){return l==null?[]:(Qe(s)||(s=s==null?[]:[s]),h=$?n:h,Qe(h)||(h=h==null?[]:[h]),Jo(l,s,h))}var bl=Da(function(l,s,h){l[h?0:1].push(s)},function(){return[[],[]]});function x7(l,s,h){var $=Qe(l)?fu:z1,_=arguments.length<3;return $(l,He(s,4),h,_,cr)}function ls(l,s,h){var $=Qe(l)?Hf:z1,_=arguments.length<3;return $(l,He(s,4),h,_,dd)}function r(l,s){var h=Qe(l)?Qr:ku;return h(l,Ce(He(s,3)))}function o(l){var s=Qe(l)?ar:Mt;return s(l)}function u(l,s,h){(h?Ot(l,s,h):s===n)?s=1:s=n0(s);var $=Qe(l)?W2:Bu;return $(l,s)}function p(l){var s=Qe(l)?ud:$n;return s(l)}function y(l){if(l==null)return 0;if(Pn(l))return Ud(l)?O2(l):l.length;var s=xt(l);return s==g0||s==y0?l.size:Vr(l).length}function w(l,s,h){var $=Qe(l)?pu:Vu;return h&&Ot(l,s,h)&&(s=n),$(l,He(s,3))}var E=t0(function(l,s){if(l==null)return[];var h=s.length;return h>1&&Ot(l,s[0],s[1])?s=[]:h>2&&Ot(s[0],s[1],s[2])&&(s=[s[0]]),Jo(l,U0(s,1),[])}),B=A0||function(){return B0.Date.now()};function Z(l,s){if(typeof s!="function")throw new hn(d);return l=n0(l),function(){if(--l<1)return s.apply(this,arguments)}}function re(l,s,h){return s=h?n:s,s=l&&s==null?l.length:s,vr(l,le,n,n,n,n,s)}function ye(l,s){var h;if(typeof s!="function")throw new hn(d);return l=n0(l),function(){return--l>0&&(h=s.apply(this,arguments)),l<=1&&(s=n),h}}var we=t0(function(l,s,h){var $=A;if(h.length){var _=vn(h,Zr(we));$|=z}return vr(l,$,s,h,_)}),ge=t0(function(l,s,h){var $=A|V;if(h.length){var _=vn(h,Zr(ge));$|=z}return vr(s,$,l,h,_)});function Ae(l,s,h){s=h?n:s;var $=vr(l,F,n,n,n,n,n,s);return $.placeholder=Ae.placeholder,$}function Re(l,s,h){s=h?n:s;var $=vr(l,N,n,n,n,n,n,s);return $.placeholder=Re.placeholder,$}function Ve(l,s,h){var $,_,L,I,O,Y,pe=0,ve=!1,be=!1,Te=!0;if(typeof l!="function")throw new hn(d);s=gr(s)||0,Q0(h)&&(ve=!!h.leading,be="maxWait"in h,L=be?rt(gr(h.maxWait)||0,s):L,Te="trailing"in h?!!h.trailing:Te);function Fe(ct){var zr=$,ui=_;return $=_=n,pe=ct,I=l.apply(ui,zr),I}function We(ct){return pe=ct,O=eo(u0,s),ve?Fe(ct):I}function o0(ct){var zr=ct-Y,ui=ct-pe,Ch=s-zr;return be?_t(Ch,L-ui):Ch}function Ue(ct){var zr=ct-Y,ui=ct-pe;return Y===n||zr>=s||zr<0||be&&ui>=L}function u0(){var ct=B();if(Ue(ct))return p0(ct);O=eo(u0,o0(ct))}function p0(ct){return O=n,Te&&$?Fe(ct):($=_=n,I)}function Wn(){O!==n&&Ou(O),pe=0,$=Y=_=O=n}function cn(){return O===n?I:p0(B())}function Un(){var ct=B(),zr=Ue(ct);if($=arguments,_=this,Y=ct,zr){if(O===n)return We(Y);if(be)return Ou(O),O=eo(u0,s),Fe(Y)}return O===n&&(O=eo(u0,s)),I}return Un.cancel=Wn,Un.flush=cn,Un}var X0=t0(function(l,s){return Eu(l,1,s)}),J=t0(function(l,s,h){return Eu(l,gr(s)||0,h)});function K(l){return vr(l,ie)}function te(l,s){if(typeof l!="function"||s!=null&&typeof s!="function")throw new hn(d);var h=function(){var $=arguments,_=s?s.apply(this,$):$[0],L=h.cache;if(L.has(_))return L.get(_);var I=l.apply(this,$);return h.cache=L.set(_,I)||L,I};return h.cache=new(te.Cache||mn),h}te.Cache=mn;function Ce(l){if(typeof l!="function")throw new hn(d);return function(){var s=arguments;switch(s.length){case 0:return!l.call(this);case 1:return!l.call(this,s[0]);case 2:return!l.call(this,s[0],s[1]);case 3:return!l.call(this,s[0],s[1],s[2])}return!l.apply(this,s)}}function Ie(l){return ye(2,l)}var Ne=hd(function(l,s){s=s.length==1&&Qe(s[0])?T0(s[0],nn(He())):T0(U0(s,1),nn(He()));var h=s.length;return t0(function($){for(var _=-1,L=_t($.length,h);++_=s}),xl=Sa(function(){return arguments}())?Sa:function(l){return ot(l)&&h0.call(l,"callee")&&!aa.call(l,"callee")},Qe=ne.isArray,C$=su?nn(su):pd;function Pn(l){return l!=null&&Wd(l.length)&&!ai(l)}function ut(l){return ot(l)&&Pn(l)}function _$(l){return l===!0||l===!1||ot(l)&&yt(l)==Se}var ro=Su||L7,P$=Wt?nn(Wt):Br;function E$(l){return ot(l)&&l.nodeType===1&&!bc(l)}function k$(l){if(l==null)return!0;if(Pn(l)&&(Qe(l)||typeof l=="string"||typeof l.splice=="function"||ro(l)||as(l)||xl(l)))return!l.length;var s=xt(l);if(s==g0||s==y0)return!l.size;if(Or(l))return!Vr(l).length;for(var h in l)if(h0.call(l,h))return!1;return!0}function T$(l,s){return wn(l,s)}function M$(l,s,h){h=typeof h=="function"?h:n;var $=h?h(l,s):n;return $===n?wn(l,s,n,h):!!$}function $7(l){if(!ot(l))return!1;var s=yt(l);return s==ke||s==Be||typeof l.message=="string"&&typeof l.name=="string"&&!bc(l)}function A$(l){return typeof l=="number"&&Di(l)}function ai(l){if(!Q0(l))return!1;var s=yt(l);return s==ze||s==Ye||s==Ee||s==a0}function ah(l){return typeof l=="number"&&l==n0(l)}function Wd(l){return typeof l=="number"&&l>-1&&l%1==0&&l<=fe}function Q0(l){var s=typeof l;return l!=null&&(s=="object"||s=="function")}function ot(l){return l!=null&&typeof l=="object"}var sh=Z2?nn(Z2):vd;function L$(l,s){return l===s||zi(l,s,ul(s))}function D$(l,s,h){return h=typeof h=="function"?h:n,zi(l,s,ul(s),h)}function R$(l){return uh(l)&&l!=+l}function B$(l){if(o7(l))throw new Ge(c);return Mu(l)}function V$(l){return l===null}function I$(l){return l==null}function uh(l){return typeof l=="number"||ot(l)&&yt(l)==k0}function bc(l){if(!ot(l)||yt(l)!=w0)return!1;var s=Vn(l);if(s===null)return!0;var h=h0.call(s,"constructor")&&s.constructor;return typeof h=="function"&&h instanceof h&&Fo.call(h)==oa}var S7=Yl?nn(Yl):Xo;function F$(l){return ah(l)&&l>=-9007199254740991&&l<=fe}var ch=Pi?nn(Pi):dr;function Ud(l){return typeof l=="string"||!Qe(l)&&ot(l)&&yt(l)==d0}function Kn(l){return typeof l=="symbol"||ot(l)&&yt(l)==De}var as=F1?nn(F1):Qo;function Z$(l){return l===n}function O$(l){return ot(l)&&xt(l)==Ze}function N$(l){return ot(l)&&yt(l)==q0}var H$=Fa(u2),z$=Fa(function(l,s){return l<=s});function dh(l){if(!l)return[];if(Pn(l))return Ud(l)?rn(l):Ft(l);if(Mr&&l[Mr])return Gf(l[Mr]());var s=xt(l),h=s==g0?ta:s==y0?e2:ss;return h(l)}function si(l){if(!l)return l===0?l:0;if(l=gr(l),l===se||l===-1/0){var s=l<0?-1:1;return s*Pe}return l===l?l:0}function n0(l){var s=si(l),h=s%1;return s===s?h?s-h:s:0}function fh(l){return l?Lr(n0(l),0,H):0}function gr(l){if(typeof l=="number")return l;if(Kn(l))return ae;if(Q0(l)){var s=typeof l.valueOf=="function"?l.valueOf():l;l=Q0(s)?s+"":s}if(typeof l!="string")return l===0?l:+l;l=j1(l);var h=Lf.test(l);return h||S1.test(l)?Gl(l.slice(2),h?2:8):w1.test(l)?ae:+l}function ph(l){return Fn(l,En(l))}function j$(l){return l?Lr(n0(l),-9007199254740991,fe):l===0?l:0}function P0(l){return l==null?"":Xt(l)}var K$=qi(function(l,s){if(Or(s)||Pn(s)){Fn(s,Lt(s),l);return}for(var h in s)h0.call(s,h)&&U2(l,h,s[h])}),vh=qi(function(l,s){Fn(s,En(s),l)}),Gd=qi(function(l,s,h,$){Fn(s,En(s),l,$)}),W$=qi(function(l,s,h,$){Fn(s,Lt(s),l,$)}),U$=hr(ba);function G$(l,s){var h=Fi(l);return s==null?h:D0(h,s)}var q$=t0(function(l,s){l=_0(l);var h=-1,$=s.length,_=$>2?s[2]:n;for(_&&Ot(s[0],s[1],_)&&($=1);++h<$;)for(var L=s[h],I=En(L),O=-1,Y=I.length;++O1),L}),Fn(l,al(l),h),$&&(h=Yt(h,b|S|C,Yu));for(var _=s.length;_--;)Ta(h,s[_]);return h});function pS(l,s){return mh(l,Ce(He(s)))}var vS=hr(function(l,s){return l==null?{}:Ru(l,s)});function mh(l,s){if(l==null)return{};var h=T0(al(l),function($){return[$]});return s=He(s),c2(l,h,function($,_){return s($,_[0])})}function hS(l,s,h){s=pr(s,l);var $=-1,_=s.length;for(_||(_=1,l=n);++$<_;){var L=l==null?n:l[Hn(s[$])];L===n&&($=_,L=h),l=ai(L)?L.call(l):L}return l}function mS(l,s,h){return l==null?l:Q2(l,s,h)}function gS(l,s,h,$){return $=typeof $=="function"?$:n,l==null?l:Q2(l,s,h,$)}var gh=Uu(Lt),yh=Uu(En);function yS(l,s,h){var $=Qe(l),_=$||ro(l)||as(l);if(s=He(s,4),h==null){var L=l&&l.constructor;_?h=$?new L:[]:Q0(l)?h=ai(L)?Fi(Vn(l)):{}:h={}}return(_?Ct:an)(l,function(I,O,Y){return s(h,I,O,Y)}),h}function bS(l,s){return l==null?!0:Ta(l,s)}function xS(l,s,h){return l==null?l:Zu(l,s,Aa(h))}function wS(l,s,h,$){return $=typeof $=="function"?$:n,l==null?l:Zu(l,s,Aa(h),$)}function ss(l){return l==null?[]:Vo(l,Lt(l))}function $S(l){return l==null?[]:Vo(l,En(l))}function SS(l,s,h){return h===n&&(h=s,s=n),h!==n&&(h=gr(h),h=h===h?h:0),s!==n&&(s=gr(s),s=s===s?s:0),Lr(gr(l),s,h)}function CS(l,s,h){return s=si(s),h===n?(h=s,s=0):h=si(h),l=gr(l),Tu(l,s,h)}function _S(l,s,h){if(h&&typeof h!="boolean"&&Ot(l,s,h)&&(s=h=n),h===n&&(typeof s=="boolean"?(h=s,s=n):typeof l=="boolean"&&(h=l,l=n)),l===n&&s===n?(l=0,s=1):(l=si(l),s===n?(s=l,l=0):s=si(s)),l>s){var $=l;l=s,s=$}if(h||l%1||s%1){var _=zo();return _t(l+_*(s-l+lu("1e-"+((_+"").length-1))),s)}return Ki(l,s)}var PS=J2(function(l,s,h){return s=s.toLowerCase(),l+(h?bh(s):s)});function bh(l){return P7(P0(l).toLowerCase())}function xh(l){return l=P0(l),l&&l.replace(_1,U1).replace(R1,"")}function ES(l,s,h){l=P0(l),s=Xt(s);var $=l.length;h=h===n?$:Lr(n0(h),0,$);var _=h;return h-=s.length,h>=0&&l.slice(h,_)==s}function kS(l){return l=P0(l),l&&g1.test(l)?l.replace(R2,G1):l}function TS(l){return l=P0(l),l&&Eo.test(l)?l.replace(Po,"\\$&"):l}var MS=J2(function(l,s,h){return l+(h?"-":"")+s.toLowerCase()}),AS=J2(function(l,s,h){return l+(h?" ":"")+s.toLowerCase()}),LS=ju("toLowerCase");function DS(l,s,h){l=P0(l),s=n0(s);var $=s?O2(l):0;if(!s||$>=s)return l;var _=(s-$)/2;return ol(t2(_),h)+l+ol(H2(_),h)}function RS(l,s,h){l=P0(l),s=n0(s);var $=s?O2(l):0;return s&&$>>0,h?(l=P0(l),l&&(typeof s=="string"||s!=null&&!S7(s))&&(s=Xt(s),!s&&Ti(l))?Fr(rn(l),0,h):l.split(s,h)):[]}var NS=J2(function(l,s,h){return l+(h?" ":"")+P7(s)});function HS(l,s,h){return l=P0(l),h=h==null?0:Lr(n0(h),0,l.length),s=Xt(s),l.slice(h,h+s.length)==s}function zS(l,s,h){var $=M.templateSettings;h&&Ot(l,s,h)&&(s=n),l=P0(l),s=Gd({},s,$,Gu);var _=Gd({},s.imports,$.imports,Gu),L=Lt(_),I=Vo(_,L),O,Y,pe=0,ve=s.interpolate||Ol,be="__p += '",Te=Io((s.escape||Ol).source+"|"+ve.source+"|"+(ve===qs?B2:Ol).source+"|"+(s.evaluate||Ol).source+"|$","g"),Fe="//# sourceURL="+(h0.call(s,"sourceURL")?(s.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++Zf+"]")+` `;l.replace(Te,function(Ue,u0,p0,Wn,cn,Un){return p0||(p0=Wn),be+=l.slice(pe,Un).replace(Df,q1),u0&&(O=!0,be+=`' + __e(`+u0+`) + '`),cn&&(Y=!0,be+=`'; @@ -88,7 +88,7 @@ function print() { __p += __j.call(arguments, '') } `:`; `)+be+`return __p -}`;var o0=$h(function(){return v0(L,Fe+"return "+be).apply(n,I)});if(o0.source=be,$7(o0))throw o0;return o0}function jS(l){return P0(l).toLowerCase()}function KS(l){return P0(l).toUpperCase()}function WS(l,s,h){if(l=P0(l),l&&(h||s===n))return j1(l);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=rn(s),L=K1($,_),I=yu($,_)+1;return Fr($,L,I).join("")}function US(l,s,h){if(l=P0(l),l&&(h||s===n))return l.slice(0,ra(l)+1);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=yu($,rn(s))+1;return Fr($,0,_).join("")}function GS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.replace(Xs,"");if(!l||!(s=Xt(s)))return l;var $=rn(l),_=K1($,rn(s));return Fr($,_).join("")}function qS(l,s){var h=j,$=X;if(Q0(s)){var _="separator"in s?s.separator:_;h="length"in s?n0(s.length):h,$="omission"in s?Xt(s.omission):$}l=P0(l);var L=l.length;if(Ti(l)){var I=rn(l);L=I.length}if(h>=L)return l;var O=h-O2($);if(O<1)return $;var Y=I?Fr(I,0,O).join(""):l.slice(0,O);if(_===n)return Y+$;if(I&&(O+=Y.length-O),S7(_)){if(l.slice(O).search(_)){var pe,ve=Y;for(_.global||(_=Io(_.source,P0(Js.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;Y=Y.slice(0,be===n?O:be)}}else if(l.indexOf(Xt(_),O)!=O){var Te=Y.lastIndexOf(_);Te>-1&&(Y=Y.slice(0,Te))}return Y+$}function YS(l){return l=P0(l),l&&m1.test(l)?l.replace(D2,Y1):l}var XS=J2(function(l,s,h){return l+(h?" ":"")+s.toUpperCase()}),P7=ju("toUpperCase");function wh(l,s,h){return l=P0(l),s=h?n:s,s===n?Uf(l)?Xf(l):jf(l):l.match(s)||[]}var $h=t0(function(l,s){try{return Vt(l,n,s)}catch(h){return $7(h)?h:new Ge(h)}}),QS=hr(function(l,s){return Ct(s,function(h){h=Hn(h),sr(l,h,we(l[h],l))}),l});function JS(l){var s=l==null?0:l.length,h=He();return l=s?T0(l,function($){if(typeof $[1]!="function")throw new hn(d);return[h($[0]),$[1]]}):[],t0(function($){for(var _=-1;++_fe)return[];var h=H,$=_t(l,H);s=He(s),l-=H;for(var _=gu($,s);++h0||s<0)?new Xe(h):(l<0?h=h.takeRight(-l):l&&(h=h.drop(l)),s!==n&&(s=n0(s),h=s<0?h.dropRight(-s):h.take(s-l)),h)},Xe.prototype.takeRightWhile=function(l){return this.reverse().takeWhile(l).reverse()},Xe.prototype.toArray=function(){return this.take(H)},an(Xe.prototype,function(l,s){var h=/^(?:filter|find|map|reject)|While$/.test(s),$=/^(?:head|last)$/.test(s),_=M[$?"take"+(s=="last"?"Right":""):s],L=$||/^find/.test(s);_&&(M.prototype[s]=function(){var I=this.__wrapped__,O=$?[1]:arguments,Y=I instanceof Xe,pe=O[0],ve=Y||Qe(I),be=function(u0){var p0=_.apply(M,e2([u0],O));return $&&Te?p0[0]:p0};ve&&h&&typeof pe=="function"&&pe.length!=1&&(Y=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=L&&!Te,o0=Y&&!Fe;if(!L&&ve){I=o0?I:new Xe(this);var Ue=l.apply(I,O);return Ue.__actions__.push({func:jn,args:[be],thisArg:n}),new Pt(Ue,Te)}return We&&o0?l.apply(this,O):(Ue=this.thru(be),We?$?Ue.value()[0]:Ue.value():Ue)})}),Ct(["pop","push","shift","sort","splice","unshift"],function(l){var s=kr[l],h=/^(?:push|sort|unshift)$/.test(l)?"tap":"thru",$=/^(?:pop|shift)$/.test(l);M.prototype[l]=function(){var _=arguments;if($&&!this.__chain__){var L=this.value();return s.apply(Qe(L)?L:[],_)}return this[h](function(I){return s.apply(Qe(I)?I:[],_)})}}),an(Xe.prototype,function(l,s){var h=M[s];if(h){var $=h.name+"";h0.call(Vi,$)||(Vi[$]=[]),Vi[$].push({name:s,func:h})}}),Vi[Xi(n,V).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=va,Xe.prototype.reverse=_u,Xe.prototype.value=Zi,M.prototype.at=es,M.prototype.chain=oi,M.prototype.commit=ts,M.prototype.next=vc,M.prototype.plant=h7,M.prototype.reverse=mc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=m7,M.prototype.first=M.prototype.head,Mr&&(M.prototype[Mr]=hc),M},Mi=Qf();nr?((nr.exports=Mi)._=Mi,Bo._=Mi):B0._=Mi}).call(ZZ)}(Ac,Ac.exports)),Ac.exports}var NZ=OZ();const HZ=({availableVariations:t,currentValue:e,flagKey:n,flagValue:i,updateOverride:a})=>{switch(typeof i){case"boolean":return k.jsx("div",{className:"animated-switch-container",children:k.jsxs(LV,{className:"animated-switch",isSelected:e,onChange:c=>{a(n,c)},children:[k.jsx("span",{className:"switch-text switch-text-false",children:"False"}),k.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let c=t,d=c.findIndex(v=>NZ.isEqual(v.value,e));d===-1&&(c=[{_id:"OVERRIDE",name:"Local Override",value:e},...c],d=0);const f=v=>m=>{m.preventDefault();const g=Object.fromEntries(new FormData(m.currentTarget));a(n,JSON.parse(g.value)),v()};return k.jsxs(_r,{gap:"2",children:[k.jsx(tZ,{"aria-label":"flag variations select",selectedKey:d,onSelectionChange:v=>{typeof v!="number"?console.error(`selected non numeric key: ${v}`):a(n,c[v].value)},style:{maxWidth:"250px"},children:k.jsxs(x.Fragment,{children:[d!==null&&c[d]._id==="OVERRIDE"?k.jsxs(Il,{children:[k.jsxs(Yn,{children:[k.jsx(rm,{}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(Vl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):k.jsxs(Yn,{children:[k.jsx(rm,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(a$,{children:k.jsx(n$,{children:c.map((v,m)=>{const g=v.name?v.name:JSON.stringify(v.value);return k.jsx(r$,{id:m,textValue:g,children:v._id==="OVERRIDE"?k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"devices",size:"small"}),g]})}):g},m)})})})]},".0")}),k.jsx(Dt,{width:"2rem",height:"2rem",children:k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(ih,{icon:"edit","aria-label":"edit variation value"}),k.jsx(Vl,{children:"Edit the served variation value as JSON"})]}),k.jsx(o$,{children:k.jsx(i$,{children:k.jsx(e$,{children:({close:v})=>k.jsxs(vx,{onSubmit:f(v),children:[k.jsxs(c$,{defaultValue:JSON.stringify(e,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:m=>{try{return JSON.parse(m),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[k.jsx(v1,{children:`${n} value`}),k.jsx(u$,{style:{fontFamily:"monospace"}}),k.jsx(kf,{slot:"description",children:"Update the value as JSON"}),k.jsx(t$,{})]}),k.jsxs(Xw,{children:[k.jsx(Yn,{onPress:v,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var g5={exports:{}},zZ=g5.exports,am;function jZ(){return am||(am=1,function(t){((e,n)=>{t.exports?t.exports=n():e.fuzzysort=n()})(zZ,e=>{var n=(oe,q)=>{if(!oe||!q)return Pe;var ue=P(oe);he(q)||(q=C(q));var $e=ue.bitflags;return($e&q._bitflags)!==$e?Pe:A(ue,q)},i=(oe,q,ue)=>{if(!oe)return ue!=null&&ue.all?T(q,ue):fe;var $e=P(oe),Ee=$e.bitflags,Se=$e.containsSpace,me=b((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||_e,ke=0,ze=0,Ye=q.length;function g0(jt){kece.peek()._score&&ce.replaceTop(jt))}if(ue!=null&&ue.key)for(var k0=ue.key,l0=0;l0-1e3&&j[c0]>se){var i0=(j[c0]+X[c0])/4;i0>j[c0]&&(j[c0]=i0)}X[c0]>j[c0]&&(j[c0]=X[c0])}}if(Se){for(let e0=0;e0<$e.spaceSearches.length;e0++)if(j[e0]===se)continue e}else{var Ze=!1;for(let e0=0;e0-1e3&&$0>se){var i0=($0+a0._score)/4;i0>$0&&($0=i0)}a0._score>$0&&($0=a0._score)}}if(q0.obj=w0,q0._score=$0,ue!=null&&ue.scoreFn){if($0=ue.scoreFn(q0),!$0)continue;$0=b($0),q0._score=$0}$0=0;--l0)W0[l0]=ce.poll();return W0.total=ke+ze,W0},a=(oe,q="",ue="")=>{for(var $e=typeof q=="function"?q:void 0,Ee=oe.target,Se=Ee.length,me=oe.indexes,Be="",ke=0,ze=0,Ye=!1,g0=[],k0=0;k0{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe="");var q=R(oe);return m(oe,{_targetLower:q._lower,_targetLowerCodes:q.lowerCodes,_bitflags:q.bitflags})},d=()=>{z.clear(),U.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((q,ue)=>q-ue)}set indexes(q){return this._indexes=q}highlight(q,ue){return a(this,q,ue)}get score(){return g(this._score)}set score(q){this._score=b(q)}}class v extends Array{get score(){return g(this._score)}set score(q){this._score=b(q)}}var m=(oe,q)=>{const ue=new f;return ue.target=oe,ue.obj=q.obj??Pe,ue._score=q._score??se,ue._indexes=q._indexes??[],ue._targetLower=q._targetLower??"",ue._targetLowerCodes=q._targetLowerCodes??Pe,ue._nextBeginningIndexes=q._nextBeginningIndexes??Pe,ue._bitflags=q._bitflags??0,ue},g=oe=>oe===se?0:oe>1?oe:Math.E**(((-oe+1)**.04307-1)*-2),b=oe=>oe===0?se:oe>1?oe:1-Math.pow(Math.log(oe)/-2+1,1/.04307),S=oe=>{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe=""),oe=oe.trim();var q=R(oe),ue=[];if(q.containsSpace){var $e=oe.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=R($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:q.lowerCodes,_lower:q._lower,containsSpace:q.containsSpace,bitflags:q.bitflags,spaceSearches:ue}},C=oe=>{if(oe.length>999)return c(oe);var q=z.get(oe);return q!==void 0||(q=c(oe),z.set(oe,q)),q},P=oe=>{if(oe.length>999)return S(oe);var q=U.get(oe);return q!==void 0||(q=S(oe),U.set(oe,q)),q},T=(oe,q)=>{var ue=[];ue.total=oe.length;var $e=(q==null?void 0:q.limit)||_e;if(q!=null&&q.key)for(var Ee=0;Ee=$e)return ue}}else if(q!=null&&q.keys)for(var Ee=0;Ee=0;--ze){var me=Q(Se,q.keys[ze]);if(!me){ke[ze]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[ze]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(oe,q,ue=!1,$e=!1)=>{if(ue===!1&&oe.containsSpace)return V(oe,q,$e);for(var Ee=oe._lower,Se=oe.lowerCodes,me=Se[0],Be=q._targetLowerCodes,ke=Se.length,ze=Be.length,l0=0,Ye=0,g0=0;;){var k0=me===Be[Ye];if(k0){if(le[g0++]=Ye,++l0,l0===ke)break;me=Se[l0]}if(++Ye,Ye>=ze)return Pe}var l0=0,w0=!1,r0=0,a0=q._nextBeginningIndexes;a0===Pe&&(a0=q._nextBeginningIndexes=N(q.target)),Ye=le[0]===0?0:a0[le[0]-1];var tt=0;if(Ye!==ze)for(;;)if(Ye>=ze){if(l0<=0||(++tt,tt>200))break;--l0;var y0=D[--r0];Ye=a0[y0]}else{var k0=Se[l0]===Be[Ye];if(k0){if(D[r0++]=Ye,++l0,l0===ke){w0=!0;break}++Ye}else Ye=a0[Ye]}var d0=ke<=1?-1:q._targetLower.indexOf(Ee,le[0]),De=!!~d0,i0=De?d0===0||q._nextBeginningIndexes[d0-1]===d0:!1;if(De&&!i0){for(var Ze=0;Ze{for(var c0=0,er=0,St=1;St24&&(c0*=(pn-24)*10)}return c0-=(ze-ke)/2,De&&(c0/=1+ke*ke*1),i0&&(c0/=1+ke*ke*1),c0-=(ze-ke)/2,c0};if(w0)if(i0){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=Pe,me=0,Be=oe.spaceSearches,ke=Be.length,ze=0,Ye=()=>{for(let i0=ze-1;i0>=0;i0--)q._nextBeginningIndexes[ie[i0*2+0]]=ie[i0*2+1]},g0=!1,De=0;De=0&&tt===q._nextBeginningIndexes[Ze];Ze--)q._nextBeginningIndexes[Ze]=a0,ie[ze*2+0]=Ze,ie[ze*2+1]=tt,ze++}}Ee+=Se._score/ke,X[De]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var De=0;De{for(var q=oe.length,ue=oe.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var q=oe.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,ze=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!ze;Ee=ke,Se=ze,Ye&&(ue[$e++]=me)}return ue},N=oe=>{for(var q=oe.length,ue=F(oe),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?q:Ee);return $e},z=new Map,U=new Map,le=[],D=[],ie=[],j=[],X=[],xe=[],G=[],Q=(oe,q)=>{var ue=oe[q];if(ue!==void 0)return ue;if(typeof q=="function")return q(oe);var $e=q;Array.isArray(q)||($e=q.split("."));for(var Ee=$e.length,Se=-1;oe&&++Setypeof oe=="object"&&typeof oe._bitflags=="number",_e=1/0,se=-_e,fe=[];fe.total=0;var Pe=null,ae=c(""),H=oe=>{var q=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=q[me],ke=1;ke>1]=q[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)q[me]=q[Ye];q[me]=Be};return $e.add=Se=>{var me=ue;q[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)q[me]=q[Be];q[me]=Se},$e.poll=Se=>{if(ue!==0){var me=q[0];return q[0]=q[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return q[0]},$e.replaceTop=Se=>{q[0]=Se,Ee()},$e},ce=H();return{single:n,go:i,prepare:c,cleanup:d}})}(g5)),g5.exports}var KZ=jZ();const WZ=t1(KZ);function UZ({availableVariations:t,selectedProject:e,flags:n,overrides:i,setOverrides:a}){const[c,d]=x.useState(!1),[f,v]=x.useState(""),[m,g]=x.useState(0),b=20,S=x.useMemo(()=>i&&Object.keys(i).length>0,[i]);x.useEffect(()=>{!S&&c&&d(!1)},[S,c]);const C=x.useMemo(()=>n?Object.entries(n).filter(z=>{if(!f)return!0;const[U]=z,le=WZ.single(f.toLowerCase(),U);return le&&le.score>-5e3}).filter(z=>{const[U]=z,le=U in i;return!(c&&!le)}):[],[n,f,c,i]),P=x.useMemo(()=>{const N=m*b,z=N+b;return C.slice(N,z)},[C,m]),T=x.useCallback((N,z)=>{var le;const U={...i,[N]:{value:z,version:((le=i[N])==null?void 0:le.version)||0}};a(U),fetch(Wr(`/dev/projects/${e}/overrides/${N}`),{method:"PUT",body:JSON.stringify(z)}).then(async D=>{if(!D.ok)throw new Error(`got ${D.status} ${D.statusText}. ${await D.text()}`)}).catch(D=>{a(i),console.error("unable to update override",D)})},[i,e]),A=x.useCallback(async N=>{const z={...i};delete z[N],a(z);try{const U=await fetch(Wr(`/dev/projects/${e}/overrides/${N}`),{method:"DELETE"});if(!U.ok)throw new Error(`got ${U.status} ${U.statusText}. ${await U.text()}`)}catch(U){console.error("unable to remove override",U),a(i)}},[i,e]),V=x.useCallback(async()=>{a({});try{const N=await fetch(Wr(`/dev/projects/${e}/overrides`),{method:"DELETE"});if(!N.ok)throw new Error(`got ${N.status} ${N.statusText}. ${await N.text()}`)}catch(N){console.error("unable to remove all overrides",N),a(i)}},[i,e]);if(!n)return null;const R=Math.ceil(C.length/b),F=N=>{switch(N){case"next":g(z=>Math.min(z+1,R-1));break;case"prev":g(z=>Math.max(z-1,0));break;case"first":g(0);break;case"last":g(R-1);break;default:console.error("invalid page change direction.")}};return k.jsxs(k.Fragment,{children:[k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:IZ.borderRadius.regular,children:[k.jsxs(v1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[k.jsx(DI,{id:"only-show-overrides",isSelected:c,onChange:N=>{d(N)},isDisabled:!S,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),k.jsxs(Yn,{variant:"destructive",isDisabled:!S,onPress:async()=>{i&&(await V(),a({}),d(!1))},children:[k.jsx(K0,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),k.jsxs(xf,{gap:"4",children:[k.jsx(_r,{gap:"4",children:k.jsx(qF,{"aria-label":"Search flags",children:k.jsxs(UI,{children:[k.jsx(K0,{name:"search",size:"small"}),k.jsx(qw,{placeholder:"Search flags by key",onChange:N=>{v(N.target.value),g(0)},value:f,"aria-label":"Search flags input"}),k.jsx(ih,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>v("")})]})})}),k.jsx("ul",{className:"flags-list",children:P.map(([N,{value:z}],U)=>{var j;const le=(j=i[N])==null?void 0:j.value,D=N in i,ie=D?le:z;return k.jsxs("li",{style:{backgroundColor:U%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[k.jsx(Dt,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:k.jsxs(_r,{gap:"2",children:[k.jsx(mf,{asChild:!0,text:N,children:k.jsx("code",{className:D?"has-override":"",children:N})}),D&&k.jsx(Yn,{"aria-label":"Remove override",onPress:()=>{A(N)},variant:"destructive",children:k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"cancel",size:"small"}),"Remove override"]})})]})}),k.jsx(Dt,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:k.jsx(HZ,{availableVariations:t[N]?t[N]:[],currentValue:ie,flagValue:z,flagKey:N,updateOverride:T})})]},N)})})]}),k.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:k.jsx(SR,{currentOffset:m*b,isReady:!0,onChange:N=>F(N),pageSize:b,resourceName:"flags",totalCount:C.length})})]})}const GZ=async()=>{const t=await fetch(Wr("/dev/projects")),e=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return e};function qZ({selectedProject:t,setSelectedProject:e,setShowBanner:n}){const[i,a]=x.useState([]),[c,d]=x.useState(!0),f=v=>{a(v),n(v.length==0),v.length==1&&e(v[0]),d(!1)};return x.useEffect(()=>{GZ().then(f).catch(v=>{console.error(v),d(!1)}),a([])},[]),c?k.jsxs("div",{style:{textAlign:"center"},children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),k.jsx("p",{children:"Projects are loading"})]}):i.length>0?k.jsxs(lV,{children:[k.jsx(_r,{gap:"1",children:k.jsxs(Il,{children:[k.jsx(Yn,{children:t??"Select a project"}),k.jsx(Vl,{children:t==null?"Please select a project":"This is the selected project"})]})}),k.jsx(a$,{children:k.jsx(yF,{children:i.map(v=>k.jsx(xF,{onAction:()=>{e(v)},children:v},v))})})]}):k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const YZ=async t=>{const e=await fetch(Wr(`/dev/projects/${t}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return n},XZ=({selectedProject:t,setFlags:e,setAvailableVariations:n})=>{const[i,a]=x.useState(!1),c=async()=>{a(!0);try{const d=await YZ(t);n(d.availableVariations),e(Tp(d.flagsState))}catch(d){im.warning("Sync failed"),console.error("Sync failed:",d)}finally{im.success("Sync successful"),a(!1)}};return t?k.jsxs(Il,{children:[k.jsx(Yn,{onPress:c,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}):k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"sync",size:"small"}),k.jsx("span",{children:"Sync"})]})})}),k.jsx(Vl,{children:"Sync the selected project from the source environment"})]}):null};async function QZ(t,e){const n=await fetch(Wr(`/dev/projects/${t}/environments?limit=20${e?`&name=${e}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var S3,sm;function d$(){if(sm)return S3;sm=1;function t(e){var n=typeof e;return e!=null&&(n=="object"||n=="function")}return S3=t,S3}var C3,um;function JZ(){if(um)return C3;um=1;var t=typeof so=="object"&&so&&so.Object===Object&&so;return C3=t,C3}var _3,cm;function f$(){if(cm)return _3;cm=1;var t=JZ(),e=typeof self=="object"&&self&&self.Object===Object&&self,n=t||e||Function("return this")();return _3=n,_3}var P3,dm;function eO(){if(dm)return P3;dm=1;var t=f$(),e=function(){return t.Date.now()};return P3=e,P3}var E3,fm;function tO(){if(fm)return E3;fm=1;var t=/\s/;function e(n){for(var i=n.length;i--&&t.test(n.charAt(i)););return i}return E3=e,E3}var k3,pm;function nO(){if(pm)return k3;pm=1;var t=tO(),e=/^\s+/;function n(i){return i&&i.slice(0,t(i)+1).replace(e,"")}return k3=n,k3}var T3,vm;function p$(){if(vm)return T3;vm=1;var t=f$(),e=t.Symbol;return T3=e,T3}var M3,hm;function rO(){if(hm)return M3;hm=1;var t=p$(),e=Object.prototype,n=e.hasOwnProperty,i=e.toString,a=t?t.toStringTag:void 0;function c(d){var f=n.call(d,a),v=d[a];try{d[a]=void 0;var m=!0}catch{}var g=i.call(d);return m&&(f?d[a]=v:delete d[a]),g}return M3=c,M3}var A3,mm;function iO(){if(mm)return A3;mm=1;var t=Object.prototype,e=t.toString;function n(i){return e.call(i)}return A3=n,A3}var L3,gm;function oO(){if(gm)return L3;gm=1;var t=p$(),e=rO(),n=iO(),i="[object Null]",a="[object Undefined]",c=t?t.toStringTag:void 0;function d(f){return f==null?f===void 0?a:i:c&&c in Object(f)?e(f):n(f)}return L3=d,L3}var D3,ym;function lO(){if(ym)return D3;ym=1;function t(e){return e!=null&&typeof e=="object"}return D3=t,D3}var R3,bm;function aO(){if(bm)return R3;bm=1;var t=oO(),e=lO(),n="[object Symbol]";function i(a){return typeof a=="symbol"||e(a)&&t(a)==n}return R3=i,R3}var B3,xm;function sO(){if(xm)return B3;xm=1;var t=nO(),e=d$(),n=aO(),i=NaN,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,f=parseInt;function v(m){if(typeof m=="number")return m;if(n(m))return i;if(e(m)){var g=typeof m.valueOf=="function"?m.valueOf():m;m=e(g)?g+"":g}if(typeof m!="string")return m===0?m:+m;m=t(m);var b=c.test(m);return b||d.test(m)?f(m.slice(2),b?2:8):a.test(m)?i:+m}return B3=v,B3}var V3,wm;function uO(){if(wm)return V3;wm=1;var t=d$(),e=eO(),n=sO(),i="Expected a function",a=Math.max,c=Math.min;function d(f,v,m){var g,b,S,C,P,T,A=0,V=!1,R=!1,F=!0;if(typeof f!="function")throw new TypeError(i);v=n(v)||0,t(m)&&(V=!!m.leading,R="maxWait"in m,S=R?a(n(m.maxWait)||0,v):S,F="trailing"in m?!!m.trailing:F);function N(G){var Q=g,he=b;return g=b=void 0,A=G,C=f.apply(he,Q),C}function z(G){return A=G,P=setTimeout(D,v),V?N(G):C}function U(G){var Q=G-T,he=G-A,_e=v-Q;return R?c(_e,S-he):_e}function le(G){var Q=G-T,he=G-A;return T===void 0||Q>=v||Q<0||R&&he>=S}function D(){var G=e();if(le(G))return ie(G);P=setTimeout(D,U(G))}function ie(G){return P=void 0,F&&g?N(G):(g=b=void 0,C)}function j(){P!==void 0&&clearTimeout(P),A=0,g=T=b=P=void 0}function X(){return P===void 0?C:ie(e())}function xe(){var G=e(),Q=le(G);if(g=arguments,b=this,T=G,Q){if(P===void 0)return z(T);if(R)return clearTimeout(P),P=setTimeout(D,v),N(T)}return P===void 0&&(P=setTimeout(D,v)),C}return xe.cancel=j,xe.flush=X,xe}return V3=d,V3}var cO=uO();const dO=t1(cO);function fO({projectKey:t,sourceEnvironmentKey:e,selectedEnvironment:n,setSelectedEnvironment:i}){const[a,c]=x.useState(null),[d,f]=x.useState(""),[v,m]=x.useState(!1),g=x.useCallback(dO(b=>{m(!0),QZ(t,b).then(S=>{if(c(S),!n){const C=S.find(P=>P.key===e);C?i(C):S.length>0&&i({name:"",key:e||""})}}).catch(S=>{console.error("Error fetching environments:",S)}).finally(()=>{m(!1)})},300),[t,e,n,i]);return x.useEffect(()=>{g(d)},[g,d]),k.jsxs(xf,{gap:"3",children:[k.jsx(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:k.jsx(v1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),k.jsxs(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[k.jsxs("div",{style:{position:"relative",flexGrow:1},children:[k.jsx(qw,{id:"environmentSearch",value:d,onChange:b=>f(b.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),v&&k.jsx(Dt,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:k.jsx(h1,{size:"small","aria-label":"Loading environments"})})]}),k.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:k.jsx("code",{children:n==null?void 0:n.key})})]}),k.jsx(Dt,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:k.jsx(n$,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:b=>{const S=Array.from(b)[0],C=a==null?void 0:a.find(P=>P.key===S);C&&i(C)},children:a==null?void 0:a.map(b=>k.jsx(r$,{id:b.key,children:b.name},b.key))})})]})}function pO({context:t,setContext:e}){return k.jsxs(xf,{gap:"3",children:[k.jsx(v1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),k.jsxs(c$,{value:t,onChange:e,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[k.jsx(u$,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),k.jsx(kf,{slot:"description",children:"Edit the context as JSON"}),k.jsx(t$,{})]})]})}function vO({isSubmitting:t,selectedEnvironment:e}){return k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:t,children:t?k.jsx(_r,{gap:"2",children:k.jsxs(Dt,{display:"flex",alignItems:"center",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}),k.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):e?k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),k.jsx("span",{children:e})]}):"Environment"})}function hO({projectKey:t,selectedEnvironment:e,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:a,updateProjectSettings:c}){const[d,f]=x.useState(e),[v,m]=x.useState(a),[g,b]=x.useState(!1);x.useEffect(()=>{f(e),m(a)},[e,a]);const S=async P=>{b(!0);try{P(),await c(d,v),n(d)}catch(T){console.error("Error submitting project settings:",T)}finally{b(!1)}},C=()=>{f(e),m(a)};return k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(vO,{isSubmitting:g,selectedEnvironment:i}),k.jsx(Vl,{children:k.jsx("span",{children:"Current environment. Click to update."})})]}),k.jsx(o$,{isDismissable:!1,children:k.jsx(i$,{children:k.jsx(e$,{children:({close:P})=>k.jsxs(vx,{onSubmit:T=>{T.preventDefault(),S(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[k.jsx(v1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),k.jsxs(xf,{gap:"3",children:[k.jsx(fO,{projectKey:t,sourceEnvironmentKey:i,selectedEnvironment:d,setSelectedEnvironment:f}),k.jsx(Dt,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),k.jsx(pO,{context:v,setContext:m})]}),k.jsxs(Xw,{style:{justifyContent:"flex-end"},children:[k.jsx(Yn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:g,children:g?k.jsxs(_r,{gap:"2",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),k.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function mO(){const[t,e]=x.useState(null),[n,i]=x.useState(null),[a,c]=x.useState(null),[d,f]=x.useState({}),[v,m]=x.useState({}),[g,b]=x.useState(null),[S,C]=x.useState(!1),[P,T]=x.useState("{}"),A=x.useCallback(async()=>{if(!t)return;const R=await fetch(Wr(`/dev/projects/${t}?expand=overrides&expand=availableVariations`)),F=await R.json();if(!R.ok)throw new Error(`Got ${R.status}, ${R.statusText} from flag fetch`);const{flagsState:N,overrides:z,sourceEnvironmentKey:U,availableVariations:le,context:D}=F;b(Tp(N)),f(z),c(U),m(le),T(JSON.stringify(D||"{}",null,2));const j=(await gO(t)).find(X=>X.key===U);j&&i(j)},[t]);x.useEffect(()=>{t&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,t]),x.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const V=x.useCallback(async(R,F)=>{if(t)try{const N=await fetch(Wr(`/dev/projects/${t}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:R==null?void 0:R.key,context:JSON.parse(F)})});if(!N.ok)throw new Error(`Got ${N.status}, ${N.statusText} from project settings update`);const z=await N.json(),{flagsState:U,sourceEnvironmentKey:le,context:D}=z;b(Tp(U)),c(le),T(JSON.stringify(D||{},null,2)),i(R),await A()}catch(N){console.error("Error updating project settings:",N)}},[t,A]);return k.jsx("div",{style:{width:"100%"},children:k.jsx(Dt,{width:"100%",minWidth:"600px",children:k.jsxs(Dt,{display:"flex",flexDirection:"column",width:"100%",children:[S&&k.jsx(Dt,{marginBottom:"2rem",width:"100%",children:k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!S&&k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[k.jsx(qZ,{selectedProject:t,setSelectedProject:e,setShowBanner:C}),t&&k.jsx(hO,{projectKey:t,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:a,context:P,updateProjectSettings:V}),k.jsx(XZ,{selectedProject:t,setFlags:b,setAvailableVariations:m})]}),t&&k.jsx(Dt,{width:"100%",children:k.jsx(UZ,{availableVariations:v,selectedProject:t,flags:g,overrides:d,setOverrides:R=>{f(R)}})})]})})})}async function gO(t){const e=await fetch(Wr(`/dev/projects/${t}/environments`));if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from environments fetch`);return e.json()}const yO=({})=>{const[t,e]=x.useState([]);return x.useEffect(()=>{console.log(Wr("/events/tee"));const n=new EventSource(Wr("/events/tee"));return n.addEventListener("put",i=>{if(!i.data||i.data.trim()==="")return;const a={id:Math.random().toString(36).substr(2,9),timestamp:Date.now(),data:i.data};e(c=>[...c,a])}),()=>{console.log("closing event source"),n.close()}},[]),k.jsxs("div",{children:[k.jsx("h3",{children:"Events Stream"}),k.jsx("ul",{children:t.map(n=>{let i=n.data;try{const a=JSON.parse(n.data);i=JSON.stringify(a,null,2)}catch{i=n.data}return k.jsxs("li",{style:{marginBottom:"10px"},children:[k.jsx("div",{children:k.jsx("strong",{children:new Date(n.timestamp).toLocaleTimeString()})}),k.jsx("div",{style:{marginLeft:"10px",marginTop:"5px"},children:k.jsx("pre",{style:{margin:0,whiteSpace:"pre-wrap",wordBreak:"break-word"},children:i})})]},n.id)})}),t.length===0&&k.jsx("p",{children:"No events received yet..."})]})};function bO(){const[t,e]=x.useState("flags");return k.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:k.jsxs(Dt,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[k.jsxs(Dt,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[k.jsx(BZ,{onPress:()=>{e("flags")}}),k.jsx(VZ,{onPress:()=>{e("events")}})]}),k.jsxs(Dt,{padding:"1rem",width:"100%",children:[t==="flags"&&k.jsx(mO,{}),t==="events"&&k.jsx(yO,{})]})]})})}const xO="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function wO({children:t}){return x.useEffect(()=>{fetch(xO).then(async e=>e.text()).then(e=>{const i=new DOMParser().parseFromString(e,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(e=>{console.log("unable to fetch icon",e)})},[]),k.jsx(Pm.Provider,{value:{path:""},children:t})}const $O=()=>(x.useEffect(()=>{const t=window.matchMedia("(prefers-color-scheme: dark)"),e=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return e(t),t.addEventListener("change",e),()=>{t.removeEventListener("change",e)}},[]),k.jsx(ee.StrictMode,{children:k.jsxs(wO,{children:[k.jsx(bO,{}),k.jsx(AZ,{})]})}));KC.createRoot(document.getElementById("root")).render(k.jsx($O,{})); +}`;var o0=$h(function(){return v0(L,Fe+"return "+be).apply(n,I)});if(o0.source=be,$7(o0))throw o0;return o0}function jS(l){return P0(l).toLowerCase()}function KS(l){return P0(l).toUpperCase()}function WS(l,s,h){if(l=P0(l),l&&(h||s===n))return j1(l);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=rn(s),L=K1($,_),I=yu($,_)+1;return Fr($,L,I).join("")}function US(l,s,h){if(l=P0(l),l&&(h||s===n))return l.slice(0,ra(l)+1);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=yu($,rn(s))+1;return Fr($,0,_).join("")}function GS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.replace(Xs,"");if(!l||!(s=Xt(s)))return l;var $=rn(l),_=K1($,rn(s));return Fr($,_).join("")}function qS(l,s){var h=j,$=X;if(Q0(s)){var _="separator"in s?s.separator:_;h="length"in s?n0(s.length):h,$="omission"in s?Xt(s.omission):$}l=P0(l);var L=l.length;if(Ti(l)){var I=rn(l);L=I.length}if(h>=L)return l;var O=h-O2($);if(O<1)return $;var Y=I?Fr(I,0,O).join(""):l.slice(0,O);if(_===n)return Y+$;if(I&&(O+=Y.length-O),S7(_)){if(l.slice(O).search(_)){var pe,ve=Y;for(_.global||(_=Io(_.source,P0(Js.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;Y=Y.slice(0,be===n?O:be)}}else if(l.indexOf(Xt(_),O)!=O){var Te=Y.lastIndexOf(_);Te>-1&&(Y=Y.slice(0,Te))}return Y+$}function YS(l){return l=P0(l),l&&m1.test(l)?l.replace(D2,Y1):l}var XS=J2(function(l,s,h){return l+(h?" ":"")+s.toUpperCase()}),P7=ju("toUpperCase");function wh(l,s,h){return l=P0(l),s=h?n:s,s===n?Uf(l)?Xf(l):jf(l):l.match(s)||[]}var $h=t0(function(l,s){try{return Vt(l,n,s)}catch(h){return $7(h)?h:new Ge(h)}}),QS=hr(function(l,s){return Ct(s,function(h){h=Hn(h),sr(l,h,we(l[h],l))}),l});function JS(l){var s=l==null?0:l.length,h=He();return l=s?T0(l,function($){if(typeof $[1]!="function")throw new hn(d);return[h($[0]),$[1]]}):[],t0(function($){for(var _=-1;++_fe)return[];var h=H,$=_t(l,H);s=He(s),l-=H;for(var _=gu($,s);++h0||s<0)?new Xe(h):(l<0?h=h.takeRight(-l):l&&(h=h.drop(l)),s!==n&&(s=n0(s),h=s<0?h.dropRight(-s):h.take(s-l)),h)},Xe.prototype.takeRightWhile=function(l){return this.reverse().takeWhile(l).reverse()},Xe.prototype.toArray=function(){return this.take(H)},an(Xe.prototype,function(l,s){var h=/^(?:filter|find|map|reject)|While$/.test(s),$=/^(?:head|last)$/.test(s),_=M[$?"take"+(s=="last"?"Right":""):s],L=$||/^find/.test(s);_&&(M.prototype[s]=function(){var I=this.__wrapped__,O=$?[1]:arguments,Y=I instanceof Xe,pe=O[0],ve=Y||Qe(I),be=function(u0){var p0=_.apply(M,Jr([u0],O));return $&&Te?p0[0]:p0};ve&&h&&typeof pe=="function"&&pe.length!=1&&(Y=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=L&&!Te,o0=Y&&!Fe;if(!L&&ve){I=o0?I:new Xe(this);var Ue=l.apply(I,O);return Ue.__actions__.push({func:jn,args:[be],thisArg:n}),new Pt(Ue,Te)}return We&&o0?l.apply(this,O):(Ue=this.thru(be),We?$?Ue.value()[0]:Ue.value():Ue)})}),Ct(["pop","push","shift","sort","splice","unshift"],function(l){var s=kr[l],h=/^(?:push|sort|unshift)$/.test(l)?"tap":"thru",$=/^(?:pop|shift)$/.test(l);M.prototype[l]=function(){var _=arguments;if($&&!this.__chain__){var L=this.value();return s.apply(Qe(L)?L:[],_)}return this[h](function(I){return s.apply(Qe(I)?I:[],_)})}}),an(Xe.prototype,function(l,s){var h=M[s];if(h){var $=h.name+"";h0.call(Vi,$)||(Vi[$]=[]),Vi[$].push({name:s,func:h})}}),Vi[Xi(n,V).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=va,Xe.prototype.reverse=_u,Xe.prototype.value=Zi,M.prototype.at=es,M.prototype.chain=oi,M.prototype.commit=ts,M.prototype.next=vc,M.prototype.plant=h7,M.prototype.reverse=mc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=m7,M.prototype.first=M.prototype.head,Mr&&(M.prototype[Mr]=hc),M},Mi=Qf();nr?((nr.exports=Mi)._=Mi,Bo._=Mi):B0._=Mi}).call(ZZ)}(Ac,Ac.exports)),Ac.exports}var NZ=OZ();const HZ=({availableVariations:t,currentValue:e,flagKey:n,flagValue:i,updateOverride:a})=>{switch(typeof i){case"boolean":return k.jsx("div",{className:"animated-switch-container",children:k.jsxs(LV,{className:"animated-switch",isSelected:e,onChange:c=>{a(n,c)},children:[k.jsx("span",{className:"switch-text switch-text-false",children:"False"}),k.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let c=t,d=c.findIndex(v=>NZ.isEqual(v.value,e));d===-1&&(c=[{_id:"OVERRIDE",name:"Local Override",value:e},...c],d=0);const f=v=>m=>{m.preventDefault();const g=Object.fromEntries(new FormData(m.currentTarget));a(n,JSON.parse(g.value)),v()};return k.jsxs(_r,{gap:"2",children:[k.jsx(tZ,{"aria-label":"flag variations select",selectedKey:d,onSelectionChange:v=>{typeof v!="number"?console.error(`selected non numeric key: ${v}`):a(n,c[v].value)},style:{maxWidth:"250px"},children:k.jsxs(x.Fragment,{children:[d!==null&&c[d]._id==="OVERRIDE"?k.jsxs(Il,{children:[k.jsxs(Yn,{children:[k.jsx(rm,{}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(Vl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):k.jsxs(Yn,{children:[k.jsx(rm,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(a$,{children:k.jsx(n$,{children:c.map((v,m)=>{const g=v.name?v.name:JSON.stringify(v.value);return k.jsx(r$,{id:m,textValue:g,children:v._id==="OVERRIDE"?k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"devices",size:"small"}),g]})}):g},m)})})})]},".0")}),k.jsx(Dt,{width:"2rem",height:"2rem",children:k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(ih,{icon:"edit","aria-label":"edit variation value"}),k.jsx(Vl,{children:"Edit the served variation value as JSON"})]}),k.jsx(o$,{children:k.jsx(i$,{children:k.jsx(e$,{children:({close:v})=>k.jsxs(vx,{onSubmit:f(v),children:[k.jsxs(c$,{defaultValue:JSON.stringify(e,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:m=>{try{return JSON.parse(m),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[k.jsx(v1,{children:`${n} value`}),k.jsx(u$,{style:{fontFamily:"monospace"}}),k.jsx(kf,{slot:"description",children:"Update the value as JSON"}),k.jsx(t$,{})]}),k.jsxs(Xw,{children:[k.jsx(Yn,{onPress:v,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var g5={exports:{}},zZ=g5.exports,am;function jZ(){return am||(am=1,function(t){((e,n)=>{t.exports?t.exports=n():e.fuzzysort=n()})(zZ,e=>{var n=(oe,q)=>{if(!oe||!q)return Pe;var ue=P(oe);he(q)||(q=C(q));var $e=ue.bitflags;return($e&q._bitflags)!==$e?Pe:A(ue,q)},i=(oe,q,ue)=>{if(!oe)return ue!=null&&ue.all?T(q,ue):fe;var $e=P(oe),Ee=$e.bitflags,Se=$e.containsSpace,me=b((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||_e,ke=0,ze=0,Ye=q.length;function g0(jt){kece.peek()._score&&ce.replaceTop(jt))}if(ue!=null&&ue.key)for(var k0=ue.key,l0=0;l0-1e3&&j[c0]>se){var i0=(j[c0]+X[c0])/4;i0>j[c0]&&(j[c0]=i0)}X[c0]>j[c0]&&(j[c0]=X[c0])}}if(Se){for(let e0=0;e0<$e.spaceSearches.length;e0++)if(j[e0]===se)continue e}else{var Ze=!1;for(let e0=0;e0-1e3&&$0>se){var i0=($0+a0._score)/4;i0>$0&&($0=i0)}a0._score>$0&&($0=a0._score)}}if(q0.obj=w0,q0._score=$0,ue!=null&&ue.scoreFn){if($0=ue.scoreFn(q0),!$0)continue;$0=b($0),q0._score=$0}$0=0;--l0)W0[l0]=ce.poll();return W0.total=ke+ze,W0},a=(oe,q="",ue="")=>{for(var $e=typeof q=="function"?q:void 0,Ee=oe.target,Se=Ee.length,me=oe.indexes,Be="",ke=0,ze=0,Ye=!1,g0=[],k0=0;k0{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe="");var q=R(oe);return m(oe,{_targetLower:q._lower,_targetLowerCodes:q.lowerCodes,_bitflags:q.bitflags})},d=()=>{z.clear(),U.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((q,ue)=>q-ue)}set indexes(q){return this._indexes=q}highlight(q,ue){return a(this,q,ue)}get score(){return g(this._score)}set score(q){this._score=b(q)}}class v extends Array{get score(){return g(this._score)}set score(q){this._score=b(q)}}var m=(oe,q)=>{const ue=new f;return ue.target=oe,ue.obj=q.obj??Pe,ue._score=q._score??se,ue._indexes=q._indexes??[],ue._targetLower=q._targetLower??"",ue._targetLowerCodes=q._targetLowerCodes??Pe,ue._nextBeginningIndexes=q._nextBeginningIndexes??Pe,ue._bitflags=q._bitflags??0,ue},g=oe=>oe===se?0:oe>1?oe:Math.E**(((-oe+1)**.04307-1)*-2),b=oe=>oe===0?se:oe>1?oe:1-Math.pow(Math.log(oe)/-2+1,1/.04307),S=oe=>{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe=""),oe=oe.trim();var q=R(oe),ue=[];if(q.containsSpace){var $e=oe.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=R($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:q.lowerCodes,_lower:q._lower,containsSpace:q.containsSpace,bitflags:q.bitflags,spaceSearches:ue}},C=oe=>{if(oe.length>999)return c(oe);var q=z.get(oe);return q!==void 0||(q=c(oe),z.set(oe,q)),q},P=oe=>{if(oe.length>999)return S(oe);var q=U.get(oe);return q!==void 0||(q=S(oe),U.set(oe,q)),q},T=(oe,q)=>{var ue=[];ue.total=oe.length;var $e=(q==null?void 0:q.limit)||_e;if(q!=null&&q.key)for(var Ee=0;Ee=$e)return ue}}else if(q!=null&&q.keys)for(var Ee=0;Ee=0;--ze){var me=Q(Se,q.keys[ze]);if(!me){ke[ze]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[ze]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(oe,q,ue=!1,$e=!1)=>{if(ue===!1&&oe.containsSpace)return V(oe,q,$e);for(var Ee=oe._lower,Se=oe.lowerCodes,me=Se[0],Be=q._targetLowerCodes,ke=Se.length,ze=Be.length,l0=0,Ye=0,g0=0;;){var k0=me===Be[Ye];if(k0){if(le[g0++]=Ye,++l0,l0===ke)break;me=Se[l0]}if(++Ye,Ye>=ze)return Pe}var l0=0,w0=!1,r0=0,a0=q._nextBeginningIndexes;a0===Pe&&(a0=q._nextBeginningIndexes=N(q.target)),Ye=le[0]===0?0:a0[le[0]-1];var tt=0;if(Ye!==ze)for(;;)if(Ye>=ze){if(l0<=0||(++tt,tt>200))break;--l0;var y0=D[--r0];Ye=a0[y0]}else{var k0=Se[l0]===Be[Ye];if(k0){if(D[r0++]=Ye,++l0,l0===ke){w0=!0;break}++Ye}else Ye=a0[Ye]}var d0=ke<=1?-1:q._targetLower.indexOf(Ee,le[0]),De=!!~d0,i0=De?d0===0||q._nextBeginningIndexes[d0-1]===d0:!1;if(De&&!i0){for(var Ze=0;Ze{for(var c0=0,er=0,St=1;St24&&(c0*=(pn-24)*10)}return c0-=(ze-ke)/2,De&&(c0/=1+ke*ke*1),i0&&(c0/=1+ke*ke*1),c0-=(ze-ke)/2,c0};if(w0)if(i0){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=Pe,me=0,Be=oe.spaceSearches,ke=Be.length,ze=0,Ye=()=>{for(let i0=ze-1;i0>=0;i0--)q._nextBeginningIndexes[ie[i0*2+0]]=ie[i0*2+1]},g0=!1,De=0;De=0&&tt===q._nextBeginningIndexes[Ze];Ze--)q._nextBeginningIndexes[Ze]=a0,ie[ze*2+0]=Ze,ie[ze*2+1]=tt,ze++}}Ee+=Se._score/ke,X[De]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var De=0;De{for(var q=oe.length,ue=oe.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var q=oe.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,ze=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!ze;Ee=ke,Se=ze,Ye&&(ue[$e++]=me)}return ue},N=oe=>{for(var q=oe.length,ue=F(oe),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?q:Ee);return $e},z=new Map,U=new Map,le=[],D=[],ie=[],j=[],X=[],xe=[],G=[],Q=(oe,q)=>{var ue=oe[q];if(ue!==void 0)return ue;if(typeof q=="function")return q(oe);var $e=q;Array.isArray(q)||($e=q.split("."));for(var Ee=$e.length,Se=-1;oe&&++Setypeof oe=="object"&&typeof oe._bitflags=="number",_e=1/0,se=-_e,fe=[];fe.total=0;var Pe=null,ae=c(""),H=oe=>{var q=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=q[me],ke=1;ke>1]=q[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)q[me]=q[Ye];q[me]=Be};return $e.add=Se=>{var me=ue;q[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)q[me]=q[Be];q[me]=Se},$e.poll=Se=>{if(ue!==0){var me=q[0];return q[0]=q[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return q[0]},$e.replaceTop=Se=>{q[0]=Se,Ee()},$e},ce=H();return{single:n,go:i,prepare:c,cleanup:d}})}(g5)),g5.exports}var KZ=jZ();const WZ=t1(KZ);function UZ({availableVariations:t,selectedProject:e,flags:n,overrides:i,setOverrides:a}){const[c,d]=x.useState(!1),[f,v]=x.useState(""),[m,g]=x.useState(0),b=20,S=x.useMemo(()=>i&&Object.keys(i).length>0,[i]);x.useEffect(()=>{!S&&c&&d(!1)},[S,c]);const C=x.useMemo(()=>n?Object.entries(n).filter(z=>{if(!f)return!0;const[U]=z,le=WZ.single(f.toLowerCase(),U);return le&&le.score>-5e3}).filter(z=>{const[U]=z,le=U in i;return!(c&&!le)}):[],[n,f,c,i]),P=x.useMemo(()=>{const N=m*b,z=N+b;return C.slice(N,z)},[C,m]),T=x.useCallback((N,z)=>{var le;const U={...i,[N]:{value:z,version:((le=i[N])==null?void 0:le.version)||0}};a(U),fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"PUT",body:JSON.stringify(z)}).then(async D=>{if(!D.ok)throw new Error(`got ${D.status} ${D.statusText}. ${await D.text()}`)}).catch(D=>{a(i),console.error("unable to update override",D)})},[i,e]),A=x.useCallback(async N=>{const z={...i};delete z[N],a(z);try{const U=await fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"DELETE"});if(!U.ok)throw new Error(`got ${U.status} ${U.statusText}. ${await U.text()}`)}catch(U){console.error("unable to remove override",U),a(i)}},[i,e]),V=x.useCallback(async()=>{a({});try{const N=await fetch(P2(`/dev/projects/${e}/overrides`),{method:"DELETE"});if(!N.ok)throw new Error(`got ${N.status} ${N.statusText}. ${await N.text()}`)}catch(N){console.error("unable to remove all overrides",N),a(i)}},[i,e]);if(!n)return null;const R=Math.ceil(C.length/b),F=N=>{switch(N){case"next":g(z=>Math.min(z+1,R-1));break;case"prev":g(z=>Math.max(z-1,0));break;case"first":g(0);break;case"last":g(R-1);break;default:console.error("invalid page change direction.")}};return k.jsxs(k.Fragment,{children:[k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:IZ.borderRadius.regular,children:[k.jsxs(v1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[k.jsx(DI,{id:"only-show-overrides",isSelected:c,onChange:N=>{d(N)},isDisabled:!S,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),k.jsxs(Yn,{variant:"destructive",isDisabled:!S,onPress:async()=>{i&&(await V(),a({}),d(!1))},children:[k.jsx(K0,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),k.jsxs(xf,{gap:"4",children:[k.jsx(_r,{gap:"4",children:k.jsx(qF,{"aria-label":"Search flags",children:k.jsxs(UI,{children:[k.jsx(K0,{name:"search",size:"small"}),k.jsx(qw,{placeholder:"Search flags by key",onChange:N=>{v(N.target.value),g(0)},value:f,"aria-label":"Search flags input"}),k.jsx(ih,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>v("")})]})})}),k.jsx("ul",{className:"flags-list",children:P.map(([N,{value:z}],U)=>{var j;const le=(j=i[N])==null?void 0:j.value,D=N in i,ie=D?le:z;return k.jsxs("li",{style:{backgroundColor:U%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[k.jsx(Dt,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:k.jsxs(_r,{gap:"2",children:[k.jsx(mf,{asChild:!0,text:N,children:k.jsx("code",{className:D?"has-override":"",children:N})}),D&&k.jsx(Yn,{"aria-label":"Remove override",onPress:()=>{A(N)},variant:"destructive",children:k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"cancel",size:"small"}),"Remove override"]})})]})}),k.jsx(Dt,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:k.jsx(HZ,{availableVariations:t[N]?t[N]:[],currentValue:ie,flagValue:z,flagKey:N,updateOverride:T})})]},N)})})]}),k.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:k.jsx(SR,{currentOffset:m*b,isReady:!0,onChange:N=>F(N),pageSize:b,resourceName:"flags",totalCount:C.length})})]})}const GZ=async()=>{const t=await fetch(P2("/dev/projects")),e=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return e};function qZ({selectedProject:t,setSelectedProject:e,setShowBanner:n}){const[i,a]=x.useState([]),[c,d]=x.useState(!0),f=v=>{a(v),n(v.length==0),v.length==1&&e(v[0]),d(!1)};return x.useEffect(()=>{GZ().then(f).catch(v=>{console.error(v),d(!1)}),a([])},[]),c?k.jsxs("div",{style:{textAlign:"center"},children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),k.jsx("p",{children:"Projects are loading"})]}):i.length>0?k.jsxs(lV,{children:[k.jsx(_r,{gap:"1",children:k.jsxs(Il,{children:[k.jsx(Yn,{children:t??"Select a project"}),k.jsx(Vl,{children:t==null?"Please select a project":"This is the selected project"})]})}),k.jsx(a$,{children:k.jsx(yF,{children:i.map(v=>k.jsx(xF,{onAction:()=>{e(v)},children:v},v))})})]}):k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const YZ=async t=>{const e=await fetch(P2(`/dev/projects/${t}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return n},XZ=({selectedProject:t,setFlags:e,setAvailableVariations:n})=>{const[i,a]=x.useState(!1),c=async()=>{a(!0);try{const d=await YZ(t);n(d.availableVariations),e(Tp(d.flagsState))}catch(d){im.warning("Sync failed"),console.error("Sync failed:",d)}finally{im.success("Sync successful"),a(!1)}};return t?k.jsxs(Il,{children:[k.jsx(Yn,{onPress:c,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}):k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"sync",size:"small"}),k.jsx("span",{children:"Sync"})]})})}),k.jsx(Vl,{children:"Sync the selected project from the source environment"})]}):null};async function QZ(t,e){const n=await fetch(P2(`/dev/projects/${t}/environments?limit=20${e?`&name=${e}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var S3,sm;function d$(){if(sm)return S3;sm=1;function t(e){var n=typeof e;return e!=null&&(n=="object"||n=="function")}return S3=t,S3}var C3,um;function JZ(){if(um)return C3;um=1;var t=typeof so=="object"&&so&&so.Object===Object&&so;return C3=t,C3}var _3,cm;function f$(){if(cm)return _3;cm=1;var t=JZ(),e=typeof self=="object"&&self&&self.Object===Object&&self,n=t||e||Function("return this")();return _3=n,_3}var P3,dm;function eO(){if(dm)return P3;dm=1;var t=f$(),e=function(){return t.Date.now()};return P3=e,P3}var E3,fm;function tO(){if(fm)return E3;fm=1;var t=/\s/;function e(n){for(var i=n.length;i--&&t.test(n.charAt(i)););return i}return E3=e,E3}var k3,pm;function nO(){if(pm)return k3;pm=1;var t=tO(),e=/^\s+/;function n(i){return i&&i.slice(0,t(i)+1).replace(e,"")}return k3=n,k3}var T3,vm;function p$(){if(vm)return T3;vm=1;var t=f$(),e=t.Symbol;return T3=e,T3}var M3,hm;function rO(){if(hm)return M3;hm=1;var t=p$(),e=Object.prototype,n=e.hasOwnProperty,i=e.toString,a=t?t.toStringTag:void 0;function c(d){var f=n.call(d,a),v=d[a];try{d[a]=void 0;var m=!0}catch{}var g=i.call(d);return m&&(f?d[a]=v:delete d[a]),g}return M3=c,M3}var A3,mm;function iO(){if(mm)return A3;mm=1;var t=Object.prototype,e=t.toString;function n(i){return e.call(i)}return A3=n,A3}var L3,gm;function oO(){if(gm)return L3;gm=1;var t=p$(),e=rO(),n=iO(),i="[object Null]",a="[object Undefined]",c=t?t.toStringTag:void 0;function d(f){return f==null?f===void 0?a:i:c&&c in Object(f)?e(f):n(f)}return L3=d,L3}var D3,ym;function lO(){if(ym)return D3;ym=1;function t(e){return e!=null&&typeof e=="object"}return D3=t,D3}var R3,bm;function aO(){if(bm)return R3;bm=1;var t=oO(),e=lO(),n="[object Symbol]";function i(a){return typeof a=="symbol"||e(a)&&t(a)==n}return R3=i,R3}var B3,xm;function sO(){if(xm)return B3;xm=1;var t=nO(),e=d$(),n=aO(),i=NaN,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,f=parseInt;function v(m){if(typeof m=="number")return m;if(n(m))return i;if(e(m)){var g=typeof m.valueOf=="function"?m.valueOf():m;m=e(g)?g+"":g}if(typeof m!="string")return m===0?m:+m;m=t(m);var b=c.test(m);return b||d.test(m)?f(m.slice(2),b?2:8):a.test(m)?i:+m}return B3=v,B3}var V3,wm;function uO(){if(wm)return V3;wm=1;var t=d$(),e=eO(),n=sO(),i="Expected a function",a=Math.max,c=Math.min;function d(f,v,m){var g,b,S,C,P,T,A=0,V=!1,R=!1,F=!0;if(typeof f!="function")throw new TypeError(i);v=n(v)||0,t(m)&&(V=!!m.leading,R="maxWait"in m,S=R?a(n(m.maxWait)||0,v):S,F="trailing"in m?!!m.trailing:F);function N(G){var Q=g,he=b;return g=b=void 0,A=G,C=f.apply(he,Q),C}function z(G){return A=G,P=setTimeout(D,v),V?N(G):C}function U(G){var Q=G-T,he=G-A,_e=v-Q;return R?c(_e,S-he):_e}function le(G){var Q=G-T,he=G-A;return T===void 0||Q>=v||Q<0||R&&he>=S}function D(){var G=e();if(le(G))return ie(G);P=setTimeout(D,U(G))}function ie(G){return P=void 0,F&&g?N(G):(g=b=void 0,C)}function j(){P!==void 0&&clearTimeout(P),A=0,g=T=b=P=void 0}function X(){return P===void 0?C:ie(e())}function xe(){var G=e(),Q=le(G);if(g=arguments,b=this,T=G,Q){if(P===void 0)return z(T);if(R)return clearTimeout(P),P=setTimeout(D,v),N(T)}return P===void 0&&(P=setTimeout(D,v)),C}return xe.cancel=j,xe.flush=X,xe}return V3=d,V3}var cO=uO();const dO=t1(cO);function fO({projectKey:t,sourceEnvironmentKey:e,selectedEnvironment:n,setSelectedEnvironment:i}){const[a,c]=x.useState(null),[d,f]=x.useState(""),[v,m]=x.useState(!1),g=x.useCallback(dO(b=>{m(!0),QZ(t,b).then(S=>{if(c(S),!n){const C=S.find(P=>P.key===e);C?i(C):S.length>0&&i({name:"",key:e||""})}}).catch(S=>{console.error("Error fetching environments:",S)}).finally(()=>{m(!1)})},300),[t,e,n,i]);return x.useEffect(()=>{g(d)},[g,d]),k.jsxs(xf,{gap:"3",children:[k.jsx(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:k.jsx(v1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),k.jsxs(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[k.jsxs("div",{style:{position:"relative",flexGrow:1},children:[k.jsx(qw,{id:"environmentSearch",value:d,onChange:b=>f(b.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),v&&k.jsx(Dt,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:k.jsx(h1,{size:"small","aria-label":"Loading environments"})})]}),k.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:k.jsx("code",{children:n==null?void 0:n.key})})]}),k.jsx(Dt,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:k.jsx(n$,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:b=>{const S=Array.from(b)[0],C=a==null?void 0:a.find(P=>P.key===S);C&&i(C)},children:a==null?void 0:a.map(b=>k.jsx(r$,{id:b.key,children:b.name},b.key))})})]})}function pO({context:t,setContext:e}){return k.jsxs(xf,{gap:"3",children:[k.jsx(v1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),k.jsxs(c$,{value:t,onChange:e,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[k.jsx(u$,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),k.jsx(kf,{slot:"description",children:"Edit the context as JSON"}),k.jsx(t$,{})]})]})}function vO({isSubmitting:t,selectedEnvironment:e}){return k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:t,children:t?k.jsx(_r,{gap:"2",children:k.jsxs(Dt,{display:"flex",alignItems:"center",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}),k.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):e?k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),k.jsx("span",{children:e})]}):"Environment"})}function hO({projectKey:t,selectedEnvironment:e,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:a,updateProjectSettings:c}){const[d,f]=x.useState(e),[v,m]=x.useState(a),[g,b]=x.useState(!1);x.useEffect(()=>{f(e),m(a)},[e,a]);const S=async P=>{b(!0);try{P(),await c(d,v),n(d)}catch(T){console.error("Error submitting project settings:",T)}finally{b(!1)}},C=()=>{f(e),m(a)};return k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(vO,{isSubmitting:g,selectedEnvironment:i}),k.jsx(Vl,{children:k.jsx("span",{children:"Current environment. Click to update."})})]}),k.jsx(o$,{isDismissable:!1,children:k.jsx(i$,{children:k.jsx(e$,{children:({close:P})=>k.jsxs(vx,{onSubmit:T=>{T.preventDefault(),S(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[k.jsx(v1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),k.jsxs(xf,{gap:"3",children:[k.jsx(fO,{projectKey:t,sourceEnvironmentKey:i,selectedEnvironment:d,setSelectedEnvironment:f}),k.jsx(Dt,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),k.jsx(pO,{context:v,setContext:m})]}),k.jsxs(Xw,{style:{justifyContent:"flex-end"},children:[k.jsx(Yn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:g,children:g?k.jsxs(_r,{gap:"2",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),k.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function mO(){const[t,e]=x.useState(null),[n,i]=x.useState(null),[a,c]=x.useState(null),[d,f]=x.useState({}),[v,m]=x.useState({}),[g,b]=x.useState(null),[S,C]=x.useState(!1),[P,T]=x.useState("{}"),A=x.useCallback(async()=>{if(!t)return;const R=await fetch(P2(`/dev/projects/${t}?expand=overrides&expand=availableVariations`)),F=await R.json();if(!R.ok)throw new Error(`Got ${R.status}, ${R.statusText} from flag fetch`);const{flagsState:N,overrides:z,sourceEnvironmentKey:U,availableVariations:le,context:D}=F;b(Tp(N)),f(z),c(U),m(le),T(JSON.stringify(D||"{}",null,2));const j=(await gO(t)).find(X=>X.key===U);j&&i(j)},[t]);x.useEffect(()=>{t&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,t]),x.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const V=x.useCallback(async(R,F)=>{if(t)try{const N=await fetch(P2(`/dev/projects/${t}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:R==null?void 0:R.key,context:JSON.parse(F)})});if(!N.ok)throw new Error(`Got ${N.status}, ${N.statusText} from project settings update`);const z=await N.json(),{flagsState:U,sourceEnvironmentKey:le,context:D}=z;b(Tp(U)),c(le),T(JSON.stringify(D||{},null,2)),i(R),await A()}catch(N){console.error("Error updating project settings:",N)}},[t,A]);return k.jsx("div",{style:{width:"100%"},children:k.jsx(Dt,{width:"100%",minWidth:"600px",children:k.jsxs(Dt,{display:"flex",flexDirection:"column",width:"100%",children:[S&&k.jsx(Dt,{marginBottom:"2rem",width:"100%",children:k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!S&&k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[k.jsx(qZ,{selectedProject:t,setSelectedProject:e,setShowBanner:C}),t&&k.jsx(hO,{projectKey:t,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:a,context:P,updateProjectSettings:V}),k.jsx(XZ,{selectedProject:t,setFlags:b,setAvailableVariations:m})]}),t&&k.jsx(Dt,{width:"100%",children:k.jsx(UZ,{availableVariations:v,selectedProject:t,flags:g,overrides:d,setOverrides:R=>{f(R)}})})]})})})}async function gO(t){const e=await fetch(P2(`/dev/projects/${t}/environments`));if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from environments fetch`);return e.json()}const yO=({event:t})=>{const e=JSON.parse(t.data);return console.log("parsed",e),k.jsx("span",{children:t.data})},bO=t=>{let e;try{e=JSON.parse(t.data)}catch(n){return console.error("Failed to parse event data as JSON:",n),k.jsx("div",{children:"Error. See console."})}return k.jsx(yO,{event:t})},xO=({})=>{const[t,e]=x.useState([]);return x.useEffect(()=>{const n=new EventSource(P2("/events/tee"));return n.addEventListener("put",i=>{if(!i.data||i.data.trim()==="")return;const a={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:i.data};e(c=>[...c,a])}),()=>{console.log("closing event source"),n.close()}},[]),k.jsxs("div",{children:[k.jsx("h3",{children:"Events Stream"}),t.map(n=>k.jsx("div",{children:bO(n)},n.id)),t.length===0&&k.jsx("p",{children:"No events received yet..."})]})};function wO(){const[t,e]=x.useState("flags");return k.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:k.jsxs(Dt,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[k.jsxs(Dt,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[k.jsx(BZ,{onPress:()=>{e("flags")}}),k.jsx(VZ,{onPress:()=>{e("events")}})]}),k.jsxs(Dt,{padding:"1rem",width:"100%",children:[t==="flags"&&k.jsx(mO,{}),t==="events"&&k.jsx(xO,{})]})]})})}const $O="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function SO({children:t}){return x.useEffect(()=>{fetch($O).then(async e=>e.text()).then(e=>{const i=new DOMParser().parseFromString(e,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(e=>{console.log("unable to fetch icon",e)})},[]),k.jsx(Pm.Provider,{value:{path:""},children:t})}const CO=()=>(x.useEffect(()=>{const t=window.matchMedia("(prefers-color-scheme: dark)"),e=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return e(t),t.addEventListener("change",e),()=>{t.removeEventListener("change",e)}},[]),k.jsx(ee.StrictMode,{children:k.jsxs(SO,{children:[k.jsx(wO,{}),k.jsx(AZ,{})]})}));KC.createRoot(document.getElementById("root")).render(k.jsx(CO,{})); diff --git a/internal/dev_server/ui/src/Event.tsx b/internal/dev_server/ui/src/Event.tsx new file mode 100644 index 000000000..5c416297b --- /dev/null +++ b/internal/dev_server/ui/src/Event.tsx @@ -0,0 +1,13 @@ +import { EventData } from "./types"; + +type Props = { + event: EventData; +} + +const Event = ({ event }: Props) => { + const parsed = JSON.parse(event.data); + console.log('parsed', parsed); + return {event.data} +} + +export default Event; \ No newline at end of file diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index 5f822c162..7e0928df3 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -1,20 +1,28 @@ import { useEffect, useState } from "react"; import { apiRoute } from "./util"; +import { EventData } from "./types"; +import Event from "./Event"; type Props = { }; -interface EventData { - id: string; - timestamp: number; - data: string; -} + +const renderEvent = (event: EventData) => { + let parsed; + try { + parsed = JSON.parse(event.data); + } catch (error) { + console.error('Failed to parse event data as JSON:', error); + return
Error. See console.
; + } + + return ; +}; const EventsPage = ({}: Props) => { const [events, setEvents] = useState([]); useEffect(() => { - console.log(apiRoute('/events/tee')); const eventSource = new EventSource(apiRoute('/events/tee')); eventSource.addEventListener('put', (event) => { @@ -22,7 +30,7 @@ const EventsPage = ({}: Props) => { return; } const newEvent: EventData = { - id: Math.random().toString(36).substr(2, 9), + id: Math.random().toString(36).slice(2, 11), timestamp: Date.now(), data: event.data }; @@ -38,32 +46,9 @@ const EventsPage = ({}: Props) => { return (

Events Stream

-
    - {events.map((event) => { - let displayData = event.data; - try { - // Try to parse and prettify JSON - const parsed = JSON.parse(event.data); - displayData = JSON.stringify(parsed, null, 2); - } catch { - // If not JSON, keep original data - displayData = event.data; - } - - return ( -
  • -
    - {new Date(event.timestamp).toLocaleTimeString()} -
    -
    -
    -                  {displayData}
    -                
    -
    -
  • - ); - })} -
+ {events.map(event => ( +
{renderEvent(event)}
+ ))} {events.length === 0 &&

No events received yet...

}
); diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index 84e9e360a..5ec8136c6 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -2,3 +2,9 @@ export interface Environment { key: string; name: string; } + +export interface EventData { + id: string; + timestamp: number; + data: string; +} \ No newline at end of file From ecce16389013fa15b65b0420057019d2ab1ef849 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 14:51:54 -0700 Subject: [PATCH 25/96] list --- internal/dev_server/ui/dist/index.html | 2 +- internal/dev_server/ui/src/EventsPage.tsx | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index f8ba0cebe..dd1d926b2 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -88,7 +88,7 @@ function print() { __p += __j.call(arguments, '') } `:`; `)+be+`return __p -}`;var o0=$h(function(){return v0(L,Fe+"return "+be).apply(n,I)});if(o0.source=be,$7(o0))throw o0;return o0}function jS(l){return P0(l).toLowerCase()}function KS(l){return P0(l).toUpperCase()}function WS(l,s,h){if(l=P0(l),l&&(h||s===n))return j1(l);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=rn(s),L=K1($,_),I=yu($,_)+1;return Fr($,L,I).join("")}function US(l,s,h){if(l=P0(l),l&&(h||s===n))return l.slice(0,ra(l)+1);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=yu($,rn(s))+1;return Fr($,0,_).join("")}function GS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.replace(Xs,"");if(!l||!(s=Xt(s)))return l;var $=rn(l),_=K1($,rn(s));return Fr($,_).join("")}function qS(l,s){var h=j,$=X;if(Q0(s)){var _="separator"in s?s.separator:_;h="length"in s?n0(s.length):h,$="omission"in s?Xt(s.omission):$}l=P0(l);var L=l.length;if(Ti(l)){var I=rn(l);L=I.length}if(h>=L)return l;var O=h-O2($);if(O<1)return $;var Y=I?Fr(I,0,O).join(""):l.slice(0,O);if(_===n)return Y+$;if(I&&(O+=Y.length-O),S7(_)){if(l.slice(O).search(_)){var pe,ve=Y;for(_.global||(_=Io(_.source,P0(Js.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;Y=Y.slice(0,be===n?O:be)}}else if(l.indexOf(Xt(_),O)!=O){var Te=Y.lastIndexOf(_);Te>-1&&(Y=Y.slice(0,Te))}return Y+$}function YS(l){return l=P0(l),l&&m1.test(l)?l.replace(D2,Y1):l}var XS=J2(function(l,s,h){return l+(h?" ":"")+s.toUpperCase()}),P7=ju("toUpperCase");function wh(l,s,h){return l=P0(l),s=h?n:s,s===n?Uf(l)?Xf(l):jf(l):l.match(s)||[]}var $h=t0(function(l,s){try{return Vt(l,n,s)}catch(h){return $7(h)?h:new Ge(h)}}),QS=hr(function(l,s){return Ct(s,function(h){h=Hn(h),sr(l,h,we(l[h],l))}),l});function JS(l){var s=l==null?0:l.length,h=He();return l=s?T0(l,function($){if(typeof $[1]!="function")throw new hn(d);return[h($[0]),$[1]]}):[],t0(function($){for(var _=-1;++_fe)return[];var h=H,$=_t(l,H);s=He(s),l-=H;for(var _=gu($,s);++h0||s<0)?new Xe(h):(l<0?h=h.takeRight(-l):l&&(h=h.drop(l)),s!==n&&(s=n0(s),h=s<0?h.dropRight(-s):h.take(s-l)),h)},Xe.prototype.takeRightWhile=function(l){return this.reverse().takeWhile(l).reverse()},Xe.prototype.toArray=function(){return this.take(H)},an(Xe.prototype,function(l,s){var h=/^(?:filter|find|map|reject)|While$/.test(s),$=/^(?:head|last)$/.test(s),_=M[$?"take"+(s=="last"?"Right":""):s],L=$||/^find/.test(s);_&&(M.prototype[s]=function(){var I=this.__wrapped__,O=$?[1]:arguments,Y=I instanceof Xe,pe=O[0],ve=Y||Qe(I),be=function(u0){var p0=_.apply(M,Jr([u0],O));return $&&Te?p0[0]:p0};ve&&h&&typeof pe=="function"&&pe.length!=1&&(Y=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=L&&!Te,o0=Y&&!Fe;if(!L&&ve){I=o0?I:new Xe(this);var Ue=l.apply(I,O);return Ue.__actions__.push({func:jn,args:[be],thisArg:n}),new Pt(Ue,Te)}return We&&o0?l.apply(this,O):(Ue=this.thru(be),We?$?Ue.value()[0]:Ue.value():Ue)})}),Ct(["pop","push","shift","sort","splice","unshift"],function(l){var s=kr[l],h=/^(?:push|sort|unshift)$/.test(l)?"tap":"thru",$=/^(?:pop|shift)$/.test(l);M.prototype[l]=function(){var _=arguments;if($&&!this.__chain__){var L=this.value();return s.apply(Qe(L)?L:[],_)}return this[h](function(I){return s.apply(Qe(I)?I:[],_)})}}),an(Xe.prototype,function(l,s){var h=M[s];if(h){var $=h.name+"";h0.call(Vi,$)||(Vi[$]=[]),Vi[$].push({name:s,func:h})}}),Vi[Xi(n,V).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=va,Xe.prototype.reverse=_u,Xe.prototype.value=Zi,M.prototype.at=es,M.prototype.chain=oi,M.prototype.commit=ts,M.prototype.next=vc,M.prototype.plant=h7,M.prototype.reverse=mc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=m7,M.prototype.first=M.prototype.head,Mr&&(M.prototype[Mr]=hc),M},Mi=Qf();nr?((nr.exports=Mi)._=Mi,Bo._=Mi):B0._=Mi}).call(ZZ)}(Ac,Ac.exports)),Ac.exports}var NZ=OZ();const HZ=({availableVariations:t,currentValue:e,flagKey:n,flagValue:i,updateOverride:a})=>{switch(typeof i){case"boolean":return k.jsx("div",{className:"animated-switch-container",children:k.jsxs(LV,{className:"animated-switch",isSelected:e,onChange:c=>{a(n,c)},children:[k.jsx("span",{className:"switch-text switch-text-false",children:"False"}),k.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let c=t,d=c.findIndex(v=>NZ.isEqual(v.value,e));d===-1&&(c=[{_id:"OVERRIDE",name:"Local Override",value:e},...c],d=0);const f=v=>m=>{m.preventDefault();const g=Object.fromEntries(new FormData(m.currentTarget));a(n,JSON.parse(g.value)),v()};return k.jsxs(_r,{gap:"2",children:[k.jsx(tZ,{"aria-label":"flag variations select",selectedKey:d,onSelectionChange:v=>{typeof v!="number"?console.error(`selected non numeric key: ${v}`):a(n,c[v].value)},style:{maxWidth:"250px"},children:k.jsxs(x.Fragment,{children:[d!==null&&c[d]._id==="OVERRIDE"?k.jsxs(Il,{children:[k.jsxs(Yn,{children:[k.jsx(rm,{}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(Vl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):k.jsxs(Yn,{children:[k.jsx(rm,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(a$,{children:k.jsx(n$,{children:c.map((v,m)=>{const g=v.name?v.name:JSON.stringify(v.value);return k.jsx(r$,{id:m,textValue:g,children:v._id==="OVERRIDE"?k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"devices",size:"small"}),g]})}):g},m)})})})]},".0")}),k.jsx(Dt,{width:"2rem",height:"2rem",children:k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(ih,{icon:"edit","aria-label":"edit variation value"}),k.jsx(Vl,{children:"Edit the served variation value as JSON"})]}),k.jsx(o$,{children:k.jsx(i$,{children:k.jsx(e$,{children:({close:v})=>k.jsxs(vx,{onSubmit:f(v),children:[k.jsxs(c$,{defaultValue:JSON.stringify(e,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:m=>{try{return JSON.parse(m),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[k.jsx(v1,{children:`${n} value`}),k.jsx(u$,{style:{fontFamily:"monospace"}}),k.jsx(kf,{slot:"description",children:"Update the value as JSON"}),k.jsx(t$,{})]}),k.jsxs(Xw,{children:[k.jsx(Yn,{onPress:v,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var g5={exports:{}},zZ=g5.exports,am;function jZ(){return am||(am=1,function(t){((e,n)=>{t.exports?t.exports=n():e.fuzzysort=n()})(zZ,e=>{var n=(oe,q)=>{if(!oe||!q)return Pe;var ue=P(oe);he(q)||(q=C(q));var $e=ue.bitflags;return($e&q._bitflags)!==$e?Pe:A(ue,q)},i=(oe,q,ue)=>{if(!oe)return ue!=null&&ue.all?T(q,ue):fe;var $e=P(oe),Ee=$e.bitflags,Se=$e.containsSpace,me=b((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||_e,ke=0,ze=0,Ye=q.length;function g0(jt){kece.peek()._score&&ce.replaceTop(jt))}if(ue!=null&&ue.key)for(var k0=ue.key,l0=0;l0-1e3&&j[c0]>se){var i0=(j[c0]+X[c0])/4;i0>j[c0]&&(j[c0]=i0)}X[c0]>j[c0]&&(j[c0]=X[c0])}}if(Se){for(let e0=0;e0<$e.spaceSearches.length;e0++)if(j[e0]===se)continue e}else{var Ze=!1;for(let e0=0;e0-1e3&&$0>se){var i0=($0+a0._score)/4;i0>$0&&($0=i0)}a0._score>$0&&($0=a0._score)}}if(q0.obj=w0,q0._score=$0,ue!=null&&ue.scoreFn){if($0=ue.scoreFn(q0),!$0)continue;$0=b($0),q0._score=$0}$0=0;--l0)W0[l0]=ce.poll();return W0.total=ke+ze,W0},a=(oe,q="",ue="")=>{for(var $e=typeof q=="function"?q:void 0,Ee=oe.target,Se=Ee.length,me=oe.indexes,Be="",ke=0,ze=0,Ye=!1,g0=[],k0=0;k0{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe="");var q=R(oe);return m(oe,{_targetLower:q._lower,_targetLowerCodes:q.lowerCodes,_bitflags:q.bitflags})},d=()=>{z.clear(),U.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((q,ue)=>q-ue)}set indexes(q){return this._indexes=q}highlight(q,ue){return a(this,q,ue)}get score(){return g(this._score)}set score(q){this._score=b(q)}}class v extends Array{get score(){return g(this._score)}set score(q){this._score=b(q)}}var m=(oe,q)=>{const ue=new f;return ue.target=oe,ue.obj=q.obj??Pe,ue._score=q._score??se,ue._indexes=q._indexes??[],ue._targetLower=q._targetLower??"",ue._targetLowerCodes=q._targetLowerCodes??Pe,ue._nextBeginningIndexes=q._nextBeginningIndexes??Pe,ue._bitflags=q._bitflags??0,ue},g=oe=>oe===se?0:oe>1?oe:Math.E**(((-oe+1)**.04307-1)*-2),b=oe=>oe===0?se:oe>1?oe:1-Math.pow(Math.log(oe)/-2+1,1/.04307),S=oe=>{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe=""),oe=oe.trim();var q=R(oe),ue=[];if(q.containsSpace){var $e=oe.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=R($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:q.lowerCodes,_lower:q._lower,containsSpace:q.containsSpace,bitflags:q.bitflags,spaceSearches:ue}},C=oe=>{if(oe.length>999)return c(oe);var q=z.get(oe);return q!==void 0||(q=c(oe),z.set(oe,q)),q},P=oe=>{if(oe.length>999)return S(oe);var q=U.get(oe);return q!==void 0||(q=S(oe),U.set(oe,q)),q},T=(oe,q)=>{var ue=[];ue.total=oe.length;var $e=(q==null?void 0:q.limit)||_e;if(q!=null&&q.key)for(var Ee=0;Ee=$e)return ue}}else if(q!=null&&q.keys)for(var Ee=0;Ee=0;--ze){var me=Q(Se,q.keys[ze]);if(!me){ke[ze]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[ze]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(oe,q,ue=!1,$e=!1)=>{if(ue===!1&&oe.containsSpace)return V(oe,q,$e);for(var Ee=oe._lower,Se=oe.lowerCodes,me=Se[0],Be=q._targetLowerCodes,ke=Se.length,ze=Be.length,l0=0,Ye=0,g0=0;;){var k0=me===Be[Ye];if(k0){if(le[g0++]=Ye,++l0,l0===ke)break;me=Se[l0]}if(++Ye,Ye>=ze)return Pe}var l0=0,w0=!1,r0=0,a0=q._nextBeginningIndexes;a0===Pe&&(a0=q._nextBeginningIndexes=N(q.target)),Ye=le[0]===0?0:a0[le[0]-1];var tt=0;if(Ye!==ze)for(;;)if(Ye>=ze){if(l0<=0||(++tt,tt>200))break;--l0;var y0=D[--r0];Ye=a0[y0]}else{var k0=Se[l0]===Be[Ye];if(k0){if(D[r0++]=Ye,++l0,l0===ke){w0=!0;break}++Ye}else Ye=a0[Ye]}var d0=ke<=1?-1:q._targetLower.indexOf(Ee,le[0]),De=!!~d0,i0=De?d0===0||q._nextBeginningIndexes[d0-1]===d0:!1;if(De&&!i0){for(var Ze=0;Ze{for(var c0=0,er=0,St=1;St24&&(c0*=(pn-24)*10)}return c0-=(ze-ke)/2,De&&(c0/=1+ke*ke*1),i0&&(c0/=1+ke*ke*1),c0-=(ze-ke)/2,c0};if(w0)if(i0){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=Pe,me=0,Be=oe.spaceSearches,ke=Be.length,ze=0,Ye=()=>{for(let i0=ze-1;i0>=0;i0--)q._nextBeginningIndexes[ie[i0*2+0]]=ie[i0*2+1]},g0=!1,De=0;De=0&&tt===q._nextBeginningIndexes[Ze];Ze--)q._nextBeginningIndexes[Ze]=a0,ie[ze*2+0]=Ze,ie[ze*2+1]=tt,ze++}}Ee+=Se._score/ke,X[De]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var De=0;De{for(var q=oe.length,ue=oe.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var q=oe.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,ze=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!ze;Ee=ke,Se=ze,Ye&&(ue[$e++]=me)}return ue},N=oe=>{for(var q=oe.length,ue=F(oe),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?q:Ee);return $e},z=new Map,U=new Map,le=[],D=[],ie=[],j=[],X=[],xe=[],G=[],Q=(oe,q)=>{var ue=oe[q];if(ue!==void 0)return ue;if(typeof q=="function")return q(oe);var $e=q;Array.isArray(q)||($e=q.split("."));for(var Ee=$e.length,Se=-1;oe&&++Setypeof oe=="object"&&typeof oe._bitflags=="number",_e=1/0,se=-_e,fe=[];fe.total=0;var Pe=null,ae=c(""),H=oe=>{var q=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=q[me],ke=1;ke>1]=q[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)q[me]=q[Ye];q[me]=Be};return $e.add=Se=>{var me=ue;q[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)q[me]=q[Be];q[me]=Se},$e.poll=Se=>{if(ue!==0){var me=q[0];return q[0]=q[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return q[0]},$e.replaceTop=Se=>{q[0]=Se,Ee()},$e},ce=H();return{single:n,go:i,prepare:c,cleanup:d}})}(g5)),g5.exports}var KZ=jZ();const WZ=t1(KZ);function UZ({availableVariations:t,selectedProject:e,flags:n,overrides:i,setOverrides:a}){const[c,d]=x.useState(!1),[f,v]=x.useState(""),[m,g]=x.useState(0),b=20,S=x.useMemo(()=>i&&Object.keys(i).length>0,[i]);x.useEffect(()=>{!S&&c&&d(!1)},[S,c]);const C=x.useMemo(()=>n?Object.entries(n).filter(z=>{if(!f)return!0;const[U]=z,le=WZ.single(f.toLowerCase(),U);return le&&le.score>-5e3}).filter(z=>{const[U]=z,le=U in i;return!(c&&!le)}):[],[n,f,c,i]),P=x.useMemo(()=>{const N=m*b,z=N+b;return C.slice(N,z)},[C,m]),T=x.useCallback((N,z)=>{var le;const U={...i,[N]:{value:z,version:((le=i[N])==null?void 0:le.version)||0}};a(U),fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"PUT",body:JSON.stringify(z)}).then(async D=>{if(!D.ok)throw new Error(`got ${D.status} ${D.statusText}. ${await D.text()}`)}).catch(D=>{a(i),console.error("unable to update override",D)})},[i,e]),A=x.useCallback(async N=>{const z={...i};delete z[N],a(z);try{const U=await fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"DELETE"});if(!U.ok)throw new Error(`got ${U.status} ${U.statusText}. ${await U.text()}`)}catch(U){console.error("unable to remove override",U),a(i)}},[i,e]),V=x.useCallback(async()=>{a({});try{const N=await fetch(P2(`/dev/projects/${e}/overrides`),{method:"DELETE"});if(!N.ok)throw new Error(`got ${N.status} ${N.statusText}. ${await N.text()}`)}catch(N){console.error("unable to remove all overrides",N),a(i)}},[i,e]);if(!n)return null;const R=Math.ceil(C.length/b),F=N=>{switch(N){case"next":g(z=>Math.min(z+1,R-1));break;case"prev":g(z=>Math.max(z-1,0));break;case"first":g(0);break;case"last":g(R-1);break;default:console.error("invalid page change direction.")}};return k.jsxs(k.Fragment,{children:[k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:IZ.borderRadius.regular,children:[k.jsxs(v1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[k.jsx(DI,{id:"only-show-overrides",isSelected:c,onChange:N=>{d(N)},isDisabled:!S,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),k.jsxs(Yn,{variant:"destructive",isDisabled:!S,onPress:async()=>{i&&(await V(),a({}),d(!1))},children:[k.jsx(K0,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),k.jsxs(xf,{gap:"4",children:[k.jsx(_r,{gap:"4",children:k.jsx(qF,{"aria-label":"Search flags",children:k.jsxs(UI,{children:[k.jsx(K0,{name:"search",size:"small"}),k.jsx(qw,{placeholder:"Search flags by key",onChange:N=>{v(N.target.value),g(0)},value:f,"aria-label":"Search flags input"}),k.jsx(ih,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>v("")})]})})}),k.jsx("ul",{className:"flags-list",children:P.map(([N,{value:z}],U)=>{var j;const le=(j=i[N])==null?void 0:j.value,D=N in i,ie=D?le:z;return k.jsxs("li",{style:{backgroundColor:U%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[k.jsx(Dt,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:k.jsxs(_r,{gap:"2",children:[k.jsx(mf,{asChild:!0,text:N,children:k.jsx("code",{className:D?"has-override":"",children:N})}),D&&k.jsx(Yn,{"aria-label":"Remove override",onPress:()=>{A(N)},variant:"destructive",children:k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"cancel",size:"small"}),"Remove override"]})})]})}),k.jsx(Dt,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:k.jsx(HZ,{availableVariations:t[N]?t[N]:[],currentValue:ie,flagValue:z,flagKey:N,updateOverride:T})})]},N)})})]}),k.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:k.jsx(SR,{currentOffset:m*b,isReady:!0,onChange:N=>F(N),pageSize:b,resourceName:"flags",totalCount:C.length})})]})}const GZ=async()=>{const t=await fetch(P2("/dev/projects")),e=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return e};function qZ({selectedProject:t,setSelectedProject:e,setShowBanner:n}){const[i,a]=x.useState([]),[c,d]=x.useState(!0),f=v=>{a(v),n(v.length==0),v.length==1&&e(v[0]),d(!1)};return x.useEffect(()=>{GZ().then(f).catch(v=>{console.error(v),d(!1)}),a([])},[]),c?k.jsxs("div",{style:{textAlign:"center"},children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),k.jsx("p",{children:"Projects are loading"})]}):i.length>0?k.jsxs(lV,{children:[k.jsx(_r,{gap:"1",children:k.jsxs(Il,{children:[k.jsx(Yn,{children:t??"Select a project"}),k.jsx(Vl,{children:t==null?"Please select a project":"This is the selected project"})]})}),k.jsx(a$,{children:k.jsx(yF,{children:i.map(v=>k.jsx(xF,{onAction:()=>{e(v)},children:v},v))})})]}):k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const YZ=async t=>{const e=await fetch(P2(`/dev/projects/${t}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return n},XZ=({selectedProject:t,setFlags:e,setAvailableVariations:n})=>{const[i,a]=x.useState(!1),c=async()=>{a(!0);try{const d=await YZ(t);n(d.availableVariations),e(Tp(d.flagsState))}catch(d){im.warning("Sync failed"),console.error("Sync failed:",d)}finally{im.success("Sync successful"),a(!1)}};return t?k.jsxs(Il,{children:[k.jsx(Yn,{onPress:c,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}):k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"sync",size:"small"}),k.jsx("span",{children:"Sync"})]})})}),k.jsx(Vl,{children:"Sync the selected project from the source environment"})]}):null};async function QZ(t,e){const n=await fetch(P2(`/dev/projects/${t}/environments?limit=20${e?`&name=${e}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var S3,sm;function d$(){if(sm)return S3;sm=1;function t(e){var n=typeof e;return e!=null&&(n=="object"||n=="function")}return S3=t,S3}var C3,um;function JZ(){if(um)return C3;um=1;var t=typeof so=="object"&&so&&so.Object===Object&&so;return C3=t,C3}var _3,cm;function f$(){if(cm)return _3;cm=1;var t=JZ(),e=typeof self=="object"&&self&&self.Object===Object&&self,n=t||e||Function("return this")();return _3=n,_3}var P3,dm;function eO(){if(dm)return P3;dm=1;var t=f$(),e=function(){return t.Date.now()};return P3=e,P3}var E3,fm;function tO(){if(fm)return E3;fm=1;var t=/\s/;function e(n){for(var i=n.length;i--&&t.test(n.charAt(i)););return i}return E3=e,E3}var k3,pm;function nO(){if(pm)return k3;pm=1;var t=tO(),e=/^\s+/;function n(i){return i&&i.slice(0,t(i)+1).replace(e,"")}return k3=n,k3}var T3,vm;function p$(){if(vm)return T3;vm=1;var t=f$(),e=t.Symbol;return T3=e,T3}var M3,hm;function rO(){if(hm)return M3;hm=1;var t=p$(),e=Object.prototype,n=e.hasOwnProperty,i=e.toString,a=t?t.toStringTag:void 0;function c(d){var f=n.call(d,a),v=d[a];try{d[a]=void 0;var m=!0}catch{}var g=i.call(d);return m&&(f?d[a]=v:delete d[a]),g}return M3=c,M3}var A3,mm;function iO(){if(mm)return A3;mm=1;var t=Object.prototype,e=t.toString;function n(i){return e.call(i)}return A3=n,A3}var L3,gm;function oO(){if(gm)return L3;gm=1;var t=p$(),e=rO(),n=iO(),i="[object Null]",a="[object Undefined]",c=t?t.toStringTag:void 0;function d(f){return f==null?f===void 0?a:i:c&&c in Object(f)?e(f):n(f)}return L3=d,L3}var D3,ym;function lO(){if(ym)return D3;ym=1;function t(e){return e!=null&&typeof e=="object"}return D3=t,D3}var R3,bm;function aO(){if(bm)return R3;bm=1;var t=oO(),e=lO(),n="[object Symbol]";function i(a){return typeof a=="symbol"||e(a)&&t(a)==n}return R3=i,R3}var B3,xm;function sO(){if(xm)return B3;xm=1;var t=nO(),e=d$(),n=aO(),i=NaN,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,f=parseInt;function v(m){if(typeof m=="number")return m;if(n(m))return i;if(e(m)){var g=typeof m.valueOf=="function"?m.valueOf():m;m=e(g)?g+"":g}if(typeof m!="string")return m===0?m:+m;m=t(m);var b=c.test(m);return b||d.test(m)?f(m.slice(2),b?2:8):a.test(m)?i:+m}return B3=v,B3}var V3,wm;function uO(){if(wm)return V3;wm=1;var t=d$(),e=eO(),n=sO(),i="Expected a function",a=Math.max,c=Math.min;function d(f,v,m){var g,b,S,C,P,T,A=0,V=!1,R=!1,F=!0;if(typeof f!="function")throw new TypeError(i);v=n(v)||0,t(m)&&(V=!!m.leading,R="maxWait"in m,S=R?a(n(m.maxWait)||0,v):S,F="trailing"in m?!!m.trailing:F);function N(G){var Q=g,he=b;return g=b=void 0,A=G,C=f.apply(he,Q),C}function z(G){return A=G,P=setTimeout(D,v),V?N(G):C}function U(G){var Q=G-T,he=G-A,_e=v-Q;return R?c(_e,S-he):_e}function le(G){var Q=G-T,he=G-A;return T===void 0||Q>=v||Q<0||R&&he>=S}function D(){var G=e();if(le(G))return ie(G);P=setTimeout(D,U(G))}function ie(G){return P=void 0,F&&g?N(G):(g=b=void 0,C)}function j(){P!==void 0&&clearTimeout(P),A=0,g=T=b=P=void 0}function X(){return P===void 0?C:ie(e())}function xe(){var G=e(),Q=le(G);if(g=arguments,b=this,T=G,Q){if(P===void 0)return z(T);if(R)return clearTimeout(P),P=setTimeout(D,v),N(T)}return P===void 0&&(P=setTimeout(D,v)),C}return xe.cancel=j,xe.flush=X,xe}return V3=d,V3}var cO=uO();const dO=t1(cO);function fO({projectKey:t,sourceEnvironmentKey:e,selectedEnvironment:n,setSelectedEnvironment:i}){const[a,c]=x.useState(null),[d,f]=x.useState(""),[v,m]=x.useState(!1),g=x.useCallback(dO(b=>{m(!0),QZ(t,b).then(S=>{if(c(S),!n){const C=S.find(P=>P.key===e);C?i(C):S.length>0&&i({name:"",key:e||""})}}).catch(S=>{console.error("Error fetching environments:",S)}).finally(()=>{m(!1)})},300),[t,e,n,i]);return x.useEffect(()=>{g(d)},[g,d]),k.jsxs(xf,{gap:"3",children:[k.jsx(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:k.jsx(v1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),k.jsxs(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[k.jsxs("div",{style:{position:"relative",flexGrow:1},children:[k.jsx(qw,{id:"environmentSearch",value:d,onChange:b=>f(b.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),v&&k.jsx(Dt,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:k.jsx(h1,{size:"small","aria-label":"Loading environments"})})]}),k.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:k.jsx("code",{children:n==null?void 0:n.key})})]}),k.jsx(Dt,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:k.jsx(n$,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:b=>{const S=Array.from(b)[0],C=a==null?void 0:a.find(P=>P.key===S);C&&i(C)},children:a==null?void 0:a.map(b=>k.jsx(r$,{id:b.key,children:b.name},b.key))})})]})}function pO({context:t,setContext:e}){return k.jsxs(xf,{gap:"3",children:[k.jsx(v1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),k.jsxs(c$,{value:t,onChange:e,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[k.jsx(u$,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),k.jsx(kf,{slot:"description",children:"Edit the context as JSON"}),k.jsx(t$,{})]})]})}function vO({isSubmitting:t,selectedEnvironment:e}){return k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:t,children:t?k.jsx(_r,{gap:"2",children:k.jsxs(Dt,{display:"flex",alignItems:"center",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}),k.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):e?k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),k.jsx("span",{children:e})]}):"Environment"})}function hO({projectKey:t,selectedEnvironment:e,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:a,updateProjectSettings:c}){const[d,f]=x.useState(e),[v,m]=x.useState(a),[g,b]=x.useState(!1);x.useEffect(()=>{f(e),m(a)},[e,a]);const S=async P=>{b(!0);try{P(),await c(d,v),n(d)}catch(T){console.error("Error submitting project settings:",T)}finally{b(!1)}},C=()=>{f(e),m(a)};return k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(vO,{isSubmitting:g,selectedEnvironment:i}),k.jsx(Vl,{children:k.jsx("span",{children:"Current environment. Click to update."})})]}),k.jsx(o$,{isDismissable:!1,children:k.jsx(i$,{children:k.jsx(e$,{children:({close:P})=>k.jsxs(vx,{onSubmit:T=>{T.preventDefault(),S(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[k.jsx(v1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),k.jsxs(xf,{gap:"3",children:[k.jsx(fO,{projectKey:t,sourceEnvironmentKey:i,selectedEnvironment:d,setSelectedEnvironment:f}),k.jsx(Dt,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),k.jsx(pO,{context:v,setContext:m})]}),k.jsxs(Xw,{style:{justifyContent:"flex-end"},children:[k.jsx(Yn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:g,children:g?k.jsxs(_r,{gap:"2",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),k.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function mO(){const[t,e]=x.useState(null),[n,i]=x.useState(null),[a,c]=x.useState(null),[d,f]=x.useState({}),[v,m]=x.useState({}),[g,b]=x.useState(null),[S,C]=x.useState(!1),[P,T]=x.useState("{}"),A=x.useCallback(async()=>{if(!t)return;const R=await fetch(P2(`/dev/projects/${t}?expand=overrides&expand=availableVariations`)),F=await R.json();if(!R.ok)throw new Error(`Got ${R.status}, ${R.statusText} from flag fetch`);const{flagsState:N,overrides:z,sourceEnvironmentKey:U,availableVariations:le,context:D}=F;b(Tp(N)),f(z),c(U),m(le),T(JSON.stringify(D||"{}",null,2));const j=(await gO(t)).find(X=>X.key===U);j&&i(j)},[t]);x.useEffect(()=>{t&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,t]),x.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const V=x.useCallback(async(R,F)=>{if(t)try{const N=await fetch(P2(`/dev/projects/${t}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:R==null?void 0:R.key,context:JSON.parse(F)})});if(!N.ok)throw new Error(`Got ${N.status}, ${N.statusText} from project settings update`);const z=await N.json(),{flagsState:U,sourceEnvironmentKey:le,context:D}=z;b(Tp(U)),c(le),T(JSON.stringify(D||{},null,2)),i(R),await A()}catch(N){console.error("Error updating project settings:",N)}},[t,A]);return k.jsx("div",{style:{width:"100%"},children:k.jsx(Dt,{width:"100%",minWidth:"600px",children:k.jsxs(Dt,{display:"flex",flexDirection:"column",width:"100%",children:[S&&k.jsx(Dt,{marginBottom:"2rem",width:"100%",children:k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!S&&k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[k.jsx(qZ,{selectedProject:t,setSelectedProject:e,setShowBanner:C}),t&&k.jsx(hO,{projectKey:t,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:a,context:P,updateProjectSettings:V}),k.jsx(XZ,{selectedProject:t,setFlags:b,setAvailableVariations:m})]}),t&&k.jsx(Dt,{width:"100%",children:k.jsx(UZ,{availableVariations:v,selectedProject:t,flags:g,overrides:d,setOverrides:R=>{f(R)}})})]})})})}async function gO(t){const e=await fetch(P2(`/dev/projects/${t}/environments`));if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from environments fetch`);return e.json()}const yO=({event:t})=>{const e=JSON.parse(t.data);return console.log("parsed",e),k.jsx("span",{children:t.data})},bO=t=>{let e;try{e=JSON.parse(t.data)}catch(n){return console.error("Failed to parse event data as JSON:",n),k.jsx("div",{children:"Error. See console."})}return k.jsx(yO,{event:t})},xO=({})=>{const[t,e]=x.useState([]);return x.useEffect(()=>{const n=new EventSource(P2("/events/tee"));return n.addEventListener("put",i=>{if(!i.data||i.data.trim()==="")return;const a={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:i.data};e(c=>[...c,a])}),()=>{console.log("closing event source"),n.close()}},[]),k.jsxs("div",{children:[k.jsx("h3",{children:"Events Stream"}),t.map(n=>k.jsx("div",{children:bO(n)},n.id)),t.length===0&&k.jsx("p",{children:"No events received yet..."})]})};function wO(){const[t,e]=x.useState("flags");return k.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:k.jsxs(Dt,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[k.jsxs(Dt,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[k.jsx(BZ,{onPress:()=>{e("flags")}}),k.jsx(VZ,{onPress:()=>{e("events")}})]}),k.jsxs(Dt,{padding:"1rem",width:"100%",children:[t==="flags"&&k.jsx(mO,{}),t==="events"&&k.jsx(xO,{})]})]})})}const $O="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function SO({children:t}){return x.useEffect(()=>{fetch($O).then(async e=>e.text()).then(e=>{const i=new DOMParser().parseFromString(e,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(e=>{console.log("unable to fetch icon",e)})},[]),k.jsx(Pm.Provider,{value:{path:""},children:t})}const CO=()=>(x.useEffect(()=>{const t=window.matchMedia("(prefers-color-scheme: dark)"),e=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return e(t),t.addEventListener("change",e),()=>{t.removeEventListener("change",e)}},[]),k.jsx(ee.StrictMode,{children:k.jsxs(SO,{children:[k.jsx(wO,{}),k.jsx(AZ,{})]})}));KC.createRoot(document.getElementById("root")).render(k.jsx(CO,{})); +}`;var o0=$h(function(){return v0(L,Fe+"return "+be).apply(n,I)});if(o0.source=be,$7(o0))throw o0;return o0}function jS(l){return P0(l).toLowerCase()}function KS(l){return P0(l).toUpperCase()}function WS(l,s,h){if(l=P0(l),l&&(h||s===n))return j1(l);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=rn(s),L=K1($,_),I=yu($,_)+1;return Fr($,L,I).join("")}function US(l,s,h){if(l=P0(l),l&&(h||s===n))return l.slice(0,ra(l)+1);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=yu($,rn(s))+1;return Fr($,0,_).join("")}function GS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.replace(Xs,"");if(!l||!(s=Xt(s)))return l;var $=rn(l),_=K1($,rn(s));return Fr($,_).join("")}function qS(l,s){var h=j,$=X;if(Q0(s)){var _="separator"in s?s.separator:_;h="length"in s?n0(s.length):h,$="omission"in s?Xt(s.omission):$}l=P0(l);var L=l.length;if(Ti(l)){var I=rn(l);L=I.length}if(h>=L)return l;var O=h-O2($);if(O<1)return $;var Y=I?Fr(I,0,O).join(""):l.slice(0,O);if(_===n)return Y+$;if(I&&(O+=Y.length-O),S7(_)){if(l.slice(O).search(_)){var pe,ve=Y;for(_.global||(_=Io(_.source,P0(Js.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;Y=Y.slice(0,be===n?O:be)}}else if(l.indexOf(Xt(_),O)!=O){var Te=Y.lastIndexOf(_);Te>-1&&(Y=Y.slice(0,Te))}return Y+$}function YS(l){return l=P0(l),l&&m1.test(l)?l.replace(D2,Y1):l}var XS=J2(function(l,s,h){return l+(h?" ":"")+s.toUpperCase()}),P7=ju("toUpperCase");function wh(l,s,h){return l=P0(l),s=h?n:s,s===n?Uf(l)?Xf(l):jf(l):l.match(s)||[]}var $h=t0(function(l,s){try{return Vt(l,n,s)}catch(h){return $7(h)?h:new Ge(h)}}),QS=hr(function(l,s){return Ct(s,function(h){h=Hn(h),sr(l,h,we(l[h],l))}),l});function JS(l){var s=l==null?0:l.length,h=He();return l=s?T0(l,function($){if(typeof $[1]!="function")throw new hn(d);return[h($[0]),$[1]]}):[],t0(function($){for(var _=-1;++_fe)return[];var h=H,$=_t(l,H);s=He(s),l-=H;for(var _=gu($,s);++h0||s<0)?new Xe(h):(l<0?h=h.takeRight(-l):l&&(h=h.drop(l)),s!==n&&(s=n0(s),h=s<0?h.dropRight(-s):h.take(s-l)),h)},Xe.prototype.takeRightWhile=function(l){return this.reverse().takeWhile(l).reverse()},Xe.prototype.toArray=function(){return this.take(H)},an(Xe.prototype,function(l,s){var h=/^(?:filter|find|map|reject)|While$/.test(s),$=/^(?:head|last)$/.test(s),_=M[$?"take"+(s=="last"?"Right":""):s],L=$||/^find/.test(s);_&&(M.prototype[s]=function(){var I=this.__wrapped__,O=$?[1]:arguments,Y=I instanceof Xe,pe=O[0],ve=Y||Qe(I),be=function(u0){var p0=_.apply(M,Jr([u0],O));return $&&Te?p0[0]:p0};ve&&h&&typeof pe=="function"&&pe.length!=1&&(Y=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=L&&!Te,o0=Y&&!Fe;if(!L&&ve){I=o0?I:new Xe(this);var Ue=l.apply(I,O);return Ue.__actions__.push({func:jn,args:[be],thisArg:n}),new Pt(Ue,Te)}return We&&o0?l.apply(this,O):(Ue=this.thru(be),We?$?Ue.value()[0]:Ue.value():Ue)})}),Ct(["pop","push","shift","sort","splice","unshift"],function(l){var s=kr[l],h=/^(?:push|sort|unshift)$/.test(l)?"tap":"thru",$=/^(?:pop|shift)$/.test(l);M.prototype[l]=function(){var _=arguments;if($&&!this.__chain__){var L=this.value();return s.apply(Qe(L)?L:[],_)}return this[h](function(I){return s.apply(Qe(I)?I:[],_)})}}),an(Xe.prototype,function(l,s){var h=M[s];if(h){var $=h.name+"";h0.call(Vi,$)||(Vi[$]=[]),Vi[$].push({name:s,func:h})}}),Vi[Xi(n,V).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=va,Xe.prototype.reverse=_u,Xe.prototype.value=Zi,M.prototype.at=es,M.prototype.chain=oi,M.prototype.commit=ts,M.prototype.next=vc,M.prototype.plant=h7,M.prototype.reverse=mc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=m7,M.prototype.first=M.prototype.head,Mr&&(M.prototype[Mr]=hc),M},Mi=Qf();nr?((nr.exports=Mi)._=Mi,Bo._=Mi):B0._=Mi}).call(ZZ)}(Ac,Ac.exports)),Ac.exports}var NZ=OZ();const HZ=({availableVariations:t,currentValue:e,flagKey:n,flagValue:i,updateOverride:a})=>{switch(typeof i){case"boolean":return k.jsx("div",{className:"animated-switch-container",children:k.jsxs(LV,{className:"animated-switch",isSelected:e,onChange:c=>{a(n,c)},children:[k.jsx("span",{className:"switch-text switch-text-false",children:"False"}),k.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let c=t,d=c.findIndex(v=>NZ.isEqual(v.value,e));d===-1&&(c=[{_id:"OVERRIDE",name:"Local Override",value:e},...c],d=0);const f=v=>m=>{m.preventDefault();const g=Object.fromEntries(new FormData(m.currentTarget));a(n,JSON.parse(g.value)),v()};return k.jsxs(_r,{gap:"2",children:[k.jsx(tZ,{"aria-label":"flag variations select",selectedKey:d,onSelectionChange:v=>{typeof v!="number"?console.error(`selected non numeric key: ${v}`):a(n,c[v].value)},style:{maxWidth:"250px"},children:k.jsxs(x.Fragment,{children:[d!==null&&c[d]._id==="OVERRIDE"?k.jsxs(Il,{children:[k.jsxs(Yn,{children:[k.jsx(rm,{}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(Vl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):k.jsxs(Yn,{children:[k.jsx(rm,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(a$,{children:k.jsx(n$,{children:c.map((v,m)=>{const g=v.name?v.name:JSON.stringify(v.value);return k.jsx(r$,{id:m,textValue:g,children:v._id==="OVERRIDE"?k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"devices",size:"small"}),g]})}):g},m)})})})]},".0")}),k.jsx(Dt,{width:"2rem",height:"2rem",children:k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(ih,{icon:"edit","aria-label":"edit variation value"}),k.jsx(Vl,{children:"Edit the served variation value as JSON"})]}),k.jsx(o$,{children:k.jsx(i$,{children:k.jsx(e$,{children:({close:v})=>k.jsxs(vx,{onSubmit:f(v),children:[k.jsxs(c$,{defaultValue:JSON.stringify(e,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:m=>{try{return JSON.parse(m),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[k.jsx(v1,{children:`${n} value`}),k.jsx(u$,{style:{fontFamily:"monospace"}}),k.jsx(kf,{slot:"description",children:"Update the value as JSON"}),k.jsx(t$,{})]}),k.jsxs(Xw,{children:[k.jsx(Yn,{onPress:v,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var g5={exports:{}},zZ=g5.exports,am;function jZ(){return am||(am=1,function(t){((e,n)=>{t.exports?t.exports=n():e.fuzzysort=n()})(zZ,e=>{var n=(oe,q)=>{if(!oe||!q)return Pe;var ue=P(oe);he(q)||(q=C(q));var $e=ue.bitflags;return($e&q._bitflags)!==$e?Pe:A(ue,q)},i=(oe,q,ue)=>{if(!oe)return ue!=null&&ue.all?T(q,ue):fe;var $e=P(oe),Ee=$e.bitflags,Se=$e.containsSpace,me=b((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||_e,ke=0,ze=0,Ye=q.length;function g0(jt){kece.peek()._score&&ce.replaceTop(jt))}if(ue!=null&&ue.key)for(var k0=ue.key,l0=0;l0-1e3&&j[c0]>se){var i0=(j[c0]+X[c0])/4;i0>j[c0]&&(j[c0]=i0)}X[c0]>j[c0]&&(j[c0]=X[c0])}}if(Se){for(let e0=0;e0<$e.spaceSearches.length;e0++)if(j[e0]===se)continue e}else{var Ze=!1;for(let e0=0;e0-1e3&&$0>se){var i0=($0+a0._score)/4;i0>$0&&($0=i0)}a0._score>$0&&($0=a0._score)}}if(q0.obj=w0,q0._score=$0,ue!=null&&ue.scoreFn){if($0=ue.scoreFn(q0),!$0)continue;$0=b($0),q0._score=$0}$0=0;--l0)W0[l0]=ce.poll();return W0.total=ke+ze,W0},a=(oe,q="",ue="")=>{for(var $e=typeof q=="function"?q:void 0,Ee=oe.target,Se=Ee.length,me=oe.indexes,Be="",ke=0,ze=0,Ye=!1,g0=[],k0=0;k0{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe="");var q=R(oe);return m(oe,{_targetLower:q._lower,_targetLowerCodes:q.lowerCodes,_bitflags:q.bitflags})},d=()=>{z.clear(),U.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((q,ue)=>q-ue)}set indexes(q){return this._indexes=q}highlight(q,ue){return a(this,q,ue)}get score(){return g(this._score)}set score(q){this._score=b(q)}}class v extends Array{get score(){return g(this._score)}set score(q){this._score=b(q)}}var m=(oe,q)=>{const ue=new f;return ue.target=oe,ue.obj=q.obj??Pe,ue._score=q._score??se,ue._indexes=q._indexes??[],ue._targetLower=q._targetLower??"",ue._targetLowerCodes=q._targetLowerCodes??Pe,ue._nextBeginningIndexes=q._nextBeginningIndexes??Pe,ue._bitflags=q._bitflags??0,ue},g=oe=>oe===se?0:oe>1?oe:Math.E**(((-oe+1)**.04307-1)*-2),b=oe=>oe===0?se:oe>1?oe:1-Math.pow(Math.log(oe)/-2+1,1/.04307),S=oe=>{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe=""),oe=oe.trim();var q=R(oe),ue=[];if(q.containsSpace){var $e=oe.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=R($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:q.lowerCodes,_lower:q._lower,containsSpace:q.containsSpace,bitflags:q.bitflags,spaceSearches:ue}},C=oe=>{if(oe.length>999)return c(oe);var q=z.get(oe);return q!==void 0||(q=c(oe),z.set(oe,q)),q},P=oe=>{if(oe.length>999)return S(oe);var q=U.get(oe);return q!==void 0||(q=S(oe),U.set(oe,q)),q},T=(oe,q)=>{var ue=[];ue.total=oe.length;var $e=(q==null?void 0:q.limit)||_e;if(q!=null&&q.key)for(var Ee=0;Ee=$e)return ue}}else if(q!=null&&q.keys)for(var Ee=0;Ee=0;--ze){var me=Q(Se,q.keys[ze]);if(!me){ke[ze]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[ze]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(oe,q,ue=!1,$e=!1)=>{if(ue===!1&&oe.containsSpace)return V(oe,q,$e);for(var Ee=oe._lower,Se=oe.lowerCodes,me=Se[0],Be=q._targetLowerCodes,ke=Se.length,ze=Be.length,l0=0,Ye=0,g0=0;;){var k0=me===Be[Ye];if(k0){if(le[g0++]=Ye,++l0,l0===ke)break;me=Se[l0]}if(++Ye,Ye>=ze)return Pe}var l0=0,w0=!1,r0=0,a0=q._nextBeginningIndexes;a0===Pe&&(a0=q._nextBeginningIndexes=N(q.target)),Ye=le[0]===0?0:a0[le[0]-1];var tt=0;if(Ye!==ze)for(;;)if(Ye>=ze){if(l0<=0||(++tt,tt>200))break;--l0;var y0=D[--r0];Ye=a0[y0]}else{var k0=Se[l0]===Be[Ye];if(k0){if(D[r0++]=Ye,++l0,l0===ke){w0=!0;break}++Ye}else Ye=a0[Ye]}var d0=ke<=1?-1:q._targetLower.indexOf(Ee,le[0]),De=!!~d0,i0=De?d0===0||q._nextBeginningIndexes[d0-1]===d0:!1;if(De&&!i0){for(var Ze=0;Ze{for(var c0=0,er=0,St=1;St24&&(c0*=(pn-24)*10)}return c0-=(ze-ke)/2,De&&(c0/=1+ke*ke*1),i0&&(c0/=1+ke*ke*1),c0-=(ze-ke)/2,c0};if(w0)if(i0){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=Pe,me=0,Be=oe.spaceSearches,ke=Be.length,ze=0,Ye=()=>{for(let i0=ze-1;i0>=0;i0--)q._nextBeginningIndexes[ie[i0*2+0]]=ie[i0*2+1]},g0=!1,De=0;De=0&&tt===q._nextBeginningIndexes[Ze];Ze--)q._nextBeginningIndexes[Ze]=a0,ie[ze*2+0]=Ze,ie[ze*2+1]=tt,ze++}}Ee+=Se._score/ke,X[De]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var De=0;De{for(var q=oe.length,ue=oe.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var q=oe.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,ze=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!ze;Ee=ke,Se=ze,Ye&&(ue[$e++]=me)}return ue},N=oe=>{for(var q=oe.length,ue=F(oe),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?q:Ee);return $e},z=new Map,U=new Map,le=[],D=[],ie=[],j=[],X=[],xe=[],G=[],Q=(oe,q)=>{var ue=oe[q];if(ue!==void 0)return ue;if(typeof q=="function")return q(oe);var $e=q;Array.isArray(q)||($e=q.split("."));for(var Ee=$e.length,Se=-1;oe&&++Setypeof oe=="object"&&typeof oe._bitflags=="number",_e=1/0,se=-_e,fe=[];fe.total=0;var Pe=null,ae=c(""),H=oe=>{var q=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=q[me],ke=1;ke>1]=q[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)q[me]=q[Ye];q[me]=Be};return $e.add=Se=>{var me=ue;q[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)q[me]=q[Be];q[me]=Se},$e.poll=Se=>{if(ue!==0){var me=q[0];return q[0]=q[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return q[0]},$e.replaceTop=Se=>{q[0]=Se,Ee()},$e},ce=H();return{single:n,go:i,prepare:c,cleanup:d}})}(g5)),g5.exports}var KZ=jZ();const WZ=t1(KZ);function UZ({availableVariations:t,selectedProject:e,flags:n,overrides:i,setOverrides:a}){const[c,d]=x.useState(!1),[f,v]=x.useState(""),[m,g]=x.useState(0),b=20,S=x.useMemo(()=>i&&Object.keys(i).length>0,[i]);x.useEffect(()=>{!S&&c&&d(!1)},[S,c]);const C=x.useMemo(()=>n?Object.entries(n).filter(z=>{if(!f)return!0;const[U]=z,le=WZ.single(f.toLowerCase(),U);return le&&le.score>-5e3}).filter(z=>{const[U]=z,le=U in i;return!(c&&!le)}):[],[n,f,c,i]),P=x.useMemo(()=>{const N=m*b,z=N+b;return C.slice(N,z)},[C,m]),T=x.useCallback((N,z)=>{var le;const U={...i,[N]:{value:z,version:((le=i[N])==null?void 0:le.version)||0}};a(U),fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"PUT",body:JSON.stringify(z)}).then(async D=>{if(!D.ok)throw new Error(`got ${D.status} ${D.statusText}. ${await D.text()}`)}).catch(D=>{a(i),console.error("unable to update override",D)})},[i,e]),A=x.useCallback(async N=>{const z={...i};delete z[N],a(z);try{const U=await fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"DELETE"});if(!U.ok)throw new Error(`got ${U.status} ${U.statusText}. ${await U.text()}`)}catch(U){console.error("unable to remove override",U),a(i)}},[i,e]),V=x.useCallback(async()=>{a({});try{const N=await fetch(P2(`/dev/projects/${e}/overrides`),{method:"DELETE"});if(!N.ok)throw new Error(`got ${N.status} ${N.statusText}. ${await N.text()}`)}catch(N){console.error("unable to remove all overrides",N),a(i)}},[i,e]);if(!n)return null;const R=Math.ceil(C.length/b),F=N=>{switch(N){case"next":g(z=>Math.min(z+1,R-1));break;case"prev":g(z=>Math.max(z-1,0));break;case"first":g(0);break;case"last":g(R-1);break;default:console.error("invalid page change direction.")}};return k.jsxs(k.Fragment,{children:[k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:IZ.borderRadius.regular,children:[k.jsxs(v1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[k.jsx(DI,{id:"only-show-overrides",isSelected:c,onChange:N=>{d(N)},isDisabled:!S,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),k.jsxs(Yn,{variant:"destructive",isDisabled:!S,onPress:async()=>{i&&(await V(),a({}),d(!1))},children:[k.jsx(K0,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),k.jsxs(xf,{gap:"4",children:[k.jsx(_r,{gap:"4",children:k.jsx(qF,{"aria-label":"Search flags",children:k.jsxs(UI,{children:[k.jsx(K0,{name:"search",size:"small"}),k.jsx(qw,{placeholder:"Search flags by key",onChange:N=>{v(N.target.value),g(0)},value:f,"aria-label":"Search flags input"}),k.jsx(ih,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>v("")})]})})}),k.jsx("ul",{className:"flags-list",children:P.map(([N,{value:z}],U)=>{var j;const le=(j=i[N])==null?void 0:j.value,D=N in i,ie=D?le:z;return k.jsxs("li",{style:{backgroundColor:U%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[k.jsx(Dt,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:k.jsxs(_r,{gap:"2",children:[k.jsx(mf,{asChild:!0,text:N,children:k.jsx("code",{className:D?"has-override":"",children:N})}),D&&k.jsx(Yn,{"aria-label":"Remove override",onPress:()=>{A(N)},variant:"destructive",children:k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"cancel",size:"small"}),"Remove override"]})})]})}),k.jsx(Dt,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:k.jsx(HZ,{availableVariations:t[N]?t[N]:[],currentValue:ie,flagValue:z,flagKey:N,updateOverride:T})})]},N)})})]}),k.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:k.jsx(SR,{currentOffset:m*b,isReady:!0,onChange:N=>F(N),pageSize:b,resourceName:"flags",totalCount:C.length})})]})}const GZ=async()=>{const t=await fetch(P2("/dev/projects")),e=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return e};function qZ({selectedProject:t,setSelectedProject:e,setShowBanner:n}){const[i,a]=x.useState([]),[c,d]=x.useState(!0),f=v=>{a(v),n(v.length==0),v.length==1&&e(v[0]),d(!1)};return x.useEffect(()=>{GZ().then(f).catch(v=>{console.error(v),d(!1)}),a([])},[]),c?k.jsxs("div",{style:{textAlign:"center"},children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),k.jsx("p",{children:"Projects are loading"})]}):i.length>0?k.jsxs(lV,{children:[k.jsx(_r,{gap:"1",children:k.jsxs(Il,{children:[k.jsx(Yn,{children:t??"Select a project"}),k.jsx(Vl,{children:t==null?"Please select a project":"This is the selected project"})]})}),k.jsx(a$,{children:k.jsx(yF,{children:i.map(v=>k.jsx(xF,{onAction:()=>{e(v)},children:v},v))})})]}):k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const YZ=async t=>{const e=await fetch(P2(`/dev/projects/${t}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return n},XZ=({selectedProject:t,setFlags:e,setAvailableVariations:n})=>{const[i,a]=x.useState(!1),c=async()=>{a(!0);try{const d=await YZ(t);n(d.availableVariations),e(Tp(d.flagsState))}catch(d){im.warning("Sync failed"),console.error("Sync failed:",d)}finally{im.success("Sync successful"),a(!1)}};return t?k.jsxs(Il,{children:[k.jsx(Yn,{onPress:c,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}):k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"sync",size:"small"}),k.jsx("span",{children:"Sync"})]})})}),k.jsx(Vl,{children:"Sync the selected project from the source environment"})]}):null};async function QZ(t,e){const n=await fetch(P2(`/dev/projects/${t}/environments?limit=20${e?`&name=${e}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var S3,sm;function d$(){if(sm)return S3;sm=1;function t(e){var n=typeof e;return e!=null&&(n=="object"||n=="function")}return S3=t,S3}var C3,um;function JZ(){if(um)return C3;um=1;var t=typeof so=="object"&&so&&so.Object===Object&&so;return C3=t,C3}var _3,cm;function f$(){if(cm)return _3;cm=1;var t=JZ(),e=typeof self=="object"&&self&&self.Object===Object&&self,n=t||e||Function("return this")();return _3=n,_3}var P3,dm;function eO(){if(dm)return P3;dm=1;var t=f$(),e=function(){return t.Date.now()};return P3=e,P3}var E3,fm;function tO(){if(fm)return E3;fm=1;var t=/\s/;function e(n){for(var i=n.length;i--&&t.test(n.charAt(i)););return i}return E3=e,E3}var k3,pm;function nO(){if(pm)return k3;pm=1;var t=tO(),e=/^\s+/;function n(i){return i&&i.slice(0,t(i)+1).replace(e,"")}return k3=n,k3}var T3,vm;function p$(){if(vm)return T3;vm=1;var t=f$(),e=t.Symbol;return T3=e,T3}var M3,hm;function rO(){if(hm)return M3;hm=1;var t=p$(),e=Object.prototype,n=e.hasOwnProperty,i=e.toString,a=t?t.toStringTag:void 0;function c(d){var f=n.call(d,a),v=d[a];try{d[a]=void 0;var m=!0}catch{}var g=i.call(d);return m&&(f?d[a]=v:delete d[a]),g}return M3=c,M3}var A3,mm;function iO(){if(mm)return A3;mm=1;var t=Object.prototype,e=t.toString;function n(i){return e.call(i)}return A3=n,A3}var L3,gm;function oO(){if(gm)return L3;gm=1;var t=p$(),e=rO(),n=iO(),i="[object Null]",a="[object Undefined]",c=t?t.toStringTag:void 0;function d(f){return f==null?f===void 0?a:i:c&&c in Object(f)?e(f):n(f)}return L3=d,L3}var D3,ym;function lO(){if(ym)return D3;ym=1;function t(e){return e!=null&&typeof e=="object"}return D3=t,D3}var R3,bm;function aO(){if(bm)return R3;bm=1;var t=oO(),e=lO(),n="[object Symbol]";function i(a){return typeof a=="symbol"||e(a)&&t(a)==n}return R3=i,R3}var B3,xm;function sO(){if(xm)return B3;xm=1;var t=nO(),e=d$(),n=aO(),i=NaN,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,f=parseInt;function v(m){if(typeof m=="number")return m;if(n(m))return i;if(e(m)){var g=typeof m.valueOf=="function"?m.valueOf():m;m=e(g)?g+"":g}if(typeof m!="string")return m===0?m:+m;m=t(m);var b=c.test(m);return b||d.test(m)?f(m.slice(2),b?2:8):a.test(m)?i:+m}return B3=v,B3}var V3,wm;function uO(){if(wm)return V3;wm=1;var t=d$(),e=eO(),n=sO(),i="Expected a function",a=Math.max,c=Math.min;function d(f,v,m){var g,b,S,C,P,T,A=0,V=!1,R=!1,F=!0;if(typeof f!="function")throw new TypeError(i);v=n(v)||0,t(m)&&(V=!!m.leading,R="maxWait"in m,S=R?a(n(m.maxWait)||0,v):S,F="trailing"in m?!!m.trailing:F);function N(G){var Q=g,he=b;return g=b=void 0,A=G,C=f.apply(he,Q),C}function z(G){return A=G,P=setTimeout(D,v),V?N(G):C}function U(G){var Q=G-T,he=G-A,_e=v-Q;return R?c(_e,S-he):_e}function le(G){var Q=G-T,he=G-A;return T===void 0||Q>=v||Q<0||R&&he>=S}function D(){var G=e();if(le(G))return ie(G);P=setTimeout(D,U(G))}function ie(G){return P=void 0,F&&g?N(G):(g=b=void 0,C)}function j(){P!==void 0&&clearTimeout(P),A=0,g=T=b=P=void 0}function X(){return P===void 0?C:ie(e())}function xe(){var G=e(),Q=le(G);if(g=arguments,b=this,T=G,Q){if(P===void 0)return z(T);if(R)return clearTimeout(P),P=setTimeout(D,v),N(T)}return P===void 0&&(P=setTimeout(D,v)),C}return xe.cancel=j,xe.flush=X,xe}return V3=d,V3}var cO=uO();const dO=t1(cO);function fO({projectKey:t,sourceEnvironmentKey:e,selectedEnvironment:n,setSelectedEnvironment:i}){const[a,c]=x.useState(null),[d,f]=x.useState(""),[v,m]=x.useState(!1),g=x.useCallback(dO(b=>{m(!0),QZ(t,b).then(S=>{if(c(S),!n){const C=S.find(P=>P.key===e);C?i(C):S.length>0&&i({name:"",key:e||""})}}).catch(S=>{console.error("Error fetching environments:",S)}).finally(()=>{m(!1)})},300),[t,e,n,i]);return x.useEffect(()=>{g(d)},[g,d]),k.jsxs(xf,{gap:"3",children:[k.jsx(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:k.jsx(v1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),k.jsxs(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[k.jsxs("div",{style:{position:"relative",flexGrow:1},children:[k.jsx(qw,{id:"environmentSearch",value:d,onChange:b=>f(b.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),v&&k.jsx(Dt,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:k.jsx(h1,{size:"small","aria-label":"Loading environments"})})]}),k.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:k.jsx("code",{children:n==null?void 0:n.key})})]}),k.jsx(Dt,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:k.jsx(n$,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:b=>{const S=Array.from(b)[0],C=a==null?void 0:a.find(P=>P.key===S);C&&i(C)},children:a==null?void 0:a.map(b=>k.jsx(r$,{id:b.key,children:b.name},b.key))})})]})}function pO({context:t,setContext:e}){return k.jsxs(xf,{gap:"3",children:[k.jsx(v1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),k.jsxs(c$,{value:t,onChange:e,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[k.jsx(u$,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),k.jsx(kf,{slot:"description",children:"Edit the context as JSON"}),k.jsx(t$,{})]})]})}function vO({isSubmitting:t,selectedEnvironment:e}){return k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:t,children:t?k.jsx(_r,{gap:"2",children:k.jsxs(Dt,{display:"flex",alignItems:"center",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}),k.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):e?k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),k.jsx("span",{children:e})]}):"Environment"})}function hO({projectKey:t,selectedEnvironment:e,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:a,updateProjectSettings:c}){const[d,f]=x.useState(e),[v,m]=x.useState(a),[g,b]=x.useState(!1);x.useEffect(()=>{f(e),m(a)},[e,a]);const S=async P=>{b(!0);try{P(),await c(d,v),n(d)}catch(T){console.error("Error submitting project settings:",T)}finally{b(!1)}},C=()=>{f(e),m(a)};return k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(vO,{isSubmitting:g,selectedEnvironment:i}),k.jsx(Vl,{children:k.jsx("span",{children:"Current environment. Click to update."})})]}),k.jsx(o$,{isDismissable:!1,children:k.jsx(i$,{children:k.jsx(e$,{children:({close:P})=>k.jsxs(vx,{onSubmit:T=>{T.preventDefault(),S(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[k.jsx(v1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),k.jsxs(xf,{gap:"3",children:[k.jsx(fO,{projectKey:t,sourceEnvironmentKey:i,selectedEnvironment:d,setSelectedEnvironment:f}),k.jsx(Dt,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),k.jsx(pO,{context:v,setContext:m})]}),k.jsxs(Xw,{style:{justifyContent:"flex-end"},children:[k.jsx(Yn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:g,children:g?k.jsxs(_r,{gap:"2",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),k.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function mO(){const[t,e]=x.useState(null),[n,i]=x.useState(null),[a,c]=x.useState(null),[d,f]=x.useState({}),[v,m]=x.useState({}),[g,b]=x.useState(null),[S,C]=x.useState(!1),[P,T]=x.useState("{}"),A=x.useCallback(async()=>{if(!t)return;const R=await fetch(P2(`/dev/projects/${t}?expand=overrides&expand=availableVariations`)),F=await R.json();if(!R.ok)throw new Error(`Got ${R.status}, ${R.statusText} from flag fetch`);const{flagsState:N,overrides:z,sourceEnvironmentKey:U,availableVariations:le,context:D}=F;b(Tp(N)),f(z),c(U),m(le),T(JSON.stringify(D||"{}",null,2));const j=(await gO(t)).find(X=>X.key===U);j&&i(j)},[t]);x.useEffect(()=>{t&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,t]),x.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const V=x.useCallback(async(R,F)=>{if(t)try{const N=await fetch(P2(`/dev/projects/${t}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:R==null?void 0:R.key,context:JSON.parse(F)})});if(!N.ok)throw new Error(`Got ${N.status}, ${N.statusText} from project settings update`);const z=await N.json(),{flagsState:U,sourceEnvironmentKey:le,context:D}=z;b(Tp(U)),c(le),T(JSON.stringify(D||{},null,2)),i(R),await A()}catch(N){console.error("Error updating project settings:",N)}},[t,A]);return k.jsx("div",{style:{width:"100%"},children:k.jsx(Dt,{width:"100%",minWidth:"600px",children:k.jsxs(Dt,{display:"flex",flexDirection:"column",width:"100%",children:[S&&k.jsx(Dt,{marginBottom:"2rem",width:"100%",children:k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!S&&k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[k.jsx(qZ,{selectedProject:t,setSelectedProject:e,setShowBanner:C}),t&&k.jsx(hO,{projectKey:t,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:a,context:P,updateProjectSettings:V}),k.jsx(XZ,{selectedProject:t,setFlags:b,setAvailableVariations:m})]}),t&&k.jsx(Dt,{width:"100%",children:k.jsx(UZ,{availableVariations:v,selectedProject:t,flags:g,overrides:d,setOverrides:R=>{f(R)}})})]})})})}async function gO(t){const e=await fetch(P2(`/dev/projects/${t}/environments`));if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from environments fetch`);return e.json()}const yO=({event:t})=>{const e=JSON.parse(t.data);return console.log("parsed",e),k.jsx("span",{children:t.data})},bO=t=>{let e;try{e=JSON.parse(t.data)}catch(n){return console.error("Failed to parse event data as JSON:",n),k.jsx("div",{children:"Error. See console."})}return k.jsx(yO,{event:t})},xO=({})=>{const[t,e]=x.useState([]);return x.useEffect(()=>{const n=new EventSource(P2("/events/tee"));return n.addEventListener("put",i=>{if(!i.data||i.data.trim()==="")return;const a={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:i.data};e(c=>[...c,a])}),()=>{console.log("closing event source"),n.close()}},[]),k.jsxs("div",{children:[k.jsx("h3",{children:"Events Stream"}),k.jsx("ul",{children:t.map(n=>k.jsx("li",{children:bO(n)},n.id))}),t.length===0&&k.jsx("p",{children:"No events received yet..."})]})};function wO(){const[t,e]=x.useState("flags");return k.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:k.jsxs(Dt,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[k.jsxs(Dt,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[k.jsx(BZ,{onPress:()=>{e("flags")}}),k.jsx(VZ,{onPress:()=>{e("events")}})]}),k.jsxs(Dt,{padding:"1rem",width:"100%",children:[t==="flags"&&k.jsx(mO,{}),t==="events"&&k.jsx(xO,{})]})]})})}const $O="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function SO({children:t}){return x.useEffect(()=>{fetch($O).then(async e=>e.text()).then(e=>{const i=new DOMParser().parseFromString(e,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(e=>{console.log("unable to fetch icon",e)})},[]),k.jsx(Pm.Provider,{value:{path:""},children:t})}const CO=()=>(x.useEffect(()=>{const t=window.matchMedia("(prefers-color-scheme: dark)"),e=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return e(t),t.addEventListener("change",e),()=>{t.removeEventListener("change",e)}},[]),k.jsx(ee.StrictMode,{children:k.jsxs(SO,{children:[k.jsx(wO,{}),k.jsx(AZ,{})]})}));KC.createRoot(document.getElementById("root")).render(k.jsx(CO,{})); diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index 7e0928df3..d670ac12c 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -46,9 +46,11 @@ const EventsPage = ({}: Props) => { return (

Events Stream

- {events.map(event => ( -
{renderEvent(event)}
- ))} +
    + {events.map(event => ( +
  • {renderEvent(event)}
  • + ))} +
{events.length === 0 &&

No events received yet...

}
); From c3fd209501f18f98eebbef7016201c5c88dc5edf Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 16:26:42 -0700 Subject: [PATCH 26/96] add basic tabularization of summary events --- internal/dev_server/ui/dist/index.html | 4 +- internal/dev_server/ui/src/App.css | 33 +++++++++ internal/dev_server/ui/src/Event.tsx | 13 ---- internal/dev_server/ui/src/EventsPage.tsx | 87 ++++++++++++++++++++--- 4 files changed, 112 insertions(+), 25 deletions(-) delete mode 100644 internal/dev_server/ui/src/Event.tsx diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index dd1d926b2..91fc5fe5c 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -88,8 +88,8 @@ function print() { __p += __j.call(arguments, '') } `:`; `)+be+`return __p -}`;var o0=$h(function(){return v0(L,Fe+"return "+be).apply(n,I)});if(o0.source=be,$7(o0))throw o0;return o0}function jS(l){return P0(l).toLowerCase()}function KS(l){return P0(l).toUpperCase()}function WS(l,s,h){if(l=P0(l),l&&(h||s===n))return j1(l);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=rn(s),L=K1($,_),I=yu($,_)+1;return Fr($,L,I).join("")}function US(l,s,h){if(l=P0(l),l&&(h||s===n))return l.slice(0,ra(l)+1);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=yu($,rn(s))+1;return Fr($,0,_).join("")}function GS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.replace(Xs,"");if(!l||!(s=Xt(s)))return l;var $=rn(l),_=K1($,rn(s));return Fr($,_).join("")}function qS(l,s){var h=j,$=X;if(Q0(s)){var _="separator"in s?s.separator:_;h="length"in s?n0(s.length):h,$="omission"in s?Xt(s.omission):$}l=P0(l);var L=l.length;if(Ti(l)){var I=rn(l);L=I.length}if(h>=L)return l;var O=h-O2($);if(O<1)return $;var Y=I?Fr(I,0,O).join(""):l.slice(0,O);if(_===n)return Y+$;if(I&&(O+=Y.length-O),S7(_)){if(l.slice(O).search(_)){var pe,ve=Y;for(_.global||(_=Io(_.source,P0(Js.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;Y=Y.slice(0,be===n?O:be)}}else if(l.indexOf(Xt(_),O)!=O){var Te=Y.lastIndexOf(_);Te>-1&&(Y=Y.slice(0,Te))}return Y+$}function YS(l){return l=P0(l),l&&m1.test(l)?l.replace(D2,Y1):l}var XS=J2(function(l,s,h){return l+(h?" ":"")+s.toUpperCase()}),P7=ju("toUpperCase");function wh(l,s,h){return l=P0(l),s=h?n:s,s===n?Uf(l)?Xf(l):jf(l):l.match(s)||[]}var $h=t0(function(l,s){try{return Vt(l,n,s)}catch(h){return $7(h)?h:new Ge(h)}}),QS=hr(function(l,s){return Ct(s,function(h){h=Hn(h),sr(l,h,we(l[h],l))}),l});function JS(l){var s=l==null?0:l.length,h=He();return l=s?T0(l,function($){if(typeof $[1]!="function")throw new hn(d);return[h($[0]),$[1]]}):[],t0(function($){for(var _=-1;++_fe)return[];var h=H,$=_t(l,H);s=He(s),l-=H;for(var _=gu($,s);++h0||s<0)?new Xe(h):(l<0?h=h.takeRight(-l):l&&(h=h.drop(l)),s!==n&&(s=n0(s),h=s<0?h.dropRight(-s):h.take(s-l)),h)},Xe.prototype.takeRightWhile=function(l){return this.reverse().takeWhile(l).reverse()},Xe.prototype.toArray=function(){return this.take(H)},an(Xe.prototype,function(l,s){var h=/^(?:filter|find|map|reject)|While$/.test(s),$=/^(?:head|last)$/.test(s),_=M[$?"take"+(s=="last"?"Right":""):s],L=$||/^find/.test(s);_&&(M.prototype[s]=function(){var I=this.__wrapped__,O=$?[1]:arguments,Y=I instanceof Xe,pe=O[0],ve=Y||Qe(I),be=function(u0){var p0=_.apply(M,Jr([u0],O));return $&&Te?p0[0]:p0};ve&&h&&typeof pe=="function"&&pe.length!=1&&(Y=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=L&&!Te,o0=Y&&!Fe;if(!L&&ve){I=o0?I:new Xe(this);var Ue=l.apply(I,O);return Ue.__actions__.push({func:jn,args:[be],thisArg:n}),new Pt(Ue,Te)}return We&&o0?l.apply(this,O):(Ue=this.thru(be),We?$?Ue.value()[0]:Ue.value():Ue)})}),Ct(["pop","push","shift","sort","splice","unshift"],function(l){var s=kr[l],h=/^(?:push|sort|unshift)$/.test(l)?"tap":"thru",$=/^(?:pop|shift)$/.test(l);M.prototype[l]=function(){var _=arguments;if($&&!this.__chain__){var L=this.value();return s.apply(Qe(L)?L:[],_)}return this[h](function(I){return s.apply(Qe(I)?I:[],_)})}}),an(Xe.prototype,function(l,s){var h=M[s];if(h){var $=h.name+"";h0.call(Vi,$)||(Vi[$]=[]),Vi[$].push({name:s,func:h})}}),Vi[Xi(n,V).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=va,Xe.prototype.reverse=_u,Xe.prototype.value=Zi,M.prototype.at=es,M.prototype.chain=oi,M.prototype.commit=ts,M.prototype.next=vc,M.prototype.plant=h7,M.prototype.reverse=mc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=m7,M.prototype.first=M.prototype.head,Mr&&(M.prototype[Mr]=hc),M},Mi=Qf();nr?((nr.exports=Mi)._=Mi,Bo._=Mi):B0._=Mi}).call(ZZ)}(Ac,Ac.exports)),Ac.exports}var NZ=OZ();const HZ=({availableVariations:t,currentValue:e,flagKey:n,flagValue:i,updateOverride:a})=>{switch(typeof i){case"boolean":return k.jsx("div",{className:"animated-switch-container",children:k.jsxs(LV,{className:"animated-switch",isSelected:e,onChange:c=>{a(n,c)},children:[k.jsx("span",{className:"switch-text switch-text-false",children:"False"}),k.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let c=t,d=c.findIndex(v=>NZ.isEqual(v.value,e));d===-1&&(c=[{_id:"OVERRIDE",name:"Local Override",value:e},...c],d=0);const f=v=>m=>{m.preventDefault();const g=Object.fromEntries(new FormData(m.currentTarget));a(n,JSON.parse(g.value)),v()};return k.jsxs(_r,{gap:"2",children:[k.jsx(tZ,{"aria-label":"flag variations select",selectedKey:d,onSelectionChange:v=>{typeof v!="number"?console.error(`selected non numeric key: ${v}`):a(n,c[v].value)},style:{maxWidth:"250px"},children:k.jsxs(x.Fragment,{children:[d!==null&&c[d]._id==="OVERRIDE"?k.jsxs(Il,{children:[k.jsxs(Yn,{children:[k.jsx(rm,{}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(Vl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):k.jsxs(Yn,{children:[k.jsx(rm,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(a$,{children:k.jsx(n$,{children:c.map((v,m)=>{const g=v.name?v.name:JSON.stringify(v.value);return k.jsx(r$,{id:m,textValue:g,children:v._id==="OVERRIDE"?k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"devices",size:"small"}),g]})}):g},m)})})})]},".0")}),k.jsx(Dt,{width:"2rem",height:"2rem",children:k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(ih,{icon:"edit","aria-label":"edit variation value"}),k.jsx(Vl,{children:"Edit the served variation value as JSON"})]}),k.jsx(o$,{children:k.jsx(i$,{children:k.jsx(e$,{children:({close:v})=>k.jsxs(vx,{onSubmit:f(v),children:[k.jsxs(c$,{defaultValue:JSON.stringify(e,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:m=>{try{return JSON.parse(m),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[k.jsx(v1,{children:`${n} value`}),k.jsx(u$,{style:{fontFamily:"monospace"}}),k.jsx(kf,{slot:"description",children:"Update the value as JSON"}),k.jsx(t$,{})]}),k.jsxs(Xw,{children:[k.jsx(Yn,{onPress:v,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var g5={exports:{}},zZ=g5.exports,am;function jZ(){return am||(am=1,function(t){((e,n)=>{t.exports?t.exports=n():e.fuzzysort=n()})(zZ,e=>{var n=(oe,q)=>{if(!oe||!q)return Pe;var ue=P(oe);he(q)||(q=C(q));var $e=ue.bitflags;return($e&q._bitflags)!==$e?Pe:A(ue,q)},i=(oe,q,ue)=>{if(!oe)return ue!=null&&ue.all?T(q,ue):fe;var $e=P(oe),Ee=$e.bitflags,Se=$e.containsSpace,me=b((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||_e,ke=0,ze=0,Ye=q.length;function g0(jt){kece.peek()._score&&ce.replaceTop(jt))}if(ue!=null&&ue.key)for(var k0=ue.key,l0=0;l0-1e3&&j[c0]>se){var i0=(j[c0]+X[c0])/4;i0>j[c0]&&(j[c0]=i0)}X[c0]>j[c0]&&(j[c0]=X[c0])}}if(Se){for(let e0=0;e0<$e.spaceSearches.length;e0++)if(j[e0]===se)continue e}else{var Ze=!1;for(let e0=0;e0-1e3&&$0>se){var i0=($0+a0._score)/4;i0>$0&&($0=i0)}a0._score>$0&&($0=a0._score)}}if(q0.obj=w0,q0._score=$0,ue!=null&&ue.scoreFn){if($0=ue.scoreFn(q0),!$0)continue;$0=b($0),q0._score=$0}$0=0;--l0)W0[l0]=ce.poll();return W0.total=ke+ze,W0},a=(oe,q="",ue="")=>{for(var $e=typeof q=="function"?q:void 0,Ee=oe.target,Se=Ee.length,me=oe.indexes,Be="",ke=0,ze=0,Ye=!1,g0=[],k0=0;k0{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe="");var q=R(oe);return m(oe,{_targetLower:q._lower,_targetLowerCodes:q.lowerCodes,_bitflags:q.bitflags})},d=()=>{z.clear(),U.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((q,ue)=>q-ue)}set indexes(q){return this._indexes=q}highlight(q,ue){return a(this,q,ue)}get score(){return g(this._score)}set score(q){this._score=b(q)}}class v extends Array{get score(){return g(this._score)}set score(q){this._score=b(q)}}var m=(oe,q)=>{const ue=new f;return ue.target=oe,ue.obj=q.obj??Pe,ue._score=q._score??se,ue._indexes=q._indexes??[],ue._targetLower=q._targetLower??"",ue._targetLowerCodes=q._targetLowerCodes??Pe,ue._nextBeginningIndexes=q._nextBeginningIndexes??Pe,ue._bitflags=q._bitflags??0,ue},g=oe=>oe===se?0:oe>1?oe:Math.E**(((-oe+1)**.04307-1)*-2),b=oe=>oe===0?se:oe>1?oe:1-Math.pow(Math.log(oe)/-2+1,1/.04307),S=oe=>{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe=""),oe=oe.trim();var q=R(oe),ue=[];if(q.containsSpace){var $e=oe.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=R($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:q.lowerCodes,_lower:q._lower,containsSpace:q.containsSpace,bitflags:q.bitflags,spaceSearches:ue}},C=oe=>{if(oe.length>999)return c(oe);var q=z.get(oe);return q!==void 0||(q=c(oe),z.set(oe,q)),q},P=oe=>{if(oe.length>999)return S(oe);var q=U.get(oe);return q!==void 0||(q=S(oe),U.set(oe,q)),q},T=(oe,q)=>{var ue=[];ue.total=oe.length;var $e=(q==null?void 0:q.limit)||_e;if(q!=null&&q.key)for(var Ee=0;Ee=$e)return ue}}else if(q!=null&&q.keys)for(var Ee=0;Ee=0;--ze){var me=Q(Se,q.keys[ze]);if(!me){ke[ze]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[ze]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(oe,q,ue=!1,$e=!1)=>{if(ue===!1&&oe.containsSpace)return V(oe,q,$e);for(var Ee=oe._lower,Se=oe.lowerCodes,me=Se[0],Be=q._targetLowerCodes,ke=Se.length,ze=Be.length,l0=0,Ye=0,g0=0;;){var k0=me===Be[Ye];if(k0){if(le[g0++]=Ye,++l0,l0===ke)break;me=Se[l0]}if(++Ye,Ye>=ze)return Pe}var l0=0,w0=!1,r0=0,a0=q._nextBeginningIndexes;a0===Pe&&(a0=q._nextBeginningIndexes=N(q.target)),Ye=le[0]===0?0:a0[le[0]-1];var tt=0;if(Ye!==ze)for(;;)if(Ye>=ze){if(l0<=0||(++tt,tt>200))break;--l0;var y0=D[--r0];Ye=a0[y0]}else{var k0=Se[l0]===Be[Ye];if(k0){if(D[r0++]=Ye,++l0,l0===ke){w0=!0;break}++Ye}else Ye=a0[Ye]}var d0=ke<=1?-1:q._targetLower.indexOf(Ee,le[0]),De=!!~d0,i0=De?d0===0||q._nextBeginningIndexes[d0-1]===d0:!1;if(De&&!i0){for(var Ze=0;Ze{for(var c0=0,er=0,St=1;St24&&(c0*=(pn-24)*10)}return c0-=(ze-ke)/2,De&&(c0/=1+ke*ke*1),i0&&(c0/=1+ke*ke*1),c0-=(ze-ke)/2,c0};if(w0)if(i0){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=Pe,me=0,Be=oe.spaceSearches,ke=Be.length,ze=0,Ye=()=>{for(let i0=ze-1;i0>=0;i0--)q._nextBeginningIndexes[ie[i0*2+0]]=ie[i0*2+1]},g0=!1,De=0;De=0&&tt===q._nextBeginningIndexes[Ze];Ze--)q._nextBeginningIndexes[Ze]=a0,ie[ze*2+0]=Ze,ie[ze*2+1]=tt,ze++}}Ee+=Se._score/ke,X[De]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var De=0;De{for(var q=oe.length,ue=oe.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var q=oe.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,ze=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!ze;Ee=ke,Se=ze,Ye&&(ue[$e++]=me)}return ue},N=oe=>{for(var q=oe.length,ue=F(oe),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?q:Ee);return $e},z=new Map,U=new Map,le=[],D=[],ie=[],j=[],X=[],xe=[],G=[],Q=(oe,q)=>{var ue=oe[q];if(ue!==void 0)return ue;if(typeof q=="function")return q(oe);var $e=q;Array.isArray(q)||($e=q.split("."));for(var Ee=$e.length,Se=-1;oe&&++Setypeof oe=="object"&&typeof oe._bitflags=="number",_e=1/0,se=-_e,fe=[];fe.total=0;var Pe=null,ae=c(""),H=oe=>{var q=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=q[me],ke=1;ke>1]=q[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)q[me]=q[Ye];q[me]=Be};return $e.add=Se=>{var me=ue;q[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)q[me]=q[Be];q[me]=Se},$e.poll=Se=>{if(ue!==0){var me=q[0];return q[0]=q[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return q[0]},$e.replaceTop=Se=>{q[0]=Se,Ee()},$e},ce=H();return{single:n,go:i,prepare:c,cleanup:d}})}(g5)),g5.exports}var KZ=jZ();const WZ=t1(KZ);function UZ({availableVariations:t,selectedProject:e,flags:n,overrides:i,setOverrides:a}){const[c,d]=x.useState(!1),[f,v]=x.useState(""),[m,g]=x.useState(0),b=20,S=x.useMemo(()=>i&&Object.keys(i).length>0,[i]);x.useEffect(()=>{!S&&c&&d(!1)},[S,c]);const C=x.useMemo(()=>n?Object.entries(n).filter(z=>{if(!f)return!0;const[U]=z,le=WZ.single(f.toLowerCase(),U);return le&&le.score>-5e3}).filter(z=>{const[U]=z,le=U in i;return!(c&&!le)}):[],[n,f,c,i]),P=x.useMemo(()=>{const N=m*b,z=N+b;return C.slice(N,z)},[C,m]),T=x.useCallback((N,z)=>{var le;const U={...i,[N]:{value:z,version:((le=i[N])==null?void 0:le.version)||0}};a(U),fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"PUT",body:JSON.stringify(z)}).then(async D=>{if(!D.ok)throw new Error(`got ${D.status} ${D.statusText}. ${await D.text()}`)}).catch(D=>{a(i),console.error("unable to update override",D)})},[i,e]),A=x.useCallback(async N=>{const z={...i};delete z[N],a(z);try{const U=await fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"DELETE"});if(!U.ok)throw new Error(`got ${U.status} ${U.statusText}. ${await U.text()}`)}catch(U){console.error("unable to remove override",U),a(i)}},[i,e]),V=x.useCallback(async()=>{a({});try{const N=await fetch(P2(`/dev/projects/${e}/overrides`),{method:"DELETE"});if(!N.ok)throw new Error(`got ${N.status} ${N.statusText}. ${await N.text()}`)}catch(N){console.error("unable to remove all overrides",N),a(i)}},[i,e]);if(!n)return null;const R=Math.ceil(C.length/b),F=N=>{switch(N){case"next":g(z=>Math.min(z+1,R-1));break;case"prev":g(z=>Math.max(z-1,0));break;case"first":g(0);break;case"last":g(R-1);break;default:console.error("invalid page change direction.")}};return k.jsxs(k.Fragment,{children:[k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:IZ.borderRadius.regular,children:[k.jsxs(v1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[k.jsx(DI,{id:"only-show-overrides",isSelected:c,onChange:N=>{d(N)},isDisabled:!S,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),k.jsxs(Yn,{variant:"destructive",isDisabled:!S,onPress:async()=>{i&&(await V(),a({}),d(!1))},children:[k.jsx(K0,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),k.jsxs(xf,{gap:"4",children:[k.jsx(_r,{gap:"4",children:k.jsx(qF,{"aria-label":"Search flags",children:k.jsxs(UI,{children:[k.jsx(K0,{name:"search",size:"small"}),k.jsx(qw,{placeholder:"Search flags by key",onChange:N=>{v(N.target.value),g(0)},value:f,"aria-label":"Search flags input"}),k.jsx(ih,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>v("")})]})})}),k.jsx("ul",{className:"flags-list",children:P.map(([N,{value:z}],U)=>{var j;const le=(j=i[N])==null?void 0:j.value,D=N in i,ie=D?le:z;return k.jsxs("li",{style:{backgroundColor:U%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[k.jsx(Dt,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:k.jsxs(_r,{gap:"2",children:[k.jsx(mf,{asChild:!0,text:N,children:k.jsx("code",{className:D?"has-override":"",children:N})}),D&&k.jsx(Yn,{"aria-label":"Remove override",onPress:()=>{A(N)},variant:"destructive",children:k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"cancel",size:"small"}),"Remove override"]})})]})}),k.jsx(Dt,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:k.jsx(HZ,{availableVariations:t[N]?t[N]:[],currentValue:ie,flagValue:z,flagKey:N,updateOverride:T})})]},N)})})]}),k.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:k.jsx(SR,{currentOffset:m*b,isReady:!0,onChange:N=>F(N),pageSize:b,resourceName:"flags",totalCount:C.length})})]})}const GZ=async()=>{const t=await fetch(P2("/dev/projects")),e=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return e};function qZ({selectedProject:t,setSelectedProject:e,setShowBanner:n}){const[i,a]=x.useState([]),[c,d]=x.useState(!0),f=v=>{a(v),n(v.length==0),v.length==1&&e(v[0]),d(!1)};return x.useEffect(()=>{GZ().then(f).catch(v=>{console.error(v),d(!1)}),a([])},[]),c?k.jsxs("div",{style:{textAlign:"center"},children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),k.jsx("p",{children:"Projects are loading"})]}):i.length>0?k.jsxs(lV,{children:[k.jsx(_r,{gap:"1",children:k.jsxs(Il,{children:[k.jsx(Yn,{children:t??"Select a project"}),k.jsx(Vl,{children:t==null?"Please select a project":"This is the selected project"})]})}),k.jsx(a$,{children:k.jsx(yF,{children:i.map(v=>k.jsx(xF,{onAction:()=>{e(v)},children:v},v))})})]}):k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const YZ=async t=>{const e=await fetch(P2(`/dev/projects/${t}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return n},XZ=({selectedProject:t,setFlags:e,setAvailableVariations:n})=>{const[i,a]=x.useState(!1),c=async()=>{a(!0);try{const d=await YZ(t);n(d.availableVariations),e(Tp(d.flagsState))}catch(d){im.warning("Sync failed"),console.error("Sync failed:",d)}finally{im.success("Sync successful"),a(!1)}};return t?k.jsxs(Il,{children:[k.jsx(Yn,{onPress:c,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}):k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"sync",size:"small"}),k.jsx("span",{children:"Sync"})]})})}),k.jsx(Vl,{children:"Sync the selected project from the source environment"})]}):null};async function QZ(t,e){const n=await fetch(P2(`/dev/projects/${t}/environments?limit=20${e?`&name=${e}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var S3,sm;function d$(){if(sm)return S3;sm=1;function t(e){var n=typeof e;return e!=null&&(n=="object"||n=="function")}return S3=t,S3}var C3,um;function JZ(){if(um)return C3;um=1;var t=typeof so=="object"&&so&&so.Object===Object&&so;return C3=t,C3}var _3,cm;function f$(){if(cm)return _3;cm=1;var t=JZ(),e=typeof self=="object"&&self&&self.Object===Object&&self,n=t||e||Function("return this")();return _3=n,_3}var P3,dm;function eO(){if(dm)return P3;dm=1;var t=f$(),e=function(){return t.Date.now()};return P3=e,P3}var E3,fm;function tO(){if(fm)return E3;fm=1;var t=/\s/;function e(n){for(var i=n.length;i--&&t.test(n.charAt(i)););return i}return E3=e,E3}var k3,pm;function nO(){if(pm)return k3;pm=1;var t=tO(),e=/^\s+/;function n(i){return i&&i.slice(0,t(i)+1).replace(e,"")}return k3=n,k3}var T3,vm;function p$(){if(vm)return T3;vm=1;var t=f$(),e=t.Symbol;return T3=e,T3}var M3,hm;function rO(){if(hm)return M3;hm=1;var t=p$(),e=Object.prototype,n=e.hasOwnProperty,i=e.toString,a=t?t.toStringTag:void 0;function c(d){var f=n.call(d,a),v=d[a];try{d[a]=void 0;var m=!0}catch{}var g=i.call(d);return m&&(f?d[a]=v:delete d[a]),g}return M3=c,M3}var A3,mm;function iO(){if(mm)return A3;mm=1;var t=Object.prototype,e=t.toString;function n(i){return e.call(i)}return A3=n,A3}var L3,gm;function oO(){if(gm)return L3;gm=1;var t=p$(),e=rO(),n=iO(),i="[object Null]",a="[object Undefined]",c=t?t.toStringTag:void 0;function d(f){return f==null?f===void 0?a:i:c&&c in Object(f)?e(f):n(f)}return L3=d,L3}var D3,ym;function lO(){if(ym)return D3;ym=1;function t(e){return e!=null&&typeof e=="object"}return D3=t,D3}var R3,bm;function aO(){if(bm)return R3;bm=1;var t=oO(),e=lO(),n="[object Symbol]";function i(a){return typeof a=="symbol"||e(a)&&t(a)==n}return R3=i,R3}var B3,xm;function sO(){if(xm)return B3;xm=1;var t=nO(),e=d$(),n=aO(),i=NaN,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,f=parseInt;function v(m){if(typeof m=="number")return m;if(n(m))return i;if(e(m)){var g=typeof m.valueOf=="function"?m.valueOf():m;m=e(g)?g+"":g}if(typeof m!="string")return m===0?m:+m;m=t(m);var b=c.test(m);return b||d.test(m)?f(m.slice(2),b?2:8):a.test(m)?i:+m}return B3=v,B3}var V3,wm;function uO(){if(wm)return V3;wm=1;var t=d$(),e=eO(),n=sO(),i="Expected a function",a=Math.max,c=Math.min;function d(f,v,m){var g,b,S,C,P,T,A=0,V=!1,R=!1,F=!0;if(typeof f!="function")throw new TypeError(i);v=n(v)||0,t(m)&&(V=!!m.leading,R="maxWait"in m,S=R?a(n(m.maxWait)||0,v):S,F="trailing"in m?!!m.trailing:F);function N(G){var Q=g,he=b;return g=b=void 0,A=G,C=f.apply(he,Q),C}function z(G){return A=G,P=setTimeout(D,v),V?N(G):C}function U(G){var Q=G-T,he=G-A,_e=v-Q;return R?c(_e,S-he):_e}function le(G){var Q=G-T,he=G-A;return T===void 0||Q>=v||Q<0||R&&he>=S}function D(){var G=e();if(le(G))return ie(G);P=setTimeout(D,U(G))}function ie(G){return P=void 0,F&&g?N(G):(g=b=void 0,C)}function j(){P!==void 0&&clearTimeout(P),A=0,g=T=b=P=void 0}function X(){return P===void 0?C:ie(e())}function xe(){var G=e(),Q=le(G);if(g=arguments,b=this,T=G,Q){if(P===void 0)return z(T);if(R)return clearTimeout(P),P=setTimeout(D,v),N(T)}return P===void 0&&(P=setTimeout(D,v)),C}return xe.cancel=j,xe.flush=X,xe}return V3=d,V3}var cO=uO();const dO=t1(cO);function fO({projectKey:t,sourceEnvironmentKey:e,selectedEnvironment:n,setSelectedEnvironment:i}){const[a,c]=x.useState(null),[d,f]=x.useState(""),[v,m]=x.useState(!1),g=x.useCallback(dO(b=>{m(!0),QZ(t,b).then(S=>{if(c(S),!n){const C=S.find(P=>P.key===e);C?i(C):S.length>0&&i({name:"",key:e||""})}}).catch(S=>{console.error("Error fetching environments:",S)}).finally(()=>{m(!1)})},300),[t,e,n,i]);return x.useEffect(()=>{g(d)},[g,d]),k.jsxs(xf,{gap:"3",children:[k.jsx(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:k.jsx(v1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),k.jsxs(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[k.jsxs("div",{style:{position:"relative",flexGrow:1},children:[k.jsx(qw,{id:"environmentSearch",value:d,onChange:b=>f(b.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),v&&k.jsx(Dt,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:k.jsx(h1,{size:"small","aria-label":"Loading environments"})})]}),k.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:k.jsx("code",{children:n==null?void 0:n.key})})]}),k.jsx(Dt,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:k.jsx(n$,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:b=>{const S=Array.from(b)[0],C=a==null?void 0:a.find(P=>P.key===S);C&&i(C)},children:a==null?void 0:a.map(b=>k.jsx(r$,{id:b.key,children:b.name},b.key))})})]})}function pO({context:t,setContext:e}){return k.jsxs(xf,{gap:"3",children:[k.jsx(v1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),k.jsxs(c$,{value:t,onChange:e,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[k.jsx(u$,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),k.jsx(kf,{slot:"description",children:"Edit the context as JSON"}),k.jsx(t$,{})]})]})}function vO({isSubmitting:t,selectedEnvironment:e}){return k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:t,children:t?k.jsx(_r,{gap:"2",children:k.jsxs(Dt,{display:"flex",alignItems:"center",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}),k.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):e?k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),k.jsx("span",{children:e})]}):"Environment"})}function hO({projectKey:t,selectedEnvironment:e,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:a,updateProjectSettings:c}){const[d,f]=x.useState(e),[v,m]=x.useState(a),[g,b]=x.useState(!1);x.useEffect(()=>{f(e),m(a)},[e,a]);const S=async P=>{b(!0);try{P(),await c(d,v),n(d)}catch(T){console.error("Error submitting project settings:",T)}finally{b(!1)}},C=()=>{f(e),m(a)};return k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(vO,{isSubmitting:g,selectedEnvironment:i}),k.jsx(Vl,{children:k.jsx("span",{children:"Current environment. Click to update."})})]}),k.jsx(o$,{isDismissable:!1,children:k.jsx(i$,{children:k.jsx(e$,{children:({close:P})=>k.jsxs(vx,{onSubmit:T=>{T.preventDefault(),S(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[k.jsx(v1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),k.jsxs(xf,{gap:"3",children:[k.jsx(fO,{projectKey:t,sourceEnvironmentKey:i,selectedEnvironment:d,setSelectedEnvironment:f}),k.jsx(Dt,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),k.jsx(pO,{context:v,setContext:m})]}),k.jsxs(Xw,{style:{justifyContent:"flex-end"},children:[k.jsx(Yn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:g,children:g?k.jsxs(_r,{gap:"2",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),k.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function mO(){const[t,e]=x.useState(null),[n,i]=x.useState(null),[a,c]=x.useState(null),[d,f]=x.useState({}),[v,m]=x.useState({}),[g,b]=x.useState(null),[S,C]=x.useState(!1),[P,T]=x.useState("{}"),A=x.useCallback(async()=>{if(!t)return;const R=await fetch(P2(`/dev/projects/${t}?expand=overrides&expand=availableVariations`)),F=await R.json();if(!R.ok)throw new Error(`Got ${R.status}, ${R.statusText} from flag fetch`);const{flagsState:N,overrides:z,sourceEnvironmentKey:U,availableVariations:le,context:D}=F;b(Tp(N)),f(z),c(U),m(le),T(JSON.stringify(D||"{}",null,2));const j=(await gO(t)).find(X=>X.key===U);j&&i(j)},[t]);x.useEffect(()=>{t&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,t]),x.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const V=x.useCallback(async(R,F)=>{if(t)try{const N=await fetch(P2(`/dev/projects/${t}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:R==null?void 0:R.key,context:JSON.parse(F)})});if(!N.ok)throw new Error(`Got ${N.status}, ${N.statusText} from project settings update`);const z=await N.json(),{flagsState:U,sourceEnvironmentKey:le,context:D}=z;b(Tp(U)),c(le),T(JSON.stringify(D||{},null,2)),i(R),await A()}catch(N){console.error("Error updating project settings:",N)}},[t,A]);return k.jsx("div",{style:{width:"100%"},children:k.jsx(Dt,{width:"100%",minWidth:"600px",children:k.jsxs(Dt,{display:"flex",flexDirection:"column",width:"100%",children:[S&&k.jsx(Dt,{marginBottom:"2rem",width:"100%",children:k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!S&&k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[k.jsx(qZ,{selectedProject:t,setSelectedProject:e,setShowBanner:C}),t&&k.jsx(hO,{projectKey:t,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:a,context:P,updateProjectSettings:V}),k.jsx(XZ,{selectedProject:t,setFlags:b,setAvailableVariations:m})]}),t&&k.jsx(Dt,{width:"100%",children:k.jsx(UZ,{availableVariations:v,selectedProject:t,flags:g,overrides:d,setOverrides:R=>{f(R)}})})]})})})}async function gO(t){const e=await fetch(P2(`/dev/projects/${t}/environments`));if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from environments fetch`);return e.json()}const yO=({event:t})=>{const e=JSON.parse(t.data);return console.log("parsed",e),k.jsx("span",{children:t.data})},bO=t=>{let e;try{e=JSON.parse(t.data)}catch(n){return console.error("Failed to parse event data as JSON:",n),k.jsx("div",{children:"Error. See console."})}return k.jsx(yO,{event:t})},xO=({})=>{const[t,e]=x.useState([]);return x.useEffect(()=>{const n=new EventSource(P2("/events/tee"));return n.addEventListener("put",i=>{if(!i.data||i.data.trim()==="")return;const a={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:i.data};e(c=>[...c,a])}),()=>{console.log("closing event source"),n.close()}},[]),k.jsxs("div",{children:[k.jsx("h3",{children:"Events Stream"}),k.jsx("ul",{children:t.map(n=>k.jsx("li",{children:bO(n)},n.id))}),t.length===0&&k.jsx("p",{children:"No events received yet..."})]})};function wO(){const[t,e]=x.useState("flags");return k.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:k.jsxs(Dt,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[k.jsxs(Dt,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[k.jsx(BZ,{onPress:()=>{e("flags")}}),k.jsx(VZ,{onPress:()=>{e("events")}})]}),k.jsxs(Dt,{padding:"1rem",width:"100%",children:[t==="flags"&&k.jsx(mO,{}),t==="events"&&k.jsx(xO,{})]})]})})}const $O="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function SO({children:t}){return x.useEffect(()=>{fetch($O).then(async e=>e.text()).then(e=>{const i=new DOMParser().parseFromString(e,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(e=>{console.log("unable to fetch icon",e)})},[]),k.jsx(Pm.Provider,{value:{path:""},children:t})}const CO=()=>(x.useEffect(()=>{const t=window.matchMedia("(prefers-color-scheme: dark)"),e=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return e(t),t.addEventListener("change",e),()=>{t.removeEventListener("change",e)}},[]),k.jsx(ee.StrictMode,{children:k.jsxs(SO,{children:[k.jsx(wO,{}),k.jsx(AZ,{})]})}));KC.createRoot(document.getElementById("root")).render(k.jsx(CO,{})); - +}`;var o0=$h(function(){return v0(L,Fe+"return "+be).apply(n,I)});if(o0.source=be,$7(o0))throw o0;return o0}function jS(l){return P0(l).toLowerCase()}function KS(l){return P0(l).toUpperCase()}function WS(l,s,h){if(l=P0(l),l&&(h||s===n))return j1(l);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=rn(s),L=K1($,_),I=yu($,_)+1;return Fr($,L,I).join("")}function US(l,s,h){if(l=P0(l),l&&(h||s===n))return l.slice(0,ra(l)+1);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=yu($,rn(s))+1;return Fr($,0,_).join("")}function GS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.replace(Xs,"");if(!l||!(s=Xt(s)))return l;var $=rn(l),_=K1($,rn(s));return Fr($,_).join("")}function qS(l,s){var h=j,$=X;if(Q0(s)){var _="separator"in s?s.separator:_;h="length"in s?n0(s.length):h,$="omission"in s?Xt(s.omission):$}l=P0(l);var L=l.length;if(Ti(l)){var I=rn(l);L=I.length}if(h>=L)return l;var O=h-O2($);if(O<1)return $;var Y=I?Fr(I,0,O).join(""):l.slice(0,O);if(_===n)return Y+$;if(I&&(O+=Y.length-O),S7(_)){if(l.slice(O).search(_)){var pe,ve=Y;for(_.global||(_=Io(_.source,P0(Js.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;Y=Y.slice(0,be===n?O:be)}}else if(l.indexOf(Xt(_),O)!=O){var Te=Y.lastIndexOf(_);Te>-1&&(Y=Y.slice(0,Te))}return Y+$}function YS(l){return l=P0(l),l&&m1.test(l)?l.replace(D2,Y1):l}var XS=J2(function(l,s,h){return l+(h?" ":"")+s.toUpperCase()}),P7=ju("toUpperCase");function wh(l,s,h){return l=P0(l),s=h?n:s,s===n?Uf(l)?Xf(l):jf(l):l.match(s)||[]}var $h=t0(function(l,s){try{return Vt(l,n,s)}catch(h){return $7(h)?h:new Ge(h)}}),QS=hr(function(l,s){return Ct(s,function(h){h=Hn(h),sr(l,h,we(l[h],l))}),l});function JS(l){var s=l==null?0:l.length,h=He();return l=s?T0(l,function($){if(typeof $[1]!="function")throw new hn(d);return[h($[0]),$[1]]}):[],t0(function($){for(var _=-1;++_fe)return[];var h=H,$=_t(l,H);s=He(s),l-=H;for(var _=gu($,s);++h0||s<0)?new Xe(h):(l<0?h=h.takeRight(-l):l&&(h=h.drop(l)),s!==n&&(s=n0(s),h=s<0?h.dropRight(-s):h.take(s-l)),h)},Xe.prototype.takeRightWhile=function(l){return this.reverse().takeWhile(l).reverse()},Xe.prototype.toArray=function(){return this.take(H)},an(Xe.prototype,function(l,s){var h=/^(?:filter|find|map|reject)|While$/.test(s),$=/^(?:head|last)$/.test(s),_=M[$?"take"+(s=="last"?"Right":""):s],L=$||/^find/.test(s);_&&(M.prototype[s]=function(){var I=this.__wrapped__,O=$?[1]:arguments,Y=I instanceof Xe,pe=O[0],ve=Y||Qe(I),be=function(u0){var p0=_.apply(M,Jr([u0],O));return $&&Te?p0[0]:p0};ve&&h&&typeof pe=="function"&&pe.length!=1&&(Y=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=L&&!Te,o0=Y&&!Fe;if(!L&&ve){I=o0?I:new Xe(this);var Ue=l.apply(I,O);return Ue.__actions__.push({func:jn,args:[be],thisArg:n}),new Pt(Ue,Te)}return We&&o0?l.apply(this,O):(Ue=this.thru(be),We?$?Ue.value()[0]:Ue.value():Ue)})}),Ct(["pop","push","shift","sort","splice","unshift"],function(l){var s=kr[l],h=/^(?:push|sort|unshift)$/.test(l)?"tap":"thru",$=/^(?:pop|shift)$/.test(l);M.prototype[l]=function(){var _=arguments;if($&&!this.__chain__){var L=this.value();return s.apply(Qe(L)?L:[],_)}return this[h](function(I){return s.apply(Qe(I)?I:[],_)})}}),an(Xe.prototype,function(l,s){var h=M[s];if(h){var $=h.name+"";h0.call(Vi,$)||(Vi[$]=[]),Vi[$].push({name:s,func:h})}}),Vi[Xi(n,V).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=va,Xe.prototype.reverse=_u,Xe.prototype.value=Zi,M.prototype.at=es,M.prototype.chain=oi,M.prototype.commit=ts,M.prototype.next=vc,M.prototype.plant=h7,M.prototype.reverse=mc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=m7,M.prototype.first=M.prototype.head,Mr&&(M.prototype[Mr]=hc),M},Mi=Qf();nr?((nr.exports=Mi)._=Mi,Bo._=Mi):B0._=Mi}).call(ZZ)}(Ac,Ac.exports)),Ac.exports}var NZ=OZ();const HZ=({availableVariations:t,currentValue:e,flagKey:n,flagValue:i,updateOverride:a})=>{switch(typeof i){case"boolean":return k.jsx("div",{className:"animated-switch-container",children:k.jsxs(LV,{className:"animated-switch",isSelected:e,onChange:c=>{a(n,c)},children:[k.jsx("span",{className:"switch-text switch-text-false",children:"False"}),k.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let c=t,d=c.findIndex(v=>NZ.isEqual(v.value,e));d===-1&&(c=[{_id:"OVERRIDE",name:"Local Override",value:e},...c],d=0);const f=v=>m=>{m.preventDefault();const g=Object.fromEntries(new FormData(m.currentTarget));a(n,JSON.parse(g.value)),v()};return k.jsxs(_r,{gap:"2",children:[k.jsx(tZ,{"aria-label":"flag variations select",selectedKey:d,onSelectionChange:v=>{typeof v!="number"?console.error(`selected non numeric key: ${v}`):a(n,c[v].value)},style:{maxWidth:"250px"},children:k.jsxs(x.Fragment,{children:[d!==null&&c[d]._id==="OVERRIDE"?k.jsxs(Il,{children:[k.jsxs(Yn,{children:[k.jsx(rm,{}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(Vl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):k.jsxs(Yn,{children:[k.jsx(rm,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(a$,{children:k.jsx(n$,{children:c.map((v,m)=>{const g=v.name?v.name:JSON.stringify(v.value);return k.jsx(r$,{id:m,textValue:g,children:v._id==="OVERRIDE"?k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"devices",size:"small"}),g]})}):g},m)})})})]},".0")}),k.jsx(Dt,{width:"2rem",height:"2rem",children:k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(ih,{icon:"edit","aria-label":"edit variation value"}),k.jsx(Vl,{children:"Edit the served variation value as JSON"})]}),k.jsx(o$,{children:k.jsx(i$,{children:k.jsx(e$,{children:({close:v})=>k.jsxs(vx,{onSubmit:f(v),children:[k.jsxs(c$,{defaultValue:JSON.stringify(e,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:m=>{try{return JSON.parse(m),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[k.jsx(v1,{children:`${n} value`}),k.jsx(u$,{style:{fontFamily:"monospace"}}),k.jsx(kf,{slot:"description",children:"Update the value as JSON"}),k.jsx(t$,{})]}),k.jsxs(Xw,{children:[k.jsx(Yn,{onPress:v,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var g5={exports:{}},zZ=g5.exports,am;function jZ(){return am||(am=1,function(t){((e,n)=>{t.exports?t.exports=n():e.fuzzysort=n()})(zZ,e=>{var n=(oe,q)=>{if(!oe||!q)return Pe;var ue=P(oe);he(q)||(q=C(q));var $e=ue.bitflags;return($e&q._bitflags)!==$e?Pe:A(ue,q)},i=(oe,q,ue)=>{if(!oe)return ue!=null&&ue.all?T(q,ue):fe;var $e=P(oe),Ee=$e.bitflags,Se=$e.containsSpace,me=b((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||_e,ke=0,ze=0,Ye=q.length;function g0(jt){kece.peek()._score&&ce.replaceTop(jt))}if(ue!=null&&ue.key)for(var k0=ue.key,l0=0;l0-1e3&&j[c0]>se){var i0=(j[c0]+X[c0])/4;i0>j[c0]&&(j[c0]=i0)}X[c0]>j[c0]&&(j[c0]=X[c0])}}if(Se){for(let e0=0;e0<$e.spaceSearches.length;e0++)if(j[e0]===se)continue e}else{var Ze=!1;for(let e0=0;e0-1e3&&$0>se){var i0=($0+a0._score)/4;i0>$0&&($0=i0)}a0._score>$0&&($0=a0._score)}}if(q0.obj=w0,q0._score=$0,ue!=null&&ue.scoreFn){if($0=ue.scoreFn(q0),!$0)continue;$0=b($0),q0._score=$0}$0=0;--l0)W0[l0]=ce.poll();return W0.total=ke+ze,W0},a=(oe,q="",ue="")=>{for(var $e=typeof q=="function"?q:void 0,Ee=oe.target,Se=Ee.length,me=oe.indexes,Be="",ke=0,ze=0,Ye=!1,g0=[],k0=0;k0{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe="");var q=R(oe);return m(oe,{_targetLower:q._lower,_targetLowerCodes:q.lowerCodes,_bitflags:q.bitflags})},d=()=>{z.clear(),U.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((q,ue)=>q-ue)}set indexes(q){return this._indexes=q}highlight(q,ue){return a(this,q,ue)}get score(){return g(this._score)}set score(q){this._score=b(q)}}class v extends Array{get score(){return g(this._score)}set score(q){this._score=b(q)}}var m=(oe,q)=>{const ue=new f;return ue.target=oe,ue.obj=q.obj??Pe,ue._score=q._score??se,ue._indexes=q._indexes??[],ue._targetLower=q._targetLower??"",ue._targetLowerCodes=q._targetLowerCodes??Pe,ue._nextBeginningIndexes=q._nextBeginningIndexes??Pe,ue._bitflags=q._bitflags??0,ue},g=oe=>oe===se?0:oe>1?oe:Math.E**(((-oe+1)**.04307-1)*-2),b=oe=>oe===0?se:oe>1?oe:1-Math.pow(Math.log(oe)/-2+1,1/.04307),S=oe=>{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe=""),oe=oe.trim();var q=R(oe),ue=[];if(q.containsSpace){var $e=oe.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=R($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:q.lowerCodes,_lower:q._lower,containsSpace:q.containsSpace,bitflags:q.bitflags,spaceSearches:ue}},C=oe=>{if(oe.length>999)return c(oe);var q=z.get(oe);return q!==void 0||(q=c(oe),z.set(oe,q)),q},P=oe=>{if(oe.length>999)return S(oe);var q=U.get(oe);return q!==void 0||(q=S(oe),U.set(oe,q)),q},T=(oe,q)=>{var ue=[];ue.total=oe.length;var $e=(q==null?void 0:q.limit)||_e;if(q!=null&&q.key)for(var Ee=0;Ee=$e)return ue}}else if(q!=null&&q.keys)for(var Ee=0;Ee=0;--ze){var me=Q(Se,q.keys[ze]);if(!me){ke[ze]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[ze]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(oe,q,ue=!1,$e=!1)=>{if(ue===!1&&oe.containsSpace)return V(oe,q,$e);for(var Ee=oe._lower,Se=oe.lowerCodes,me=Se[0],Be=q._targetLowerCodes,ke=Se.length,ze=Be.length,l0=0,Ye=0,g0=0;;){var k0=me===Be[Ye];if(k0){if(le[g0++]=Ye,++l0,l0===ke)break;me=Se[l0]}if(++Ye,Ye>=ze)return Pe}var l0=0,w0=!1,r0=0,a0=q._nextBeginningIndexes;a0===Pe&&(a0=q._nextBeginningIndexes=N(q.target)),Ye=le[0]===0?0:a0[le[0]-1];var tt=0;if(Ye!==ze)for(;;)if(Ye>=ze){if(l0<=0||(++tt,tt>200))break;--l0;var y0=D[--r0];Ye=a0[y0]}else{var k0=Se[l0]===Be[Ye];if(k0){if(D[r0++]=Ye,++l0,l0===ke){w0=!0;break}++Ye}else Ye=a0[Ye]}var d0=ke<=1?-1:q._targetLower.indexOf(Ee,le[0]),De=!!~d0,i0=De?d0===0||q._nextBeginningIndexes[d0-1]===d0:!1;if(De&&!i0){for(var Ze=0;Ze{for(var c0=0,er=0,St=1;St24&&(c0*=(pn-24)*10)}return c0-=(ze-ke)/2,De&&(c0/=1+ke*ke*1),i0&&(c0/=1+ke*ke*1),c0-=(ze-ke)/2,c0};if(w0)if(i0){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=Pe,me=0,Be=oe.spaceSearches,ke=Be.length,ze=0,Ye=()=>{for(let i0=ze-1;i0>=0;i0--)q._nextBeginningIndexes[ie[i0*2+0]]=ie[i0*2+1]},g0=!1,De=0;De=0&&tt===q._nextBeginningIndexes[Ze];Ze--)q._nextBeginningIndexes[Ze]=a0,ie[ze*2+0]=Ze,ie[ze*2+1]=tt,ze++}}Ee+=Se._score/ke,X[De]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var De=0;De{for(var q=oe.length,ue=oe.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var q=oe.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,ze=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!ze;Ee=ke,Se=ze,Ye&&(ue[$e++]=me)}return ue},N=oe=>{for(var q=oe.length,ue=F(oe),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?q:Ee);return $e},z=new Map,U=new Map,le=[],D=[],ie=[],j=[],X=[],xe=[],G=[],Q=(oe,q)=>{var ue=oe[q];if(ue!==void 0)return ue;if(typeof q=="function")return q(oe);var $e=q;Array.isArray(q)||($e=q.split("."));for(var Ee=$e.length,Se=-1;oe&&++Setypeof oe=="object"&&typeof oe._bitflags=="number",_e=1/0,se=-_e,fe=[];fe.total=0;var Pe=null,ae=c(""),H=oe=>{var q=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=q[me],ke=1;ke>1]=q[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)q[me]=q[Ye];q[me]=Be};return $e.add=Se=>{var me=ue;q[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)q[me]=q[Be];q[me]=Se},$e.poll=Se=>{if(ue!==0){var me=q[0];return q[0]=q[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return q[0]},$e.replaceTop=Se=>{q[0]=Se,Ee()},$e},ce=H();return{single:n,go:i,prepare:c,cleanup:d}})}(g5)),g5.exports}var KZ=jZ();const WZ=t1(KZ);function UZ({availableVariations:t,selectedProject:e,flags:n,overrides:i,setOverrides:a}){const[c,d]=x.useState(!1),[f,v]=x.useState(""),[m,g]=x.useState(0),b=20,S=x.useMemo(()=>i&&Object.keys(i).length>0,[i]);x.useEffect(()=>{!S&&c&&d(!1)},[S,c]);const C=x.useMemo(()=>n?Object.entries(n).filter(z=>{if(!f)return!0;const[U]=z,le=WZ.single(f.toLowerCase(),U);return le&&le.score>-5e3}).filter(z=>{const[U]=z,le=U in i;return!(c&&!le)}):[],[n,f,c,i]),P=x.useMemo(()=>{const N=m*b,z=N+b;return C.slice(N,z)},[C,m]),T=x.useCallback((N,z)=>{var le;const U={...i,[N]:{value:z,version:((le=i[N])==null?void 0:le.version)||0}};a(U),fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"PUT",body:JSON.stringify(z)}).then(async D=>{if(!D.ok)throw new Error(`got ${D.status} ${D.statusText}. ${await D.text()}`)}).catch(D=>{a(i),console.error("unable to update override",D)})},[i,e]),A=x.useCallback(async N=>{const z={...i};delete z[N],a(z);try{const U=await fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"DELETE"});if(!U.ok)throw new Error(`got ${U.status} ${U.statusText}. ${await U.text()}`)}catch(U){console.error("unable to remove override",U),a(i)}},[i,e]),V=x.useCallback(async()=>{a({});try{const N=await fetch(P2(`/dev/projects/${e}/overrides`),{method:"DELETE"});if(!N.ok)throw new Error(`got ${N.status} ${N.statusText}. ${await N.text()}`)}catch(N){console.error("unable to remove all overrides",N),a(i)}},[i,e]);if(!n)return null;const R=Math.ceil(C.length/b),F=N=>{switch(N){case"next":g(z=>Math.min(z+1,R-1));break;case"prev":g(z=>Math.max(z-1,0));break;case"first":g(0);break;case"last":g(R-1);break;default:console.error("invalid page change direction.")}};return k.jsxs(k.Fragment,{children:[k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:IZ.borderRadius.regular,children:[k.jsxs(v1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[k.jsx(DI,{id:"only-show-overrides",isSelected:c,onChange:N=>{d(N)},isDisabled:!S,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),k.jsxs(Yn,{variant:"destructive",isDisabled:!S,onPress:async()=>{i&&(await V(),a({}),d(!1))},children:[k.jsx(K0,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),k.jsxs(xf,{gap:"4",children:[k.jsx(_r,{gap:"4",children:k.jsx(qF,{"aria-label":"Search flags",children:k.jsxs(UI,{children:[k.jsx(K0,{name:"search",size:"small"}),k.jsx(qw,{placeholder:"Search flags by key",onChange:N=>{v(N.target.value),g(0)},value:f,"aria-label":"Search flags input"}),k.jsx(ih,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>v("")})]})})}),k.jsx("ul",{className:"flags-list",children:P.map(([N,{value:z}],U)=>{var j;const le=(j=i[N])==null?void 0:j.value,D=N in i,ie=D?le:z;return k.jsxs("li",{style:{backgroundColor:U%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[k.jsx(Dt,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:k.jsxs(_r,{gap:"2",children:[k.jsx(mf,{asChild:!0,text:N,children:k.jsx("code",{className:D?"has-override":"",children:N})}),D&&k.jsx(Yn,{"aria-label":"Remove override",onPress:()=>{A(N)},variant:"destructive",children:k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"cancel",size:"small"}),"Remove override"]})})]})}),k.jsx(Dt,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:k.jsx(HZ,{availableVariations:t[N]?t[N]:[],currentValue:ie,flagValue:z,flagKey:N,updateOverride:T})})]},N)})})]}),k.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:k.jsx(SR,{currentOffset:m*b,isReady:!0,onChange:N=>F(N),pageSize:b,resourceName:"flags",totalCount:C.length})})]})}const GZ=async()=>{const t=await fetch(P2("/dev/projects")),e=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return e};function qZ({selectedProject:t,setSelectedProject:e,setShowBanner:n}){const[i,a]=x.useState([]),[c,d]=x.useState(!0),f=v=>{a(v),n(v.length==0),v.length==1&&e(v[0]),d(!1)};return x.useEffect(()=>{GZ().then(f).catch(v=>{console.error(v),d(!1)}),a([])},[]),c?k.jsxs("div",{style:{textAlign:"center"},children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),k.jsx("p",{children:"Projects are loading"})]}):i.length>0?k.jsxs(lV,{children:[k.jsx(_r,{gap:"1",children:k.jsxs(Il,{children:[k.jsx(Yn,{children:t??"Select a project"}),k.jsx(Vl,{children:t==null?"Please select a project":"This is the selected project"})]})}),k.jsx(a$,{children:k.jsx(yF,{children:i.map(v=>k.jsx(xF,{onAction:()=>{e(v)},children:v},v))})})]}):k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const YZ=async t=>{const e=await fetch(P2(`/dev/projects/${t}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return n},XZ=({selectedProject:t,setFlags:e,setAvailableVariations:n})=>{const[i,a]=x.useState(!1),c=async()=>{a(!0);try{const d=await YZ(t);n(d.availableVariations),e(Tp(d.flagsState))}catch(d){im.warning("Sync failed"),console.error("Sync failed:",d)}finally{im.success("Sync successful"),a(!1)}};return t?k.jsxs(Il,{children:[k.jsx(Yn,{onPress:c,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}):k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"sync",size:"small"}),k.jsx("span",{children:"Sync"})]})})}),k.jsx(Vl,{children:"Sync the selected project from the source environment"})]}):null};async function QZ(t,e){const n=await fetch(P2(`/dev/projects/${t}/environments?limit=20${e?`&name=${e}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var S3,sm;function d$(){if(sm)return S3;sm=1;function t(e){var n=typeof e;return e!=null&&(n=="object"||n=="function")}return S3=t,S3}var C3,um;function JZ(){if(um)return C3;um=1;var t=typeof so=="object"&&so&&so.Object===Object&&so;return C3=t,C3}var _3,cm;function f$(){if(cm)return _3;cm=1;var t=JZ(),e=typeof self=="object"&&self&&self.Object===Object&&self,n=t||e||Function("return this")();return _3=n,_3}var P3,dm;function eO(){if(dm)return P3;dm=1;var t=f$(),e=function(){return t.Date.now()};return P3=e,P3}var E3,fm;function tO(){if(fm)return E3;fm=1;var t=/\s/;function e(n){for(var i=n.length;i--&&t.test(n.charAt(i)););return i}return E3=e,E3}var k3,pm;function nO(){if(pm)return k3;pm=1;var t=tO(),e=/^\s+/;function n(i){return i&&i.slice(0,t(i)+1).replace(e,"")}return k3=n,k3}var T3,vm;function p$(){if(vm)return T3;vm=1;var t=f$(),e=t.Symbol;return T3=e,T3}var M3,hm;function rO(){if(hm)return M3;hm=1;var t=p$(),e=Object.prototype,n=e.hasOwnProperty,i=e.toString,a=t?t.toStringTag:void 0;function c(d){var f=n.call(d,a),v=d[a];try{d[a]=void 0;var m=!0}catch{}var g=i.call(d);return m&&(f?d[a]=v:delete d[a]),g}return M3=c,M3}var A3,mm;function iO(){if(mm)return A3;mm=1;var t=Object.prototype,e=t.toString;function n(i){return e.call(i)}return A3=n,A3}var L3,gm;function oO(){if(gm)return L3;gm=1;var t=p$(),e=rO(),n=iO(),i="[object Null]",a="[object Undefined]",c=t?t.toStringTag:void 0;function d(f){return f==null?f===void 0?a:i:c&&c in Object(f)?e(f):n(f)}return L3=d,L3}var D3,ym;function lO(){if(ym)return D3;ym=1;function t(e){return e!=null&&typeof e=="object"}return D3=t,D3}var R3,bm;function aO(){if(bm)return R3;bm=1;var t=oO(),e=lO(),n="[object Symbol]";function i(a){return typeof a=="symbol"||e(a)&&t(a)==n}return R3=i,R3}var B3,xm;function sO(){if(xm)return B3;xm=1;var t=nO(),e=d$(),n=aO(),i=NaN,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,f=parseInt;function v(m){if(typeof m=="number")return m;if(n(m))return i;if(e(m)){var g=typeof m.valueOf=="function"?m.valueOf():m;m=e(g)?g+"":g}if(typeof m!="string")return m===0?m:+m;m=t(m);var b=c.test(m);return b||d.test(m)?f(m.slice(2),b?2:8):a.test(m)?i:+m}return B3=v,B3}var V3,wm;function uO(){if(wm)return V3;wm=1;var t=d$(),e=eO(),n=sO(),i="Expected a function",a=Math.max,c=Math.min;function d(f,v,m){var g,b,S,C,P,T,A=0,V=!1,R=!1,F=!0;if(typeof f!="function")throw new TypeError(i);v=n(v)||0,t(m)&&(V=!!m.leading,R="maxWait"in m,S=R?a(n(m.maxWait)||0,v):S,F="trailing"in m?!!m.trailing:F);function N(G){var Q=g,he=b;return g=b=void 0,A=G,C=f.apply(he,Q),C}function z(G){return A=G,P=setTimeout(D,v),V?N(G):C}function U(G){var Q=G-T,he=G-A,_e=v-Q;return R?c(_e,S-he):_e}function le(G){var Q=G-T,he=G-A;return T===void 0||Q>=v||Q<0||R&&he>=S}function D(){var G=e();if(le(G))return ie(G);P=setTimeout(D,U(G))}function ie(G){return P=void 0,F&&g?N(G):(g=b=void 0,C)}function j(){P!==void 0&&clearTimeout(P),A=0,g=T=b=P=void 0}function X(){return P===void 0?C:ie(e())}function xe(){var G=e(),Q=le(G);if(g=arguments,b=this,T=G,Q){if(P===void 0)return z(T);if(R)return clearTimeout(P),P=setTimeout(D,v),N(T)}return P===void 0&&(P=setTimeout(D,v)),C}return xe.cancel=j,xe.flush=X,xe}return V3=d,V3}var cO=uO();const dO=t1(cO);function fO({projectKey:t,sourceEnvironmentKey:e,selectedEnvironment:n,setSelectedEnvironment:i}){const[a,c]=x.useState(null),[d,f]=x.useState(""),[v,m]=x.useState(!1),g=x.useCallback(dO(b=>{m(!0),QZ(t,b).then(S=>{if(c(S),!n){const C=S.find(P=>P.key===e);C?i(C):S.length>0&&i({name:"",key:e||""})}}).catch(S=>{console.error("Error fetching environments:",S)}).finally(()=>{m(!1)})},300),[t,e,n,i]);return x.useEffect(()=>{g(d)},[g,d]),k.jsxs(xf,{gap:"3",children:[k.jsx(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:k.jsx(v1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),k.jsxs(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[k.jsxs("div",{style:{position:"relative",flexGrow:1},children:[k.jsx(qw,{id:"environmentSearch",value:d,onChange:b=>f(b.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),v&&k.jsx(Dt,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:k.jsx(h1,{size:"small","aria-label":"Loading environments"})})]}),k.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:k.jsx("code",{children:n==null?void 0:n.key})})]}),k.jsx(Dt,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:k.jsx(n$,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:b=>{const S=Array.from(b)[0],C=a==null?void 0:a.find(P=>P.key===S);C&&i(C)},children:a==null?void 0:a.map(b=>k.jsx(r$,{id:b.key,children:b.name},b.key))})})]})}function pO({context:t,setContext:e}){return k.jsxs(xf,{gap:"3",children:[k.jsx(v1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),k.jsxs(c$,{value:t,onChange:e,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[k.jsx(u$,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),k.jsx(kf,{slot:"description",children:"Edit the context as JSON"}),k.jsx(t$,{})]})]})}function vO({isSubmitting:t,selectedEnvironment:e}){return k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:t,children:t?k.jsx(_r,{gap:"2",children:k.jsxs(Dt,{display:"flex",alignItems:"center",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}),k.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):e?k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),k.jsx("span",{children:e})]}):"Environment"})}function hO({projectKey:t,selectedEnvironment:e,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:a,updateProjectSettings:c}){const[d,f]=x.useState(e),[v,m]=x.useState(a),[g,b]=x.useState(!1);x.useEffect(()=>{f(e),m(a)},[e,a]);const S=async P=>{b(!0);try{P(),await c(d,v),n(d)}catch(T){console.error("Error submitting project settings:",T)}finally{b(!1)}},C=()=>{f(e),m(a)};return k.jsxs(iw,{children:[k.jsxs(Il,{children:[k.jsx(vO,{isSubmitting:g,selectedEnvironment:i}),k.jsx(Vl,{children:k.jsx("span",{children:"Current environment. Click to update."})})]}),k.jsx(o$,{isDismissable:!1,children:k.jsx(i$,{children:k.jsx(e$,{children:({close:P})=>k.jsxs(vx,{onSubmit:T=>{T.preventDefault(),S(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[k.jsx(v1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),k.jsxs(xf,{gap:"3",children:[k.jsx(fO,{projectKey:t,sourceEnvironmentKey:i,selectedEnvironment:d,setSelectedEnvironment:f}),k.jsx(Dt,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),k.jsx(pO,{context:v,setContext:m})]}),k.jsxs(Xw,{style:{justifyContent:"flex-end"},children:[k.jsx(Yn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:g,children:g?k.jsxs(_r,{gap:"2",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),k.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function mO(){const[t,e]=x.useState(null),[n,i]=x.useState(null),[a,c]=x.useState(null),[d,f]=x.useState({}),[v,m]=x.useState({}),[g,b]=x.useState(null),[S,C]=x.useState(!1),[P,T]=x.useState("{}"),A=x.useCallback(async()=>{if(!t)return;const R=await fetch(P2(`/dev/projects/${t}?expand=overrides&expand=availableVariations`)),F=await R.json();if(!R.ok)throw new Error(`Got ${R.status}, ${R.statusText} from flag fetch`);const{flagsState:N,overrides:z,sourceEnvironmentKey:U,availableVariations:le,context:D}=F;b(Tp(N)),f(z),c(U),m(le),T(JSON.stringify(D||"{}",null,2));const j=(await gO(t)).find(X=>X.key===U);j&&i(j)},[t]);x.useEffect(()=>{t&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,t]),x.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const V=x.useCallback(async(R,F)=>{if(t)try{const N=await fetch(P2(`/dev/projects/${t}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:R==null?void 0:R.key,context:JSON.parse(F)})});if(!N.ok)throw new Error(`Got ${N.status}, ${N.statusText} from project settings update`);const z=await N.json(),{flagsState:U,sourceEnvironmentKey:le,context:D}=z;b(Tp(U)),c(le),T(JSON.stringify(D||{},null,2)),i(R),await A()}catch(N){console.error("Error updating project settings:",N)}},[t,A]);return k.jsx("div",{style:{width:"100%"},children:k.jsx(Dt,{width:"100%",minWidth:"600px",children:k.jsxs(Dt,{display:"flex",flexDirection:"column",width:"100%",children:[S&&k.jsx(Dt,{marginBottom:"2rem",width:"100%",children:k.jsxs(km,{kind:"error",children:[k.jsx(ow,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!S&&k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[k.jsx(qZ,{selectedProject:t,setSelectedProject:e,setShowBanner:C}),t&&k.jsx(hO,{projectKey:t,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:a,context:P,updateProjectSettings:V}),k.jsx(XZ,{selectedProject:t,setFlags:b,setAvailableVariations:m})]}),t&&k.jsx(Dt,{width:"100%",children:k.jsx(UZ,{availableVariations:v,selectedProject:t,flags:g,overrides:d,setOverrides:R=>{f(R)}})})]})})})}async function gO(t){const e=await fetch(P2(`/dev/projects/${t}/environments`));if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from environments fetch`);return e.json()}const yO=(t,e)=>k.jsx("a",{href:"#",onClick:n=>{n.preventDefault(),navigator.clipboard.writeText(e)},children:t}),bO=t=>{let e;try{e=JSON.parse(t.data)}catch(i){return console.error("Failed to parse event data as JSON:",i),k.jsx("div",{children:"Error. See console."})}console.log("parsed",e);let n=[];for(const[i,a]of Object.entries(e.features)){const c=t.id+i,d=a.counters||[];for(const f of d)n.push(k.jsxs("tr",{children:[k.jsx("td",{children:new Date(t.timestamp).toLocaleTimeString()}),k.jsx("td",{children:"summary"}),k.jsx("td",{children:i}),k.jsxs("td",{children:["evaluated as ",String(f.value)]}),k.jsx("td",{children:yO("copy to clipboard",JSON.stringify(e))})]},c))}return n},xO=t=>{let e;try{e=JSON.parse(t.data)}catch(n){return console.error("Failed to parse event data as JSON:",n),k.jsx("div",{children:"Error. See console."})}return e.kind==="summary"?bO(t):[k.jsxs("tr",{children:[k.jsx("td",{children:t.timestamp}),k.jsx("td",{children:e.kind}),k.jsx("td",{}),k.jsx("td",{children:e.kind}),k.jsx("td",{})]},t.id)]},wO=({limit:t=1e3})=>{const[e,n]=x.useState([]);return x.useEffect(()=>{const i=new EventSource(P2("/events/tee"));return i.addEventListener("put",a=>{if(!a.data||a.data.trim()==="")return;const c={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:a.data};n(d=>[c,...d].slice(0,t))}),()=>{console.log("closing event source"),i.close()}},[]),k.jsxs("div",{children:[k.jsxs("h3",{children:["Events Stream (limit: ",t,")"]}),k.jsxs("table",{className:"events-table",children:[k.jsx("thead",{children:k.jsxs("tr",{children:[k.jsx("th",{children:"Time"}),k.jsx("th",{children:"Type"}),k.jsx("th",{children:"Key"}),k.jsx("th",{children:"Event"}),k.jsx("th",{children:"Link"})]})}),k.jsx("tbody",{children:e.map(i=>xO(i))})]}),e.length===0&&k.jsx("p",{children:"No events received yet..."})]})};function $O(){const[t,e]=x.useState("flags");return k.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:k.jsxs(Dt,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[k.jsxs(Dt,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[k.jsx(BZ,{onPress:()=>{e("flags")}}),k.jsx(VZ,{onPress:()=>{e("events")}})]}),k.jsxs(Dt,{padding:"1rem",width:"100%",children:[t==="flags"&&k.jsx(mO,{}),t==="events"&&k.jsx(wO,{})]})]})})}const SO="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function CO({children:t}){return x.useEffect(()=>{fetch(SO).then(async e=>e.text()).then(e=>{const i=new DOMParser().parseFromString(e,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(e=>{console.log("unable to fetch icon",e)})},[]),k.jsx(Pm.Provider,{value:{path:""},children:t})}const _O=()=>(x.useEffect(()=>{const t=window.matchMedia("(prefers-color-scheme: dark)"),e=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return e(t),t.addEventListener("change",e),()=>{t.removeEventListener("change",e)}},[]),k.jsx(ee.StrictMode,{children:k.jsxs(CO,{children:[k.jsx($O,{}),k.jsx(AZ,{})]})}));KC.createRoot(document.getElementById("root")).render(k.jsx(_O,{})); +
diff --git a/internal/dev_server/ui/src/App.css b/internal/dev_server/ui/src/App.css index 3c27364ba..a6ec5f6d7 100644 --- a/internal/dev_server/ui/src/App.css +++ b/internal/dev_server/ui/src/App.css @@ -63,3 +63,36 @@ code { code.has-override { color: var(--lp-color-pink-600); } + +/* Events table styling */ +.events-table { + border: 1px solid var(--lp-color-border-ui-primary); + border-collapse: collapse; + width: 100%; +} + +.events-table th, +.events-table td { + border: 1px solid var(--lp-color-border-ui-primary); + padding: 8px; + text-align: left; +} + +.events-table th { + background-color: var(--lp-color-bg-ui-tertiary); + font-weight: var(--lp-font-weight-bold); + font-size: var(--lp-font-size-400); + color: var(--lp-color-text-primary); + text-transform: uppercase; + letter-spacing: 0.5px; + padding: 12px 8px; + border-bottom: 2px solid var(--lp-color-border-ui-secondary); +} + +.events-table tbody tr:nth-child(even) { + background-color: var(--lp-color-bg-ui-secondary); +} + +.events-table tbody tr:nth-child(odd) { + background-color: var(--lp-color-bg-ui-primary); +} diff --git a/internal/dev_server/ui/src/Event.tsx b/internal/dev_server/ui/src/Event.tsx deleted file mode 100644 index 5c416297b..000000000 --- a/internal/dev_server/ui/src/Event.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { EventData } from "./types"; - -type Props = { - event: EventData; -} - -const Event = ({ event }: Props) => { - const parsed = JSON.parse(event.data); - console.log('parsed', parsed); - return {event.data} -} - -export default Event; \ No newline at end of file diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index d670ac12c..70339c9b7 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -1,12 +1,58 @@ import { useEffect, useState } from "react"; import { apiRoute } from "./util"; import { EventData } from "./types"; -import Event from "./Event"; type Props = { + limit?: number; }; +const clipboardLink = (linkText: string, value: string) => { + return ( + { + e.preventDefault(); + navigator.clipboard.writeText(value); + }} + > + {linkText} + + ); +} +const summaryRows = (summaryEvent: any) => { + let parsed; + try { + parsed = JSON.parse(summaryEvent.data); + } catch (error) { + console.error('Failed to parse event data as JSON:', error); + return
Error. See console.
; + } + console.log('parsed', parsed); + + let rows = []; + for (const [key, value] of Object.entries(parsed.features)) { + const rowId = summaryEvent.id + key; + const counters = (value as any).counters || []; + + for (const counter of counters) { + rows.push( + + {new Date(summaryEvent.timestamp).toLocaleTimeString()} + summary + {key} + evaluated as {String(counter.value)} + {clipboardLink('copy to clipboard', JSON.stringify(parsed))} + + ); + } + } + + return rows; +} + +// Return array of s: +// Time, Type, Key, Event, ViewAttributes const renderEvent = (event: EventData) => { let parsed; try { @@ -16,10 +62,22 @@ const renderEvent = (event: EventData) => { return
Error. See console.
; } - return ; + if (parsed.kind === 'summary') { + return summaryRows(event); + } + + return [ + + {event.timestamp} + {parsed.kind} + + {parsed.kind} + + , + ]; }; -const EventsPage = ({}: Props) => { +const EventsPage = ({ limit = 1000 }: Props) => { const [events, setEvents] = useState([]); useEffect(() => { @@ -34,7 +92,7 @@ const EventsPage = ({}: Props) => { timestamp: Date.now(), data: event.data }; - setEvents(prevEvents => [...prevEvents, newEvent]); + setEvents(prevEvents => [newEvent, ...prevEvents].slice(0, limit)); }); return () => { @@ -45,12 +103,21 @@ const EventsPage = ({}: Props) => { return (
-

Events Stream

-
    - {events.map(event => ( -
  • {renderEvent(event)}
  • - ))} -
+

Events Stream (limit: {limit})

+ + + + + + + + + + + + {events.map(event => renderEvent(event))} + +
TimeTypeKeyEventLink
{events.length === 0 &&

No events received yet...

}
); From 9ca3e16efd879ba3685efb3e5000982fb241abea Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 5 Aug 2025 21:12:24 -0700 Subject: [PATCH 27/96] more context types --- internal/dev_server/ui/dist/index.html | 34 ++++----- internal/dev_server/ui/src/EventsPage.tsx | 89 +++++++++++++++-------- internal/dev_server/ui/src/types.ts | 13 +++- 3 files changed, 88 insertions(+), 48 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index 91fc5fe5c..445f3b682 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -5,7 +5,7 @@ LaunchDevly - +}`;var o0=Sh(function(){return v0(L,Fe+"return "+be).apply(n,I)});if(o0.source=be,S7(o0))throw o0;return o0}function KS(l){return P0(l).toLowerCase()}function WS(l){return P0(l).toUpperCase()}function US(l,s,h){if(l=P0(l),l&&(h||s===n))return z1(l);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=rn(s),L=K1($,_),I=yu($,_)+1;return Fr($,L,I).join("")}function GS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.slice(0,ra(l)+1);if(!l||!(s=Xt(s)))return l;var $=rn(l),_=yu($,rn(s))+1;return Fr($,0,_).join("")}function qS(l,s,h){if(l=P0(l),l&&(h||s===n))return l.replace(Xs,"");if(!l||!(s=Xt(s)))return l;var $=rn(l),_=K1($,rn(s));return Fr($,_).join("")}function YS(l,s){var h=z,$=X;if(Q0(s)){var _="separator"in s?s.separator:_;h="length"in s?n0(s.length):h,$="omission"in s?Xt(s.omission):$}l=P0(l);var L=l.length;if(Ti(l)){var I=rn(l);L=I.length}if(h>=L)return l;var O=h-O2($);if(O<1)return $;var Y=I?Fr(I,0,O).join(""):l.slice(0,O);if(_===n)return Y+$;if(I&&(O+=Y.length-O),C7(_)){if(l.slice(O).search(_)){var pe,ve=Y;for(_.global||(_=Io(_.source,P0(Js.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;Y=Y.slice(0,be===n?O:be)}}else if(l.indexOf(Xt(_),O)!=O){var Te=Y.lastIndexOf(_);Te>-1&&(Y=Y.slice(0,Te))}return Y+$}function XS(l){return l=P0(l),l&&m1.test(l)?l.replace(D2,Y1):l}var QS=J2(function(l,s,h){return l+(h?" ":"")+s.toUpperCase()}),E7=zu("toUpperCase");function $h(l,s,h){return l=P0(l),s=h?n:s,s===n?Gf(l)?Qf(l):Kf(l):l.match(s)||[]}var Sh=t0(function(l,s){try{return Vt(l,n,s)}catch(h){return S7(h)?h:new Ge(h)}}),JS=hr(function(l,s){return Ct(s,function(h){h=Hn(h),sr(l,h,we(l[h],l))}),l});function eC(l){var s=l==null?0:l.length,h=He();return l=s?T0(l,function($){if(typeof $[1]!="function")throw new hn(d);return[h($[0]),$[1]]}):[],t0(function($){for(var _=-1;++_fe)return[];var h=H,$=_t(l,H);s=He(s),l-=H;for(var _=gu($,s);++h0||s<0)?new Xe(h):(l<0?h=h.takeRight(-l):l&&(h=h.drop(l)),s!==n&&(s=n0(s),h=s<0?h.dropRight(-s):h.take(s-l)),h)},Xe.prototype.takeRightWhile=function(l){return this.reverse().takeWhile(l).reverse()},Xe.prototype.toArray=function(){return this.take(H)},an(Xe.prototype,function(l,s){var h=/^(?:filter|find|map|reject)|While$/.test(s),$=/^(?:head|last)$/.test(s),_=M[$?"take"+(s=="last"?"Right":""):s],L=$||/^find/.test(s);_&&(M.prototype[s]=function(){var I=this.__wrapped__,O=$?[1]:arguments,Y=I instanceof Xe,pe=O[0],ve=Y||Qe(I),be=function(u0){var p0=_.apply(M,Jr([u0],O));return $&&Te?p0[0]:p0};ve&&h&&typeof pe=="function"&&pe.length!=1&&(Y=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=L&&!Te,o0=Y&&!Fe;if(!L&&ve){I=o0?I:new Xe(this);var Ue=l.apply(I,O);return Ue.__actions__.push({func:zn,args:[be],thisArg:n}),new Pt(Ue,Te)}return We&&o0?l.apply(this,O):(Ue=this.thru(be),We?$?Ue.value()[0]:Ue.value():Ue)})}),Ct(["pop","push","shift","sort","splice","unshift"],function(l){var s=kr[l],h=/^(?:push|sort|unshift)$/.test(l)?"tap":"thru",$=/^(?:pop|shift)$/.test(l);M.prototype[l]=function(){var _=arguments;if($&&!this.__chain__){var L=this.value();return s.apply(Qe(L)?L:[],_)}return this[h](function(I){return s.apply(Qe(I)?I:[],_)})}}),an(Xe.prototype,function(l,s){var h=M[s];if(h){var $=h.name+"";h0.call(Vi,$)||(Vi[$]=[]),Vi[$].push({name:s,func:h})}}),Vi[Xi(n,V).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=va,Xe.prototype.reverse=_u,Xe.prototype.value=Zi,M.prototype.at=es,M.prototype.chain=oi,M.prototype.commit=ts,M.prototype.next=vc,M.prototype.plant=m7,M.prototype.reverse=mc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=g7,M.prototype.first=M.prototype.head,Mr&&(M.prototype[Mr]=hc),M},Mi=Jf();nr?((nr.exports=Mi)._=Mi,Bo._=Mi):B0._=Mi}).call(OZ)}(Ac,Ac.exports)),Ac.exports}var HZ=NZ();const jZ=({availableVariations:t,currentValue:e,flagKey:n,flagValue:i,updateOverride:a})=>{switch(typeof i){case"boolean":return k.jsx("div",{className:"animated-switch-container",children:k.jsxs(DV,{className:"animated-switch",isSelected:e,onChange:c=>{a(n,c)},children:[k.jsx("span",{className:"switch-text switch-text-false",children:"False"}),k.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let c=t,d=c.findIndex(v=>HZ.isEqual(v.value,e));d===-1&&(c=[{_id:"OVERRIDE",name:"Local Override",value:e},...c],d=0);const f=v=>m=>{m.preventDefault();const g=Object.fromEntries(new FormData(m.currentTarget));a(n,JSON.parse(g.value)),v()};return k.jsxs(_r,{gap:"2",children:[k.jsx(nZ,{"aria-label":"flag variations select",selectedKey:d,onSelectionChange:v=>{typeof v!="number"?console.error(`selected non numeric key: ${v}`):a(n,c[v].value)},style:{maxWidth:"250px"},children:k.jsxs(x.Fragment,{children:[d!==null&&c[d]._id==="OVERRIDE"?k.jsxs(Il,{children:[k.jsxs(Yn,{children:[k.jsx(im,{}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(Vl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):k.jsxs(Yn,{children:[k.jsx(im,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),k.jsx(K0,{name:"chevron-down",size:"small"})]}),k.jsx(s$,{children:k.jsx(r$,{children:c.map((v,m)=>{const g=v.name?v.name:JSON.stringify(v.value);return k.jsx(i$,{id:m,textValue:g,children:v._id==="OVERRIDE"?k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"devices",size:"small"}),g]})}):g},m)})})})]},".0")}),k.jsx(Dt,{width:"2rem",height:"2rem",children:k.jsxs(ow,{children:[k.jsxs(Il,{children:[k.jsx(oh,{icon:"edit","aria-label":"edit variation value"}),k.jsx(Vl,{children:"Edit the served variation value as JSON"})]}),k.jsx(l$,{children:k.jsx(o$,{children:k.jsx(t$,{children:({close:v})=>k.jsxs(hx,{onSubmit:f(v),children:[k.jsxs(d$,{defaultValue:JSON.stringify(e,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:m=>{try{return JSON.parse(m),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[k.jsx(v1,{children:`${n} value`}),k.jsx(c$,{style:{fontFamily:"monospace"}}),k.jsx(kf,{slot:"description",children:"Update the value as JSON"}),k.jsx(n$,{})]}),k.jsxs(Qw,{children:[k.jsx(Yn,{onPress:v,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var g5={exports:{}},zZ=g5.exports,sm;function KZ(){return sm||(sm=1,function(t){((e,n)=>{t.exports?t.exports=n():e.fuzzysort=n()})(zZ,e=>{var n=(oe,q)=>{if(!oe||!q)return Pe;var ue=P(oe);he(q)||(q=C(q));var $e=ue.bitflags;return($e&q._bitflags)!==$e?Pe:A(ue,q)},i=(oe,q,ue)=>{if(!oe)return ue!=null&&ue.all?T(q,ue):fe;var $e=P(oe),Ee=$e.bitflags,Se=$e.containsSpace,me=b((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||_e,ke=0,je=0,Ye=q.length;function g0(zt){kece.peek()._score&&ce.replaceTop(zt))}if(ue!=null&&ue.key)for(var k0=ue.key,l0=0;l0-1e3&&z[c0]>se){var i0=(z[c0]+X[c0])/4;i0>z[c0]&&(z[c0]=i0)}X[c0]>z[c0]&&(z[c0]=X[c0])}}if(Se){for(let e0=0;e0<$e.spaceSearches.length;e0++)if(z[e0]===se)continue e}else{var Ze=!1;for(let e0=0;e0-1e3&&$0>se){var i0=($0+a0._score)/4;i0>$0&&($0=i0)}a0._score>$0&&($0=a0._score)}}if(q0.obj=w0,q0._score=$0,ue!=null&&ue.scoreFn){if($0=ue.scoreFn(q0),!$0)continue;$0=b($0),q0._score=$0}$0=0;--l0)W0[l0]=ce.poll();return W0.total=ke+je,W0},a=(oe,q="",ue="")=>{for(var $e=typeof q=="function"?q:void 0,Ee=oe.target,Se=Ee.length,me=oe.indexes,Be="",ke=0,je=0,Ye=!1,g0=[],k0=0;k0{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe="");var q=R(oe);return m(oe,{_targetLower:q._lower,_targetLowerCodes:q.lowerCodes,_bitflags:q.bitflags})},d=()=>{j.clear(),U.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((q,ue)=>q-ue)}set indexes(q){return this._indexes=q}highlight(q,ue){return a(this,q,ue)}get score(){return g(this._score)}set score(q){this._score=b(q)}}class v extends Array{get score(){return g(this._score)}set score(q){this._score=b(q)}}var m=(oe,q)=>{const ue=new f;return ue.target=oe,ue.obj=q.obj??Pe,ue._score=q._score??se,ue._indexes=q._indexes??[],ue._targetLower=q._targetLower??"",ue._targetLowerCodes=q._targetLowerCodes??Pe,ue._nextBeginningIndexes=q._nextBeginningIndexes??Pe,ue._bitflags=q._bitflags??0,ue},g=oe=>oe===se?0:oe>1?oe:Math.E**(((-oe+1)**.04307-1)*-2),b=oe=>oe===0?se:oe>1?oe:1-Math.pow(Math.log(oe)/-2+1,1/.04307),S=oe=>{typeof oe=="number"?oe=""+oe:typeof oe!="string"&&(oe=""),oe=oe.trim();var q=R(oe),ue=[];if(q.containsSpace){var $e=oe.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=R($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:q.lowerCodes,_lower:q._lower,containsSpace:q.containsSpace,bitflags:q.bitflags,spaceSearches:ue}},C=oe=>{if(oe.length>999)return c(oe);var q=j.get(oe);return q!==void 0||(q=c(oe),j.set(oe,q)),q},P=oe=>{if(oe.length>999)return S(oe);var q=U.get(oe);return q!==void 0||(q=S(oe),U.set(oe,q)),q},T=(oe,q)=>{var ue=[];ue.total=oe.length;var $e=(q==null?void 0:q.limit)||_e;if(q!=null&&q.key)for(var Ee=0;Ee=$e)return ue}}else if(q!=null&&q.keys)for(var Ee=0;Ee=0;--je){var me=Q(Se,q.keys[je]);if(!me){ke[je]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[je]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(oe,q,ue=!1,$e=!1)=>{if(ue===!1&&oe.containsSpace)return V(oe,q,$e);for(var Ee=oe._lower,Se=oe.lowerCodes,me=Se[0],Be=q._targetLowerCodes,ke=Se.length,je=Be.length,l0=0,Ye=0,g0=0;;){var k0=me===Be[Ye];if(k0){if(le[g0++]=Ye,++l0,l0===ke)break;me=Se[l0]}if(++Ye,Ye>=je)return Pe}var l0=0,w0=!1,r0=0,a0=q._nextBeginningIndexes;a0===Pe&&(a0=q._nextBeginningIndexes=N(q.target)),Ye=le[0]===0?0:a0[le[0]-1];var tt=0;if(Ye!==je)for(;;)if(Ye>=je){if(l0<=0||(++tt,tt>200))break;--l0;var y0=D[--r0];Ye=a0[y0]}else{var k0=Se[l0]===Be[Ye];if(k0){if(D[r0++]=Ye,++l0,l0===ke){w0=!0;break}++Ye}else Ye=a0[Ye]}var d0=ke<=1?-1:q._targetLower.indexOf(Ee,le[0]),De=!!~d0,i0=De?d0===0||q._nextBeginningIndexes[d0-1]===d0:!1;if(De&&!i0){for(var Ze=0;Ze{for(var c0=0,er=0,St=1;St24&&(c0*=(pn-24)*10)}return c0-=(je-ke)/2,De&&(c0/=1+ke*ke*1),i0&&(c0/=1+ke*ke*1),c0-=(je-ke)/2,c0};if(w0)if(i0){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=Pe,me=0,Be=oe.spaceSearches,ke=Be.length,je=0,Ye=()=>{for(let i0=je-1;i0>=0;i0--)q._nextBeginningIndexes[ie[i0*2+0]]=ie[i0*2+1]},g0=!1,De=0;De=0&&tt===q._nextBeginningIndexes[Ze];Ze--)q._nextBeginningIndexes[Ze]=a0,ie[je*2+0]=Ze,ie[je*2+1]=tt,je++}}Ee+=Se._score/ke,X[De]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var De=0;De{for(var q=oe.length,ue=oe.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var q=oe.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,je=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!je;Ee=ke,Se=je,Ye&&(ue[$e++]=me)}return ue},N=oe=>{for(var q=oe.length,ue=F(oe),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?q:Ee);return $e},j=new Map,U=new Map,le=[],D=[],ie=[],z=[],X=[],xe=[],G=[],Q=(oe,q)=>{var ue=oe[q];if(ue!==void 0)return ue;if(typeof q=="function")return q(oe);var $e=q;Array.isArray(q)||($e=q.split("."));for(var Ee=$e.length,Se=-1;oe&&++Setypeof oe=="object"&&typeof oe._bitflags=="number",_e=1/0,se=-_e,fe=[];fe.total=0;var Pe=null,ae=c(""),H=oe=>{var q=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=q[me],ke=1;ke>1]=q[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)q[me]=q[Ye];q[me]=Be};return $e.add=Se=>{var me=ue;q[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)q[me]=q[Be];q[me]=Se},$e.poll=Se=>{if(ue!==0){var me=q[0];return q[0]=q[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return q[0]},$e.replaceTop=Se=>{q[0]=Se,Ee()},$e},ce=H();return{single:n,go:i,prepare:c,cleanup:d}})}(g5)),g5.exports}var WZ=KZ();const UZ=t1(WZ);function GZ({availableVariations:t,selectedProject:e,flags:n,overrides:i,setOverrides:a}){const[c,d]=x.useState(!1),[f,v]=x.useState(""),[m,g]=x.useState(0),b=20,S=x.useMemo(()=>i&&Object.keys(i).length>0,[i]);x.useEffect(()=>{!S&&c&&d(!1)},[S,c]);const C=x.useMemo(()=>n?Object.entries(n).filter(j=>{if(!f)return!0;const[U]=j,le=UZ.single(f.toLowerCase(),U);return le&&le.score>-5e3}).filter(j=>{const[U]=j,le=U in i;return!(c&&!le)}):[],[n,f,c,i]),P=x.useMemo(()=>{const N=m*b,j=N+b;return C.slice(N,j)},[C,m]),T=x.useCallback((N,j)=>{var le;const U={...i,[N]:{value:j,version:((le=i[N])==null?void 0:le.version)||0}};a(U),fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"PUT",body:JSON.stringify(j)}).then(async D=>{if(!D.ok)throw new Error(`got ${D.status} ${D.statusText}. ${await D.text()}`)}).catch(D=>{a(i),console.error("unable to update override",D)})},[i,e]),A=x.useCallback(async N=>{const j={...i};delete j[N],a(j);try{const U=await fetch(P2(`/dev/projects/${e}/overrides/${N}`),{method:"DELETE"});if(!U.ok)throw new Error(`got ${U.status} ${U.statusText}. ${await U.text()}`)}catch(U){console.error("unable to remove override",U),a(i)}},[i,e]),V=x.useCallback(async()=>{a({});try{const N=await fetch(P2(`/dev/projects/${e}/overrides`),{method:"DELETE"});if(!N.ok)throw new Error(`got ${N.status} ${N.statusText}. ${await N.text()}`)}catch(N){console.error("unable to remove all overrides",N),a(i)}},[i,e]);if(!n)return null;const R=Math.ceil(C.length/b),F=N=>{switch(N){case"next":g(j=>Math.min(j+1,R-1));break;case"prev":g(j=>Math.max(j-1,0));break;case"first":g(0);break;case"last":g(R-1);break;default:console.error("invalid page change direction.")}};return k.jsxs(k.Fragment,{children:[k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:FZ.borderRadius.regular,children:[k.jsxs(v1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[k.jsx(RI,{id:"only-show-overrides",isSelected:c,onChange:N=>{d(N)},isDisabled:!S,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),k.jsxs(Yn,{variant:"destructive",isDisabled:!S,onPress:async()=>{i&&(await V(),a({}),d(!1))},children:[k.jsx(K0,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),k.jsxs(xf,{gap:"4",children:[k.jsx(_r,{gap:"4",children:k.jsx(YF,{"aria-label":"Search flags",children:k.jsxs(GI,{children:[k.jsx(K0,{name:"search",size:"small"}),k.jsx(Yw,{placeholder:"Search flags by key",onChange:N=>{v(N.target.value),g(0)},value:f,"aria-label":"Search flags input"}),k.jsx(oh,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>v("")})]})})}),k.jsx("ul",{className:"flags-list",children:P.map(([N,{value:j}],U)=>{var z;const le=(z=i[N])==null?void 0:z.value,D=N in i,ie=D?le:j;return k.jsxs("li",{style:{backgroundColor:U%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[k.jsx(Dt,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:k.jsxs(_r,{gap:"2",children:[k.jsx(mf,{asChild:!0,text:N,children:k.jsx("code",{className:D?"has-override":"",children:N})}),D&&k.jsx(Yn,{"aria-label":"Remove override",onPress:()=>{A(N)},variant:"destructive",children:k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"cancel",size:"small"}),"Remove override"]})})]})}),k.jsx(Dt,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:k.jsx(jZ,{availableVariations:t[N]?t[N]:[],currentValue:ie,flagValue:j,flagKey:N,updateOverride:T})})]},N)})})]}),k.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:k.jsx(CR,{currentOffset:m*b,isReady:!0,onChange:N=>F(N),pageSize:b,resourceName:"flags",totalCount:C.length})})]})}const qZ=async()=>{const t=await fetch(P2("/dev/projects")),e=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return e};function YZ({selectedProject:t,setSelectedProject:e,setShowBanner:n}){const[i,a]=x.useState([]),[c,d]=x.useState(!0),f=v=>{a(v),n(v.length==0),v.length==1&&e(v[0]),d(!1)};return x.useEffect(()=>{qZ().then(f).catch(v=>{console.error(v),d(!1)}),a([])},[]),c?k.jsxs("div",{style:{textAlign:"center"},children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),k.jsx("p",{children:"Projects are loading"})]}):i.length>0?k.jsxs(aV,{children:[k.jsx(_r,{gap:"1",children:k.jsxs(Il,{children:[k.jsx(Yn,{children:t??"Select a project"}),k.jsx(Vl,{children:t==null?"Please select a project":"This is the selected project"})]})}),k.jsx(s$,{children:k.jsx(bF,{children:i.map(v=>k.jsx(wF,{onAction:()=>{e(v)},children:v},v))})})]}):k.jsxs(Tm,{kind:"error",children:[k.jsx(lw,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const XZ=async t=>{const e=await fetch(P2(`/dev/projects/${t}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return n},QZ=({selectedProject:t,setFlags:e,setAvailableVariations:n})=>{const[i,a]=x.useState(!1),c=async()=>{a(!0);try{const d=await XZ(t);n(d.availableVariations),e(Mp(d.flagsState))}catch(d){om.warning("Sync failed"),console.error("Sync failed:",d)}finally{om.success("Sync successful"),a(!1)}};return t?k.jsxs(Il,{children:[k.jsx(Yn,{onPress:c,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}):k.jsx("div",{children:k.jsxs(_r,{gap:"1",children:[k.jsx(K0,{name:"sync",size:"small"}),k.jsx("span",{children:"Sync"})]})})}),k.jsx(Vl,{children:"Sync the selected project from the source environment"})]}):null};async function JZ(t,e){const n=await fetch(P2(`/dev/projects/${t}/environments?limit=20${e?`&name=${e}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var C3,um;function f$(){if(um)return C3;um=1;function t(e){var n=typeof e;return e!=null&&(n=="object"||n=="function")}return C3=t,C3}var _3,cm;function eO(){if(cm)return _3;cm=1;var t=typeof so=="object"&&so&&so.Object===Object&&so;return _3=t,_3}var P3,dm;function p$(){if(dm)return P3;dm=1;var t=eO(),e=typeof self=="object"&&self&&self.Object===Object&&self,n=t||e||Function("return this")();return P3=n,P3}var E3,fm;function tO(){if(fm)return E3;fm=1;var t=p$(),e=function(){return t.Date.now()};return E3=e,E3}var k3,pm;function nO(){if(pm)return k3;pm=1;var t=/\s/;function e(n){for(var i=n.length;i--&&t.test(n.charAt(i)););return i}return k3=e,k3}var T3,vm;function rO(){if(vm)return T3;vm=1;var t=nO(),e=/^\s+/;function n(i){return i&&i.slice(0,t(i)+1).replace(e,"")}return T3=n,T3}var M3,hm;function v$(){if(hm)return M3;hm=1;var t=p$(),e=t.Symbol;return M3=e,M3}var A3,mm;function iO(){if(mm)return A3;mm=1;var t=v$(),e=Object.prototype,n=e.hasOwnProperty,i=e.toString,a=t?t.toStringTag:void 0;function c(d){var f=n.call(d,a),v=d[a];try{d[a]=void 0;var m=!0}catch{}var g=i.call(d);return m&&(f?d[a]=v:delete d[a]),g}return A3=c,A3}var L3,gm;function oO(){if(gm)return L3;gm=1;var t=Object.prototype,e=t.toString;function n(i){return e.call(i)}return L3=n,L3}var D3,ym;function lO(){if(ym)return D3;ym=1;var t=v$(),e=iO(),n=oO(),i="[object Null]",a="[object Undefined]",c=t?t.toStringTag:void 0;function d(f){return f==null?f===void 0?a:i:c&&c in Object(f)?e(f):n(f)}return D3=d,D3}var R3,bm;function aO(){if(bm)return R3;bm=1;function t(e){return e!=null&&typeof e=="object"}return R3=t,R3}var B3,xm;function sO(){if(xm)return B3;xm=1;var t=lO(),e=aO(),n="[object Symbol]";function i(a){return typeof a=="symbol"||e(a)&&t(a)==n}return B3=i,B3}var V3,wm;function uO(){if(wm)return V3;wm=1;var t=rO(),e=f$(),n=sO(),i=NaN,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,f=parseInt;function v(m){if(typeof m=="number")return m;if(n(m))return i;if(e(m)){var g=typeof m.valueOf=="function"?m.valueOf():m;m=e(g)?g+"":g}if(typeof m!="string")return m===0?m:+m;m=t(m);var b=c.test(m);return b||d.test(m)?f(m.slice(2),b?2:8):a.test(m)?i:+m}return V3=v,V3}var I3,$m;function cO(){if($m)return I3;$m=1;var t=f$(),e=tO(),n=uO(),i="Expected a function",a=Math.max,c=Math.min;function d(f,v,m){var g,b,S,C,P,T,A=0,V=!1,R=!1,F=!0;if(typeof f!="function")throw new TypeError(i);v=n(v)||0,t(m)&&(V=!!m.leading,R="maxWait"in m,S=R?a(n(m.maxWait)||0,v):S,F="trailing"in m?!!m.trailing:F);function N(G){var Q=g,he=b;return g=b=void 0,A=G,C=f.apply(he,Q),C}function j(G){return A=G,P=setTimeout(D,v),V?N(G):C}function U(G){var Q=G-T,he=G-A,_e=v-Q;return R?c(_e,S-he):_e}function le(G){var Q=G-T,he=G-A;return T===void 0||Q>=v||Q<0||R&&he>=S}function D(){var G=e();if(le(G))return ie(G);P=setTimeout(D,U(G))}function ie(G){return P=void 0,F&&g?N(G):(g=b=void 0,C)}function z(){P!==void 0&&clearTimeout(P),A=0,g=T=b=P=void 0}function X(){return P===void 0?C:ie(e())}function xe(){var G=e(),Q=le(G);if(g=arguments,b=this,T=G,Q){if(P===void 0)return j(T);if(R)return clearTimeout(P),P=setTimeout(D,v),N(T)}return P===void 0&&(P=setTimeout(D,v)),C}return xe.cancel=z,xe.flush=X,xe}return I3=d,I3}var dO=cO();const fO=t1(dO);function pO({projectKey:t,sourceEnvironmentKey:e,selectedEnvironment:n,setSelectedEnvironment:i}){const[a,c]=x.useState(null),[d,f]=x.useState(""),[v,m]=x.useState(!1),g=x.useCallback(fO(b=>{m(!0),JZ(t,b).then(S=>{if(c(S),!n){const C=S.find(P=>P.key===e);C?i(C):S.length>0&&i({name:"",key:e||""})}}).catch(S=>{console.error("Error fetching environments:",S)}).finally(()=>{m(!1)})},300),[t,e,n,i]);return x.useEffect(()=>{g(d)},[g,d]),k.jsxs(xf,{gap:"3",children:[k.jsx(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:k.jsx(v1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),k.jsxs(Dt,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[k.jsxs("div",{style:{position:"relative",flexGrow:1},children:[k.jsx(Yw,{id:"environmentSearch",value:d,onChange:b=>f(b.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),v&&k.jsx(Dt,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:k.jsx(h1,{size:"small","aria-label":"Loading environments"})})]}),k.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:k.jsx("code",{children:n==null?void 0:n.key})})]}),k.jsx(Dt,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:k.jsx(r$,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:b=>{const S=Array.from(b)[0],C=a==null?void 0:a.find(P=>P.key===S);C&&i(C)},children:a==null?void 0:a.map(b=>k.jsx(i$,{id:b.key,children:b.name},b.key))})})]})}function vO({context:t,setContext:e}){return k.jsxs(xf,{gap:"3",children:[k.jsx(v1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),k.jsxs(d$,{value:t,onChange:e,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[k.jsx(c$,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),k.jsx(kf,{slot:"description",children:"Edit the context as JSON"}),k.jsx(n$,{})]})]})}function hO({isSubmitting:t,selectedEnvironment:e}){return k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:t,children:t?k.jsx(_r,{gap:"2",children:k.jsxs(Dt,{display:"flex",alignItems:"center",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0}),k.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):e?k.jsxs(_r,{gap:"2",children:[k.jsx(K0,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),k.jsx("span",{children:e})]}):"Environment"})}function mO({projectKey:t,selectedEnvironment:e,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:a,updateProjectSettings:c}){const[d,f]=x.useState(e),[v,m]=x.useState(a),[g,b]=x.useState(!1);x.useEffect(()=>{f(e),m(a)},[e,a]);const S=async P=>{b(!0);try{P(),await c(d,v),n(d)}catch(T){console.error("Error submitting project settings:",T)}finally{b(!1)}},C=()=>{f(e),m(a)};return k.jsxs(ow,{children:[k.jsxs(Il,{children:[k.jsx(hO,{isSubmitting:g,selectedEnvironment:i}),k.jsx(Vl,{children:k.jsx("span",{children:"Current environment. Click to update."})})]}),k.jsx(l$,{isDismissable:!1,children:k.jsx(o$,{children:k.jsx(t$,{children:({close:P})=>k.jsxs(hx,{onSubmit:T=>{T.preventDefault(),S(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[k.jsx(v1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),k.jsxs(xf,{gap:"3",children:[k.jsx(pO,{projectKey:t,sourceEnvironmentKey:i,selectedEnvironment:d,setSelectedEnvironment:f}),k.jsx(Dt,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),k.jsx(vO,{context:v,setContext:m})]}),k.jsxs(Qw,{style:{justifyContent:"flex-end"},children:[k.jsx(Yn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),k.jsx(Yn,{variant:"primary",type:"submit",isDisabled:g,children:g?k.jsxs(_r,{gap:"2",children:[k.jsx(h1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),k.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function gO(){const[t,e]=x.useState(null),[n,i]=x.useState(null),[a,c]=x.useState(null),[d,f]=x.useState({}),[v,m]=x.useState({}),[g,b]=x.useState(null),[S,C]=x.useState(!1),[P,T]=x.useState("{}"),A=x.useCallback(async()=>{if(!t)return;const R=await fetch(P2(`/dev/projects/${t}?expand=overrides&expand=availableVariations`)),F=await R.json();if(!R.ok)throw new Error(`Got ${R.status}, ${R.statusText} from flag fetch`);const{flagsState:N,overrides:j,sourceEnvironmentKey:U,availableVariations:le,context:D}=F;b(Mp(N)),f(j),c(U),m(le),T(JSON.stringify(D||"{}",null,2));const z=(await yO(t)).find(X=>X.key===U);z&&i(z)},[t]);x.useEffect(()=>{t&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,t]),x.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const V=x.useCallback(async(R,F)=>{if(t)try{const N=await fetch(P2(`/dev/projects/${t}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:R==null?void 0:R.key,context:JSON.parse(F)})});if(!N.ok)throw new Error(`Got ${N.status}, ${N.statusText} from project settings update`);const j=await N.json(),{flagsState:U,sourceEnvironmentKey:le,context:D}=j;b(Mp(U)),c(le),T(JSON.stringify(D||{},null,2)),i(R),await A()}catch(N){console.error("Error updating project settings:",N)}},[t,A]);return k.jsx("div",{style:{width:"100%"},children:k.jsx(Dt,{width:"100%",minWidth:"600px",children:k.jsxs(Dt,{display:"flex",flexDirection:"column",width:"100%",children:[S&&k.jsx(Dt,{marginBottom:"2rem",width:"100%",children:k.jsxs(Tm,{kind:"error",children:[k.jsx(lw,{children:"No projects."}),k.jsx(kf,{children:"Add one via"}),k.jsx(mf,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!S&&k.jsxs(Dt,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[k.jsx(YZ,{selectedProject:t,setSelectedProject:e,setShowBanner:C}),t&&k.jsx(mO,{projectKey:t,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:a,context:P,updateProjectSettings:V}),k.jsx(QZ,{selectedProject:t,setFlags:b,setAvailableVariations:m})]}),t&&k.jsx(Dt,{width:"100%",children:k.jsx(GZ,{availableVariations:v,selectedProject:t,flags:g,overrides:d,setOverrides:R=>{f(R)}})})]})})})}async function yO(t){const e=await fetch(P2(`/dev/projects/${t}/environments`));if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from environments fetch`);return e.json()}const Tf=(t,e)=>k.jsx("a",{href:"#",onClick:n=>{n.preventDefault(),navigator.clipboard.writeText(e)},children:t}),bO=t=>{let e=[];for(const[n,i]of Object.entries(t.data.features)){const a=t.id+n,c=i.counters||[];for(const d of c)e.push(k.jsxs("tr",{children:[k.jsx("td",{children:new Date(t.timestamp).toLocaleTimeString()}),k.jsx("td",{children:"summary"}),k.jsx("td",{children:n}),k.jsxs("td",{children:["evaluated as ",String(d.value)]}),k.jsx("td",{children:Tf("copy to clipboard",JSON.stringify(t.data))})]},a))}return e},xO=t=>{var n;let e;return t.data.context?e="context kind: "+(((n=t.data.context)==null?void 0:n.kind)||"unknown"):e="unknown",[k.jsxs("tr",{children:[k.jsx("td",{children:new Date(t.timestamp).toLocaleTimeString()}),k.jsx("td",{children:"index"}),k.jsx("td",{}),k.jsx("td",{children:e}),k.jsx("td",{children:Tf("copy to clipboard",JSON.stringify(t.data))})]},t.id)]},wO=t=>[k.jsxs("tr",{children:[k.jsx("td",{children:new Date(t.timestamp).toLocaleTimeString()}),k.jsx("td",{children:t.data.kind}),k.jsx("td",{children:t.data.key||"unknown"}),k.jsxs("td",{children:["value is ",t.data.metricValue]}),k.jsx("td",{children:Tf("copy to clipboard",JSON.stringify(t.data))})]},t.id)],$O=t=>{switch(t.data.kind){case"summary":return bO(t);case"index":return xO(t);case"custom":return wO(t);default:return[k.jsxs("tr",{children:[k.jsx("td",{children:t.timestamp}),k.jsx("td",{children:t.data.kind}),k.jsx("td",{}),k.jsx("td",{}),k.jsx("td",{children:Tf("copy to clipboard",JSON.stringify(t.data))})]},t.id)]}},SO=({limit:t=1e3})=>{const[e,n]=x.useState([]);return x.useEffect(()=>{const i=new EventSource(P2("/events/tee"));return i.addEventListener("put",a=>{if(!a.data||a.data.trim()==="")return;let c;try{c=JSON.parse(a.data)}catch(f){console.error("Failed to parse event data as JSON:",f);return}const d={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:c};n(f=>[d,...f].slice(0,t))}),()=>{console.log("closing event source"),i.close()}},[]),k.jsxs("div",{children:[k.jsxs("h3",{children:["Events Stream (limit: ",t,")"]}),k.jsxs("table",{className:"events-table",children:[k.jsx("thead",{children:k.jsxs("tr",{children:[k.jsx("th",{children:"Time"}),k.jsx("th",{children:"Type"}),k.jsx("th",{children:"Key"}),k.jsx("th",{children:"Event"}),k.jsx("th",{children:"Link"})]})}),k.jsx("tbody",{children:e.map(i=>$O(i))})]}),e.length===0&&k.jsx("p",{children:"No events received yet..."})]})};function CO(){const[t,e]=x.useState("flags");return k.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:k.jsxs(Dt,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[k.jsxs(Dt,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[k.jsx(VZ,{onPress:()=>{e("flags")}}),k.jsx(IZ,{onPress:()=>{e("events")}})]}),k.jsxs(Dt,{padding:"1rem",width:"100%",children:[t==="flags"&&k.jsx(gO,{}),t==="events"&&k.jsx(SO,{})]})]})})}const _O="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function PO({children:t}){return x.useEffect(()=>{fetch(_O).then(async e=>e.text()).then(e=>{const i=new DOMParser().parseFromString(e,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(e=>{console.log("unable to fetch icon",e)})},[]),k.jsx(Em.Provider,{value:{path:""},children:t})}const EO=()=>(x.useEffect(()=>{const t=window.matchMedia("(prefers-color-scheme: dark)"),e=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return e(t),t.addEventListener("change",e),()=>{t.removeEventListener("change",e)}},[]),k.jsx(ee.StrictMode,{children:k.jsxs(PO,{children:[k.jsx(CO,{}),k.jsx(LZ,{})]})}));WC.createRoot(document.getElementById("root")).render(k.jsx(EO,{})); diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index 70339c9b7..7d03cc0e1 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -20,18 +20,9 @@ const clipboardLink = (linkText: string, value: string) => { ); } -const summaryRows = (summaryEvent: any) => { - let parsed; - try { - parsed = JSON.parse(summaryEvent.data); - } catch (error) { - console.error('Failed to parse event data as JSON:', error); - return
Error. See console.
; - } - console.log('parsed', parsed); - +const summaryRows = (summaryEvent: EventData) => { let rows = []; - for (const [key, value] of Object.entries(parsed.features)) { + for (const [key, value] of Object.entries(summaryEvent.data.features)) { const rowId = summaryEvent.id + key; const counters = (value as any).counters || []; @@ -42,7 +33,7 @@ const summaryRows = (summaryEvent: any) => { summary {key} evaluated as {String(counter.value)} - {clipboardLink('copy to clipboard', JSON.stringify(parsed))} + {clipboardLink('copy to clipboard', JSON.stringify(summaryEvent.data))} ); } @@ -51,30 +42,59 @@ const summaryRows = (summaryEvent: any) => { return rows; } -// Return array of s: -// Time, Type, Key, Event, ViewAttributes -const renderEvent = (event: EventData) => { - let parsed; - try { - parsed = JSON.parse(event.data); - } catch (error) { - console.error('Failed to parse event data as JSON:', error); - return
Error. See console.
; +const indexRows = (indexEvent: EventData) => { + let eventText; + if (indexEvent.data.context) { + eventText = 'context kind: ' + (indexEvent.data.context?.kind || 'unknown'); + } else { + eventText = 'unknown'; } - if (parsed.kind === 'summary') { - return summaryRows(event); - } + return [ + + {new Date(indexEvent.timestamp).toLocaleTimeString()} + index + n/a + {eventText} + {clipboardLink('copy to clipboard', JSON.stringify(indexEvent.data))} + + ] +} +const customRows = (event: EventData) => { return [ - {event.timestamp} - {parsed.kind} - - {parsed.kind} - + {new Date(event.timestamp).toLocaleTimeString()} + {event.data.kind} + {event.data.key || 'unknown'} + value is {event.data.metricValue} + {clipboardLink('copy to clipboard', JSON.stringify(event.data))} , ]; +} + + +// Return array of s: +// Time, Type, Key, Event, ViewAttributes +const renderEvent = (event: EventData) => { + switch (event.data.kind) { + case 'summary': + return summaryRows(event); + case 'index': + return indexRows(event); + case 'custom': + return customRows(event); + default: + return [ + + {event.timestamp} + {event.data.kind} + + + {clipboardLink('copy to clipboard', JSON.stringify(event.data))} + , + ]; + } }; const EventsPage = ({ limit = 1000 }: Props) => { @@ -87,10 +107,19 @@ const EventsPage = ({ limit = 1000 }: Props) => { if (!event.data || event.data.trim() === '') { return; } + + let parsed; + try { + parsed = JSON.parse(event.data); + } catch (error) { + console.error('Failed to parse event data as JSON:', error); + return; + } + const newEvent: EventData = { id: Math.random().toString(36).slice(2, 11), timestamp: Date.now(), - data: event.data + data: parsed }; setEvents(prevEvents => [newEvent, ...prevEvents].slice(0, limit)); }); diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index 5ec8136c6..8a3e88649 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -3,8 +3,19 @@ export interface Environment { name: string; } +export interface SummaryEventPayload { + kind: 'summary'; + features: object; + [key: string]: any; +} + +export interface GenericEventPayload { + kind: string; + [key: string]: any; +} + export interface EventData { id: string; timestamp: number; - data: string; + data: SummaryEventPayload | GenericEventPayload; } \ No newline at end of file From 6d824b66ffdf70830d445eaca9979455e7e56057 Mon Sep 17 00:00:00 2001 From: Tom Varney Date: Wed, 6 Aug 2025 11:37:17 -0400 Subject: [PATCH 28/96] add react router --- internal/dev_server/ui/dist/index.html | 77 ++++++----- internal/dev_server/ui/package-lock.json | 140 ++++++++++++++++---- internal/dev_server/ui/package.json | 1 + internal/dev_server/ui/src/App.tsx | 15 ++- internal/dev_server/ui/src/EventsButton.tsx | 16 ++- internal/dev_server/ui/src/FlagsButton.tsx | 16 ++- internal/dev_server/ui/src/main.tsx | 11 +- 7 files changed, 189 insertions(+), 87 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index 445f3b682..df0b5c7cd 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -5,7 +5,7 @@ LaunchDevly - +}`;var ot=n4(function(){return vt(R,Fe+"return "+be).apply(n,F)});if(ot.source=be,K7(ot))throw ot;return ot}function zC(a){return _t(a).toLowerCase()}function KC(a){return _t(a).toUpperCase()}function WC(a,u,m){if(a=_t(a),a&&(m||u===n))return id(a);if(!a||!(u=Q0(u)))return a;var S=on(a),_=on(u),R=od(S,_),F=ku(S,_)+1;return Zr(S,R,F).join("")}function UC(a,u,m){if(a=_t(a),a&&(m||u===n))return a.slice(0,ca(a)+1);if(!a||!(u=Q0(u)))return a;var S=on(a),_=ku(S,on(u))+1;return Zr(S,0,_).join("")}function GC(a,u,m){if(a=_t(a),a&&(m||u===n))return a.replace(au,"");if(!a||!(u=Q0(u)))return a;var S=on(a),_=od(S,on(u));return Zr(S,_).join("")}function qC(a,u){var m=j,S=q;if(Jt(u)){var _="separator"in u?u.separator:_;m="length"in u?nt(u.length):m,S="omission"in u?Q0(u.omission):S}a=_t(a);var R=a.length;if(Vi(a)){var F=on(a);R=F.length}if(m>=R)return a;var H=m-K2(S);if(H<1)return S;var X=F?Zr(F,0,H).join(""):a.slice(0,H);if(_===n)return X+S;if(F&&(H+=X.length-H),W7(_)){if(a.slice(H).search(_)){var pe,ve=X;for(_.global||(_=zo(_.source,_t(uu.exec(_))+"g")),_.lastIndex=0;pe=_.exec(ve);)var be=pe.index;X=X.slice(0,be===n?H:be)}}else if(a.indexOf(Q0(_),H)!=H){var Te=X.lastIndexOf(_);Te>-1&&(X=X.slice(0,Te))}return X+S}function YC(a){return a=_t(a),a&&M1.test(a)?a.replace(F2,cd):a}var XC=ii(function(a,u,m){return a+(m?" ":"")+u.toUpperCase()}),q7=ec("toUpperCase");function t4(a,u,m){return a=_t(a),u=m?n:u,u===n?m7(a)?x7(a):p7(a):a.match(u)||[]}var n4=tt(function(a,u){try{return I0(a,n,u)}catch(m){return K7(m)?m:new Ge(m)}}),QC=mr(function(a,u){return P0(u,function(m){m=jn(m),ur(a,m,we(a[m],a))}),a});function JC(a){var u=a==null?0:a.length,m=He();return a=u?Tt(a,function(S){if(typeof S[1]!="function")throw new mn(c);return[m(S[0]),S[1]]}):[],tt(function(S){for(var _=-1;++_fe)return[];var m=z,S=_0(a,z);u=He(u),a-=z;for(var _=Eu(S,u);++m0||u<0)?new Xe(m):(a<0?m=m.takeRight(-a):a&&(m=m.drop(a)),u!==n&&(u=nt(u),m=u<0?m.dropRight(-u):m.take(u-a)),m)},Xe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Xe.prototype.toArray=function(){return this.take(z)},sn(Xe.prototype,function(a,u){var m=/^(?:filter|find|map|reject)|While$/.test(u),S=/^(?:head|last)$/.test(u),_=A[S?"take"+(u=="last"?"Right":""):u],R=S||/^find/.test(u);_&&(A.prototype[u]=function(){var F=this.__wrapped__,H=S?[1]:arguments,X=F instanceof Xe,pe=H[0],ve=X||Qe(F),be=function(ut){var pt=_.apply(A,n2([ut],H));return S&&Te?pt[0]:pt};ve&&m&&typeof pe=="function"&&pe.length!=1&&(X=ve=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=R&&!Te,ot=X&&!Fe;if(!R&&ve){F=ot?F:new Xe(this);var Ue=a.apply(F,H);return Ue.__actions__.push({func:Kn,args:[be],thisArg:n}),new E0(Ue,Te)}return We&&ot?a.apply(this,H):(Ue=this.thru(be),We?S?Ue.value()[0]:Ue.value():Ue)})}),P0(["pop","push","shift","sort","splice","unshift"],function(a){var u=Tr[a],m=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);A.prototype[a]=function(){var _=arguments;if(S&&!this.__chain__){var R=this.value();return u.apply(Qe(R)?R:[],_)}return this[m](function(F){return u.apply(Qe(F)?F:[],_)})}}),sn(Xe.prototype,function(a,u){var m=A[u];if(m){var S=m.name+"";ht.call(ji,S)||(ji[S]=[]),ji[S].push({name:u,func:m})}}),ji[io(n,B).name]=[{name:"wrapper",func:n}],Xe.prototype.clone=wa,Xe.prototype.reverse=Bu,Xe.prototype.value=Wi,A.prototype.at=as,A.prototype.chain=ci,A.prototype.commit=ss,A.prototype.next=Cc,A.prototype.plant=F7,A.prototype.reverse=_c,A.prototype.toJSON=A.prototype.valueOf=A.prototype.value=Z7,A.prototype.first=A.prototype.head,Ar&&(A.prototype[Ar]=Pc),A},Ii=w7();rr?((rr.exports=Ii)._=Ii,Ho._=Ii):Bt._=Ii}).call(sH)}(Hc,Hc.exports)),Hc.exports}var cH=uH();const dH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:i,updateOverride:l})=>{switch(typeof i){case"boolean":return T.jsx("div",{className:"animated-switch-container",children:T.jsxs(tZ,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[T.jsx("span",{className:"switch-text switch-text-false",children:"False"}),T.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,c=s.findIndex(p=>cH.isEqual(p.value,t));c===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],c=0);const f=p=>h=>{h.preventDefault();const g=Object.fromEntries(new FormData(h.currentTarget));l(n,JSON.parse(g.value)),p()};return T.jsxs(_r,{gap:"2",children:[T.jsx(CN,{"aria-label":"flag variations select",selectedKey:c,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:T.jsxs(b.Fragment,{children:[c!==null&&s[c]._id==="OVERRIDE"?T.jsxs(zl,{children:[T.jsxs(Xn,{children:[T.jsx(H6,{}),T.jsx(Kt,{name:"chevron-down",size:"small"})]}),T.jsx(jl,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):T.jsxs(Xn,{children:[T.jsx(H6,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),T.jsx(Kt,{name:"chevron-down",size:"small"})]}),T.jsx(aS,{children:T.jsx(nS,{children:s.map((p,h)=>{const g=p.name?p.name:JSON.stringify(p.value);return T.jsx(rS,{id:h,textValue:g,children:p._id==="OVERRIDE"?T.jsx("div",{children:T.jsxs(_r,{gap:"1",children:[T.jsx(Kt,{name:"devices",size:"small"}),g]})}):g},h)})})})]},".0")}),T.jsx(D0,{width:"2rem",height:"2rem",children:T.jsxs(i$,{children:[T.jsxs(zl,{children:[T.jsx(Fh,{icon:"edit","aria-label":"edit variation value"}),T.jsx(jl,{children:"Edit the served variation value as JSON"})]}),T.jsx(oS,{children:T.jsx(iS,{children:T.jsx(eS,{children:({close:p})=>T.jsxs(vw,{onSubmit:f(p),children:[T.jsxs(cS,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:h=>{try{return JSON.parse(h),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[T.jsx(k1,{children:`${n} value`}),T.jsx(uS,{style:{fontFamily:"monospace"}}),T.jsx(Y5,{slot:"description",children:"Update the value as JSON"}),T.jsx(tS,{})]}),T.jsxs(X$,{children:[T.jsx(Xn,{onPress:p,children:"Cancel"}),T.jsx(Xn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var Vf={exports:{}},fH=Vf.exports,W6;function pH(){return W6||(W6=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(fH,t=>{var n=(le,Y)=>{if(!le||!Y)return _e;var ue=P(le);he(Y)||(Y=C(Y));var $e=ue.bitflags;return($e&Y._bitflags)!==$e?_e:M(ue,Y)},i=(le,Y,ue)=>{if(!le)return ue!=null&&ue.all?E(Y,ue):fe;var $e=P(le),Ee=$e.bitflags,Se=$e.containsSpace,me=x((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||Pe,ke=0,je=0,Ye=Y.length;function gt(K0){kece.peek()._score&&ce.replaceTop(K0))}if(ue!=null&&ue.key)for(var kt=ue.key,lt=0;lt-1e3&&j[ct]>se){var it=(j[ct]+q[ct])/4;it>j[ct]&&(j[ct]=it)}q[ct]>j[ct]&&(j[ct]=q[ct])}}if(Se){for(let et=0;et<$e.spaceSearches.length;et++)if(j[et]===se)continue e}else{var Ze=!1;for(let et=0;et-1e3&&$t>se){var it=($t+at._score)/4;it>$t&&($t=it)}at._score>$t&&($t=at._score)}}if(Yt.obj=wt,Yt._score=$t,ue!=null&&ue.scoreFn){if($t=ue.scoreFn(Yt),!$t)continue;$t=x($t),Yt._score=$t}$t=0;--lt)Wt[lt]=ce.poll();return Wt.total=ke+je,Wt},l=(le,Y="",ue="")=>{for(var $e=typeof Y=="function"?Y:void 0,Ee=le.target,Se=Ee.length,me=le.indexes,Be="",ke=0,je=0,Ye=!1,gt=[],kt=0;kt{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=D(le);return h(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},c=()=>{O.clear(),W.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ue)=>Y-ue)}set indexes(Y){return this._indexes=Y}highlight(Y,ue){return l(this,Y,ue)}get score(){return g(this._score)}set score(Y){this._score=x(Y)}}class p extends Array{get score(){return g(this._score)}set score(Y){this._score=x(Y)}}var h=(le,Y)=>{const ue=new f;return ue.target=le,ue.obj=Y.obj??_e,ue._score=Y._score??se,ue._indexes=Y._indexes??[],ue._targetLower=Y._targetLower??"",ue._targetLowerCodes=Y._targetLowerCodes??_e,ue._nextBeginningIndexes=Y._nextBeginningIndexes??_e,ue._bitflags=Y._bitflags??0,ue},g=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),x=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=D(le),ue=[];if(Y.containsSpace){var $e=le.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=D($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:Y.lowerCodes,_lower:Y._lower,containsSpace:Y.containsSpace,bitflags:Y.bitflags,spaceSearches:ue}},C=le=>{if(le.length>999)return s(le);var Y=O.get(le);return Y!==void 0||(Y=s(le),O.set(le,Y)),Y},P=le=>{if(le.length>999)return w(le);var Y=W.get(le);return Y!==void 0||(Y=w(le),W.set(le,Y)),Y},E=(le,Y)=>{var ue=[];ue.total=le.length;var $e=(Y==null?void 0:Y.limit)||Pe;if(Y!=null&&Y.key)for(var Ee=0;Ee=$e)return ue}}else if(Y!=null&&Y.keys)for(var Ee=0;Ee=0;--je){var me=Q(Se,Y.keys[je]);if(!me){ke[je]=ae;continue}he(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[je]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},M=(le,Y,ue=!1,$e=!1)=>{if(ue===!1&&le.containsSpace)return B(le,Y,$e);for(var Ee=le._lower,Se=le.lowerCodes,me=Se[0],Be=Y._targetLowerCodes,ke=Se.length,je=Be.length,lt=0,Ye=0,gt=0;;){var kt=me===Be[Ye];if(kt){if(oe[gt++]=Ye,++lt,lt===ke)break;me=Se[lt]}if(++Ye,Ye>=je)return _e}var lt=0,wt=!1,rt=0,at=Y._nextBeginningIndexes;at===_e&&(at=Y._nextBeginningIndexes=Z(Y.target)),Ye=oe[0]===0?0:at[oe[0]-1];var n0=0;if(Ye!==je)for(;;)if(Ye>=je){if(lt<=0||(++n0,n0>200))break;--lt;var yt=L[--rt];Ye=at[yt]}else{var kt=Se[lt]===Be[Ye];if(kt){if(L[rt++]=Ye,++lt,lt===ke){wt=!0;break}++Ye}else Ye=at[Ye]}var dt=ke<=1?-1:Y._targetLower.indexOf(Ee,oe[0]),Re=!!~dt,it=Re?dt===0||Y._nextBeginningIndexes[dt-1]===dt:!1;if(Re&&!it){for(var Ze=0;Ze{for(var ct=0,tr=0,C0=1;C024&&(ct*=(vn-24)*10)}return ct-=(je-ke)/2,Re&&(ct/=1+ke*ke*1),it&&(ct/=1+ke*ke*1),ct-=(je-ke)/2,ct};if(wt)if(it){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=_e,me=0,Be=le.spaceSearches,ke=Be.length,je=0,Ye=()=>{for(let it=je-1;it>=0;it--)Y._nextBeginningIndexes[ne[it*2+0]]=ne[it*2+1]},gt=!1,Re=0;Re=0&&n0===Y._nextBeginningIndexes[Ze];Ze--)Y._nextBeginningIndexes[Ze]=at,ne[je*2+0]=Ze,ne[je*2+1]=n0,je++}}Ee+=Se._score/ke,q[Re]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var Re=0;Re{for(var Y=le.length,ue=le.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var Y=le.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,je=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!je;Ee=ke,Se=je,Ye&&(ue[$e++]=me)}return ue},Z=le=>{for(var Y=le.length,ue=V(le),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?Y:Ee);return $e},O=new Map,W=new Map,oe=[],L=[],ne=[],j=[],q=[],xe=[],G=[],Q=(le,Y)=>{var ue=le[Y];if(ue!==void 0)return ue;if(typeof Y=="function")return Y(le);var $e=Y;Array.isArray(Y)||($e=Y.split("."));for(var Ee=$e.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",Pe=1/0,se=-Pe,fe=[];fe.total=0;var _e=null,ae=s(""),z=le=>{var Y=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=Y[me],ke=1;ke>1]=Y[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)Y[me]=Y[Ye];Y[me]=Be};return $e.add=Se=>{var me=ue;Y[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)Y[me]=Y[Be];Y[me]=Se},$e.poll=Se=>{if(ue!==0){var me=Y[0];return Y[0]=Y[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return Y[0]},$e.replaceTop=Se=>{Y[0]=Se,Ee()},$e},ce=z();return{single:n,go:i,prepare:s,cleanup:c}})}(Vf)),Vf.exports}var vH=pH();const hH=p1(vH);function mH({availableVariations:e,selectedProject:t,flags:n,overrides:i,setOverrides:l}){const[s,c]=b.useState(!1),[f,p]=b.useState(""),[h,g]=b.useState(0),x=20,w=b.useMemo(()=>i&&Object.keys(i).length>0,[i]);b.useEffect(()=>{!w&&s&&c(!1)},[w,s]);const C=b.useMemo(()=>n?Object.entries(n).filter(O=>{if(!f)return!0;const[W]=O,oe=hH.single(f.toLowerCase(),W);return oe&&oe.score>-5e3}).filter(O=>{const[W]=O,oe=W in i;return!(s&&!oe)}):[],[n,f,s,i]),P=b.useMemo(()=>{const Z=h*x,O=Z+x;return C.slice(Z,O)},[C,h]),E=b.useCallback((Z,O)=>{var oe;const W={...i,[Z]:{value:O,version:((oe=i[Z])==null?void 0:oe.version)||0}};l(W),fetch(T2(`/dev/projects/${t}/overrides/${Z}`),{method:"PUT",body:JSON.stringify(O)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(i),console.error("unable to update override",L)})},[i,t]),M=b.useCallback(async Z=>{const O={...i};delete O[Z],l(O);try{const W=await fetch(T2(`/dev/projects/${t}/overrides/${Z}`),{method:"DELETE"});if(!W.ok)throw new Error(`got ${W.status} ${W.statusText}. ${await W.text()}`)}catch(W){console.error("unable to remove override",W),l(i)}},[i,t]),B=b.useCallback(async()=>{l({});try{const Z=await fetch(T2(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!Z.ok)throw new Error(`got ${Z.status} ${Z.statusText}. ${await Z.text()}`)}catch(Z){console.error("unable to remove all overrides",Z),l(i)}},[i,t]);if(!n)return null;const D=Math.ceil(C.length/x),V=Z=>{switch(Z){case"next":g(O=>Math.min(O+1,D-1));break;case"prev":g(O=>Math.max(O-1,0));break;case"first":g(0);break;case"last":g(D-1);break;default:console.error("invalid page change direction.")}};return T.jsxs(T.Fragment,{children:[T.jsxs(D0,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:lH.borderRadius.regular,children:[T.jsxs(k1,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[T.jsx(nO,{id:"only-show-overrides",isSelected:s,onChange:Z=>{c(Z)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),T.jsxs(Xn,{variant:"destructive",isDisabled:!w,onPress:async()=>{i&&(await B(),l({}),c(!1))},children:[T.jsx(Kt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),T.jsxs(H5,{gap:"4",children:[T.jsx(_r,{gap:"4",children:T.jsx(yN,{"aria-label":"Search flags",children:T.jsxs(mO,{children:[T.jsx(Kt,{name:"search",size:"small"}),T.jsx(q$,{placeholder:"Search flags by key",onChange:Z=>{p(Z.target.value),g(0)},value:f,"aria-label":"Search flags input"}),T.jsx(Fh,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),T.jsx("ul",{className:"flags-list",children:P.map(([Z,{value:O}],W)=>{var j;const oe=(j=i[Z])==null?void 0:j.value,L=Z in i,ne=L?oe:O;return T.jsxs("li",{style:{backgroundColor:W%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[T.jsx(D0,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:T.jsxs(_r,{gap:"2",children:[T.jsx(F5,{asChild:!0,text:Z,children:T.jsx("code",{className:L?"has-override":"",children:Z})}),L&&T.jsx(Xn,{"aria-label":"Remove override",onPress:()=>{M(Z)},variant:"destructive",children:T.jsxs(_r,{gap:"2",children:[T.jsx(Kt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),T.jsx(D0,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:T.jsx(dH,{availableVariations:e[Z]?e[Z]:[],currentValue:ne,flagValue:O,flagKey:Z,updateOverride:E})})]},Z)})})]}),T.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:T.jsx(WV,{currentOffset:h*x,isReady:!0,onChange:Z=>V(Z),pageSize:x,resourceName:"flags",totalCount:C.length})})]})}const gH=async()=>{const e=await fetch(T2("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function yH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[i,l]=b.useState([]),[s,c]=b.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),c(!1)};return b.useEffect(()=>{gH().then(f).catch(p=>{console.error(p),c(!1)}),l([])},[]),s?T.jsxs("div",{style:{textAlign:"center"},children:[T.jsx(T1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),T.jsx("p",{children:"Projects are loading"})]}):i.length>0?T.jsxs(TF,{children:[T.jsx(_r,{gap:"1",children:T.jsxs(zl,{children:[T.jsx(Xn,{children:e??"Select a project"}),T.jsx(jl,{children:e==null?"Please select a project":"This is the selected project"})]})}),T.jsx(aS,{children:T.jsx(NO,{children:i.map(p=>T.jsx(jO,{onAction:()=>{t(p)},children:p},p))})})]}):T.jsxs(k8,{kind:"error",children:[T.jsx(o$,{children:"No projects."}),T.jsx(Y5,{children:"Add one via"}),T.jsx(F5,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const bH=async e=>{const t=await fetch(T2(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},xH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[i,l]=b.useState(!1),s=async()=>{l(!0);try{const c=await bH(e);n(c.availableVariations),t(nv(c.flagsState))}catch(c){j6.warning("Sync failed"),console.error("Sync failed:",c)}finally{j6.success("Sync successful"),l(!1)}};return e?T.jsxs(zl,{children:[T.jsx(Xn,{onPress:s,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?T.jsx(T1,{"aria-label":"loading",isIndeterminate:!0}):T.jsx("div",{children:T.jsxs(_r,{gap:"1",children:[T.jsx(Kt,{name:"sync",size:"small"}),T.jsx("span",{children:"Sync"})]})})}),T.jsx(jl,{children:"Sync the selected project from the source environment"})]}):null};async function wH(e,t){const n=await fetch(T2(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var G3,U6;function dS(){if(U6)return G3;U6=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return G3=e,G3}var q3,G6;function $H(){if(G6)return q3;G6=1;var e=typeof mo=="object"&&mo&&mo.Object===Object&&mo;return q3=e,q3}var Y3,q6;function fS(){if(q6)return Y3;q6=1;var e=$H(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return Y3=n,Y3}var X3,Y6;function SH(){if(Y6)return X3;Y6=1;var e=fS(),t=function(){return e.Date.now()};return X3=t,X3}var Q3,X6;function CH(){if(X6)return Q3;X6=1;var e=/\s/;function t(n){for(var i=n.length;i--&&e.test(n.charAt(i)););return i}return Q3=t,Q3}var J3,Q6;function PH(){if(Q6)return J3;Q6=1;var e=CH(),t=/^\s+/;function n(i){return i&&i.slice(0,e(i)+1).replace(t,"")}return J3=n,J3}var ep,J6;function pS(){if(J6)return ep;J6=1;var e=fS(),t=e.Symbol;return ep=t,ep}var tp,e8;function _H(){if(e8)return tp;e8=1;var e=pS(),t=Object.prototype,n=t.hasOwnProperty,i=t.toString,l=e?e.toStringTag:void 0;function s(c){var f=n.call(c,l),p=c[l];try{c[l]=void 0;var h=!0}catch{}var g=i.call(c);return h&&(f?c[l]=p:delete c[l]),g}return tp=s,tp}var np,t8;function EH(){if(t8)return np;t8=1;var e=Object.prototype,t=e.toString;function n(i){return t.call(i)}return np=n,np}var rp,n8;function kH(){if(n8)return rp;n8=1;var e=pS(),t=_H(),n=EH(),i="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function c(f){return f==null?f===void 0?l:i:s&&s in Object(f)?t(f):n(f)}return rp=c,rp}var ip,r8;function TH(){if(r8)return ip;r8=1;function e(t){return t!=null&&typeof t=="object"}return ip=e,ip}var op,i8;function MH(){if(i8)return op;i8=1;var e=kH(),t=TH(),n="[object Symbol]";function i(l){return typeof l=="symbol"||t(l)&&e(l)==n}return op=i,op}var lp,o8;function AH(){if(o8)return lp;o8=1;var e=PH(),t=dS(),n=MH(),i=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,c=/^0o[0-7]+$/i,f=parseInt;function p(h){if(typeof h=="number")return h;if(n(h))return i;if(t(h)){var g=typeof h.valueOf=="function"?h.valueOf():h;h=t(g)?g+"":g}if(typeof h!="string")return h===0?h:+h;h=e(h);var x=s.test(h);return x||c.test(h)?f(h.slice(2),x?2:8):l.test(h)?i:+h}return lp=p,lp}var ap,l8;function LH(){if(l8)return ap;l8=1;var e=dS(),t=SH(),n=AH(),i="Expected a function",l=Math.max,s=Math.min;function c(f,p,h){var g,x,w,C,P,E,M=0,B=!1,D=!1,V=!0;if(typeof f!="function")throw new TypeError(i);p=n(p)||0,e(h)&&(B=!!h.leading,D="maxWait"in h,w=D?l(n(h.maxWait)||0,p):w,V="trailing"in h?!!h.trailing:V);function Z(G){var Q=g,he=x;return g=x=void 0,M=G,C=f.apply(he,Q),C}function O(G){return M=G,P=setTimeout(L,p),B?Z(G):C}function W(G){var Q=G-E,he=G-M,Pe=p-Q;return D?s(Pe,w-he):Pe}function oe(G){var Q=G-E,he=G-M;return E===void 0||Q>=p||Q<0||D&&he>=w}function L(){var G=t();if(oe(G))return ne(G);P=setTimeout(L,W(G))}function ne(G){return P=void 0,V&&g?Z(G):(g=x=void 0,C)}function j(){P!==void 0&&clearTimeout(P),M=0,g=E=x=P=void 0}function q(){return P===void 0?C:ne(t())}function xe(){var G=t(),Q=oe(G);if(g=arguments,x=this,E=G,Q){if(P===void 0)return O(E);if(D)return clearTimeout(P),P=setTimeout(L,p),Z(E)}return P===void 0&&(P=setTimeout(L,p)),C}return xe.cancel=j,xe.flush=q,xe}return ap=c,ap}var RH=LH();const DH=p1(RH);function BH({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:i}){const[l,s]=b.useState(null),[c,f]=b.useState(""),[p,h]=b.useState(!1),g=b.useCallback(DH(x=>{h(!0),wH(e,x).then(w=>{if(s(w),!n){const C=w.find(P=>P.key===t);C?i(C):w.length>0&&i({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{h(!1)})},300),[e,t,n,i]);return b.useEffect(()=>{g(c)},[g,c]),T.jsxs(H5,{gap:"3",children:[T.jsx(D0,{display:"flex",justifyContent:"space-between",alignItems:"center",children:T.jsx(k1,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),T.jsxs(D0,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[T.jsxs("div",{style:{position:"relative",flexGrow:1},children:[T.jsx(q$,{id:"environmentSearch",value:c,onChange:x=>f(x.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&T.jsx(D0,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:T.jsx(T1,{size:"small","aria-label":"Loading environments"})})]}),T.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:T.jsx("code",{children:n==null?void 0:n.key})})]}),T.jsx(D0,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:T.jsx(nS,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:x=>{const w=Array.from(x)[0],C=l==null?void 0:l.find(P=>P.key===w);C&&i(C)},children:l==null?void 0:l.map(x=>T.jsx(rS,{id:x.key,children:x.name},x.key))})})]})}function VH({context:e,setContext:t}){return T.jsxs(H5,{gap:"3",children:[T.jsx(k1,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),T.jsxs(cS,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[T.jsx(uS,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),T.jsx(Y5,{slot:"description",children:"Edit the context as JSON"}),T.jsx(tS,{})]})]})}function IH({isSubmitting:e,selectedEnvironment:t}){return T.jsx(Xn,{variant:"primary",type:"submit",isDisabled:e,children:e?T.jsx(_r,{gap:"2",children:T.jsxs(D0,{display:"flex",alignItems:"center",children:[T.jsx(T1,{"aria-label":"loading",isIndeterminate:!0}),T.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?T.jsxs(_r,{gap:"2",children:[T.jsx(Kt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),T.jsx("span",{children:t})]}):"Environment"})}function FH({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:l,updateProjectSettings:s}){const[c,f]=b.useState(t),[p,h]=b.useState(l),[g,x]=b.useState(!1);b.useEffect(()=>{f(t),h(l)},[t,l]);const w=async P=>{x(!0);try{P(),await s(c,p),n(c)}catch(E){console.error("Error submitting project settings:",E)}finally{x(!1)}},C=()=>{f(t),h(l)};return T.jsxs(i$,{children:[T.jsxs(zl,{children:[T.jsx(IH,{isSubmitting:g,selectedEnvironment:i}),T.jsx(jl,{children:T.jsx("span",{children:"Current environment. Click to update."})})]}),T.jsx(oS,{isDismissable:!1,children:T.jsx(iS,{children:T.jsx(eS,{children:({close:P})=>T.jsxs(vw,{onSubmit:E=>{E.preventDefault(),w(P)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[T.jsx(k1,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),T.jsxs(H5,{gap:"3",children:[T.jsx(BH,{projectKey:e,sourceEnvironmentKey:i,selectedEnvironment:c,setSelectedEnvironment:f}),T.jsx(D0,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),T.jsx(VH,{context:p,setContext:h})]}),T.jsxs(X$,{style:{justifyContent:"flex-end"},children:[T.jsx(Xn,{onPress:()=>{C(),P()},variant:"destructive",isDisabled:g,children:"Cancel"}),T.jsx(Xn,{variant:"primary",type:"submit",isDisabled:g,children:g?T.jsxs(_r,{gap:"2",children:[T.jsx(T1,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),T.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function ZH(){const[e,t]=b.useState(null),[n,i]=b.useState(null),[l,s]=b.useState(null),[c,f]=b.useState({}),[p,h]=b.useState({}),[g,x]=b.useState(null),[w,C]=b.useState(!1),[P,E]=b.useState("{}"),M=b.useCallback(async()=>{if(!e)return;const D=await fetch(T2(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),V=await D.json();if(!D.ok)throw new Error(`Got ${D.status}, ${D.statusText} from flag fetch`);const{flagsState:Z,overrides:O,sourceEnvironmentKey:W,availableVariations:oe,context:L}=V;x(nv(Z)),f(O),s(W),h(oe),E(JSON.stringify(L||"{}",null,2));const j=(await OH(e)).find(q=>q.key===W);j&&i(j)},[e]);b.useEffect(()=>{e&&M().catch(console.error.bind(console,"error when fetching flags"))},[M,e]),b.useEffect(()=>{Promise.all([M()]).catch(console.error.bind(console,"error when fetching flags"))},[M]);const B=b.useCallback(async(D,V)=>{if(e)try{const Z=await fetch(T2(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:D==null?void 0:D.key,context:JSON.parse(V)})});if(!Z.ok)throw new Error(`Got ${Z.status}, ${Z.statusText} from project settings update`);const O=await Z.json(),{flagsState:W,sourceEnvironmentKey:oe,context:L}=O;x(nv(W)),s(oe),E(JSON.stringify(L||{},null,2)),i(D),await M()}catch(Z){console.error("Error updating project settings:",Z)}},[e,M]);return T.jsx("div",{style:{width:"100%"},children:T.jsx(D0,{width:"100%",minWidth:"600px",children:T.jsxs(D0,{display:"flex",flexDirection:"column",width:"100%",children:[w&&T.jsx(D0,{marginBottom:"2rem",width:"100%",children:T.jsxs(k8,{kind:"error",children:[T.jsx(o$,{children:"No projects."}),T.jsx(Y5,{children:"Add one via"}),T.jsx(F5,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&T.jsxs(D0,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[T.jsx(yH,{selectedProject:e,setSelectedProject:t,setShowBanner:C}),e&&T.jsx(FH,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:l,context:P,updateProjectSettings:B}),T.jsx(xH,{selectedProject:e,setFlags:x,setAvailableVariations:h})]}),e&&T.jsx(D0,{width:"100%",children:T.jsx(mH,{availableVariations:p,selectedProject:e,flags:g,overrides:c,setOverrides:D=>{f(D)}})})]})})})}async function OH(e){const t=await fetch(T2(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const X5=(e,t)=>T.jsx("a",{href:"#",onClick:n=>{n.preventDefault(),navigator.clipboard.writeText(t)},children:e}),NH=e=>{let t=[];for(const[n,i]of Object.entries(e.data.features)){const l=e.id+n,s=i.counters||[];for(const c of s)t.push(T.jsxs("tr",{children:[T.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),T.jsx("td",{children:"summary"}),T.jsx("td",{children:n}),T.jsxs("td",{children:["evaluated as ",String(c.value)]}),T.jsx("td",{children:X5("copy to clipboard",JSON.stringify(e.data))})]},l))}return t},HH=e=>{var n;let t;return e.data.context?t="context kind: "+(((n=e.data.context)==null?void 0:n.kind)||"unknown"):t="unknown",[T.jsxs("tr",{children:[T.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),T.jsx("td",{children:"index"}),T.jsx("td",{children:"n/a"}),T.jsx("td",{children:t}),T.jsx("td",{children:X5("copy to clipboard",JSON.stringify(e.data))})]},e.id)]},jH=e=>[T.jsxs("tr",{children:[T.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),T.jsx("td",{children:e.data.kind}),T.jsx("td",{children:e.data.key||"unknown"}),T.jsxs("td",{children:["value is ",e.data.metricValue]}),T.jsx("td",{children:X5("copy to clipboard",JSON.stringify(e.data))})]},e.id)],zH=e=>{switch(e.data.kind){case"summary":return NH(e);case"index":return HH(e);case"custom":return jH(e);default:return[T.jsxs("tr",{children:[T.jsx("td",{children:e.timestamp}),T.jsx("td",{children:e.data.kind}),T.jsx("td",{}),T.jsx("td",{}),T.jsx("td",{children:X5("copy to clipboard",JSON.stringify(e.data))})]},e.id)]}},KH=({limit:e=1e3})=>{const[t,n]=b.useState([]);return b.useEffect(()=>{const i=new EventSource(T2("/events/tee"));return i.addEventListener("put",l=>{if(!l.data||l.data.trim()==="")return;let s;try{s=JSON.parse(l.data)}catch(f){console.error("Failed to parse event data as JSON:",f);return}const c={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:s};n(f=>[c,...f].slice(0,e))}),()=>{console.log("closing event source"),i.close()}},[]),T.jsxs("div",{children:[T.jsxs("h3",{children:["Events Stream (limit: ",e,")"]}),T.jsxs("table",{className:"events-table",children:[T.jsx("thead",{children:T.jsxs("tr",{children:[T.jsx("th",{children:"Time"}),T.jsx("th",{children:"Type"}),T.jsx("th",{children:"Key"}),T.jsx("th",{children:"Event"}),T.jsx("th",{children:"Link"})]})}),T.jsx("tbody",{children:t.map(i=>zH(i))})]}),t.length===0&&T.jsx("p",{children:"No events received yet..."})]})};function WH(){return T.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:T.jsxs(D0,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[T.jsxs(D0,{display:"flex",gap:"10px",justifyContent:"flex-start",width:"100%",children:[T.jsx(iH,{}),T.jsx(oH,{})]}),T.jsx(D0,{padding:"1rem",width:"100%",children:T.jsxs(V_,{children:[T.jsx(Pf,{path:"/",element:T.jsx(D_,{to:"/ui",replace:!0})}),T.jsx(Pf,{path:"/ui",element:T.jsx(ZH,{})}),T.jsx(Pf,{path:"/events",element:T.jsx(KH,{})})]})})]})})}const UH="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function GH({children:e}){return b.useEffect(()=>{fetch(UH).then(async t=>t.text()).then(t=>{const i=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),T.jsx(_8.Provider,{value:{path:""},children:e})}const qH=()=>(b.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),T.jsx(ee.StrictMode,{children:T.jsx(oE,{children:T.jsxs(GH,{children:[T.jsx(WH,{}),T.jsx(eH,{})]})})}));KP.createRoot(document.getElementById("root")).render(T.jsx(qH,{})); diff --git a/internal/dev_server/ui/package-lock.json b/internal/dev_server/ui/package-lock.json index ac4f6faea..7ad12be64 100644 --- a/internal/dev_server/ui/package-lock.json +++ b/internal/dev_server/ui/package-lock.json @@ -18,6 +18,7 @@ "lodash": "4.17.21", "react": "18.3.1", "react-dom": "18.3.1", + "react-router": "7.7.1", "react-window": "1.8.10" }, "devDependencies": { @@ -1278,6 +1279,47 @@ "react-dom": "18.3.1" } }, + "node_modules/@launchpad-ui/components/node_modules/@remix-run/router": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.9.0.tgz", + "integrity": "sha512-bV63itrKBC0zdT27qYm6SDZHlkXwFL1xMBuhkn+X7l0+IIhNaH5wuuvZKp6eKhCD4KFhujhfhCT1YxXW6esUIA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@launchpad-ui/components/node_modules/react-router": { + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.16.0.tgz", + "integrity": "sha512-VT4Mmc4jj5YyjpOi5jOf0I+TYzGpvzERy4ckNSvSh2RArv8LLoCxlsZ2D+tc7zgjxcY34oTz2hZaeX5RVprKqA==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.9.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@launchpad-ui/components/node_modules/react-router-dom": { + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.16.0.tgz", + "integrity": "sha512-aTfBLv3mk/gaKLxgRDUPbPw+s4Y/O+ma3rEN1u8EgEpLpPe6gNjIsWt9rxushMHHMb7mSwxRGdGlGdvmFsyPIg==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.9.0", + "react-router": "6.16.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, "node_modules/@launchpad-ui/core": { "version": "0.49.22", "resolved": "https://registry.npmjs.org/@launchpad-ui/core/-/core-0.49.22.tgz", @@ -1587,6 +1629,47 @@ "react-dom": "18.3.1" } }, + "node_modules/@launchpad-ui/navigation/node_modules/@remix-run/router": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.9.0.tgz", + "integrity": "sha512-bV63itrKBC0zdT27qYm6SDZHlkXwFL1xMBuhkn+X7l0+IIhNaH5wuuvZKp6eKhCD4KFhujhfhCT1YxXW6esUIA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@launchpad-ui/navigation/node_modules/react-router": { + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.16.0.tgz", + "integrity": "sha512-VT4Mmc4jj5YyjpOi5jOf0I+TYzGpvzERy4ckNSvSh2RArv8LLoCxlsZ2D+tc7zgjxcY34oTz2hZaeX5RVprKqA==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.9.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@launchpad-ui/navigation/node_modules/react-router-dom": { + "version": "6.16.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.16.0.tgz", + "integrity": "sha512-aTfBLv3mk/gaKLxgRDUPbPw+s4Y/O+ma3rEN1u8EgEpLpPe6gNjIsWt9rxushMHHMb7mSwxRGdGlGdvmFsyPIg==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.9.0", + "react-router": "6.16.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, "node_modules/@launchpad-ui/overlay": { "version": "0.3.30", "resolved": "https://registry.npmjs.org/@launchpad-ui/overlay/-/overlay-0.3.30.tgz", @@ -3554,14 +3637,6 @@ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" } }, - "node_modules/@remix-run/router": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.9.0.tgz", - "integrity": "sha512-bV63itrKBC0zdT27qYm6SDZHlkXwFL1xMBuhkn+X7l0+IIhNaH5wuuvZKp6eKhCD4KFhujhfhCT1YxXW6esUIA==", - "engines": { - "node": ">=14.0.0" - } - }, "node_modules/@rolldown/pluginutils": { "version": "1.0.0-beta.9", "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.9.tgz", @@ -5179,6 +5254,15 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/cookie": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz", + "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, "node_modules/cosmiconfig": { "version": "8.3.6", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", @@ -8143,33 +8227,25 @@ } }, "node_modules/react-router": { - "version": "6.16.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.16.0.tgz", - "integrity": "sha512-VT4Mmc4jj5YyjpOi5jOf0I+TYzGpvzERy4ckNSvSh2RArv8LLoCxlsZ2D+tc7zgjxcY34oTz2hZaeX5RVprKqA==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.7.1.tgz", + "integrity": "sha512-jVKHXoWRIsD/qS6lvGveckwb862EekvapdHJN/cGmzw40KnJH5gg53ujOJ4qX6EKIK9LSBfFed/xiQ5yeXNrUA==", + "license": "MIT", "dependencies": { - "@remix-run/router": "1.9.0" + "cookie": "^1.0.1", + "set-cookie-parser": "^2.6.0" }, "engines": { - "node": ">=14.0.0" + "node": ">=20.0.0" }, "peerDependencies": { - "react": ">=16.8" - } - }, - "node_modules/react-router-dom": { - "version": "6.16.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.16.0.tgz", - "integrity": "sha512-aTfBLv3mk/gaKLxgRDUPbPw+s4Y/O+ma3rEN1u8EgEpLpPe6gNjIsWt9rxushMHHMb7mSwxRGdGlGdvmFsyPIg==", - "dependencies": { - "@remix-run/router": "1.9.0", - "react-router": "6.16.0" + "react": ">=18", + "react-dom": ">=18" }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } } }, "node_modules/react-stately": { @@ -8495,6 +8571,12 @@ "node": ">=10" } }, + "node_modules/set-cookie-parser": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", + "license": "MIT" + }, "node_modules/set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", diff --git a/internal/dev_server/ui/package.json b/internal/dev_server/ui/package.json index 7c568d3d7..0e1aad2ef 100644 --- a/internal/dev_server/ui/package.json +++ b/internal/dev_server/ui/package.json @@ -22,6 +22,7 @@ "lodash": "4.17.21", "react": "18.3.1", "react-dom": "18.3.1", + "react-router": "7.7.1", "react-window": "1.8.10" }, "devDependencies": { diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx index c2fda03a4..e32880e07 100644 --- a/internal/dev_server/ui/src/App.tsx +++ b/internal/dev_server/ui/src/App.tsx @@ -1,5 +1,5 @@ import './App.css'; -import { useState } from 'react'; +import { Routes, Route, Navigate } from 'react-router'; import { Box } from '@launchpad-ui/core'; import FlagsButton from './FlagsButton.tsx'; import EventsButton from './EventsButton.tsx'; @@ -7,8 +7,6 @@ import FlagsPage from './FlagsPage.tsx'; import EventsPage from './EventsPage.tsx'; function App() { - const [mode, setMode] = useState<'flags' | 'events'>('flags'); - return (
- { setMode('flags'); }} /> - { setMode('events'); }} /> + + - {mode === 'flags' && } - {mode === 'events' && } + + } /> + } /> + } /> +
diff --git a/internal/dev_server/ui/src/EventsButton.tsx b/internal/dev_server/ui/src/EventsButton.tsx index d3b825cf6..47604229c 100644 --- a/internal/dev_server/ui/src/EventsButton.tsx +++ b/internal/dev_server/ui/src/EventsButton.tsx @@ -5,17 +5,19 @@ import { } from '@launchpad-ui/components'; import { Icon } from '@launchpad-ui/icons'; import { Inline } from '@launchpad-ui/core'; +import { useNavigate, useLocation } from 'react-router'; -type Props = { - onPress: () => void; -}; +const EventsButton = () => { + const navigate = useNavigate(); + const location = useLocation(); + const isActive = location.pathname === '/events'; -const EventsButton = ({ - onPress, -}: Props) => { return ( - - View events - - ); -}; - -export default EventsButton; diff --git a/internal/dev_server/ui/src/FlagsButton.tsx b/internal/dev_server/ui/src/FlagsButton.tsx deleted file mode 100644 index 7366a8019..000000000 --- a/internal/dev_server/ui/src/FlagsButton.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import { - Button, - Tooltip, - TooltipTrigger, -} from '@launchpad-ui/components'; -import { Icon } from '@launchpad-ui/icons'; -import { Inline } from '@launchpad-ui/core'; -import { useNavigate, useLocation } from 'react-router'; - -const FlagsButton = () => { - const navigate = useNavigate(); - const location = useLocation(); - const isActive = location.pathname === '/ui'; - - return ( - - - View and edit flags for the selected project - - ); -}; - -export default FlagsButton; diff --git a/internal/dev_server/ui/src/RouteSelector.tsx b/internal/dev_server/ui/src/RouteSelector.tsx new file mode 100644 index 000000000..a58c5c341 --- /dev/null +++ b/internal/dev_server/ui/src/RouteSelector.tsx @@ -0,0 +1,52 @@ +import { Select, SelectValue, Button, Popover, ListBox, ListBoxItem } from '@launchpad-ui/components'; +import { Icon } from '@launchpad-ui/icons'; +import { useNavigate, useLocation } from 'react-router'; +import { Fragment } from 'react'; + +const RouteSelector = () => { + const navigate = useNavigate(); + const location = useLocation(); + + const options = [ + { key: '/ui', label: 'Flags' }, + { key: '/events', label: 'Events' } + ]; + + const currentPath = location.pathname === '/' ? '/ui' : location.pathname; + const currentOption = options.find(option => option.key === currentPath); + + const handleSelectionChange = (key: React.Key) => { + if (typeof key === 'string') { + navigate(key); + } + }; + + return ( + + ); +}; + +export default RouteSelector; \ No newline at end of file From d0b3f44d33db4ab83d7618b845e10acc4f606762 Mon Sep 17 00:00:00 2001 From: Tom Varney Date: Wed, 6 Aug 2025 12:49:15 -0400 Subject: [PATCH 30/96] add feature events to list --- internal/dev_server/ui/dist/index.html | 30 +++++++++++------------ internal/dev_server/ui/src/EventsPage.tsx | 21 ++++++++++++++-- internal/dev_server/ui/src/types.ts | 23 ++++++++++++++++- 3 files changed, 56 insertions(+), 18 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index 44dad827c..cf7ccb9d8 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -13,7 +13,7 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var u4;function FP(){if(u4)return st;u4=1;var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),l=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),c=Symbol.for("react.context"),f=Symbol.for("react.forward_ref"),p=Symbol.for("react.suspense"),h=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),x=Symbol.iterator;function w(z){return z===null||typeof z!="object"?null:(z=x&&z[x]||z["@@iterator"],typeof z=="function"?z:null)}var C={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},P=Object.assign,E={};function M(z,ce,le){this.props=z,this.context=ce,this.refs=E,this.updater=le||C}M.prototype.isReactComponent={},M.prototype.setState=function(z,ce){if(typeof z!="object"&&typeof z!="function"&&z!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,z,ce,"setState")},M.prototype.forceUpdate=function(z){this.updater.enqueueForceUpdate(this,z,"forceUpdate")};function B(){}B.prototype=M.prototype;function D(z,ce,le){this.props=z,this.context=ce,this.refs=E,this.updater=le||C}var V=D.prototype=new B;V.constructor=D,P(V,M.prototype),V.isPureReactComponent=!0;var Z=Array.isArray,O=Object.prototype.hasOwnProperty,W={current:null},oe={key:!0,ref:!0,__self:!0,__source:!0};function L(z,ce,le){var Y,ue={},$e=null,Ee=null;if(ce!=null)for(Y in ce.ref!==void 0&&(Ee=ce.ref),ce.key!==void 0&&($e=""+ce.key),ce)O.call(ce,Y)&&!oe.hasOwnProperty(Y)&&(ue[Y]=ce[Y]);var Se=arguments.length-2;if(Se===1)ue.children=le;else if(1"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),p=Object.prototype.hasOwnProperty,h=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,g={},x={};function w(r){return p.call(x,r)?!0:p.call(g,r)?!1:h.test(r)?x[r]=!0:(g[r]=!0,!1)}function C(r,o,d,v){if(d!==null&&d.type===0)return!1;switch(typeof o){case"function":case"symbol":return!0;case"boolean":return v?!1:d!==null?!d.acceptsBooleans:(r=r.toLowerCase().slice(0,5),r!=="data-"&&r!=="aria-");default:return!1}}function P(r,o,d,v){if(o===null||typeof o>"u"||C(r,o,d,v))return!0;if(v)return!1;if(d!==null)switch(d.type){case 3:return!o;case 4:return o===!1;case 5:return isNaN(o);case 6:return isNaN(o)||1>o}return!1}function E(r,o,d,v,y,$,k){this.acceptsBooleans=o===2||o===3||o===4,this.attributeName=v,this.attributeNamespace=y,this.mustUseProperty=d,this.propertyName=r,this.type=o,this.sanitizeURL=$,this.removeEmptyString=k}var M={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(r){M[r]=new E(r,0,!1,r,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(r){var o=r[0];M[o]=new E(o,1,!1,r[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(r){M[r]=new E(r,2,!1,r.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(r){M[r]=new E(r,2,!1,r,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(r){M[r]=new E(r,3,!1,r.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(r){M[r]=new E(r,3,!0,r,null,!1,!1)}),["capture","download"].forEach(function(r){M[r]=new E(r,4,!1,r,null,!1,!1)}),["cols","rows","size","span"].forEach(function(r){M[r]=new E(r,6,!1,r,null,!1,!1)}),["rowSpan","start"].forEach(function(r){M[r]=new E(r,5,!1,r.toLowerCase(),null,!1,!1)});var B=/[\-:]([a-z])/g;function D(r){return r[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(r){var o=r.replace(B,D);M[o]=new E(o,1,!1,r,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(r){var o=r.replace(B,D);M[o]=new E(o,1,!1,r,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(r){var o=r.replace(B,D);M[o]=new E(o,1,!1,r,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(r){M[r]=new E(r,1,!1,r.toLowerCase(),null,!1,!1)}),M.xlinkHref=new E("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(r){M[r]=new E(r,1,!1,r.toLowerCase(),null,!0,!0)});function V(r,o,d,v){var y=M.hasOwnProperty(o)?M[o]:null;(y!==null?y.type!==0:v||!(2"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),p=Object.prototype.hasOwnProperty,h=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,g={},x={};function w(r){return p.call(x,r)?!0:p.call(g,r)?!1:h.test(r)?x[r]=!0:(g[r]=!0,!1)}function C(r,o,d,v){if(d!==null&&d.type===0)return!1;switch(typeof o){case"function":case"symbol":return!0;case"boolean":return v?!1:d!==null?!d.acceptsBooleans:(r=r.toLowerCase().slice(0,5),r!=="data-"&&r!=="aria-");default:return!1}}function P(r,o,d,v){if(o===null||typeof o>"u"||C(r,o,d,v))return!0;if(v)return!1;if(d!==null)switch(d.type){case 3:return!o;case 4:return o===!1;case 5:return isNaN(o);case 6:return isNaN(o)||1>o}return!1}function E(r,o,d,v,y,$,k){this.acceptsBooleans=o===2||o===3||o===4,this.attributeName=v,this.attributeNamespace=y,this.mustUseProperty=d,this.propertyName=r,this.type=o,this.sanitizeURL=$,this.removeEmptyString=k}var M={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(r){M[r]=new E(r,0,!1,r,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(r){var o=r[0];M[o]=new E(o,1,!1,r[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(r){M[r]=new E(r,2,!1,r.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(r){M[r]=new E(r,2,!1,r,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(r){M[r]=new E(r,3,!1,r.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(r){M[r]=new E(r,3,!0,r,null,!1,!1)}),["capture","download"].forEach(function(r){M[r]=new E(r,4,!1,r,null,!1,!1)}),["cols","rows","size","span"].forEach(function(r){M[r]=new E(r,6,!1,r,null,!1,!1)}),["rowSpan","start"].forEach(function(r){M[r]=new E(r,5,!1,r.toLowerCase(),null,!1,!1)});var B=/[\-:]([a-z])/g;function D(r){return r[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(r){var o=r.replace(B,D);M[o]=new E(o,1,!1,r,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(r){var o=r.replace(B,D);M[o]=new E(o,1,!1,r,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(r){var o=r.replace(B,D);M[o]=new E(o,1,!1,r,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(r){M[r]=new E(r,1,!1,r.toLowerCase(),null,!1,!1)}),M.xlinkHref=new E("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(r){M[r]=new E(r,1,!1,r.toLowerCase(),null,!0,!0)});function V(r,o,d,v){var y=M.hasOwnProperty(o)?M[o]:null;(y!==null?y.type!==0:v||!(2I||y[k]!==$[I]){var N=` -`+y[k].replace(" at new "," at ");return r.displayName&&N.includes("")&&(N=N.replace("",r.displayName)),N}while(1<=k&&0<=I);break}}}finally{le=!1,Error.prepareStackTrace=d}return(r=r?r.displayName||r.name:"")?ce(r):""}function ue(r){switch(r.tag){case 5:return ce(r.type);case 16:return ce("Lazy");case 13:return ce("Suspense");case 19:return ce("SuspenseList");case 0:case 2:case 15:return r=Y(r.type,!1),r;case 11:return r=Y(r.type.render,!1),r;case 1:return r=Y(r.type,!0),r;default:return""}}function $e(r){if(r==null)return null;if(typeof r=="function")return r.displayName||r.name||null;if(typeof r=="string")return r;switch(r){case oe:return"Fragment";case W:return"Portal";case ne:return"Profiler";case L:return"StrictMode";case G:return"Suspense";case Q:return"SuspenseList"}if(typeof r=="object")switch(r.$$typeof){case q:return(r.displayName||"Context")+".Consumer";case j:return(r._context.displayName||"Context")+".Provider";case xe:var o=r.render;return r=r.displayName,r||(r=o.displayName||o.name||"",r=r!==""?"ForwardRef("+r+")":"ForwardRef"),r;case he:return o=r.displayName||null,o!==null?o:$e(r.type)||"Memo";case Pe:o=r._payload,r=r._init;try{return $e(r(o))}catch{}}return null}function Ee(r){var o=r.type;switch(r.tag){case 24:return"Cache";case 9:return(o.displayName||"Context")+".Consumer";case 10:return(o._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return r=o.render,r=r.displayName||r.name||"",o.displayName||(r!==""?"ForwardRef("+r+")":"ForwardRef");case 7:return"Fragment";case 5:return o;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return $e(o);case 8:return o===L?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof o=="function")return o.displayName||o.name||null;if(typeof o=="string")return o}return null}function Se(r){switch(typeof r){case"boolean":case"number":case"string":case"undefined":return r;case"object":return r;default:return""}}function me(r){var o=r.type;return(r=r.nodeName)&&r.toLowerCase()==="input"&&(o==="checkbox"||o==="radio")}function Be(r){var o=me(r)?"checked":"value",d=Object.getOwnPropertyDescriptor(r.constructor.prototype,o),v=""+r[o];if(!r.hasOwnProperty(o)&&typeof d<"u"&&typeof d.get=="function"&&typeof d.set=="function"){var y=d.get,$=d.set;return Object.defineProperty(r,o,{configurable:!0,get:function(){return y.call(this)},set:function(k){v=""+k,$.call(this,k)}}),Object.defineProperty(r,o,{enumerable:d.enumerable}),{getValue:function(){return v},setValue:function(k){v=""+k},stopTracking:function(){r._valueTracker=null,delete r[o]}}}}function ke(r){r._valueTracker||(r._valueTracker=Be(r))}function je(r){if(!r)return!1;var o=r._valueTracker;if(!o)return!0;var d=o.getValue(),v="";return r&&(v=me(r)?r.checked?"true":"false":r.value),r=v,r!==d?(o.setValue(r),!0):!1}function Ye(r){if(r=r||(typeof document<"u"?document:void 0),typeof r>"u")return null;try{return r.activeElement||r.body}catch{return r.body}}function gt(r,o){var d=o.checked;return ae({},o,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:d??r._wrapperState.initialChecked})}function kt(r,o){var d=o.defaultValue==null?"":o.defaultValue,v=o.checked!=null?o.checked:o.defaultChecked;d=Se(o.value!=null?o.value:d),r._wrapperState={initialChecked:v,initialValue:d,controlled:o.type==="checkbox"||o.type==="radio"?o.checked!=null:o.value!=null}}function lt(r,o){o=o.checked,o!=null&&V(r,"checked",o,!1)}function wt(r,o){lt(r,o);var d=Se(o.value),v=o.type;if(d!=null)v==="number"?(d===0&&r.value===""||r.value!=d)&&(r.value=""+d):r.value!==""+d&&(r.value=""+d);else if(v==="submit"||v==="reset"){r.removeAttribute("value");return}o.hasOwnProperty("value")?at(r,o.type,d):o.hasOwnProperty("defaultValue")&&at(r,o.type,Se(o.defaultValue)),o.checked==null&&o.defaultChecked!=null&&(r.defaultChecked=!!o.defaultChecked)}function rt(r,o,d){if(o.hasOwnProperty("value")||o.hasOwnProperty("defaultValue")){var v=o.type;if(!(v!=="submit"&&v!=="reset"||o.value!==void 0&&o.value!==null))return;o=""+r._wrapperState.initialValue,d||o===r.value||(r.value=o),r.defaultValue=o}d=r.name,d!==""&&(r.name=""),r.defaultChecked=!!r._wrapperState.initialChecked,d!==""&&(r.name=d)}function at(r,o,d){(o!=="number"||Ye(r.ownerDocument)!==r)&&(d==null?r.defaultValue=""+r._wrapperState.initialValue:r.defaultValue!==""+d&&(r.defaultValue=""+d))}var n0=Array.isArray;function yt(r,o,d,v){if(r=r.options,o){o={};for(var y=0;y"+o.valueOf().toString()+"",o=Kt.firstChild;r.firstChild;)r.removeChild(r.firstChild);for(;o.firstChild;)r.appendChild(o.firstChild)}});function W0(r,o){if(o){var d=r.firstChild;if(d&&d===r.lastChild&&d.nodeType===3){d.nodeValue=o;return}}r.textContent=o}var et={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ct=["Webkit","ms","Moz","O"];Object.keys(et).forEach(function(r){ct.forEach(function(o){o=o+r.charAt(0).toUpperCase()+r.substring(1),et[o]=et[r]})});function er(r,o,d){return o==null||typeof o=="boolean"||o===""?"":d||typeof o!="number"||o===0||et.hasOwnProperty(r)&&et[r]?(""+o).trim():o+"px"}function C0(r,o){r=r.style;for(var d in o)if(o.hasOwnProperty(d)){var v=d.indexOf("--")===0,y=er(d,o[d],v);d==="float"&&(d="cssFloat"),v?r.setProperty(d,y):r[d]=y}}var Gr=ae({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function vn(r,o){if(o){if(Gr[r]&&(o.children!=null||o.dangerouslySetInnerHTML!=null))throw Error(n(137,r));if(o.dangerouslySetInnerHTML!=null){if(o.children!=null)throw Error(n(60));if(typeof o.dangerouslySetInnerHTML!="object"||!("__html"in o.dangerouslySetInnerHTML))throw Error(n(61))}if(o.style!=null&&typeof o.style!="object")throw Error(n(62))}}function qr(r,o){if(r.indexOf("-")===-1)return typeof o.is=="string";switch(r){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var eu=null;function tu(r){return r=r.target||r.srcElement||window,r.correspondingUseElement&&(r=r.correspondingUseElement),r.nodeType===3?r.parentNode:r}var nu=null,I2=null,F2=null;function M1(r){if(r=E0(r)){if(typeof nu!="function")throw Error(n(280));var o=r.stateNode;o&&(o=ba(o),nu(r.stateNode,r.type,o))}}function A1(r){I2?F2?F2.push(r):F2=[r]:I2=r}function L1(){if(I2){var r=I2,o=F2;if(F2=I2=null,M1(r),o)for(r=0;r>>=0,r===0?32:31-(H1(r)/j1|0)|0}var ki=64,Ul=4194304;function Ti(r){switch(r&-r){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return r&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return r&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return r}}function O2(r,o){var d=r.pendingLanes;if(d===0)return 0;var v=0,y=r.suspendedLanes,$=r.pingedLanes,k=d&268435455;if(k!==0){var I=k&~y;I!==0?v=Ti(I):($&=k,$!==0&&(v=Ti($)))}else k=d&~y,k!==0?v=Ti(k):$!==0&&(v=Ti($));if(v===0)return 0;if(o!==0&&o!==v&&(o&y)===0&&(y=v&-v,$=o&-o,y>=$||y===16&&($&4194240)!==0))return o;if((v&4)!==0&&(v|=d&16),o=r.entangledLanes,o!==0)for(r=r.entanglements,o&=v;0d;d++)o.push(r);return o}function Fo(r,o,d){r.pendingLanes|=o,o!==536870912&&(r.suspendedLanes=0,r.pingedLanes=0),r=r.eventTimes,o=31-Vn(o),r[o]=d}function W1(r,o){var d=r.pendingLanes&~o;r.pendingLanes=o,r.suspendedLanes=0,r.pingedLanes=0,r.expiredLanes&=o,r.mutableReadLanes&=o,r.entangledLanes&=o,o=r.entanglements;var v=r.eventTimes;for(r=r.expirationTimes;0=Er),ld=" ",ad=!1;function sd(r,o){switch(r){case"keyup":return rn.indexOf(o.keyCode)!==-1;case"keydown":return o.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function ud(r){return r=r.detail,typeof r=="object"&&"data"in r?r.data:null}var Bi=!1;function Vi(r,o){switch(r){case"compositionend":return ud(o);case"keypress":return o.which!==32?null:(ad=!0,ld);case"textInput":return r=o.data,r===ld&&ad?null:r;default:return null}}function h7(r,o){if(Bi)return r==="compositionend"||!jo&&sd(r,o)?(r=hu(),nr=Ho=Bt=null,Bi=!1,r):null;switch(r){case"paste":return null;case"keypress":if(!(o.ctrlKey||o.altKey||o.metaKey)||o.ctrlKey&&o.altKey){if(o.char&&1=o)return{node:d,offset:o-r};r=v}e:{for(;d;){if(d.nextSibling){d=d.nextSibling;break e}d=d.parentNode}d=void 0}d=Ge(d)}}function r0(r,o){return r&&o?r===o?!0:r&&r.nodeType===3?!1:o&&o.nodeType===3?r0(r,o.parentNode):"contains"in r?r.contains(o):r.compareDocumentPosition?!!(r.compareDocumentPosition(o)&16):!1:!1}function Pt(){for(var r=window,o=Ye();o instanceof r.HTMLIFrameElement;){try{var d=typeof o.contentWindow.location.href=="string"}catch{d=!1}if(d)r=o.contentWindow;else break;o=Ye(r.document)}return o}function zo(r){var o=r&&r.nodeName&&r.nodeName.toLowerCase();return o&&(o==="input"&&(r.type==="text"||r.type==="search"||r.type==="tel"||r.type==="url"||r.type==="password")||o==="textarea"||r.contentEditable==="true")}function w7(r){var o=Pt(),d=r.focusedElem,v=r.selectionRange;if(o!==d&&d&&d.ownerDocument&&r0(d.ownerDocument.documentElement,d)){if(v!==null&&zo(d)){if(o=v.start,r=v.end,r===void 0&&(r=o),"selectionStart"in d)d.selectionStart=o,d.selectionEnd=Math.min(r,d.value.length);else if(r=(o=d.ownerDocument||document)&&o.defaultView||window,r.getSelection){r=r.getSelection();var y=d.textContent.length,$=Math.min(v.start,y);v=v.end===void 0?$:Math.min(v.end,y),!r.extend&&$>v&&(y=v,v=$,$=y),y=vt(d,$);var k=vt(d,v);y&&k&&(r.rangeCount!==1||r.anchorNode!==y.node||r.anchorOffset!==y.offset||r.focusNode!==k.node||r.focusOffset!==k.offset)&&(o=o.createRange(),o.setStart(y.node,y.offset),r.removeAllRanges(),$>v?(r.addRange(o),r.extend(k.node,k.offset)):(o.setEnd(k.node,k.offset),r.addRange(o)))}}for(o=[],r=d;r=r.parentNode;)r.nodeType===1&&o.push({element:r,left:r.scrollLeft,top:r.scrollTop});for(typeof d.focus=="function"&&d.focus(),d=0;d=document.documentMode,kr=null,ku=null,rr=null,Fi=!1;function Ko(r,o,d){var v=d.window===d?d.document:d.nodeType===9?d:d.ownerDocument;Fi||kr==null||kr!==Ye(v)||(v=kr,"selectionStart"in v&&zo(v)?v={start:v.selectionStart,end:v.selectionEnd}:(v=(v.ownerDocument&&v.ownerDocument.defaultView||window).getSelection(),v={anchorNode:v.anchorNode,anchorOffset:v.anchorOffset,focusNode:v.focusNode,focusOffset:v.focusOffset}),rr&&Me(rr,v)||(rr=v,v=ha(ku,"onSelect"),0Wi||(r.current=Ru[Wi],Ru[Wi]=null,Wi--)}function Mt(r,o){Wi++,Ru[Wi]=r.current,r.current=o}var a2={},k0=G0(a2),q0=G0(!1),F0=a2;function Ui(r,o){var d=r.type.contextTypes;if(!d)return a2;var v=r.stateNode;if(v&&v.__reactInternalMemoizedUnmaskedChildContext===o)return v.__reactInternalMemoizedMaskedChildContext;var y={},$;for($ in d)y[$]=o[$];return v&&(r=r.stateNode,r.__reactInternalMemoizedUnmaskedChildContext=o,r.__reactInternalMemoizedMaskedChildContext=y),y}function Y0(r){return r=r.childContextTypes,r!=null}function xa(){Lt(q0),Lt(k0)}function bd(r,o,d){if(k0.current!==a2)throw Error(n(168));Mt(k0,o),Mt(q0,d)}function xd(r,o,d){var v=r.stateNode;if(o=o.childContextTypes,typeof v.getChildContext!="function")return d;v=v.getChildContext();for(var y in v)if(!(y in o))throw Error(n(108,Ee(r)||"Unknown",y));return ae({},d,v)}function gn(r){return r=(r=r.stateNode)&&r.__reactInternalMemoizedMergedChildContext||a2,F0=k0.current,Mt(k0,r),Mt(q0,q0.current),!0}function wd(r,o,d){var v=r.stateNode;if(!v)throw Error(n(169));d?(r=xd(r,o,F0),v.__reactInternalMemoizedMergedChildContext=r,Lt(q0),Lt(k0),Mt(k0,r)):Lt(q0),Mt(q0,d)}var Ar=null,wa=!1,Du=!1;function $d(r){Ar===null?Ar=[r]:Ar.push(r)}function G2(r){wa=!0,$d(r)}function s2(){if(!Du&&Ar!==null){Du=!0;var r=0,o=bt;try{var d=Ar;for(bt=1;r>=k,y-=k,lr=1<<32-Vn(o)+y|d<Ke?(m0=Oe,Oe=null):m0=Oe.sibling;var mt=ge(J,Oe,te[Ke],Ce);if(mt===null){Oe===null&&(Oe=m0);break}r&&Oe&&mt.alternate===null&&o(J,Oe),K=$(mt,K,Ke),Ne===null?Ie=mt:Ne.sibling=mt,Ne=mt,Oe=m0}if(Ke===te.length)return d(J,Oe),Rt&&Y2(J,Ke),Ie;if(Oe===null){for(;KeKe?(m0=Oe,Oe=null):m0=Oe.sibling;var x2=ge(J,Oe,mt.value,Ce);if(x2===null){Oe===null&&(Oe=m0);break}r&&Oe&&x2.alternate===null&&o(J,Oe),K=$(x2,K,Ke),Ne===null?Ie=x2:Ne.sibling=x2,Ne=x2,Oe=m0}if(mt.done)return d(J,Oe),Rt&&Y2(J,Ke),Ie;if(Oe===null){for(;!mt.done;Ke++,mt=te.next())mt=we(J,mt.value,Ce),mt!==null&&(K=$(mt,K,Ke),Ne===null?Ie=mt:Ne.sibling=mt,Ne=mt);return Rt&&Y2(J,Ke),Ie}for(Oe=v(J,Oe);!mt.done;Ke++,mt=te.next())mt=Ae(Oe,J,Ke,mt.value,Ce),mt!==null&&(r&&mt.alternate!==null&&Oe.delete(mt.key===null?Ke:mt.key),K=$(mt,K,Ke),Ne===null?Ie=mt:Ne.sibling=mt,Ne=mt);return r&&Oe.forEach(function(j7){return o(J,j7)}),Rt&&Y2(J,Ke),Ie}function Qt(J,K,te,Ce){if(typeof te=="object"&&te!==null&&te.type===oe&&te.key===null&&(te=te.props.children),typeof te=="object"&&te!==null){switch(te.$$typeof){case O:e:{for(var Ie=te.key,Ne=K;Ne!==null;){if(Ne.key===Ie){if(Ie=te.type,Ie===oe){if(Ne.tag===7){d(J,Ne.sibling),K=y(Ne,te.props.children),K.return=J,J=K;break e}}else if(Ne.elementType===Ie||typeof Ie=="object"&&Ie!==null&&Ie.$$typeof===Pe&&_d(Ie)===Ne.type){d(J,Ne.sibling),K=y(Ne,te.props),K.ref=nl(J,Ne,te),K.return=J,J=K;break e}d(J,Ne);break}else o(J,Ne);Ne=Ne.sibling}te.type===oe?(K=ui(te.props.children,J.mode,Ce,te.key),K.return=J,J=K):(Ce=os(te.type,te.key,te.props,null,J.mode,Ce),Ce.ref=nl(J,K,te),Ce.return=J,J=Ce)}return k(J);case W:e:{for(Ne=te.key;K!==null;){if(K.key===Ne)if(K.tag===4&&K.stateNode.containerInfo===te.containerInfo&&K.stateNode.implementation===te.implementation){d(J,K.sibling),K=y(K,te.children||[]),K.return=J,J=K;break e}else{d(J,K);break}else o(J,K);K=K.sibling}K=Sc(te,J.mode,Ce),K.return=J,J=K}return k(J);case Pe:return Ne=te._init,Qt(J,K,Ne(te._payload),Ce)}if(n0(te))return De(J,K,te,Ce);if(_e(te))return Ve(J,K,te,Ce);Q2(J,te)}return typeof te=="string"&&te!==""||typeof te=="number"?(te=""+te,K!==null&&K.tag===6?(d(J,K.sibling),K=y(K,te),K.return=J,J=K):(d(J,K),K=$c(te,J.mode,Ce),K.return=J,J=K),k(J)):d(J,K)}return Qt}var Wt=Vu(!0),Pa=Vu(!1),rl=G0(null),sn=null,u2=null,qi=null;function Rr(){qi=u2=sn=null}function _a(r){var o=rl.current;Lt(rl),r._currentValue=o}function b0(r,o,d){for(;r!==null;){var v=r.alternate;if((r.childLanes&o)!==o?(r.childLanes|=o,v!==null&&(v.childLanes|=o)):v!==null&&(v.childLanes&o)!==o&&(v.childLanes|=o),r===d)break;r=r.return}}function c2(r,o){sn=r,qi=u2=null,r=r.dependencies,r!==null&&r.firstContext!==null&&((r.lanes&o)!==0&&(O0=!0),r.firstContext=null)}function xn(r){var o=r._currentValue;if(qi!==r)if(r={context:r,memoizedValue:o,next:null},u2===null){if(sn===null)throw Error(n(308));u2=r,sn.dependencies={lanes:0,firstContext:r}}else u2=u2.next=r;return o}var J2=null;function Iu(r){J2===null?J2=[r]:J2.push(r)}function Ea(r,o,d,v){var y=o.interleaved;return y===null?(d.next=d,Iu(o)):(d.next=y.next,y.next=d),o.interleaved=d,Dr(r,v)}function Dr(r,o){r.lanes|=o;var d=r.alternate;for(d!==null&&(d.lanes|=o),d=r,r=r.return;r!==null;)r.childLanes|=o,d=r.alternate,d!==null&&(d.childLanes|=o),d=r,r=r.return;return d.tag===3?d.stateNode:null}var wn=!1;function ka(r){r.updateQueue={baseState:r.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Ed(r,o){r=r.updateQueue,o.updateQueue===r&&(o.updateQueue={baseState:r.baseState,firstBaseUpdate:r.firstBaseUpdate,lastBaseUpdate:r.lastBaseUpdate,shared:r.shared,effects:r.effects})}function Br(r,o){return{eventTime:r,lane:o,tag:0,payload:null,callback:null,next:null}}function $n(r,o,d){var v=r.updateQueue;if(v===null)return null;if(v=v.shared,(ft&2)!==0){var y=v.pending;return y===null?o.next=o:(o.next=y.next,y.next=o),v.pending=o,Dr(r,d)}return y=v.interleaved,y===null?(o.next=o,Iu(v)):(o.next=y.next,y.next=o),v.interleaved=o,Dr(r,d)}function Ta(r,o,d){if(o=o.updateQueue,o!==null&&(o=o.shared,(d&4194240)!==0)){var v=o.lanes;v&=r.pendingLanes,d|=v,o.lanes=d,Zo(r,d)}}function kd(r,o){var d=r.updateQueue,v=r.alternate;if(v!==null&&(v=v.updateQueue,d===v)){var y=null,$=null;if(d=d.firstBaseUpdate,d!==null){do{var k={eventTime:d.eventTime,lane:d.lane,tag:d.tag,payload:d.payload,callback:d.callback,next:null};$===null?y=$=k:$=$.next=k,d=d.next}while(d!==null);$===null?y=$=o:$=$.next=o}else y=$=o;d={baseState:v.baseState,firstBaseUpdate:y,lastBaseUpdate:$,shared:v.shared,effects:v.effects},r.updateQueue=d;return}r=d.lastBaseUpdate,r===null?d.firstBaseUpdate=o:r.next=o,d.lastBaseUpdate=o}function Yi(r,o,d,v){var y=r.updateQueue;wn=!1;var $=y.firstBaseUpdate,k=y.lastBaseUpdate,I=y.shared.pending;if(I!==null){y.shared.pending=null;var N=I,ie=N.next;N.next=null,k===null?$=ie:k.next=ie,k=N;var ye=r.alternate;ye!==null&&(ye=ye.updateQueue,I=ye.lastBaseUpdate,I!==k&&(I===null?ye.firstBaseUpdate=ie:I.next=ie,ye.lastBaseUpdate=N))}if($!==null){var we=y.baseState;k=0,ye=ie=N=null,I=$;do{var ge=I.lane,Ae=I.eventTime;if((v&ge)===ge){ye!==null&&(ye=ye.next={eventTime:Ae,lane:0,tag:I.tag,payload:I.payload,callback:I.callback,next:null});e:{var De=r,Ve=I;switch(ge=o,Ae=d,Ve.tag){case 1:if(De=Ve.payload,typeof De=="function"){we=De.call(Ae,we,ge);break e}we=De;break e;case 3:De.flags=De.flags&-65537|128;case 0:if(De=Ve.payload,ge=typeof De=="function"?De.call(Ae,we,ge):De,ge==null)break e;we=ae({},we,ge);break e;case 2:wn=!0}}I.callback!==null&&I.lane!==0&&(r.flags|=64,ge=y.effects,ge===null?y.effects=[I]:ge.push(I))}else Ae={eventTime:Ae,lane:ge,tag:I.tag,payload:I.payload,callback:I.callback,next:null},ye===null?(ie=ye=Ae,N=we):ye=ye.next=Ae,k|=ge;if(I=I.next,I===null){if(I=y.shared.pending,I===null)break;ge=I,I=ge.next,ge.next=null,y.lastBaseUpdate=ge,y.shared.pending=null}}while(!0);if(ye===null&&(N=we),y.baseState=N,y.firstBaseUpdate=ie,y.lastBaseUpdate=ye,o=y.shared.interleaved,o!==null){y=o;do k|=y.lane,y=y.next;while(y!==o)}else $===null&&(y.shared.lanes=0);h2|=k,r.lanes=k,r.memoizedState=we}}function Fu(r,o,d){if(r=o.effects,o.effects=null,r!==null)for(o=0;od?d:4,r(!0);var v=Hu.transition;Hu.transition={};try{r(!1),o()}finally{bt=d,Hu.transition=v}}function Yu(){return Sn().memoizedState}function S7(r,o,d){var v=y2(r);if(d={lane:v,action:d,hasEagerState:!1,eagerState:null,next:null},Xu(r))Z0(o,d);else if(d=Ea(r,o,d,v),d!==null){var y=j0();zn(d,r,v,y),Zn(d,o,v)}}function Dd(r,o,d){var v=y2(r),y={lane:v,action:d,hasEagerState:!1,eagerState:null,next:null};if(Xu(r))Z0(o,y);else{var $=r.alternate;if(r.lanes===0&&($===null||$.lanes===0)&&($=o.lastRenderedReducer,$!==null))try{var k=o.lastRenderedState,I=$(k,d);if(y.hasEagerState=!0,y.eagerState=I,re(I,k)){var N=o.interleaved;N===null?(y.next=y,Iu(o)):(y.next=N.next,N.next=y),o.interleaved=y;return}}catch{}finally{}d=Ea(r,o,y,v),d!==null&&(y=j0(),zn(d,r,v,y),Zn(d,o,v))}}function Xu(r){var o=r.alternate;return r===Nt||o!==null&&o===Nt}function Z0(r,o){al=Qi=!0;var d=r.pending;d===null?o.next=o:(o.next=d.next,d.next=o),r.pending=o}function Zn(r,o,d){if((d&4194240)!==0){var v=o.lanes;v&=r.pendingLanes,d|=v,o.lanes=d,Zo(r,d)}}var Ia={readContext:xn,useCallback:A0,useContext:A0,useEffect:A0,useImperativeHandle:A0,useInsertionEffect:A0,useLayoutEffect:A0,useMemo:A0,useReducer:A0,useRef:A0,useState:A0,useDebugValue:A0,useDeferredValue:A0,useTransition:A0,useMutableSource:A0,useSyncExternalStore:A0,useId:A0,unstable_isNewReconciler:!1},C7={readContext:xn,useCallback:function(r,o){return fr().memoizedState=[r,o===void 0?null:o],r},useContext:xn,useEffect:Va,useImperativeHandle:function(r,o,d){return d=d!=null?d.concat([r]):null,ul(4194308,4,Gu.bind(null,o,r),d)},useLayoutEffect:function(r,o){return ul(4194308,4,r,o)},useInsertionEffect:function(r,o){return ul(4,2,r,o)},useMemo:function(r,o){var d=fr();return o=o===void 0?null:o,r=r(),d.memoizedState=[r,o],r},useReducer:function(r,o,d){var v=fr();return o=d!==void 0?d(o):o,v.memoizedState=v.baseState=o,r={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:r,lastRenderedState:o},v.queue=r,r=r.dispatch=S7.bind(null,Nt,r),[v.memoizedState,r]},useRef:function(r){var o=fr();return r={current:r},o.memoizedState=r},useState:sl,useDebugValue:cl,useDeferredValue:function(r){return fr().memoizedState=r},useTransition:function(){var r=sl(!1),o=r[0];return r=Rd.bind(null,r[1]),fr().memoizedState=r,[o,r]},useMutableSource:function(){},useSyncExternalStore:function(r,o,d){var v=Nt,y=fr();if(Rt){if(d===void 0)throw Error(n(407));d=d()}else{if(d=o(),h0===null)throw Error(n(349));(f2&30)!==0||Wu(v,o,d)}y.memoizedState=d;var $={value:d,getSnapshot:o};return y.queue=$,Va(Ir.bind(null,v,$,r),[r]),v.flags|=2048,eo(9,Q0.bind(null,v,$,d,o),void 0,null),d},useId:function(){var r=fr(),o=h0.identifierPrefix;if(Rt){var d=ar,v=lr;d=(v&~(1<<32-Vn(v)-1)).toString(32)+d,o=":"+o+"R"+d,d=ti++,0")&&(N=N.replace("",r.displayName)),N}while(1<=k&&0<=I);break}}}finally{le=!1,Error.prepareStackTrace=d}return(r=r?r.displayName||r.name:"")?ce(r):""}function ue(r){switch(r.tag){case 5:return ce(r.type);case 16:return ce("Lazy");case 13:return ce("Suspense");case 19:return ce("SuspenseList");case 0:case 2:case 15:return r=Y(r.type,!1),r;case 11:return r=Y(r.type.render,!1),r;case 1:return r=Y(r.type,!0),r;default:return""}}function $e(r){if(r==null)return null;if(typeof r=="function")return r.displayName||r.name||null;if(typeof r=="string")return r;switch(r){case oe:return"Fragment";case W:return"Portal";case ne:return"Profiler";case L:return"StrictMode";case G:return"Suspense";case Q:return"SuspenseList"}if(typeof r=="object")switch(r.$$typeof){case q:return(r.displayName||"Context")+".Consumer";case j:return(r._context.displayName||"Context")+".Provider";case xe:var o=r.render;return r=r.displayName,r||(r=o.displayName||o.name||"",r=r!==""?"ForwardRef("+r+")":"ForwardRef"),r;case he:return o=r.displayName||null,o!==null?o:$e(r.type)||"Memo";case Pe:o=r._payload,r=r._init;try{return $e(r(o))}catch{}}return null}function Ee(r){var o=r.type;switch(r.tag){case 24:return"Cache";case 9:return(o.displayName||"Context")+".Consumer";case 10:return(o._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return r=o.render,r=r.displayName||r.name||"",o.displayName||(r!==""?"ForwardRef("+r+")":"ForwardRef");case 7:return"Fragment";case 5:return o;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return $e(o);case 8:return o===L?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof o=="function")return o.displayName||o.name||null;if(typeof o=="string")return o}return null}function Se(r){switch(typeof r){case"boolean":case"number":case"string":case"undefined":return r;case"object":return r;default:return""}}function me(r){var o=r.type;return(r=r.nodeName)&&r.toLowerCase()==="input"&&(o==="checkbox"||o==="radio")}function Be(r){var o=me(r)?"checked":"value",d=Object.getOwnPropertyDescriptor(r.constructor.prototype,o),v=""+r[o];if(!r.hasOwnProperty(o)&&typeof d<"u"&&typeof d.get=="function"&&typeof d.set=="function"){var y=d.get,$=d.set;return Object.defineProperty(r,o,{configurable:!0,get:function(){return y.call(this)},set:function(k){v=""+k,$.call(this,k)}}),Object.defineProperty(r,o,{enumerable:d.enumerable}),{getValue:function(){return v},setValue:function(k){v=""+k},stopTracking:function(){r._valueTracker=null,delete r[o]}}}}function ke(r){r._valueTracker||(r._valueTracker=Be(r))}function je(r){if(!r)return!1;var o=r._valueTracker;if(!o)return!0;var d=o.getValue(),v="";return r&&(v=me(r)?r.checked?"true":"false":r.value),r=v,r!==d?(o.setValue(r),!0):!1}function Ye(r){if(r=r||(typeof document<"u"?document:void 0),typeof r>"u")return null;try{return r.activeElement||r.body}catch{return r.body}}function gt(r,o){var d=o.checked;return ae({},o,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:d??r._wrapperState.initialChecked})}function kt(r,o){var d=o.defaultValue==null?"":o.defaultValue,v=o.checked!=null?o.checked:o.defaultChecked;d=Se(o.value!=null?o.value:d),r._wrapperState={initialChecked:v,initialValue:d,controlled:o.type==="checkbox"||o.type==="radio"?o.checked!=null:o.value!=null}}function lt(r,o){o=o.checked,o!=null&&V(r,"checked",o,!1)}function wt(r,o){lt(r,o);var d=Se(o.value),v=o.type;if(d!=null)v==="number"?(d===0&&r.value===""||r.value!=d)&&(r.value=""+d):r.value!==""+d&&(r.value=""+d);else if(v==="submit"||v==="reset"){r.removeAttribute("value");return}o.hasOwnProperty("value")?at(r,o.type,d):o.hasOwnProperty("defaultValue")&&at(r,o.type,Se(o.defaultValue)),o.checked==null&&o.defaultChecked!=null&&(r.defaultChecked=!!o.defaultChecked)}function rt(r,o,d){if(o.hasOwnProperty("value")||o.hasOwnProperty("defaultValue")){var v=o.type;if(!(v!=="submit"&&v!=="reset"||o.value!==void 0&&o.value!==null))return;o=""+r._wrapperState.initialValue,d||o===r.value||(r.value=o),r.defaultValue=o}d=r.name,d!==""&&(r.name=""),r.defaultChecked=!!r._wrapperState.initialChecked,d!==""&&(r.name=d)}function at(r,o,d){(o!=="number"||Ye(r.ownerDocument)!==r)&&(d==null?r.defaultValue=""+r._wrapperState.initialValue:r.defaultValue!==""+d&&(r.defaultValue=""+d))}var n0=Array.isArray;function yt(r,o,d,v){if(r=r.options,o){o={};for(var y=0;y"+o.valueOf().toString()+"",o=Kt.firstChild;r.firstChild;)r.removeChild(r.firstChild);for(;o.firstChild;)r.appendChild(o.firstChild)}});function W0(r,o){if(o){var d=r.firstChild;if(d&&d===r.lastChild&&d.nodeType===3){d.nodeValue=o;return}}r.textContent=o}var et={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ct=["Webkit","ms","Moz","O"];Object.keys(et).forEach(function(r){ct.forEach(function(o){o=o+r.charAt(0).toUpperCase()+r.substring(1),et[o]=et[r]})});function er(r,o,d){return o==null||typeof o=="boolean"||o===""?"":d||typeof o!="number"||o===0||et.hasOwnProperty(r)&&et[r]?(""+o).trim():o+"px"}function C0(r,o){r=r.style;for(var d in o)if(o.hasOwnProperty(d)){var v=d.indexOf("--")===0,y=er(d,o[d],v);d==="float"&&(d="cssFloat"),v?r.setProperty(d,y):r[d]=y}}var Gr=ae({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function vn(r,o){if(o){if(Gr[r]&&(o.children!=null||o.dangerouslySetInnerHTML!=null))throw Error(n(137,r));if(o.dangerouslySetInnerHTML!=null){if(o.children!=null)throw Error(n(60));if(typeof o.dangerouslySetInnerHTML!="object"||!("__html"in o.dangerouslySetInnerHTML))throw Error(n(61))}if(o.style!=null&&typeof o.style!="object")throw Error(n(62))}}function qr(r,o){if(r.indexOf("-")===-1)return typeof o.is=="string";switch(r){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var eu=null;function tu(r){return r=r.target||r.srcElement||window,r.correspondingUseElement&&(r=r.correspondingUseElement),r.nodeType===3?r.parentNode:r}var nu=null,I2=null,F2=null;function A1(r){if(r=E0(r)){if(typeof nu!="function")throw Error(n(280));var o=r.stateNode;o&&(o=ba(o),nu(r.stateNode,r.type,o))}}function L1(r){I2?F2?F2.push(r):F2=[r]:I2=r}function R1(){if(I2){var r=I2,o=F2;if(F2=I2=null,A1(r),o)for(r=0;r>>=0,r===0?32:31-(j1(r)/z1|0)|0}var ki=64,Ul=4194304;function Ti(r){switch(r&-r){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return r&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return r&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return r}}function O2(r,o){var d=r.pendingLanes;if(d===0)return 0;var v=0,y=r.suspendedLanes,$=r.pingedLanes,k=d&268435455;if(k!==0){var I=k&~y;I!==0?v=Ti(I):($&=k,$!==0&&(v=Ti($)))}else k=d&~y,k!==0?v=Ti(k):$!==0&&(v=Ti($));if(v===0)return 0;if(o!==0&&o!==v&&(o&y)===0&&(y=v&-v,$=o&-o,y>=$||y===16&&($&4194240)!==0))return o;if((v&4)!==0&&(v|=d&16),o=r.entangledLanes,o!==0)for(r=r.entanglements,o&=v;0d;d++)o.push(r);return o}function Fo(r,o,d){r.pendingLanes|=o,o!==536870912&&(r.suspendedLanes=0,r.pingedLanes=0),r=r.eventTimes,o=31-Vn(o),r[o]=d}function U1(r,o){var d=r.pendingLanes&~o;r.pendingLanes=o,r.suspendedLanes=0,r.pingedLanes=0,r.expiredLanes&=o,r.mutableReadLanes&=o,r.entangledLanes&=o,o=r.entanglements;var v=r.eventTimes;for(r=r.expirationTimes;0=Er),ad=" ",sd=!1;function ud(r,o){switch(r){case"keyup":return rn.indexOf(o.keyCode)!==-1;case"keydown":return o.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function cd(r){return r=r.detail,typeof r=="object"&&"data"in r?r.data:null}var Bi=!1;function Vi(r,o){switch(r){case"compositionend":return cd(o);case"keypress":return o.which!==32?null:(sd=!0,ad);case"textInput":return r=o.data,r===ad&&sd?null:r;default:return null}}function h7(r,o){if(Bi)return r==="compositionend"||!jo&&ud(r,o)?(r=hu(),nr=Ho=Bt=null,Bi=!1,r):null;switch(r){case"paste":return null;case"keypress":if(!(o.ctrlKey||o.altKey||o.metaKey)||o.ctrlKey&&o.altKey){if(o.char&&1=o)return{node:d,offset:o-r};r=v}e:{for(;d;){if(d.nextSibling){d=d.nextSibling;break e}d=d.parentNode}d=void 0}d=Ge(d)}}function r0(r,o){return r&&o?r===o?!0:r&&r.nodeType===3?!1:o&&o.nodeType===3?r0(r,o.parentNode):"contains"in r?r.contains(o):r.compareDocumentPosition?!!(r.compareDocumentPosition(o)&16):!1:!1}function Pt(){for(var r=window,o=Ye();o instanceof r.HTMLIFrameElement;){try{var d=typeof o.contentWindow.location.href=="string"}catch{d=!1}if(d)r=o.contentWindow;else break;o=Ye(r.document)}return o}function zo(r){var o=r&&r.nodeName&&r.nodeName.toLowerCase();return o&&(o==="input"&&(r.type==="text"||r.type==="search"||r.type==="tel"||r.type==="url"||r.type==="password")||o==="textarea"||r.contentEditable==="true")}function w7(r){var o=Pt(),d=r.focusedElem,v=r.selectionRange;if(o!==d&&d&&d.ownerDocument&&r0(d.ownerDocument.documentElement,d)){if(v!==null&&zo(d)){if(o=v.start,r=v.end,r===void 0&&(r=o),"selectionStart"in d)d.selectionStart=o,d.selectionEnd=Math.min(r,d.value.length);else if(r=(o=d.ownerDocument||document)&&o.defaultView||window,r.getSelection){r=r.getSelection();var y=d.textContent.length,$=Math.min(v.start,y);v=v.end===void 0?$:Math.min(v.end,y),!r.extend&&$>v&&(y=v,v=$,$=y),y=vt(d,$);var k=vt(d,v);y&&k&&(r.rangeCount!==1||r.anchorNode!==y.node||r.anchorOffset!==y.offset||r.focusNode!==k.node||r.focusOffset!==k.offset)&&(o=o.createRange(),o.setStart(y.node,y.offset),r.removeAllRanges(),$>v?(r.addRange(o),r.extend(k.node,k.offset)):(o.setEnd(k.node,k.offset),r.addRange(o)))}}for(o=[],r=d;r=r.parentNode;)r.nodeType===1&&o.push({element:r,left:r.scrollLeft,top:r.scrollTop});for(typeof d.focus=="function"&&d.focus(),d=0;d=document.documentMode,kr=null,ku=null,rr=null,Fi=!1;function Ko(r,o,d){var v=d.window===d?d.document:d.nodeType===9?d:d.ownerDocument;Fi||kr==null||kr!==Ye(v)||(v=kr,"selectionStart"in v&&zo(v)?v={start:v.selectionStart,end:v.selectionEnd}:(v=(v.ownerDocument&&v.ownerDocument.defaultView||window).getSelection(),v={anchorNode:v.anchorNode,anchorOffset:v.anchorOffset,focusNode:v.focusNode,focusOffset:v.focusOffset}),rr&&Me(rr,v)||(rr=v,v=ha(ku,"onSelect"),0Wi||(r.current=Ru[Wi],Ru[Wi]=null,Wi--)}function Mt(r,o){Wi++,Ru[Wi]=r.current,r.current=o}var a2={},k0=G0(a2),q0=G0(!1),F0=a2;function Ui(r,o){var d=r.type.contextTypes;if(!d)return a2;var v=r.stateNode;if(v&&v.__reactInternalMemoizedUnmaskedChildContext===o)return v.__reactInternalMemoizedMaskedChildContext;var y={},$;for($ in d)y[$]=o[$];return v&&(r=r.stateNode,r.__reactInternalMemoizedUnmaskedChildContext=o,r.__reactInternalMemoizedMaskedChildContext=y),y}function Y0(r){return r=r.childContextTypes,r!=null}function xa(){Lt(q0),Lt(k0)}function xd(r,o,d){if(k0.current!==a2)throw Error(n(168));Mt(k0,o),Mt(q0,d)}function wd(r,o,d){var v=r.stateNode;if(o=o.childContextTypes,typeof v.getChildContext!="function")return d;v=v.getChildContext();for(var y in v)if(!(y in o))throw Error(n(108,Ee(r)||"Unknown",y));return ae({},d,v)}function gn(r){return r=(r=r.stateNode)&&r.__reactInternalMemoizedMergedChildContext||a2,F0=k0.current,Mt(k0,r),Mt(q0,q0.current),!0}function $d(r,o,d){var v=r.stateNode;if(!v)throw Error(n(169));d?(r=wd(r,o,F0),v.__reactInternalMemoizedMergedChildContext=r,Lt(q0),Lt(k0),Mt(k0,r)):Lt(q0),Mt(q0,d)}var Ar=null,wa=!1,Du=!1;function Sd(r){Ar===null?Ar=[r]:Ar.push(r)}function G2(r){wa=!0,Sd(r)}function s2(){if(!Du&&Ar!==null){Du=!0;var r=0,o=bt;try{var d=Ar;for(bt=1;r>=k,y-=k,lr=1<<32-Vn(o)+y|d<Ke?(m0=Oe,Oe=null):m0=Oe.sibling;var mt=ge(J,Oe,te[Ke],Ce);if(mt===null){Oe===null&&(Oe=m0);break}r&&Oe&&mt.alternate===null&&o(J,Oe),K=$(mt,K,Ke),Ne===null?Ie=mt:Ne.sibling=mt,Ne=mt,Oe=m0}if(Ke===te.length)return d(J,Oe),Rt&&Y2(J,Ke),Ie;if(Oe===null){for(;KeKe?(m0=Oe,Oe=null):m0=Oe.sibling;var x2=ge(J,Oe,mt.value,Ce);if(x2===null){Oe===null&&(Oe=m0);break}r&&Oe&&x2.alternate===null&&o(J,Oe),K=$(x2,K,Ke),Ne===null?Ie=x2:Ne.sibling=x2,Ne=x2,Oe=m0}if(mt.done)return d(J,Oe),Rt&&Y2(J,Ke),Ie;if(Oe===null){for(;!mt.done;Ke++,mt=te.next())mt=we(J,mt.value,Ce),mt!==null&&(K=$(mt,K,Ke),Ne===null?Ie=mt:Ne.sibling=mt,Ne=mt);return Rt&&Y2(J,Ke),Ie}for(Oe=v(J,Oe);!mt.done;Ke++,mt=te.next())mt=Ae(Oe,J,Ke,mt.value,Ce),mt!==null&&(r&&mt.alternate!==null&&Oe.delete(mt.key===null?Ke:mt.key),K=$(mt,K,Ke),Ne===null?Ie=mt:Ne.sibling=mt,Ne=mt);return r&&Oe.forEach(function(j7){return o(J,j7)}),Rt&&Y2(J,Ke),Ie}function Qt(J,K,te,Ce){if(typeof te=="object"&&te!==null&&te.type===oe&&te.key===null&&(te=te.props.children),typeof te=="object"&&te!==null){switch(te.$$typeof){case O:e:{for(var Ie=te.key,Ne=K;Ne!==null;){if(Ne.key===Ie){if(Ie=te.type,Ie===oe){if(Ne.tag===7){d(J,Ne.sibling),K=y(Ne,te.props.children),K.return=J,J=K;break e}}else if(Ne.elementType===Ie||typeof Ie=="object"&&Ie!==null&&Ie.$$typeof===Pe&&Ed(Ie)===Ne.type){d(J,Ne.sibling),K=y(Ne,te.props),K.ref=nl(J,Ne,te),K.return=J,J=K;break e}d(J,Ne);break}else o(J,Ne);Ne=Ne.sibling}te.type===oe?(K=ui(te.props.children,J.mode,Ce,te.key),K.return=J,J=K):(Ce=os(te.type,te.key,te.props,null,J.mode,Ce),Ce.ref=nl(J,K,te),Ce.return=J,J=Ce)}return k(J);case W:e:{for(Ne=te.key;K!==null;){if(K.key===Ne)if(K.tag===4&&K.stateNode.containerInfo===te.containerInfo&&K.stateNode.implementation===te.implementation){d(J,K.sibling),K=y(K,te.children||[]),K.return=J,J=K;break e}else{d(J,K);break}else o(J,K);K=K.sibling}K=Sc(te,J.mode,Ce),K.return=J,J=K}return k(J);case Pe:return Ne=te._init,Qt(J,K,Ne(te._payload),Ce)}if(n0(te))return De(J,K,te,Ce);if(_e(te))return Ve(J,K,te,Ce);Q2(J,te)}return typeof te=="string"&&te!==""||typeof te=="number"?(te=""+te,K!==null&&K.tag===6?(d(J,K.sibling),K=y(K,te),K.return=J,J=K):(d(J,K),K=$c(te,J.mode,Ce),K.return=J,J=K),k(J)):d(J,K)}return Qt}var Wt=Vu(!0),Pa=Vu(!1),rl=G0(null),sn=null,u2=null,qi=null;function Rr(){qi=u2=sn=null}function _a(r){var o=rl.current;Lt(rl),r._currentValue=o}function b0(r,o,d){for(;r!==null;){var v=r.alternate;if((r.childLanes&o)!==o?(r.childLanes|=o,v!==null&&(v.childLanes|=o)):v!==null&&(v.childLanes&o)!==o&&(v.childLanes|=o),r===d)break;r=r.return}}function c2(r,o){sn=r,qi=u2=null,r=r.dependencies,r!==null&&r.firstContext!==null&&((r.lanes&o)!==0&&(O0=!0),r.firstContext=null)}function xn(r){var o=r._currentValue;if(qi!==r)if(r={context:r,memoizedValue:o,next:null},u2===null){if(sn===null)throw Error(n(308));u2=r,sn.dependencies={lanes:0,firstContext:r}}else u2=u2.next=r;return o}var J2=null;function Iu(r){J2===null?J2=[r]:J2.push(r)}function Ea(r,o,d,v){var y=o.interleaved;return y===null?(d.next=d,Iu(o)):(d.next=y.next,y.next=d),o.interleaved=d,Dr(r,v)}function Dr(r,o){r.lanes|=o;var d=r.alternate;for(d!==null&&(d.lanes|=o),d=r,r=r.return;r!==null;)r.childLanes|=o,d=r.alternate,d!==null&&(d.childLanes|=o),d=r,r=r.return;return d.tag===3?d.stateNode:null}var wn=!1;function ka(r){r.updateQueue={baseState:r.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function kd(r,o){r=r.updateQueue,o.updateQueue===r&&(o.updateQueue={baseState:r.baseState,firstBaseUpdate:r.firstBaseUpdate,lastBaseUpdate:r.lastBaseUpdate,shared:r.shared,effects:r.effects})}function Br(r,o){return{eventTime:r,lane:o,tag:0,payload:null,callback:null,next:null}}function $n(r,o,d){var v=r.updateQueue;if(v===null)return null;if(v=v.shared,(ft&2)!==0){var y=v.pending;return y===null?o.next=o:(o.next=y.next,y.next=o),v.pending=o,Dr(r,d)}return y=v.interleaved,y===null?(o.next=o,Iu(v)):(o.next=y.next,y.next=o),v.interleaved=o,Dr(r,d)}function Ta(r,o,d){if(o=o.updateQueue,o!==null&&(o=o.shared,(d&4194240)!==0)){var v=o.lanes;v&=r.pendingLanes,d|=v,o.lanes=d,Zo(r,d)}}function Td(r,o){var d=r.updateQueue,v=r.alternate;if(v!==null&&(v=v.updateQueue,d===v)){var y=null,$=null;if(d=d.firstBaseUpdate,d!==null){do{var k={eventTime:d.eventTime,lane:d.lane,tag:d.tag,payload:d.payload,callback:d.callback,next:null};$===null?y=$=k:$=$.next=k,d=d.next}while(d!==null);$===null?y=$=o:$=$.next=o}else y=$=o;d={baseState:v.baseState,firstBaseUpdate:y,lastBaseUpdate:$,shared:v.shared,effects:v.effects},r.updateQueue=d;return}r=d.lastBaseUpdate,r===null?d.firstBaseUpdate=o:r.next=o,d.lastBaseUpdate=o}function Yi(r,o,d,v){var y=r.updateQueue;wn=!1;var $=y.firstBaseUpdate,k=y.lastBaseUpdate,I=y.shared.pending;if(I!==null){y.shared.pending=null;var N=I,ie=N.next;N.next=null,k===null?$=ie:k.next=ie,k=N;var ye=r.alternate;ye!==null&&(ye=ye.updateQueue,I=ye.lastBaseUpdate,I!==k&&(I===null?ye.firstBaseUpdate=ie:I.next=ie,ye.lastBaseUpdate=N))}if($!==null){var we=y.baseState;k=0,ye=ie=N=null,I=$;do{var ge=I.lane,Ae=I.eventTime;if((v&ge)===ge){ye!==null&&(ye=ye.next={eventTime:Ae,lane:0,tag:I.tag,payload:I.payload,callback:I.callback,next:null});e:{var De=r,Ve=I;switch(ge=o,Ae=d,Ve.tag){case 1:if(De=Ve.payload,typeof De=="function"){we=De.call(Ae,we,ge);break e}we=De;break e;case 3:De.flags=De.flags&-65537|128;case 0:if(De=Ve.payload,ge=typeof De=="function"?De.call(Ae,we,ge):De,ge==null)break e;we=ae({},we,ge);break e;case 2:wn=!0}}I.callback!==null&&I.lane!==0&&(r.flags|=64,ge=y.effects,ge===null?y.effects=[I]:ge.push(I))}else Ae={eventTime:Ae,lane:ge,tag:I.tag,payload:I.payload,callback:I.callback,next:null},ye===null?(ie=ye=Ae,N=we):ye=ye.next=Ae,k|=ge;if(I=I.next,I===null){if(I=y.shared.pending,I===null)break;ge=I,I=ge.next,ge.next=null,y.lastBaseUpdate=ge,y.shared.pending=null}}while(!0);if(ye===null&&(N=we),y.baseState=N,y.firstBaseUpdate=ie,y.lastBaseUpdate=ye,o=y.shared.interleaved,o!==null){y=o;do k|=y.lane,y=y.next;while(y!==o)}else $===null&&(y.shared.lanes=0);h2|=k,r.lanes=k,r.memoizedState=we}}function Fu(r,o,d){if(r=o.effects,o.effects=null,r!==null)for(o=0;od?d:4,r(!0);var v=Hu.transition;Hu.transition={};try{r(!1),o()}finally{bt=d,Hu.transition=v}}function Yu(){return Sn().memoizedState}function S7(r,o,d){var v=y2(r);if(d={lane:v,action:d,hasEagerState:!1,eagerState:null,next:null},Xu(r))Z0(o,d);else if(d=Ea(r,o,d,v),d!==null){var y=j0();zn(d,r,v,y),Zn(d,o,v)}}function Bd(r,o,d){var v=y2(r),y={lane:v,action:d,hasEagerState:!1,eagerState:null,next:null};if(Xu(r))Z0(o,y);else{var $=r.alternate;if(r.lanes===0&&($===null||$.lanes===0)&&($=o.lastRenderedReducer,$!==null))try{var k=o.lastRenderedState,I=$(k,d);if(y.hasEagerState=!0,y.eagerState=I,re(I,k)){var N=o.interleaved;N===null?(y.next=y,Iu(o)):(y.next=N.next,N.next=y),o.interleaved=y;return}}catch{}finally{}d=Ea(r,o,y,v),d!==null&&(y=j0(),zn(d,r,v,y),Zn(d,o,v))}}function Xu(r){var o=r.alternate;return r===Nt||o!==null&&o===Nt}function Z0(r,o){al=Qi=!0;var d=r.pending;d===null?o.next=o:(o.next=d.next,d.next=o),r.pending=o}function Zn(r,o,d){if((d&4194240)!==0){var v=o.lanes;v&=r.pendingLanes,d|=v,o.lanes=d,Zo(r,d)}}var Ia={readContext:xn,useCallback:A0,useContext:A0,useEffect:A0,useImperativeHandle:A0,useInsertionEffect:A0,useLayoutEffect:A0,useMemo:A0,useReducer:A0,useRef:A0,useState:A0,useDebugValue:A0,useDeferredValue:A0,useTransition:A0,useMutableSource:A0,useSyncExternalStore:A0,useId:A0,unstable_isNewReconciler:!1},C7={readContext:xn,useCallback:function(r,o){return fr().memoizedState=[r,o===void 0?null:o],r},useContext:xn,useEffect:Va,useImperativeHandle:function(r,o,d){return d=d!=null?d.concat([r]):null,ul(4194308,4,Gu.bind(null,o,r),d)},useLayoutEffect:function(r,o){return ul(4194308,4,r,o)},useInsertionEffect:function(r,o){return ul(4,2,r,o)},useMemo:function(r,o){var d=fr();return o=o===void 0?null:o,r=r(),d.memoizedState=[r,o],r},useReducer:function(r,o,d){var v=fr();return o=d!==void 0?d(o):o,v.memoizedState=v.baseState=o,r={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:r,lastRenderedState:o},v.queue=r,r=r.dispatch=S7.bind(null,Nt,r),[v.memoizedState,r]},useRef:function(r){var o=fr();return r={current:r},o.memoizedState=r},useState:sl,useDebugValue:cl,useDeferredValue:function(r){return fr().memoizedState=r},useTransition:function(){var r=sl(!1),o=r[0];return r=Dd.bind(null,r[1]),fr().memoizedState=r,[o,r]},useMutableSource:function(){},useSyncExternalStore:function(r,o,d){var v=Nt,y=fr();if(Rt){if(d===void 0)throw Error(n(407));d=d()}else{if(d=o(),h0===null)throw Error(n(349));(f2&30)!==0||Wu(v,o,d)}y.memoizedState=d;var $={value:d,getSnapshot:o};return y.queue=$,Va(Ir.bind(null,v,$,r),[r]),v.flags|=2048,eo(9,Q0.bind(null,v,$,d,o),void 0,null),d},useId:function(){var r=fr(),o=h0.identifierPrefix;if(Rt){var d=ar,v=lr;d=(v&~(1<<32-Vn(v)-1)).toString(32)+d,o=":"+o+"R"+d,d=ti++,0<\/script>",r=r.removeChild(r.firstChild)):typeof v.is=="string"?r=k.createElement(d,{is:v.is}):(r=k.createElement(d),d==="select"&&(k=r,v.multiple?k.multiple=!0:v.size&&(k.size=v.size))):r=k.createElementNS(r,d),r[ir]=o,r[l2]=v,w0(r,o,!1,!1),o.stateNode=r;e:{switch(k=qr(d,v),d){case"dialog":At("cancel",r),At("close",r),y=v;break;case"iframe":case"object":case"embed":At("load",r),y=v;break;case"video":case"audio":for(y=0;yoi&&(o.flags|=128,v=!0,gl($,!1),o.lanes=4194304)}else{if(!v)if(r=ei(k),r!==null){if(o.flags|=128,v=!0,d=r.updateQueue,d!==null&&(o.updateQueue=d,o.flags|=4),gl($,!0),$.tail===null&&$.tailMode==="hidden"&&!k.alternate&&!Rt)return $0(o),null}else 2*Dt()-$.renderingStartTime>oi&&d!==1073741824&&(o.flags|=128,v=!0,gl($,!1),o.lanes=4194304);$.isBackwards?(k.sibling=o.child,o.child=k):(d=$.last,d!==null?d.sibling=k:o.child=k,$.last=k)}return $.tail!==null?(o=$.tail,$.rendering=o,$.tail=o.sibling,$.renderingStartTime=Dt(),o.sibling=null,d=Vt.current,Mt(Vt,v?d&1|2:d&1),o):($0(o),null);case 22:case 23:return xc(),v=o.memoizedState!==null,r!==null&&r.memoizedState!==null!==v&&(o.flags|=8192),v&&(o.mode&1)!==0?(cn&1073741824)!==0&&($0(o),o.subtreeFlags&6&&(o.flags|=8192)):$0(o),null;case 24:return null;case 25:return null}throw Error(n(156,o.tag))}function _7(r,o){switch(X2(o),o.tag){case 1:return Y0(o.type)&&xa(),r=o.flags,r&65536?(o.flags=r&-65537|128,o):null;case 3:return d2(),Lt(q0),Lt(k0),Aa(),r=o.flags,(r&65536)!==0&&(r&128)===0?(o.flags=r&-65537|128,o):null;case 5:return Ma(o),null;case 13:if(Lt(Vt),r=o.memoizedState,r!==null&&r.dehydrated!==null){if(o.alternate===null)throw Error(n(340));ur()}return r=o.flags,r&65536?(o.flags=r&-65537|128,o):null;case 19:return Lt(Vt),null;case 4:return d2(),null;case 10:return _a(o.type._context),null;case 22:case 23:return xc(),null;case 24:return null;default:return null}}var Wa=!1,It=!1,N0=typeof WeakSet=="function"?WeakSet:Set,Le=null;function lo(r,o){var d=r.ref;if(d!==null)if(typeof d=="function")try{d(null)}catch(v){Ht(r,o,v)}else d.current=null}function yl(r,o,d){try{d()}catch(v){Ht(r,o,v)}}var Nd=!1;function E7(r,o){if(Xo=Ql,r=Pt(),zo(r)){if("selectionStart"in r)var d={start:r.selectionStart,end:r.selectionEnd};else e:{d=(d=r.ownerDocument)&&d.defaultView||window;var v=d.getSelection&&d.getSelection();if(v&&v.rangeCount!==0){d=v.anchorNode;var y=v.anchorOffset,$=v.focusNode;v=v.focusOffset;try{d.nodeType,$.nodeType}catch{d=null;break e}var k=0,I=-1,N=-1,ie=0,ye=0,we=r,ge=null;t:for(;;){for(var Ae;we!==d||y!==0&&we.nodeType!==3||(I=k+y),we!==$||v!==0&&we.nodeType!==3||(N=k+v),we.nodeType===3&&(k+=we.nodeValue.length),(Ae=we.firstChild)!==null;)ge=we,we=Ae;for(;;){if(we===r)break t;if(ge===d&&++ie===y&&(I=k),ge===$&&++ye===v&&(N=k),(Ae=we.nextSibling)!==null)break;we=ge,ge=we.parentNode}we=Ae}d=I===-1||N===-1?null:{start:I,end:N}}else d=null}d=d||{start:0,end:0}}else d=null;for(U2={focusedElem:r,selectionRange:d},Ql=!1,Le=o;Le!==null;)if(o=Le,r=o.child,(o.subtreeFlags&1028)!==0&&r!==null)r.return=o,Le=r;else for(;Le!==null;){o=Le;try{var De=o.alternate;if((o.flags&1024)!==0)switch(o.tag){case 0:case 11:case 15:break;case 1:if(De!==null){var Ve=De.memoizedProps,Qt=De.memoizedState,J=o.stateNode,K=J.getSnapshotBeforeUpdate(o.elementType===o.type?Ve:Cn(o.type,Ve),Qt);J.__reactInternalSnapshotBeforeUpdate=K}break;case 3:var te=o.stateNode.containerInfo;te.nodeType===1?te.textContent="":te.nodeType===9&&te.documentElement&&te.removeChild(te.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(Ce){Ht(o,o.return,Ce)}if(r=o.sibling,r!==null){r.return=o.return,Le=r;break}Le=o.return}return De=Nd,Nd=!1,De}function Or(r,o,d){var v=o.updateQueue;if(v=v!==null?v.lastEffect:null,v!==null){var y=v=v.next;do{if((y.tag&r)===r){var $=y.destroy;y.destroy=void 0,$!==void 0&&yl(o,d,$)}y=y.next}while(y!==v)}}function bl(r,o){if(o=o.updateQueue,o=o!==null?o.lastEffect:null,o!==null){var d=o=o.next;do{if((d.tag&r)===r){var v=d.create;d.destroy=v()}d=d.next}while(d!==o)}}function Ua(r){var o=r.ref;if(o!==null){var d=r.stateNode;switch(r.tag){case 5:r=d;break;default:r=d}typeof o=="function"?o(r):o.current=r}}function Hd(r){var o=r.alternate;o!==null&&(r.alternate=null,Hd(o)),r.child=null,r.deletions=null,r.sibling=null,r.tag===5&&(o=r.stateNode,o!==null&&(delete o[ir],delete o[l2],delete o[ya],delete o[A],delete o[Ki])),r.stateNode=null,r.return=null,r.dependencies=null,r.memoizedProps=null,r.memoizedState=null,r.pendingProps=null,r.stateNode=null,r.updateQueue=null}function jd(r){return r.tag===5||r.tag===3||r.tag===4}function zd(r){e:for(;;){for(;r.sibling===null;){if(r.return===null||jd(r.return))return null;r=r.return}for(r.sibling.return=r.return,r=r.sibling;r.tag!==5&&r.tag!==6&&r.tag!==18;){if(r.flags&2||r.child===null||r.tag===4)continue e;r.child.return=r,r=r.child}if(!(r.flags&2))return r.stateNode}}function uc(r,o,d){var v=r.tag;if(v===5||v===6)r=r.stateNode,o?d.nodeType===8?d.parentNode.insertBefore(r,o):d.insertBefore(r,o):(d.nodeType===8?(o=d.parentNode,o.insertBefore(r,d)):(o=d,o.appendChild(r)),d=d._reactRootContainer,d!=null||o.onclick!==null||(o.onclick=ma));else if(v!==4&&(r=r.child,r!==null))for(uc(r,o,d),r=r.sibling;r!==null;)uc(r,o,d),r=r.sibling}function Ga(r,o,d){var v=r.tag;if(v===5||v===6)r=r.stateNode,o?d.insertBefore(r,o):d.appendChild(r);else if(v!==4&&(r=r.child,r!==null))for(Ga(r,o,d),r=r.sibling;r!==null;)Ga(r,o,d),r=r.sibling}var v0=null,Nn=!1;function mr(r,o,d){for(d=d.child;d!==null;)cc(r,o,d),d=d.sibling}function cc(r,o,d){if(tr&&typeof tr.onCommitFiberUnmount=="function")try{tr.onCommitFiberUnmount(Wl,d)}catch{}switch(d.tag){case 5:It||lo(d,o);case 6:var v=v0,y=Nn;v0=null,mr(r,o,d),v0=v,Nn=y,v0!==null&&(Nn?(r=v0,d=d.stateNode,r.nodeType===8?r.parentNode.removeChild(d):r.removeChild(d)):v0.removeChild(d.stateNode));break;case 18:v0!==null&&(Nn?(r=v0,d=d.stateNode,r.nodeType===8?Lu(r.parentNode,d):r.nodeType===1&&Lu(r,d),xt(r)):Lu(v0,d.stateNode));break;case 4:v=v0,y=Nn,v0=d.stateNode.containerInfo,Nn=!0,mr(r,o,d),v0=v,Nn=y;break;case 0:case 11:case 14:case 15:if(!It&&(v=d.updateQueue,v!==null&&(v=v.lastEffect,v!==null))){y=v=v.next;do{var $=y,k=$.destroy;$=$.tag,k!==void 0&&(($&2)!==0||($&4)!==0)&&yl(d,o,k),y=y.next}while(y!==v)}mr(r,o,d);break;case 1:if(!It&&(lo(d,o),v=d.stateNode,typeof v.componentWillUnmount=="function"))try{v.props=d.memoizedProps,v.state=d.memoizedState,v.componentWillUnmount()}catch(I){Ht(d,o,I)}mr(r,o,d);break;case 21:mr(r,o,d);break;case 22:d.mode&1?(It=(v=It)||d.memoizedState!==null,mr(r,o,d),It=v):mr(r,o,d);break;default:mr(r,o,d)}}function ao(r){var o=r.updateQueue;if(o!==null){r.updateQueue=null;var d=r.stateNode;d===null&&(d=r.stateNode=new N0),o.forEach(function(v){var y=D7.bind(null,r,v);d.has(v)||(d.add(v),v.then(y,y))})}}function un(r,o){var d=o.deletions;if(d!==null)for(var v=0;vy&&(y=k),v&=~$}if(v=y,v=Dt()-v,v=(120>v?120:480>v?480:1080>v?1080:1920>v?1920:3e3>v?3e3:4320>v?4320:1960*Wd(v/1960))-v,10r?16:r,g2===null)var v=!1;else{if(r=g2,g2=null,H0=0,(ft&6)!==0)throw Error(n(331));var y=ft;for(ft|=4,Le=r.current;Le!==null;){var $=Le,k=$.child;if((Le.flags&16)!==0){var I=$.deletions;if(I!==null){for(var N=0;NDt()-vc?ai(r,0):Xa|=d),en(r,o)}function Qd(r,o){o===0&&((r.mode&1)===0?o=1:(o=Ul,Ul<<=1,(Ul&130023424)===0&&(Ul=4194304)));var d=j0();r=Dr(r,o),r!==null&&(Fo(r,o,d),en(r,d))}function R7(r){var o=r.memoizedState,d=0;o!==null&&(d=o.retryLane),Qd(r,d)}function D7(r,o){var d=0;switch(r.tag){case 13:var v=r.stateNode,y=r.memoizedState;y!==null&&(d=y.retryLane);break;case 19:v=r.stateNode;break;default:throw Error(n(314))}v!==null&&v.delete(o),Qd(r,d)}var Jd;Jd=function(r,o,d){if(r!==null)if(r.memoizedProps!==o.pendingProps||q0.current)O0=!0;else{if((r.lanes&d)===0&&(o.flags&128)===0)return O0=!1,Zd(r,o,d);O0=(r.flags&131072)!==0}else O0=!1,Rt&&(o.flags&1048576)!==0&&Sd(o,Sa,o.index);switch(o.lanes=0,o.tag){case 2:var v=o.type;Ka(r,o),r=o.pendingProps;var y=Ui(o,k0.current);c2(o,d),y=ni(null,o,v,r,y,d);var $=La();return o.flags|=1,typeof y=="object"&&y!==null&&typeof y.render=="function"&&y.$$typeof===void 0?(o.tag=1,o.memoizedState=null,o.updateQueue=null,Y0(v)?($=!0,gn(o)):$=!1,o.memoizedState=y.state!==null&&y.state!==void 0?y.state:null,ka(o),y.updater=Oa,o.stateNode=y,y._reactInternals=o,Ju(o,v,r,d),o=lc(null,o,v,!0,$,d)):(o.tag=0,Rt&&$&&el(o),x0(null,o,y,d),o=o.child),o;case 16:v=o.elementType;e:{switch(Ka(r,o),r=o.pendingProps,y=v._init,v=y(v._payload),o.type=v,y=o.tag=V7(v),r=Cn(v,r),y){case 0:o=ic(null,o,v,r,d);break e;case 1:o=oc(null,o,v,r,d);break e;case 11:o=Id(null,o,v,r,d);break e;case 14:o=tc(null,o,v,Cn(v.type,r),d);break e}throw Error(n(306,v,""))}return o;case 0:return v=o.type,y=o.pendingProps,y=o.elementType===v?y:Cn(v,y),ic(r,o,v,y,d);case 1:return v=o.type,y=o.pendingProps,y=o.elementType===v?y:Cn(v,y),oc(r,o,v,y,d);case 3:e:{if(Fd(o),r===null)throw Error(n(387));v=o.pendingProps,$=o.memoizedState,y=$.element,Ed(r,o),Yi(o,v,null,d);var k=o.memoizedState;if(v=k.element,$.isDehydrated)if($={element:v,isDehydrated:!1,cache:k.cache,pendingSuspenseBoundaries:k.pendingSuspenseBoundaries,transitions:k.transitions},o.updateQueue.baseState=$,o.memoizedState=$,o.flags&256){y=ii(Error(n(423)),o),o=hr(r,o,v,d,y);break e}else if(v!==y){y=ii(Error(n(424)),o),o=hr(r,o,v,d,y);break e}else for(an=o2(o.stateNode.containerInfo.firstChild),M0=o,Rt=!0,Fn=null,d=Pa(o,null,v,d),o.child=d;d;)d.flags=d.flags&-3|4096,d=d.sibling;else{if(ur(),v===y){o=On(r,o,d);break e}x0(r,o,v,d)}o=o.child}return o;case 5:return Ou(o),r===null&&X0(o),v=o.type,y=o.pendingProps,$=r!==null?r.memoizedProps:null,k=y.children,Qo(v,y)?k=null:$!==null&&Qo(v,$)&&(o.flags|=32),rc(r,o),x0(r,o,k,d),o.child;case 6:return r===null&&X0(o),null;case 13:return za(r,o,d);case 4:return Zu(o,o.stateNode.containerInfo),v=o.pendingProps,r===null?o.child=Wt(o,null,v,d):x0(r,o,v,d),o.child;case 11:return v=o.type,y=o.pendingProps,y=o.elementType===v?y:Cn(v,y),Id(r,o,v,y,d);case 7:return x0(r,o,o.pendingProps,d),o.child;case 8:return x0(r,o,o.pendingProps.children,d),o.child;case 12:return x0(r,o,o.pendingProps.children,d),o.child;case 10:e:{if(v=o.type._context,y=o.pendingProps,$=o.memoizedProps,k=y.value,Mt(rl,v._currentValue),v._currentValue=k,$!==null)if(re($.value,k)){if($.children===y.children&&!q0.current){o=On(r,o,d);break e}}else for($=o.child,$!==null&&($.return=o);$!==null;){var I=$.dependencies;if(I!==null){k=$.child;for(var N=I.firstContext;N!==null;){if(N.context===v){if($.tag===1){N=Br(-1,d&-d),N.tag=2;var ie=$.updateQueue;if(ie!==null){ie=ie.shared;var ye=ie.pending;ye===null?N.next=N:(N.next=ye.next,ye.next=N),ie.pending=N}}$.lanes|=d,N=$.alternate,N!==null&&(N.lanes|=d),b0($.return,d,o),I.lanes|=d;break}N=N.next}}else if($.tag===10)k=$.type===o.type?null:$.child;else if($.tag===18){if(k=$.return,k===null)throw Error(n(341));k.lanes|=d,I=k.alternate,I!==null&&(I.lanes|=d),b0(k,d,o),k=$.sibling}else k=$.child;if(k!==null)k.return=$;else for(k=$;k!==null;){if(k===o){k=null;break}if($=k.sibling,$!==null){$.return=k.return,k=$;break}k=k.return}$=k}x0(r,o,y.children,d),o=o.child}return o;case 9:return y=o.type,v=o.pendingProps.children,c2(o,d),y=xn(y),v=v(y),o.flags|=1,x0(r,o,v,d),o.child;case 14:return v=o.type,y=Cn(v,o.pendingProps),y=Cn(v.type,y),tc(r,o,v,y,d);case 15:return vr(r,o,o.type,o.pendingProps,d);case 17:return v=o.type,y=o.pendingProps,y=o.elementType===v?y:Cn(v,y),Ka(r,o),o.tag=1,Y0(v)?(r=!0,gn(o)):r=!1,c2(o,d),ri(o,v,y),Ju(o,v,y,d),lc(null,o,v,!0,r,d);case 19:return p2(r,o,d);case 22:return nc(r,o,d)}throw Error(n(156,o.tag))};function ef(r,o){return F1(r,o)}function B7(r,o,d,v){this.tag=r,this.key=d,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=o,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=v,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function _n(r,o,d,v){return new B7(r,o,d,v)}function is(r){return r=r.prototype,!(!r||!r.isReactComponent)}function V7(r){if(typeof r=="function")return is(r)?1:0;if(r!=null){if(r=r.$$typeof,r===xe)return 11;if(r===he)return 14}return 2}function Kn(r,o){var d=r.alternate;return d===null?(d=_n(r.tag,o,r.key,r.mode),d.elementType=r.elementType,d.type=r.type,d.stateNode=r.stateNode,d.alternate=r,r.alternate=d):(d.pendingProps=o,d.type=r.type,d.flags=0,d.subtreeFlags=0,d.deletions=null),d.flags=r.flags&14680064,d.childLanes=r.childLanes,d.lanes=r.lanes,d.child=r.child,d.memoizedProps=r.memoizedProps,d.memoizedState=r.memoizedState,d.updateQueue=r.updateQueue,o=r.dependencies,d.dependencies=o===null?null:{lanes:o.lanes,firstContext:o.firstContext},d.sibling=r.sibling,d.index=r.index,d.ref=r.ref,d}function os(r,o,d,v,y,$){var k=2;if(v=r,typeof r=="function")is(r)&&(k=1);else if(typeof r=="string")k=5;else e:switch(r){case oe:return ui(d.children,y,$,o);case L:k=8,y|=8;break;case ne:return r=_n(12,d,o,y|2),r.elementType=ne,r.lanes=$,r;case G:return r=_n(13,d,o,y),r.elementType=G,r.lanes=$,r;case Q:return r=_n(19,d,o,y),r.elementType=Q,r.lanes=$,r;case se:return ls(d,y,$,o);default:if(typeof r=="object"&&r!==null)switch(r.$$typeof){case j:k=10;break e;case q:k=9;break e;case xe:k=11;break e;case he:k=14;break e;case Pe:k=16,v=null;break e}throw Error(n(130,r==null?r:typeof r,""))}return o=_n(k,d,o,y),o.elementType=r,o.type=v,o.lanes=$,o}function ui(r,o,d,v){return r=_n(7,r,v,o),r.lanes=d,r}function ls(r,o,d,v){return r=_n(22,r,v,o),r.elementType=se,r.lanes=d,r.stateNode={isHidden:!1},r}function $c(r,o,d){return r=_n(6,r,null,o),r.lanes=d,r}function Sc(r,o,d){return o=_n(4,r.children!==null?r.children:[],r.key,o),o.lanes=d,o.stateNode={containerInfo:r.containerInfo,pendingChildren:null,implementation:r.implementation},o}function I7(r,o,d,v,y){this.tag=o,this.containerInfo=r,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Io(0),this.expirationTimes=Io(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Io(0),this.identifierPrefix=v,this.onRecoverableError=y,this.mutableSourceEagerHydrationData=null}function Cc(r,o,d,v,y,$,k,I,N){return r=new I7(r,o,d,I,N),o===1?(o=1,$===!0&&(o|=8)):o=0,$=_n(3,null,null,o),r.current=$,$.stateNode=r,$.memoizedState={element:v,isDehydrated:d,cache:null,transitions:null,pendingSuspenseBoundaries:null},ka($),r}function F7(r,o,d){var v=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(t){console.error(t)}}return e(),r3.exports=jP(),r3.exports}var g4;function zP(){if(g4)return cf;g4=1;var e=c8();return cf.createRoot=e.createRoot,cf.hydrateRoot=e.hydrateRoot,cf}var KP=zP();const WP=p1(KP);/** +`+$.stack}return{value:r,source:o,stack:y,digest:null}}function Na(r,o,d){return{value:r,source:null,stack:d??null,digest:o??null}}function io(r,o){try{console.error(o.value)}catch(d){setTimeout(function(){throw d})}}var Vd=typeof WeakMap=="function"?WeakMap:Map;function dl(r,o,d){d=Br(-1,d),d.tag=3,d.payload={element:null};var v=o.value;return d.callback=function(){Qa||(Qa=!0,hc=v),io(r,o)},d}function Ha(r,o,d){d=Br(-1,d),d.tag=3;var v=r.type.getDerivedStateFromError;if(typeof v=="function"){var y=o.value;d.payload=function(){return v(y)},d.callback=function(){io(r,o)}}var $=r.stateNode;return $!==null&&typeof $.componentDidCatch=="function"&&(d.callback=function(){io(r,o),typeof v!="function"&&(m2===null?m2=new Set([this]):m2.add(this));var k=o.stack;this.componentDidCatch(o.value,{componentStack:k!==null?k:""})}),d}function fl(r,o,d){var v=r.pingCache;if(v===null){v=r.pingCache=new Vd;var y=new Set;v.set(o,y)}else y=v.get(o),y===void 0&&(y=new Set,v.set(o,y));y.has(d)||(y.add(d),r=L7.bind(null,r,o,d),o.then(r,r))}function Id(r){do{var o;if((o=r.tag===13)&&(o=r.memoizedState,o=o!==null?o.dehydrated!==null:!0),o)return r;r=r.return}while(r!==null);return null}function ec(r,o,d,v,y){return(r.mode&1)===0?(r===o?r.flags|=65536:(r.flags|=128,d.flags|=131072,d.flags&=-52805,d.tag===1&&(d.alternate===null?d.tag=17:(o=Br(-1,1),o.tag=2,$n(d,o,1))),d.lanes|=1),r):(r.flags|=65536,r.lanes=y,r)}var ja=Z.ReactCurrentOwner,O0=!1;function x0(r,o,d,v){o.child=r===null?Pa(o,null,d,v):Wt(o,r.child,d,v)}function Fd(r,o,d,v,y){d=d.render;var $=o.ref;return c2(o,y),v=ni(r,o,d,v,$,y),d=La(),r!==null&&!O0?(o.updateQueue=r.updateQueue,o.flags&=-2053,r.lanes&=~y,On(r,o,y)):(Rt&&d&&el(o),o.flags|=1,x0(r,o,v,y),o.child)}function tc(r,o,d,v,y){if(r===null){var $=d.type;return typeof $=="function"&&!is($)&&$.defaultProps===void 0&&d.compare===null&&d.defaultProps===void 0?(o.tag=15,o.type=$,vr(r,o,$,v,y)):(r=os(d.type,null,v,o,o.mode,y),r.ref=o.ref,r.return=o,o.child=r)}if($=r.child,(r.lanes&y)===0){var k=$.memoizedProps;if(d=d.compare,d=d!==null?d:Me,d(k,v)&&r.ref===o.ref)return On(r,o,y)}return o.flags|=1,r=Kn($,v),r.ref=o.ref,r.return=o,o.child=r}function vr(r,o,d,v,y){if(r!==null){var $=r.memoizedProps;if(Me($,v)&&r.ref===o.ref)if(O0=!1,o.pendingProps=v=$,(r.lanes&y)!==0)(r.flags&131072)!==0&&(O0=!0);else return o.lanes=r.lanes,On(r,o,y)}return ic(r,o,d,v,y)}function nc(r,o,d){var v=o.pendingProps,y=v.children,$=r!==null?r.memoizedState:null;if(v.mode==="hidden")if((o.mode&1)===0)o.memoizedState={baseLanes:0,cachePool:null,transitions:null},Mt(so,cn),cn|=d;else{if((d&1073741824)===0)return r=$!==null?$.baseLanes|d:d,o.lanes=o.childLanes=1073741824,o.memoizedState={baseLanes:r,cachePool:null,transitions:null},o.updateQueue=null,Mt(so,cn),cn|=r,null;o.memoizedState={baseLanes:0,cachePool:null,transitions:null},v=$!==null?$.baseLanes:d,Mt(so,cn),cn|=v}else $!==null?(v=$.baseLanes|d,o.memoizedState=null):v=d,Mt(so,cn),cn|=v;return x0(r,o,y,d),o.child}function rc(r,o){var d=o.ref;(r===null&&d!==null||r!==null&&r.ref!==d)&&(o.flags|=512,o.flags|=2097152)}function ic(r,o,d,v,y){var $=Y0(d)?F0:k0.current;return $=Ui(o,$),c2(o,y),d=ni(r,o,d,v,$,y),v=La(),r!==null&&!O0?(o.updateQueue=r.updateQueue,o.flags&=-2053,r.lanes&=~y,On(r,o,y)):(Rt&&v&&el(o),o.flags|=1,x0(r,o,d,y),o.child)}function oc(r,o,d,v,y){if(Y0(d)){var $=!0;gn(o)}else $=!1;if(c2(o,y),o.stateNode===null)Ka(r,o),ri(o,d,v),Ju(o,d,v,y),v=!0;else if(r===null){var k=o.stateNode,I=o.memoizedProps;k.props=I;var N=k.context,ie=d.contextType;typeof ie=="object"&&ie!==null?ie=xn(ie):(ie=Y0(d)?F0:k0.current,ie=Ui(o,ie));var ye=d.getDerivedStateFromProps,we=typeof ye=="function"||typeof k.getSnapshotBeforeUpdate=="function";we||typeof k.UNSAFE_componentWillReceiveProps!="function"&&typeof k.componentWillReceiveProps!="function"||(I!==v||N!==ie)&&ro(o,k,v,ie),wn=!1;var ge=o.memoizedState;k.state=ge,Yi(o,v,k,y),N=o.memoizedState,I!==v||ge!==N||q0.current||wn?(typeof ye=="function"&&(Za(o,d,ye,v),N=o.memoizedState),(I=wn||Qu(o,d,I,v,ge,N,ie))?(we||typeof k.UNSAFE_componentWillMount!="function"&&typeof k.componentWillMount!="function"||(typeof k.componentWillMount=="function"&&k.componentWillMount(),typeof k.UNSAFE_componentWillMount=="function"&&k.UNSAFE_componentWillMount()),typeof k.componentDidMount=="function"&&(o.flags|=4194308)):(typeof k.componentDidMount=="function"&&(o.flags|=4194308),o.memoizedProps=v,o.memoizedState=N),k.props=v,k.state=N,k.context=ie,v=I):(typeof k.componentDidMount=="function"&&(o.flags|=4194308),v=!1)}else{k=o.stateNode,kd(r,o),I=o.memoizedProps,ie=o.type===o.elementType?I:Cn(o.type,I),k.props=ie,we=o.pendingProps,ge=k.context,N=d.contextType,typeof N=="object"&&N!==null?N=xn(N):(N=Y0(d)?F0:k0.current,N=Ui(o,N));var Ae=d.getDerivedStateFromProps;(ye=typeof Ae=="function"||typeof k.getSnapshotBeforeUpdate=="function")||typeof k.UNSAFE_componentWillReceiveProps!="function"&&typeof k.componentWillReceiveProps!="function"||(I!==we||ge!==N)&&ro(o,k,v,N),wn=!1,ge=o.memoizedState,k.state=ge,Yi(o,v,k,y);var De=o.memoizedState;I!==we||ge!==De||q0.current||wn?(typeof Ae=="function"&&(Za(o,d,Ae,v),De=o.memoizedState),(ie=wn||Qu(o,d,ie,v,ge,De,N)||!1)?(ye||typeof k.UNSAFE_componentWillUpdate!="function"&&typeof k.componentWillUpdate!="function"||(typeof k.componentWillUpdate=="function"&&k.componentWillUpdate(v,De,N),typeof k.UNSAFE_componentWillUpdate=="function"&&k.UNSAFE_componentWillUpdate(v,De,N)),typeof k.componentDidUpdate=="function"&&(o.flags|=4),typeof k.getSnapshotBeforeUpdate=="function"&&(o.flags|=1024)):(typeof k.componentDidUpdate!="function"||I===r.memoizedProps&&ge===r.memoizedState||(o.flags|=4),typeof k.getSnapshotBeforeUpdate!="function"||I===r.memoizedProps&&ge===r.memoizedState||(o.flags|=1024),o.memoizedProps=v,o.memoizedState=De),k.props=v,k.state=De,k.context=N,v=ie):(typeof k.componentDidUpdate!="function"||I===r.memoizedProps&&ge===r.memoizedState||(o.flags|=4),typeof k.getSnapshotBeforeUpdate!="function"||I===r.memoizedProps&&ge===r.memoizedState||(o.flags|=1024),v=!1)}return lc(r,o,d,v,$,y)}function lc(r,o,d,v,y,$){rc(r,o);var k=(o.flags&128)!==0;if(!v&&!k)return y&&$d(o,d,!1),On(r,o,$);v=o.stateNode,ja.current=o;var I=k&&typeof d.getDerivedStateFromError!="function"?null:v.render();return o.flags|=1,r!==null&&k?(o.child=Wt(o,r.child,null,$),o.child=Wt(o,null,I,$)):x0(r,o,I,$),o.memoizedState=v.state,y&&$d(o,d,!0),o.child}function Zd(r){var o=r.stateNode;o.pendingContext?xd(r,o.pendingContext,o.pendingContext!==o.context):o.context&&xd(r,o.context,!1),Zu(r,o.containerInfo)}function hr(r,o,d,v,y){return ur(),cr(y),o.flags|=256,x0(r,o,d,v),o.child}var pl={dehydrated:null,treeContext:null,retryLane:0};function vl(r){return{baseLanes:r,cachePool:null,transitions:null}}function za(r,o,d){var v=o.pendingProps,y=Vt.current,$=!1,k=(o.flags&128)!==0,I;if((I=k)||(I=r!==null&&r.memoizedState===null?!1:(y&2)!==0),I?($=!0,o.flags&=-129):(r===null||r.memoizedState!==null)&&(y|=1),Mt(Vt,y&1),r===null)return X0(o),r=o.memoizedState,r!==null&&(r=r.dehydrated,r!==null)?((o.mode&1)===0?o.lanes=1:r.data==="$!"?o.lanes=8:o.lanes=1073741824,null):(k=v.children,r=v.fallback,$?(v=o.mode,$=o.child,k={mode:"hidden",children:k},(v&1)===0&&$!==null?($.childLanes=0,$.pendingProps=k):$=ls(k,v,0,null),r=ui(r,v,d,null),$.return=o,r.return=o,$.sibling=r,o.child=$,o.child.memoizedState=vl(d),o.memoizedState=pl,r):oo(o,k));if(y=r.memoizedState,y!==null&&(I=y.dehydrated,I!==null))return He(r,o,k,v,I,y,d);if($){$=v.fallback,k=o.mode,y=r.child,I=y.sibling;var N={mode:"hidden",children:v.children};return(k&1)===0&&o.child!==y?(v=o.child,v.childLanes=0,v.pendingProps=N,o.deletions=null):(v=Kn(y,N),v.subtreeFlags=y.subtreeFlags&14680064),I!==null?$=Kn(I,$):($=ui($,k,d,null),$.flags|=2),$.return=o,v.return=o,v.sibling=$,o.child=v,v=$,$=o.child,k=r.child.memoizedState,k=k===null?vl(d):{baseLanes:k.baseLanes|d,cachePool:null,transitions:k.transitions},$.memoizedState=k,$.childLanes=r.childLanes&~d,o.memoizedState=pl,v}return $=r.child,r=$.sibling,v=Kn($,{mode:"visible",children:v.children}),(o.mode&1)===0&&(v.lanes=d),v.return=o,v.sibling=null,r!==null&&(d=o.deletions,d===null?(o.deletions=[r],o.flags|=16):d.push(r)),o.child=v,o.memoizedState=null,v}function oo(r,o){return o=ls({mode:"visible",children:o},r.mode,0,null),o.return=r,r.child=o}function Zr(r,o,d,v){return v!==null&&cr(v),Wt(o,r.child,null,d),r=oo(o,o.pendingProps.children),r.flags|=2,o.memoizedState=null,r}function He(r,o,d,v,y,$,k){if(d)return o.flags&256?(o.flags&=-257,v=Na(Error(n(422))),Zr(r,o,k,v)):o.memoizedState!==null?(o.child=r.child,o.flags|=128,null):($=v.fallback,y=o.mode,v=ls({mode:"visible",children:v.children},y,0,null),$=ui($,y,k,null),$.flags|=2,v.return=o,$.return=o,v.sibling=$,o.child=v,(o.mode&1)!==0&&Wt(o,r.child,null,k),o.child.memoizedState=vl(k),o.memoizedState=pl,$);if((o.mode&1)===0)return Zr(r,o,k,null);if(y.data==="$!"){if(v=y.nextSibling&&y.nextSibling.dataset,v)var I=v.dgst;return v=I,$=Error(n(419)),v=Na($,v,void 0),Zr(r,o,k,v)}if(I=(k&r.childLanes)!==0,O0||I){if(v=h0,v!==null){switch(k&-k){case 4:y=2;break;case 16:y=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:y=32;break;case 536870912:y=268435456;break;default:y=0}y=(y&(v.suspendedLanes|k))!==0?0:y,y!==0&&y!==$.retryLane&&($.retryLane=y,Dr(r,y),zn(v,r,y,-1))}return wc(),v=Na(Error(n(421))),Zr(r,o,k,v)}return y.data==="$?"?(o.flags|=128,o.child=r.child,o=R7.bind(null,r),y._reactRetry=o,null):(r=$.treeContext,an=o2(y.nextSibling),M0=o,Rt=!0,Fn=null,r!==null&&(yn[bn++]=lr,yn[bn++]=ar,yn[bn++]=q2,lr=r.id,ar=r.overflow,q2=o),o=oo(o,v.children),o.flags|=4096,o)}function hl(r,o,d){r.lanes|=o;var v=r.alternate;v!==null&&(v.lanes|=o),b0(r.return,o,d)}function ml(r,o,d,v,y){var $=r.memoizedState;$===null?r.memoizedState={isBackwards:o,rendering:null,renderingStartTime:0,last:v,tail:d,tailMode:y}:($.isBackwards=o,$.rendering=null,$.renderingStartTime=0,$.last=v,$.tail=d,$.tailMode=y)}function p2(r,o,d){var v=o.pendingProps,y=v.revealOrder,$=v.tail;if(x0(r,o,v.children,d),v=Vt.current,(v&2)!==0)v=v&1|2,o.flags|=128;else{if(r!==null&&(r.flags&128)!==0)e:for(r=o.child;r!==null;){if(r.tag===13)r.memoizedState!==null&&hl(r,d,o);else if(r.tag===19)hl(r,d,o);else if(r.child!==null){r.child.return=r,r=r.child;continue}if(r===o)break e;for(;r.sibling===null;){if(r.return===null||r.return===o)break e;r=r.return}r.sibling.return=r.return,r=r.sibling}v&=1}if(Mt(Vt,v),(o.mode&1)===0)o.memoizedState=null;else switch(y){case"forwards":for(d=o.child,y=null;d!==null;)r=d.alternate,r!==null&&ei(r)===null&&(y=d),d=d.sibling;d=y,d===null?(y=o.child,o.child=null):(y=d.sibling,d.sibling=null),ml(o,!1,y,d,$);break;case"backwards":for(d=null,y=o.child,o.child=null;y!==null;){if(r=y.alternate,r!==null&&ei(r)===null){o.child=y;break}r=y.sibling,y.sibling=d,d=y,y=r}ml(o,!0,d,null,$);break;case"together":ml(o,!1,null,null,void 0);break;default:o.memoizedState=null}return o.child}function Ka(r,o){(o.mode&1)===0&&r!==null&&(r.alternate=null,o.alternate=null,o.flags|=2)}function On(r,o,d){if(r!==null&&(o.dependencies=r.dependencies),h2|=o.lanes,(d&o.childLanes)===0)return null;if(r!==null&&o.child!==r.child)throw Error(n(153));if(o.child!==null){for(r=o.child,d=Kn(r,r.pendingProps),o.child=d,d.return=o;r.sibling!==null;)r=r.sibling,d=d.sibling=Kn(r,r.pendingProps),d.return=o;d.sibling=null}return o.child}function Od(r,o,d){switch(o.tag){case 3:Zd(o),ur();break;case 5:Ou(o);break;case 1:Y0(o.type)&&gn(o);break;case 4:Zu(o,o.stateNode.containerInfo);break;case 10:var v=o.type._context,y=o.memoizedProps.value;Mt(rl,v._currentValue),v._currentValue=y;break;case 13:if(v=o.memoizedState,v!==null)return v.dehydrated!==null?(Mt(Vt,Vt.current&1),o.flags|=128,null):(d&o.child.childLanes)!==0?za(r,o,d):(Mt(Vt,Vt.current&1),r=On(r,o,d),r!==null?r.sibling:null);Mt(Vt,Vt.current&1);break;case 19:if(v=(d&o.childLanes)!==0,(r.flags&128)!==0){if(v)return p2(r,o,d);o.flags|=128}if(y=o.memoizedState,y!==null&&(y.rendering=null,y.tail=null,y.lastEffect=null),Mt(Vt,Vt.current),v)break;return null;case 22:case 23:return o.lanes=0,nc(r,o,d)}return On(r,o,d)}var w0,ac,Nd,sc;w0=function(r,o){for(var d=o.child;d!==null;){if(d.tag===5||d.tag===6)r.appendChild(d.stateNode);else if(d.tag!==4&&d.child!==null){d.child.return=d,d=d.child;continue}if(d===o)break;for(;d.sibling===null;){if(d.return===null||d.return===o)return;d=d.return}d.sibling.return=d.return,d=d.sibling}},ac=function(){},Nd=function(r,o,d,v){var y=r.memoizedProps;if(y!==v){r=o.stateNode,Vr(dr.current);var $=null;switch(d){case"input":y=gt(r,y),v=gt(r,v),$=[];break;case"select":y=ae({},y,{value:void 0}),v=ae({},v,{value:void 0}),$=[];break;case"textarea":y=dt(r,y),v=dt(r,v),$=[];break;default:typeof y.onClick!="function"&&typeof v.onClick=="function"&&(r.onclick=ma)}vn(d,v);var k;d=null;for(ie in y)if(!v.hasOwnProperty(ie)&&y.hasOwnProperty(ie)&&y[ie]!=null)if(ie==="style"){var I=y[ie];for(k in I)I.hasOwnProperty(k)&&(d||(d={}),d[k]="")}else ie!=="dangerouslySetInnerHTML"&&ie!=="children"&&ie!=="suppressContentEditableWarning"&&ie!=="suppressHydrationWarning"&&ie!=="autoFocus"&&(l.hasOwnProperty(ie)?$||($=[]):($=$||[]).push(ie,null));for(ie in v){var N=v[ie];if(I=y!=null?y[ie]:void 0,v.hasOwnProperty(ie)&&N!==I&&(N!=null||I!=null))if(ie==="style")if(I){for(k in I)!I.hasOwnProperty(k)||N&&N.hasOwnProperty(k)||(d||(d={}),d[k]="");for(k in N)N.hasOwnProperty(k)&&I[k]!==N[k]&&(d||(d={}),d[k]=N[k])}else d||($||($=[]),$.push(ie,d)),d=N;else ie==="dangerouslySetInnerHTML"?(N=N?N.__html:void 0,I=I?I.__html:void 0,N!=null&&I!==N&&($=$||[]).push(ie,N)):ie==="children"?typeof N!="string"&&typeof N!="number"||($=$||[]).push(ie,""+N):ie!=="suppressContentEditableWarning"&&ie!=="suppressHydrationWarning"&&(l.hasOwnProperty(ie)?(N!=null&&ie==="onScroll"&&At("scroll",r),$||I===N||($=[])):($=$||[]).push(ie,N))}d&&($=$||[]).push("style",d);var ie=$;(o.updateQueue=ie)&&(o.flags|=4)}},sc=function(r,o,d,v){d!==v&&(o.flags|=4)};function gl(r,o){if(!Rt)switch(r.tailMode){case"hidden":o=r.tail;for(var d=null;o!==null;)o.alternate!==null&&(d=o),o=o.sibling;d===null?r.tail=null:d.sibling=null;break;case"collapsed":d=r.tail;for(var v=null;d!==null;)d.alternate!==null&&(v=d),d=d.sibling;v===null?o||r.tail===null?r.tail=null:r.tail.sibling=null:v.sibling=null}}function $0(r){var o=r.alternate!==null&&r.alternate.child===r.child,d=0,v=0;if(o)for(var y=r.child;y!==null;)d|=y.lanes|y.childLanes,v|=y.subtreeFlags&14680064,v|=y.flags&14680064,y.return=r,y=y.sibling;else for(y=r.child;y!==null;)d|=y.lanes|y.childLanes,v|=y.subtreeFlags,v|=y.flags,y.return=r,y=y.sibling;return r.subtreeFlags|=v,r.childLanes=d,o}function P7(r,o,d){var v=o.pendingProps;switch(X2(o),o.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return $0(o),null;case 1:return Y0(o.type)&&xa(),$0(o),null;case 3:return v=o.stateNode,d2(),Lt(q0),Lt(k0),Aa(),v.pendingContext&&(v.context=v.pendingContext,v.pendingContext=null),(r===null||r.child===null)&&(tl(o)?o.flags|=4:r===null||r.memoizedState.isDehydrated&&(o.flags&256)===0||(o.flags|=1024,Fn!==null&&(yc(Fn),Fn=null))),ac(r,o),$0(o),null;case 5:Ma(o);var y=Vr(Xi.current);if(d=o.type,r!==null&&o.stateNode!=null)Nd(r,o,d,v,y),r.ref!==o.ref&&(o.flags|=512,o.flags|=2097152);else{if(!v){if(o.stateNode===null)throw Error(n(166));return $0(o),null}if(r=Vr(dr.current),tl(o)){v=o.stateNode,d=o.type;var $=o.memoizedProps;switch(v[ir]=o,v[l2]=$,r=(o.mode&1)!==0,d){case"dialog":At("cancel",v),At("close",v);break;case"iframe":case"object":case"embed":At("load",v);break;case"video":case"audio":for(y=0;y<\/script>",r=r.removeChild(r.firstChild)):typeof v.is=="string"?r=k.createElement(d,{is:v.is}):(r=k.createElement(d),d==="select"&&(k=r,v.multiple?k.multiple=!0:v.size&&(k.size=v.size))):r=k.createElementNS(r,d),r[ir]=o,r[l2]=v,w0(r,o,!1,!1),o.stateNode=r;e:{switch(k=qr(d,v),d){case"dialog":At("cancel",r),At("close",r),y=v;break;case"iframe":case"object":case"embed":At("load",r),y=v;break;case"video":case"audio":for(y=0;yoi&&(o.flags|=128,v=!0,gl($,!1),o.lanes=4194304)}else{if(!v)if(r=ei(k),r!==null){if(o.flags|=128,v=!0,d=r.updateQueue,d!==null&&(o.updateQueue=d,o.flags|=4),gl($,!0),$.tail===null&&$.tailMode==="hidden"&&!k.alternate&&!Rt)return $0(o),null}else 2*Dt()-$.renderingStartTime>oi&&d!==1073741824&&(o.flags|=128,v=!0,gl($,!1),o.lanes=4194304);$.isBackwards?(k.sibling=o.child,o.child=k):(d=$.last,d!==null?d.sibling=k:o.child=k,$.last=k)}return $.tail!==null?(o=$.tail,$.rendering=o,$.tail=o.sibling,$.renderingStartTime=Dt(),o.sibling=null,d=Vt.current,Mt(Vt,v?d&1|2:d&1),o):($0(o),null);case 22:case 23:return xc(),v=o.memoizedState!==null,r!==null&&r.memoizedState!==null!==v&&(o.flags|=8192),v&&(o.mode&1)!==0?(cn&1073741824)!==0&&($0(o),o.subtreeFlags&6&&(o.flags|=8192)):$0(o),null;case 24:return null;case 25:return null}throw Error(n(156,o.tag))}function _7(r,o){switch(X2(o),o.tag){case 1:return Y0(o.type)&&xa(),r=o.flags,r&65536?(o.flags=r&-65537|128,o):null;case 3:return d2(),Lt(q0),Lt(k0),Aa(),r=o.flags,(r&65536)!==0&&(r&128)===0?(o.flags=r&-65537|128,o):null;case 5:return Ma(o),null;case 13:if(Lt(Vt),r=o.memoizedState,r!==null&&r.dehydrated!==null){if(o.alternate===null)throw Error(n(340));ur()}return r=o.flags,r&65536?(o.flags=r&-65537|128,o):null;case 19:return Lt(Vt),null;case 4:return d2(),null;case 10:return _a(o.type._context),null;case 22:case 23:return xc(),null;case 24:return null;default:return null}}var Wa=!1,It=!1,N0=typeof WeakSet=="function"?WeakSet:Set,Le=null;function lo(r,o){var d=r.ref;if(d!==null)if(typeof d=="function")try{d(null)}catch(v){Ht(r,o,v)}else d.current=null}function yl(r,o,d){try{d()}catch(v){Ht(r,o,v)}}var Hd=!1;function E7(r,o){if(Xo=Ql,r=Pt(),zo(r)){if("selectionStart"in r)var d={start:r.selectionStart,end:r.selectionEnd};else e:{d=(d=r.ownerDocument)&&d.defaultView||window;var v=d.getSelection&&d.getSelection();if(v&&v.rangeCount!==0){d=v.anchorNode;var y=v.anchorOffset,$=v.focusNode;v=v.focusOffset;try{d.nodeType,$.nodeType}catch{d=null;break e}var k=0,I=-1,N=-1,ie=0,ye=0,we=r,ge=null;t:for(;;){for(var Ae;we!==d||y!==0&&we.nodeType!==3||(I=k+y),we!==$||v!==0&&we.nodeType!==3||(N=k+v),we.nodeType===3&&(k+=we.nodeValue.length),(Ae=we.firstChild)!==null;)ge=we,we=Ae;for(;;){if(we===r)break t;if(ge===d&&++ie===y&&(I=k),ge===$&&++ye===v&&(N=k),(Ae=we.nextSibling)!==null)break;we=ge,ge=we.parentNode}we=Ae}d=I===-1||N===-1?null:{start:I,end:N}}else d=null}d=d||{start:0,end:0}}else d=null;for(U2={focusedElem:r,selectionRange:d},Ql=!1,Le=o;Le!==null;)if(o=Le,r=o.child,(o.subtreeFlags&1028)!==0&&r!==null)r.return=o,Le=r;else for(;Le!==null;){o=Le;try{var De=o.alternate;if((o.flags&1024)!==0)switch(o.tag){case 0:case 11:case 15:break;case 1:if(De!==null){var Ve=De.memoizedProps,Qt=De.memoizedState,J=o.stateNode,K=J.getSnapshotBeforeUpdate(o.elementType===o.type?Ve:Cn(o.type,Ve),Qt);J.__reactInternalSnapshotBeforeUpdate=K}break;case 3:var te=o.stateNode.containerInfo;te.nodeType===1?te.textContent="":te.nodeType===9&&te.documentElement&&te.removeChild(te.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(Ce){Ht(o,o.return,Ce)}if(r=o.sibling,r!==null){r.return=o.return,Le=r;break}Le=o.return}return De=Hd,Hd=!1,De}function Or(r,o,d){var v=o.updateQueue;if(v=v!==null?v.lastEffect:null,v!==null){var y=v=v.next;do{if((y.tag&r)===r){var $=y.destroy;y.destroy=void 0,$!==void 0&&yl(o,d,$)}y=y.next}while(y!==v)}}function bl(r,o){if(o=o.updateQueue,o=o!==null?o.lastEffect:null,o!==null){var d=o=o.next;do{if((d.tag&r)===r){var v=d.create;d.destroy=v()}d=d.next}while(d!==o)}}function Ua(r){var o=r.ref;if(o!==null){var d=r.stateNode;switch(r.tag){case 5:r=d;break;default:r=d}typeof o=="function"?o(r):o.current=r}}function jd(r){var o=r.alternate;o!==null&&(r.alternate=null,jd(o)),r.child=null,r.deletions=null,r.sibling=null,r.tag===5&&(o=r.stateNode,o!==null&&(delete o[ir],delete o[l2],delete o[ya],delete o[A],delete o[Ki])),r.stateNode=null,r.return=null,r.dependencies=null,r.memoizedProps=null,r.memoizedState=null,r.pendingProps=null,r.stateNode=null,r.updateQueue=null}function zd(r){return r.tag===5||r.tag===3||r.tag===4}function Kd(r){e:for(;;){for(;r.sibling===null;){if(r.return===null||zd(r.return))return null;r=r.return}for(r.sibling.return=r.return,r=r.sibling;r.tag!==5&&r.tag!==6&&r.tag!==18;){if(r.flags&2||r.child===null||r.tag===4)continue e;r.child.return=r,r=r.child}if(!(r.flags&2))return r.stateNode}}function uc(r,o,d){var v=r.tag;if(v===5||v===6)r=r.stateNode,o?d.nodeType===8?d.parentNode.insertBefore(r,o):d.insertBefore(r,o):(d.nodeType===8?(o=d.parentNode,o.insertBefore(r,d)):(o=d,o.appendChild(r)),d=d._reactRootContainer,d!=null||o.onclick!==null||(o.onclick=ma));else if(v!==4&&(r=r.child,r!==null))for(uc(r,o,d),r=r.sibling;r!==null;)uc(r,o,d),r=r.sibling}function Ga(r,o,d){var v=r.tag;if(v===5||v===6)r=r.stateNode,o?d.insertBefore(r,o):d.appendChild(r);else if(v!==4&&(r=r.child,r!==null))for(Ga(r,o,d),r=r.sibling;r!==null;)Ga(r,o,d),r=r.sibling}var v0=null,Nn=!1;function mr(r,o,d){for(d=d.child;d!==null;)cc(r,o,d),d=d.sibling}function cc(r,o,d){if(tr&&typeof tr.onCommitFiberUnmount=="function")try{tr.onCommitFiberUnmount(Wl,d)}catch{}switch(d.tag){case 5:It||lo(d,o);case 6:var v=v0,y=Nn;v0=null,mr(r,o,d),v0=v,Nn=y,v0!==null&&(Nn?(r=v0,d=d.stateNode,r.nodeType===8?r.parentNode.removeChild(d):r.removeChild(d)):v0.removeChild(d.stateNode));break;case 18:v0!==null&&(Nn?(r=v0,d=d.stateNode,r.nodeType===8?Lu(r.parentNode,d):r.nodeType===1&&Lu(r,d),xt(r)):Lu(v0,d.stateNode));break;case 4:v=v0,y=Nn,v0=d.stateNode.containerInfo,Nn=!0,mr(r,o,d),v0=v,Nn=y;break;case 0:case 11:case 14:case 15:if(!It&&(v=d.updateQueue,v!==null&&(v=v.lastEffect,v!==null))){y=v=v.next;do{var $=y,k=$.destroy;$=$.tag,k!==void 0&&(($&2)!==0||($&4)!==0)&&yl(d,o,k),y=y.next}while(y!==v)}mr(r,o,d);break;case 1:if(!It&&(lo(d,o),v=d.stateNode,typeof v.componentWillUnmount=="function"))try{v.props=d.memoizedProps,v.state=d.memoizedState,v.componentWillUnmount()}catch(I){Ht(d,o,I)}mr(r,o,d);break;case 21:mr(r,o,d);break;case 22:d.mode&1?(It=(v=It)||d.memoizedState!==null,mr(r,o,d),It=v):mr(r,o,d);break;default:mr(r,o,d)}}function ao(r){var o=r.updateQueue;if(o!==null){r.updateQueue=null;var d=r.stateNode;d===null&&(d=r.stateNode=new N0),o.forEach(function(v){var y=D7.bind(null,r,v);d.has(v)||(d.add(v),v.then(y,y))})}}function un(r,o){var d=o.deletions;if(d!==null)for(var v=0;vy&&(y=k),v&=~$}if(v=y,v=Dt()-v,v=(120>v?120:480>v?480:1080>v?1080:1920>v?1920:3e3>v?3e3:4320>v?4320:1960*Ud(v/1960))-v,10r?16:r,g2===null)var v=!1;else{if(r=g2,g2=null,H0=0,(ft&6)!==0)throw Error(n(331));var y=ft;for(ft|=4,Le=r.current;Le!==null;){var $=Le,k=$.child;if((Le.flags&16)!==0){var I=$.deletions;if(I!==null){for(var N=0;NDt()-vc?ai(r,0):Xa|=d),en(r,o)}function Jd(r,o){o===0&&((r.mode&1)===0?o=1:(o=Ul,Ul<<=1,(Ul&130023424)===0&&(Ul=4194304)));var d=j0();r=Dr(r,o),r!==null&&(Fo(r,o,d),en(r,d))}function R7(r){var o=r.memoizedState,d=0;o!==null&&(d=o.retryLane),Jd(r,d)}function D7(r,o){var d=0;switch(r.tag){case 13:var v=r.stateNode,y=r.memoizedState;y!==null&&(d=y.retryLane);break;case 19:v=r.stateNode;break;default:throw Error(n(314))}v!==null&&v.delete(o),Jd(r,d)}var ef;ef=function(r,o,d){if(r!==null)if(r.memoizedProps!==o.pendingProps||q0.current)O0=!0;else{if((r.lanes&d)===0&&(o.flags&128)===0)return O0=!1,Od(r,o,d);O0=(r.flags&131072)!==0}else O0=!1,Rt&&(o.flags&1048576)!==0&&Cd(o,Sa,o.index);switch(o.lanes=0,o.tag){case 2:var v=o.type;Ka(r,o),r=o.pendingProps;var y=Ui(o,k0.current);c2(o,d),y=ni(null,o,v,r,y,d);var $=La();return o.flags|=1,typeof y=="object"&&y!==null&&typeof y.render=="function"&&y.$$typeof===void 0?(o.tag=1,o.memoizedState=null,o.updateQueue=null,Y0(v)?($=!0,gn(o)):$=!1,o.memoizedState=y.state!==null&&y.state!==void 0?y.state:null,ka(o),y.updater=Oa,o.stateNode=y,y._reactInternals=o,Ju(o,v,r,d),o=lc(null,o,v,!0,$,d)):(o.tag=0,Rt&&$&&el(o),x0(null,o,y,d),o=o.child),o;case 16:v=o.elementType;e:{switch(Ka(r,o),r=o.pendingProps,y=v._init,v=y(v._payload),o.type=v,y=o.tag=V7(v),r=Cn(v,r),y){case 0:o=ic(null,o,v,r,d);break e;case 1:o=oc(null,o,v,r,d);break e;case 11:o=Fd(null,o,v,r,d);break e;case 14:o=tc(null,o,v,Cn(v.type,r),d);break e}throw Error(n(306,v,""))}return o;case 0:return v=o.type,y=o.pendingProps,y=o.elementType===v?y:Cn(v,y),ic(r,o,v,y,d);case 1:return v=o.type,y=o.pendingProps,y=o.elementType===v?y:Cn(v,y),oc(r,o,v,y,d);case 3:e:{if(Zd(o),r===null)throw Error(n(387));v=o.pendingProps,$=o.memoizedState,y=$.element,kd(r,o),Yi(o,v,null,d);var k=o.memoizedState;if(v=k.element,$.isDehydrated)if($={element:v,isDehydrated:!1,cache:k.cache,pendingSuspenseBoundaries:k.pendingSuspenseBoundaries,transitions:k.transitions},o.updateQueue.baseState=$,o.memoizedState=$,o.flags&256){y=ii(Error(n(423)),o),o=hr(r,o,v,d,y);break e}else if(v!==y){y=ii(Error(n(424)),o),o=hr(r,o,v,d,y);break e}else for(an=o2(o.stateNode.containerInfo.firstChild),M0=o,Rt=!0,Fn=null,d=Pa(o,null,v,d),o.child=d;d;)d.flags=d.flags&-3|4096,d=d.sibling;else{if(ur(),v===y){o=On(r,o,d);break e}x0(r,o,v,d)}o=o.child}return o;case 5:return Ou(o),r===null&&X0(o),v=o.type,y=o.pendingProps,$=r!==null?r.memoizedProps:null,k=y.children,Qo(v,y)?k=null:$!==null&&Qo(v,$)&&(o.flags|=32),rc(r,o),x0(r,o,k,d),o.child;case 6:return r===null&&X0(o),null;case 13:return za(r,o,d);case 4:return Zu(o,o.stateNode.containerInfo),v=o.pendingProps,r===null?o.child=Wt(o,null,v,d):x0(r,o,v,d),o.child;case 11:return v=o.type,y=o.pendingProps,y=o.elementType===v?y:Cn(v,y),Fd(r,o,v,y,d);case 7:return x0(r,o,o.pendingProps,d),o.child;case 8:return x0(r,o,o.pendingProps.children,d),o.child;case 12:return x0(r,o,o.pendingProps.children,d),o.child;case 10:e:{if(v=o.type._context,y=o.pendingProps,$=o.memoizedProps,k=y.value,Mt(rl,v._currentValue),v._currentValue=k,$!==null)if(re($.value,k)){if($.children===y.children&&!q0.current){o=On(r,o,d);break e}}else for($=o.child,$!==null&&($.return=o);$!==null;){var I=$.dependencies;if(I!==null){k=$.child;for(var N=I.firstContext;N!==null;){if(N.context===v){if($.tag===1){N=Br(-1,d&-d),N.tag=2;var ie=$.updateQueue;if(ie!==null){ie=ie.shared;var ye=ie.pending;ye===null?N.next=N:(N.next=ye.next,ye.next=N),ie.pending=N}}$.lanes|=d,N=$.alternate,N!==null&&(N.lanes|=d),b0($.return,d,o),I.lanes|=d;break}N=N.next}}else if($.tag===10)k=$.type===o.type?null:$.child;else if($.tag===18){if(k=$.return,k===null)throw Error(n(341));k.lanes|=d,I=k.alternate,I!==null&&(I.lanes|=d),b0(k,d,o),k=$.sibling}else k=$.child;if(k!==null)k.return=$;else for(k=$;k!==null;){if(k===o){k=null;break}if($=k.sibling,$!==null){$.return=k.return,k=$;break}k=k.return}$=k}x0(r,o,y.children,d),o=o.child}return o;case 9:return y=o.type,v=o.pendingProps.children,c2(o,d),y=xn(y),v=v(y),o.flags|=1,x0(r,o,v,d),o.child;case 14:return v=o.type,y=Cn(v,o.pendingProps),y=Cn(v.type,y),tc(r,o,v,y,d);case 15:return vr(r,o,o.type,o.pendingProps,d);case 17:return v=o.type,y=o.pendingProps,y=o.elementType===v?y:Cn(v,y),Ka(r,o),o.tag=1,Y0(v)?(r=!0,gn(o)):r=!1,c2(o,d),ri(o,v,y),Ju(o,v,y,d),lc(null,o,v,!0,r,d);case 19:return p2(r,o,d);case 22:return nc(r,o,d)}throw Error(n(156,o.tag))};function tf(r,o){return Z1(r,o)}function B7(r,o,d,v){this.tag=r,this.key=d,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=o,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=v,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function _n(r,o,d,v){return new B7(r,o,d,v)}function is(r){return r=r.prototype,!(!r||!r.isReactComponent)}function V7(r){if(typeof r=="function")return is(r)?1:0;if(r!=null){if(r=r.$$typeof,r===xe)return 11;if(r===he)return 14}return 2}function Kn(r,o){var d=r.alternate;return d===null?(d=_n(r.tag,o,r.key,r.mode),d.elementType=r.elementType,d.type=r.type,d.stateNode=r.stateNode,d.alternate=r,r.alternate=d):(d.pendingProps=o,d.type=r.type,d.flags=0,d.subtreeFlags=0,d.deletions=null),d.flags=r.flags&14680064,d.childLanes=r.childLanes,d.lanes=r.lanes,d.child=r.child,d.memoizedProps=r.memoizedProps,d.memoizedState=r.memoizedState,d.updateQueue=r.updateQueue,o=r.dependencies,d.dependencies=o===null?null:{lanes:o.lanes,firstContext:o.firstContext},d.sibling=r.sibling,d.index=r.index,d.ref=r.ref,d}function os(r,o,d,v,y,$){var k=2;if(v=r,typeof r=="function")is(r)&&(k=1);else if(typeof r=="string")k=5;else e:switch(r){case oe:return ui(d.children,y,$,o);case L:k=8,y|=8;break;case ne:return r=_n(12,d,o,y|2),r.elementType=ne,r.lanes=$,r;case G:return r=_n(13,d,o,y),r.elementType=G,r.lanes=$,r;case Q:return r=_n(19,d,o,y),r.elementType=Q,r.lanes=$,r;case se:return ls(d,y,$,o);default:if(typeof r=="object"&&r!==null)switch(r.$$typeof){case j:k=10;break e;case q:k=9;break e;case xe:k=11;break e;case he:k=14;break e;case Pe:k=16,v=null;break e}throw Error(n(130,r==null?r:typeof r,""))}return o=_n(k,d,o,y),o.elementType=r,o.type=v,o.lanes=$,o}function ui(r,o,d,v){return r=_n(7,r,v,o),r.lanes=d,r}function ls(r,o,d,v){return r=_n(22,r,v,o),r.elementType=se,r.lanes=d,r.stateNode={isHidden:!1},r}function $c(r,o,d){return r=_n(6,r,null,o),r.lanes=d,r}function Sc(r,o,d){return o=_n(4,r.children!==null?r.children:[],r.key,o),o.lanes=d,o.stateNode={containerInfo:r.containerInfo,pendingChildren:null,implementation:r.implementation},o}function I7(r,o,d,v,y){this.tag=o,this.containerInfo=r,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Io(0),this.expirationTimes=Io(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Io(0),this.identifierPrefix=v,this.onRecoverableError=y,this.mutableSourceEagerHydrationData=null}function Cc(r,o,d,v,y,$,k,I,N){return r=new I7(r,o,d,I,N),o===1?(o=1,$===!0&&(o|=8)):o=0,$=_n(3,null,null,o),r.current=$,$.stateNode=r,$.memoizedState={element:v,isDehydrated:d,cache:null,transitions:null,pendingSuspenseBoundaries:null},ka($),r}function F7(r,o,d){var v=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(t){console.error(t)}}return e(),r3.exports=jP(),r3.exports}var g4;function zP(){if(g4)return df;g4=1;var e=c8();return df.createRoot=e.createRoot,df.hydrateRoot=e.hydrateRoot,df}var KP=zP();const WP=p1(KP);/** * react-router v7.7.1 * * Copyright (c) Remix Software Inc. @@ -53,11 +53,11 @@ * LICENSE.md file in the root directory of this source tree. * * @license MIT - */var y4="popstate";function UP(e={}){function t(i,l){let{pathname:s,search:c,hash:f}=i.location;return ap("",{pathname:s,search:c,hash:f},l.state&&l.state.usr||null,l.state&&l.state.key||"default")}function n(i,l){return typeof l=="string"?l:Yc(l)}return qP(t,n,null,e)}function qt(e,t){if(e===!1||e===null||typeof e>"u")throw new Error(t)}function Wr(e,t){if(!e){typeof console<"u"&&console.warn(t);try{throw new Error(t)}catch{}}}function GP(){return Math.random().toString(36).substring(2,10)}function b4(e,t){return{usr:e.state,key:e.key,idx:t}}function ap(e,t,n=null,i){return{pathname:typeof e=="string"?e:e.pathname,search:"",hash:"",...typeof t=="string"?Hs(t):t,state:n,key:t&&t.key||i||GP()}}function Yc({pathname:e="/",search:t="",hash:n=""}){return t&&t!=="?"&&(e+=t.charAt(0)==="?"?t:"?"+t),n&&n!=="#"&&(e+=n.charAt(0)==="#"?n:"#"+n),e}function Hs(e){let t={};if(e){let n=e.indexOf("#");n>=0&&(t.hash=e.substring(n),e=e.substring(0,n));let i=e.indexOf("?");i>=0&&(t.search=e.substring(i),e=e.substring(0,i)),e&&(t.pathname=e)}return t}function qP(e,t,n,i={}){let{window:l=document.defaultView,v5Compat:s=!1}=i,c=l.history,f="POP",p=null,h=g();h==null&&(h=0,c.replaceState({...c.state,idx:h},""));function g(){return(c.state||{idx:null}).idx}function x(){f="POP";let M=g(),B=M==null?null:M-h;h=M,p&&p({action:f,location:E.location,delta:B})}function w(M,B){f="PUSH";let D=ap(E.location,M,B);h=g()+1;let V=b4(D,h),Z=E.createHref(D);try{c.pushState(V,"",Z)}catch(O){if(O instanceof DOMException&&O.name==="DataCloneError")throw O;l.location.assign(Z)}s&&p&&p({action:f,location:E.location,delta:1})}function C(M,B){f="REPLACE";let D=ap(E.location,M,B);h=g();let V=b4(D,h),Z=E.createHref(D);c.replaceState(V,"",Z),s&&p&&p({action:f,location:E.location,delta:0})}function P(M){return YP(M)}let E={get action(){return f},get location(){return e(l,c)},listen(M){if(p)throw new Error("A history only accepts one active listener");return l.addEventListener(y4,x),p=M,()=>{l.removeEventListener(y4,x),p=null}},createHref(M){return t(l,M)},createURL:P,encodeLocation(M){let B=P(M);return{pathname:B.pathname,search:B.search,hash:B.hash}},push:w,replace:C,go(M){return c.go(M)}};return E}function YP(e,t=!1){let n="http://localhost";typeof window<"u"&&(n=window.location.origin!=="null"?window.location.origin:window.location.href),qt(n,"No window.location.(origin|href) available to create URL");let i=typeof e=="string"?e:Yc(e);return i=i.replace(/ $/,"%20"),!t&&i.startsWith("//")&&(i=n+i),new URL(i,n)}function d8(e,t,n="/"){return XP(e,t,n,!1)}function XP(e,t,n,i){let l=typeof t=="string"?Hs(t):t,s=wi(l.pathname||"/",n);if(s==null)return null;let c=f8(e);QP(c);let f=null;for(let p=0;f==null&&p{let p={relativePath:f===void 0?s.path||"":f,caseSensitive:s.caseSensitive===!0,childrenIndex:c,route:s};p.relativePath.startsWith("/")&&(qt(p.relativePath.startsWith(i),`Absolute route path "${p.relativePath}" nested under path "${i}" is not valid. An absolute child route path must start with the combined path of all its parent routes.`),p.relativePath=p.relativePath.slice(i.length));let h=bi([i,p.relativePath]),g=n.concat(p);s.children&&s.children.length>0&&(qt(s.index!==!0,`Index routes must not have child routes. Please remove all child routes from route path "${h}".`),f8(s.children,t,g,h)),!(s.path==null&&!s.index)&&t.push({path:h,score:o_(h,s.index),routesMeta:g})};return e.forEach((s,c)=>{var f;if(s.path===""||!((f=s.path)!=null&&f.includes("?")))l(s,c);else for(let p of p8(s.path))l(s,c,p)}),t}function p8(e){let t=e.split("/");if(t.length===0)return[];let[n,...i]=t,l=n.endsWith("?"),s=n.replace(/\?$/,"");if(i.length===0)return l?[s,""]:[s];let c=p8(i.join("/")),f=[];return f.push(...c.map(p=>p===""?s:[s,p].join("/"))),l&&f.push(...c),f.map(p=>e.startsWith("/")&&p===""?"/":p)}function QP(e){e.sort((t,n)=>t.score!==n.score?n.score-t.score:l_(t.routesMeta.map(i=>i.childrenIndex),n.routesMeta.map(i=>i.childrenIndex)))}var JP=/^:[\w-]+$/,e_=3,t_=2,n_=1,r_=10,i_=-2,x4=e=>e==="*";function o_(e,t){let n=e.split("/"),i=n.length;return n.some(x4)&&(i+=i_),t&&(i+=t_),n.filter(l=>!x4(l)).reduce((l,s)=>l+(JP.test(s)?e_:s===""?n_:r_),i)}function l_(e,t){return e.length===t.length&&e.slice(0,-1).every((i,l)=>i===t[l])?e[e.length-1]-t[t.length-1]:0}function a_(e,t,n=!1){let{routesMeta:i}=e,l={},s="/",c=[];for(let f=0;f{if(g==="*"){let P=f[w]||"";c=s.slice(0,s.length-P.length).replace(/(.)\/+$/,"$1")}const C=f[w];return x&&!C?h[g]=void 0:h[g]=(C||"").replace(/%2F/g,"/"),h},{}),pathname:s,pathnameBase:c,pattern:e}}function s_(e,t=!1,n=!0){Wr(e==="*"||!e.endsWith("*")||e.endsWith("/*"),`Route path "${e}" will be treated as if it were "${e.replace(/\*$/,"/*")}" because the \`*\` character must always follow a \`/\` in the pattern. To get rid of this warning, please change the route path to "${e.replace(/\*$/,"/*")}".`);let i=[],l="^"+e.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(c,f,p)=>(i.push({paramName:f,isOptional:p!=null}),p?"/?([^\\/]+)?":"/([^\\/]+)"));return e.endsWith("*")?(i.push({paramName:"*"}),l+=e==="*"||e==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):n?l+="\\/*$":e!==""&&e!=="/"&&(l+="(?:(?=\\/|$))"),[new RegExp(l,t?void 0:"i"),i]}function u_(e){try{return e.split("/").map(t=>decodeURIComponent(t).replace(/\//g,"%2F")).join("/")}catch(t){return Wr(!1,`The URL path "${e}" could not be decoded because it is a malformed URL segment. This is probably due to a bad percent encoding (${t}).`),e}}function wi(e,t){if(t==="/")return e;if(!e.toLowerCase().startsWith(t.toLowerCase()))return null;let n=t.endsWith("/")?t.length-1:t.length,i=e.charAt(n);return i&&i!=="/"?null:e.slice(n)||"/"}function c_(e,t="/"){let{pathname:n,search:i="",hash:l=""}=typeof e=="string"?Hs(e):e;return{pathname:n?n.startsWith("/")?n:d_(n,t):t,search:v_(i),hash:h_(l)}}function d_(e,t){let n=t.replace(/\/+$/,"").split("/");return e.split("/").forEach(l=>{l===".."?n.length>1&&n.pop():l!=="."&&n.push(l)}),n.length>1?n.join("/"):"/"}function l3(e,t,n,i){return`Cannot include a '${e}' character in a manually specified \`to.${t}\` field [${JSON.stringify(i)}]. Please separate it out to the \`to.${n}\` field. Alternatively you may provide the full path as a string in and the router will parse it for you.`}function f_(e){return e.filter((t,n)=>n===0||t.route.path&&t.route.path.length>0)}function rv(e){let t=f_(e);return t.map((n,i)=>i===t.length-1?n.pathname:n.pathnameBase)}function iv(e,t,n,i=!1){let l;typeof e=="string"?l=Hs(e):(l={...e},qt(!l.pathname||!l.pathname.includes("?"),l3("?","pathname","search",l)),qt(!l.pathname||!l.pathname.includes("#"),l3("#","pathname","hash",l)),qt(!l.search||!l.search.includes("#"),l3("#","search","hash",l)));let s=e===""||l.pathname==="",c=s?"/":l.pathname,f;if(c==null)f=n;else{let x=t.length-1;if(!i&&c.startsWith("..")){let w=c.split("/");for(;w[0]==="..";)w.shift(),x-=1;l.pathname=w.join("/")}f=x>=0?t[x]:"/"}let p=c_(l,f),h=c&&c!=="/"&&c.endsWith("/"),g=(s||c===".")&&n.endsWith("/");return!p.pathname.endsWith("/")&&(h||g)&&(p.pathname+="/"),p}var bi=e=>e.join("/").replace(/\/\/+/g,"/"),p_=e=>e.replace(/\/+$/,"").replace(/^\/*/,"/"),v_=e=>!e||e==="?"?"":e.startsWith("?")?e:"?"+e,h_=e=>!e||e==="#"?"":e.startsWith("#")?e:"#"+e;function m_(e){return e!=null&&typeof e.status=="number"&&typeof e.statusText=="string"&&typeof e.internal=="boolean"&&"data"in e}var v8=["POST","PUT","PATCH","DELETE"];new Set(v8);var g_=["GET",...v8];new Set(g_);var js=b.createContext(null);js.displayName="DataRouter";var a5=b.createContext(null);a5.displayName="DataRouterState";b.createContext(!1);var h8=b.createContext({isTransitioning:!1});h8.displayName="ViewTransition";var y_=b.createContext(new Map);y_.displayName="Fetchers";var b_=b.createContext(null);b_.displayName="Await";var Ur=b.createContext(null);Ur.displayName="Navigation";var v1=b.createContext(null);v1.displayName="Location";var R2=b.createContext({outlet:null,matches:[],isDataRoute:!1});R2.displayName="Route";var ov=b.createContext(null);ov.displayName="RouteError";function x_(e,{relative:t}={}){qt(zs(),"useHref() may be used only in the context of a component.");let{basename:n,navigator:i}=b.useContext(Ur),{hash:l,pathname:s,search:c}=h1(e,{relative:t}),f=s;return n!=="/"&&(f=s==="/"?n:bi([n,s])),i.createHref({pathname:f,search:c,hash:l})}function zs(){return b.useContext(v1)!=null}function Pi(){return qt(zs(),"useLocation() may be used only in the context of a component."),b.useContext(v1).location}var m8="You should call navigate() in a React.useEffect(), not when your component is first rendered.";function g8(e){b.useContext(Ur).static||b.useLayoutEffect(e)}function lv(){let{isDataRoute:e}=b.useContext(R2);return e?R_():w_()}function w_(){qt(zs(),"useNavigate() may be used only in the context of a component.");let e=b.useContext(js),{basename:t,navigator:n}=b.useContext(Ur),{matches:i}=b.useContext(R2),{pathname:l}=Pi(),s=JSON.stringify(rv(i)),c=b.useRef(!1);return g8(()=>{c.current=!0}),b.useCallback((p,h={})=>{if(Wr(c.current,m8),!c.current)return;if(typeof p=="number"){n.go(p);return}let g=iv(p,JSON.parse(s),l,h.relative==="path");e==null&&t!=="/"&&(g.pathname=g.pathname==="/"?t:bi([t,g.pathname])),(h.replace?n.replace:n.push)(g,h.state,h)},[t,n,s,l,e])}b.createContext(null);function h1(e,{relative:t}={}){let{matches:n}=b.useContext(R2),{pathname:i}=Pi(),l=JSON.stringify(rv(n));return b.useMemo(()=>iv(e,JSON.parse(l),i,t==="path"),[e,l,i,t])}function $_(e,t){return y8(e,t)}function y8(e,t,n,i){var B;qt(zs(),"useRoutes() may be used only in the context of a component.");let{navigator:l}=b.useContext(Ur),{matches:s}=b.useContext(R2),c=s[s.length-1],f=c?c.params:{},p=c?c.pathname:"/",h=c?c.pathnameBase:"/",g=c&&c.route;{let D=g&&g.path||"";b8(p,!g||D.endsWith("*")||D.endsWith("*?"),`You rendered descendant (or called \`useRoutes()\`) at "${p}" (under ) but the parent route path has no trailing "*". This means if you navigate deeper, the parent won't match anymore and therefore the child routes will never render. + */var y4="popstate";function UP(e={}){function t(i,l){let{pathname:s,search:c,hash:f}=i.location;return ap("",{pathname:s,search:c,hash:f},l.state&&l.state.usr||null,l.state&&l.state.key||"default")}function n(i,l){return typeof l=="string"?l:Yc(l)}return qP(t,n,null,e)}function qt(e,t){if(e===!1||e===null||typeof e>"u")throw new Error(t)}function Wr(e,t){if(!e){typeof console<"u"&&console.warn(t);try{throw new Error(t)}catch{}}}function GP(){return Math.random().toString(36).substring(2,10)}function b4(e,t){return{usr:e.state,key:e.key,idx:t}}function ap(e,t,n=null,i){return{pathname:typeof e=="string"?e:e.pathname,search:"",hash:"",...typeof t=="string"?Hs(t):t,state:n,key:t&&t.key||i||GP()}}function Yc({pathname:e="/",search:t="",hash:n=""}){return t&&t!=="?"&&(e+=t.charAt(0)==="?"?t:"?"+t),n&&n!=="#"&&(e+=n.charAt(0)==="#"?n:"#"+n),e}function Hs(e){let t={};if(e){let n=e.indexOf("#");n>=0&&(t.hash=e.substring(n),e=e.substring(0,n));let i=e.indexOf("?");i>=0&&(t.search=e.substring(i),e=e.substring(0,i)),e&&(t.pathname=e)}return t}function qP(e,t,n,i={}){let{window:l=document.defaultView,v5Compat:s=!1}=i,c=l.history,f="POP",p=null,h=g();h==null&&(h=0,c.replaceState({...c.state,idx:h},""));function g(){return(c.state||{idx:null}).idx}function x(){f="POP";let M=g(),B=M==null?null:M-h;h=M,p&&p({action:f,location:E.location,delta:B})}function w(M,B){f="PUSH";let D=ap(E.location,M,B);h=g()+1;let V=b4(D,h),Z=E.createHref(D);try{c.pushState(V,"",Z)}catch(O){if(O instanceof DOMException&&O.name==="DataCloneError")throw O;l.location.assign(Z)}s&&p&&p({action:f,location:E.location,delta:1})}function C(M,B){f="REPLACE";let D=ap(E.location,M,B);h=g();let V=b4(D,h),Z=E.createHref(D);c.replaceState(V,"",Z),s&&p&&p({action:f,location:E.location,delta:0})}function P(M){return YP(M)}let E={get action(){return f},get location(){return e(l,c)},listen(M){if(p)throw new Error("A history only accepts one active listener");return l.addEventListener(y4,x),p=M,()=>{l.removeEventListener(y4,x),p=null}},createHref(M){return t(l,M)},createURL:P,encodeLocation(M){let B=P(M);return{pathname:B.pathname,search:B.search,hash:B.hash}},push:w,replace:C,go(M){return c.go(M)}};return E}function YP(e,t=!1){let n="http://localhost";typeof window<"u"&&(n=window.location.origin!=="null"?window.location.origin:window.location.href),qt(n,"No window.location.(origin|href) available to create URL");let i=typeof e=="string"?e:Yc(e);return i=i.replace(/ $/,"%20"),!t&&i.startsWith("//")&&(i=n+i),new URL(i,n)}function d8(e,t,n="/"){return XP(e,t,n,!1)}function XP(e,t,n,i){let l=typeof t=="string"?Hs(t):t,s=wi(l.pathname||"/",n);if(s==null)return null;let c=f8(e);QP(c);let f=null;for(let p=0;f==null&&p{let p={relativePath:f===void 0?s.path||"":f,caseSensitive:s.caseSensitive===!0,childrenIndex:c,route:s};p.relativePath.startsWith("/")&&(qt(p.relativePath.startsWith(i),`Absolute route path "${p.relativePath}" nested under path "${i}" is not valid. An absolute child route path must start with the combined path of all its parent routes.`),p.relativePath=p.relativePath.slice(i.length));let h=bi([i,p.relativePath]),g=n.concat(p);s.children&&s.children.length>0&&(qt(s.index!==!0,`Index routes must not have child routes. Please remove all child routes from route path "${h}".`),f8(s.children,t,g,h)),!(s.path==null&&!s.index)&&t.push({path:h,score:o_(h,s.index),routesMeta:g})};return e.forEach((s,c)=>{var f;if(s.path===""||!((f=s.path)!=null&&f.includes("?")))l(s,c);else for(let p of p8(s.path))l(s,c,p)}),t}function p8(e){let t=e.split("/");if(t.length===0)return[];let[n,...i]=t,l=n.endsWith("?"),s=n.replace(/\?$/,"");if(i.length===0)return l?[s,""]:[s];let c=p8(i.join("/")),f=[];return f.push(...c.map(p=>p===""?s:[s,p].join("/"))),l&&f.push(...c),f.map(p=>e.startsWith("/")&&p===""?"/":p)}function QP(e){e.sort((t,n)=>t.score!==n.score?n.score-t.score:l_(t.routesMeta.map(i=>i.childrenIndex),n.routesMeta.map(i=>i.childrenIndex)))}var JP=/^:[\w-]+$/,e_=3,t_=2,n_=1,r_=10,i_=-2,x4=e=>e==="*";function o_(e,t){let n=e.split("/"),i=n.length;return n.some(x4)&&(i+=i_),t&&(i+=t_),n.filter(l=>!x4(l)).reduce((l,s)=>l+(JP.test(s)?e_:s===""?n_:r_),i)}function l_(e,t){return e.length===t.length&&e.slice(0,-1).every((i,l)=>i===t[l])?e[e.length-1]-t[t.length-1]:0}function a_(e,t,n=!1){let{routesMeta:i}=e,l={},s="/",c=[];for(let f=0;f{if(g==="*"){let P=f[w]||"";c=s.slice(0,s.length-P.length).replace(/(.)\/+$/,"$1")}const C=f[w];return x&&!C?h[g]=void 0:h[g]=(C||"").replace(/%2F/g,"/"),h},{}),pathname:s,pathnameBase:c,pattern:e}}function s_(e,t=!1,n=!0){Wr(e==="*"||!e.endsWith("*")||e.endsWith("/*"),`Route path "${e}" will be treated as if it were "${e.replace(/\*$/,"/*")}" because the \`*\` character must always follow a \`/\` in the pattern. To get rid of this warning, please change the route path to "${e.replace(/\*$/,"/*")}".`);let i=[],l="^"+e.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(c,f,p)=>(i.push({paramName:f,isOptional:p!=null}),p?"/?([^\\/]+)?":"/([^\\/]+)"));return e.endsWith("*")?(i.push({paramName:"*"}),l+=e==="*"||e==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):n?l+="\\/*$":e!==""&&e!=="/"&&(l+="(?:(?=\\/|$))"),[new RegExp(l,t?void 0:"i"),i]}function u_(e){try{return e.split("/").map(t=>decodeURIComponent(t).replace(/\//g,"%2F")).join("/")}catch(t){return Wr(!1,`The URL path "${e}" could not be decoded because it is a malformed URL segment. This is probably due to a bad percent encoding (${t}).`),e}}function wi(e,t){if(t==="/")return e;if(!e.toLowerCase().startsWith(t.toLowerCase()))return null;let n=t.endsWith("/")?t.length-1:t.length,i=e.charAt(n);return i&&i!=="/"?null:e.slice(n)||"/"}function c_(e,t="/"){let{pathname:n,search:i="",hash:l=""}=typeof e=="string"?Hs(e):e;return{pathname:n?n.startsWith("/")?n:d_(n,t):t,search:v_(i),hash:h_(l)}}function d_(e,t){let n=t.replace(/\/+$/,"").split("/");return e.split("/").forEach(l=>{l===".."?n.length>1&&n.pop():l!=="."&&n.push(l)}),n.length>1?n.join("/"):"/"}function l3(e,t,n,i){return`Cannot include a '${e}' character in a manually specified \`to.${t}\` field [${JSON.stringify(i)}]. Please separate it out to the \`to.${n}\` field. Alternatively you may provide the full path as a string in and the router will parse it for you.`}function f_(e){return e.filter((t,n)=>n===0||t.route.path&&t.route.path.length>0)}function rv(e){let t=f_(e);return t.map((n,i)=>i===t.length-1?n.pathname:n.pathnameBase)}function iv(e,t,n,i=!1){let l;typeof e=="string"?l=Hs(e):(l={...e},qt(!l.pathname||!l.pathname.includes("?"),l3("?","pathname","search",l)),qt(!l.pathname||!l.pathname.includes("#"),l3("#","pathname","hash",l)),qt(!l.search||!l.search.includes("#"),l3("#","search","hash",l)));let s=e===""||l.pathname==="",c=s?"/":l.pathname,f;if(c==null)f=n;else{let x=t.length-1;if(!i&&c.startsWith("..")){let w=c.split("/");for(;w[0]==="..";)w.shift(),x-=1;l.pathname=w.join("/")}f=x>=0?t[x]:"/"}let p=c_(l,f),h=c&&c!=="/"&&c.endsWith("/"),g=(s||c===".")&&n.endsWith("/");return!p.pathname.endsWith("/")&&(h||g)&&(p.pathname+="/"),p}var bi=e=>e.join("/").replace(/\/\/+/g,"/"),p_=e=>e.replace(/\/+$/,"").replace(/^\/*/,"/"),v_=e=>!e||e==="?"?"":e.startsWith("?")?e:"?"+e,h_=e=>!e||e==="#"?"":e.startsWith("#")?e:"#"+e;function m_(e){return e!=null&&typeof e.status=="number"&&typeof e.statusText=="string"&&typeof e.internal=="boolean"&&"data"in e}var v8=["POST","PUT","PATCH","DELETE"];new Set(v8);var g_=["GET",...v8];new Set(g_);var js=b.createContext(null);js.displayName="DataRouter";var s5=b.createContext(null);s5.displayName="DataRouterState";b.createContext(!1);var h8=b.createContext({isTransitioning:!1});h8.displayName="ViewTransition";var y_=b.createContext(new Map);y_.displayName="Fetchers";var b_=b.createContext(null);b_.displayName="Await";var Ur=b.createContext(null);Ur.displayName="Navigation";var v1=b.createContext(null);v1.displayName="Location";var R2=b.createContext({outlet:null,matches:[],isDataRoute:!1});R2.displayName="Route";var ov=b.createContext(null);ov.displayName="RouteError";function x_(e,{relative:t}={}){qt(zs(),"useHref() may be used only in the context of a component.");let{basename:n,navigator:i}=b.useContext(Ur),{hash:l,pathname:s,search:c}=h1(e,{relative:t}),f=s;return n!=="/"&&(f=s==="/"?n:bi([n,s])),i.createHref({pathname:f,search:c,hash:l})}function zs(){return b.useContext(v1)!=null}function Pi(){return qt(zs(),"useLocation() may be used only in the context of a component."),b.useContext(v1).location}var m8="You should call navigate() in a React.useEffect(), not when your component is first rendered.";function g8(e){b.useContext(Ur).static||b.useLayoutEffect(e)}function lv(){let{isDataRoute:e}=b.useContext(R2);return e?R_():w_()}function w_(){qt(zs(),"useNavigate() may be used only in the context of a component.");let e=b.useContext(js),{basename:t,navigator:n}=b.useContext(Ur),{matches:i}=b.useContext(R2),{pathname:l}=Pi(),s=JSON.stringify(rv(i)),c=b.useRef(!1);return g8(()=>{c.current=!0}),b.useCallback((p,h={})=>{if(Wr(c.current,m8),!c.current)return;if(typeof p=="number"){n.go(p);return}let g=iv(p,JSON.parse(s),l,h.relative==="path");e==null&&t!=="/"&&(g.pathname=g.pathname==="/"?t:bi([t,g.pathname])),(h.replace?n.replace:n.push)(g,h.state,h)},[t,n,s,l,e])}b.createContext(null);function h1(e,{relative:t}={}){let{matches:n}=b.useContext(R2),{pathname:i}=Pi(),l=JSON.stringify(rv(n));return b.useMemo(()=>iv(e,JSON.parse(l),i,t==="path"),[e,l,i,t])}function $_(e,t){return y8(e,t)}function y8(e,t,n,i){var B;qt(zs(),"useRoutes() may be used only in the context of a component.");let{navigator:l}=b.useContext(Ur),{matches:s}=b.useContext(R2),c=s[s.length-1],f=c?c.params:{},p=c?c.pathname:"/",h=c?c.pathnameBase:"/",g=c&&c.route;{let D=g&&g.path||"";b8(p,!g||D.endsWith("*")||D.endsWith("*?"),`You rendered descendant (or called \`useRoutes()\`) at "${p}" (under ) but the parent route path has no trailing "*". This means if you navigate deeper, the parent won't match anymore and therefore the child routes will never render. -Please change the parent to .`)}let x=Pi(),w;if(t){let D=typeof t=="string"?Hs(t):t;qt(h==="/"||((B=D.pathname)==null?void 0:B.startsWith(h)),`When overriding the location using \`\` or \`useRoutes(routes, location)\`, the location pathname must begin with the portion of the URL pathname that was matched by all parent routes. The current pathname base is "${h}" but pathname "${D.pathname}" was given in the \`location\` prop.`),w=D}else w=x;let C=w.pathname||"/",P=C;if(h!=="/"){let D=h.replace(/^\//,"").split("/");P="/"+C.replace(/^\//,"").split("/").slice(D.length).join("/")}let E=d8(e,{pathname:P});Wr(g||E!=null,`No routes matched location "${w.pathname}${w.search}${w.hash}" `),Wr(E==null||E[E.length-1].route.element!==void 0||E[E.length-1].route.Component!==void 0||E[E.length-1].route.lazy!==void 0,`Matched leaf route at location "${w.pathname}${w.search}${w.hash}" does not have an element or Component. This means it will render an with a null value by default resulting in an "empty" page.`);let M=E_(E&&E.map(D=>Object.assign({},D,{params:Object.assign({},f,D.params),pathname:bi([h,l.encodeLocation?l.encodeLocation(D.pathname).pathname:D.pathname]),pathnameBase:D.pathnameBase==="/"?h:bi([h,l.encodeLocation?l.encodeLocation(D.pathnameBase).pathname:D.pathnameBase])})),s,n,i);return t&&M?b.createElement(v1.Provider,{value:{location:{pathname:"/",search:"",hash:"",state:null,key:"default",...w},navigationType:"POP"}},M):M}function S_(){let e=L_(),t=m_(e)?`${e.status} ${e.statusText}`:e instanceof Error?e.message:JSON.stringify(e),n=e instanceof Error?e.stack:null,i="rgba(200,200,200, 0.5)",l={padding:"0.5rem",backgroundColor:i},s={padding:"2px 4px",backgroundColor:i},c=null;return console.error("Error handled by React Router default ErrorBoundary:",e),c=b.createElement(b.Fragment,null,b.createElement("p",null,"💿 Hey developer 👋"),b.createElement("p",null,"You can provide a way better UX than this when your app throws errors by providing your own ",b.createElement("code",{style:s},"ErrorBoundary")," or"," ",b.createElement("code",{style:s},"errorElement")," prop on your route.")),b.createElement(b.Fragment,null,b.createElement("h2",null,"Unexpected Application Error!"),b.createElement("h3",{style:{fontStyle:"italic"}},t),n?b.createElement("pre",{style:l},n):null,c)}var C_=b.createElement(S_,null),P_=class extends b.Component{constructor(e){super(e),this.state={location:e.location,revalidation:e.revalidation,error:e.error}}static getDerivedStateFromError(e){return{error:e}}static getDerivedStateFromProps(e,t){return t.location!==e.location||t.revalidation!=="idle"&&e.revalidation==="idle"?{error:e.error,location:e.location,revalidation:e.revalidation}:{error:e.error!==void 0?e.error:t.error,location:t.location,revalidation:e.revalidation||t.revalidation}}componentDidCatch(e,t){console.error("React Router caught the following error during render",e,t)}render(){return this.state.error!==void 0?b.createElement(R2.Provider,{value:this.props.routeContext},b.createElement(ov.Provider,{value:this.state.error,children:this.props.component})):this.props.children}};function __({routeContext:e,match:t,children:n}){let i=b.useContext(js);return i&&i.static&&i.staticContext&&(t.route.errorElement||t.route.ErrorBoundary)&&(i.staticContext._deepestRenderedBoundaryId=t.route.id),b.createElement(R2.Provider,{value:e},n)}function E_(e,t=[],n=null,i=null){if(e==null){if(!n)return null;if(n.errors)e=n.matches;else if(t.length===0&&!n.initialized&&n.matches.length>0)e=n.matches;else return null}let l=e,s=n==null?void 0:n.errors;if(s!=null){let p=l.findIndex(h=>h.route.id&&(s==null?void 0:s[h.route.id])!==void 0);qt(p>=0,`Could not find a matching route for errors on route IDs: ${Object.keys(s).join(",")}`),l=l.slice(0,Math.min(l.length,p+1))}let c=!1,f=-1;if(n)for(let p=0;p=0?l=l.slice(0,f+1):l=[l[0]];break}}}return l.reduceRight((p,h,g)=>{let x,w=!1,C=null,P=null;n&&(x=s&&h.route.id?s[h.route.id]:void 0,C=h.route.errorElement||C_,c&&(f<0&&g===0?(b8("route-fallback",!1,"No `HydrateFallback` element provided to render during initial hydration"),w=!0,P=null):f===g&&(w=!0,P=h.route.hydrateFallbackElement||null)));let E=t.concat(l.slice(0,g+1)),M=()=>{let B;return x?B=C:w?B=P:h.route.Component?B=b.createElement(h.route.Component,null):h.route.element?B=h.route.element:B=p,b.createElement(__,{match:h,routeContext:{outlet:p,matches:E,isDataRoute:n!=null},children:B})};return n&&(h.route.ErrorBoundary||h.route.errorElement||g===0)?b.createElement(P_,{location:n.location,revalidation:n.revalidation,component:C,error:x,children:M(),routeContext:{outlet:null,matches:E,isDataRoute:!0}}):M()},null)}function av(e){return`${e} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`}function k_(e){let t=b.useContext(js);return qt(t,av(e)),t}function T_(e){let t=b.useContext(a5);return qt(t,av(e)),t}function M_(e){let t=b.useContext(R2);return qt(t,av(e)),t}function sv(e){let t=M_(e),n=t.matches[t.matches.length-1];return qt(n.route.id,`${e} can only be used on routes that contain a unique "id"`),n.route.id}function A_(){return sv("useRouteId")}function L_(){var i;let e=b.useContext(ov),t=T_("useRouteError"),n=sv("useRouteError");return e!==void 0?e:(i=t.errors)==null?void 0:i[n]}function R_(){let{router:e}=k_("useNavigate"),t=sv("useNavigate"),n=b.useRef(!1);return g8(()=>{n.current=!0}),b.useCallback(async(l,s={})=>{Wr(n.current,m8),n.current&&(typeof l=="number"?e.navigate(l):await e.navigate(l,{fromRouteId:t,...s}))},[e,t])}var w4={};function b8(e,t,n){!t&&!w4[e]&&(w4[e]=!0,Wr(!1,n))}b.memo(D_);function D_({routes:e,future:t,state:n}){return y8(e,void 0,n,t)}function B_({to:e,replace:t,state:n,relative:i}){qt(zs()," may be used only in the context of a component.");let{static:l}=b.useContext(Ur);Wr(!l," must not be used on the initial render in a . This is a no-op, but you should modify your code so the is only ever rendered in response to some user interaction or state change.");let{matches:s}=b.useContext(R2),{pathname:c}=Pi(),f=lv(),p=iv(e,rv(s),c,i==="path"),h=JSON.stringify(p);return b.useEffect(()=>{f(JSON.parse(h),{replace:t,state:n,relative:i})},[f,h,i,t,n]),null}function Pf(e){qt(!1,"A is only ever to be used as the child of element, never rendered directly. Please wrap your in a .")}function V_({basename:e="/",children:t=null,location:n,navigationType:i="POP",navigator:l,static:s=!1}){qt(!zs(),"You cannot render a inside another . You should never have more than one in your app.");let c=e.replace(/^\/*/,"/"),f=b.useMemo(()=>({basename:c,navigator:l,static:s,future:{}}),[c,l,s]);typeof n=="string"&&(n=Hs(n));let{pathname:p="/",search:h="",hash:g="",state:x=null,key:w="default"}=n,C=b.useMemo(()=>{let P=wi(p,c);return P==null?null:{location:{pathname:P,search:h,hash:g,state:x,key:w},navigationType:i}},[c,p,h,g,x,w,i]);return Wr(C!=null,` is not able to match the URL "${p}${h}${g}" because it does not start with the basename, so the won't render anything.`),C==null?null:b.createElement(Ur.Provider,{value:f},b.createElement(v1.Provider,{children:t,value:C}))}function I_({children:e,location:t}){return $_(sp(e),t)}function sp(e,t=[]){let n=[];return b.Children.forEach(e,(i,l)=>{if(!b.isValidElement(i))return;let s=[...t,l];if(i.type===b.Fragment){n.push.apply(n,sp(i.props.children,s));return}qt(i.type===Pf,`[${typeof i.type=="string"?i.type:i.type.name}] is not a component. All component children of must be a or `),qt(!i.props.index||!i.props.children,"An index route cannot have child routes.");let c={id:i.props.id||s.join("-"),caseSensitive:i.props.caseSensitive,element:i.props.element,Component:i.props.Component,index:i.props.index,path:i.props.path,loader:i.props.loader,action:i.props.action,hydrateFallbackElement:i.props.hydrateFallbackElement,HydrateFallback:i.props.HydrateFallback,errorElement:i.props.errorElement,ErrorBoundary:i.props.ErrorBoundary,hasErrorBoundary:i.props.hasErrorBoundary===!0||i.props.ErrorBoundary!=null||i.props.errorElement!=null,shouldRevalidate:i.props.shouldRevalidate,handle:i.props.handle,lazy:i.props.lazy};i.props.children&&(c.children=sp(i.props.children,s)),n.push(c)}),n}var _f="get",Ef="application/x-www-form-urlencoded";function s5(e){return e!=null&&typeof e.tagName=="string"}function F_(e){return s5(e)&&e.tagName.toLowerCase()==="button"}function Z_(e){return s5(e)&&e.tagName.toLowerCase()==="form"}function O_(e){return s5(e)&&e.tagName.toLowerCase()==="input"}function N_(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}function H_(e,t){return e.button===0&&(!t||t==="_self")&&!N_(e)}var df=null;function j_(){if(df===null)try{new FormData(document.createElement("form"),0),df=!1}catch{df=!0}return df}var z_=new Set(["application/x-www-form-urlencoded","multipart/form-data","text/plain"]);function a3(e){return e!=null&&!z_.has(e)?(Wr(!1,`"${e}" is not a valid \`encType\` for \`
\`/\`\` and will default to "${Ef}"`),null):e}function K_(e,t){let n,i,l,s,c;if(Z_(e)){let f=e.getAttribute("action");i=f?wi(f,t):null,n=e.getAttribute("method")||_f,l=a3(e.getAttribute("enctype"))||Ef,s=new FormData(e)}else if(F_(e)||O_(e)&&(e.type==="submit"||e.type==="image")){let f=e.form;if(f==null)throw new Error('Cannot submit a
); }; From 1d6550dac19dee07de577959026c2ddb851e86f1 Mon Sep 17 00:00:00 2001 From: Tom Varney Date: Wed, 6 Aug 2025 13:55:31 -0400 Subject: [PATCH 42/96] clean up link column --- internal/dev_server/ui/src/App.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/internal/dev_server/ui/src/App.css b/internal/dev_server/ui/src/App.css index 2debbe3bc..dbbafbe2b 100644 --- a/internal/dev_server/ui/src/App.css +++ b/internal/dev_server/ui/src/App.css @@ -128,6 +128,7 @@ code.has-override { border-radius: 4px; transition: all 0.2s ease-in-out; font-size: var(--lp-font-size-200); + white-space: nowrap; } .events-table td a:hover { @@ -144,6 +145,14 @@ code.has-override { background-color: var(--lp-color-blue-100); } +/* Center the copy link in its cell */ +.events-table td:last-child { + text-align: center; + vertical-align: middle; + min-width: 120px; + white-space: nowrap; +} + /* Copy notification toast */ .copy-notification { position: fixed; From 60341856c56d774154c7bd458d58f068d2eb518d Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 13:55:17 -0400 Subject: [PATCH 43/96] add pagination for debug events --- internal/dev_server/events_db/sqlite.go | 57 +++++++++++++++++++ internal/dev_server/events_db/sqlite_test.go | 57 +++++++++++++++++++ internal/dev_server/model/event_store.go | 15 +++++ .../dev_server/model/mocks/event_store.go | 15 +++++ 4 files changed, 144 insertions(+) diff --git a/internal/dev_server/events_db/sqlite.go b/internal/dev_server/events_db/sqlite.go index 1578003af..ae5aa74fe 100644 --- a/internal/dev_server/events_db/sqlite.go +++ b/internal/dev_server/events_db/sqlite.go @@ -112,6 +112,63 @@ func (s *Sqlite) QueryEvents(ctx context.Context, debugSessionKey string, kind * }, nil } +func (s *Sqlite) QueryDebugSessions(ctx context.Context, limit int, offset int) (*model.DebugSessionsPage, error) { + // Execute the main query based on the provided SQL + query := ` + SELECT debug_session.key, debug_session.written_at, COUNT(debug_events.id) as event_count + FROM debug_session + LEFT JOIN debug_events ON debug_session.key = debug_events.debug_session_key + GROUP BY debug_session.key, debug_session.written_at + ORDER BY debug_session.written_at DESC + LIMIT ? OFFSET ?` + + rows, err := s.database.QueryContext(ctx, query, limit, offset) + if err != nil { + return nil, err + } + defer rows.Close() + + var sessions []model.DebugSession + for rows.Next() { + var session model.DebugSession + var writtenAtStr string + + err := rows.Scan(&session.Key, &writtenAtStr, &session.EventCount) + if err != nil { + return nil, err + } + + // Parse the timestamp - SQLite returns ISO 8601 format + session.WrittenAt, err = time.Parse(time.RFC3339, writtenAtStr) + if err != nil { + return nil, err + } + + sessions = append(sessions, session) + } + + if err = rows.Err(); err != nil { + return nil, err + } + + // Get total count for pagination info + var totalCount int64 + countQuery := `SELECT COUNT(*) FROM debug_session` + err = s.database.QueryRowContext(ctx, countQuery).Scan(&totalCount) + if err != nil { + return nil, err + } + + // Determine if there are more results + hasMore := int64(offset+len(sessions)) < totalCount + + return &model.DebugSessionsPage{ + Sessions: sessions, + TotalCount: totalCount, + HasMore: hasMore, + }, nil +} + var _ model.EventStore = &Sqlite{} func NewSqlite(ctx context.Context, dbPath string) (*Sqlite, error) { diff --git a/internal/dev_server/events_db/sqlite_test.go b/internal/dev_server/events_db/sqlite_test.go index e2aef8a62..f90d62f88 100644 --- a/internal/dev_server/events_db/sqlite_test.go +++ b/internal/dev_server/events_db/sqlite_test.go @@ -98,4 +98,61 @@ func TestDBFunctions(t *testing.T) { require.False(t, page.HasMore) }) + t.Run("QueryDebugSessions with pagination", func(t *testing.T) { + // Create additional debug sessions for testing + err := store.CreateDebugSession(ctx, "session-2") + require.NoError(t, err) + err = store.CreateDebugSession(ctx, "session-3") + require.NoError(t, err) + + // Add some events to different sessions + err = store.WriteEvent(ctx, "session-2", "summary", []byte(testEvent)) + require.NoError(t, err) + err = store.WriteEvent(ctx, "session-2", "diagnostic", []byte(`{"kind":"diagnostic","data":"test"}`)) + require.NoError(t, err) + // session-3 will have 0 events + + // Query first page + page, err := store.QueryDebugSessions(ctx, 2, 0) + require.NoError(t, err) + require.NotNil(t, page) + require.Len(t, page.Sessions, 2) + require.Equal(t, int64(4), page.TotalCount) // debugSessionKey, another-session, session-2, session-3 + require.True(t, page.HasMore) + + // Verify sessions are ordered by written_at DESC (newest first) + // Just verify that we have the expected sessions and event counts + sessionKeys := make(map[string]int64) + for _, session := range page.Sessions { + sessionKeys[session.Key] = session.EventCount + } + + // Query all sessions to verify the complete result + allPage, err := store.QueryDebugSessions(ctx, 10, 0) + require.NoError(t, err) + require.NotNil(t, allPage) + require.Len(t, allPage.Sessions, 4) + require.Equal(t, int64(4), allPage.TotalCount) + require.False(t, allPage.HasMore) + + // Verify all sessions and their event counts + allSessionKeys := make(map[string]int64) + for _, session := range allPage.Sessions { + allSessionKeys[session.Key] = session.EventCount + } + + require.Equal(t, int64(0), allSessionKeys["session-3"]) + require.Equal(t, int64(2), allSessionKeys["session-2"]) + require.Equal(t, int64(0), allSessionKeys["another-session"]) + require.Equal(t, int64(4), allSessionKeys[debugSessionKey]) // 4 events from previous tests + + // Test pagination - second page + page2, err := store.QueryDebugSessions(ctx, 2, 2) + require.NoError(t, err) + require.NotNil(t, page2) + require.Len(t, page2.Sessions, 2) + require.Equal(t, int64(4), page2.TotalCount) + require.False(t, page2.HasMore) + }) + } diff --git a/internal/dev_server/model/event_store.go b/internal/dev_server/model/event_store.go index 9dff9f11d..59b2a4dd9 100644 --- a/internal/dev_server/model/event_store.go +++ b/internal/dev_server/model/event_store.go @@ -30,10 +30,25 @@ type EventsPage struct { HasMore bool `json:"has_more"` } +// DebugSession represents a debug session with metadata +type DebugSession struct { + Key string `json:"key"` + WrittenAt time.Time `json:"written_at"` + EventCount int64 `json:"event_count"` +} + +// DebugSessionsPage represents a paginated response of debug sessions +type DebugSessionsPage struct { + Sessions []DebugSession `json:"sessions"` + TotalCount int64 `json:"total_count"` + HasMore bool `json:"has_more"` +} + type EventStore interface { CreateDebugSession(ctx context.Context, debugSessionKey string) error WriteEvent(ctx context.Context, debugSessionKey string, kind string, data json.RawMessage) error QueryEvents(ctx context.Context, debugSessionKey string, kind *string, limit int, offset int) (*EventsPage, error) + QueryDebugSessions(ctx context.Context, limit int, offset int) (*DebugSessionsPage, error) } func ContextWithEventStore(ctx context.Context, store EventStore) context.Context { diff --git a/internal/dev_server/model/mocks/event_store.go b/internal/dev_server/model/mocks/event_store.go index c0c05b5e9..8450ca2dd 100644 --- a/internal/dev_server/model/mocks/event_store.go +++ b/internal/dev_server/model/mocks/event_store.go @@ -56,6 +56,21 @@ func (mr *MockEventStoreMockRecorder) CreateDebugSession(ctx, debugSessionKey an return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateDebugSession", reflect.TypeOf((*MockEventStore)(nil).CreateDebugSession), ctx, debugSessionKey) } +// QueryDebugSessions mocks base method. +func (m *MockEventStore) QueryDebugSessions(ctx context.Context, limit, offset int) (*model.DebugSessionsPage, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "QueryDebugSessions", ctx, limit, offset) + ret0, _ := ret[0].(*model.DebugSessionsPage) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// QueryDebugSessions indicates an expected call of QueryDebugSessions. +func (mr *MockEventStoreMockRecorder) QueryDebugSessions(ctx, limit, offset any) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "QueryDebugSessions", reflect.TypeOf((*MockEventStore)(nil).QueryDebugSessions), ctx, limit, offset) +} + // QueryEvents mocks base method. func (m *MockEventStore) QueryEvents(ctx context.Context, debugSessionKey string, kind *string, limit, offset int) (*model.EventsPage, error) { m.ctrl.T.Helper() From 2260ca4540e823727bcfe3998d92ab87047a65fc Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 14:02:32 -0400 Subject: [PATCH 44/96] Add enpoint for debug sessions --- internal/dev_server/api/api.yaml | 67 +++++++++ internal/dev_server/api/get_debug_sessions.go | 61 +++++++++ internal/dev_server/api/server.gen.go | 129 ++++++++++++++++++ 3 files changed, 257 insertions(+) create mode 100644 internal/dev_server/api/get_debug_sessions.go diff --git a/internal/dev_server/api/api.yaml b/internal/dev_server/api/api.yaml index 9a5a34d7e..b6fdfc78f 100644 --- a/internal/dev_server/api/api.yaml +++ b/internal/dev_server/api/api.yaml @@ -188,6 +188,34 @@ paths: $ref: "#/components/responses/ErrorResponse" 400: $ref: "#/components/responses/ErrorResponse" + /dev/debug-sessions: + get: + operationId: getDebugSessions + summary: list all debug sessions with event counts + parameters: + - name: limit + in: query + description: limit the number of debug sessions returned + required: false + schema: + type: integer + default: 50 + - name: offset + in: query + description: offset for pagination + required: false + schema: + type: integer + default: 0 + responses: + 200: + description: OK. List of debug sessions + content: + application/json: + schema: + $ref: "#/components/schemas/DebugSessionsPage" + 400: + $ref: "#/components/responses/ErrorResponse" components: parameters: flagKey: @@ -294,6 +322,45 @@ components: type: string name: type: string + DebugSession: + description: Debug session with event count + type: object + required: + - key + - written_at + - event_count + properties: + key: + type: string + description: unique identifier for the debug session + written_at: + type: string + format: date-time + description: timestamp when the debug session was created + event_count: + type: integer + format: int64 + description: number of events associated with this debug session + DebugSessionsPage: + description: Paginated response of debug sessions + type: object + required: + - sessions + - total_count + - has_more + properties: + sessions: + type: array + items: + $ref: "#/components/schemas/DebugSession" + description: list of debug sessions + total_count: + type: integer + format: int64 + description: total number of debug sessions available + has_more: + type: boolean + description: whether there are more results available responses: FlagOverride: description: Flag override diff --git a/internal/dev_server/api/get_debug_sessions.go b/internal/dev_server/api/get_debug_sessions.go new file mode 100644 index 000000000..2825c2210 --- /dev/null +++ b/internal/dev_server/api/get_debug_sessions.go @@ -0,0 +1,61 @@ +package api + +import ( + "context" + + "github.com/launchdarkly/ldcli/internal/dev_server/model" +) + +func (s server) GetDebugSessions(ctx context.Context, request GetDebugSessionsRequestObject) (GetDebugSessionsResponseObject, error) { + eventStore := model.EventStoreFromContext(ctx) + + // Set default values for pagination + limit := 50 + offset := 0 + + if request.Params.Limit != nil { + limit = *request.Params.Limit + } + if request.Params.Offset != nil { + offset = *request.Params.Offset + } + + // Validate parameters + if limit < 1 || limit > 1000 { + return GetDebugSessions400JSONResponse{ErrorResponseJSONResponse{ + Code: "invalid_parameter", + Message: "limit must be between 1 and 1000", + }}, nil + } + + if offset < 0 { + return GetDebugSessions400JSONResponse{ErrorResponseJSONResponse{ + Code: "invalid_parameter", + Message: "offset must be non-negative", + }}, nil + } + + // Query debug sessions from the event store + page, err := eventStore.QueryDebugSessions(ctx, limit, offset) + if err != nil { + return nil, err + } + + // Convert model.DebugSession to API DebugSession + var apiSessions []DebugSession + for _, session := range page.Sessions { + apiSessions = append(apiSessions, DebugSession{ + Key: session.Key, + WrittenAt: session.WrittenAt, + EventCount: session.EventCount, + }) + } + + response := DebugSessionsPage{ + Sessions: apiSessions, + TotalCount: page.TotalCount, + HasMore: page.HasMore, + } + + return GetDebugSessions200JSONResponse(response), nil +} diff --git a/internal/dev_server/api/server.gen.go b/internal/dev_server/api/server.gen.go index 97d018ea8..527e1987d 100644 --- a/internal/dev_server/api/server.gen.go +++ b/internal/dev_server/api/server.gen.go @@ -9,6 +9,7 @@ import ( "fmt" "io" "net/http" + "time" "github.com/gorilla/mux" "github.com/launchdarkly/go-sdk-common/v3/ldcontext" @@ -39,6 +40,30 @@ const ( // Context context object to use when evaluating flags in source environment type Context = ldcontext.Context +// DebugSession Debug session with event count +type DebugSession struct { + // EventCount number of events associated with this debug session + EventCount int64 `json:"event_count"` + + // Key unique identifier for the debug session + Key string `json:"key"` + + // WrittenAt timestamp when the debug session was created + WrittenAt time.Time `json:"written_at"` +} + +// DebugSessionsPage Paginated response of debug sessions +type DebugSessionsPage struct { + // HasMore whether there are more results available + HasMore bool `json:"has_more"` + + // Sessions list of debug sessions + Sessions []DebugSession `json:"sessions"` + + // TotalCount total number of debug sessions available + TotalCount int64 `json:"total_count"` +} + // Environment Environment type Environment struct { Key string `json:"key"` @@ -106,6 +131,15 @@ type FlagOverride struct { Value FlagValue `json:"value"` } +// GetDebugSessionsParams defines parameters for GetDebugSessions. +type GetDebugSessionsParams struct { + // Limit limit the number of debug sessions returned + Limit *int `form:"limit,omitempty" json:"limit,omitempty"` + + // Offset offset for pagination + Offset *int `form:"offset,omitempty" json:"offset,omitempty"` +} + // GetProjectParams defines parameters for GetProject. type GetProjectParams struct { // Expand Available expand options for this endpoint. @@ -177,6 +211,9 @@ type ServerInterface interface { // post backup // (POST /dev/backup) RestoreBackup(w http.ResponseWriter, r *http.Request) + // list all debug sessions with event counts + // (GET /dev/debug-sessions) + GetDebugSessions(w http.ResponseWriter, r *http.Request, params GetDebugSessionsParams) // lists all projects that have been configured for the dev server // (GET /dev/projects) GetProjects(w http.ResponseWriter, r *http.Request) @@ -243,6 +280,41 @@ func (siw *ServerInterfaceWrapper) RestoreBackup(w http.ResponseWriter, r *http. handler.ServeHTTP(w, r) } +// GetDebugSessions operation middleware +func (siw *ServerInterfaceWrapper) GetDebugSessions(w http.ResponseWriter, r *http.Request) { + + var err error + + // Parameter object where we will unmarshal all parameters from the context + var params GetDebugSessionsParams + + // ------------- Optional query parameter "limit" ------------- + + err = runtime.BindQueryParameter("form", true, false, "limit", r.URL.Query(), ¶ms.Limit) + if err != nil { + siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "limit", Err: err}) + return + } + + // ------------- Optional query parameter "offset" ------------- + + err = runtime.BindQueryParameter("form", true, false, "offset", r.URL.Query(), ¶ms.Offset) + if err != nil { + siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "offset", Err: err}) + return + } + + handler := http.Handler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + siw.Handler.GetDebugSessions(w, r, params) + })) + + for _, middleware := range siw.HandlerMiddlewares { + handler = middleware(handler) + } + + handler.ServeHTTP(w, r) +} + // GetProjects operation middleware func (siw *ServerInterfaceWrapper) GetProjects(w http.ResponseWriter, r *http.Request) { @@ -644,6 +716,8 @@ func HandlerWithOptions(si ServerInterface, options GorillaServerOptions) http.H r.HandleFunc(options.BaseURL+"/dev/backup", wrapper.RestoreBackup).Methods("POST") + r.HandleFunc(options.BaseURL+"/dev/debug-sessions", wrapper.GetDebugSessions).Methods("GET") + r.HandleFunc(options.BaseURL+"/dev/projects", wrapper.GetProjects).Methods("GET") r.HandleFunc(options.BaseURL+"/dev/projects/{projectKey}", wrapper.DeleteProject).Methods("DELETE") @@ -730,6 +804,32 @@ func (response RestoreBackup200Response) VisitRestoreBackupResponse(w http.Respo return nil } +type GetDebugSessionsRequestObject struct { + Params GetDebugSessionsParams +} + +type GetDebugSessionsResponseObject interface { + VisitGetDebugSessionsResponse(w http.ResponseWriter) error +} + +type GetDebugSessions200JSONResponse DebugSessionsPage + +func (response GetDebugSessions200JSONResponse) VisitGetDebugSessionsResponse(w http.ResponseWriter) error { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(200) + + return json.NewEncoder(w).Encode(response) +} + +type GetDebugSessions400JSONResponse struct{ ErrorResponseJSONResponse } + +func (response GetDebugSessions400JSONResponse) VisitGetDebugSessionsResponse(w http.ResponseWriter) error { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(400) + + return json.NewEncoder(w).Encode(response) +} + type GetProjectsRequestObject struct { } @@ -995,6 +1095,9 @@ type StrictServerInterface interface { // post backup // (POST /dev/backup) RestoreBackup(ctx context.Context, request RestoreBackupRequestObject) (RestoreBackupResponseObject, error) + // list all debug sessions with event counts + // (GET /dev/debug-sessions) + GetDebugSessions(ctx context.Context, request GetDebugSessionsRequestObject) (GetDebugSessionsResponseObject, error) // lists all projects that have been configured for the dev server // (GET /dev/projects) GetProjects(ctx context.Context, request GetProjectsRequestObject) (GetProjectsResponseObject, error) @@ -1103,6 +1206,32 @@ func (sh *strictHandler) RestoreBackup(w http.ResponseWriter, r *http.Request) { } } +// GetDebugSessions operation middleware +func (sh *strictHandler) GetDebugSessions(w http.ResponseWriter, r *http.Request, params GetDebugSessionsParams) { + var request GetDebugSessionsRequestObject + + request.Params = params + + handler := func(ctx context.Context, w http.ResponseWriter, r *http.Request, request interface{}) (interface{}, error) { + return sh.ssi.GetDebugSessions(ctx, request.(GetDebugSessionsRequestObject)) + } + for _, middleware := range sh.middlewares { + handler = middleware(handler, "GetDebugSessions") + } + + response, err := handler(r.Context(), w, r, request) + + if err != nil { + sh.options.ResponseErrorHandlerFunc(w, r, err) + } else if validResponse, ok := response.(GetDebugSessionsResponseObject); ok { + if err := validResponse.VisitGetDebugSessionsResponse(w); err != nil { + sh.options.ResponseErrorHandlerFunc(w, r, err) + } + } else if response != nil { + sh.options.ResponseErrorHandlerFunc(w, r, fmt.Errorf("unexpected response type: %T", response)) + } +} + // GetProjects operation middleware func (sh *strictHandler) GetProjects(w http.ResponseWriter, r *http.Request) { var request GetProjectsRequestObject From 5caa3b504aaac28d565913e51d2d8387ad59ecee Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 11:14:49 -0700 Subject: [PATCH 45/96] dark mode css --- internal/dev_server/ui/src/App.css | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/internal/dev_server/ui/src/App.css b/internal/dev_server/ui/src/App.css index dbbafbe2b..fc9f21644 100644 --- a/internal/dev_server/ui/src/App.css +++ b/internal/dev_server/ui/src/App.css @@ -106,12 +106,21 @@ code.has-override { /* Feature rows styling - make them pop! */ .events-table tbody tr.feature-row { - background-color: var(--lp-color-blue-50) !important; - border-left: 4px solid var(--lp-color-blue-500); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + background-color: var(--lp-color-blue-100) !important; + border-left: 4px solid var(--lp-color-blue-400); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); font-weight: var(--lp-font-weight-medium); } +/* Dark mode adjustments for feature rows */ +@media (prefers-color-scheme: dark) { + .events-table tbody tr.feature-row { + background-color: var(--lp-color-blue-900) !important; + border-left: 4px solid var(--lp-color-blue-300); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); + } +} + .events-table tbody tr.feature-row td:nth-child(2) { color: var(--lp-color-blue-700); font-weight: var(--lp-font-weight-bold); @@ -120,6 +129,13 @@ code.has-override { letter-spacing: 0.5px; } +/* Dark mode adjustments for feature row text */ +@media (prefers-color-scheme: dark) { + .events-table tbody tr.feature-row td:nth-child(2) { + color: var(--lp-color-blue-200); + } +} + /* Copy to clipboard link styling */ .events-table td a { color: var(--lp-color-blue-600); From c58d6f283e9a9e0ff9858efc981e4bdacd1c960a Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 14:18:45 -0400 Subject: [PATCH 46/96] Fix data parsing --- internal/dev_server/api/api.yaml | 86 +++++++++ .../api/get_debug_session_events.go | 61 +++++++ internal/dev_server/api/server.gen.go | 168 ++++++++++++++++++ internal/dev_server/events_db/sqlite.go | 8 +- 4 files changed, 319 insertions(+), 4 deletions(-) create mode 100644 internal/dev_server/api/get_debug_session_events.go diff --git a/internal/dev_server/api/api.yaml b/internal/dev_server/api/api.yaml index b6fdfc78f..21aef8082 100644 --- a/internal/dev_server/api/api.yaml +++ b/internal/dev_server/api/api.yaml @@ -216,6 +216,48 @@ paths: $ref: "#/components/schemas/DebugSessionsPage" 400: $ref: "#/components/responses/ErrorResponse" + /dev/debug-sessions/{debugSessionKey}/events: + get: + operationId: getDebugSessionEvents + summary: get events for a specific debug session + parameters: + - name: debugSessionKey + in: path + required: true + schema: + type: string + description: unique identifier for the debug session + - name: kind + in: query + description: filter events by kind (e.g., summary, diagnostic, feature) + required: false + schema: + type: string + - name: limit + in: query + description: limit the number of events returned + required: false + schema: + type: integer + default: 50 + - name: offset + in: query + description: offset for pagination + required: false + schema: + type: integer + default: 0 + responses: + 200: + description: OK. List of events for the debug session + content: + application/json: + schema: + $ref: "#/components/schemas/EventsPage" + 404: + $ref: "#/components/responses/ErrorResponse" + 400: + $ref: "#/components/responses/ErrorResponse" components: parameters: flagKey: @@ -361,6 +403,50 @@ components: has_more: type: boolean description: whether there are more results available + Event: + description: A stored event with metadata + type: object + required: + - id + - written_at + - kind + - data + properties: + id: + type: integer + format: int64 + description: unique identifier for the event + written_at: + type: string + format: date-time + description: timestamp when the event was written + kind: + type: string + description: type of event (e.g., summary, diagnostic, feature) + data: + type: object + description: raw event data as JSON + x-go-type: json.RawMessage + EventsPage: + description: Paginated response of events + type: object + required: + - events + - total_count + - has_more + properties: + events: + type: array + items: + $ref: "#/components/schemas/Event" + description: list of events + total_count: + type: integer + format: int64 + description: total number of events available + has_more: + type: boolean + description: whether there are more results available responses: FlagOverride: description: Flag override diff --git a/internal/dev_server/api/get_debug_session_events.go b/internal/dev_server/api/get_debug_session_events.go new file mode 100644 index 000000000..2b92f9430 --- /dev/null +++ b/internal/dev_server/api/get_debug_session_events.go @@ -0,0 +1,61 @@ +package api + +import ( + "context" + "github.com/launchdarkly/ldcli/internal/dev_server/model" +) + +func (s server) GetDebugSessionEvents(ctx context.Context, request GetDebugSessionEventsRequestObject) (GetDebugSessionEventsResponseObject, error) { + eventStore := model.EventStoreFromContext(ctx) + + // Set default values for pagination + limit := 50 + offset := 0 + + if request.Params.Limit != nil { + limit = *request.Params.Limit + } + if request.Params.Offset != nil { + offset = *request.Params.Offset + } + + // Validate parameters + if limit < 1 || limit > 1000 { + return GetDebugSessionEvents400JSONResponse{ErrorResponseJSONResponse{ + Code: "invalid_parameter", + Message: "limit must be between 1 and 1000", + }}, nil + } + + if offset < 0 { + return GetDebugSessionEvents400JSONResponse{ErrorResponseJSONResponse{ + Code: "invalid_parameter", + Message: "offset must be non-negative", + }}, nil + } + + // Query events from the event store + page, err := eventStore.QueryEvents(ctx, request.DebugSessionKey, request.Params.Kind, limit, offset) + if err != nil { + return nil, err + } + + // Convert model.Event to API Event + var apiEvents []Event + for _, event := range page.Events { + apiEvents = append(apiEvents, Event{ + Id: event.ID, + WrittenAt: event.WrittenAt, + Kind: event.Kind, + Data: event.Data, + }) + } + + response := EventsPage{ + Events: apiEvents, + TotalCount: page.TotalCount, + HasMore: page.HasMore, + } + + return GetDebugSessionEvents200JSONResponse(response), nil +} diff --git a/internal/dev_server/api/server.gen.go b/internal/dev_server/api/server.gen.go index 527e1987d..b2c50e1e1 100644 --- a/internal/dev_server/api/server.gen.go +++ b/internal/dev_server/api/server.gen.go @@ -70,6 +70,33 @@ type Environment struct { Name string `json:"name"` } +// Event A stored event with metadata +type Event struct { + // Data raw event data as JSON + Data json.RawMessage `json:"data"` + + // Id unique identifier for the event + Id int64 `json:"id"` + + // Kind type of event (e.g., summary, diagnostic, feature) + Kind string `json:"kind"` + + // WrittenAt timestamp when the event was written + WrittenAt time.Time `json:"written_at"` +} + +// EventsPage Paginated response of events +type EventsPage struct { + // Events list of events + Events []Event `json:"events"` + + // HasMore whether there are more results available + HasMore bool `json:"has_more"` + + // TotalCount total number of events available + TotalCount int64 `json:"total_count"` +} + // FlagValue value of a feature flag variation type FlagValue = ldvalue.Value @@ -140,6 +167,18 @@ type GetDebugSessionsParams struct { Offset *int `form:"offset,omitempty" json:"offset,omitempty"` } +// GetDebugSessionEventsParams defines parameters for GetDebugSessionEvents. +type GetDebugSessionEventsParams struct { + // Kind filter events by kind (e.g., summary, diagnostic, feature) + Kind *string `form:"kind,omitempty" json:"kind,omitempty"` + + // Limit limit the number of events returned + Limit *int `form:"limit,omitempty" json:"limit,omitempty"` + + // Offset offset for pagination + Offset *int `form:"offset,omitempty" json:"offset,omitempty"` +} + // GetProjectParams defines parameters for GetProject. type GetProjectParams struct { // Expand Available expand options for this endpoint. @@ -214,6 +253,9 @@ type ServerInterface interface { // list all debug sessions with event counts // (GET /dev/debug-sessions) GetDebugSessions(w http.ResponseWriter, r *http.Request, params GetDebugSessionsParams) + // get events for a specific debug session + // (GET /dev/debug-sessions/{debugSessionKey}/events) + GetDebugSessionEvents(w http.ResponseWriter, r *http.Request, debugSessionKey string, params GetDebugSessionEventsParams) // lists all projects that have been configured for the dev server // (GET /dev/projects) GetProjects(w http.ResponseWriter, r *http.Request) @@ -315,6 +357,58 @@ func (siw *ServerInterfaceWrapper) GetDebugSessions(w http.ResponseWriter, r *ht handler.ServeHTTP(w, r) } +// GetDebugSessionEvents operation middleware +func (siw *ServerInterfaceWrapper) GetDebugSessionEvents(w http.ResponseWriter, r *http.Request) { + + var err error + + // ------------- Path parameter "debugSessionKey" ------------- + var debugSessionKey string + + err = runtime.BindStyledParameterWithOptions("simple", "debugSessionKey", mux.Vars(r)["debugSessionKey"], &debugSessionKey, runtime.BindStyledParameterOptions{Explode: false, Required: true}) + if err != nil { + siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "debugSessionKey", Err: err}) + return + } + + // Parameter object where we will unmarshal all parameters from the context + var params GetDebugSessionEventsParams + + // ------------- Optional query parameter "kind" ------------- + + err = runtime.BindQueryParameter("form", true, false, "kind", r.URL.Query(), ¶ms.Kind) + if err != nil { + siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "kind", Err: err}) + return + } + + // ------------- Optional query parameter "limit" ------------- + + err = runtime.BindQueryParameter("form", true, false, "limit", r.URL.Query(), ¶ms.Limit) + if err != nil { + siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "limit", Err: err}) + return + } + + // ------------- Optional query parameter "offset" ------------- + + err = runtime.BindQueryParameter("form", true, false, "offset", r.URL.Query(), ¶ms.Offset) + if err != nil { + siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "offset", Err: err}) + return + } + + handler := http.Handler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + siw.Handler.GetDebugSessionEvents(w, r, debugSessionKey, params) + })) + + for _, middleware := range siw.HandlerMiddlewares { + handler = middleware(handler) + } + + handler.ServeHTTP(w, r) +} + // GetProjects operation middleware func (siw *ServerInterfaceWrapper) GetProjects(w http.ResponseWriter, r *http.Request) { @@ -718,6 +812,8 @@ func HandlerWithOptions(si ServerInterface, options GorillaServerOptions) http.H r.HandleFunc(options.BaseURL+"/dev/debug-sessions", wrapper.GetDebugSessions).Methods("GET") + r.HandleFunc(options.BaseURL+"/dev/debug-sessions/{debugSessionKey}/events", wrapper.GetDebugSessionEvents).Methods("GET") + r.HandleFunc(options.BaseURL+"/dev/projects", wrapper.GetProjects).Methods("GET") r.HandleFunc(options.BaseURL+"/dev/projects/{projectKey}", wrapper.DeleteProject).Methods("DELETE") @@ -830,6 +926,48 @@ func (response GetDebugSessions400JSONResponse) VisitGetDebugSessionsResponse(w return json.NewEncoder(w).Encode(response) } +type GetDebugSessionEventsRequestObject struct { + DebugSessionKey string `json:"debugSessionKey"` + Params GetDebugSessionEventsParams +} + +type GetDebugSessionEventsResponseObject interface { + VisitGetDebugSessionEventsResponse(w http.ResponseWriter) error +} + +type GetDebugSessionEvents200JSONResponse EventsPage + +func (response GetDebugSessionEvents200JSONResponse) VisitGetDebugSessionEventsResponse(w http.ResponseWriter) error { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(200) + + return json.NewEncoder(w).Encode(response) +} + +type GetDebugSessionEvents400JSONResponse struct{ ErrorResponseJSONResponse } + +func (response GetDebugSessionEvents400JSONResponse) VisitGetDebugSessionEventsResponse(w http.ResponseWriter) error { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(400) + + return json.NewEncoder(w).Encode(response) +} + +type GetDebugSessionEvents404JSONResponse struct { + // Code specific error code encountered + Code string `json:"code"` + + // Message description of the error + Message string `json:"message"` +} + +func (response GetDebugSessionEvents404JSONResponse) VisitGetDebugSessionEventsResponse(w http.ResponseWriter) error { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(404) + + return json.NewEncoder(w).Encode(response) +} + type GetProjectsRequestObject struct { } @@ -1098,6 +1236,9 @@ type StrictServerInterface interface { // list all debug sessions with event counts // (GET /dev/debug-sessions) GetDebugSessions(ctx context.Context, request GetDebugSessionsRequestObject) (GetDebugSessionsResponseObject, error) + // get events for a specific debug session + // (GET /dev/debug-sessions/{debugSessionKey}/events) + GetDebugSessionEvents(ctx context.Context, request GetDebugSessionEventsRequestObject) (GetDebugSessionEventsResponseObject, error) // lists all projects that have been configured for the dev server // (GET /dev/projects) GetProjects(ctx context.Context, request GetProjectsRequestObject) (GetProjectsResponseObject, error) @@ -1232,6 +1373,33 @@ func (sh *strictHandler) GetDebugSessions(w http.ResponseWriter, r *http.Request } } +// GetDebugSessionEvents operation middleware +func (sh *strictHandler) GetDebugSessionEvents(w http.ResponseWriter, r *http.Request, debugSessionKey string, params GetDebugSessionEventsParams) { + var request GetDebugSessionEventsRequestObject + + request.DebugSessionKey = debugSessionKey + request.Params = params + + handler := func(ctx context.Context, w http.ResponseWriter, r *http.Request, request interface{}) (interface{}, error) { + return sh.ssi.GetDebugSessionEvents(ctx, request.(GetDebugSessionEventsRequestObject)) + } + for _, middleware := range sh.middlewares { + handler = middleware(handler, "GetDebugSessionEvents") + } + + response, err := handler(r.Context(), w, r, request) + + if err != nil { + sh.options.ResponseErrorHandlerFunc(w, r, err) + } else if validResponse, ok := response.(GetDebugSessionEventsResponseObject); ok { + if err := validResponse.VisitGetDebugSessionEventsResponse(w); err != nil { + sh.options.ResponseErrorHandlerFunc(w, r, err) + } + } else if response != nil { + sh.options.ResponseErrorHandlerFunc(w, r, fmt.Errorf("unexpected response type: %T", response)) + } +} + // GetProjects operation middleware func (sh *strictHandler) GetProjects(w http.ResponseWriter, r *http.Request) { var request GetProjectsRequestObject diff --git a/internal/dev_server/events_db/sqlite.go b/internal/dev_server/events_db/sqlite.go index ae5aa74fe..6c8a61347 100644 --- a/internal/dev_server/events_db/sqlite.go +++ b/internal/dev_server/events_db/sqlite.go @@ -90,11 +90,11 @@ func (s *Sqlite) QueryEvents(ctx context.Context, debugSessionKey string, kind * var countArgs []interface{} if kind != nil { - countQuery = `SELECT COUNT(*) FROM debug_events WHERE kind = ?` - countArgs = []interface{}{*kind} + countQuery = `SELECT COUNT(*) FROM debug_events WHERE debug_session_key = ? AND kind = ?` + countArgs = []interface{}{debugSessionKey, *kind} } else { - countQuery = `SELECT COUNT(*) FROM debug_events` - countArgs = []interface{}{} + countQuery = `SELECT COUNT(*) FROM debug_events WHERE debug_session_key = ?` + countArgs = []interface{}{debugSessionKey} } err = s.database.QueryRowContext(ctx, countQuery, countArgs...).Scan(&totalCount) From 2fa6bc0fe09326dba6c1e55064104b39d2bd7d6d Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 11:32:21 -0700 Subject: [PATCH 47/96] streaming css --- internal/dev_server/ui/src/App.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/internal/dev_server/ui/src/App.css b/internal/dev_server/ui/src/App.css index fc9f21644..afea2f983 100644 --- a/internal/dev_server/ui/src/App.css +++ b/internal/dev_server/ui/src/App.css @@ -199,3 +199,32 @@ code.has-override { opacity: 0; transform: translateX(-50%) translateY(100px); } + +/* Streaming toggle button */ +.streaming-toggle-button { + margin-bottom: 16px; + padding: 8px 16px; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; + font-size: var(--lp-font-size-300); + font-weight: var(--lp-font-weight-medium); + transition: background-color 0.2s ease; +} + +.streaming-toggle-button.streaming { + background-color: var(--lp-color-blue-600); +} + +.streaming-toggle-button.not-streaming { + background-color: var(--lp-color-gray-600); +} + +.streaming-toggle-button:hover { + opacity: 0.9; +} + +.streaming-toggle-button:active { + transform: translateY(1px); +} From 987639b8d21700f42b543769ccdf486374d3dd93 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 14:33:24 -0400 Subject: [PATCH 48/96] Fix linting --- internal/dev_server/events_db/testevent.json | 2 +- internal/dev_server/model/event_store.go | 2 +- internal/dev_server/ui/src/RouteSelector.tsx | 2 +- internal/dev_server/ui/src/types.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/dev_server/events_db/testevent.json b/internal/dev_server/events_db/testevent.json index 845fb2c73..dddab844b 100644 --- a/internal/dev_server/events_db/testevent.json +++ b/internal/dev_server/events_db/testevent.json @@ -60,4 +60,4 @@ ] } } -} \ No newline at end of file +} diff --git a/internal/dev_server/model/event_store.go b/internal/dev_server/model/event_store.go index 59b2a4dd9..45dfc10bf 100644 --- a/internal/dev_server/model/event_store.go +++ b/internal/dev_server/model/event_store.go @@ -11,7 +11,7 @@ import ( type eventStoreKey string -const ctxKeyEventStore = ctxKey("model.EventStore") +const ctxKeyEventStore = eventStoreKey("model.EventStore") //go:generate go run go.uber.org/mock/mockgen -destination mocks/event_store.go -package mocks . EventStore diff --git a/internal/dev_server/ui/src/RouteSelector.tsx b/internal/dev_server/ui/src/RouteSelector.tsx index f72274a2b..6a72cf1d8 100644 --- a/internal/dev_server/ui/src/RouteSelector.tsx +++ b/internal/dev_server/ui/src/RouteSelector.tsx @@ -49,4 +49,4 @@ const RouteSelector = () => { ); }; -export default RouteSelector; \ No newline at end of file +export default RouteSelector; diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index 32ff17ac1..bb096e976 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -45,4 +45,4 @@ export interface EventData { id: string; timestamp: number; data: SummaryEventPayload | FeatureEventPayload | IndexEventPayload | GenericEventPayload; -} \ No newline at end of file +} From 53a37af4ea351f65c5e2a8e6d03f75294eb1ac8b Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 11:45:44 -0700 Subject: [PATCH 49/96] add streaming button --- internal/dev_server/ui/src/EventsPage.tsx | 30 ++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index 5bb164162..8aacc65ef 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -126,6 +126,9 @@ const EventsPage = ({ limit = 1000 }: Props) => { const [events, setEvents] = useState([]); const [notification, setNotification] = useState(null); + const [isStreaming, setIsStreaming] = useState(true); + const [backlog, setBacklog] = useState([]); + const showNotification = (message: string) => { setNotification(message); setTimeout(() => { @@ -136,7 +139,7 @@ const EventsPage = ({ limit = 1000 }: Props) => { useEffect(() => { const eventSource = new EventSource(apiRoute('/events/tee')); - eventSource.addEventListener('put', (event) => { + eventSource.addEventListener('put', (event: MessageEvent) => { if (!event.data || event.data.trim() === '') { return; } @@ -154,18 +157,39 @@ const EventsPage = ({ limit = 1000 }: Props) => { timestamp: Date.now(), data: parsed }; - setEvents(prevEvents => [newEvent, ...prevEvents].slice(0, limit)); + + if (isStreaming) { + setEvents(prevEvents => [newEvent, ...prevEvents].slice(0, limit)); + } else { + setBacklog(prevBacklog => [newEvent, ...prevBacklog].slice(0, limit)); + } }); return () => { console.log('closing event source'); eventSource.close(); }; - }, []); + }, [isStreaming, limit]); + + const toggleStreaming = (newStreamingState: boolean) => { + setIsStreaming(newStreamingState); + + if (newStreamingState && backlog.length > 0) { + // Flush backlog into events when turning streaming back on + setEvents(prevEvents => [...backlog, ...prevEvents].slice(0, limit)); + setBacklog([]); + } + }; return (

Events Stream (limit: {limit})

+ From c5fa466553eadfc5e6f68aa9571faf426bed3943 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 11:48:25 -0700 Subject: [PATCH 50/96] timestamp fallback --- internal/dev_server/ui/src/EventsPage.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index 8aacc65ef..d8f76dc9f 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -112,7 +112,14 @@ const renderEvent = (event: EventData, showNotification: (message: string) => vo default: return [ - + From 6f3c80f0547c05e37d701d792656cb5e6de2bd64 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 11:51:02 -0700 Subject: [PATCH 51/96] rename key to target --- internal/dev_server/ui/src/EventsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index d8f76dc9f..b28a83ad5 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -202,7 +202,7 @@ const EventsPage = ({ limit = 1000 }: Props) => { - + From e35caeb8a7945c0b346346168039e1cbb8fd3898 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 12:09:15 -0700 Subject: [PATCH 52/96] refactor events table --- internal/dev_server/ui/src/EventsPage.tsx | 166 +----------------- internal/dev_server/ui/src/EventsTable.tsx | 186 +++++++++++++++++++++ 2 files changed, 189 insertions(+), 163 deletions(-) create mode 100644 internal/dev_server/ui/src/EventsTable.tsx diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index b28a83ad5..b25b532de 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -2,146 +2,16 @@ import { useEffect, useState } from "react"; import { apiRoute } from "./util"; import { EventData } from "./types"; import { Icon } from "@launchpad-ui/icons"; +import EventsTable from "./EventsTable"; type Props = { limit?: number; }; -const clipboardLink = (linkText: string, value: string, showNotification: (message: string) => void) => { - return ( - { - e.preventDefault(); - navigator.clipboard.writeText(value).then(() => { - showNotification("Copied to clipboard!"); - }).catch(() => { - showNotification("Failed to copy to clipboard"); - }); - }} - > - {linkText} - - ); -} - -const summaryRows = (summaryEvent: EventData, showNotification: (message: string) => void) => { - let rows = []; - for (const [key, value] of Object.entries((summaryEvent.data as any).features)) { - const rowId = summaryEvent.id + key; - const counters = (value as any).counters || []; - - for (const counter of counters) { - rows.push( - - - - - - - - ); - } - } - - return rows; -} - -const indexRows = (indexEvent: EventData, showNotification: (message: string) => void) => { - let eventText; - if (indexEvent.data.context) { - eventText = (indexEvent.data.context?.kind || 'unknown') + ' context'; - } else if (indexEvent.data.user) { - eventText = (indexEvent.data.user.key || 'unknown') + ' user'; - } - else { - eventText = 'unknown context'; - } - - return [ - - - - - - - - ] -} - -const featureRows = (featureEvent: EventData, showNotification: (message: string) => void) => { - const data = featureEvent.data as any; // Type assertion for feature event - const eventText = `evaluated as ${String(data.value)}`; - - return [ - - - - - - - - ]; -} - -const customRows = (event: EventData, showNotification: (message: string) => void) => { - return [ - - - - - - - , - ]; -} - - -// Return array of s: -// Time, Type, Key, Event, ViewAttributes -const renderEvent = (event: EventData, showNotification: (message: string) => void) => { - switch (event.data.kind) { - case 'summary': - return summaryRows(event, showNotification); - case 'index': - return indexRows(event, showNotification); - case 'feature': - return featureRows(event, showNotification); - case 'custom': - return customRows(event, showNotification); - default: - return [ - - - - - - - , - ]; - } -}; - const EventsPage = ({ limit = 1000 }: Props) => { const [events, setEvents] = useState([]); - const [notification, setNotification] = useState(null); - - const [isStreaming, setIsStreaming] = useState(true); const [backlog, setBacklog] = useState([]); - - const showNotification = (message: string) => { - setNotification(message); - setTimeout(() => { - setNotification(null); - }, 1500); - }; + const [isStreaming, setIsStreaming] = useState(true); useEffect(() => { const eventSource = new EventSource(apiRoute('/events/tee')); @@ -188,37 +58,7 @@ const EventsPage = ({ limit = 1000 }: Props) => { } }; - return ( -
-

Events Stream (limit: {limit})

- -
{event.timestamp}{(() => { + try { + const date = new Date(event.timestamp); + return isNaN(date.getTime()) ? event.timestamp : date.toLocaleTimeString(); + } catch { + return event.timestamp; + } + })()} {event.data.kind}
Time TypeKeyTarget Event Link
{new Date(summaryEvent.timestamp).toLocaleTimeString()}summary {key}evaluated as {String(counter.value)}{clipboardLink('Copy to clipboard', JSON.stringify(summaryEvent.data), showNotification)}
{new Date(indexEvent.timestamp).toLocaleTimeString()}index {JSON.stringify(indexEvent.data).length} bytes{eventText}{clipboardLink('Copy to clipboard', JSON.stringify(indexEvent.data), showNotification)}
{new Date(featureEvent.timestamp).toLocaleTimeString()}feature{data.key || 'unknown'}{eventText}{clipboardLink('Copy to clipboard', JSON.stringify(featureEvent.data), showNotification)}
{new Date(event.timestamp).toLocaleTimeString()}{event.data.kind} {event.data.key || 'unknown'}value is {(event.data as any).metricValue}{clipboardLink('Copy to clipboard', JSON.stringify(event.data), showNotification)}
{(() => { - try { - const date = new Date(event.timestamp); - return isNaN(date.getTime()) ? event.timestamp : date.toLocaleTimeString(); - } catch { - return event.timestamp; - } - })()}{event.data.kind}{clipboardLink('Copy to clipboard', JSON.stringify(event.data), showNotification)}
- - - - - - - - - - - {events.map(event => renderEvent(event, showNotification))} - -
TimeTypeTargetEventLink
- {events.length === 0 &&

No events received yet...

} - {notification && ( -
- {notification} -
- )} -
- ); + return ; }; export default EventsPage; diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx new file mode 100644 index 000000000..9932d773b --- /dev/null +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -0,0 +1,186 @@ +import { EventData } from "./types"; +import { Icon } from "@launchpad-ui/icons"; +import { useState } from "react"; + +type Props = { + events: EventData[]; + limit: number; + onToggleStreaming?: (newStreamingState: boolean) => void; +}; + +const clipboardLink = (linkText: string, value: string, showNotification: (message: string) => void) => { + return ( + { + e.preventDefault(); + navigator.clipboard.writeText(value).then(() => { + showNotification("Copied to clipboard!"); + }).catch(() => { + showNotification("Failed to copy to clipboard"); + }); + }} + > + {linkText} + + ); +} + +const summaryRows = (summaryEvent: EventData, showNotification: (message: string) => void) => { + let rows = []; + for (const [key, value] of Object.entries((summaryEvent.data as any).features)) { + const rowId = summaryEvent.id + key; + const counters = (value as any).counters || []; + + for (const counter of counters) { + rows.push( + + {new Date(summaryEvent.timestamp).toLocaleTimeString()} + summary + {key} + evaluated as {String(counter.value)} + {clipboardLink('Copy to clipboard', JSON.stringify(summaryEvent.data), showNotification)} + + ); + } + } + + return rows; +} + +const indexRows = (indexEvent: EventData, showNotification: (message: string) => void) => { + let eventText; + if (indexEvent.data.context) { + eventText = (indexEvent.data.context?.kind || 'unknown') + ' context'; + } else if (indexEvent.data.user) { + eventText = (indexEvent.data.user.key || 'unknown') + ' user'; + } + else { + eventText = 'unknown context'; + } + + return [ + + {new Date(indexEvent.timestamp).toLocaleTimeString()} + index + {JSON.stringify(indexEvent.data).length} bytes + {eventText} + {clipboardLink('Copy to clipboard', JSON.stringify(indexEvent.data), showNotification)} + + ] +} + +const featureRows = (featureEvent: EventData, showNotification: (message: string) => void) => { + const data = featureEvent.data as any; // Type assertion for feature event + const eventText = `evaluated as ${String(data.value)}`; + + return [ + + {new Date(featureEvent.timestamp).toLocaleTimeString()} + feature + {data.key || 'unknown'} + {eventText} + {clipboardLink('Copy to clipboard', JSON.stringify(featureEvent.data), showNotification)} + + ]; +} + +const customRows = (event: EventData, showNotification: (message: string) => void) => { + return [ + + {new Date(event.timestamp).toLocaleTimeString()} + {event.data.kind} + {event.data.key || 'unknown'} + value is {(event.data as any).metricValue} + {clipboardLink('Copy to clipboard', JSON.stringify(event.data), showNotification)} + , + ]; +} + + +// Return array of s: +// Time, Type, Key, Event, ViewAttributes +const renderEvent = (event: EventData, showNotification: (message: string) => void) => { + switch (event.data.kind) { + case 'summary': + return summaryRows(event, showNotification); + case 'index': + return indexRows(event, showNotification); + case 'feature': + return featureRows(event, showNotification); + case 'custom': + return customRows(event, showNotification); + default: + return [ + + {(() => { + try { + const date = new Date(event.timestamp); + return isNaN(date.getTime()) ? event.timestamp : date.toLocaleTimeString(); + } catch { + return event.timestamp; + } + })()} + {event.data.kind} + + + {clipboardLink('Copy to clipboard', JSON.stringify(event.data), showNotification)} + , + ]; + } +}; + +const EventsTable = ({ + events, + limit, + onToggleStreaming +}: Props) => { + const [notification, setNotification] = useState(null); + const [isStreaming, setIsStreaming] = useState(true); + + const handleToggleStreaming = (newStreamingState: boolean) => { + setIsStreaming(newStreamingState); + onToggleStreaming?.(newStreamingState); + }; + + const showNotification = (message: string) => { + setNotification(message); + setTimeout(() => { + setNotification(null); + }, 1500); + }; + + return ( +
+

Events Stream (limit: {limit})

+ + + + + + + + + + + + + {events.map(event => renderEvent(event, showNotification))} + +
TimeTypeTargetEventLink
+ {events.length === 0 &&

No events received yet...

} + {notification && ( +
+ {notification} +
+ )} +
+ ); +}; + +export default EventsTable; \ No newline at end of file From 2e7de067032250d0b8e5e252c79cee3e00cb28b6 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 12:10:37 -0700 Subject: [PATCH 53/96] hideButtonSometimes --- internal/dev_server/ui/src/EventsTable.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 9932d773b..89965726a 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -153,12 +153,14 @@ const EventsTable = ({ return (

Events Stream (limit: {limit})

- + {onToggleStreaming && ( + + )} From 6fc04dd64aed71b56b27e68db77bfc69efcc3253 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 15:15:50 -0400 Subject: [PATCH 54/96] Up the limit --- internal/dev_server/api/get_debug_session_events.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/dev_server/api/get_debug_session_events.go b/internal/dev_server/api/get_debug_session_events.go index 2b92f9430..47138773a 100644 --- a/internal/dev_server/api/get_debug_session_events.go +++ b/internal/dev_server/api/get_debug_session_events.go @@ -20,10 +20,10 @@ func (s server) GetDebugSessionEvents(ctx context.Context, request GetDebugSessi } // Validate parameters - if limit < 1 || limit > 1000 { + if limit < 1 || limit > 10000 { return GetDebugSessionEvents400JSONResponse{ErrorResponseJSONResponse{ Code: "invalid_parameter", - Message: "limit must be between 1 and 1000", + Message: "limit must be between 1 and 10000", }}, nil } From 81c8c08e8052dc62aab56d5ad4dd13d1c023dbc3 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 12:15:59 -0700 Subject: [PATCH 55/96] remove limit --- internal/dev_server/ui/src/EventsPage.tsx | 2 +- internal/dev_server/ui/src/EventsTable.tsx | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index b25b532de..fd638ac49 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -58,7 +58,7 @@ const EventsPage = ({ limit = 1000 }: Props) => { } }; - return ; + return ; }; export default EventsPage; diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 89965726a..b280a87a0 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -4,7 +4,6 @@ import { useState } from "react"; type Props = { events: EventData[]; - limit: number; onToggleStreaming?: (newStreamingState: boolean) => void; }; @@ -132,7 +131,6 @@ const renderEvent = (event: EventData, showNotification: (message: string) => vo const EventsTable = ({ events, - limit, onToggleStreaming }: Props) => { const [notification, setNotification] = useState(null); @@ -152,7 +150,7 @@ const EventsTable = ({ return (
-

Events Stream (limit: {limit})

+

Events Stream

{onToggleStreaming && ( + + + ); + } + + return ( + + + Debug Sessions + + {totalCount} total session{totalCount !== 1 ? 's' : ''} + + + + {debugSessions.length === 0 ? ( + + + + No debug sessions found + + + + Debug sessions will appear here when events are captured + + + + ) : ( +
+
+ + + + + + + + + + {debugSessions.map((session, index) => ( + + + + + + + ))} + +
+ Session Key + + Created At + + Event Count + + Actions +
+ + {session.key} + + + + {formatDate(session.written_at)} + + + + {session.event_count.toLocaleString()} + + + + + +
+
+ )} +
+ ); +}; + +export default DebugSessionsPage; diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index b280a87a0..f6f2e9fa6 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -51,8 +51,8 @@ const indexRows = (indexEvent: EventData, showNotification: (message: string) => let eventText; if (indexEvent.data.context) { eventText = (indexEvent.data.context?.kind || 'unknown') + ' context'; - } else if (indexEvent.data.user) { - eventText = (indexEvent.data.user.key || 'unknown') + ' user'; + } else if ((indexEvent.data as any).user) { + eventText = ((indexEvent.data as any).user.key || 'unknown') + ' user'; } else { eventText = 'unknown context'; diff --git a/internal/dev_server/ui/src/RouteSelector.tsx b/internal/dev_server/ui/src/RouteSelector.tsx index 6a72cf1d8..6831792db 100644 --- a/internal/dev_server/ui/src/RouteSelector.tsx +++ b/internal/dev_server/ui/src/RouteSelector.tsx @@ -9,7 +9,8 @@ const RouteSelector = () => { const options = [ { key: '/ui/flags', label: 'Flags' }, - { key: '/ui/events', label: 'Events' } + { key: '/ui/events', label: 'Events' }, + { key: '/ui/debug-sessions', label: 'Debug Sessions' } ]; const currentPath = location.pathname === '/' ? '/ui' : location.pathname; diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index bb096e976..faf2ba466 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -46,3 +46,15 @@ export interface EventData { timestamp: number; data: SummaryEventPayload | FeatureEventPayload | IndexEventPayload | GenericEventPayload; } + +export interface DebugSession { + key: string; + written_at: string; + event_count: number; +} + +export interface DebugSessionsPage { + sessions: DebugSession[]; + total_count: number; + has_more: boolean; +} From 49113c4d9c390936d4c60b62c5c63898995a5ab1 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 15:34:35 -0400 Subject: [PATCH 57/96] Vibes: add debug sessions page --- internal/dev_server/ui/src/App.tsx | 2 + .../ui/src/DebugSessionEventsPage.tsx | 153 ++++++++++++++++++ .../dev_server/ui/src/DebugSessionsPage.tsx | 43 +++-- internal/dev_server/ui/src/types.ts | 24 +++ 4 files changed, 213 insertions(+), 9 deletions(-) create mode 100644 internal/dev_server/ui/src/DebugSessionEventsPage.tsx diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx index a7e7de60a..8238dcbe4 100644 --- a/internal/dev_server/ui/src/App.tsx +++ b/internal/dev_server/ui/src/App.tsx @@ -5,6 +5,7 @@ import RouteSelector from './RouteSelector.tsx'; import FlagsPage from './FlagsPage.tsx'; import EventsPage from './EventsPage.tsx'; import DebugSessionsPage from './DebugSessionsPage.tsx'; +import DebugSessionEventsPage from './DebugSessionEventsPage.tsx'; function App() { return ( @@ -35,6 +36,7 @@ function App() { } /> } /> } /> + } />
diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx new file mode 100644 index 000000000..d2008a39a --- /dev/null +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -0,0 +1,153 @@ +import { useEffect, useState } from "react"; +import { useParams, useNavigate } from "react-router"; +import { apiRoute } from "./util"; +import { ApiEventsPage, EventData, convertApiEventToEventData } from "./types"; +import { Box, Alert } from "@launchpad-ui/core"; +import { Heading, Text, ProgressBar, Button } from "@launchpad-ui/components"; +import { Icon } from "@launchpad-ui/icons"; +import EventsTable from "./EventsTable"; + +const DebugSessionEventsPage = () => { + const { debugSessionKey } = useParams<{ debugSessionKey: string }>(); + const navigate = useNavigate(); + const [events, setEvents] = useState([]); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + const [totalCount, setTotalCount] = useState(0); + + const fetchEvents = async () => { + if (!debugSessionKey) { + setError("Debug session key is required"); + setLoading(false); + return; + } + + try { + setLoading(true); + setError(null); + + const response = await fetch(apiRoute(`/dev/debug-sessions/${encodeURIComponent(debugSessionKey)}/events?limit=1000`)); + + if (!response.ok) { + throw new Error(`Failed to fetch events: ${response.status} ${response.statusText}`); + } + + const data: ApiEventsPage = await response.json(); + const convertedEvents = data.events.map(convertApiEventToEventData); + setEvents(convertedEvents); + setTotalCount(data.total_count); + } catch (err) { + setError(err instanceof Error ? err.message : "An unknown error occurred"); + } finally { + setLoading(false); + } + }; + + useEffect(() => { + fetchEvents(); + }, [debugSessionKey]); + + const handleBackToSessions = () => { + navigate("/ui/debug-sessions"); + }; + + if (loading) { + return ( + + + + + Debug Session Events + + + Session: {debugSessionKey} + + + + + + + Loading events... + + + ); + } + + if (error) { + return ( + + + + + Debug Session Events + + + Session: {debugSessionKey} + + + + + Error: {error} + + + + + + + ); + } + + return ( + + + + + + + + Debug Session Events + + + Session: {debugSessionKey} + + + + + {totalCount} total event{totalCount !== 1 ? 's' : ''} + + + + {events.length === 0 ? ( + + + + No events found for this debug session + + + + Events will appear here when they are captured for this session + + + + ) : ( + + )} + + ); +}; + +export default DebugSessionEventsPage; diff --git a/internal/dev_server/ui/src/DebugSessionsPage.tsx b/internal/dev_server/ui/src/DebugSessionsPage.tsx index 49b135def..a144137b0 100644 --- a/internal/dev_server/ui/src/DebugSessionsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionsPage.tsx @@ -1,4 +1,5 @@ import { useEffect, useState } from "react"; +import { useNavigate } from "react-router"; import { apiRoute } from "./util"; import { DebugSession, DebugSessionsPage as DebugSessionsPageType } from "./types"; import { Box, CopyToClipboard, Alert } from "@launchpad-ui/core"; @@ -6,6 +7,7 @@ import { Heading, Text, ProgressBar, Button } from "@launchpad-ui/components"; import { Icon } from "@launchpad-ui/icons"; const DebugSessionsPage = () => { + const navigate = useNavigate(); const [debugSessions, setDebugSessions] = useState([]); const [loading, setLoading] = useState(true); const [error, setError] = useState(null); @@ -45,6 +47,10 @@ const DebugSessionsPage = () => { } }; + const handleSessionClick = (sessionKey: string) => { + navigate(`/ui/debug-sessions/${encodeURIComponent(sessionKey)}/events`); + }; + if (loading) { return ( @@ -112,13 +118,19 @@ const DebugSessionsPage = () => { - - @@ -156,9 +168,22 @@ const DebugSessionsPage = () => { }} > - - + + ] From 7e2bfd9b1e06bc112f66adfcdc2c100ebe13ec95 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 13:04:09 -0700 Subject: [PATCH 60/96] remove back link for debug session --- .../ui/src/DebugSessionEventsPage.tsx | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx index d2008a39a..bccfe3229 100644 --- a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -47,19 +47,9 @@ const DebugSessionEventsPage = () => { fetchEvents(); }, [debugSessionKey]); - const handleBackToSessions = () => { - navigate("/ui/debug-sessions"); - }; - if (loading) { return ( - - - Debug Session Events @@ -79,12 +69,6 @@ const DebugSessionEventsPage = () => { if (error) { return ( - - - Debug Session Events @@ -105,12 +89,6 @@ const DebugSessionEventsPage = () => { return ( - - - From ae1a73f9c1fda0b46e0b659e7e8acab661050a29 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 13:05:57 -0700 Subject: [PATCH 61/96] css --- internal/dev_server/ui/src/App.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/internal/dev_server/ui/src/App.css b/internal/dev_server/ui/src/App.css index afea2f983..87c37f481 100644 --- a/internal/dev_server/ui/src/App.css +++ b/internal/dev_server/ui/src/App.css @@ -161,6 +161,22 @@ code.has-override { background-color: var(--lp-color-blue-100); } +/* Dark mode adjustments for copy links */ +@media (prefers-color-scheme: dark) { + .events-table td a { + color: var(--lp-color-blue-300); + } + + .events-table td a:hover { + background-color: var(--lp-color-blue-900); + color: var(--lp-color-blue-200); + } + + .events-table td a:active { + background-color: var(--lp-color-blue-800); + } +} + /* Center the copy link in its cell */ .events-table td:last-child { text-align: center; From 04506c90e668f835ed5807e1344a6bf0685aaf45 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 13:09:00 -0700 Subject: [PATCH 62/96] bigger boxes --- internal/dev_server/ui/src/DebugSessionEventsPage.tsx | 6 +++--- internal/dev_server/ui/src/DebugSessionsPage.tsx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx index bccfe3229..f809d6646 100644 --- a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -49,7 +49,7 @@ const DebugSessionEventsPage = () => { if (loading) { return ( - + Debug Session Events @@ -68,7 +68,7 @@ const DebugSessionEventsPage = () => { if (error) { return ( - + Debug Session Events @@ -88,7 +88,7 @@ const DebugSessionEventsPage = () => { } return ( - + diff --git a/internal/dev_server/ui/src/DebugSessionsPage.tsx b/internal/dev_server/ui/src/DebugSessionsPage.tsx index a144137b0..7407becfd 100644 --- a/internal/dev_server/ui/src/DebugSessionsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionsPage.tsx @@ -53,7 +53,7 @@ const DebugSessionsPage = () => { if (loading) { return ( - + Debug Sessions @@ -67,7 +67,7 @@ const DebugSessionsPage = () => { if (error) { return ( - + Debug Sessions @@ -82,7 +82,7 @@ const DebugSessionsPage = () => { } return ( - + Debug Sessions From e1bd882989cf7392cb7f572e61a14b88f03df9b1 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 13:10:47 -0700 Subject: [PATCH 63/96] handle empty list --- internal/dev_server/ui/src/DebugSessionEventsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx index f809d6646..42939d741 100644 --- a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -33,7 +33,7 @@ const DebugSessionEventsPage = () => { } const data: ApiEventsPage = await response.json(); - const convertedEvents = data.events.map(convertApiEventToEventData); + const convertedEvents = data.events?.map(convertApiEventToEventData) || []; setEvents(convertedEvents); setTotalCount(data.total_count); } catch (err) { From 63501c02db96f5d1d20b90b62e99dc00039ee3c0 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 15:54:19 -0400 Subject: [PATCH 64/96] Add debug session deletion --- internal/dev_server/events_db/sqlite.go | 9 +++++++++ internal/dev_server/events_db/sqlite_test.go | 9 +++++++++ internal/dev_server/model/event_store.go | 1 + 3 files changed, 19 insertions(+) diff --git a/internal/dev_server/events_db/sqlite.go b/internal/dev_server/events_db/sqlite.go index 6c8a61347..c5b9f2585 100644 --- a/internal/dev_server/events_db/sqlite.go +++ b/internal/dev_server/events_db/sqlite.go @@ -169,6 +169,11 @@ func (s *Sqlite) QueryDebugSessions(ctx context.Context, limit int, offset int) }, nil } +func (s *Sqlite) DeleteDebugSession(ctx context.Context, debugSessionKey string) error { + _, err := s.database.ExecContext(ctx, `DELETE FROM debug_session WHERE key = ?`, debugSessionKey) + return err +} + var _ model.EventStore = &Sqlite{} func NewSqlite(ctx context.Context, dbPath string) (*Sqlite, error) { @@ -179,6 +184,10 @@ func NewSqlite(ctx context.Context, dbPath string) (*Sqlite, error) { return &Sqlite{}, err } store.database = db + _, err = db.Exec("PRAGMA foreign_keys = ON") + if err != nil { + return &Sqlite{}, err + } err = store.runMigrations(ctx) if err != nil { return &Sqlite{}, err diff --git a/internal/dev_server/events_db/sqlite_test.go b/internal/dev_server/events_db/sqlite_test.go index f90d62f88..763f8596e 100644 --- a/internal/dev_server/events_db/sqlite_test.go +++ b/internal/dev_server/events_db/sqlite_test.go @@ -155,4 +155,13 @@ func TestDBFunctions(t *testing.T) { require.False(t, page2.HasMore) }) + t.Run("DeleteDebugSession succeeds", func(t *testing.T) { + err := store.DeleteDebugSession(ctx, debugSessionKey) + require.NoError(t, err) + + result, err := store.QueryEvents(ctx, debugSessionKey, nil, 10, 0) + require.NoError(t, err) + require.Len(t, result.Events, 0) + + }) } diff --git a/internal/dev_server/model/event_store.go b/internal/dev_server/model/event_store.go index 45dfc10bf..55450ea08 100644 --- a/internal/dev_server/model/event_store.go +++ b/internal/dev_server/model/event_store.go @@ -49,6 +49,7 @@ type EventStore interface { WriteEvent(ctx context.Context, debugSessionKey string, kind string, data json.RawMessage) error QueryEvents(ctx context.Context, debugSessionKey string, kind *string, limit int, offset int) (*EventsPage, error) QueryDebugSessions(ctx context.Context, limit int, offset int) (*DebugSessionsPage, error) + DeleteDebugSession(ctx context.Context, debugSessionKey string) error } func ContextWithEventStore(ctx context.Context, store EventStore) context.Context { From 6871f12ec48c6b4d4a4af4089abe147ca62630eb Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 16:02:29 -0400 Subject: [PATCH 65/96] Add delete endpoint --- internal/dev_server/api/api.yaml | 16 ++++ .../dev_server/api/delete_debug_session.go | 25 ++++++ internal/dev_server/api/server.gen.go | 84 +++++++++++++++++++ .../dev_server/model/mocks/event_store.go | 14 ++++ 4 files changed, 139 insertions(+) create mode 100644 internal/dev_server/api/delete_debug_session.go diff --git a/internal/dev_server/api/api.yaml b/internal/dev_server/api/api.yaml index 21aef8082..0d4454cee 100644 --- a/internal/dev_server/api/api.yaml +++ b/internal/dev_server/api/api.yaml @@ -216,6 +216,22 @@ paths: $ref: "#/components/schemas/DebugSessionsPage" 400: $ref: "#/components/responses/ErrorResponse" + /dev/debug-sessions/{debugSessionKey}: + delete: + operationId: deleteDebugSession + summary: delete a specific debug session and all its events + parameters: + - name: debugSessionKey + in: path + required: true + schema: + type: string + description: unique identifier for the debug session + responses: + 204: + description: OK. Debug session and all associated events were deleted + 404: + $ref: "#/components/responses/ErrorResponse" /dev/debug-sessions/{debugSessionKey}/events: get: operationId: getDebugSessionEvents diff --git a/internal/dev_server/api/delete_debug_session.go b/internal/dev_server/api/delete_debug_session.go new file mode 100644 index 000000000..9227e0add --- /dev/null +++ b/internal/dev_server/api/delete_debug_session.go @@ -0,0 +1,25 @@ +package api + +import ( + "context" + + "github.com/launchdarkly/ldcli/internal/dev_server/model" +) + +func (s server) DeleteDebugSession(ctx context.Context, request DeleteDebugSessionRequestObject) (DeleteDebugSessionResponseObject, error) { + eventStore := model.EventStoreFromContext(ctx) + if eventStore == nil { + return DeleteDebugSession404JSONResponse{ErrorResponseJSONResponse{ + Code: "event_store_not_found", + Message: "Event store not available", + }}, nil + } + + // Delete the debug session + err := eventStore.DeleteDebugSession(ctx, request.DebugSessionKey) + if err != nil { + return nil, err + } + + return DeleteDebugSession204Response{}, nil +} diff --git a/internal/dev_server/api/server.gen.go b/internal/dev_server/api/server.gen.go index b2c50e1e1..e7747fd16 100644 --- a/internal/dev_server/api/server.gen.go +++ b/internal/dev_server/api/server.gen.go @@ -253,6 +253,9 @@ type ServerInterface interface { // list all debug sessions with event counts // (GET /dev/debug-sessions) GetDebugSessions(w http.ResponseWriter, r *http.Request, params GetDebugSessionsParams) + // delete a specific debug session and all its events + // (DELETE /dev/debug-sessions/{debugSessionKey}) + DeleteDebugSession(w http.ResponseWriter, r *http.Request, debugSessionKey string) // get events for a specific debug session // (GET /dev/debug-sessions/{debugSessionKey}/events) GetDebugSessionEvents(w http.ResponseWriter, r *http.Request, debugSessionKey string, params GetDebugSessionEventsParams) @@ -357,6 +360,31 @@ func (siw *ServerInterfaceWrapper) GetDebugSessions(w http.ResponseWriter, r *ht handler.ServeHTTP(w, r) } +// DeleteDebugSession operation middleware +func (siw *ServerInterfaceWrapper) DeleteDebugSession(w http.ResponseWriter, r *http.Request) { + + var err error + + // ------------- Path parameter "debugSessionKey" ------------- + var debugSessionKey string + + err = runtime.BindStyledParameterWithOptions("simple", "debugSessionKey", mux.Vars(r)["debugSessionKey"], &debugSessionKey, runtime.BindStyledParameterOptions{Explode: false, Required: true}) + if err != nil { + siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "debugSessionKey", Err: err}) + return + } + + handler := http.Handler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + siw.Handler.DeleteDebugSession(w, r, debugSessionKey) + })) + + for _, middleware := range siw.HandlerMiddlewares { + handler = middleware(handler) + } + + handler.ServeHTTP(w, r) +} + // GetDebugSessionEvents operation middleware func (siw *ServerInterfaceWrapper) GetDebugSessionEvents(w http.ResponseWriter, r *http.Request) { @@ -812,6 +840,8 @@ func HandlerWithOptions(si ServerInterface, options GorillaServerOptions) http.H r.HandleFunc(options.BaseURL+"/dev/debug-sessions", wrapper.GetDebugSessions).Methods("GET") + r.HandleFunc(options.BaseURL+"/dev/debug-sessions/{debugSessionKey}", wrapper.DeleteDebugSession).Methods("DELETE") + r.HandleFunc(options.BaseURL+"/dev/debug-sessions/{debugSessionKey}/events", wrapper.GetDebugSessionEvents).Methods("GET") r.HandleFunc(options.BaseURL+"/dev/projects", wrapper.GetProjects).Methods("GET") @@ -926,6 +956,31 @@ func (response GetDebugSessions400JSONResponse) VisitGetDebugSessionsResponse(w return json.NewEncoder(w).Encode(response) } +type DeleteDebugSessionRequestObject struct { + DebugSessionKey string `json:"debugSessionKey"` +} + +type DeleteDebugSessionResponseObject interface { + VisitDeleteDebugSessionResponse(w http.ResponseWriter) error +} + +type DeleteDebugSession204Response struct { +} + +func (response DeleteDebugSession204Response) VisitDeleteDebugSessionResponse(w http.ResponseWriter) error { + w.WriteHeader(204) + return nil +} + +type DeleteDebugSession404JSONResponse struct{ ErrorResponseJSONResponse } + +func (response DeleteDebugSession404JSONResponse) VisitDeleteDebugSessionResponse(w http.ResponseWriter) error { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(404) + + return json.NewEncoder(w).Encode(response) +} + type GetDebugSessionEventsRequestObject struct { DebugSessionKey string `json:"debugSessionKey"` Params GetDebugSessionEventsParams @@ -1236,6 +1291,9 @@ type StrictServerInterface interface { // list all debug sessions with event counts // (GET /dev/debug-sessions) GetDebugSessions(ctx context.Context, request GetDebugSessionsRequestObject) (GetDebugSessionsResponseObject, error) + // delete a specific debug session and all its events + // (DELETE /dev/debug-sessions/{debugSessionKey}) + DeleteDebugSession(ctx context.Context, request DeleteDebugSessionRequestObject) (DeleteDebugSessionResponseObject, error) // get events for a specific debug session // (GET /dev/debug-sessions/{debugSessionKey}/events) GetDebugSessionEvents(ctx context.Context, request GetDebugSessionEventsRequestObject) (GetDebugSessionEventsResponseObject, error) @@ -1373,6 +1431,32 @@ func (sh *strictHandler) GetDebugSessions(w http.ResponseWriter, r *http.Request } } +// DeleteDebugSession operation middleware +func (sh *strictHandler) DeleteDebugSession(w http.ResponseWriter, r *http.Request, debugSessionKey string) { + var request DeleteDebugSessionRequestObject + + request.DebugSessionKey = debugSessionKey + + handler := func(ctx context.Context, w http.ResponseWriter, r *http.Request, request interface{}) (interface{}, error) { + return sh.ssi.DeleteDebugSession(ctx, request.(DeleteDebugSessionRequestObject)) + } + for _, middleware := range sh.middlewares { + handler = middleware(handler, "DeleteDebugSession") + } + + response, err := handler(r.Context(), w, r, request) + + if err != nil { + sh.options.ResponseErrorHandlerFunc(w, r, err) + } else if validResponse, ok := response.(DeleteDebugSessionResponseObject); ok { + if err := validResponse.VisitDeleteDebugSessionResponse(w); err != nil { + sh.options.ResponseErrorHandlerFunc(w, r, err) + } + } else if response != nil { + sh.options.ResponseErrorHandlerFunc(w, r, fmt.Errorf("unexpected response type: %T", response)) + } +} + // GetDebugSessionEvents operation middleware func (sh *strictHandler) GetDebugSessionEvents(w http.ResponseWriter, r *http.Request, debugSessionKey string, params GetDebugSessionEventsParams) { var request GetDebugSessionEventsRequestObject diff --git a/internal/dev_server/model/mocks/event_store.go b/internal/dev_server/model/mocks/event_store.go index 8450ca2dd..6d698d9ea 100644 --- a/internal/dev_server/model/mocks/event_store.go +++ b/internal/dev_server/model/mocks/event_store.go @@ -56,6 +56,20 @@ func (mr *MockEventStoreMockRecorder) CreateDebugSession(ctx, debugSessionKey an return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateDebugSession", reflect.TypeOf((*MockEventStore)(nil).CreateDebugSession), ctx, debugSessionKey) } +// DeleteDebugSession mocks base method. +func (m *MockEventStore) DeleteDebugSession(ctx context.Context, debugSessionKey string) error { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "DeleteDebugSession", ctx, debugSessionKey) + ret0, _ := ret[0].(error) + return ret0 +} + +// DeleteDebugSession indicates an expected call of DeleteDebugSession. +func (mr *MockEventStoreMockRecorder) DeleteDebugSession(ctx, debugSessionKey any) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteDebugSession", reflect.TypeOf((*MockEventStore)(nil).DeleteDebugSession), ctx, debugSessionKey) +} + // QueryDebugSessions mocks base method. func (m *MockEventStore) QueryDebugSessions(ctx context.Context, limit, offset int) (*model.DebugSessionsPage, error) { m.ctrl.T.Helper() From 0a1fa974a99d669d48703e32ceb27239b2d3c63d Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 16:20:43 -0400 Subject: [PATCH 66/96] Handle debug sessions --- internal/dev_server/events_db/sqlite.go | 1 + .../dev_server/ui/src/DebugSessionsPage.tsx | 111 +++++++++--------- 2 files changed, 57 insertions(+), 55 deletions(-) diff --git a/internal/dev_server/events_db/sqlite.go b/internal/dev_server/events_db/sqlite.go index c5b9f2585..a1f96705d 100644 --- a/internal/dev_server/events_db/sqlite.go +++ b/internal/dev_server/events_db/sqlite.go @@ -119,6 +119,7 @@ func (s *Sqlite) QueryDebugSessions(ctx context.Context, limit int, offset int) FROM debug_session LEFT JOIN debug_events ON debug_session.key = debug_events.debug_session_key GROUP BY debug_session.key, debug_session.written_at + HAVING event_count > 0 ORDER BY debug_session.written_at DESC LIMIT ? OFFSET ?` diff --git a/internal/dev_server/ui/src/DebugSessionsPage.tsx b/internal/dev_server/ui/src/DebugSessionsPage.tsx index 7407becfd..715396701 100644 --- a/internal/dev_server/ui/src/DebugSessionsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionsPage.tsx @@ -2,8 +2,8 @@ import { useEffect, useState } from "react"; import { useNavigate } from "react-router"; import { apiRoute } from "./util"; import { DebugSession, DebugSessionsPage as DebugSessionsPageType } from "./types"; -import { Box, CopyToClipboard, Alert } from "@launchpad-ui/core"; -import { Heading, Text, ProgressBar, Button } from "@launchpad-ui/components"; +import { Box, Alert } from "@launchpad-ui/core"; +import { Heading, Text, ProgressBar, Button, Link } from "@launchpad-ui/components"; import { Icon } from "@launchpad-ui/icons"; const DebugSessionsPage = () => { @@ -12,6 +12,7 @@ const DebugSessionsPage = () => { const [loading, setLoading] = useState(true); const [error, setError] = useState(null); const [totalCount, setTotalCount] = useState(0); + const [deletingSession, setDeletingSession] = useState(null); const fetchDebugSessions = async () => { try { @@ -51,6 +52,35 @@ const DebugSessionsPage = () => { navigate(`/ui/debug-sessions/${encodeURIComponent(sessionKey)}/events`); }; + const handleDeleteSession = async (sessionKey: string) => { + if (!confirm(`Are you sure you want to delete debug session "${sessionKey}" and all its events? This action cannot be undone.`)) { + return; + } + + try { + setDeletingSession(sessionKey); + setError(null); + + const response = await fetch(apiRoute(`/dev/debug-sessions/${encodeURIComponent(sessionKey)}`), { + method: 'DELETE', + }); + + if (!response.ok) { + if (response.status === 404) { + throw new Error('Debug session not found'); + } + throw new Error(`Failed to delete debug session: ${response.status} ${response.statusText}`); + } + + // Refresh the sessions list after successful deletion + await fetchDebugSessions(); + } catch (err) { + setError(err instanceof Error ? err.message : "An unknown error occurred while deleting the session"); + } finally { + setDeletingSession(null); + } + }; + if (loading) { return ( @@ -118,27 +148,13 @@ const DebugSessionsPage = () => {
Session Key + + (click to view events) + { }}> Event Count - Actions + Copy Key
- + diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index faf2ba466..dfae72ea9 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -58,3 +58,27 @@ export interface DebugSessionsPage { total_count: number; has_more: boolean; } + +// API Event type that matches the server response +export interface ApiEvent { + id: number; + written_at: string; + kind: string; + data: any; // Raw JSON data from the API +} + +// API EventsPage type that matches the server response +export interface ApiEventsPage { + events: ApiEvent[]; + total_count: number; + has_more: boolean; +} + +// Utility function to convert API event to UI EventData +export function convertApiEventToEventData(apiEvent: ApiEvent): EventData { + return { + id: apiEvent.id.toString(), + timestamp: new Date(apiEvent.written_at).getTime(), + data: apiEvent.data + }; +} From e505269e82a6a7fd72594aba05ef7e74770b94a0 Mon Sep 17 00:00:00 2001 From: Tom Varney Date: Wed, 6 Aug 2025 15:51:17 -0400 Subject: [PATCH 58/96] remove per event filtering --- internal/dev_server/events/base.go | 5 +++ internal/dev_server/events/filter.go | 16 --------- internal/dev_server/events/filter_test.go | 40 ----------------------- internal/dev_server/sdk/sdk_events.go | 24 ++++---------- 4 files changed, 11 insertions(+), 74 deletions(-) create mode 100644 internal/dev_server/events/base.go delete mode 100644 internal/dev_server/events/filter.go delete mode 100644 internal/dev_server/events/filter_test.go diff --git a/internal/dev_server/events/base.go b/internal/dev_server/events/base.go new file mode 100644 index 000000000..351a638f6 --- /dev/null +++ b/internal/dev_server/events/base.go @@ -0,0 +1,5 @@ +package events + +type Base struct { + Kind string `json:"kind"` +} diff --git a/internal/dev_server/events/filter.go b/internal/dev_server/events/filter.go deleted file mode 100644 index 0e77fbb83..000000000 --- a/internal/dev_server/events/filter.go +++ /dev/null @@ -1,16 +0,0 @@ -package events - -type Base struct { - Kind string `json:"kind"` -} - -type Filter struct { - Kind *string -} - -func (f Filter) Matches(e Base) bool { - if f.Kind == nil { - return true - } - return e.Kind == *f.Kind -} diff --git a/internal/dev_server/events/filter_test.go b/internal/dev_server/events/filter_test.go deleted file mode 100644 index 9f6fe6d06..000000000 --- a/internal/dev_server/events/filter_test.go +++ /dev/null @@ -1,40 +0,0 @@ -package events - -import ( - "github.com/samber/lo" - "github.com/stretchr/testify/assert" - "testing" -) - -func TestFilterMatches(t *testing.T) { - testCases := []struct { - name string - filter Filter - event Base - expected bool - }{ - { - name: "no filter matches", - filter: Filter{}, - event: Base{Kind: "kind"}, - expected: true, - }, - { - name: "filter kind matches", - filter: Filter{Kind: lo.ToPtr("kind")}, - event: Base{Kind: "kind"}, - expected: true, - }, - { - name: "filter kind does not match", - filter: Filter{Kind: lo.ToPtr("kind")}, - event: Base{Kind: "other"}, - expected: false, - }, - } - for _, tc := range testCases { - t.Run(tc.name, func(t *testing.T) { - assert.Equal(t, tc.expected, tc.filter.Matches(tc.event)) - }) - } -} diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index f2221aa9b..5fb81482e 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -3,16 +3,17 @@ package sdk import ( "context" "encoding/json" + "io" + "log" + "net/http" + "github.com/google/uuid" "github.com/launchdarkly/ldcli/internal/dev_server/events" "github.com/launchdarkly/ldcli/internal/dev_server/model" "github.com/pkg/errors" - "io" - "log" - "net/http" ) -func newSdkEventObserver(updateChan chan<- Message, ctx context.Context, filter events.Filter) sdkEventObserver { +func newSdkEventObserver(updateChan chan<- Message, ctx context.Context) sdkEventObserver { debugSessionKey := uuid.New().String() db := model.EventStoreFromContext(ctx) err := db.CreateDebugSession(ctx, debugSessionKey) @@ -23,7 +24,6 @@ func newSdkEventObserver(updateChan chan<- Message, ctx context.Context, filter debugSessionKey: debugSessionKey, ctx: ctx, updateChan: updateChan, - filter: filter, } } @@ -31,7 +31,6 @@ type sdkEventObserver struct { ctx context.Context debugSessionKey string updateChan chan<- Message - filter events.Filter } func (o sdkEventObserver) Handle(message interface{}) { @@ -47,10 +46,6 @@ func (o sdkEventObserver) Handle(message interface{}) { return } - if !o.filter.Matches(event) { - return - } - db := model.EventStoreFromContext(o.ctx) err = db.WriteEvent(o.ctx, o.debugSessionKey, event.Kind, str) @@ -93,15 +88,8 @@ func SdkEventsTeeHandler(writer http.ResponseWriter, request *http.Request) { Message{Event: TYPE_PUT, Data: []byte{}}, ) defer close(updateChan) - filter := events.Filter{} - - query := request.URL.Query() - kind := query.Get("kind") - if kind != "" { - filter.Kind = &kind - } - observerId := observers.RegisterObserver(newSdkEventObserver(updateChan, request.Context(), filter)) + observerId := observers.RegisterObserver(newSdkEventObserver(updateChan, request.Context())) defer func() { ok := observers.DeregisterObserver(observerId) if !ok { From fcf8d12cc2816e170242908a20119be96773855b Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 13:00:20 -0700 Subject: [PATCH 59/96] more parsing of context kinds --- internal/dev_server/ui/src/EventsTable.tsx | 45 +++++++++++++++++++--- 1 file changed, 39 insertions(+), 6 deletions(-) diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index f6f2e9fa6..2714c118c 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -48,22 +48,55 @@ const summaryRows = (summaryEvent: EventData, showNotification: (message: string } const indexRows = (indexEvent: EventData, showNotification: (message: string) => void) => { - let eventText; + let targetText = 'unknown'; + let iconName: + | 'person' + | 'chart-dashboard' + | 'person-outline' + | 'group' + | 'cloud' + | 'help' = 'help'; if (indexEvent.data.context) { - eventText = (indexEvent.data.context?.kind || 'unknown') + ' context'; + let context = indexEvent.data.context + switch (context.kind) { + case 'user': + targetText = 'user context'; + iconName = 'person'; + break; + case 'application': + targetText = context.key || 'unknown application'; + iconName = 'cloud'; + break; + case 'multi': + if (context.user) { + targetText = context.user.email || context.user.key || 'unknown user'; + iconName = 'person'; + } else if (context.account) { + targetText = context.account.name || context.account.key || 'unknown account'; + iconName = 'group'; + } else if (context.application) { + targetText = context.application.key || 'unknown application'; + iconName = 'cloud'; + } else { + targetText = 'multi context'; + iconName = 'chart-dashboard'; + } + break; + } } else if ((indexEvent.data as any).user) { - eventText = ((indexEvent.data as any).user.key || 'unknown') + ' user'; + targetText = ((indexEvent.data as any).user.key || 'unknown') + ' user'; + iconName = 'person-outline'; } else { - eventText = 'unknown context'; + targetText = 'unknown'; } return [
{new Date(indexEvent.timestamp).toLocaleTimeString()} index {JSON.stringify(indexEvent.data).length} bytes{eventText} {targetText}indexed {JSON.stringify(indexEvent.data).length} bytes {clipboardLink('Copy to clipboard', JSON.stringify(indexEvent.data), showNotification)}
- @@ -167,28 +183,11 @@ const DebugSessionsPage = () => { borderBottom: index < debugSessions.length - 1 ? "1px solid var(--lp-color-border-ui-primary)" : "none" }} > + - ))} From 01369f5352e65de5bb949ec676a75661b7f2c9b0 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 13:24:37 -0700 Subject: [PATCH 67/96] copy button improvements --- internal/dev_server/ui/src/App.css | 47 ++++++++++++++++++++++ internal/dev_server/ui/src/EventsTable.tsx | 7 ++-- 2 files changed, 51 insertions(+), 3 deletions(-) diff --git a/internal/dev_server/ui/src/App.css b/internal/dev_server/ui/src/App.css index 87c37f481..46b61df69 100644 --- a/internal/dev_server/ui/src/App.css +++ b/internal/dev_server/ui/src/App.css @@ -216,6 +216,16 @@ code.has-override { transform: translateX(-50%) translateY(100px); } +/* Dark mode copy notification styling */ +@media (prefers-color-scheme: dark) { + .copy-notification { + background-color: var(--lp-color-blue-700, #1d4ed8); + color: var(--lp-color-gray-100, #f3f4f6); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); + } +} + + /* Streaming toggle button */ .streaming-toggle-button { margin-bottom: 16px; @@ -244,3 +254,40 @@ code.has-override { .streaming-toggle-button:active { transform: translateY(1px); } + +/* Copy button styling */ +.copy-button { + background: none; + border: none; + color: var(--lp-color-blue-600); + cursor: pointer; + text-decoration: underline; + font-size: var(--lp-font-size-200); + padding: 0; + margin: 0; + transition: color 0.2s ease; +} + +.copy-button:hover { + color: var(--lp-color-blue-700); + text-decoration: none; +} + +.copy-button:active { + color: var(--lp-color-blue-800); +} + +/* Dark mode styling for copy button */ +@media (prefers-color-scheme: dark) { + .copy-button { + color: var(--lp-color-blue-400); + } + + .copy-button:hover { + color: var(--lp-color-blue-300); + } + + .copy-button:active { + color: var(--lp-color-blue-200); + } +} diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 2714c118c..6e416574f 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -9,8 +9,9 @@ type Props = { const clipboardLink = (linkText: string, value: string, showNotification: (message: string) => void) => { return ( - { e.preventDefault(); navigator.clipboard.writeText(value).then(() => { @@ -21,7 +22,7 @@ const clipboardLink = (linkText: string, value: string, showNotification: (messa }} > {linkText} - + ); } From d7f8dcc38eaf90922a4036f8aea3865b40e4e0fb Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 16:32:43 -0400 Subject: [PATCH 68/96] Clean up empty debug session on startup --- internal/dev_server/events_db/sqlite.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/internal/dev_server/events_db/sqlite.go b/internal/dev_server/events_db/sqlite.go index a1f96705d..692ac1fed 100644 --- a/internal/dev_server/events_db/sqlite.go +++ b/internal/dev_server/events_db/sqlite.go @@ -175,6 +175,11 @@ func (s *Sqlite) DeleteDebugSession(ctx context.Context, debugSessionKey string) return err } +func (s *Sqlite) deleteOrphanedEvents(ctx context.Context) error { + _, err := s.database.ExecContext(ctx, `DELETE FROM debug_session WHERE NOT EXISTS (SELECT 1 from debug_events WHERE debug_events.debug_session_key = debug_session.key);`) + return err +} + var _ model.EventStore = &Sqlite{} func NewSqlite(ctx context.Context, dbPath string) (*Sqlite, error) { @@ -193,6 +198,10 @@ func NewSqlite(ctx context.Context, dbPath string) (*Sqlite, error) { if err != nil { return &Sqlite{}, err } + err = store.deleteOrphanedEvents(ctx) + if err != nil { + return &Sqlite{}, err + } return store, nil } From 2d1668cdc9bb6485e50dc57d4831736a7b183b87 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 14:12:32 -0700 Subject: [PATCH 69/96] add filter for debug session page --- .../ui/src/DebugSessionEventsPage.tsx | 34 ++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx index 42939d741..4817e2969 100644 --- a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -6,11 +6,14 @@ import { Box, Alert } from "@launchpad-ui/core"; import { Heading, Text, ProgressBar, Button } from "@launchpad-ui/components"; import { Icon } from "@launchpad-ui/icons"; import EventsTable from "./EventsTable"; +import { TextField, Label, Input } from "@launchpad-ui/components"; +import { Fragment } from "react"; const DebugSessionEventsPage = () => { const { debugSessionKey } = useParams<{ debugSessionKey: string }>(); const navigate = useNavigate(); const [events, setEvents] = useState([]); + const [displayedEvents, setDisplayedEvents] = useState([]); const [loading, setLoading] = useState(true); const [error, setError] = useState(null); const [totalCount, setTotalCount] = useState(0); @@ -35,6 +38,7 @@ const DebugSessionEventsPage = () => { const data: ApiEventsPage = await response.json(); const convertedEvents = data.events?.map(convertApiEventToEventData) || []; setEvents(convertedEvents); + setDisplayedEvents(convertedEvents); setTotalCount(data.total_count); } catch (err) { setError(err instanceof Error ? err.message : "An unknown error occurred"); @@ -47,6 +51,25 @@ const DebugSessionEventsPage = () => { fetchEvents(); }, [debugSessionKey]); + const handleSearchChange = (value: string) => { + setDisplayedEvents(events.filter(event => { + let search = ''; + + const appendValues = (obj: any) => { + for (const value of Object.values(obj)) { + if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { + search += String(value) + ' '; + } else if (value !== null && typeof value === 'object') { + appendValues(value); + } + } + }; + appendValues(event); + + return search.toLowerCase().includes(value.toLowerCase()); + })) + }; + if (loading) { return ( @@ -104,6 +127,15 @@ const DebugSessionEventsPage = () => { + + + + + + + {events.length === 0 ? ( { ) : ( - + )} ); From 5e0a2becaf3b3db11fb540055fee684dfde82827 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 6 Aug 2025 17:12:40 -0400 Subject: [PATCH 70/96] Don't log json raw message --- internal/dev_server/model/observer.go | 6 +++++- internal/dev_server/ui/src/DebugSessionEventsPage.tsx | 3 --- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/internal/dev_server/model/observer.go b/internal/dev_server/model/observer.go index e66c6290c..d21c1b4ec 100644 --- a/internal/dev_server/model/observer.go +++ b/internal/dev_server/model/observer.go @@ -1,6 +1,7 @@ package model import ( + "encoding/json" "log" "sync" @@ -37,7 +38,10 @@ func (o *Observers) RegisterObserver(observer Observer) uuid.UUID { } func (o *Observers) Notify(event interface{}) { - log.Printf("Notify: event %+v to observers", event) + // Dont log raw json messages + if _, ok := event.(json.RawMessage); !ok { + log.Printf("Notify: event %+v to observers", event) + } o.observers.Range(func(_, observer any) bool { observer.(Observer).Handle(event) return true diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx index 4817e2969..ce6ef8e86 100644 --- a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -122,9 +122,6 @@ const DebugSessionEventsPage = () => { - - {totalCount} total event{totalCount !== 1 ? 's' : ''} - From 4de2d8566c3f95411704d8c55b7ecb86e74b96de Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 6 Aug 2025 14:25:56 -0700 Subject: [PATCH 71/96] new search --- .../ui/src/DebugSessionEventsPage.tsx | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx index 4817e2969..a98083cd1 100644 --- a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -55,16 +55,20 @@ const DebugSessionEventsPage = () => { setDisplayedEvents(events.filter(event => { let search = ''; - const appendValues = (obj: any) => { - for (const value of Object.values(obj)) { - if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { - search += String(value) + ' '; - } else if (value !== null && typeof value === 'object') { - appendValues(value); - } + const extractValues = (obj: any): string[] => { + if (obj === null || obj === undefined) return []; + if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean') { + return [String(obj)]; } + if (Array.isArray(obj)) { + return obj.flatMap(item => extractValues(item)); + } + if (typeof obj === 'object') { + return Object.values(obj).flatMap(value => extractValues(value)); + } + return []; }; - appendValues(event); + search = extractValues(event).join(' '); return search.toLowerCase().includes(value.toLowerCase()); })) @@ -130,9 +134,9 @@ const DebugSessionEventsPage = () => { - + From a5b9ab47c8a2670540c4941aa4795988268d8ed3 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 13 Aug 2025 15:15:02 -0700 Subject: [PATCH 72/96] remove explicit any --- .../dev_server/ui/src/DebugSessionEventsPage.tsx | 7 ++----- internal/dev_server/ui/src/DebugSessionsPage.tsx | 4 ---- internal/dev_server/ui/src/EventsPage.tsx | 1 - internal/dev_server/ui/src/EventsTable.tsx | 14 +++++++------- internal/dev_server/ui/src/types.ts | 8 ++++---- 5 files changed, 13 insertions(+), 21 deletions(-) diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx index 241730ec5..8950cd72a 100644 --- a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -1,5 +1,5 @@ import { useEffect, useState } from "react"; -import { useParams, useNavigate } from "react-router"; +import { useParams } from "react-router"; import { apiRoute } from "./util"; import { ApiEventsPage, EventData, convertApiEventToEventData } from "./types"; import { Box, Alert } from "@launchpad-ui/core"; @@ -11,12 +11,10 @@ import { Fragment } from "react"; const DebugSessionEventsPage = () => { const { debugSessionKey } = useParams<{ debugSessionKey: string }>(); - const navigate = useNavigate(); const [events, setEvents] = useState([]); const [displayedEvents, setDisplayedEvents] = useState([]); const [loading, setLoading] = useState(true); const [error, setError] = useState(null); - const [totalCount, setTotalCount] = useState(0); const fetchEvents = async () => { if (!debugSessionKey) { @@ -39,7 +37,6 @@ const DebugSessionEventsPage = () => { const convertedEvents = data.events?.map(convertApiEventToEventData) || []; setEvents(convertedEvents); setDisplayedEvents(convertedEvents); - setTotalCount(data.total_count); } catch (err) { setError(err instanceof Error ? err.message : "An unknown error occurred"); } finally { @@ -55,7 +52,7 @@ const DebugSessionEventsPage = () => { setDisplayedEvents(events.filter(event => { let search = ''; - const extractValues = (obj: any): string[] => { + const extractValues = (obj: unknown): string[] => { if (obj === null || obj === undefined) return []; if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean') { return [String(obj)]; diff --git a/internal/dev_server/ui/src/DebugSessionsPage.tsx b/internal/dev_server/ui/src/DebugSessionsPage.tsx index 715396701..84200d834 100644 --- a/internal/dev_server/ui/src/DebugSessionsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionsPage.tsx @@ -48,10 +48,6 @@ const DebugSessionsPage = () => { } }; - const handleSessionClick = (sessionKey: string) => { - navigate(`/ui/debug-sessions/${encodeURIComponent(sessionKey)}/events`); - }; - const handleDeleteSession = async (sessionKey: string) => { if (!confirm(`Are you sure you want to delete debug session "${sessionKey}" and all its events? This action cannot be undone.`)) { return; diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index fd638ac49..ab1c8888a 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -1,7 +1,6 @@ import { useEffect, useState } from "react"; import { apiRoute } from "./util"; import { EventData } from "./types"; -import { Icon } from "@launchpad-ui/icons"; import EventsTable from "./EventsTable"; type Props = { diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 6e416574f..7f0cb460c 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -27,10 +27,10 @@ const clipboardLink = (linkText: string, value: string, showNotification: (messa } const summaryRows = (summaryEvent: EventData, showNotification: (message: string) => void) => { - let rows = []; - for (const [key, value] of Object.entries((summaryEvent.data as any).features)) { + const rows = []; + for (const [key, value] of Object.entries(summaryEvent.data.features || {})) { const rowId = summaryEvent.id + key; - const counters = (value as any).counters || []; + const counters = value.counters || []; for (const counter of counters) { rows.push( @@ -84,8 +84,8 @@ const indexRows = (indexEvent: EventData, showNotification: (message: string) => } break; } - } else if ((indexEvent.data as any).user) { - targetText = ((indexEvent.data as any).user.key || 'unknown') + ' user'; + } else if (indexEvent.data.user) { + targetText = (indexEvent.data.user.key || 'unknown') + ' user'; iconName = 'person-outline'; } else { @@ -104,7 +104,7 @@ const indexRows = (indexEvent: EventData, showNotification: (message: string) => } const featureRows = (featureEvent: EventData, showNotification: (message: string) => void) => { - const data = featureEvent.data as any; // Type assertion for feature event + const data = featureEvent.data; // Type assertion for feature event const eventText = `evaluated as ${String(data.value)}`; return [ @@ -124,7 +124,7 @@ const customRows = (event: EventData, showNotification: (message: string) => voi - + , ]; diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index dfae72ea9..d7d2be61c 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -6,7 +6,7 @@ export interface Environment { export interface SummaryEventPayload { kind: 'summary'; features: object; - [key: string]: any; + [key: string]: unknown; } export interface FeatureEventPayload { @@ -33,12 +33,12 @@ export interface FeatureEventPayload { export interface IndexEventPayload { kind: 'index'; user?: object; - [key: string]: any; + [key: string]: unknown; } export interface GenericEventPayload { kind: string; - [key: string]: any; + [key: string]: unknown; } export interface EventData { @@ -64,7 +64,7 @@ export interface ApiEvent { id: number; written_at: string; kind: string; - data: any; // Raw JSON data from the API + data: unknown; // Raw JSON data from the API } // API EventsPage type that matches the server response From 6d33b2b4b56b802e65c631650c3eea870a9cce5f Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 13 Aug 2025 15:31:03 -0700 Subject: [PATCH 73/96] more lint --- internal/dev_server/ui/src/DebugSessionsPage.tsx | 2 -- internal/dev_server/ui/src/EventsTable.tsx | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/dev_server/ui/src/DebugSessionsPage.tsx b/internal/dev_server/ui/src/DebugSessionsPage.tsx index 84200d834..b523d396a 100644 --- a/internal/dev_server/ui/src/DebugSessionsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionsPage.tsx @@ -1,5 +1,4 @@ import { useEffect, useState } from "react"; -import { useNavigate } from "react-router"; import { apiRoute } from "./util"; import { DebugSession, DebugSessionsPage as DebugSessionsPageType } from "./types"; import { Box, Alert } from "@launchpad-ui/core"; @@ -7,7 +6,6 @@ import { Heading, Text, ProgressBar, Button, Link } from "@launchpad-ui/componen import { Icon } from "@launchpad-ui/icons"; const DebugSessionsPage = () => { - const navigate = useNavigate(); const [debugSessions, setDebugSessions] = useState([]); const [loading, setLoading] = useState(true); const [error, setError] = useState(null); diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 7f0cb460c..3e33d484d 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -58,7 +58,7 @@ const indexRows = (indexEvent: EventData, showNotification: (message: string) => | 'cloud' | 'help' = 'help'; if (indexEvent.data.context) { - let context = indexEvent.data.context + const context = indexEvent.data.context switch (context.kind) { case 'user': targetText = 'user context'; From 2954da28c9d3221b1f1d3974b258391e5d5d40cc Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Thu, 14 Aug 2025 16:08:19 -0700 Subject: [PATCH 74/96] better types --- internal/dev_server/ui/src/EventsTable.tsx | 59 +++++++++++++--------- internal/dev_server/ui/src/types.ts | 22 +++++++- 2 files changed, 55 insertions(+), 26 deletions(-) diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 3e33d484d..1d4e310ac 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -1,4 +1,10 @@ -import { EventData } from "./types"; +import { + EventData, + FeatureEventPayload, + GenericEventPayload, + IndexEventPayload, + SummaryEventPayload +} from "./types"; import { Icon } from "@launchpad-ui/icons"; import { useState } from "react"; @@ -26,16 +32,16 @@ const clipboardLink = (linkText: string, value: string, showNotification: (messa ); } -const summaryRows = (summaryEvent: EventData, showNotification: (message: string) => void) => { +const summaryRows = (event: EventData, summaryEvent: SummaryEventPayload, showNotification: (message: string) => void) => { const rows = []; - for (const [key, value] of Object.entries(summaryEvent.data.features || {})) { - const rowId = summaryEvent.id + key; + for (const [key, value] of Object.entries(summaryEvent.features || {})) { + const rowId = event.id + key; const counters = value.counters || []; for (const counter of counters) { rows.push( - + @@ -48,7 +54,7 @@ const summaryRows = (summaryEvent: EventData, showNotification: (message: string return rows; } -const indexRows = (indexEvent: EventData, showNotification: (message: string) => void) => { +const indexRows = (event: EventData, indexEvent: IndexEventPayload, showNotification: (message: string) => void) => { let targetText = 'unknown'; let iconName: | 'person' @@ -57,8 +63,12 @@ const indexRows = (indexEvent: EventData, showNotification: (message: string) => | 'group' | 'cloud' | 'help' = 'help'; - if (indexEvent.data.context) { - const context = indexEvent.data.context + if (event.data.context) { + const context = indexEvent.context; + if (!context) { + console.error('Index event context is undefined'); + return []; + } switch (context.kind) { case 'user': targetText = 'user context'; @@ -93,39 +103,38 @@ const indexRows = (indexEvent: EventData, showNotification: (message: string) => } return [ - - + + - + ] } -const featureRows = (featureEvent: EventData, showNotification: (message: string) => void) => { - const data = featureEvent.data; // Type assertion for feature event - const eventText = `evaluated as ${String(data.value)}`; +const featureRows = (event: EventData, featureEvent: FeatureEventPayload, showNotification: (message: string) => void) => { + const eventText = `evaluated as ${String(featureEvent.value)}`; return [ - - + + - + - + ]; } -const customRows = (event: EventData, showNotification: (message: string) => void) => { +const customRows = (event: EventData, customEvent: GenericEventPayload, showNotification: (message: string) => void) => { return [ - - - + + + , ]; } @@ -136,11 +145,11 @@ const customRows = (event: EventData, showNotification: (message: string) => voi const renderEvent = (event: EventData, showNotification: (message: string) => void) => { switch (event.data.kind) { case 'summary': - return summaryRows(event, showNotification); + return summaryRows(event, event.data as SummaryEventPayload, showNotification); case 'index': - return indexRows(event, showNotification); + return indexRows(event, event.data as IndexEventPayload, showNotification); case 'feature': - return featureRows(event, showNotification); + return featureRows(event, event.data as FeatureEventPayload, showNotification); case 'custom': return customRows(event, showNotification); default: diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index d7d2be61c..06cd05b27 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -32,12 +32,32 @@ export interface FeatureEventPayload { export interface IndexEventPayload { kind: 'index'; - user?: object; + context?: { + kind: string; + key: string; + user?: { + key: string; + email: string; + [key: string]: unknown; + }; + account?: { + key: string; + name: string; + [key: string]: unknown; + }; + application?: { + key: string; + [key: string]: unknown; + }; + [key: string]: unknown; + }; [key: string]: unknown; } export interface GenericEventPayload { kind: string; + key: string; + metricValue: string; [key: string]: unknown; } From d184d3bfffa7f0b28f752f2d2870ad47f28c58e6 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Thu, 14 Aug 2025 16:12:06 -0700 Subject: [PATCH 75/96] lint --- internal/dev_server/api/delete_debug_session.go | 6 ------ internal/dev_server/ui/src/EventsTable.tsx | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/internal/dev_server/api/delete_debug_session.go b/internal/dev_server/api/delete_debug_session.go index 9227e0add..00f4ddcd3 100644 --- a/internal/dev_server/api/delete_debug_session.go +++ b/internal/dev_server/api/delete_debug_session.go @@ -8,12 +8,6 @@ import ( func (s server) DeleteDebugSession(ctx context.Context, request DeleteDebugSessionRequestObject) (DeleteDebugSessionResponseObject, error) { eventStore := model.EventStoreFromContext(ctx) - if eventStore == nil { - return DeleteDebugSession404JSONResponse{ErrorResponseJSONResponse{ - Code: "event_store_not_found", - Message: "Event store not available", - }}, nil - } // Delete the debug session err := eventStore.DeleteDebugSession(ctx, request.DebugSessionKey) diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 1d4e310ac..2c7867314 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -226,4 +226,4 @@ const EventsTable = ({ ); }; -export default EventsTable; \ No newline at end of file +export default EventsTable; From 3ce62c857edd1a9a0f2e35b8e13d4c9ec8870b21 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Thu, 14 Aug 2025 16:14:39 -0700 Subject: [PATCH 76/96] lint --- internal/dev_server/model/observer.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/internal/dev_server/model/observer.go b/internal/dev_server/model/observer.go index d21c1b4ec..c3c4ef208 100644 --- a/internal/dev_server/model/observer.go +++ b/internal/dev_server/model/observer.go @@ -1,8 +1,6 @@ package model import ( - "encoding/json" - "log" "sync" "github.com/google/uuid" @@ -25,23 +23,17 @@ func NewObservers() *Observers { } func (o *Observers) DeregisterObserver(observerId uuid.UUID) bool { - log.Printf("DeregisterObserver: observerId %+v", observerId) _, exists := o.observers.LoadAndDelete(observerId) return exists } func (o *Observers) RegisterObserver(observer Observer) uuid.UUID { id := uuid.New() - log.Printf("RegisterObserver: observer %+v, id %s", observer, id) o.observers.Store(id, observer) return id } func (o *Observers) Notify(event interface{}) { - // Dont log raw json messages - if _, ok := event.(json.RawMessage); !ok { - log.Printf("Notify: event %+v to observers", event) - } o.observers.Range(func(_, observer any) bool { observer.(Observer).Handle(event) return true From 88ff6ccd41b0e8d5baf2ace5518b84e094737c1e Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Thu, 14 Aug 2025 16:19:27 -0700 Subject: [PATCH 77/96] more test --- internal/dev_server/events_db/sqlite_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dev_server/events_db/sqlite_test.go b/internal/dev_server/events_db/sqlite_test.go index 763f8596e..b4881e429 100644 --- a/internal/dev_server/events_db/sqlite_test.go +++ b/internal/dev_server/events_db/sqlite_test.go @@ -131,7 +131,7 @@ func TestDBFunctions(t *testing.T) { allPage, err := store.QueryDebugSessions(ctx, 10, 0) require.NoError(t, err) require.NotNil(t, allPage) - require.Len(t, allPage.Sessions, 4) + require.Len(t, allPage.Sessions, 2) require.Equal(t, int64(4), allPage.TotalCount) require.False(t, allPage.HasMore) From bce9ea213929f3a108e42ff23a571f52c384d21e Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Thu, 14 Aug 2025 16:31:48 -0700 Subject: [PATCH 78/96] TS --- internal/dev_server/ui/src/EventsTable.tsx | 6 +++--- internal/dev_server/ui/src/types.ts | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 2c7867314..cb29e3024 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -94,8 +94,8 @@ const indexRows = (event: EventData, indexEvent: IndexEventPayload, showNotifica } break; } - } else if (indexEvent.data.user) { - targetText = (indexEvent.data.user.key || 'unknown') + ' user'; + } else if (indexEvent.user) { + targetText = (indexEvent.user.key || 'unknown') + ' user'; iconName = 'person-outline'; } else { @@ -151,7 +151,7 @@ const renderEvent = (event: EventData, showNotification: (message: string) => vo case 'feature': return featureRows(event, event.data as FeatureEventPayload, showNotification); case 'custom': - return customRows(event, showNotification); + return customRows(event, event.data as GenericEventPayload, showNotification); default: return [ diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index 06cd05b27..57c08caee 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -32,6 +32,9 @@ export interface FeatureEventPayload { export interface IndexEventPayload { kind: 'index'; + user?: { + key: string; + }; context?: { kind: string; key: string; @@ -99,6 +102,6 @@ export function convertApiEventToEventData(apiEvent: ApiEvent): EventData { return { id: apiEvent.id.toString(), timestamp: new Date(apiEvent.written_at).getTime(), - data: apiEvent.data + data: apiEvent.data as SummaryEventPayload | FeatureEventPayload | IndexEventPayload | GenericEventPayload, }; } From 5844d4df1ed7ef08abe3bdbef611538b52f0f60f Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Thu, 14 Aug 2025 16:33:07 -0700 Subject: [PATCH 79/96] dist --- internal/dev_server/ui/dist/index.html | 60 +++++++++++++------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index b9823696b..ae24f0402 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -5,7 +5,7 @@ LaunchDevly - - +}`;var lt=f4(function(){return vt(R,Fe+"return "+be).apply(n,F)});if(lt.source=be,U7(lt))throw lt;return lt}function GC(a){return Tt(a).toLowerCase()}function qC(a){return Tt(a).toUpperCase()}function YC(a,u,m){if(a=Tt(a),a&&(m||u===n))return cd(a);if(!a||!(u=J0(u)))return a;var S=ln(a),E=ln(u),R=dd(S,E),F=Mu(S,E)+1;return Or(S,R,F).join("")}function XC(a,u,m){if(a=Tt(a),a&&(m||u===n))return a.slice(0,pa(a)+1);if(!a||!(u=J0(u)))return a;var S=ln(a),E=Mu(S,ln(u))+1;return Or(S,0,E).join("")}function QC(a,u,m){if(a=Tt(a),a&&(m||u===n))return a.replace(cu,"");if(!a||!(u=J0(u)))return a;var S=ln(a),E=dd(S,ln(u));return Or(S,E).join("")}function JC(a,u){var m=j,S=q;if(t0(u)){var E="separator"in u?u.separator:E;m="length"in u?rt(u.length):m,S="omission"in u?J0(u.omission):S}a=Tt(a);var R=a.length;if(Fi(a)){var F=ln(a);R=F.length}if(m>=R)return a;var H=m-K2(S);if(H<1)return S;var X=F?Or(F,0,H).join(""):a.slice(0,H);if(E===n)return X+S;if(F&&(H+=X.length-H),G7(E)){if(a.slice(H).search(E)){var pe,he=X;for(E.global||(E=Wo(E.source,Tt(fu.exec(E))+"g")),E.lastIndex=0;pe=E.exec(he);)var be=pe.index;X=X.slice(0,be===n?H:be)}}else if(a.indexOf(J0(E),H)!=H){var Te=X.lastIndexOf(E);Te>-1&&(X=X.slice(0,Te))}return X+S}function eP(a){return a=Tt(a),a&&V1.test(a)?a.replace(F2,md):a}var tP=ii(function(a,u,m){return a+(m?" ":"")+u.toUpperCase()}),X7=rc("toUpperCase");function d4(a,u,m){return a=Tt(a),u=m?n:u,u===n?y7(a)?$7(a):v7(a):a.match(u)||[]}var f4=nt(function(a,u){try{return I0(a,n,u)}catch(m){return U7(m)?m:new qe(m)}}),nP=yr(function(a,u){return _0(u,function(m){m=Wn(m),dr(a,m,we(a[m],a))}),a});function rP(a){var u=a==null?0:a.length,m=He();return a=u?Mt(a,function(S){if(typeof S[1]!="function")throw new gn(c);return[m(S[0]),S[1]]}):[],nt(function(S){for(var E=-1;++Efe)return[];var m=z,S=E0(a,z);u=He(u),a-=z;for(var E=Au(S,u);++m0||u<0)?new Qe(m):(a<0?m=m.takeRight(-a):a&&(m=m.drop(a)),u!==n&&(u=rt(u),m=u<0?m.dropRight(-u):m.take(u-a)),m)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(z)},un(Qe.prototype,function(a,u){var m=/^(?:filter|find|map|reject)|While$/.test(u),S=/^(?:head|last)$/.test(u),E=M[S?"take"+(u=="last"?"Right":""):u],R=S||/^find/.test(u);E&&(M.prototype[u]=function(){var F=this.__wrapped__,H=S?[1]:arguments,X=F instanceof Qe,pe=H[0],he=X||Je(F),be=function(ct){var ht=E.apply(M,o2([ct],H));return S&&Te?ht[0]:ht};he&&m&&typeof pe=="function"&&pe.length!=1&&(X=he=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=R&&!Te,lt=X&&!Fe;if(!R&&he){F=lt?F:new Qe(this);var Ue=a.apply(F,H);return Ue.__actions__.push({func:Gn,args:[be],thisArg:n}),new k0(Ue,Te)}return We&<?a.apply(this,H):(Ue=this.thru(be),We?S?Ue.value()[0]:Ue.value():Ue)})}),_0(["pop","push","shift","sort","splice","unshift"],function(a){var u=Ar[a],m=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);M.prototype[a]=function(){var E=arguments;if(S&&!this.__chain__){var R=this.value();return u.apply(Je(R)?R:[],E)}return this[m](function(F){return u.apply(Je(F)?F:[],E)})}}),un(Qe.prototype,function(a,u){var m=M[u];if(m){var S=m.name+"";mt.call(Ki,S)||(Ki[S]=[]),Ki[S].push({name:u,func:m})}}),Ki[lo(n,B).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=Ca,Qe.prototype.reverse=Fu,Qe.prototype.value=Gi,M.prototype.at=cs,M.prototype.chain=ci,M.prototype.commit=ds,M.prototype.next=Ec,M.prototype.plant=O7,M.prototype.reverse=Tc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=N7,M.prototype.first=M.prototype.head,Lr&&(M.prototype[Lr]=kc),M},Zi=S7();or?((or.exports=Zi)._=Zi,zo._=Zi):Zt._=Zi}).call(wH)}(Kc,Kc.exports)),Kc.exports}var SH=$H();const CH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:i,updateOverride:l})=>{switch(typeof i){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(cZ,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,c=s.findIndex(p=>SH.isEqual(p.value,t));c===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],c=0);const f=p=>v=>{v.preventDefault();const g=Object.fromEntries(new FormData(v.currentTarget));l(n,JSON.parse(g.value)),p()};return P.jsxs(L2,{gap:"2",children:[P.jsx(fS,{"aria-label":"flag variations select",selectedKey:c,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(y.Fragment,{children:[c!==null&&s[c]._id==="OVERRIDE"?P.jsxs(g1,{children:[P.jsxs(Bn,{children:[P.jsx(ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(m1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(Bn,{children:[P.jsx(ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(qv,{children:P.jsx(Wv,{children:s.map((p,v)=>{const g=p.name?p.name:JSON.stringify(p.value);return P.jsx(Uv,{id:v,textValue:g,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(L2,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),g]})}):g},v)})})})]},".0")}),P.jsx(Xe,{width:"2rem",height:"2rem",children:P.jsxs(f$,{children:[P.jsxs(g1,{children:[P.jsx(zv,{icon:"edit","aria-label":"edit variation value"}),P.jsx(m1,{children:"Edit the served variation value as JSON"})]}),P.jsx(uS,{children:P.jsx(sS,{children:P.jsx(lS,{children:({close:p})=>P.jsxs($w,{onSubmit:f(p),children:[P.jsxs(Yv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:v=>{try{return JSON.parse(v),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(iu,{children:`${n} value`}),P.jsx(pS,{style:{fontFamily:"monospace"}}),P.jsx(K0,{slot:"description",children:"Update the value as JSON"}),P.jsx(aS,{})]}),P.jsxs(rS,{children:[P.jsx(Bn,{onPress:p,children:"Cancel"}),P.jsx(Bn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var Hf={exports:{}},PH=Hf.exports,n8;function _H(){return n8||(n8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(PH,t=>{var n=(le,Y)=>{if(!le||!Y)return _e;var ue=_(le);ve(Y)||(Y=C(Y));var $e=ue.bitflags;return($e&Y._bitflags)!==$e?_e:A(ue,Y)},i=(le,Y,ue)=>{if(!le)return ue!=null&&ue.all?k(Y,ue):fe;var $e=_(le),Ee=$e.bitflags,Se=$e.containsSpace,me=x((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||Pe,ke=0,je=0,Ye=Y.length;function yt(W0){kece.peek()._score&&ce.replaceTop(W0))}if(ue!=null&&ue.key)for(var At=ue.key,at=0;at-1e3&&j[dt]>se){var ot=(j[dt]+q[dt])/4;ot>j[dt]&&(j[dt]=ot)}q[dt]>j[dt]&&(j[dt]=q[dt])}}if(Se){for(let tt=0;tt<$e.spaceSearches.length;tt++)if(j[tt]===se)continue e}else{var Ze=!1;for(let tt=0;tt-1e3&&St>se){var ot=(St+st._score)/4;ot>St&&(St=ot)}st._score>St&&(St=st._score)}}if(Qt.obj=$t,Qt._score=St,ue!=null&&ue.scoreFn){if(St=ue.scoreFn(Qt),!St)continue;St=x(St),Qt._score=St}St=0;--at)Ut[at]=ce.poll();return Ut.total=ke+je,Ut},l=(le,Y="",ue="")=>{for(var $e=typeof Y=="function"?Y:void 0,Ee=le.target,Se=Ee.length,me=le.indexes,Be="",ke=0,je=0,Ye=!1,yt=[],At=0;At{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=D(le);return v(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},c=()=>{O.clear(),W.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ue)=>Y-ue)}set indexes(Y){return this._indexes=Y}highlight(Y,ue){return l(this,Y,ue)}get score(){return g(this._score)}set score(Y){this._score=x(Y)}}class p extends Array{get score(){return g(this._score)}set score(Y){this._score=x(Y)}}var v=(le,Y)=>{const ue=new f;return ue.target=le,ue.obj=Y.obj??_e,ue._score=Y._score??se,ue._indexes=Y._indexes??[],ue._targetLower=Y._targetLower??"",ue._targetLowerCodes=Y._targetLowerCodes??_e,ue._nextBeginningIndexes=Y._nextBeginningIndexes??_e,ue._bitflags=Y._bitflags??0,ue},g=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),x=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=D(le),ue=[];if(Y.containsSpace){var $e=le.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=D($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:Y.lowerCodes,_lower:Y._lower,containsSpace:Y.containsSpace,bitflags:Y.bitflags,spaceSearches:ue}},C=le=>{if(le.length>999)return s(le);var Y=O.get(le);return Y!==void 0||(Y=s(le),O.set(le,Y)),Y},_=le=>{if(le.length>999)return w(le);var Y=W.get(le);return Y!==void 0||(Y=w(le),W.set(le,Y)),Y},k=(le,Y)=>{var ue=[];ue.total=le.length;var $e=(Y==null?void 0:Y.limit)||Pe;if(Y!=null&&Y.key)for(var Ee=0;Ee=$e)return ue}}else if(Y!=null&&Y.keys)for(var Ee=0;Ee=0;--je){var me=Q(Se,Y.keys[je]);if(!me){ke[je]=ae;continue}ve(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[je]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(le,Y,ue=!1,$e=!1)=>{if(ue===!1&&le.containsSpace)return B(le,Y,$e);for(var Ee=le._lower,Se=le.lowerCodes,me=Se[0],Be=Y._targetLowerCodes,ke=Se.length,je=Be.length,at=0,Ye=0,yt=0;;){var At=me===Be[Ye];if(At){if(oe[yt++]=Ye,++at,at===ke)break;me=Se[at]}if(++Ye,Ye>=je)return _e}var at=0,$t=!1,it=0,st=Y._nextBeginningIndexes;st===_e&&(st=Y._nextBeginningIndexes=Z(Y.target)),Ye=oe[0]===0?0:st[oe[0]-1];var i0=0;if(Ye!==je)for(;;)if(Ye>=je){if(at<=0||(++i0,i0>200))break;--at;var bt=L[--it];Ye=st[bt]}else{var At=Se[at]===Be[Ye];if(At){if(L[it++]=Ye,++at,at===ke){$t=!0;break}++Ye}else Ye=st[Ye]}var ft=ke<=1?-1:Y._targetLower.indexOf(Ee,oe[0]),Re=!!~ft,ot=Re?ft===0||Y._nextBeginningIndexes[ft-1]===ft:!1;if(Re&&!ot){for(var Ze=0;Ze{for(var dt=0,rr=0,P0=1;P024&&(dt*=(vn-24)*10)}return dt-=(je-ke)/2,Re&&(dt/=1+ke*ke*1),ot&&(dt/=1+ke*ke*1),dt-=(je-ke)/2,dt};if($t)if(ot){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=_e,me=0,Be=le.spaceSearches,ke=Be.length,je=0,Ye=()=>{for(let ot=je-1;ot>=0;ot--)Y._nextBeginningIndexes[ne[ot*2+0]]=ne[ot*2+1]},yt=!1,Re=0;Re=0&&i0===Y._nextBeginningIndexes[Ze];Ze--)Y._nextBeginningIndexes[Ze]=st,ne[je*2+0]=Ze,ne[je*2+1]=i0,je++}}Ee+=Se._score/ke,q[Re]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var Re=0;Re{for(var Y=le.length,ue=le.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var Y=le.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,je=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!je;Ee=ke,Se=je,Ye&&(ue[$e++]=me)}return ue},Z=le=>{for(var Y=le.length,ue=V(le),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?Y:Ee);return $e},O=new Map,W=new Map,oe=[],L=[],ne=[],j=[],q=[],xe=[],G=[],Q=(le,Y)=>{var ue=le[Y];if(ue!==void 0)return ue;if(typeof Y=="function")return Y(le);var $e=Y;Array.isArray(Y)||($e=Y.split("."));for(var Ee=$e.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",Pe=1/0,se=-Pe,fe=[];fe.total=0;var _e=null,ae=s(""),z=le=>{var Y=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=Y[me],ke=1;ke>1]=Y[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)Y[me]=Y[Ye];Y[me]=Be};return $e.add=Se=>{var me=ue;Y[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)Y[me]=Y[Be];Y[me]=Se},$e.poll=Se=>{if(ue!==0){var me=Y[0];return Y[0]=Y[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return Y[0]},$e.replaceTop=Se=>{Y[0]=Se,Ee()},$e},ce=z();return{single:n,go:i,prepare:s,cleanup:c}})}(Hf)),Hf.exports}var EH=_H();const kH=y1(EH);function TH({availableVariations:e,selectedProject:t,flags:n,overrides:i,setOverrides:l}){const[s,c]=y.useState(!1),[f,p]=y.useState(""),[v,g]=y.useState(0),x=20,w=y.useMemo(()=>i&&Object.keys(i).length>0,[i]);y.useEffect(()=>{!w&&s&&c(!1)},[w,s]);const C=y.useMemo(()=>n?Object.entries(n).filter(O=>{if(!f)return!0;const[W]=O,oe=kH.single(f.toLowerCase(),W);return oe&&oe.score>-5e3}).filter(O=>{const[W]=O,oe=W in i;return!(s&&!oe)}):[],[n,f,s,i]),_=y.useMemo(()=>{const Z=v*x,O=Z+x;return C.slice(Z,O)},[C,v]),k=y.useCallback((Z,O)=>{var oe;const W={...i,[Z]:{value:O,version:((oe=i[Z])==null?void 0:oe.version)||0}};l(W),fetch(tr(`/dev/projects/${t}/overrides/${Z}`),{method:"PUT",body:JSON.stringify(O)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(i),console.error("unable to update override",L)})},[i,t]),A=y.useCallback(async Z=>{const O={...i};delete O[Z],l(O);try{const W=await fetch(tr(`/dev/projects/${t}/overrides/${Z}`),{method:"DELETE"});if(!W.ok)throw new Error(`got ${W.status} ${W.statusText}. ${await W.text()}`)}catch(W){console.error("unable to remove override",W),l(i)}},[i,t]),B=y.useCallback(async()=>{l({});try{const Z=await fetch(tr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!Z.ok)throw new Error(`got ${Z.status} ${Z.statusText}. ${await Z.text()}`)}catch(Z){console.error("unable to remove all overrides",Z),l(i)}},[i,t]);if(!n)return null;const D=Math.ceil(C.length/x),V=Z=>{switch(Z){case"next":g(O=>Math.min(O+1,D-1));break;case"prev":g(O=>Math.max(O-1,0));break;case"first":g(0);break;case"last":g(D-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Xe,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:bH.borderRadius.regular,children:[P.jsxs(iu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(fO,{id:"only-show-overrides",isSelected:s,onChange:Z=>{c(Z)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(Bn,{variant:"destructive",isDisabled:!w,onPress:async()=>{i&&(await B(),l({}),c(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs(W5,{gap:"4",children:[P.jsx(L2,{gap:"4",children:P.jsx(RN,{"aria-label":"Search flags",children:P.jsxs(_O,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(jv,{placeholder:"Search flags by key",onChange:Z=>{p(Z.target.value),g(0)},value:f,"aria-label":"Search flags input"}),P.jsx(zv,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:_.map(([Z,{value:O}],W)=>{var j;const oe=(j=i[Z])==null?void 0:j.value,L=Z in i,ne=L?oe:O;return P.jsxs("li",{style:{backgroundColor:W%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Xe,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(L2,{gap:"2",children:[P.jsx(H5,{asChild:!0,text:Z,children:P.jsx("code",{className:L?"has-override":"",children:Z})}),L&&P.jsx(Bn,{"aria-label":"Remove override",onPress:()=>{A(Z)},variant:"destructive",children:P.jsxs(L2,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Xe,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(CH,{availableVariations:e[Z]?e[Z]:[],currentValue:ne,flagValue:O,flagKey:Z,updateOverride:k})})]},Z)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(XV,{currentOffset:v*x,isReady:!0,onChange:Z=>V(Z),pageSize:x,resourceName:"flags",totalCount:C.length})})]})}const AH=async()=>{const e=await fetch(tr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function MH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[i,l]=y.useState([]),[s,c]=y.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),c(!1)};return y.useEffect(()=>{AH().then(f).catch(p=>{console.error(p),c(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):i.length>0?P.jsxs(FF,{children:[P.jsx(L2,{gap:"1",children:P.jsxs(g1,{children:[P.jsx(Bn,{children:e??"Select a project"}),P.jsx(m1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(qv,{children:P.jsx(nN,{children:i.map(p=>P.jsx(iN,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(v5,{kind:"error",children:[P.jsx(wo,{children:"No projects."}),P.jsx(K0,{children:"Add one via"}),P.jsx(H5,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const LH=async e=>{const t=await fetch(tr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},RH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[i,l]=y.useState(!1),s=async()=>{l(!0);try{const c=await LH(e);n(c.availableVariations),t(oh(c.flagsState))}catch(c){J6.warning("Sync failed"),console.error("Sync failed:",c)}finally{J6.success("Sync successful"),l(!1)}};return e?P.jsxs(g1,{children:[P.jsx(Bn,{onPress:s,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(L2,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(m1,{children:"Sync the selected project from the source environment"})]}):null};async function DH(e,t){const n=await fetch(tr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Y3,r8;function hS(){if(r8)return Y3;r8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Y3=e,Y3}var X3,i8;function BH(){if(i8)return X3;i8=1;var e=typeof yo=="object"&&yo&&yo.Object===Object&&yo;return X3=e,X3}var Q3,o8;function vS(){if(o8)return Q3;o8=1;var e=BH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return Q3=n,Q3}var J3,l8;function VH(){if(l8)return J3;l8=1;var e=vS(),t=function(){return e.Date.now()};return J3=t,J3}var ep,a8;function IH(){if(a8)return ep;a8=1;var e=/\s/;function t(n){for(var i=n.length;i--&&e.test(n.charAt(i)););return i}return ep=t,ep}var tp,s8;function FH(){if(s8)return tp;s8=1;var e=IH(),t=/^\s+/;function n(i){return i&&i.slice(0,e(i)+1).replace(t,"")}return tp=n,tp}var np,u8;function mS(){if(u8)return np;u8=1;var e=vS(),t=e.Symbol;return np=t,np}var rp,c8;function ZH(){if(c8)return rp;c8=1;var e=mS(),t=Object.prototype,n=t.hasOwnProperty,i=t.toString,l=e?e.toStringTag:void 0;function s(c){var f=n.call(c,l),p=c[l];try{c[l]=void 0;var v=!0}catch{}var g=i.call(c);return v&&(f?c[l]=p:delete c[l]),g}return rp=s,rp}var ip,d8;function OH(){if(d8)return ip;d8=1;var e=Object.prototype,t=e.toString;function n(i){return t.call(i)}return ip=n,ip}var op,f8;function NH(){if(f8)return op;f8=1;var e=mS(),t=ZH(),n=OH(),i="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function c(f){return f==null?f===void 0?l:i:s&&s in Object(f)?t(f):n(f)}return op=c,op}var lp,p8;function HH(){if(p8)return lp;p8=1;function e(t){return t!=null&&typeof t=="object"}return lp=e,lp}var ap,h8;function jH(){if(h8)return ap;h8=1;var e=NH(),t=HH(),n="[object Symbol]";function i(l){return typeof l=="symbol"||t(l)&&e(l)==n}return ap=i,ap}var sp,v8;function zH(){if(v8)return sp;v8=1;var e=FH(),t=hS(),n=jH(),i=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,c=/^0o[0-7]+$/i,f=parseInt;function p(v){if(typeof v=="number")return v;if(n(v))return i;if(t(v)){var g=typeof v.valueOf=="function"?v.valueOf():v;v=t(g)?g+"":g}if(typeof v!="string")return v===0?v:+v;v=e(v);var x=s.test(v);return x||c.test(v)?f(v.slice(2),x?2:8):l.test(v)?i:+v}return sp=p,sp}var up,m8;function KH(){if(m8)return up;m8=1;var e=hS(),t=VH(),n=zH(),i="Expected a function",l=Math.max,s=Math.min;function c(f,p,v){var g,x,w,C,_,k,A=0,B=!1,D=!1,V=!0;if(typeof f!="function")throw new TypeError(i);p=n(p)||0,e(v)&&(B=!!v.leading,D="maxWait"in v,w=D?l(n(v.maxWait)||0,p):w,V="trailing"in v?!!v.trailing:V);function Z(G){var Q=g,ve=x;return g=x=void 0,A=G,C=f.apply(ve,Q),C}function O(G){return A=G,_=setTimeout(L,p),B?Z(G):C}function W(G){var Q=G-k,ve=G-A,Pe=p-Q;return D?s(Pe,w-ve):Pe}function oe(G){var Q=G-k,ve=G-A;return k===void 0||Q>=p||Q<0||D&&ve>=w}function L(){var G=t();if(oe(G))return ne(G);_=setTimeout(L,W(G))}function ne(G){return _=void 0,V&&g?Z(G):(g=x=void 0,C)}function j(){_!==void 0&&clearTimeout(_),A=0,g=k=x=_=void 0}function q(){return _===void 0?C:ne(t())}function xe(){var G=t(),Q=oe(G);if(g=arguments,x=this,k=G,Q){if(_===void 0)return O(k);if(D)return clearTimeout(_),_=setTimeout(L,p),Z(k)}return _===void 0&&(_=setTimeout(L,p)),C}return xe.cancel=j,xe.flush=q,xe}return up=c,up}var WH=KH();const UH=y1(WH);function GH({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:i}){const[l,s]=y.useState(null),[c,f]=y.useState(""),[p,v]=y.useState(!1),g=y.useCallback(UH(x=>{v(!0),DH(e,x).then(w=>{if(s(w),!n){const C=w.find(_=>_.key===t);C?i(C):w.length>0&&i({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{v(!1)})},300),[e,t,n,i]);return y.useEffect(()=>{g(c)},[g,c]),P.jsxs(W5,{gap:"3",children:[P.jsx(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(iu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(jv,{id:"environmentSearch",value:c,onChange:x=>f(x.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Xe,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(Ul,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Xe,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Wv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:x=>{const w=Array.from(x)[0],C=l==null?void 0:l.find(_=>_.key===w);C&&i(C)},children:l==null?void 0:l.map(x=>P.jsx(Uv,{id:x.key,children:x.name},x.key))})})]})}function qH({context:e,setContext:t}){return P.jsxs(W5,{gap:"3",children:[P.jsx(iu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(Yv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx(pS,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(K0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(aS,{})]})]})}function YH({isSubmitting:e,selectedEnvironment:t}){return P.jsx(Bn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(L2,{gap:"2",children:P.jsxs(Xe,{display:"flex",alignItems:"center",children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(L2,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function XH({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:l,updateProjectSettings:s}){const[c,f]=y.useState(t),[p,v]=y.useState(l),[g,x]=y.useState(!1);y.useEffect(()=>{f(t),v(l)},[t,l]);const w=async _=>{x(!0);try{_(),await s(c,p),n(c)}catch(k){console.error("Error submitting project settings:",k)}finally{x(!1)}},C=()=>{f(t),v(l)};return P.jsxs(f$,{children:[P.jsxs(g1,{children:[P.jsx(YH,{isSubmitting:g,selectedEnvironment:i}),P.jsx(m1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(uS,{isDismissable:!1,children:P.jsx(sS,{children:P.jsx(lS,{children:({close:_})=>P.jsxs($w,{onSubmit:k=>{k.preventDefault(),w(_)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(iu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs(W5,{gap:"3",children:[P.jsx(GH,{projectKey:e,sourceEnvironmentKey:i,selectedEnvironment:c,setSelectedEnvironment:f}),P.jsx(Xe,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(qH,{context:p,setContext:v})]}),P.jsxs(rS,{style:{justifyContent:"flex-end"},children:[P.jsx(Bn,{onPress:()=>{C(),_()},variant:"destructive",isDisabled:g,children:"Cancel"}),P.jsx(Bn,{variant:"primary",type:"submit",isDisabled:g,children:g?P.jsxs(L2,{gap:"2",children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function QH(){const[e,t]=y.useState(null),[n,i]=y.useState(null),[l,s]=y.useState(null),[c,f]=y.useState({}),[p,v]=y.useState({}),[g,x]=y.useState(null),[w,C]=y.useState(!1),[_,k]=y.useState("{}"),A=y.useCallback(async()=>{if(!e)return;const D=await fetch(tr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),V=await D.json();if(!D.ok)throw new Error(`Got ${D.status}, ${D.statusText} from flag fetch`);const{flagsState:Z,overrides:O,sourceEnvironmentKey:W,availableVariations:oe,context:L}=V;x(oh(Z)),f(O),s(W),v(oe),k(JSON.stringify(L||"{}",null,2));const j=(await JH(e)).find(q=>q.key===W);j&&i(j)},[e]);y.useEffect(()=>{e&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,e]),y.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const B=y.useCallback(async(D,V)=>{if(e)try{const Z=await fetch(tr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:D==null?void 0:D.key,context:JSON.parse(V)})});if(!Z.ok)throw new Error(`Got ${Z.status}, ${Z.statusText} from project settings update`);const O=await Z.json(),{flagsState:W,sourceEnvironmentKey:oe,context:L}=O;x(oh(W)),s(oe),k(JSON.stringify(L||{},null,2)),i(D),await A()}catch(Z){console.error("Error updating project settings:",Z)}},[e,A]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Xe,{width:"100%",minWidth:"600px",children:P.jsxs(Xe,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Xe,{marginBottom:"2rem",width:"100%",children:P.jsxs(v5,{kind:"error",children:[P.jsx(wo,{children:"No projects."}),P.jsx(K0,{children:"Add one via"}),P.jsx(H5,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Xe,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(MH,{selectedProject:e,setSelectedProject:t,setShowBanner:C}),e&&P.jsx(XH,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:l,context:_,updateProjectSettings:B}),P.jsx(RH,{selectedProject:e,setFlags:x,setAvailableVariations:v})]}),e&&P.jsx(Xe,{width:"100%",children:P.jsx(TH,{availableVariations:p,selectedProject:e,flags:g,overrides:c,setOverrides:D=>{f(D)}})})]})})})}async function JH(e){const t=await fetch(tr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const B1=(e,t,n)=>P.jsx("button",{type:"button",className:"copy-button",onClick:i=>{i.preventDefault(),navigator.clipboard.writeText(t).then(()=>{n("Copied to clipboard!")}).catch(()=>{n("Failed to copy to clipboard")})},children:e}),ej=(e,t,n)=>{const i=[];for(const[l,s]of Object.entries(t.features||{})){const c=e.id+l,f=s.counters||[];for(const p of f)i.push(P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"summary"}),P.jsxs("td",{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",l]}),P.jsxs("td",{children:["evaluated as ",String(p.value)]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t.data),n)})]},c))}return i},tj=(e,t,n)=>{let i="unknown",l="help";if(e.data.context){const s=t.context;if(!s)return console.error("Index event context is undefined"),[];switch(s.kind){case"user":i="user context",l="person";break;case"application":i=s.key||"unknown application",l="cloud";break;case"multi":s.user?(i=s.user.email||s.user.key||"unknown user",l="person"):s.account?(i=s.account.name||s.account.key||"unknown account",l="group"):s.application?(i=s.application.key||"unknown application",l="cloud"):(i="multi context",l="chart-dashboard");break}}else t.user?(i=(t.user.key||"unknown")+" user",l="person-outline"):i="unknown";return[P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"index"}),P.jsxs("td",{children:[P.jsx(Pt,{name:l,size:"small"})," ",i]}),P.jsxs("td",{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t.data),n)})]},e.id)]},nj=(e,t,n)=>{const i=`evaluated as ${String(t.value)}`;return[P.jsxs("tr",{className:"feature-row",children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"feature"}),P.jsx("td",{children:t.key||"unknown"}),P.jsx("td",{children:i}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t),n)})]},e.id)]},rj=(e,t,n)=>[P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:e.data.kind}),P.jsxs("td",{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs("td",{children:["value is ",t.metricValue]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t),n)})]},e.id)],ij=(e,t)=>{switch(e.data.kind){case"summary":return ej(e,e.data,t);case"index":return tj(e,e.data,t);case"feature":return nj(e,e.data,t);case"custom":return rj(e,e.data,t);default:return[P.jsxs("tr",{children:[P.jsx("td",{children:(()=>{try{const n=new Date(e.timestamp);return isNaN(n.getTime())?e.timestamp:n.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx("td",{children:e.data.kind}),P.jsx("td",{}),P.jsx("td",{}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(e.data),t)})]},e.id)]}},gS=({events:e,onToggleStreaming:t})=>{const[n,i]=y.useState(null),[l,s]=y.useState(!0),c=p=>{s(p),t==null||t(p)},f=p=>{i(p),setTimeout(()=>{i(null)},1500)};return P.jsxs("div",{children:[P.jsx("h3",{children:"Events Stream"}),t&&P.jsx("button",{className:`streaming-toggle-button ${l?"streaming":"not-streaming"}`,onClick:()=>c(!l),children:l?"Streaming ON":"Streaming OFF"}),P.jsxs("table",{className:"events-table",children:[P.jsx("thead",{children:P.jsxs("tr",{children:[P.jsx("th",{children:"Time"}),P.jsx("th",{children:"Type"}),P.jsx("th",{children:"Target"}),P.jsx("th",{children:"Event"}),P.jsx("th",{children:"Link"})]})}),P.jsx("tbody",{children:e.map(p=>ij(p,f))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."}),n&&P.jsx("div",{className:`copy-notification ${n?"show":"hide"}`,children:n})]})},oj=({limit:e=1e3})=>{const[t,n]=y.useState([]),[i,l]=y.useState([]),[s,c]=y.useState(!0);y.useEffect(()=>{const p=new EventSource(tr("/events/tee"));return p.addEventListener("put",v=>{if(!v.data||v.data.trim()==="")return;let g;try{g=JSON.parse(v.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const x={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:g};s?n(w=>[x,...w].slice(0,e)):l(w=>[x,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{c(p),p&&i.length>0&&(n(v=>[...i,...v].slice(0,e)),l([]))};return P.jsx(gS,{events:t,onToggleStreaming:f})},lj=()=>{const[e,t]=y.useState([]),[n,i]=y.useState(!0),[l,s]=y.useState(null),[c,f]=y.useState(0),[p,v]=y.useState(null),g=async()=>{try{i(!0),s(null);const C=await fetch(tr("/dev/debug-sessions?limit=100"));if(!C.ok)throw new Error(`Failed to fetch debug sessions: ${C.status} ${C.statusText}`);const _=await C.json();t(_.sessions),f(_.total_count)}catch(C){s(C instanceof Error?C.message:"An unknown error occurred")}finally{i(!1)}};y.useEffect(()=>{g()},[]);const x=C=>{try{return new Date(C).toLocaleString()}catch{return C}},w=async C=>{if(confirm(`Are you sure you want to delete debug session "${C}" and all its events? This action cannot be undone.`))try{v(C),s(null);const _=await fetch(tr(`/dev/debug-sessions/${encodeURIComponent(C)}`),{method:"DELETE"});if(!_.ok)throw _.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${_.status} ${_.statusText}`);await g()}catch(_){s(_ instanceof Error?_.message:"An unknown error occurred while deleting the session")}finally{v(null)}};return n?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Ul,{isIndeterminate:!0})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(v5,{kind:"error",children:P.jsxs(K0,{children:["Error: ",l]})})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Bn,{onPress:g,children:"Retry"})})]}):P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsxs(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:[c," total session",c!==1?"s":""]})]}),e.length===0?P.jsxs(Xe,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"No debug sessions found"})}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsx(K0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx("div",{style:{border:"1px solid var(--lp-color-border-ui-primary)",borderRadius:"4px",overflow:"hidden"},children:P.jsxs("table",{style:{width:"100%",borderCollapse:"collapse"},children:[P.jsx("thead",{children:P.jsxs("tr",{style:{backgroundColor:"var(--lp-color-bg-ui-secondary)"},children:[P.jsx("th",{style:{padding:"0.75rem",textAlign:"left",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600},children:"Debug Session Started"}),P.jsx("th",{style:{padding:"0.75rem",textAlign:"right",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600},children:"Event Count"}),P.jsx("th",{style:{padding:"0.75rem",textAlign:"center",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600,width:"100px"},children:"Actions"})]})}),P.jsx("tbody",{children:e.map((C,_)=>P.jsxs("tr",{style:{borderBottom:_w(C.key),disabled:p===C.key,style:{background:"none",border:"1px solid var(--lp-color-border-destructive)",borderRadius:"4px",padding:"0.25rem 0.5rem",cursor:p===C.key?"not-allowed":"pointer",display:"flex",alignItems:"center",gap:"0.25rem",color:"var(--lp-color-text-destructive)",opacity:p===C.key?.6:1},title:p===C.key?"Deleting...":"Delete session and all events",children:P.jsx(Pt,{name:"delete",size:"small"})})})]},C.key))})]})})]})};function aj(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const sj=()=>{const{debugSessionKey:e}=P_(),[t,n]=y.useState([]),[i,l]=y.useState([]),[s,c]=y.useState(!0),[f,p]=y.useState(null),v=async()=>{var x;if(!e){p("Debug session key is required"),c(!1);return}try{c(!0),p(null);const w=await fetch(tr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const _=((x=(await w.json()).events)==null?void 0:x.map(aj))||[];n(_),l(_)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{c(!1)}};y.useEffect(()=>{v()},[e]);const g=x=>{l(t.filter(w=>{let C="";const _=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(A=>_(A)):typeof k=="object"?Object.values(k).flatMap(A=>_(A)):[];return C=_(w).join(" "),C.toLowerCase().includes(x.toLowerCase())}))};return s?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Ul,{isIndeterminate:!0})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"Loading events..."})})]}):f?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(v5,{kind:"error",children:P.jsxs(K0,{children:["Error: ",f]})})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Bn,{onPress:v,children:"Retry"})})]}):P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Xe,{children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(Yv,{onChange:g,name:"debug-session-search",children:P.jsxs(y.Fragment,{children:[P.jsx(iu,{children:"Search"}),P.jsx(jv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Xe,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"No events found for this debug session"})}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsx(K0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(gS,{events:i})]})};function uj(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Xe,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Xe,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(yH,{})}),P.jsx(Xe,{padding:"1rem",width:"100%",children:P.jsxs(O_,{children:[P.jsx(Rl,{path:"/",element:P.jsx(k4,{to:"/ui/flags",replace:!0})}),P.jsx(Rl,{path:"/ui",element:P.jsx(k4,{to:"/ui/flags",replace:!0})}),P.jsx(Rl,{path:"/ui/flags",element:P.jsx(QH,{})}),P.jsx(Rl,{path:"/ui/events",element:P.jsx(oj,{})}),P.jsx(Rl,{path:"/ui/debug-sessions",element:P.jsx(lj,{})}),P.jsx(Rl,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(sj,{})})]})})]})})}const cj="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function dj({children:e}){return y.useEffect(()=>{fetch(cj).then(async t=>t.text()).then(t=>{const i=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(V8.Provider,{value:{path:""},children:e})}const fj=()=>(y.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(ee.StrictMode,{children:P.jsx(uE,{children:P.jsxs(dj,{children:[P.jsx(uj,{}),P.jsx(hH,{})]})})}));qP.createRoot(document.getElementById("root")).render(P.jsx(fj,{})); +
From 4fb3eda234256027f7a2878f9d4ed4b643bf1915 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Thu, 14 Aug 2025 16:35:25 -0700 Subject: [PATCH 80/96] prettier --- internal/dev_server/ui/src/App.css | 1 - internal/dev_server/ui/src/App.tsx | 6 +- .../ui/src/DebugSessionEventsPage.tsx | 108 ++++++---- .../dev_server/ui/src/DebugSessionsPage.tsx | 176 ++++++++++------ internal/dev_server/ui/src/EventsPage.tsx | 16 +- internal/dev_server/ui/src/EventsTable.tsx | 188 +++++++++++++----- internal/dev_server/ui/src/RouteSelector.tsx | 23 ++- internal/dev_server/ui/src/types.ts | 12 +- 8 files changed, 346 insertions(+), 184 deletions(-) diff --git a/internal/dev_server/ui/src/App.css b/internal/dev_server/ui/src/App.css index 46b61df69..895e28485 100644 --- a/internal/dev_server/ui/src/App.css +++ b/internal/dev_server/ui/src/App.css @@ -225,7 +225,6 @@ code.has-override { } } - /* Streaming toggle button */ .streaming-toggle-button { margin-bottom: 16px; diff --git a/internal/dev_server/ui/src/App.tsx b/internal/dev_server/ui/src/App.tsx index 8238dcbe4..75ca2eada 100644 --- a/internal/dev_server/ui/src/App.tsx +++ b/internal/dev_server/ui/src/App.tsx @@ -36,7 +36,10 @@ function App() { } /> } /> } /> - } /> + } + /> @@ -44,5 +47,4 @@ function App() { ); } - export default App; diff --git a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx index 8950cd72a..b89e49bef 100644 --- a/internal/dev_server/ui/src/DebugSessionEventsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionEventsPage.tsx @@ -1,13 +1,13 @@ -import { useEffect, useState } from "react"; -import { useParams } from "react-router"; -import { apiRoute } from "./util"; -import { ApiEventsPage, EventData, convertApiEventToEventData } from "./types"; -import { Box, Alert } from "@launchpad-ui/core"; -import { Heading, Text, ProgressBar, Button } from "@launchpad-ui/components"; -import { Icon } from "@launchpad-ui/icons"; -import EventsTable from "./EventsTable"; -import { TextField, Label, Input } from "@launchpad-ui/components"; -import { Fragment } from "react"; +import { useEffect, useState } from 'react'; +import { useParams } from 'react-router'; +import { apiRoute } from './util'; +import { ApiEventsPage, EventData, convertApiEventToEventData } from './types'; +import { Box, Alert } from '@launchpad-ui/core'; +import { Heading, Text, ProgressBar, Button } from '@launchpad-ui/components'; +import { Icon } from '@launchpad-ui/icons'; +import EventsTable from './EventsTable'; +import { TextField, Label, Input } from '@launchpad-ui/components'; +import { Fragment } from 'react'; const DebugSessionEventsPage = () => { const { debugSessionKey } = useParams<{ debugSessionKey: string }>(); @@ -18,7 +18,7 @@ const DebugSessionEventsPage = () => { const fetchEvents = async () => { if (!debugSessionKey) { - setError("Debug session key is required"); + setError('Debug session key is required'); setLoading(false); return; } @@ -26,19 +26,28 @@ const DebugSessionEventsPage = () => { try { setLoading(true); setError(null); - - const response = await fetch(apiRoute(`/dev/debug-sessions/${encodeURIComponent(debugSessionKey)}/events?limit=1000`)); - + + const response = await fetch( + apiRoute( + `/dev/debug-sessions/${encodeURIComponent(debugSessionKey)}/events?limit=1000`, + ), + ); + if (!response.ok) { - throw new Error(`Failed to fetch events: ${response.status} ${response.statusText}`); + throw new Error( + `Failed to fetch events: ${response.status} ${response.statusText}`, + ); } - + const data: ApiEventsPage = await response.json(); - const convertedEvents = data.events?.map(convertApiEventToEventData) || []; + const convertedEvents = + data.events?.map(convertApiEventToEventData) || []; setEvents(convertedEvents); setDisplayedEvents(convertedEvents); } catch (err) { - setError(err instanceof Error ? err.message : "An unknown error occurred"); + setError( + err instanceof Error ? err.message : 'An unknown error occurred', + ); } finally { setLoading(false); } @@ -49,26 +58,32 @@ const DebugSessionEventsPage = () => { }, [debugSessionKey]); const handleSearchChange = (value: string) => { - setDisplayedEvents(events.filter(event => { - let search = ''; - - const extractValues = (obj: unknown): string[] => { - if (obj === null || obj === undefined) return []; - if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean') { - return [String(obj)]; - } - if (Array.isArray(obj)) { - return obj.flatMap(item => extractValues(item)); - } - if (typeof obj === 'object') { - return Object.values(obj).flatMap(value => extractValues(value)); - } - return []; - }; - search = extractValues(event).join(' '); - - return search.toLowerCase().includes(value.toLowerCase()); - })) + setDisplayedEvents( + events.filter((event) => { + let search = ''; + + const extractValues = (obj: unknown): string[] => { + if (obj === null || obj === undefined) return []; + if ( + typeof obj === 'string' || + typeof obj === 'number' || + typeof obj === 'boolean' + ) { + return [String(obj)]; + } + if (Array.isArray(obj)) { + return obj.flatMap((item) => extractValues(item)); + } + if (typeof obj === 'object') { + return Object.values(obj).flatMap((value) => extractValues(value)); + } + return []; + }; + search = extractValues(event).join(' '); + + return search.toLowerCase().includes(value.toLowerCase()); + }), + ); }; if (loading) { @@ -113,12 +128,19 @@ const DebugSessionEventsPage = () => { return ( - - + Debug Session Events - + Session: {debugSessionKey} @@ -127,9 +149,7 @@ const DebugSessionEventsPage = () => { - + diff --git a/internal/dev_server/ui/src/DebugSessionsPage.tsx b/internal/dev_server/ui/src/DebugSessionsPage.tsx index b523d396a..8f390d056 100644 --- a/internal/dev_server/ui/src/DebugSessionsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionsPage.tsx @@ -1,9 +1,18 @@ -import { useEffect, useState } from "react"; -import { apiRoute } from "./util"; -import { DebugSession, DebugSessionsPage as DebugSessionsPageType } from "./types"; -import { Box, Alert } from "@launchpad-ui/core"; -import { Heading, Text, ProgressBar, Button, Link } from "@launchpad-ui/components"; -import { Icon } from "@launchpad-ui/icons"; +import { useEffect, useState } from 'react'; +import { apiRoute } from './util'; +import { + DebugSession, + DebugSessionsPage as DebugSessionsPageType, +} from './types'; +import { Box, Alert } from '@launchpad-ui/core'; +import { + Heading, + Text, + ProgressBar, + Button, + Link, +} from '@launchpad-ui/components'; +import { Icon } from '@launchpad-ui/icons'; const DebugSessionsPage = () => { const [debugSessions, setDebugSessions] = useState([]); @@ -16,18 +25,22 @@ const DebugSessionsPage = () => { try { setLoading(true); setError(null); - - const response = await fetch(apiRoute("/dev/debug-sessions?limit=100")); - + + const response = await fetch(apiRoute('/dev/debug-sessions?limit=100')); + if (!response.ok) { - throw new Error(`Failed to fetch debug sessions: ${response.status} ${response.statusText}`); + throw new Error( + `Failed to fetch debug sessions: ${response.status} ${response.statusText}`, + ); } - + const data: DebugSessionsPageType = await response.json(); setDebugSessions(data.sessions); setTotalCount(data.total_count); } catch (err) { - setError(err instanceof Error ? err.message : "An unknown error occurred"); + setError( + err instanceof Error ? err.message : 'An unknown error occurred', + ); } finally { setLoading(false); } @@ -47,7 +60,11 @@ const DebugSessionsPage = () => { }; const handleDeleteSession = async (sessionKey: string) => { - if (!confirm(`Are you sure you want to delete debug session "${sessionKey}" and all its events? This action cannot be undone.`)) { + if ( + !confirm( + `Are you sure you want to delete debug session "${sessionKey}" and all its events? This action cannot be undone.`, + ) + ) { return; } @@ -55,21 +72,30 @@ const DebugSessionsPage = () => { setDeletingSession(sessionKey); setError(null); - const response = await fetch(apiRoute(`/dev/debug-sessions/${encodeURIComponent(sessionKey)}`), { - method: 'DELETE', - }); + const response = await fetch( + apiRoute(`/dev/debug-sessions/${encodeURIComponent(sessionKey)}`), + { + method: 'DELETE', + }, + ); if (!response.ok) { if (response.status === 404) { throw new Error('Debug session not found'); } - throw new Error(`Failed to delete debug session: ${response.status} ${response.statusText}`); + throw new Error( + `Failed to delete debug session: ${response.status} ${response.statusText}`, + ); } // Refresh the sessions list after successful deletion await fetchDebugSessions(); } catch (err) { - setError(err instanceof Error ? err.message : "An unknown error occurred while deleting the session"); + setError( + err instanceof Error + ? err.message + : 'An unknown error occurred while deleting the session', + ); } finally { setDeletingSession(null); } @@ -107,7 +133,12 @@ const DebugSessionsPage = () => { return ( - + Debug Sessions {totalCount} total session{totalCount !== 1 ? 's' : ''} @@ -134,79 +165,94 @@ const DebugSessionsPage = () => { ) : (
-
- Session Key - - (click to view events) - - - Created At + Debug Session Started { fontWeight: 600, width: "100px" }}> - Copy Key + Actions
- - - + {formatDate(session.written_at)} - + @@ -196,23 +195,25 @@ const DebugSessionsPage = () => { - - - +
{new Date(event.timestamp).toLocaleTimeString()} {event.data.kind} {event.data.key || 'unknown'}value is {(event.data as any).metricValue}value is {event.data.metricValue} {clipboardLink('Copy to clipboard', JSON.stringify(event.data), showNotification)}
{new Date(summaryEvent.timestamp).toLocaleTimeString()}{new Date(event.timestamp).toLocaleTimeString()} summary {key} evaluated as {String(counter.value)}
{new Date(indexEvent.timestamp).toLocaleTimeString()}
{new Date(event.timestamp).toLocaleTimeString()} index {targetText}indexed {JSON.stringify(indexEvent.data).length} bytesindexed {JSON.stringify(indexEvent).length} bytes {clipboardLink('Copy to clipboard', JSON.stringify(indexEvent.data), showNotification)}
{new Date(featureEvent.timestamp).toLocaleTimeString()}
{new Date(event.timestamp).toLocaleTimeString()} feature{data.key || 'unknown'}{featureEvent.key || 'unknown'} {eventText}{clipboardLink('Copy to clipboard', JSON.stringify(featureEvent.data), showNotification)}{clipboardLink('Copy to clipboard', JSON.stringify(featureEvent), showNotification)}
{new Date(event.timestamp).toLocaleTimeString()} {event.data.kind} {event.data.key || 'unknown'}value is {event.data.metricValue}{clipboardLink('Copy to clipboard', JSON.stringify(event.data), showNotification)} {customEvent.key }value is {customEvent.metricValue}{clipboardLink('Copy to clipboard', JSON.stringify(customEvent), showNotification)}
+
- - + - - {debugSessions.map((session, index) => ( - - - - - diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index ab1c8888a..4736bbae7 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -1,7 +1,7 @@ -import { useEffect, useState } from "react"; -import { apiRoute } from "./util"; -import { EventData } from "./types"; -import EventsTable from "./EventsTable"; +import { useEffect, useState } from 'react'; +import { apiRoute } from './util'; +import { EventData } from './types'; +import EventsTable from './EventsTable'; type Props = { limit?: number; @@ -31,13 +31,13 @@ const EventsPage = ({ limit = 1000 }: Props) => { const newEvent: EventData = { id: Math.random().toString(36).slice(2, 11), timestamp: Date.now(), - data: parsed + data: parsed, }; if (isStreaming) { - setEvents(prevEvents => [newEvent, ...prevEvents].slice(0, limit)); + setEvents((prevEvents) => [newEvent, ...prevEvents].slice(0, limit)); } else { - setBacklog(prevBacklog => [newEvent, ...prevBacklog].slice(0, limit)); + setBacklog((prevBacklog) => [newEvent, ...prevBacklog].slice(0, limit)); } }); @@ -52,7 +52,7 @@ const EventsPage = ({ limit = 1000 }: Props) => { if (newStreamingState && backlog.length > 0) { // Flush backlog into events when turning streaming back on - setEvents(prevEvents => [...backlog, ...prevEvents].slice(0, limit)); + setEvents((prevEvents) => [...backlog, ...prevEvents].slice(0, limit)); setBacklog([]); } }; diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index cb29e3024..8df00482e 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -1,38 +1,49 @@ -import { +import { EventData, FeatureEventPayload, GenericEventPayload, IndexEventPayload, - SummaryEventPayload -} from "./types"; -import { Icon } from "@launchpad-ui/icons"; -import { useState } from "react"; + SummaryEventPayload, +} from './types'; +import { Icon } from '@launchpad-ui/icons'; +import { useState } from 'react'; type Props = { events: EventData[]; onToggleStreaming?: (newStreamingState: boolean) => void; }; -const clipboardLink = (linkText: string, value: string, showNotification: (message: string) => void) => { +const clipboardLink = ( + linkText: string, + value: string, + showNotification: (message: string) => void, +) => { return ( ); -} +}; -const summaryRows = (event: EventData, summaryEvent: SummaryEventPayload, showNotification: (message: string) => void) => { +const summaryRows = ( + event: EventData, + summaryEvent: SummaryEventPayload, + showNotification: (message: string) => void, +) => { const rows = []; for (const [key, value] of Object.entries(summaryEvent.features || {})) { const rowId = event.id + key; @@ -43,20 +54,32 @@ const summaryRows = (event: EventData, summaryEvent: SummaryEventPayload, showNo - + - - + + , ); } } return rows; -} +}; -const indexRows = (event: EventData, indexEvent: IndexEventPayload, showNotification: (message: string) => void) => { +const indexRows = ( + event: EventData, + indexEvent: IndexEventPayload, + showNotification: (message: string) => void, +) => { let targetText = 'unknown'; - let iconName: + let iconName: | 'person' | 'chart-dashboard' | 'person-outline' @@ -83,7 +106,8 @@ const indexRows = (event: EventData, indexEvent: IndexEventPayload, showNotifica targetText = context.user.email || context.user.key || 'unknown user'; iconName = 'person'; } else if (context.account) { - targetText = context.account.name || context.account.key || 'unknown account'; + targetText = + context.account.name || context.account.key || 'unknown account'; iconName = 'group'; } else if (context.application) { targetText = context.application.key || 'unknown application'; @@ -97,8 +121,7 @@ const indexRows = (event: EventData, indexEvent: IndexEventPayload, showNotifica } else if (indexEvent.user) { targetText = (indexEvent.user.key || 'unknown') + ' user'; iconName = 'person-outline'; - } - else { + } else { targetText = 'unknown'; } @@ -106,14 +129,26 @@ const indexRows = (event: EventData, indexEvent: IndexEventPayload, showNotifica - + - - - ] -} + + , + ]; +}; -const featureRows = (event: EventData, featureEvent: FeatureEventPayload, showNotification: (message: string) => void) => { +const featureRows = ( + event: EventData, + featureEvent: FeatureEventPayload, + showNotification: (message: string) => void, +) => { const eventText = `evaluated as ${String(featureEvent.value)}`; return [ @@ -122,60 +157,103 @@ const featureRows = (event: EventData, featureEvent: FeatureEventPayload, showNo - - + + , ]; -} +}; -const customRows = (event: EventData, customEvent: GenericEventPayload, showNotification: (message: string) => void) => { +const customRows = ( + event: EventData, + customEvent: GenericEventPayload, + showNotification: (message: string) => void, +) => { return [ - + - + , ]; -} - +}; // Return array of s: // Time, Type, Key, Event, ViewAttributes -const renderEvent = (event: EventData, showNotification: (message: string) => void) => { +const renderEvent = ( + event: EventData, + showNotification: (message: string) => void, +) => { switch (event.data.kind) { case 'summary': - return summaryRows(event, event.data as SummaryEventPayload, showNotification); + return summaryRows( + event, + event.data as SummaryEventPayload, + showNotification, + ); case 'index': - return indexRows(event, event.data as IndexEventPayload, showNotification); + return indexRows( + event, + event.data as IndexEventPayload, + showNotification, + ); case 'feature': - return featureRows(event, event.data as FeatureEventPayload, showNotification); + return featureRows( + event, + event.data as FeatureEventPayload, + showNotification, + ); case 'custom': - return customRows(event, event.data as GenericEventPayload, showNotification); + return customRows( + event, + event.data as GenericEventPayload, + showNotification, + ); default: return [ - + - + , ]; } }; -const EventsTable = ({ - events, - onToggleStreaming -}: Props) => { +const EventsTable = ({ events, onToggleStreaming }: Props) => { const [notification, setNotification] = useState(null); const [isStreaming, setIsStreaming] = useState(true); @@ -213,7 +291,7 @@ const EventsTable = ({ - {events.map(event => renderEvent(event, showNotification))} + {events.map((event) => renderEvent(event, showNotification))}
+
Debug Session Started + Event Count + Actions
+ {formatDate(session.written_at)} - - {session.event_count.toLocaleString()} - + + {session.event_count.toLocaleString()} +
{new Date(event.timestamp).toLocaleTimeString()} summary {key} + {key} + evaluated as {String(counter.value)}{clipboardLink('Copy to clipboard', JSON.stringify(summaryEvent.data), showNotification)}
+ {clipboardLink( + 'Copy to clipboard', + JSON.stringify(summaryEvent.data), + showNotification, + )} +
{new Date(event.timestamp).toLocaleTimeString()} index {targetText} + {targetText} + indexed {JSON.stringify(indexEvent).length} bytes{clipboardLink('Copy to clipboard', JSON.stringify(indexEvent.data), showNotification)}
+ {clipboardLink( + 'Copy to clipboard', + JSON.stringify(indexEvent.data), + showNotification, + )} +
feature {featureEvent.key || 'unknown'} {eventText}{clipboardLink('Copy to clipboard', JSON.stringify(featureEvent), showNotification)}
+ {clipboardLink( + 'Copy to clipboard', + JSON.stringify(featureEvent), + showNotification, + )} +
{new Date(event.timestamp).toLocaleTimeString()} {event.data.kind} {customEvent.key } + {customEvent.key} + value is {customEvent.metricValue}{clipboardLink('Copy to clipboard', JSON.stringify(customEvent), showNotification)} + {clipboardLink( + 'Copy to clipboard', + JSON.stringify(customEvent), + showNotification, + )} +
{(() => { - try { - const date = new Date(event.timestamp); - return isNaN(date.getTime()) ? event.timestamp : date.toLocaleTimeString(); - } catch { - return event.timestamp; - } - })()} + {(() => { + try { + const date = new Date(event.timestamp); + return isNaN(date.getTime()) + ? event.timestamp + : date.toLocaleTimeString(); + } catch { + return event.timestamp; + } + })()} + {event.data.kind} {clipboardLink('Copy to clipboard', JSON.stringify(event.data), showNotification)} + {clipboardLink( + 'Copy to clipboard', + JSON.stringify(event.data), + showNotification, + )} +
{events.length === 0 &&

No events received yet...

} diff --git a/internal/dev_server/ui/src/RouteSelector.tsx b/internal/dev_server/ui/src/RouteSelector.tsx index 6831792db..2df97ed4c 100644 --- a/internal/dev_server/ui/src/RouteSelector.tsx +++ b/internal/dev_server/ui/src/RouteSelector.tsx @@ -1,4 +1,11 @@ -import { Select, SelectValue, Button, Popover, ListBox, ListBoxItem } from '@launchpad-ui/components'; +import { + Select, + SelectValue, + Button, + Popover, + ListBox, + ListBoxItem, +} from '@launchpad-ui/components'; import { Icon } from '@launchpad-ui/icons'; import { useNavigate, useLocation } from 'react-router'; import { Fragment } from 'react'; @@ -10,11 +17,11 @@ const RouteSelector = () => { const options = [ { key: '/ui/flags', label: 'Flags' }, { key: '/ui/events', label: 'Events' }, - { key: '/ui/debug-sessions', label: 'Debug Sessions' } + { key: '/ui/debug-sessions', label: 'Debug Sessions' }, ]; const currentPath = location.pathname === '/' ? '/ui' : location.pathname; - const currentOption = options.find(option => option.key === currentPath); + const currentOption = options.find((option) => option.key === currentPath); const handleSelectionChange = (key: React.Key) => { if (typeof key === 'string') { @@ -31,15 +38,17 @@ const RouteSelector = () => { > {options.map((option) => ( - + {option.label} ))} diff --git a/internal/dev_server/ui/src/types.ts b/internal/dev_server/ui/src/types.ts index 57c08caee..feec7de0a 100644 --- a/internal/dev_server/ui/src/types.ts +++ b/internal/dev_server/ui/src/types.ts @@ -67,7 +67,11 @@ export interface GenericEventPayload { export interface EventData { id: string; timestamp: number; - data: SummaryEventPayload | FeatureEventPayload | IndexEventPayload | GenericEventPayload; + data: + | SummaryEventPayload + | FeatureEventPayload + | IndexEventPayload + | GenericEventPayload; } export interface DebugSession { @@ -102,6 +106,10 @@ export function convertApiEventToEventData(apiEvent: ApiEvent): EventData { return { id: apiEvent.id.toString(), timestamp: new Date(apiEvent.written_at).getTime(), - data: apiEvent.data as SummaryEventPayload | FeatureEventPayload | IndexEventPayload | GenericEventPayload, + data: apiEvent.data as + | SummaryEventPayload + | FeatureEventPayload + | IndexEventPayload + | GenericEventPayload, }; } From 9f908b20b35c6b2e0f8b9b5bf23e97cc7ba0a76b Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Tue, 19 Aug 2025 09:54:08 -0400 Subject: [PATCH 81/96] Fix sql semantics --- internal/dev_server/events_db/sqlite.go | 2 +- internal/dev_server/events_db/sqlite_test.go | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/internal/dev_server/events_db/sqlite.go b/internal/dev_server/events_db/sqlite.go index 692ac1fed..c49dcfd29 100644 --- a/internal/dev_server/events_db/sqlite.go +++ b/internal/dev_server/events_db/sqlite.go @@ -154,7 +154,7 @@ func (s *Sqlite) QueryDebugSessions(ctx context.Context, limit int, offset int) // Get total count for pagination info var totalCount int64 - countQuery := `SELECT COUNT(*) FROM debug_session` + countQuery := `SELECT count(DISTINCT(debug_session_key)) FROM debug_events` err = s.database.QueryRowContext(ctx, countQuery).Scan(&totalCount) if err != nil { return nil, err diff --git a/internal/dev_server/events_db/sqlite_test.go b/internal/dev_server/events_db/sqlite_test.go index b4881e429..a495d7cb5 100644 --- a/internal/dev_server/events_db/sqlite_test.go +++ b/internal/dev_server/events_db/sqlite_test.go @@ -45,6 +45,9 @@ func TestDBFunctions(t *testing.T) { t.Run("WriteEvent succeeds", func(t *testing.T) { err := store.WriteEvent(ctx, debugSessionKey, "summary", []byte(testEvent)) require.NoError(t, err) + + err = store.WriteEvent(ctx, "another-session", "summary", []byte(testEvent)) + require.NoError(t, err) }) t.Run("QueryEvents with no filter", func(t *testing.T) { @@ -110,7 +113,9 @@ func TestDBFunctions(t *testing.T) { require.NoError(t, err) err = store.WriteEvent(ctx, "session-2", "diagnostic", []byte(`{"kind":"diagnostic","data":"test"}`)) require.NoError(t, err) - // session-3 will have 0 events + + err = store.WriteEvent(ctx, "session-3", "diagnostic", []byte(`{"kind":"diagnostic","data":"test"}`)) + require.NoError(t, err) // Query first page page, err := store.QueryDebugSessions(ctx, 2, 0) @@ -131,7 +136,7 @@ func TestDBFunctions(t *testing.T) { allPage, err := store.QueryDebugSessions(ctx, 10, 0) require.NoError(t, err) require.NotNil(t, allPage) - require.Len(t, allPage.Sessions, 2) + require.Len(t, allPage.Sessions, 4) require.Equal(t, int64(4), allPage.TotalCount) require.False(t, allPage.HasMore) @@ -141,9 +146,9 @@ func TestDBFunctions(t *testing.T) { allSessionKeys[session.Key] = session.EventCount } - require.Equal(t, int64(0), allSessionKeys["session-3"]) + require.Equal(t, int64(1), allSessionKeys["session-3"]) require.Equal(t, int64(2), allSessionKeys["session-2"]) - require.Equal(t, int64(0), allSessionKeys["another-session"]) + require.Equal(t, int64(1), allSessionKeys["another-session"]) require.Equal(t, int64(4), allSessionKeys[debugSessionKey]) // 4 events from previous tests // Test pagination - second page From 0584dce2a2d6816a75a82bb9e220c4620e6e0f46 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Tue, 19 Aug 2025 09:56:37 -0400 Subject: [PATCH 82/96] Add overrides --- internal/dev_server/model/override_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dev_server/model/override_test.go b/internal/dev_server/model/override_test.go index ada3df3e8..57e58ddd2 100644 --- a/internal/dev_server/model/override_test.go +++ b/internal/dev_server/model/override_test.go @@ -78,7 +78,7 @@ func TestUpsertOverride(t *testing.T) { Handle(model.OverrideEvent{ FlagKey: flagKey, ProjectKey: projKey, - FlagState: model.FlagState{Value: ldvalue.Bool(true), Version: 2}, + FlagState: model.FlagState{Value: ldvalue.Bool(true), Version: 2, TrackEvents: true}, }) o, err := model.UpsertOverride(ctx, projKey, flagKey, ldValue) From 47ef1822ef6af3c69e826befbafd2c55adf884a7 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Tue, 19 Aug 2025 10:01:46 -0400 Subject: [PATCH 83/96] remove run configs --- .run/run with sync.run.xml | 17 ----------------- .run/run without sync.run.xml | 17 ----------------- 2 files changed, 34 deletions(-) delete mode 100644 .run/run with sync.run.xml delete mode 100644 .run/run without sync.run.xml diff --git a/.run/run with sync.run.xml b/.run/run with sync.run.xml deleted file mode 100644 index 5c2233e1d..000000000 --- a/.run/run with sync.run.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/.run/run without sync.run.xml b/.run/run without sync.run.xml deleted file mode 100644 index b87533443..000000000 --- a/.run/run without sync.run.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - From c0fb94b12dd9c0f95d9ba114b8d57a5fe35c5f68 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 19 Aug 2025 13:37:50 -0700 Subject: [PATCH 84/96] fix clipboard link --- internal/dev_server/ui/src/EventsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 8df00482e..6b8f43b8e 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -61,7 +61,7 @@ const summaryRows = ( {clipboardLink( 'Copy to clipboard', - JSON.stringify(summaryEvent.data), + JSON.stringify(summaryEvent), showNotification, )} From e4bae99120e4d2dbbebcf0cc8103d304498fb373 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Tue, 19 Aug 2025 13:39:11 -0700 Subject: [PATCH 85/96] dist --- internal/dev_server/ui/dist/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index ae24f0402..3ca9d7643 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -99,7 +99,7 @@ function print() { __p += __j.call(arguments, '') } `:`; `)+be+`return __p -}`;var lt=f4(function(){return vt(R,Fe+"return "+be).apply(n,F)});if(lt.source=be,U7(lt))throw lt;return lt}function GC(a){return Tt(a).toLowerCase()}function qC(a){return Tt(a).toUpperCase()}function YC(a,u,m){if(a=Tt(a),a&&(m||u===n))return cd(a);if(!a||!(u=J0(u)))return a;var S=ln(a),E=ln(u),R=dd(S,E),F=Mu(S,E)+1;return Or(S,R,F).join("")}function XC(a,u,m){if(a=Tt(a),a&&(m||u===n))return a.slice(0,pa(a)+1);if(!a||!(u=J0(u)))return a;var S=ln(a),E=Mu(S,ln(u))+1;return Or(S,0,E).join("")}function QC(a,u,m){if(a=Tt(a),a&&(m||u===n))return a.replace(cu,"");if(!a||!(u=J0(u)))return a;var S=ln(a),E=dd(S,ln(u));return Or(S,E).join("")}function JC(a,u){var m=j,S=q;if(t0(u)){var E="separator"in u?u.separator:E;m="length"in u?rt(u.length):m,S="omission"in u?J0(u.omission):S}a=Tt(a);var R=a.length;if(Fi(a)){var F=ln(a);R=F.length}if(m>=R)return a;var H=m-K2(S);if(H<1)return S;var X=F?Or(F,0,H).join(""):a.slice(0,H);if(E===n)return X+S;if(F&&(H+=X.length-H),G7(E)){if(a.slice(H).search(E)){var pe,he=X;for(E.global||(E=Wo(E.source,Tt(fu.exec(E))+"g")),E.lastIndex=0;pe=E.exec(he);)var be=pe.index;X=X.slice(0,be===n?H:be)}}else if(a.indexOf(J0(E),H)!=H){var Te=X.lastIndexOf(E);Te>-1&&(X=X.slice(0,Te))}return X+S}function eP(a){return a=Tt(a),a&&V1.test(a)?a.replace(F2,md):a}var tP=ii(function(a,u,m){return a+(m?" ":"")+u.toUpperCase()}),X7=rc("toUpperCase");function d4(a,u,m){return a=Tt(a),u=m?n:u,u===n?y7(a)?$7(a):v7(a):a.match(u)||[]}var f4=nt(function(a,u){try{return I0(a,n,u)}catch(m){return U7(m)?m:new qe(m)}}),nP=yr(function(a,u){return _0(u,function(m){m=Wn(m),dr(a,m,we(a[m],a))}),a});function rP(a){var u=a==null?0:a.length,m=He();return a=u?Mt(a,function(S){if(typeof S[1]!="function")throw new gn(c);return[m(S[0]),S[1]]}):[],nt(function(S){for(var E=-1;++Efe)return[];var m=z,S=E0(a,z);u=He(u),a-=z;for(var E=Au(S,u);++m0||u<0)?new Qe(m):(a<0?m=m.takeRight(-a):a&&(m=m.drop(a)),u!==n&&(u=rt(u),m=u<0?m.dropRight(-u):m.take(u-a)),m)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(z)},un(Qe.prototype,function(a,u){var m=/^(?:filter|find|map|reject)|While$/.test(u),S=/^(?:head|last)$/.test(u),E=M[S?"take"+(u=="last"?"Right":""):u],R=S||/^find/.test(u);E&&(M.prototype[u]=function(){var F=this.__wrapped__,H=S?[1]:arguments,X=F instanceof Qe,pe=H[0],he=X||Je(F),be=function(ct){var ht=E.apply(M,o2([ct],H));return S&&Te?ht[0]:ht};he&&m&&typeof pe=="function"&&pe.length!=1&&(X=he=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=R&&!Te,lt=X&&!Fe;if(!R&&he){F=lt?F:new Qe(this);var Ue=a.apply(F,H);return Ue.__actions__.push({func:Gn,args:[be],thisArg:n}),new k0(Ue,Te)}return We&<?a.apply(this,H):(Ue=this.thru(be),We?S?Ue.value()[0]:Ue.value():Ue)})}),_0(["pop","push","shift","sort","splice","unshift"],function(a){var u=Ar[a],m=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);M.prototype[a]=function(){var E=arguments;if(S&&!this.__chain__){var R=this.value();return u.apply(Je(R)?R:[],E)}return this[m](function(F){return u.apply(Je(F)?F:[],E)})}}),un(Qe.prototype,function(a,u){var m=M[u];if(m){var S=m.name+"";mt.call(Ki,S)||(Ki[S]=[]),Ki[S].push({name:u,func:m})}}),Ki[lo(n,B).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=Ca,Qe.prototype.reverse=Fu,Qe.prototype.value=Gi,M.prototype.at=cs,M.prototype.chain=ci,M.prototype.commit=ds,M.prototype.next=Ec,M.prototype.plant=O7,M.prototype.reverse=Tc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=N7,M.prototype.first=M.prototype.head,Lr&&(M.prototype[Lr]=kc),M},Zi=S7();or?((or.exports=Zi)._=Zi,zo._=Zi):Zt._=Zi}).call(wH)}(Kc,Kc.exports)),Kc.exports}var SH=$H();const CH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:i,updateOverride:l})=>{switch(typeof i){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(cZ,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,c=s.findIndex(p=>SH.isEqual(p.value,t));c===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],c=0);const f=p=>v=>{v.preventDefault();const g=Object.fromEntries(new FormData(v.currentTarget));l(n,JSON.parse(g.value)),p()};return P.jsxs(L2,{gap:"2",children:[P.jsx(fS,{"aria-label":"flag variations select",selectedKey:c,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(y.Fragment,{children:[c!==null&&s[c]._id==="OVERRIDE"?P.jsxs(g1,{children:[P.jsxs(Bn,{children:[P.jsx(ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(m1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(Bn,{children:[P.jsx(ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(qv,{children:P.jsx(Wv,{children:s.map((p,v)=>{const g=p.name?p.name:JSON.stringify(p.value);return P.jsx(Uv,{id:v,textValue:g,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(L2,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),g]})}):g},v)})})})]},".0")}),P.jsx(Xe,{width:"2rem",height:"2rem",children:P.jsxs(f$,{children:[P.jsxs(g1,{children:[P.jsx(zv,{icon:"edit","aria-label":"edit variation value"}),P.jsx(m1,{children:"Edit the served variation value as JSON"})]}),P.jsx(uS,{children:P.jsx(sS,{children:P.jsx(lS,{children:({close:p})=>P.jsxs($w,{onSubmit:f(p),children:[P.jsxs(Yv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:v=>{try{return JSON.parse(v),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(iu,{children:`${n} value`}),P.jsx(pS,{style:{fontFamily:"monospace"}}),P.jsx(K0,{slot:"description",children:"Update the value as JSON"}),P.jsx(aS,{})]}),P.jsxs(rS,{children:[P.jsx(Bn,{onPress:p,children:"Cancel"}),P.jsx(Bn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var Hf={exports:{}},PH=Hf.exports,n8;function _H(){return n8||(n8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(PH,t=>{var n=(le,Y)=>{if(!le||!Y)return _e;var ue=_(le);ve(Y)||(Y=C(Y));var $e=ue.bitflags;return($e&Y._bitflags)!==$e?_e:A(ue,Y)},i=(le,Y,ue)=>{if(!le)return ue!=null&&ue.all?k(Y,ue):fe;var $e=_(le),Ee=$e.bitflags,Se=$e.containsSpace,me=x((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||Pe,ke=0,je=0,Ye=Y.length;function yt(W0){kece.peek()._score&&ce.replaceTop(W0))}if(ue!=null&&ue.key)for(var At=ue.key,at=0;at-1e3&&j[dt]>se){var ot=(j[dt]+q[dt])/4;ot>j[dt]&&(j[dt]=ot)}q[dt]>j[dt]&&(j[dt]=q[dt])}}if(Se){for(let tt=0;tt<$e.spaceSearches.length;tt++)if(j[tt]===se)continue e}else{var Ze=!1;for(let tt=0;tt-1e3&&St>se){var ot=(St+st._score)/4;ot>St&&(St=ot)}st._score>St&&(St=st._score)}}if(Qt.obj=$t,Qt._score=St,ue!=null&&ue.scoreFn){if(St=ue.scoreFn(Qt),!St)continue;St=x(St),Qt._score=St}St=0;--at)Ut[at]=ce.poll();return Ut.total=ke+je,Ut},l=(le,Y="",ue="")=>{for(var $e=typeof Y=="function"?Y:void 0,Ee=le.target,Se=Ee.length,me=le.indexes,Be="",ke=0,je=0,Ye=!1,yt=[],At=0;At{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=D(le);return v(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},c=()=>{O.clear(),W.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ue)=>Y-ue)}set indexes(Y){return this._indexes=Y}highlight(Y,ue){return l(this,Y,ue)}get score(){return g(this._score)}set score(Y){this._score=x(Y)}}class p extends Array{get score(){return g(this._score)}set score(Y){this._score=x(Y)}}var v=(le,Y)=>{const ue=new f;return ue.target=le,ue.obj=Y.obj??_e,ue._score=Y._score??se,ue._indexes=Y._indexes??[],ue._targetLower=Y._targetLower??"",ue._targetLowerCodes=Y._targetLowerCodes??_e,ue._nextBeginningIndexes=Y._nextBeginningIndexes??_e,ue._bitflags=Y._bitflags??0,ue},g=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),x=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=D(le),ue=[];if(Y.containsSpace){var $e=le.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=D($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:Y.lowerCodes,_lower:Y._lower,containsSpace:Y.containsSpace,bitflags:Y.bitflags,spaceSearches:ue}},C=le=>{if(le.length>999)return s(le);var Y=O.get(le);return Y!==void 0||(Y=s(le),O.set(le,Y)),Y},_=le=>{if(le.length>999)return w(le);var Y=W.get(le);return Y!==void 0||(Y=w(le),W.set(le,Y)),Y},k=(le,Y)=>{var ue=[];ue.total=le.length;var $e=(Y==null?void 0:Y.limit)||Pe;if(Y!=null&&Y.key)for(var Ee=0;Ee=$e)return ue}}else if(Y!=null&&Y.keys)for(var Ee=0;Ee=0;--je){var me=Q(Se,Y.keys[je]);if(!me){ke[je]=ae;continue}ve(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[je]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(le,Y,ue=!1,$e=!1)=>{if(ue===!1&&le.containsSpace)return B(le,Y,$e);for(var Ee=le._lower,Se=le.lowerCodes,me=Se[0],Be=Y._targetLowerCodes,ke=Se.length,je=Be.length,at=0,Ye=0,yt=0;;){var At=me===Be[Ye];if(At){if(oe[yt++]=Ye,++at,at===ke)break;me=Se[at]}if(++Ye,Ye>=je)return _e}var at=0,$t=!1,it=0,st=Y._nextBeginningIndexes;st===_e&&(st=Y._nextBeginningIndexes=Z(Y.target)),Ye=oe[0]===0?0:st[oe[0]-1];var i0=0;if(Ye!==je)for(;;)if(Ye>=je){if(at<=0||(++i0,i0>200))break;--at;var bt=L[--it];Ye=st[bt]}else{var At=Se[at]===Be[Ye];if(At){if(L[it++]=Ye,++at,at===ke){$t=!0;break}++Ye}else Ye=st[Ye]}var ft=ke<=1?-1:Y._targetLower.indexOf(Ee,oe[0]),Re=!!~ft,ot=Re?ft===0||Y._nextBeginningIndexes[ft-1]===ft:!1;if(Re&&!ot){for(var Ze=0;Ze{for(var dt=0,rr=0,P0=1;P024&&(dt*=(vn-24)*10)}return dt-=(je-ke)/2,Re&&(dt/=1+ke*ke*1),ot&&(dt/=1+ke*ke*1),dt-=(je-ke)/2,dt};if($t)if(ot){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=_e,me=0,Be=le.spaceSearches,ke=Be.length,je=0,Ye=()=>{for(let ot=je-1;ot>=0;ot--)Y._nextBeginningIndexes[ne[ot*2+0]]=ne[ot*2+1]},yt=!1,Re=0;Re=0&&i0===Y._nextBeginningIndexes[Ze];Ze--)Y._nextBeginningIndexes[Ze]=st,ne[je*2+0]=Ze,ne[je*2+1]=i0,je++}}Ee+=Se._score/ke,q[Re]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var Re=0;Re{for(var Y=le.length,ue=le.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var Y=le.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,je=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!je;Ee=ke,Se=je,Ye&&(ue[$e++]=me)}return ue},Z=le=>{for(var Y=le.length,ue=V(le),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?Y:Ee);return $e},O=new Map,W=new Map,oe=[],L=[],ne=[],j=[],q=[],xe=[],G=[],Q=(le,Y)=>{var ue=le[Y];if(ue!==void 0)return ue;if(typeof Y=="function")return Y(le);var $e=Y;Array.isArray(Y)||($e=Y.split("."));for(var Ee=$e.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",Pe=1/0,se=-Pe,fe=[];fe.total=0;var _e=null,ae=s(""),z=le=>{var Y=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=Y[me],ke=1;ke>1]=Y[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)Y[me]=Y[Ye];Y[me]=Be};return $e.add=Se=>{var me=ue;Y[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)Y[me]=Y[Be];Y[me]=Se},$e.poll=Se=>{if(ue!==0){var me=Y[0];return Y[0]=Y[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return Y[0]},$e.replaceTop=Se=>{Y[0]=Se,Ee()},$e},ce=z();return{single:n,go:i,prepare:s,cleanup:c}})}(Hf)),Hf.exports}var EH=_H();const kH=y1(EH);function TH({availableVariations:e,selectedProject:t,flags:n,overrides:i,setOverrides:l}){const[s,c]=y.useState(!1),[f,p]=y.useState(""),[v,g]=y.useState(0),x=20,w=y.useMemo(()=>i&&Object.keys(i).length>0,[i]);y.useEffect(()=>{!w&&s&&c(!1)},[w,s]);const C=y.useMemo(()=>n?Object.entries(n).filter(O=>{if(!f)return!0;const[W]=O,oe=kH.single(f.toLowerCase(),W);return oe&&oe.score>-5e3}).filter(O=>{const[W]=O,oe=W in i;return!(s&&!oe)}):[],[n,f,s,i]),_=y.useMemo(()=>{const Z=v*x,O=Z+x;return C.slice(Z,O)},[C,v]),k=y.useCallback((Z,O)=>{var oe;const W={...i,[Z]:{value:O,version:((oe=i[Z])==null?void 0:oe.version)||0}};l(W),fetch(tr(`/dev/projects/${t}/overrides/${Z}`),{method:"PUT",body:JSON.stringify(O)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(i),console.error("unable to update override",L)})},[i,t]),A=y.useCallback(async Z=>{const O={...i};delete O[Z],l(O);try{const W=await fetch(tr(`/dev/projects/${t}/overrides/${Z}`),{method:"DELETE"});if(!W.ok)throw new Error(`got ${W.status} ${W.statusText}. ${await W.text()}`)}catch(W){console.error("unable to remove override",W),l(i)}},[i,t]),B=y.useCallback(async()=>{l({});try{const Z=await fetch(tr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!Z.ok)throw new Error(`got ${Z.status} ${Z.statusText}. ${await Z.text()}`)}catch(Z){console.error("unable to remove all overrides",Z),l(i)}},[i,t]);if(!n)return null;const D=Math.ceil(C.length/x),V=Z=>{switch(Z){case"next":g(O=>Math.min(O+1,D-1));break;case"prev":g(O=>Math.max(O-1,0));break;case"first":g(0);break;case"last":g(D-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Xe,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:bH.borderRadius.regular,children:[P.jsxs(iu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(fO,{id:"only-show-overrides",isSelected:s,onChange:Z=>{c(Z)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(Bn,{variant:"destructive",isDisabled:!w,onPress:async()=>{i&&(await B(),l({}),c(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs(W5,{gap:"4",children:[P.jsx(L2,{gap:"4",children:P.jsx(RN,{"aria-label":"Search flags",children:P.jsxs(_O,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(jv,{placeholder:"Search flags by key",onChange:Z=>{p(Z.target.value),g(0)},value:f,"aria-label":"Search flags input"}),P.jsx(zv,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:_.map(([Z,{value:O}],W)=>{var j;const oe=(j=i[Z])==null?void 0:j.value,L=Z in i,ne=L?oe:O;return P.jsxs("li",{style:{backgroundColor:W%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Xe,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(L2,{gap:"2",children:[P.jsx(H5,{asChild:!0,text:Z,children:P.jsx("code",{className:L?"has-override":"",children:Z})}),L&&P.jsx(Bn,{"aria-label":"Remove override",onPress:()=>{A(Z)},variant:"destructive",children:P.jsxs(L2,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Xe,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(CH,{availableVariations:e[Z]?e[Z]:[],currentValue:ne,flagValue:O,flagKey:Z,updateOverride:k})})]},Z)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(XV,{currentOffset:v*x,isReady:!0,onChange:Z=>V(Z),pageSize:x,resourceName:"flags",totalCount:C.length})})]})}const AH=async()=>{const e=await fetch(tr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function MH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[i,l]=y.useState([]),[s,c]=y.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),c(!1)};return y.useEffect(()=>{AH().then(f).catch(p=>{console.error(p),c(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):i.length>0?P.jsxs(FF,{children:[P.jsx(L2,{gap:"1",children:P.jsxs(g1,{children:[P.jsx(Bn,{children:e??"Select a project"}),P.jsx(m1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(qv,{children:P.jsx(nN,{children:i.map(p=>P.jsx(iN,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(v5,{kind:"error",children:[P.jsx(wo,{children:"No projects."}),P.jsx(K0,{children:"Add one via"}),P.jsx(H5,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const LH=async e=>{const t=await fetch(tr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},RH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[i,l]=y.useState(!1),s=async()=>{l(!0);try{const c=await LH(e);n(c.availableVariations),t(oh(c.flagsState))}catch(c){J6.warning("Sync failed"),console.error("Sync failed:",c)}finally{J6.success("Sync successful"),l(!1)}};return e?P.jsxs(g1,{children:[P.jsx(Bn,{onPress:s,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(L2,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(m1,{children:"Sync the selected project from the source environment"})]}):null};async function DH(e,t){const n=await fetch(tr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Y3,r8;function hS(){if(r8)return Y3;r8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Y3=e,Y3}var X3,i8;function BH(){if(i8)return X3;i8=1;var e=typeof yo=="object"&&yo&&yo.Object===Object&&yo;return X3=e,X3}var Q3,o8;function vS(){if(o8)return Q3;o8=1;var e=BH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return Q3=n,Q3}var J3,l8;function VH(){if(l8)return J3;l8=1;var e=vS(),t=function(){return e.Date.now()};return J3=t,J3}var ep,a8;function IH(){if(a8)return ep;a8=1;var e=/\s/;function t(n){for(var i=n.length;i--&&e.test(n.charAt(i)););return i}return ep=t,ep}var tp,s8;function FH(){if(s8)return tp;s8=1;var e=IH(),t=/^\s+/;function n(i){return i&&i.slice(0,e(i)+1).replace(t,"")}return tp=n,tp}var np,u8;function mS(){if(u8)return np;u8=1;var e=vS(),t=e.Symbol;return np=t,np}var rp,c8;function ZH(){if(c8)return rp;c8=1;var e=mS(),t=Object.prototype,n=t.hasOwnProperty,i=t.toString,l=e?e.toStringTag:void 0;function s(c){var f=n.call(c,l),p=c[l];try{c[l]=void 0;var v=!0}catch{}var g=i.call(c);return v&&(f?c[l]=p:delete c[l]),g}return rp=s,rp}var ip,d8;function OH(){if(d8)return ip;d8=1;var e=Object.prototype,t=e.toString;function n(i){return t.call(i)}return ip=n,ip}var op,f8;function NH(){if(f8)return op;f8=1;var e=mS(),t=ZH(),n=OH(),i="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function c(f){return f==null?f===void 0?l:i:s&&s in Object(f)?t(f):n(f)}return op=c,op}var lp,p8;function HH(){if(p8)return lp;p8=1;function e(t){return t!=null&&typeof t=="object"}return lp=e,lp}var ap,h8;function jH(){if(h8)return ap;h8=1;var e=NH(),t=HH(),n="[object Symbol]";function i(l){return typeof l=="symbol"||t(l)&&e(l)==n}return ap=i,ap}var sp,v8;function zH(){if(v8)return sp;v8=1;var e=FH(),t=hS(),n=jH(),i=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,c=/^0o[0-7]+$/i,f=parseInt;function p(v){if(typeof v=="number")return v;if(n(v))return i;if(t(v)){var g=typeof v.valueOf=="function"?v.valueOf():v;v=t(g)?g+"":g}if(typeof v!="string")return v===0?v:+v;v=e(v);var x=s.test(v);return x||c.test(v)?f(v.slice(2),x?2:8):l.test(v)?i:+v}return sp=p,sp}var up,m8;function KH(){if(m8)return up;m8=1;var e=hS(),t=VH(),n=zH(),i="Expected a function",l=Math.max,s=Math.min;function c(f,p,v){var g,x,w,C,_,k,A=0,B=!1,D=!1,V=!0;if(typeof f!="function")throw new TypeError(i);p=n(p)||0,e(v)&&(B=!!v.leading,D="maxWait"in v,w=D?l(n(v.maxWait)||0,p):w,V="trailing"in v?!!v.trailing:V);function Z(G){var Q=g,ve=x;return g=x=void 0,A=G,C=f.apply(ve,Q),C}function O(G){return A=G,_=setTimeout(L,p),B?Z(G):C}function W(G){var Q=G-k,ve=G-A,Pe=p-Q;return D?s(Pe,w-ve):Pe}function oe(G){var Q=G-k,ve=G-A;return k===void 0||Q>=p||Q<0||D&&ve>=w}function L(){var G=t();if(oe(G))return ne(G);_=setTimeout(L,W(G))}function ne(G){return _=void 0,V&&g?Z(G):(g=x=void 0,C)}function j(){_!==void 0&&clearTimeout(_),A=0,g=k=x=_=void 0}function q(){return _===void 0?C:ne(t())}function xe(){var G=t(),Q=oe(G);if(g=arguments,x=this,k=G,Q){if(_===void 0)return O(k);if(D)return clearTimeout(_),_=setTimeout(L,p),Z(k)}return _===void 0&&(_=setTimeout(L,p)),C}return xe.cancel=j,xe.flush=q,xe}return up=c,up}var WH=KH();const UH=y1(WH);function GH({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:i}){const[l,s]=y.useState(null),[c,f]=y.useState(""),[p,v]=y.useState(!1),g=y.useCallback(UH(x=>{v(!0),DH(e,x).then(w=>{if(s(w),!n){const C=w.find(_=>_.key===t);C?i(C):w.length>0&&i({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{v(!1)})},300),[e,t,n,i]);return y.useEffect(()=>{g(c)},[g,c]),P.jsxs(W5,{gap:"3",children:[P.jsx(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(iu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(jv,{id:"environmentSearch",value:c,onChange:x=>f(x.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Xe,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(Ul,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Xe,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Wv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:x=>{const w=Array.from(x)[0],C=l==null?void 0:l.find(_=>_.key===w);C&&i(C)},children:l==null?void 0:l.map(x=>P.jsx(Uv,{id:x.key,children:x.name},x.key))})})]})}function qH({context:e,setContext:t}){return P.jsxs(W5,{gap:"3",children:[P.jsx(iu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(Yv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx(pS,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(K0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(aS,{})]})]})}function YH({isSubmitting:e,selectedEnvironment:t}){return P.jsx(Bn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(L2,{gap:"2",children:P.jsxs(Xe,{display:"flex",alignItems:"center",children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(L2,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function XH({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:l,updateProjectSettings:s}){const[c,f]=y.useState(t),[p,v]=y.useState(l),[g,x]=y.useState(!1);y.useEffect(()=>{f(t),v(l)},[t,l]);const w=async _=>{x(!0);try{_(),await s(c,p),n(c)}catch(k){console.error("Error submitting project settings:",k)}finally{x(!1)}},C=()=>{f(t),v(l)};return P.jsxs(f$,{children:[P.jsxs(g1,{children:[P.jsx(YH,{isSubmitting:g,selectedEnvironment:i}),P.jsx(m1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(uS,{isDismissable:!1,children:P.jsx(sS,{children:P.jsx(lS,{children:({close:_})=>P.jsxs($w,{onSubmit:k=>{k.preventDefault(),w(_)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(iu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs(W5,{gap:"3",children:[P.jsx(GH,{projectKey:e,sourceEnvironmentKey:i,selectedEnvironment:c,setSelectedEnvironment:f}),P.jsx(Xe,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(qH,{context:p,setContext:v})]}),P.jsxs(rS,{style:{justifyContent:"flex-end"},children:[P.jsx(Bn,{onPress:()=>{C(),_()},variant:"destructive",isDisabled:g,children:"Cancel"}),P.jsx(Bn,{variant:"primary",type:"submit",isDisabled:g,children:g?P.jsxs(L2,{gap:"2",children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function QH(){const[e,t]=y.useState(null),[n,i]=y.useState(null),[l,s]=y.useState(null),[c,f]=y.useState({}),[p,v]=y.useState({}),[g,x]=y.useState(null),[w,C]=y.useState(!1),[_,k]=y.useState("{}"),A=y.useCallback(async()=>{if(!e)return;const D=await fetch(tr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),V=await D.json();if(!D.ok)throw new Error(`Got ${D.status}, ${D.statusText} from flag fetch`);const{flagsState:Z,overrides:O,sourceEnvironmentKey:W,availableVariations:oe,context:L}=V;x(oh(Z)),f(O),s(W),v(oe),k(JSON.stringify(L||"{}",null,2));const j=(await JH(e)).find(q=>q.key===W);j&&i(j)},[e]);y.useEffect(()=>{e&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,e]),y.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const B=y.useCallback(async(D,V)=>{if(e)try{const Z=await fetch(tr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:D==null?void 0:D.key,context:JSON.parse(V)})});if(!Z.ok)throw new Error(`Got ${Z.status}, ${Z.statusText} from project settings update`);const O=await Z.json(),{flagsState:W,sourceEnvironmentKey:oe,context:L}=O;x(oh(W)),s(oe),k(JSON.stringify(L||{},null,2)),i(D),await A()}catch(Z){console.error("Error updating project settings:",Z)}},[e,A]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Xe,{width:"100%",minWidth:"600px",children:P.jsxs(Xe,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Xe,{marginBottom:"2rem",width:"100%",children:P.jsxs(v5,{kind:"error",children:[P.jsx(wo,{children:"No projects."}),P.jsx(K0,{children:"Add one via"}),P.jsx(H5,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Xe,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(MH,{selectedProject:e,setSelectedProject:t,setShowBanner:C}),e&&P.jsx(XH,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:l,context:_,updateProjectSettings:B}),P.jsx(RH,{selectedProject:e,setFlags:x,setAvailableVariations:v})]}),e&&P.jsx(Xe,{width:"100%",children:P.jsx(TH,{availableVariations:p,selectedProject:e,flags:g,overrides:c,setOverrides:D=>{f(D)}})})]})})})}async function JH(e){const t=await fetch(tr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const B1=(e,t,n)=>P.jsx("button",{type:"button",className:"copy-button",onClick:i=>{i.preventDefault(),navigator.clipboard.writeText(t).then(()=>{n("Copied to clipboard!")}).catch(()=>{n("Failed to copy to clipboard")})},children:e}),ej=(e,t,n)=>{const i=[];for(const[l,s]of Object.entries(t.features||{})){const c=e.id+l,f=s.counters||[];for(const p of f)i.push(P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"summary"}),P.jsxs("td",{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",l]}),P.jsxs("td",{children:["evaluated as ",String(p.value)]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t.data),n)})]},c))}return i},tj=(e,t,n)=>{let i="unknown",l="help";if(e.data.context){const s=t.context;if(!s)return console.error("Index event context is undefined"),[];switch(s.kind){case"user":i="user context",l="person";break;case"application":i=s.key||"unknown application",l="cloud";break;case"multi":s.user?(i=s.user.email||s.user.key||"unknown user",l="person"):s.account?(i=s.account.name||s.account.key||"unknown account",l="group"):s.application?(i=s.application.key||"unknown application",l="cloud"):(i="multi context",l="chart-dashboard");break}}else t.user?(i=(t.user.key||"unknown")+" user",l="person-outline"):i="unknown";return[P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"index"}),P.jsxs("td",{children:[P.jsx(Pt,{name:l,size:"small"})," ",i]}),P.jsxs("td",{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t.data),n)})]},e.id)]},nj=(e,t,n)=>{const i=`evaluated as ${String(t.value)}`;return[P.jsxs("tr",{className:"feature-row",children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"feature"}),P.jsx("td",{children:t.key||"unknown"}),P.jsx("td",{children:i}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t),n)})]},e.id)]},rj=(e,t,n)=>[P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:e.data.kind}),P.jsxs("td",{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs("td",{children:["value is ",t.metricValue]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t),n)})]},e.id)],ij=(e,t)=>{switch(e.data.kind){case"summary":return ej(e,e.data,t);case"index":return tj(e,e.data,t);case"feature":return nj(e,e.data,t);case"custom":return rj(e,e.data,t);default:return[P.jsxs("tr",{children:[P.jsx("td",{children:(()=>{try{const n=new Date(e.timestamp);return isNaN(n.getTime())?e.timestamp:n.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx("td",{children:e.data.kind}),P.jsx("td",{}),P.jsx("td",{}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(e.data),t)})]},e.id)]}},gS=({events:e,onToggleStreaming:t})=>{const[n,i]=y.useState(null),[l,s]=y.useState(!0),c=p=>{s(p),t==null||t(p)},f=p=>{i(p),setTimeout(()=>{i(null)},1500)};return P.jsxs("div",{children:[P.jsx("h3",{children:"Events Stream"}),t&&P.jsx("button",{className:`streaming-toggle-button ${l?"streaming":"not-streaming"}`,onClick:()=>c(!l),children:l?"Streaming ON":"Streaming OFF"}),P.jsxs("table",{className:"events-table",children:[P.jsx("thead",{children:P.jsxs("tr",{children:[P.jsx("th",{children:"Time"}),P.jsx("th",{children:"Type"}),P.jsx("th",{children:"Target"}),P.jsx("th",{children:"Event"}),P.jsx("th",{children:"Link"})]})}),P.jsx("tbody",{children:e.map(p=>ij(p,f))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."}),n&&P.jsx("div",{className:`copy-notification ${n?"show":"hide"}`,children:n})]})},oj=({limit:e=1e3})=>{const[t,n]=y.useState([]),[i,l]=y.useState([]),[s,c]=y.useState(!0);y.useEffect(()=>{const p=new EventSource(tr("/events/tee"));return p.addEventListener("put",v=>{if(!v.data||v.data.trim()==="")return;let g;try{g=JSON.parse(v.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const x={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:g};s?n(w=>[x,...w].slice(0,e)):l(w=>[x,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{c(p),p&&i.length>0&&(n(v=>[...i,...v].slice(0,e)),l([]))};return P.jsx(gS,{events:t,onToggleStreaming:f})},lj=()=>{const[e,t]=y.useState([]),[n,i]=y.useState(!0),[l,s]=y.useState(null),[c,f]=y.useState(0),[p,v]=y.useState(null),g=async()=>{try{i(!0),s(null);const C=await fetch(tr("/dev/debug-sessions?limit=100"));if(!C.ok)throw new Error(`Failed to fetch debug sessions: ${C.status} ${C.statusText}`);const _=await C.json();t(_.sessions),f(_.total_count)}catch(C){s(C instanceof Error?C.message:"An unknown error occurred")}finally{i(!1)}};y.useEffect(()=>{g()},[]);const x=C=>{try{return new Date(C).toLocaleString()}catch{return C}},w=async C=>{if(confirm(`Are you sure you want to delete debug session "${C}" and all its events? This action cannot be undone.`))try{v(C),s(null);const _=await fetch(tr(`/dev/debug-sessions/${encodeURIComponent(C)}`),{method:"DELETE"});if(!_.ok)throw _.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${_.status} ${_.statusText}`);await g()}catch(_){s(_ instanceof Error?_.message:"An unknown error occurred while deleting the session")}finally{v(null)}};return n?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Ul,{isIndeterminate:!0})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(v5,{kind:"error",children:P.jsxs(K0,{children:["Error: ",l]})})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Bn,{onPress:g,children:"Retry"})})]}):P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsxs(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:[c," total session",c!==1?"s":""]})]}),e.length===0?P.jsxs(Xe,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"No debug sessions found"})}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsx(K0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx("div",{style:{border:"1px solid var(--lp-color-border-ui-primary)",borderRadius:"4px",overflow:"hidden"},children:P.jsxs("table",{style:{width:"100%",borderCollapse:"collapse"},children:[P.jsx("thead",{children:P.jsxs("tr",{style:{backgroundColor:"var(--lp-color-bg-ui-secondary)"},children:[P.jsx("th",{style:{padding:"0.75rem",textAlign:"left",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600},children:"Debug Session Started"}),P.jsx("th",{style:{padding:"0.75rem",textAlign:"right",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600},children:"Event Count"}),P.jsx("th",{style:{padding:"0.75rem",textAlign:"center",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600,width:"100px"},children:"Actions"})]})}),P.jsx("tbody",{children:e.map((C,_)=>P.jsxs("tr",{style:{borderBottom:_w(C.key),disabled:p===C.key,style:{background:"none",border:"1px solid var(--lp-color-border-destructive)",borderRadius:"4px",padding:"0.25rem 0.5rem",cursor:p===C.key?"not-allowed":"pointer",display:"flex",alignItems:"center",gap:"0.25rem",color:"var(--lp-color-text-destructive)",opacity:p===C.key?.6:1},title:p===C.key?"Deleting...":"Delete session and all events",children:P.jsx(Pt,{name:"delete",size:"small"})})})]},C.key))})]})})]})};function aj(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const sj=()=>{const{debugSessionKey:e}=P_(),[t,n]=y.useState([]),[i,l]=y.useState([]),[s,c]=y.useState(!0),[f,p]=y.useState(null),v=async()=>{var x;if(!e){p("Debug session key is required"),c(!1);return}try{c(!0),p(null);const w=await fetch(tr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const _=((x=(await w.json()).events)==null?void 0:x.map(aj))||[];n(_),l(_)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{c(!1)}};y.useEffect(()=>{v()},[e]);const g=x=>{l(t.filter(w=>{let C="";const _=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(A=>_(A)):typeof k=="object"?Object.values(k).flatMap(A=>_(A)):[];return C=_(w).join(" "),C.toLowerCase().includes(x.toLowerCase())}))};return s?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Ul,{isIndeterminate:!0})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"Loading events..."})})]}):f?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(v5,{kind:"error",children:P.jsxs(K0,{children:["Error: ",f]})})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Bn,{onPress:v,children:"Retry"})})]}):P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Xe,{children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(Yv,{onChange:g,name:"debug-session-search",children:P.jsxs(y.Fragment,{children:[P.jsx(iu,{children:"Search"}),P.jsx(jv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Xe,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"No events found for this debug session"})}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsx(K0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(gS,{events:i})]})};function uj(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Xe,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Xe,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(yH,{})}),P.jsx(Xe,{padding:"1rem",width:"100%",children:P.jsxs(O_,{children:[P.jsx(Rl,{path:"/",element:P.jsx(k4,{to:"/ui/flags",replace:!0})}),P.jsx(Rl,{path:"/ui",element:P.jsx(k4,{to:"/ui/flags",replace:!0})}),P.jsx(Rl,{path:"/ui/flags",element:P.jsx(QH,{})}),P.jsx(Rl,{path:"/ui/events",element:P.jsx(oj,{})}),P.jsx(Rl,{path:"/ui/debug-sessions",element:P.jsx(lj,{})}),P.jsx(Rl,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(sj,{})})]})})]})})}const cj="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function dj({children:e}){return y.useEffect(()=>{fetch(cj).then(async t=>t.text()).then(t=>{const i=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(V8.Provider,{value:{path:""},children:e})}const fj=()=>(y.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(ee.StrictMode,{children:P.jsx(uE,{children:P.jsxs(dj,{children:[P.jsx(uj,{}),P.jsx(hH,{})]})})}));qP.createRoot(document.getElementById("root")).render(P.jsx(fj,{})); +}`;var lt=f4(function(){return vt(R,Fe+"return "+be).apply(n,F)});if(lt.source=be,U7(lt))throw lt;return lt}function GC(a){return Tt(a).toLowerCase()}function qC(a){return Tt(a).toUpperCase()}function YC(a,u,m){if(a=Tt(a),a&&(m||u===n))return cd(a);if(!a||!(u=J0(u)))return a;var S=ln(a),E=ln(u),R=dd(S,E),F=Mu(S,E)+1;return Or(S,R,F).join("")}function XC(a,u,m){if(a=Tt(a),a&&(m||u===n))return a.slice(0,pa(a)+1);if(!a||!(u=J0(u)))return a;var S=ln(a),E=Mu(S,ln(u))+1;return Or(S,0,E).join("")}function QC(a,u,m){if(a=Tt(a),a&&(m||u===n))return a.replace(cu,"");if(!a||!(u=J0(u)))return a;var S=ln(a),E=dd(S,ln(u));return Or(S,E).join("")}function JC(a,u){var m=j,S=q;if(t0(u)){var E="separator"in u?u.separator:E;m="length"in u?rt(u.length):m,S="omission"in u?J0(u.omission):S}a=Tt(a);var R=a.length;if(Fi(a)){var F=ln(a);R=F.length}if(m>=R)return a;var H=m-K2(S);if(H<1)return S;var X=F?Or(F,0,H).join(""):a.slice(0,H);if(E===n)return X+S;if(F&&(H+=X.length-H),G7(E)){if(a.slice(H).search(E)){var pe,he=X;for(E.global||(E=Wo(E.source,Tt(fu.exec(E))+"g")),E.lastIndex=0;pe=E.exec(he);)var be=pe.index;X=X.slice(0,be===n?H:be)}}else if(a.indexOf(J0(E),H)!=H){var Te=X.lastIndexOf(E);Te>-1&&(X=X.slice(0,Te))}return X+S}function eP(a){return a=Tt(a),a&&V1.test(a)?a.replace(F2,md):a}var tP=ii(function(a,u,m){return a+(m?" ":"")+u.toUpperCase()}),X7=rc("toUpperCase");function d4(a,u,m){return a=Tt(a),u=m?n:u,u===n?y7(a)?$7(a):v7(a):a.match(u)||[]}var f4=nt(function(a,u){try{return I0(a,n,u)}catch(m){return U7(m)?m:new qe(m)}}),nP=yr(function(a,u){return _0(u,function(m){m=Wn(m),dr(a,m,we(a[m],a))}),a});function rP(a){var u=a==null?0:a.length,m=He();return a=u?Mt(a,function(S){if(typeof S[1]!="function")throw new gn(c);return[m(S[0]),S[1]]}):[],nt(function(S){for(var E=-1;++Efe)return[];var m=z,S=E0(a,z);u=He(u),a-=z;for(var E=Au(S,u);++m0||u<0)?new Qe(m):(a<0?m=m.takeRight(-a):a&&(m=m.drop(a)),u!==n&&(u=rt(u),m=u<0?m.dropRight(-u):m.take(u-a)),m)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(z)},un(Qe.prototype,function(a,u){var m=/^(?:filter|find|map|reject)|While$/.test(u),S=/^(?:head|last)$/.test(u),E=M[S?"take"+(u=="last"?"Right":""):u],R=S||/^find/.test(u);E&&(M.prototype[u]=function(){var F=this.__wrapped__,H=S?[1]:arguments,X=F instanceof Qe,pe=H[0],he=X||Je(F),be=function(ct){var ht=E.apply(M,o2([ct],H));return S&&Te?ht[0]:ht};he&&m&&typeof pe=="function"&&pe.length!=1&&(X=he=!1);var Te=this.__chain__,Fe=!!this.__actions__.length,We=R&&!Te,lt=X&&!Fe;if(!R&&he){F=lt?F:new Qe(this);var Ue=a.apply(F,H);return Ue.__actions__.push({func:Gn,args:[be],thisArg:n}),new k0(Ue,Te)}return We&<?a.apply(this,H):(Ue=this.thru(be),We?S?Ue.value()[0]:Ue.value():Ue)})}),_0(["pop","push","shift","sort","splice","unshift"],function(a){var u=Ar[a],m=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);M.prototype[a]=function(){var E=arguments;if(S&&!this.__chain__){var R=this.value();return u.apply(Je(R)?R:[],E)}return this[m](function(F){return u.apply(Je(F)?F:[],E)})}}),un(Qe.prototype,function(a,u){var m=M[u];if(m){var S=m.name+"";mt.call(Ki,S)||(Ki[S]=[]),Ki[S].push({name:u,func:m})}}),Ki[lo(n,B).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=Ca,Qe.prototype.reverse=Fu,Qe.prototype.value=Gi,M.prototype.at=cs,M.prototype.chain=ci,M.prototype.commit=ds,M.prototype.next=Ec,M.prototype.plant=O7,M.prototype.reverse=Tc,M.prototype.toJSON=M.prototype.valueOf=M.prototype.value=N7,M.prototype.first=M.prototype.head,Lr&&(M.prototype[Lr]=kc),M},Zi=S7();or?((or.exports=Zi)._=Zi,zo._=Zi):Zt._=Zi}).call(wH)}(Kc,Kc.exports)),Kc.exports}var SH=$H();const CH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:i,updateOverride:l})=>{switch(typeof i){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(cZ,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,c=s.findIndex(p=>SH.isEqual(p.value,t));c===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],c=0);const f=p=>v=>{v.preventDefault();const g=Object.fromEntries(new FormData(v.currentTarget));l(n,JSON.parse(g.value)),p()};return P.jsxs(L2,{gap:"2",children:[P.jsx(fS,{"aria-label":"flag variations select",selectedKey:c,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(y.Fragment,{children:[c!==null&&s[c]._id==="OVERRIDE"?P.jsxs(g1,{children:[P.jsxs(Bn,{children:[P.jsx(ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(m1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(Bn,{children:[P.jsx(ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(qv,{children:P.jsx(Wv,{children:s.map((p,v)=>{const g=p.name?p.name:JSON.stringify(p.value);return P.jsx(Uv,{id:v,textValue:g,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(L2,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),g]})}):g},v)})})})]},".0")}),P.jsx(Xe,{width:"2rem",height:"2rem",children:P.jsxs(f$,{children:[P.jsxs(g1,{children:[P.jsx(zv,{icon:"edit","aria-label":"edit variation value"}),P.jsx(m1,{children:"Edit the served variation value as JSON"})]}),P.jsx(uS,{children:P.jsx(sS,{children:P.jsx(lS,{children:({close:p})=>P.jsxs($w,{onSubmit:f(p),children:[P.jsxs(Yv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:v=>{try{return JSON.parse(v),null}catch(g){return g instanceof Error?`Unable to parse value as JSON: ${g.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(iu,{children:`${n} value`}),P.jsx(pS,{style:{fontFamily:"monospace"}}),P.jsx(K0,{slot:"description",children:"Update the value as JSON"}),P.jsx(aS,{})]}),P.jsxs(rS,{children:[P.jsx(Bn,{onPress:p,children:"Cancel"}),P.jsx(Bn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var Hf={exports:{}},PH=Hf.exports,n8;function _H(){return n8||(n8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(PH,t=>{var n=(le,Y)=>{if(!le||!Y)return _e;var ue=_(le);ve(Y)||(Y=C(Y));var $e=ue.bitflags;return($e&Y._bitflags)!==$e?_e:A(ue,Y)},i=(le,Y,ue)=>{if(!le)return ue!=null&&ue.all?k(Y,ue):fe;var $e=_(le),Ee=$e.bitflags,Se=$e.containsSpace,me=x((ue==null?void 0:ue.threshold)||0),Be=(ue==null?void 0:ue.limit)||Pe,ke=0,je=0,Ye=Y.length;function yt(W0){kece.peek()._score&&ce.replaceTop(W0))}if(ue!=null&&ue.key)for(var At=ue.key,at=0;at-1e3&&j[dt]>se){var ot=(j[dt]+q[dt])/4;ot>j[dt]&&(j[dt]=ot)}q[dt]>j[dt]&&(j[dt]=q[dt])}}if(Se){for(let tt=0;tt<$e.spaceSearches.length;tt++)if(j[tt]===se)continue e}else{var Ze=!1;for(let tt=0;tt-1e3&&St>se){var ot=(St+st._score)/4;ot>St&&(St=ot)}st._score>St&&(St=st._score)}}if(Qt.obj=$t,Qt._score=St,ue!=null&&ue.scoreFn){if(St=ue.scoreFn(Qt),!St)continue;St=x(St),Qt._score=St}St=0;--at)Ut[at]=ce.poll();return Ut.total=ke+je,Ut},l=(le,Y="",ue="")=>{for(var $e=typeof Y=="function"?Y:void 0,Ee=le.target,Se=Ee.length,me=le.indexes,Be="",ke=0,je=0,Ye=!1,yt=[],At=0;At{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=D(le);return v(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},c=()=>{O.clear(),W.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ue)=>Y-ue)}set indexes(Y){return this._indexes=Y}highlight(Y,ue){return l(this,Y,ue)}get score(){return g(this._score)}set score(Y){this._score=x(Y)}}class p extends Array{get score(){return g(this._score)}set score(Y){this._score=x(Y)}}var v=(le,Y)=>{const ue=new f;return ue.target=le,ue.obj=Y.obj??_e,ue._score=Y._score??se,ue._indexes=Y._indexes??[],ue._targetLower=Y._targetLower??"",ue._targetLowerCodes=Y._targetLowerCodes??_e,ue._nextBeginningIndexes=Y._nextBeginningIndexes??_e,ue._bitflags=Y._bitflags??0,ue},g=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),x=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=D(le),ue=[];if(Y.containsSpace){var $e=le.split(/\s+/);$e=[...new Set($e)];for(var Ee=0;Ee<$e.length;Ee++)if($e[Ee]!==""){var Se=D($e[Ee]);ue.push({lowerCodes:Se.lowerCodes,_lower:$e[Ee].toLowerCase(),containsSpace:!1})}}return{lowerCodes:Y.lowerCodes,_lower:Y._lower,containsSpace:Y.containsSpace,bitflags:Y.bitflags,spaceSearches:ue}},C=le=>{if(le.length>999)return s(le);var Y=O.get(le);return Y!==void 0||(Y=s(le),O.set(le,Y)),Y},_=le=>{if(le.length>999)return w(le);var Y=W.get(le);return Y!==void 0||(Y=w(le),W.set(le,Y)),Y},k=(le,Y)=>{var ue=[];ue.total=le.length;var $e=(Y==null?void 0:Y.limit)||Pe;if(Y!=null&&Y.key)for(var Ee=0;Ee=$e)return ue}}else if(Y!=null&&Y.keys)for(var Ee=0;Ee=0;--je){var me=Q(Se,Y.keys[je]);if(!me){ke[je]=ae;continue}ve(me)||(me=C(me)),me._score=se,me._indexes.len=0,ke[je]=me}if(ke.obj=Se,ke._score=se,ue.push(ke),ue.length>=$e)return ue}else for(var Ee=0;Ee=$e))return ue}return ue},A=(le,Y,ue=!1,$e=!1)=>{if(ue===!1&&le.containsSpace)return B(le,Y,$e);for(var Ee=le._lower,Se=le.lowerCodes,me=Se[0],Be=Y._targetLowerCodes,ke=Se.length,je=Be.length,at=0,Ye=0,yt=0;;){var At=me===Be[Ye];if(At){if(oe[yt++]=Ye,++at,at===ke)break;me=Se[at]}if(++Ye,Ye>=je)return _e}var at=0,$t=!1,it=0,st=Y._nextBeginningIndexes;st===_e&&(st=Y._nextBeginningIndexes=Z(Y.target)),Ye=oe[0]===0?0:st[oe[0]-1];var i0=0;if(Ye!==je)for(;;)if(Ye>=je){if(at<=0||(++i0,i0>200))break;--at;var bt=L[--it];Ye=st[bt]}else{var At=Se[at]===Be[Ye];if(At){if(L[it++]=Ye,++at,at===ke){$t=!0;break}++Ye}else Ye=st[Ye]}var ft=ke<=1?-1:Y._targetLower.indexOf(Ee,oe[0]),Re=!!~ft,ot=Re?ft===0||Y._nextBeginningIndexes[ft-1]===ft:!1;if(Re&&!ot){for(var Ze=0;Ze{for(var dt=0,rr=0,P0=1;P024&&(dt*=(vn-24)*10)}return dt-=(je-ke)/2,Re&&(dt/=1+ke*ke*1),ot&&(dt/=1+ke*ke*1),dt-=(je-ke)/2,dt};if($t)if(ot){for(var Ze=0;Ze{for(var $e=new Set,Ee=0,Se=_e,me=0,Be=le.spaceSearches,ke=Be.length,je=0,Ye=()=>{for(let ot=je-1;ot>=0;ot--)Y._nextBeginningIndexes[ne[ot*2+0]]=ne[ot*2+1]},yt=!1,Re=0;Re=0&&i0===Y._nextBeginningIndexes[Ze];Ze--)Y._nextBeginningIndexes[Ze]=st,ne[je*2+0]=Ze,ne[je*2+1]=i0,je++}}Ee+=Se._score/ke,q[Re]=Se._score/ke,Se._indexes[0]Ee){if(ue)for(var Re=0;Re{for(var Y=le.length,ue=le.toLowerCase(),$e=[],Ee=0,Se=!1,me=0;me=97&&Be<=122?Be-97:Be>=48&&Be<=57?26:Be<=127?30:31;Ee|=1<{for(var Y=le.length,ue=[],$e=0,Ee=!1,Se=!1,me=0;me=65&&Be<=90,je=ke||Be>=97&&Be<=122||Be>=48&&Be<=57,Ye=ke&&!Ee||!Se||!je;Ee=ke,Se=je,Ye&&(ue[$e++]=me)}return ue},Z=le=>{for(var Y=le.length,ue=V(le),$e=[],Ee=ue[0],Se=0,me=0;meme?$e[me]=Ee:(Ee=ue[++Se],$e[me]=Ee===void 0?Y:Ee);return $e},O=new Map,W=new Map,oe=[],L=[],ne=[],j=[],q=[],xe=[],G=[],Q=(le,Y)=>{var ue=le[Y];if(ue!==void 0)return ue;if(typeof Y=="function")return Y(le);var $e=Y;Array.isArray(Y)||($e=Y.split("."));for(var Ee=$e.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",Pe=1/0,se=-Pe,fe=[];fe.total=0;var _e=null,ae=s(""),z=le=>{var Y=[],ue=0,$e={},Ee=Se=>{for(var me=0,Be=Y[me],ke=1;ke>1]=Y[me],ke=1+(me<<1)}for(var Ye=me-1>>1;me>0&&Be._score>1)Y[me]=Y[Ye];Y[me]=Be};return $e.add=Se=>{var me=ue;Y[ue++]=Se;for(var Be=me-1>>1;me>0&&Se._score>1)Y[me]=Y[Be];Y[me]=Se},$e.poll=Se=>{if(ue!==0){var me=Y[0];return Y[0]=Y[--ue],Ee(),me}},$e.peek=Se=>{if(ue!==0)return Y[0]},$e.replaceTop=Se=>{Y[0]=Se,Ee()},$e},ce=z();return{single:n,go:i,prepare:s,cleanup:c}})}(Hf)),Hf.exports}var EH=_H();const kH=y1(EH);function TH({availableVariations:e,selectedProject:t,flags:n,overrides:i,setOverrides:l}){const[s,c]=y.useState(!1),[f,p]=y.useState(""),[v,g]=y.useState(0),x=20,w=y.useMemo(()=>i&&Object.keys(i).length>0,[i]);y.useEffect(()=>{!w&&s&&c(!1)},[w,s]);const C=y.useMemo(()=>n?Object.entries(n).filter(O=>{if(!f)return!0;const[W]=O,oe=kH.single(f.toLowerCase(),W);return oe&&oe.score>-5e3}).filter(O=>{const[W]=O,oe=W in i;return!(s&&!oe)}):[],[n,f,s,i]),_=y.useMemo(()=>{const Z=v*x,O=Z+x;return C.slice(Z,O)},[C,v]),k=y.useCallback((Z,O)=>{var oe;const W={...i,[Z]:{value:O,version:((oe=i[Z])==null?void 0:oe.version)||0}};l(W),fetch(tr(`/dev/projects/${t}/overrides/${Z}`),{method:"PUT",body:JSON.stringify(O)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(i),console.error("unable to update override",L)})},[i,t]),A=y.useCallback(async Z=>{const O={...i};delete O[Z],l(O);try{const W=await fetch(tr(`/dev/projects/${t}/overrides/${Z}`),{method:"DELETE"});if(!W.ok)throw new Error(`got ${W.status} ${W.statusText}. ${await W.text()}`)}catch(W){console.error("unable to remove override",W),l(i)}},[i,t]),B=y.useCallback(async()=>{l({});try{const Z=await fetch(tr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!Z.ok)throw new Error(`got ${Z.status} ${Z.statusText}. ${await Z.text()}`)}catch(Z){console.error("unable to remove all overrides",Z),l(i)}},[i,t]);if(!n)return null;const D=Math.ceil(C.length/x),V=Z=>{switch(Z){case"next":g(O=>Math.min(O+1,D-1));break;case"prev":g(O=>Math.max(O-1,0));break;case"first":g(0);break;case"last":g(D-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Xe,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:bH.borderRadius.regular,children:[P.jsxs(iu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(fO,{id:"only-show-overrides",isSelected:s,onChange:Z=>{c(Z)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(Bn,{variant:"destructive",isDisabled:!w,onPress:async()=>{i&&(await B(),l({}),c(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs(W5,{gap:"4",children:[P.jsx(L2,{gap:"4",children:P.jsx(RN,{"aria-label":"Search flags",children:P.jsxs(_O,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(jv,{placeholder:"Search flags by key",onChange:Z=>{p(Z.target.value),g(0)},value:f,"aria-label":"Search flags input"}),P.jsx(zv,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:_.map(([Z,{value:O}],W)=>{var j;const oe=(j=i[Z])==null?void 0:j.value,L=Z in i,ne=L?oe:O;return P.jsxs("li",{style:{backgroundColor:W%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Xe,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(L2,{gap:"2",children:[P.jsx(H5,{asChild:!0,text:Z,children:P.jsx("code",{className:L?"has-override":"",children:Z})}),L&&P.jsx(Bn,{"aria-label":"Remove override",onPress:()=>{A(Z)},variant:"destructive",children:P.jsxs(L2,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Xe,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(CH,{availableVariations:e[Z]?e[Z]:[],currentValue:ne,flagValue:O,flagKey:Z,updateOverride:k})})]},Z)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(XV,{currentOffset:v*x,isReady:!0,onChange:Z=>V(Z),pageSize:x,resourceName:"flags",totalCount:C.length})})]})}const AH=async()=>{const e=await fetch(tr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function MH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[i,l]=y.useState([]),[s,c]=y.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),c(!1)};return y.useEffect(()=>{AH().then(f).catch(p=>{console.error(p),c(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):i.length>0?P.jsxs(FF,{children:[P.jsx(L2,{gap:"1",children:P.jsxs(g1,{children:[P.jsx(Bn,{children:e??"Select a project"}),P.jsx(m1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(qv,{children:P.jsx(nN,{children:i.map(p=>P.jsx(iN,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(v5,{kind:"error",children:[P.jsx(wo,{children:"No projects."}),P.jsx(K0,{children:"Add one via"}),P.jsx(H5,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const LH=async e=>{const t=await fetch(tr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},RH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[i,l]=y.useState(!1),s=async()=>{l(!0);try{const c=await LH(e);n(c.availableVariations),t(oh(c.flagsState))}catch(c){J6.warning("Sync failed"),console.error("Sync failed:",c)}finally{J6.success("Sync successful"),l(!1)}};return e?P.jsxs(g1,{children:[P.jsx(Bn,{onPress:s,isDisabled:i,style:{backgroundColor:i?"lightgray":void 0},children:i?P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(L2,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(m1,{children:"Sync the selected project from the source environment"})]}):null};async function DH(e,t){const n=await fetch(tr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Y3,r8;function hS(){if(r8)return Y3;r8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Y3=e,Y3}var X3,i8;function BH(){if(i8)return X3;i8=1;var e=typeof yo=="object"&&yo&&yo.Object===Object&&yo;return X3=e,X3}var Q3,o8;function vS(){if(o8)return Q3;o8=1;var e=BH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return Q3=n,Q3}var J3,l8;function VH(){if(l8)return J3;l8=1;var e=vS(),t=function(){return e.Date.now()};return J3=t,J3}var ep,a8;function IH(){if(a8)return ep;a8=1;var e=/\s/;function t(n){for(var i=n.length;i--&&e.test(n.charAt(i)););return i}return ep=t,ep}var tp,s8;function FH(){if(s8)return tp;s8=1;var e=IH(),t=/^\s+/;function n(i){return i&&i.slice(0,e(i)+1).replace(t,"")}return tp=n,tp}var np,u8;function mS(){if(u8)return np;u8=1;var e=vS(),t=e.Symbol;return np=t,np}var rp,c8;function ZH(){if(c8)return rp;c8=1;var e=mS(),t=Object.prototype,n=t.hasOwnProperty,i=t.toString,l=e?e.toStringTag:void 0;function s(c){var f=n.call(c,l),p=c[l];try{c[l]=void 0;var v=!0}catch{}var g=i.call(c);return v&&(f?c[l]=p:delete c[l]),g}return rp=s,rp}var ip,d8;function OH(){if(d8)return ip;d8=1;var e=Object.prototype,t=e.toString;function n(i){return t.call(i)}return ip=n,ip}var op,f8;function NH(){if(f8)return op;f8=1;var e=mS(),t=ZH(),n=OH(),i="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function c(f){return f==null?f===void 0?l:i:s&&s in Object(f)?t(f):n(f)}return op=c,op}var lp,p8;function HH(){if(p8)return lp;p8=1;function e(t){return t!=null&&typeof t=="object"}return lp=e,lp}var ap,h8;function jH(){if(h8)return ap;h8=1;var e=NH(),t=HH(),n="[object Symbol]";function i(l){return typeof l=="symbol"||t(l)&&e(l)==n}return ap=i,ap}var sp,v8;function zH(){if(v8)return sp;v8=1;var e=FH(),t=hS(),n=jH(),i=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,c=/^0o[0-7]+$/i,f=parseInt;function p(v){if(typeof v=="number")return v;if(n(v))return i;if(t(v)){var g=typeof v.valueOf=="function"?v.valueOf():v;v=t(g)?g+"":g}if(typeof v!="string")return v===0?v:+v;v=e(v);var x=s.test(v);return x||c.test(v)?f(v.slice(2),x?2:8):l.test(v)?i:+v}return sp=p,sp}var up,m8;function KH(){if(m8)return up;m8=1;var e=hS(),t=VH(),n=zH(),i="Expected a function",l=Math.max,s=Math.min;function c(f,p,v){var g,x,w,C,_,k,A=0,B=!1,D=!1,V=!0;if(typeof f!="function")throw new TypeError(i);p=n(p)||0,e(v)&&(B=!!v.leading,D="maxWait"in v,w=D?l(n(v.maxWait)||0,p):w,V="trailing"in v?!!v.trailing:V);function Z(G){var Q=g,ve=x;return g=x=void 0,A=G,C=f.apply(ve,Q),C}function O(G){return A=G,_=setTimeout(L,p),B?Z(G):C}function W(G){var Q=G-k,ve=G-A,Pe=p-Q;return D?s(Pe,w-ve):Pe}function oe(G){var Q=G-k,ve=G-A;return k===void 0||Q>=p||Q<0||D&&ve>=w}function L(){var G=t();if(oe(G))return ne(G);_=setTimeout(L,W(G))}function ne(G){return _=void 0,V&&g?Z(G):(g=x=void 0,C)}function j(){_!==void 0&&clearTimeout(_),A=0,g=k=x=_=void 0}function q(){return _===void 0?C:ne(t())}function xe(){var G=t(),Q=oe(G);if(g=arguments,x=this,k=G,Q){if(_===void 0)return O(k);if(D)return clearTimeout(_),_=setTimeout(L,p),Z(k)}return _===void 0&&(_=setTimeout(L,p)),C}return xe.cancel=j,xe.flush=q,xe}return up=c,up}var WH=KH();const UH=y1(WH);function GH({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:i}){const[l,s]=y.useState(null),[c,f]=y.useState(""),[p,v]=y.useState(!1),g=y.useCallback(UH(x=>{v(!0),DH(e,x).then(w=>{if(s(w),!n){const C=w.find(_=>_.key===t);C?i(C):w.length>0&&i({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{v(!1)})},300),[e,t,n,i]);return y.useEffect(()=>{g(c)},[g,c]),P.jsxs(W5,{gap:"3",children:[P.jsx(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(iu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(jv,{id:"environmentSearch",value:c,onChange:x=>f(x.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Xe,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(Ul,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Xe,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Wv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:x=>{const w=Array.from(x)[0],C=l==null?void 0:l.find(_=>_.key===w);C&&i(C)},children:l==null?void 0:l.map(x=>P.jsx(Uv,{id:x.key,children:x.name},x.key))})})]})}function qH({context:e,setContext:t}){return P.jsxs(W5,{gap:"3",children:[P.jsx(iu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(Yv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(i){return i instanceof Error?`Unable to parse value as JSON: ${i.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx(pS,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(K0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(aS,{})]})]})}function YH({isSubmitting:e,selectedEnvironment:t}){return P.jsx(Bn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(L2,{gap:"2",children:P.jsxs(Xe,{display:"flex",alignItems:"center",children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(L2,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function XH({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:i,context:l,updateProjectSettings:s}){const[c,f]=y.useState(t),[p,v]=y.useState(l),[g,x]=y.useState(!1);y.useEffect(()=>{f(t),v(l)},[t,l]);const w=async _=>{x(!0);try{_(),await s(c,p),n(c)}catch(k){console.error("Error submitting project settings:",k)}finally{x(!1)}},C=()=>{f(t),v(l)};return P.jsxs(f$,{children:[P.jsxs(g1,{children:[P.jsx(YH,{isSubmitting:g,selectedEnvironment:i}),P.jsx(m1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(uS,{isDismissable:!1,children:P.jsx(sS,{children:P.jsx(lS,{children:({close:_})=>P.jsxs($w,{onSubmit:k=>{k.preventDefault(),w(_)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(iu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs(W5,{gap:"3",children:[P.jsx(GH,{projectKey:e,sourceEnvironmentKey:i,selectedEnvironment:c,setSelectedEnvironment:f}),P.jsx(Xe,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(qH,{context:p,setContext:v})]}),P.jsxs(rS,{style:{justifyContent:"flex-end"},children:[P.jsx(Bn,{onPress:()=>{C(),_()},variant:"destructive",isDisabled:g,children:"Cancel"}),P.jsx(Bn,{variant:"primary",type:"submit",isDisabled:g,children:g?P.jsxs(L2,{gap:"2",children:[P.jsx(Ul,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function QH(){const[e,t]=y.useState(null),[n,i]=y.useState(null),[l,s]=y.useState(null),[c,f]=y.useState({}),[p,v]=y.useState({}),[g,x]=y.useState(null),[w,C]=y.useState(!1),[_,k]=y.useState("{}"),A=y.useCallback(async()=>{if(!e)return;const D=await fetch(tr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),V=await D.json();if(!D.ok)throw new Error(`Got ${D.status}, ${D.statusText} from flag fetch`);const{flagsState:Z,overrides:O,sourceEnvironmentKey:W,availableVariations:oe,context:L}=V;x(oh(Z)),f(O),s(W),v(oe),k(JSON.stringify(L||"{}",null,2));const j=(await JH(e)).find(q=>q.key===W);j&&i(j)},[e]);y.useEffect(()=>{e&&A().catch(console.error.bind(console,"error when fetching flags"))},[A,e]),y.useEffect(()=>{Promise.all([A()]).catch(console.error.bind(console,"error when fetching flags"))},[A]);const B=y.useCallback(async(D,V)=>{if(e)try{const Z=await fetch(tr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:D==null?void 0:D.key,context:JSON.parse(V)})});if(!Z.ok)throw new Error(`Got ${Z.status}, ${Z.statusText} from project settings update`);const O=await Z.json(),{flagsState:W,sourceEnvironmentKey:oe,context:L}=O;x(oh(W)),s(oe),k(JSON.stringify(L||{},null,2)),i(D),await A()}catch(Z){console.error("Error updating project settings:",Z)}},[e,A]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Xe,{width:"100%",minWidth:"600px",children:P.jsxs(Xe,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Xe,{marginBottom:"2rem",width:"100%",children:P.jsxs(v5,{kind:"error",children:[P.jsx(wo,{children:"No projects."}),P.jsx(K0,{children:"Add one via"}),P.jsx(H5,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Xe,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(MH,{selectedProject:e,setSelectedProject:t,setShowBanner:C}),e&&P.jsx(XH,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:i,sourceEnvironmentKey:l,context:_,updateProjectSettings:B}),P.jsx(RH,{selectedProject:e,setFlags:x,setAvailableVariations:v})]}),e&&P.jsx(Xe,{width:"100%",children:P.jsx(TH,{availableVariations:p,selectedProject:e,flags:g,overrides:c,setOverrides:D=>{f(D)}})})]})})})}async function JH(e){const t=await fetch(tr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const B1=(e,t,n)=>P.jsx("button",{type:"button",className:"copy-button",onClick:i=>{i.preventDefault(),navigator.clipboard.writeText(t).then(()=>{n("Copied to clipboard!")}).catch(()=>{n("Failed to copy to clipboard")})},children:e}),ej=(e,t,n)=>{const i=[];for(const[l,s]of Object.entries(t.features||{})){const c=e.id+l,f=s.counters||[];for(const p of f)i.push(P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"summary"}),P.jsxs("td",{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",l]}),P.jsxs("td",{children:["evaluated as ",String(p.value)]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t),n)})]},c))}return i},tj=(e,t,n)=>{let i="unknown",l="help";if(e.data.context){const s=t.context;if(!s)return console.error("Index event context is undefined"),[];switch(s.kind){case"user":i="user context",l="person";break;case"application":i=s.key||"unknown application",l="cloud";break;case"multi":s.user?(i=s.user.email||s.user.key||"unknown user",l="person"):s.account?(i=s.account.name||s.account.key||"unknown account",l="group"):s.application?(i=s.application.key||"unknown application",l="cloud"):(i="multi context",l="chart-dashboard");break}}else t.user?(i=(t.user.key||"unknown")+" user",l="person-outline"):i="unknown";return[P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"index"}),P.jsxs("td",{children:[P.jsx(Pt,{name:l,size:"small"})," ",i]}),P.jsxs("td",{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t.data),n)})]},e.id)]},nj=(e,t,n)=>{const i=`evaluated as ${String(t.value)}`;return[P.jsxs("tr",{className:"feature-row",children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:"feature"}),P.jsx("td",{children:t.key||"unknown"}),P.jsx("td",{children:i}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t),n)})]},e.id)]},rj=(e,t,n)=>[P.jsxs("tr",{children:[P.jsx("td",{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx("td",{children:e.data.kind}),P.jsxs("td",{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs("td",{children:["value is ",t.metricValue]}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(t),n)})]},e.id)],ij=(e,t)=>{switch(e.data.kind){case"summary":return ej(e,e.data,t);case"index":return tj(e,e.data,t);case"feature":return nj(e,e.data,t);case"custom":return rj(e,e.data,t);default:return[P.jsxs("tr",{children:[P.jsx("td",{children:(()=>{try{const n=new Date(e.timestamp);return isNaN(n.getTime())?e.timestamp:n.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx("td",{children:e.data.kind}),P.jsx("td",{}),P.jsx("td",{}),P.jsx("td",{children:B1("Copy to clipboard",JSON.stringify(e.data),t)})]},e.id)]}},gS=({events:e,onToggleStreaming:t})=>{const[n,i]=y.useState(null),[l,s]=y.useState(!0),c=p=>{s(p),t==null||t(p)},f=p=>{i(p),setTimeout(()=>{i(null)},1500)};return P.jsxs("div",{children:[P.jsx("h3",{children:"Events Stream"}),t&&P.jsx("button",{className:`streaming-toggle-button ${l?"streaming":"not-streaming"}`,onClick:()=>c(!l),children:l?"Streaming ON":"Streaming OFF"}),P.jsxs("table",{className:"events-table",children:[P.jsx("thead",{children:P.jsxs("tr",{children:[P.jsx("th",{children:"Time"}),P.jsx("th",{children:"Type"}),P.jsx("th",{children:"Target"}),P.jsx("th",{children:"Event"}),P.jsx("th",{children:"Link"})]})}),P.jsx("tbody",{children:e.map(p=>ij(p,f))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."}),n&&P.jsx("div",{className:`copy-notification ${n?"show":"hide"}`,children:n})]})},oj=({limit:e=1e3})=>{const[t,n]=y.useState([]),[i,l]=y.useState([]),[s,c]=y.useState(!0);y.useEffect(()=>{const p=new EventSource(tr("/events/tee"));return p.addEventListener("put",v=>{if(!v.data||v.data.trim()==="")return;let g;try{g=JSON.parse(v.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const x={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:g};s?n(w=>[x,...w].slice(0,e)):l(w=>[x,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{c(p),p&&i.length>0&&(n(v=>[...i,...v].slice(0,e)),l([]))};return P.jsx(gS,{events:t,onToggleStreaming:f})},lj=()=>{const[e,t]=y.useState([]),[n,i]=y.useState(!0),[l,s]=y.useState(null),[c,f]=y.useState(0),[p,v]=y.useState(null),g=async()=>{try{i(!0),s(null);const C=await fetch(tr("/dev/debug-sessions?limit=100"));if(!C.ok)throw new Error(`Failed to fetch debug sessions: ${C.status} ${C.statusText}`);const _=await C.json();t(_.sessions),f(_.total_count)}catch(C){s(C instanceof Error?C.message:"An unknown error occurred")}finally{i(!1)}};y.useEffect(()=>{g()},[]);const x=C=>{try{return new Date(C).toLocaleString()}catch{return C}},w=async C=>{if(confirm(`Are you sure you want to delete debug session "${C}" and all its events? This action cannot be undone.`))try{v(C),s(null);const _=await fetch(tr(`/dev/debug-sessions/${encodeURIComponent(C)}`),{method:"DELETE"});if(!_.ok)throw _.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${_.status} ${_.statusText}`);await g()}catch(_){s(_ instanceof Error?_.message:"An unknown error occurred while deleting the session")}finally{v(null)}};return n?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Ul,{isIndeterminate:!0})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(v5,{kind:"error",children:P.jsxs(K0,{children:["Error: ",l]})})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Bn,{onPress:g,children:"Retry"})})]}):P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsxs(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(wo,{children:"Debug Sessions"}),P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:[c," total session",c!==1?"s":""]})]}),e.length===0?P.jsxs(Xe,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"No debug sessions found"})}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsx(K0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx("div",{style:{border:"1px solid var(--lp-color-border-ui-primary)",borderRadius:"4px",overflow:"hidden"},children:P.jsxs("table",{style:{width:"100%",borderCollapse:"collapse"},children:[P.jsx("thead",{children:P.jsxs("tr",{style:{backgroundColor:"var(--lp-color-bg-ui-secondary)"},children:[P.jsx("th",{style:{padding:"0.75rem",textAlign:"left",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600},children:"Debug Session Started"}),P.jsx("th",{style:{padding:"0.75rem",textAlign:"right",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600},children:"Event Count"}),P.jsx("th",{style:{padding:"0.75rem",textAlign:"center",borderBottom:"1px solid var(--lp-color-border-ui-primary)",fontWeight:600,width:"100px"},children:"Actions"})]})}),P.jsx("tbody",{children:e.map((C,_)=>P.jsxs("tr",{style:{borderBottom:_w(C.key),disabled:p===C.key,style:{background:"none",border:"1px solid var(--lp-color-border-destructive)",borderRadius:"4px",padding:"0.25rem 0.5rem",cursor:p===C.key?"not-allowed":"pointer",display:"flex",alignItems:"center",gap:"0.25rem",color:"var(--lp-color-text-destructive)",opacity:p===C.key?.6:1},title:p===C.key?"Deleting...":"Delete session and all events",children:P.jsx(Pt,{name:"delete",size:"small"})})})]},C.key))})]})})]})};function aj(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const sj=()=>{const{debugSessionKey:e}=P_(),[t,n]=y.useState([]),[i,l]=y.useState([]),[s,c]=y.useState(!0),[f,p]=y.useState(null),v=async()=>{var x;if(!e){p("Debug session key is required"),c(!1);return}try{c(!0),p(null);const w=await fetch(tr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const _=((x=(await w.json()).events)==null?void 0:x.map(aj))||[];n(_),l(_)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{c(!1)}};y.useEffect(()=>{v()},[e]);const g=x=>{l(t.filter(w=>{let C="";const _=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(A=>_(A)):typeof k=="object"?Object.values(k).flatMap(A=>_(A)):[];return C=_(w).join(" "),C.toLowerCase().includes(x.toLowerCase())}))};return s?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Ul,{isIndeterminate:!0})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"Loading events..."})})]}):f?P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(v5,{kind:"error",children:P.jsxs(K0,{children:["Error: ",f]})})}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(Bn,{onPress:v,children:"Retry"})})]}):P.jsxs(Xe,{padding:"2rem",width:"100%",children:[P.jsx(Xe,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Xe,{children:[P.jsx(wo,{children:"Debug Session Events"}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsxs(K0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(Yv,{onChange:g,name:"debug-session-search",children:P.jsxs(y.Fragment,{children:[P.jsx(iu,{children:"Search"}),P.jsx(jv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Xe,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Xe,{marginTop:"1rem",children:P.jsx(K0,{children:"No events found for this debug session"})}),P.jsx(Xe,{marginTop:"0.5rem",children:P.jsx(K0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(gS,{events:i})]})};function uj(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Xe,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Xe,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(yH,{})}),P.jsx(Xe,{padding:"1rem",width:"100%",children:P.jsxs(O_,{children:[P.jsx(Rl,{path:"/",element:P.jsx(k4,{to:"/ui/flags",replace:!0})}),P.jsx(Rl,{path:"/ui",element:P.jsx(k4,{to:"/ui/flags",replace:!0})}),P.jsx(Rl,{path:"/ui/flags",element:P.jsx(QH,{})}),P.jsx(Rl,{path:"/ui/events",element:P.jsx(oj,{})}),P.jsx(Rl,{path:"/ui/debug-sessions",element:P.jsx(lj,{})}),P.jsx(Rl,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(sj,{})})]})})]})})}const cj="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function dj({children:e}){return y.useEffect(()=>{fetch(cj).then(async t=>t.text()).then(t=>{const i=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;i.id="lp-icons-sprite",i.style.display="none",document.body.appendChild(i)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(V8.Provider,{value:{path:""},children:e})}const fj=()=>(y.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(ee.StrictMode,{children:P.jsx(uE,{children:P.jsxs(dj,{children:[P.jsx(uj,{}),P.jsx(hH,{})]})})}));qP.createRoot(document.getElementById("root")).render(P.jsx(fj,{})); From 6d0153a07a4df57abdd98c57ab43a8bc6e52ce03 Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Wed, 20 Aug 2025 09:13:15 -0400 Subject: [PATCH 86/96] Docs --- internal/dev_server/events_db/docs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dev_server/events_db/docs.go b/internal/dev_server/events_db/docs.go index 2d6487059..9e3cde6b3 100644 --- a/internal/dev_server/events_db/docs.go +++ b/internal/dev_server/events_db/docs.go @@ -1,2 +1,2 @@ -// Package store provides database storage for package model +// Package events_db provides database storage (events only) for package model package events_db From 338e2ab225af9931c933c08ce468cceb1852455b Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Fri, 22 Aug 2025 10:34:03 -0400 Subject: [PATCH 87/96] Move event base --- internal/dev_server/events/base.go | 5 ----- internal/dev_server/sdk/sdk_events.go | 7 +++++-- 2 files changed, 5 insertions(+), 7 deletions(-) delete mode 100644 internal/dev_server/events/base.go diff --git a/internal/dev_server/events/base.go b/internal/dev_server/events/base.go deleted file mode 100644 index 351a638f6..000000000 --- a/internal/dev_server/events/base.go +++ /dev/null @@ -1,5 +0,0 @@ -package events - -type Base struct { - Kind string `json:"kind"` -} diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index 5fb81482e..b11dd1c59 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -8,7 +8,6 @@ import ( "net/http" "github.com/google/uuid" - "github.com/launchdarkly/ldcli/internal/dev_server/events" "github.com/launchdarkly/ldcli/internal/dev_server/model" "github.com/pkg/errors" ) @@ -27,6 +26,10 @@ func newSdkEventObserver(updateChan chan<- Message, ctx context.Context) sdkEven } } +type SDKEventBase struct { + Kind string `json:"kind"` +} + type sdkEventObserver struct { ctx context.Context debugSessionKey string @@ -39,7 +42,7 @@ func (o sdkEventObserver) Handle(message interface{}) { return } - event := events.Base{} + event := SDKEventBase{} err := json.Unmarshal(str, &event) if err != nil { log.Printf("sdkEventObserver: error unmarshaling event: %v", err) From f00ec6ac96642a2cab11ea73ca4588006f13aa8b Mon Sep 17 00:00:00 2001 From: Daniel Mashuda Date: Fri, 22 Aug 2025 11:33:37 -0400 Subject: [PATCH 88/96] Move events api to its own package because its a cross-cutting concern --- .../dev_server/api/events/events_stream.go | 82 +++++++++++++++++++ internal/dev_server/api/events/routes.go | 7 ++ internal/dev_server/dev_server.go | 4 +- internal/dev_server/sdk/routes.go | 1 - internal/dev_server/sdk/sdk_events.go | 73 +---------------- 5 files changed, 93 insertions(+), 74 deletions(-) create mode 100644 internal/dev_server/api/events/events_stream.go create mode 100644 internal/dev_server/api/events/routes.go diff --git a/internal/dev_server/api/events/events_stream.go b/internal/dev_server/api/events/events_stream.go new file mode 100644 index 000000000..2824e84fb --- /dev/null +++ b/internal/dev_server/api/events/events_stream.go @@ -0,0 +1,82 @@ +package events + +import ( + "context" + "encoding/json" + "log" + "net/http" + + "github.com/google/uuid" + "github.com/launchdarkly/ldcli/internal/dev_server/model" + "github.com/pkg/errors" + + "github.com/launchdarkly/ldcli/internal/dev_server/sdk" +) + +type sdkEventObserver struct { + ctx context.Context + debugSessionKey string + updateChan chan<- sdk.Message +} + +func newSdkEventObserver(updateChan chan<- sdk.Message, ctx context.Context) sdkEventObserver { + debugSessionKey := uuid.New().String() + db := model.EventStoreFromContext(ctx) + err := db.CreateDebugSession(ctx, debugSessionKey) + if err != nil { + log.Printf("sdkEventObserver: error writting debug session: %v", err) + } + return sdkEventObserver{ + debugSessionKey: debugSessionKey, + ctx: ctx, + updateChan: updateChan, + } +} + +func (o sdkEventObserver) Handle(message interface{}) { + str, ok := message.(json.RawMessage) + if !ok { + return + } + + event := sdk.SDKEventBase{} + err := json.Unmarshal(str, &event) + if err != nil { + log.Printf("sdkEventObserver: error unmarshaling event: %v", err) + return + } + + db := model.EventStoreFromContext(o.ctx) + + err = db.WriteEvent(o.ctx, o.debugSessionKey, event.Kind, str) + if err != nil { + log.Printf("sdkEventObserver: error writting event: %v", err) + return + } + + o.updateChan <- sdk.Message{Event: sdk.TYPE_PUT, Data: str} +} + +func SdkEventsTeeHandler(writer http.ResponseWriter, request *http.Request) { + updateChan, errChan := sdk.OpenStream( + writer, + request.Context().Done(), + sdk.Message{Event: sdk.TYPE_PUT, Data: []byte{}}, + ) + defer close(updateChan) + observers := model.GetObserversFromContext(request.Context()) + + observerId := observers.RegisterObserver(newSdkEventObserver(updateChan, request.Context())) + defer func() { + ok := observers.DeregisterObserver(observerId) + if !ok { + log.Printf("unable to remove observer") + } + }() + + err := <-errChan + if err != nil { + sdk.WriteError(request.Context(), writer, errors.Wrap(err, "stream failure")) + return + } +} diff --git a/internal/dev_server/api/events/routes.go b/internal/dev_server/api/events/routes.go new file mode 100644 index 000000000..b884ba608 --- /dev/null +++ b/internal/dev_server/api/events/routes.go @@ -0,0 +1,7 @@ +package events + +import "github.com/gorilla/mux" + +func BindRoutes(router *mux.Router) { + router.HandleFunc("/events/tee", SdkEventsTeeHandler) +} diff --git a/internal/dev_server/dev_server.go b/internal/dev_server/dev_server.go index fe23a1e8f..86d0986d7 100644 --- a/internal/dev_server/dev_server.go +++ b/internal/dev_server/dev_server.go @@ -3,7 +3,6 @@ package dev_server import ( "context" "fmt" - "github.com/launchdarkly/ldcli/internal/dev_server/events_db" "log" "net/http" "os" @@ -15,7 +14,9 @@ import ( "github.com/launchdarkly/ldcli/internal/client" "github.com/launchdarkly/ldcli/internal/dev_server/adapters" "github.com/launchdarkly/ldcli/internal/dev_server/api" + "github.com/launchdarkly/ldcli/internal/dev_server/api/events" "github.com/launchdarkly/ldcli/internal/dev_server/db" + "github.com/launchdarkly/ldcli/internal/dev_server/events_db" "github.com/launchdarkly/ldcli/internal/dev_server/model" "github.com/launchdarkly/ldcli/internal/dev_server/sdk" "github.com/launchdarkly/ldcli/internal/dev_server/ui" @@ -77,6 +78,7 @@ func (c LDClient) RunServer(ctx context.Context, serverParams ServerParams) { ui.AssetHandler.ServeHTTP(w, r) }) sdk.BindRoutes(r) + events.BindRoutes(r) handler := api.HandlerFromMux(apiServer, r) handler = api.CorsHeadersWithConfig(serverParams.CorsEnabled, serverParams.CorsOrigin)(handler) handler = handlers.CombinedLoggingHandler(os.Stdout, handler) diff --git a/internal/dev_server/sdk/routes.go b/internal/dev_server/sdk/routes.go index 55c847df1..7f7508473 100644 --- a/internal/dev_server/sdk/routes.go +++ b/internal/dev_server/sdk/routes.go @@ -12,7 +12,6 @@ func BindRoutes(router *mux.Router) { // events router.HandleFunc("/bulk", SdkEventsReceiveHandler) router.HandleFunc("/diagnostic", DevNull) - router.HandleFunc("/events/tee", SdkEventsTeeHandler) router.Handle("/events/bulk/{envId}", EventsCorsHeaders(DevNull)) router.Handle("/events/diagnostic/{envId}", EventsCorsHeaders(DevNull)) router.HandleFunc("/mobile", DevNull) diff --git a/internal/dev_server/sdk/sdk_events.go b/internal/dev_server/sdk/sdk_events.go index b11dd1c59..914e3ed1e 100644 --- a/internal/dev_server/sdk/sdk_events.go +++ b/internal/dev_server/sdk/sdk_events.go @@ -1,73 +1,25 @@ package sdk import ( - "context" "encoding/json" "io" "log" "net/http" - "github.com/google/uuid" "github.com/launchdarkly/ldcli/internal/dev_server/model" - "github.com/pkg/errors" ) -func newSdkEventObserver(updateChan chan<- Message, ctx context.Context) sdkEventObserver { - debugSessionKey := uuid.New().String() - db := model.EventStoreFromContext(ctx) - err := db.CreateDebugSession(ctx, debugSessionKey) - if err != nil { - log.Printf("sdkEventObserver: error writting debug session: %v", err) - } - return sdkEventObserver{ - debugSessionKey: debugSessionKey, - ctx: ctx, - updateChan: updateChan, - } -} - type SDKEventBase struct { Kind string `json:"kind"` } -type sdkEventObserver struct { - ctx context.Context - debugSessionKey string - updateChan chan<- Message -} - -func (o sdkEventObserver) Handle(message interface{}) { - str, ok := message.(json.RawMessage) - if !ok { - return - } - - event := SDKEventBase{} - err := json.Unmarshal(str, &event) - if err != nil { - log.Printf("sdkEventObserver: error unmarshaling event: %v", err) - return - } - - db := model.EventStoreFromContext(o.ctx) - - err = db.WriteEvent(o.ctx, o.debugSessionKey, event.Kind, str) - if err != nil { - log.Printf("sdkEventObserver: error writting event: %v", err) - return - } - - o.updateChan <- Message{Event: TYPE_PUT, Data: str} -} - -var observers *model.Observers = model.NewObservers() - func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) { bodyStr, err := io.ReadAll(request.Body) if err != nil { log.Printf("SdkEventsReceiveHandler: error reading request body: %v", err) return } + observers := model.GetObserversFromContext(request.Context()) var arr []json.RawMessage err = json.Unmarshal(bodyStr, &arr) @@ -83,26 +35,3 @@ func SdkEventsReceiveHandler(writer http.ResponseWriter, request *http.Request) writer.Header().Set("Content-Type", "application/json") writer.WriteHeader(http.StatusAccepted) } - -func SdkEventsTeeHandler(writer http.ResponseWriter, request *http.Request) { - updateChan, errChan := OpenStream( - writer, - request.Context().Done(), - Message{Event: TYPE_PUT, Data: []byte{}}, - ) - defer close(updateChan) - - observerId := observers.RegisterObserver(newSdkEventObserver(updateChan, request.Context())) - defer func() { - ok := observers.DeregisterObserver(observerId) - if !ok { - log.Printf("unable to remove observer") - } - }() - - err := <-errChan - if err != nil { - WriteError(request.Context(), writer, errors.Wrap(err, "stream failure")) - return - } -} From 8bd0edce28c3c67d1ad79f846a0a836ff8b3920c Mon Sep 17 00:00:00 2001 From: Brian Van Staalduine <1323225+brianvans@users.noreply.github.com> Date: Thu, 18 Sep 2025 14:24:52 -0700 Subject: [PATCH 89/96] Use launchdpad components for everything --- internal/dev_server/ui/dist/index.html | 76 ++--- internal/dev_server/ui/src/App.css | 227 --------------- .../dev_server/ui/src/DebugSessionsPage.tsx | 133 +++------ internal/dev_server/ui/src/EventsTable.tsx | 265 +++++++----------- 4 files changed, 173 insertions(+), 528 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index 3ca9d7643..2baa05ae5 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -5,7 +5,7 @@ LaunchDevly - - +`)+xe+`return __p +}`;var ot=nm(function(){return gt(F,Ne+"return "+xe).apply(n,z)});if(ot.source=xe,$7(ot))throw ot;return ot}function rk(a){return Mt(a).toLowerCase()}function ik(a){return Mt(a).toUpperCase()}function lk(a,c,g){if(a=Mt(a),a&&(g||c===n))return Id(a);if(!a||!(c=sn(c)))return a;var S=gn(a),D=gn(c),F=Vd(S,D),z=qu(S,D)+1;return Yr(S,F,z).join("")}function ok(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.slice(0,T2(a)+1);if(!a||!(c=sn(c)))return a;var S=gn(a),D=qu(S,gn(c))+1;return Yr(S,0,D).join("")}function ak(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.replace(_u,"");if(!a||!(c=sn(c)))return a;var S=gn(a),D=Vd(S,gn(c));return Yr(S,D).join("")}function sk(a,c){var g=O,S=q;if(r0(c)){var D="separator"in c?c.separator:D;g="length"in c?rt(c.length):g,S="omission"in c?sn(c.omission):S}a=Mt(a);var F=a.length;if(Ql(a)){var z=gn(a);F=z.length}if(g>=F)return a;var H=g-tl(S);if(H<1)return S;var J=z?Yr(z,0,H).join(""):a.slice(0,H);if(D===n)return J+S;if(z&&(H+=J.length-H),C7(D)){if(a.slice(H).search(D)){var he,me=J;for(D.global||(D=ua(D.source,Mt(Tu.exec(D))+"g")),D.lastIndex=0;he=D.exec(me);)var xe=he.index;J=J.slice(0,xe===n?H:xe)}}else if(a.indexOf(sn(D),H)!=H){var De=J.lastIndexOf(D);De>-1&&(J=J.slice(0,De))}return J+S}function uk(a){return a=Mt(a),a&&ud.test(a)?a.replace(Gi,Kd):a}var ck=hl(function(a,c,g){return a+(g?" ":"")+c.toUpperCase()}),P7=wc("toUpperCase");function tm(a,c,g){return a=Mt(a),c=g?n:c,c===n?U3(a)?X3(a):j3(a):a.match(c)||[]}var nm=nt(function(a,c){try{return Z0(a,n,c)}catch(g){return $7(g)?g:new qe(g)}}),dk=Pr(function(a,c){return A0(c,function(g){g=tr(g),br(a,g,we(a[g],a))}),a});function fk(a){var c=a==null?0:a.length,g=Ke();return a=c?Lt(a,function(S){if(typeof S[1]!="function")throw new kn(u);return[g(S[0]),S[1]]}):[],nt(function(S){for(var D=-1;++Dfe)return[];var g=W,S=M0(a,W);c=Ke(c),a-=W;for(var D=Gu(S,c);++g0||c<0)?new Qe(g):(a<0?g=g.takeRight(-a):a&&(g=g.drop(a)),c!==n&&(c=rt(c),g=c<0?g.dropRight(-c):g.take(c-a)),g)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(W)},xn(Qe.prototype,function(a,c){var g=/^(?:filter|find|map|reject)|While$/.test(c),S=/^(?:head|last)$/.test(c),D=B[S?"take"+(c=="last"?"Right":""):c],F=S||/^find/.test(c);D&&(B.prototype[c]=function(){var z=this.__wrapped__,H=S?[1]:arguments,J=z instanceof Qe,he=H[0],me=J||Je(z),xe=function(dt){var mt=D.apply(B,hi([dt],H));return S&&De?mt[0]:mt};me&&g&&typeof he=="function"&&he.length!=1&&(J=me=!1);var De=this.__chain__,Ne=!!this.__actions__.length,Ue=F&&!De,ot=J&&!Ne;if(!F&&me){z=ot?z:new Qe(this);var Ge=a.apply(z,H);return Ge.__actions__.push({func:rr,args:[xe],thisArg:n}),new B0(Ge,De)}return Ue&&ot?a.apply(this,H):(Ge=this.thru(xe),Ue?S?Ge.value()[0]:Ge.value():Ge)})}),A0(["pop","push","shift","sort","splice","unshift"],function(a){var c=zr[a],g=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);B.prototype[a]=function(){var D=arguments;if(S&&!this.__chain__){var F=this.value();return c.apply(Je(F)?F:[],D)}return this[g](function(z){return c.apply(Je(z)?z:[],D)})}}),xn(Qe.prototype,function(a,c){var g=B[c];if(g){var S=g.name+"";yt.call(lo,S)||(lo[S]=[]),lo[S].push({name:c,func:g})}}),lo[wo(n,A).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=O2,Qe.prototype.reverse=nc,Qe.prototype.value=so,B.prototype.at=ks,B.prototype.chain=xl,B.prototype.commit=_s,B.prototype.next=Hc,B.prototype.plant=v7,B.prototype.reverse=Uc,B.prototype.toJSON=B.prototype.valueOf=B.prototype.value=m7,B.prototype.first=B.prototype.head,Zr&&(B.prototype[Zr]=Wc),B},Jl=Q3();pr?((pr.exports=Jl)._=Jl,aa._=Jl):Ot._=Jl}).call(FH)}(c1,c1.exports)),c1.exports}var VH=IH();const NH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:r,updateOverride:l})=>{switch(typeof r){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(NO,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,u=s.findIndex(p=>VH.isEqual(p.value,t));u===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],u=0);const f=p=>h=>{h.preventDefault();const m=Object.fromEntries(new FormData(h.currentTarget));l(n,JSON.parse(m.value)),p()};return P.jsxs(Oi,{gap:"2",children:[P.jsx(yE,{"aria-label":"flag variations select",selectedKey:u,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(b.Fragment,{children:[u!==null&&s[u]._id==="OVERRIDE"?P.jsxs(I1,{children:[P.jsxs(fn,{children:[P.jsx(Ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(F1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(fn,{children:[P.jsx(Ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(Nv,{children:P.jsx(Fv,{children:s.map((p,h)=>{const m=p.name?p.name:JSON.stringify(p.value);return P.jsx(Iv,{id:h,textValue:m,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),m]})}):m},h)})})})]},".0")}),P.jsx(Ye,{width:"2rem",height:"2rem",children:P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(_3,{icon:"edit","aria-label":"edit variation value"}),P.jsx(F1,{children:"Edit the served variation value as JSON"})]}),P.jsx(vE,{children:P.jsx(hE,{children:P.jsx(fE,{children:({close:p})=>P.jsxs(EC,{onSubmit:f(p),children:[P.jsxs(zv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:h=>{try{return JSON.parse(h),null}catch(m){return m instanceof Error?`Unable to parse value as JSON: ${m.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(wu,{children:`${n} value`}),P.jsx($E,{style:{fontFamily:"monospace"}}),P.jsx(X0,{slot:"description",children:"Update the value as JSON"}),P.jsx(pE,{})]}),P.jsxs(uE,{children:[P.jsx(fn,{onPress:p,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var h5={exports:{}},zH=h5.exports,H8;function OH(){return H8||(H8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(zH,t=>{var n=(le,Y)=>{if(!le||!Y)return Pe;var ce=E(le);pe(Y)||(Y=$(Y));var Ce=ce.bitflags;return(Ce&Y._bitflags)!==Ce?Pe:_(ce,Y)},r=(le,Y,ce)=>{if(!le)return ce!=null&&ce.all?k(Y,ce):fe;var Ce=E(le),ke=Ce.bitflags,Se=Ce.containsSpace,ge=y((ce==null?void 0:ce.threshold)||0),Le=(ce==null?void 0:ce.limit)||$e,_e=0,je=0,Xe=Y.length;function wt(en){_ere.peek()._score&&re.replaceTop(en))}if(ce!=null&&ce.key)for(var Rt=ce.key,at=0;at-1e3&&O[pt]>se){var lt=(O[pt]+q[pt])/4;lt>O[pt]&&(O[pt]=lt)}q[pt]>O[pt]&&(O[pt]=q[pt])}}if(Se){for(let tt=0;tt-1e3&&Dt>se){var lt=(Dt+st._score)/4;lt>Dt&&(Dt=lt)}st._score>Dt&&(Dt=st._score)}}if(e0.obj=_t,e0._score=Dt,ce!=null&&ce.scoreFn){if(Dt=ce.scoreFn(e0),!Dt)continue;Dt=y(Dt),e0._score=Dt}Dt=0;--at)qt[at]=re.poll();return qt.total=_e+je,qt},l=(le,Y="",ce="")=>{for(var Ce=typeof Y=="function"?Y:void 0,ke=le.target,Se=ke.length,ge=le.indexes,Le="",_e=0,je=0,Xe=!1,wt=[],Rt=0;Rt{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=M(le);return h(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},u=()=>{V.clear(),K.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ce)=>Y-ce)}set indexes(Y){return this._indexes=Y}highlight(Y,ce){return l(this,Y,ce)}get score(){return m(this._score)}set score(Y){this._score=y(Y)}}class p extends Array{get score(){return m(this._score)}set score(Y){this._score=y(Y)}}var h=(le,Y)=>{const ce=new f;return ce.target=le,ce.obj=Y.obj??Pe,ce._score=Y._score??se,ce._indexes=Y._indexes??[],ce._targetLower=Y._targetLower??"",ce._targetLowerCodes=Y._targetLowerCodes??Pe,ce._nextBeginningIndexes=Y._nextBeginningIndexes??Pe,ce._bitflags=Y._bitflags??0,ce},m=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),y=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=M(le),ce=[];if(Y.containsSpace){var Ce=le.split(/\s+/);Ce=[...new Set(Ce)];for(var ke=0;ke{if(le.length>999)return s(le);var Y=V.get(le);return Y!==void 0||(Y=s(le),V.set(le,Y)),Y},E=le=>{if(le.length>999)return w(le);var Y=K.get(le);return Y!==void 0||(Y=w(le),K.set(le,Y)),Y},k=(le,Y)=>{var ce=[];ce.total=le.length;var Ce=(Y==null?void 0:Y.limit)||$e;if(Y!=null&&Y.key)for(var ke=0;ke=Ce)return ce}}else if(Y!=null&&Y.keys)for(var ke=0;ke=0;--je){var ge=Q(Se,Y.keys[je]);if(!ge){_e[je]=ue;continue}pe(ge)||(ge=$(ge)),ge._score=se,ge._indexes.len=0,_e[je]=ge}if(_e.obj=Se,_e._score=se,ce.push(_e),ce.length>=Ce)return ce}else for(var ke=0;ke=Ce))return ce}return ce},_=(le,Y,ce=!1,Ce=!1)=>{if(ce===!1&&le.containsSpace)return A(le,Y,Ce);for(var ke=le._lower,Se=le.lowerCodes,ge=Se[0],Le=Y._targetLowerCodes,_e=Se.length,je=Le.length,at=0,Xe=0,wt=0;;){var Rt=ge===Le[Xe];if(Rt){if(ne[wt++]=Xe,++at,at===_e)break;ge=Se[at]}if(++Xe,Xe>=je)return Pe}var at=0,_t=!1,it=0,st=Y._nextBeginningIndexes;st===Pe&&(st=Y._nextBeginningIndexes=I(Y.target)),Xe=ne[0]===0?0:st[ne[0]-1];var l0=0;if(Xe!==je)for(;;)if(Xe>=je){if(at<=0||(++l0,l0>200))break;--at;var $t=L[--it];Xe=st[$t]}else{var Rt=Se[at]===Le[Xe];if(Rt){if(L[it++]=Xe,++at,at===_e){_t=!0;break}++Xe}else Xe=st[Xe]}var ht=_e<=1?-1:Y._targetLower.indexOf(ke,ne[0]),Be=!!~ht,lt=Be?ht===0||Y._nextBeginningIndexes[ht-1]===ht:!1;if(Be&&!lt){for(var ze=0;ze{for(var pt=0,dr=0,T0=1;T0<_e;++T0)tt[T0]-tt[T0-1]!==1&&(pt-=tt[T0],++dr);var ai=tt[_e-1]-tt[0]-(_e-1);if(pt-=(12+ai)*dr,tt[0]!==0&&(pt-=tt[0]*tt[0]*.2),!_t)pt*=1e3;else{for(var En=1,T0=st[0];T024&&(pt*=(En-24)*10)}return pt-=(je-_e)/2,Be&&(pt/=1+_e*_e*1),lt&&(pt/=1+_e*_e*1),pt-=(je-_e)/2,pt};if(_t)if(lt){for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(ne)}else var qt=L,en=Dt(L);else{if(Be)for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(qt)}Y._score=en;for(var ze=0;ze<_e;++ze)Y._indexes[ze]=qt[ze];Y._indexes.len=_e;const tn=new f;return tn.target=Y.target,tn._score=Y._score,tn._indexes=Y._indexes,tn},A=(le,Y,ce)=>{for(var Ce=new Set,ke=0,Se=Pe,ge=0,Le=le.spaceSearches,_e=Le.length,je=0,Xe=()=>{for(let lt=je-1;lt>=0;lt--)Y._nextBeginningIndexes[ee[lt*2+0]]=ee[lt*2+1]},wt=!1,Be=0;Be<_e;++Be){q[Be]=se;var Rt=Le[Be];if(Se=_(Rt,Y),ce){if(Se===Pe)continue;wt=!0}else if(Se===Pe)return Xe(),Pe;var at=Be===_e-1;if(!at){var _t=Se._indexes,it=!0;for(let ze=0;ze<_t.len-1;ze++)if(_t[ze+1]-_t[ze]!==1){it=!1;break}if(it){var st=_t[_t.len-1]+1,l0=Y._nextBeginningIndexes[st-1];for(let ze=st-1;ze>=0&&l0===Y._nextBeginningIndexes[ze];ze--)Y._nextBeginningIndexes[ze]=st,ee[je*2+0]=ze,ee[je*2+1]=l0,je++}}ke+=Se._score/_e,q[Be]=Se._score/_e,Se._indexes[0]ke){if(ce)for(var Be=0;Be<_e;++Be)q[Be]=ht._score/_e;return ht}ce&&(Se=Y),Se._score=ke;var Be=0;for(let lt of Ce)Se._indexes[Be++]=lt;return Se._indexes.len=Be,Se},M=le=>{for(var Y=le.length,ce=le.toLowerCase(),Ce=[],ke=0,Se=!1,ge=0;ge=97&&Le<=122?Le-97:Le>=48&&Le<=57?26:Le<=127?30:31;ke|=1<<_e}return{lowerCodes:Ce,bitflags:ke,containsSpace:Se,_lower:ce}},R=le=>{for(var Y=le.length,ce=[],Ce=0,ke=!1,Se=!1,ge=0;ge=65&&Le<=90,je=_e||Le>=97&&Le<=122||Le>=48&&Le<=57,Xe=_e&&!ke||!Se||!je;ke=_e,Se=je,Xe&&(ce[Ce++]=ge)}return ce},I=le=>{for(var Y=le.length,ce=R(le),Ce=[],ke=ce[0],Se=0,ge=0;gege?Ce[ge]=ke:(ke=ce[++Se],Ce[ge]=ke===void 0?Y:ke);return Ce},V=new Map,K=new Map,ne=[],L=[],ee=[],O=[],q=[],ve=[],G=[],Q=(le,Y)=>{var ce=le[Y];if(ce!==void 0)return ce;if(typeof Y=="function")return Y(le);var Ce=Y;Array.isArray(Y)||(Ce=Y.split("."));for(var ke=Ce.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",$e=1/0,se=-$e,fe=[];fe.total=0;var Pe=null,ue=s(""),W=le=>{var Y=[],ce=0,Ce={},ke=Se=>{for(var ge=0,Le=Y[ge],_e=1;_e>1]=Y[ge],_e=1+(ge<<1)}for(var Xe=ge-1>>1;ge>0&&Le._score>1)Y[ge]=Y[Xe];Y[ge]=Le};return Ce.add=Se=>{var ge=ce;Y[ce++]=Se;for(var Le=ge-1>>1;ge>0&&Se._score>1)Y[ge]=Y[Le];Y[ge]=Se},Ce.poll=Se=>{if(ce!==0){var ge=Y[0];return Y[0]=Y[--ce],ke(),ge}},Ce.peek=Se=>{if(ce!==0)return Y[0]},Ce.replaceTop=Se=>{Y[0]=Se,ke()},Ce},re=W();return{single:n,go:r,prepare:s,cleanup:u}})}(h5)),h5.exports}var ZH=OH();const KH=V1(ZH);function jH({availableVariations:e,selectedProject:t,flags:n,overrides:r,setOverrides:l}){const[s,u]=b.useState(!1),[f,p]=b.useState(""),[h,m]=b.useState(0),y=20,w=b.useMemo(()=>r&&Object.keys(r).length>0,[r]);b.useEffect(()=>{!w&&s&&u(!1)},[w,s]);const $=b.useMemo(()=>n?Object.entries(n).filter(V=>{if(!f)return!0;const[K]=V,ne=KH.single(f.toLowerCase(),K);return ne&&ne.score>-5e3}).filter(V=>{const[K]=V,ne=K in r;return!(s&&!ne)}):[],[n,f,s,r]),E=b.useMemo(()=>{const I=h*y,V=I+y;return $.slice(I,V)},[$,h]),k=b.useCallback((I,V)=>{var ne;const K={...r,[I]:{value:V,version:((ne=r[I])==null?void 0:ne.version)||0}};l(K),fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"PUT",body:JSON.stringify(V)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(r),console.error("unable to update override",L)})},[r,t]),_=b.useCallback(async I=>{const V={...r};delete V[I],l(V);try{const K=await fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"DELETE"});if(!K.ok)throw new Error(`got ${K.status} ${K.statusText}. ${await K.text()}`)}catch(K){console.error("unable to remove override",K),l(r)}},[r,t]),A=b.useCallback(async()=>{l({});try{const I=await fetch(cr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!I.ok)throw new Error(`got ${I.status} ${I.statusText}. ${await I.text()}`)}catch(I){console.error("unable to remove all overrides",I),l(r)}},[r,t]);if(!n)return null;const M=Math.ceil($.length/y),R=I=>{switch(I){case"next":m(V=>Math.min(V+1,M-1));break;case"prev":m(V=>Math.max(V-1,0));break;case"first":m(0);break;case"last":m(M-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:RH.borderRadius.regular,children:[P.jsxs(wu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(Rv,{id:"only-show-overrides",isSelected:s,onChange:I=>{u(I)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(fn,{variant:"destructive",isDisabled:!w,onPress:async()=>{r&&(await A(),l({}),u(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs($3,{gap:"4",children:[P.jsx(Oi,{gap:"4",children:P.jsx(Sj,{"aria-label":"Search flags",children:P.jsxs(gK,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(Bv,{placeholder:"Search flags by key",onChange:I=>{p(I.target.value),m(0)},value:f,"aria-label":"Search flags input"}),P.jsx(_3,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:E.map(([I,{value:V}],K)=>{var O;const ne=(O=r[I])==null?void 0:O.value,L=I in r,ee=L?ne:V;return P.jsxs("li",{style:{backgroundColor:K%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Ye,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(J1,{asChild:!0,text:I,children:P.jsx("code",{className:L?"has-override":"",children:I})}),L&&P.jsx(fn,{"aria-label":"Remove override",onPress:()=>{_(I)},variant:"destructive",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Ye,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(NH,{availableVariations:e[I]?e[I]:[],currentValue:ee,flagValue:V,flagKey:I,updateOverride:k})})]},I)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(iN,{currentOffset:h*y,isReady:!0,onChange:I=>R(I),pageSize:y,resourceName:"flags",totalCount:$.length})})]})}const HH=async()=>{const e=await fetch(cr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function WH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[r,l]=b.useState([]),[s,u]=b.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),u(!1)};return b.useEffect(()=>{HH().then(f).catch(p=>{console.error(p),u(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):r.length>0?P.jsxs(pO,{children:[P.jsx(Oi,{gap:"1",children:P.jsxs(I1,{children:[P.jsx(fn,{children:e??"Select a project"}),P.jsx(F1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(Nv,{children:P.jsx(UK,{children:r.map(p=>P.jsx(qK,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const UH=async e=>{const t=await fetch(cr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},GH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[r,l]=b.useState(!1),s=async()=>{l(!0);try{const u=await UH(e);n(u.availableVariations),t(Vh(u.flagsState))}catch(u){Z8.warning("Sync failed"),console.error("Sync failed:",u)}finally{Z8.success("Sync successful"),l(!1)}};return e?P.jsxs(I1,{children:[P.jsx(fn,{onPress:s,isDisabled:r,style:{backgroundColor:r?"lightgray":void 0},children:r?P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(F1,{children:"Sync the selected project from the source environment"})]}):null};async function qH(e,t){const n=await fetch(cr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Pp,W8;function CE(){if(W8)return Pp;W8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Pp=e,Pp}var kp,U8;function YH(){if(U8)return kp;U8=1;var e=typeof Lo=="object"&&Lo&&Lo.Object===Object&&Lo;return kp=e,kp}var _p,G8;function SE(){if(G8)return _p;G8=1;var e=YH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return _p=n,_p}var Dp,q8;function XH(){if(q8)return Dp;q8=1;var e=SE(),t=function(){return e.Date.now()};return Dp=t,Dp}var Tp,Y8;function QH(){if(Y8)return Tp;Y8=1;var e=/\s/;function t(n){for(var r=n.length;r--&&e.test(n.charAt(r)););return r}return Tp=t,Tp}var Ap,X8;function JH(){if(X8)return Ap;X8=1;var e=QH(),t=/^\s+/;function n(r){return r&&r.slice(0,e(r)+1).replace(t,"")}return Ap=n,Ap}var Mp,Q8;function EE(){if(Q8)return Mp;Q8=1;var e=SE(),t=e.Symbol;return Mp=t,Mp}var Bp,J8;function eW(){if(J8)return Bp;J8=1;var e=EE(),t=Object.prototype,n=t.hasOwnProperty,r=t.toString,l=e?e.toStringTag:void 0;function s(u){var f=n.call(u,l),p=u[l];try{u[l]=void 0;var h=!0}catch{}var m=r.call(u);return h&&(f?u[l]=p:delete u[l]),m}return Bp=s,Bp}var Rp,eg;function tW(){if(eg)return Rp;eg=1;var e=Object.prototype,t=e.toString;function n(r){return t.call(r)}return Rp=n,Rp}var Lp,tg;function nW(){if(tg)return Lp;tg=1;var e=EE(),t=eW(),n=tW(),r="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function u(f){return f==null?f===void 0?l:r:s&&s in Object(f)?t(f):n(f)}return Lp=u,Lp}var Fp,ng;function rW(){if(ng)return Fp;ng=1;function e(t){return t!=null&&typeof t=="object"}return Fp=e,Fp}var Ip,rg;function iW(){if(rg)return Ip;rg=1;var e=nW(),t=rW(),n="[object Symbol]";function r(l){return typeof l=="symbol"||t(l)&&e(l)==n}return Ip=r,Ip}var Vp,ig;function lW(){if(ig)return Vp;ig=1;var e=JH(),t=CE(),n=iW(),r=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,u=/^0o[0-7]+$/i,f=parseInt;function p(h){if(typeof h=="number")return h;if(n(h))return r;if(t(h)){var m=typeof h.valueOf=="function"?h.valueOf():h;h=t(m)?m+"":m}if(typeof h!="string")return h===0?h:+h;h=e(h);var y=s.test(h);return y||u.test(h)?f(h.slice(2),y?2:8):l.test(h)?r:+h}return Vp=p,Vp}var Np,lg;function oW(){if(lg)return Np;lg=1;var e=CE(),t=XH(),n=lW(),r="Expected a function",l=Math.max,s=Math.min;function u(f,p,h){var m,y,w,$,E,k,_=0,A=!1,M=!1,R=!0;if(typeof f!="function")throw new TypeError(r);p=n(p)||0,e(h)&&(A=!!h.leading,M="maxWait"in h,w=M?l(n(h.maxWait)||0,p):w,R="trailing"in h?!!h.trailing:R);function I(G){var Q=m,pe=y;return m=y=void 0,_=G,$=f.apply(pe,Q),$}function V(G){return _=G,E=setTimeout(L,p),A?I(G):$}function K(G){var Q=G-k,pe=G-_,$e=p-Q;return M?s($e,w-pe):$e}function ne(G){var Q=G-k,pe=G-_;return k===void 0||Q>=p||Q<0||M&&pe>=w}function L(){var G=t();if(ne(G))return ee(G);E=setTimeout(L,K(G))}function ee(G){return E=void 0,R&&m?I(G):(m=y=void 0,$)}function O(){E!==void 0&&clearTimeout(E),_=0,m=k=y=E=void 0}function q(){return E===void 0?$:ee(t())}function ve(){var G=t(),Q=ne(G);if(m=arguments,y=this,k=G,Q){if(E===void 0)return V(k);if(M)return clearTimeout(E),E=setTimeout(L,p),I(k)}return E===void 0&&(E=setTimeout(L,p)),$}return ve.cancel=O,ve.flush=q,ve}return Np=u,Np}var aW=oW();const sW=V1(aW);function uW({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:r}){const[l,s]=b.useState(null),[u,f]=b.useState(""),[p,h]=b.useState(!1),m=b.useCallback(sW(y=>{h(!0),qH(e,y).then(w=>{if(s(w),!n){const $=w.find(E=>E.key===t);$?r($):w.length>0&&r({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{h(!1)})},300),[e,t,n,r]);return b.useEffect(()=>{m(u)},[m,u]),P.jsxs($3,{gap:"3",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(wu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(Bv,{id:"environmentSearch",value:u,onChange:y=>f(y.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Ye,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(c2,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Ye,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Fv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:y=>{const w=Array.from(y)[0],$=l==null?void 0:l.find(E=>E.key===w);$&&r($)},children:l==null?void 0:l.map(y=>P.jsx(Iv,{id:y.key,children:y.name},y.key))})})]})}function cW({context:e,setContext:t}){return P.jsxs($3,{gap:"3",children:[P.jsx(wu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(zv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(r){return r instanceof Error?`Unable to parse value as JSON: ${r.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx($E,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(X0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(pE,{})]})]})}function dW({isSubmitting:e,selectedEnvironment:t}){return P.jsx(fn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(Oi,{gap:"2",children:P.jsxs(Ye,{display:"flex",alignItems:"center",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function fW({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:r,context:l,updateProjectSettings:s}){const[u,f]=b.useState(t),[p,h]=b.useState(l),[m,y]=b.useState(!1);b.useEffect(()=>{f(t),h(l)},[t,l]);const w=async E=>{y(!0);try{E(),await s(u,p),n(u)}catch(k){console.error("Error submitting project settings:",k)}finally{y(!1)}},$=()=>{f(t),h(l)};return P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(dW,{isSubmitting:m,selectedEnvironment:r}),P.jsx(F1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(vE,{isDismissable:!1,children:P.jsx(hE,{children:P.jsx(fE,{children:({close:E})=>P.jsxs(EC,{onSubmit:k=>{k.preventDefault(),w(E)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(wu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs($3,{gap:"3",children:[P.jsx(uW,{projectKey:e,sourceEnvironmentKey:r,selectedEnvironment:u,setSelectedEnvironment:f}),P.jsx(Ye,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(cW,{context:p,setContext:h})]}),P.jsxs(uE,{style:{justifyContent:"flex-end"},children:[P.jsx(fn,{onPress:()=>{$(),E()},variant:"destructive",isDisabled:m,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",isDisabled:m,children:m?P.jsxs(Oi,{gap:"2",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function pW(){const[e,t]=b.useState(null),[n,r]=b.useState(null),[l,s]=b.useState(null),[u,f]=b.useState({}),[p,h]=b.useState({}),[m,y]=b.useState(null),[w,$]=b.useState(!1),[E,k]=b.useState("{}"),_=b.useCallback(async()=>{if(!e)return;const M=await fetch(cr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),R=await M.json();if(!M.ok)throw new Error(`Got ${M.status}, ${M.statusText} from flag fetch`);const{flagsState:I,overrides:V,sourceEnvironmentKey:K,availableVariations:ne,context:L}=R;y(Vh(I)),f(V),s(K),h(ne),k(JSON.stringify(L||"{}",null,2));const O=(await hW(e)).find(q=>q.key===K);O&&r(O)},[e]);b.useEffect(()=>{e&&_().catch(console.error.bind(console,"error when fetching flags"))},[_,e]),b.useEffect(()=>{Promise.all([_()]).catch(console.error.bind(console,"error when fetching flags"))},[_]);const A=b.useCallback(async(M,R)=>{if(e)try{const I=await fetch(cr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:M==null?void 0:M.key,context:JSON.parse(R)})});if(!I.ok)throw new Error(`Got ${I.status}, ${I.statusText} from project settings update`);const V=await I.json(),{flagsState:K,sourceEnvironmentKey:ne,context:L}=V;y(Vh(K)),s(ne),k(JSON.stringify(L||{},null,2)),r(M),await _()}catch(I){console.error("Error updating project settings:",I)}},[e,_]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Ye,{width:"100%",minWidth:"600px",children:P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Ye,{marginBottom:"2rem",width:"100%",children:P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(WH,{selectedProject:e,setSelectedProject:t,setShowBanner:$}),e&&P.jsx(fW,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:r,sourceEnvironmentKey:l,context:E,updateProjectSettings:A}),P.jsx(GH,{selectedProject:e,setFlags:y,setAvailableVariations:h})]}),e&&P.jsx(Ye,{width:"100%",children:P.jsx(jH,{availableVariations:p,selectedProject:e,flags:m,overrides:u,setOverrides:M=>{f(M)}})})]})})})}async function hW(e){const t=await fetch(cr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const sd=(e,t)=>P.jsx(J1,{kind:"basic",text:t,children:e}),vW=(e,t)=>{const n=[];for(const[r,l]of Object.entries(t.features||{})){const s=e.id+r,u=l.counters||[];for(const f of u)n.push(P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"summary"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",r]}),P.jsxs(Bt,{children:["evaluated as ",String(f.value)]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},s))}return n},mW=(e,t)=>{let n="unknown",r="help";if(e.data.context){const l=t.context;if(!l)return console.error("Index event context is undefined"),[];switch(l.kind){case"user":n="user context",r="person";break;case"application":n=l.key||"unknown application",r="cloud";break;case"multi":l.user?(n=l.user.email||l.user.key||"unknown user",r="person"):l.account?(n=l.account.name||l.account.key||"unknown account",r="group"):l.application?(n=l.application.key||"unknown application",r="cloud"):(n="multi context",r="chart-dashboard");break}}else t.user?(n=(t.user.key||"unknown")+" user",r="person-outline"):n="unknown";return[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"index"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:r,size:"small"})," ",n]}),P.jsxs(Bt,{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t.data))})]},e.id)]},gW=(e,t)=>{const n=`evaluated as ${String(t.value)}`;return[P.jsxs($u,{className:"feature-row",children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"feature"}),P.jsx(Bt,{children:t.key||"unknown"}),P.jsx(Bt,{children:n}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)]},yW=(e,t)=>[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:e.data.kind}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs(Bt,{children:["value is ",t.metricValue]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)],bW=e=>{switch(e.data.kind){case"summary":return vW(e,e.data);case"index":return mW(e,e.data);case"feature":return gW(e,e.data);case"custom":return yW(e,e.data);default:return[P.jsxs($u,{children:[P.jsx(Bt,{children:(()=>{try{const t=new Date(e.timestamp);return isNaN(t.getTime())?e.timestamp:t.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx(Bt,{children:e.data.kind}),P.jsx(Bt,{}),P.jsx(Bt,{}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(e.data))})]},e.id)]}},PE=({events:e,onToggleStreaming:t})=>{const[n,r]=b.useState(!0),l=s=>{r(s),t==null||t(s)};return P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",children:[P.jsx("h3",{children:"Events Stream"}),P.jsx(Ye,{paddingBottom:"1rem",children:t&&P.jsx(fn,{variant:"primary",onPress:async()=>l(!n),children:n?"Streaming ON":"Streaming OFF"})}),P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Time"}),P.jsx(Dl,{children:"Type"}),P.jsx(Dl,{children:"Target"}),P.jsx(Dl,{children:"Event"}),P.jsx(Dl,{children:"Link"})]}),P.jsx(wE,{children:e.map(s=>bW(s))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."})]})},xW=({limit:e=1e3})=>{const[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0);b.useEffect(()=>{const p=new EventSource(cr("/events/tee"));return p.addEventListener("put",h=>{if(!h.data||h.data.trim()==="")return;let m;try{m=JSON.parse(h.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const y={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:m};s?n(w=>[y,...w].slice(0,e)):l(w=>[y,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{u(p),p&&r.length>0&&(n(h=>[...r,...h].slice(0,e)),l([]))};return P.jsx(PE,{events:t,onToggleStreaming:f})},wW=()=>{const[e,t]=b.useState([]),[n,r]=b.useState(!0),[l,s]=b.useState(null),[u,f]=b.useState(0),[p,h]=b.useState(null),m=async()=>{try{r(!0),s(null);const $=await fetch(cr("/dev/debug-sessions?limit=100"));if(!$.ok)throw new Error(`Failed to fetch debug sessions: ${$.status} ${$.statusText}`);const E=await $.json();t(E.sessions),f(E.total_count)}catch($){s($ instanceof Error?$.message:"An unknown error occurred")}finally{r(!1)}};b.useEffect(()=>{m()},[]);const y=$=>{try{return new Date($).toLocaleString()}catch{return $}},w=async $=>{if(confirm(`Are you sure you want to delete debug session "${$}" and all its events? This action cannot be undone.`))try{h($),s(null);const E=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent($)}`),{method:"DELETE"});if(!E.ok)throw E.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${E.status} ${E.statusText}`);await m()}catch(E){s(E instanceof Error?E.message:"An unknown error occurred while deleting the session")}finally{h(null)}};return n?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",l]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:m,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:[u," total session",u!==1?"s":""]})]}),e.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No debug sessions found"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",borderRadius:"4px",borderWidth:"1px",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Debug Session Started"}),P.jsx(Dl,{children:"Event Count"}),P.jsx(Dl,{children:"Actions"})]}),P.jsx(wE,{children:e.map($=>P.jsxs($u,{children:[P.jsx(Bt,{children:P.jsx(PK,{href:`/ui/debug-sessions/${$.key}/events`,children:y($.written_at)})}),P.jsx(Bt,{children:P.jsx(X0,{children:$.event_count.toLocaleString()})}),P.jsx(Bt,{children:P.jsx(fn,{isDisabled:p===$.key,variant:"destructive",onPress:()=>w($.key),children:P.jsx(Pt,{name:"delete",size:"small"})})})]},$.key))})]})})]})};function $W(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const CW=()=>{const{debugSessionKey:e}=R_(),[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0),[f,p]=b.useState(null),h=async()=>{var y;if(!e){p("Debug session key is required"),u(!1);return}try{u(!0),p(null);const w=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const E=((y=(await w.json()).events)==null?void 0:y.map($W))||[];n(E),l(E)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{u(!1)}};b.useEffect(()=>{h()},[e]);const m=y=>{l(t.filter(w=>{let $="";const E=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(_=>E(_)):typeof k=="object"?Object.values(k).flatMap(_=>E(_)):[];return $=E(w).join(" "),$.toLowerCase().includes(y.toLowerCase())}))};return s?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading events..."})})]}):f?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",f]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:h,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Ye,{children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(zv,{onChange:m,name:"debug-session-search",children:P.jsxs(b.Fragment,{children:[P.jsx(wu,{children:"Search"}),P.jsx(Bv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No events found for this debug session"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(PE,{events:r})]})};function SW(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Ye,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Ye,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(BH,{})}),P.jsx(Ye,{padding:"1rem",width:"100%",children:P.jsxs(q_,{children:[P.jsx(Ya,{path:"/",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui/flags",element:P.jsx(pW,{})}),P.jsx(Ya,{path:"/ui/events",element:P.jsx(xW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions",element:P.jsx(wW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(CW,{})})]})})]})})}const EW="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function PW({children:e}){return b.useEffect(()=>{fetch(EW).then(async t=>t.text()).then(t=>{const r=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;r.id="lp-icons-sprite",r.style.display="none",document.body.appendChild(r)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(Eg.Provider,{value:{path:""},children:e})}const kW=()=>(b.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(Z.StrictMode,{children:P.jsx(yD,{children:P.jsxs(PW,{children:[P.jsx(SW,{}),P.jsx(DH,{})]})})}));i_.createRoot(document.getElementById("root")).render(P.jsx(kW,{})); +
diff --git a/internal/dev_server/ui/src/App.css b/internal/dev_server/ui/src/App.css index 895e28485..3c27364ba 100644 --- a/internal/dev_server/ui/src/App.css +++ b/internal/dev_server/ui/src/App.css @@ -63,230 +63,3 @@ code { code.has-override { color: var(--lp-color-pink-600); } - -/* Events table styling */ -.events-table { - border: 1px solid var(--lp-color-border-ui-primary); - border-collapse: collapse; - width: 100%; -} - -.events-table th, -.events-table td { - border: 1px solid var(--lp-color-border-ui-primary); - padding: 8px; - text-align: left; -} - -.events-table th:first-child, -.events-table td:first-child { - white-space: nowrap; - word-break: keep-all; - overflow-wrap: normal; -} - -.events-table th { - background-color: var(--lp-color-bg-ui-tertiary); - font-weight: var(--lp-font-weight-bold); - font-size: var(--lp-font-size-400); - color: var(--lp-color-text-primary); - text-transform: uppercase; - letter-spacing: 0.5px; - padding: 12px 8px; - border-bottom: 2px solid var(--lp-color-border-ui-secondary); -} - -.events-table tbody tr:nth-child(even) { - background-color: var(--lp-color-bg-ui-secondary); -} - -.events-table tbody tr:nth-child(odd) { - background-color: var(--lp-color-bg-ui-primary); -} - -/* Feature rows styling - make them pop! */ -.events-table tbody tr.feature-row { - background-color: var(--lp-color-blue-100) !important; - border-left: 4px solid var(--lp-color-blue-400); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); - font-weight: var(--lp-font-weight-medium); -} - -/* Dark mode adjustments for feature rows */ -@media (prefers-color-scheme: dark) { - .events-table tbody tr.feature-row { - background-color: var(--lp-color-blue-900) !important; - border-left: 4px solid var(--lp-color-blue-300); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); - } -} - -.events-table tbody tr.feature-row td:nth-child(2) { - color: var(--lp-color-blue-700); - font-weight: var(--lp-font-weight-bold); - text-transform: uppercase; - font-size: var(--lp-font-size-200); - letter-spacing: 0.5px; -} - -/* Dark mode adjustments for feature row text */ -@media (prefers-color-scheme: dark) { - .events-table tbody tr.feature-row td:nth-child(2) { - color: var(--lp-color-blue-200); - } -} - -/* Copy to clipboard link styling */ -.events-table td a { - color: var(--lp-color-blue-600); - text-decoration: none; - padding: 4px 8px; - border-radius: 4px; - transition: all 0.2s ease-in-out; - font-size: var(--lp-font-size-200); - white-space: nowrap; -} - -.events-table td a:hover { - background-color: var(--lp-color-blue-50); - color: var(--lp-color-blue-700); - text-decoration: underline; - transform: translateY(-1px); - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); -} - -.events-table td a:active { - transform: translateY(0px); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); - background-color: var(--lp-color-blue-100); -} - -/* Dark mode adjustments for copy links */ -@media (prefers-color-scheme: dark) { - .events-table td a { - color: var(--lp-color-blue-300); - } - - .events-table td a:hover { - background-color: var(--lp-color-blue-900); - color: var(--lp-color-blue-200); - } - - .events-table td a:active { - background-color: var(--lp-color-blue-800); - } -} - -/* Center the copy link in its cell */ -.events-table td:last-child { - text-align: center; - vertical-align: middle; - min-width: 120px; - white-space: nowrap; -} - -/* Copy notification toast */ -.copy-notification { - position: fixed; - bottom: 30px; - left: 50%; - transform: translateX(-50%) translateY(100px); - background-color: #22c55e; /* Fallback green */ - background-color: var(--lp-color-blue-600, #2563eb); - color: white; - padding: 12px 20px; - border-radius: 6px; - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); - font-size: 14px; /* Fallback font size */ - font-size: var(--lp-font-size-300, 14px); - font-weight: 500; /* Fallback font weight */ - font-weight: var(--lp-font-weight-medium, 500); - z-index: 1000; - opacity: 0; - transition: all 0.3s ease-in-out; -} - -.copy-notification.show { - opacity: 1; - transform: translateX(-50%) translateY(0); -} - -.copy-notification.hide { - opacity: 0; - transform: translateX(-50%) translateY(100px); -} - -/* Dark mode copy notification styling */ -@media (prefers-color-scheme: dark) { - .copy-notification { - background-color: var(--lp-color-blue-700, #1d4ed8); - color: var(--lp-color-gray-100, #f3f4f6); - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); - } -} - -/* Streaming toggle button */ -.streaming-toggle-button { - margin-bottom: 16px; - padding: 8px 16px; - color: white; - border: none; - border-radius: 4px; - cursor: pointer; - font-size: var(--lp-font-size-300); - font-weight: var(--lp-font-weight-medium); - transition: background-color 0.2s ease; -} - -.streaming-toggle-button.streaming { - background-color: var(--lp-color-blue-600); -} - -.streaming-toggle-button.not-streaming { - background-color: var(--lp-color-gray-600); -} - -.streaming-toggle-button:hover { - opacity: 0.9; -} - -.streaming-toggle-button:active { - transform: translateY(1px); -} - -/* Copy button styling */ -.copy-button { - background: none; - border: none; - color: var(--lp-color-blue-600); - cursor: pointer; - text-decoration: underline; - font-size: var(--lp-font-size-200); - padding: 0; - margin: 0; - transition: color 0.2s ease; -} - -.copy-button:hover { - color: var(--lp-color-blue-700); - text-decoration: none; -} - -.copy-button:active { - color: var(--lp-color-blue-800); -} - -/* Dark mode styling for copy button */ -@media (prefers-color-scheme: dark) { - .copy-button { - color: var(--lp-color-blue-400); - } - - .copy-button:hover { - color: var(--lp-color-blue-300); - } - - .copy-button:active { - color: var(--lp-color-blue-200); - } -} diff --git a/internal/dev_server/ui/src/DebugSessionsPage.tsx b/internal/dev_server/ui/src/DebugSessionsPage.tsx index 8f390d056..b0e948d3f 100644 --- a/internal/dev_server/ui/src/DebugSessionsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionsPage.tsx @@ -6,11 +6,17 @@ import { } from './types'; import { Box, Alert } from '@launchpad-ui/core'; import { - Heading, - Text, - ProgressBar, Button, + Cell, + Column, + Heading, Link, + ProgressBar, + Row, + Table, + TableBody, + TableHeader, + Text, } from '@launchpad-ui/components'; import { Icon } from '@launchpad-ui/icons'; @@ -163,103 +169,46 @@ const DebugSessionsPage = () => {
) : ( -
- - - - - - - - - - {debugSessions.map((session, index) => ( - -
- Debug Session Started - - Event Count - - Actions -
+ + + Debug Session Started + Event Count + Actions + + + {debugSessions.map((session) => ( + + {formatDate(session.written_at)} - - - - + + + ))} - -
+ + {session.event_count.toLocaleString()} - - -
- + +
+ )} ); diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 6b8f43b8e..012f17f71 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -5,6 +5,17 @@ import { IndexEventPayload, SummaryEventPayload, } from './types'; + +import { + Button, + Cell, + Column, + Row, + Table, + TableBody, + TableHeader, +} from '@launchpad-ui/components'; +import { Box, CopyToClipboard } from '@launchpad-ui/core'; import { Icon } from '@launchpad-ui/icons'; import { useState } from 'react'; @@ -13,37 +24,15 @@ type Props = { onToggleStreaming?: (newStreamingState: boolean) => void; }; -const clipboardLink = ( - linkText: string, - value: string, - showNotification: (message: string) => void, -) => { +const clipboardLink = (linkText: string, value: string) => { return ( - + ); }; -const summaryRows = ( - event: EventData, - summaryEvent: SummaryEventPayload, - showNotification: (message: string) => void, -) => { +const summaryRows = (event: EventData, summaryEvent: SummaryEventPayload) => { const rows = []; for (const [key, value] of Object.entries(summaryEvent.features || {})) { const rowId = event.id + key; @@ -51,21 +40,17 @@ const summaryRows = ( for (const counter of counters) { rows.push( - - {new Date(event.timestamp).toLocaleTimeString()} - summary - + + {new Date(event.timestamp).toLocaleTimeString()} + summary + {key} - - evaluated as {String(counter.value)} - - {clipboardLink( - 'Copy to clipboard', - JSON.stringify(summaryEvent), - showNotification, - )} - - , + + evaluated as {String(counter.value)} + + {clipboardLink('Copy to clipboard', JSON.stringify(summaryEvent))} + + , ); } } @@ -73,11 +58,7 @@ const summaryRows = ( return rows; }; -const indexRows = ( - event: EventData, - indexEvent: IndexEventPayload, - showNotification: (message: string) => void, -) => { +const indexRows = (event: EventData, indexEvent: IndexEventPayload) => { let targetText = 'unknown'; let iconName: | 'person' @@ -126,107 +107,68 @@ const indexRows = ( } return [ - - {new Date(event.timestamp).toLocaleTimeString()} - index - + + {new Date(event.timestamp).toLocaleTimeString()} + index + {targetText} - - indexed {JSON.stringify(indexEvent).length} bytes - - {clipboardLink( - 'Copy to clipboard', - JSON.stringify(indexEvent.data), - showNotification, - )} - - , + + indexed {JSON.stringify(indexEvent).length} bytes + + {clipboardLink('Copy to clipboard', JSON.stringify(indexEvent.data))} + + , ]; }; -const featureRows = ( - event: EventData, - featureEvent: FeatureEventPayload, - showNotification: (message: string) => void, -) => { +const featureRows = (event: EventData, featureEvent: FeatureEventPayload) => { const eventText = `evaluated as ${String(featureEvent.value)}`; return [ - - {new Date(event.timestamp).toLocaleTimeString()} - feature - {featureEvent.key || 'unknown'} - {eventText} - - {clipboardLink( - 'Copy to clipboard', - JSON.stringify(featureEvent), - showNotification, - )} - - , + + {new Date(event.timestamp).toLocaleTimeString()} + feature + {featureEvent.key || 'unknown'} + {eventText} + + {clipboardLink('Copy to clipboard', JSON.stringify(featureEvent))} + + , ]; }; -const customRows = ( - event: EventData, - customEvent: GenericEventPayload, - showNotification: (message: string) => void, -) => { +const customRows = (event: EventData, customEvent: GenericEventPayload) => { return [ - - {new Date(event.timestamp).toLocaleTimeString()} - {event.data.kind} - + + {new Date(event.timestamp).toLocaleTimeString()} + {event.data.kind} + {customEvent.key} - - value is {customEvent.metricValue} - - {clipboardLink( - 'Copy to clipboard', - JSON.stringify(customEvent), - showNotification, - )} - - , + + value is {customEvent.metricValue} + + {clipboardLink('Copy to clipboard', JSON.stringify(customEvent))} + + , ]; }; // Return array of s: // Time, Type, Key, Event, ViewAttributes -const renderEvent = ( - event: EventData, - showNotification: (message: string) => void, -) => { +const renderEvent = (event: EventData) => { switch (event.data.kind) { case 'summary': - return summaryRows( - event, - event.data as SummaryEventPayload, - showNotification, - ); + return summaryRows(event, event.data as SummaryEventPayload); case 'index': - return indexRows( - event, - event.data as IndexEventPayload, - showNotification, - ); + return indexRows(event, event.data as IndexEventPayload); case 'feature': - return featureRows( - event, - event.data as FeatureEventPayload, - showNotification, - ); + return featureRows(event, event.data as FeatureEventPayload); case 'custom': - return customRows( - event, - event.data as GenericEventPayload, - showNotification, - ); + return customRows(event, event.data as GenericEventPayload); default: return [ - - + + {(() => { try { const date = new Date(event.timestamp); @@ -237,24 +179,19 @@ const renderEvent = ( return event.timestamp; } })()} - - {event.data.kind} - - - - {clipboardLink( - 'Copy to clipboard', - JSON.stringify(event.data), - showNotification, - )} - - , + + {event.data.kind} + + + + {clipboardLink('Copy to clipboard', JSON.stringify(event.data))} + + , ]; } }; const EventsTable = ({ events, onToggleStreaming }: Props) => { - const [notification, setNotification] = useState(null); const [isStreaming, setIsStreaming] = useState(true); const handleToggleStreaming = (newStreamingState: boolean) => { @@ -262,45 +199,31 @@ const EventsTable = ({ events, onToggleStreaming }: Props) => { onToggleStreaming?.(newStreamingState); }; - const showNotification = (message: string) => { - setNotification(message); - setTimeout(() => { - setNotification(null); - }, 1500); - }; - return ( -
+

Events Stream

- {onToggleStreaming && ( - - )} - - - - - - - - - - - - {events.map((event) => renderEvent(event, showNotification))} - -
TimeTypeTargetEventLink
+ + {onToggleStreaming && ( + + )} + + + + Time + Type + Target + Event + Link + + {events.map((event) => renderEvent(event))} +
{events.length === 0 &&

No events received yet...

} - {notification && ( -
- {notification} -
- )} -
+ ); }; From eb221a6e52a5469b4bfd34ab90d29c53850fff19 Mon Sep 17 00:00:00 2001 From: Brian Van Staalduine <1323225+brianvans@users.noreply.github.com> Date: Thu, 18 Sep 2025 19:07:24 -0700 Subject: [PATCH 90/96] Fix debug sessions page zero state crash --- internal/dev_server/ui/dist/index.html | 2 +- internal/dev_server/ui/src/DebugSessionsPage.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index 2baa05ae5..853d12f49 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -99,7 +99,7 @@ function print() { __p += __j.call(arguments, '') } `:`; `)+xe+`return __p -}`;var ot=nm(function(){return gt(F,Ne+"return "+xe).apply(n,z)});if(ot.source=xe,$7(ot))throw ot;return ot}function rk(a){return Mt(a).toLowerCase()}function ik(a){return Mt(a).toUpperCase()}function lk(a,c,g){if(a=Mt(a),a&&(g||c===n))return Id(a);if(!a||!(c=sn(c)))return a;var S=gn(a),D=gn(c),F=Vd(S,D),z=qu(S,D)+1;return Yr(S,F,z).join("")}function ok(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.slice(0,T2(a)+1);if(!a||!(c=sn(c)))return a;var S=gn(a),D=qu(S,gn(c))+1;return Yr(S,0,D).join("")}function ak(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.replace(_u,"");if(!a||!(c=sn(c)))return a;var S=gn(a),D=Vd(S,gn(c));return Yr(S,D).join("")}function sk(a,c){var g=O,S=q;if(r0(c)){var D="separator"in c?c.separator:D;g="length"in c?rt(c.length):g,S="omission"in c?sn(c.omission):S}a=Mt(a);var F=a.length;if(Ql(a)){var z=gn(a);F=z.length}if(g>=F)return a;var H=g-tl(S);if(H<1)return S;var J=z?Yr(z,0,H).join(""):a.slice(0,H);if(D===n)return J+S;if(z&&(H+=J.length-H),C7(D)){if(a.slice(H).search(D)){var he,me=J;for(D.global||(D=ua(D.source,Mt(Tu.exec(D))+"g")),D.lastIndex=0;he=D.exec(me);)var xe=he.index;J=J.slice(0,xe===n?H:xe)}}else if(a.indexOf(sn(D),H)!=H){var De=J.lastIndexOf(D);De>-1&&(J=J.slice(0,De))}return J+S}function uk(a){return a=Mt(a),a&&ud.test(a)?a.replace(Gi,Kd):a}var ck=hl(function(a,c,g){return a+(g?" ":"")+c.toUpperCase()}),P7=wc("toUpperCase");function tm(a,c,g){return a=Mt(a),c=g?n:c,c===n?U3(a)?X3(a):j3(a):a.match(c)||[]}var nm=nt(function(a,c){try{return Z0(a,n,c)}catch(g){return $7(g)?g:new qe(g)}}),dk=Pr(function(a,c){return A0(c,function(g){g=tr(g),br(a,g,we(a[g],a))}),a});function fk(a){var c=a==null?0:a.length,g=Ke();return a=c?Lt(a,function(S){if(typeof S[1]!="function")throw new kn(u);return[g(S[0]),S[1]]}):[],nt(function(S){for(var D=-1;++Dfe)return[];var g=W,S=M0(a,W);c=Ke(c),a-=W;for(var D=Gu(S,c);++g0||c<0)?new Qe(g):(a<0?g=g.takeRight(-a):a&&(g=g.drop(a)),c!==n&&(c=rt(c),g=c<0?g.dropRight(-c):g.take(c-a)),g)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(W)},xn(Qe.prototype,function(a,c){var g=/^(?:filter|find|map|reject)|While$/.test(c),S=/^(?:head|last)$/.test(c),D=B[S?"take"+(c=="last"?"Right":""):c],F=S||/^find/.test(c);D&&(B.prototype[c]=function(){var z=this.__wrapped__,H=S?[1]:arguments,J=z instanceof Qe,he=H[0],me=J||Je(z),xe=function(dt){var mt=D.apply(B,hi([dt],H));return S&&De?mt[0]:mt};me&&g&&typeof he=="function"&&he.length!=1&&(J=me=!1);var De=this.__chain__,Ne=!!this.__actions__.length,Ue=F&&!De,ot=J&&!Ne;if(!F&&me){z=ot?z:new Qe(this);var Ge=a.apply(z,H);return Ge.__actions__.push({func:rr,args:[xe],thisArg:n}),new B0(Ge,De)}return Ue&&ot?a.apply(this,H):(Ge=this.thru(xe),Ue?S?Ge.value()[0]:Ge.value():Ge)})}),A0(["pop","push","shift","sort","splice","unshift"],function(a){var c=zr[a],g=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);B.prototype[a]=function(){var D=arguments;if(S&&!this.__chain__){var F=this.value();return c.apply(Je(F)?F:[],D)}return this[g](function(z){return c.apply(Je(z)?z:[],D)})}}),xn(Qe.prototype,function(a,c){var g=B[c];if(g){var S=g.name+"";yt.call(lo,S)||(lo[S]=[]),lo[S].push({name:c,func:g})}}),lo[wo(n,A).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=O2,Qe.prototype.reverse=nc,Qe.prototype.value=so,B.prototype.at=ks,B.prototype.chain=xl,B.prototype.commit=_s,B.prototype.next=Hc,B.prototype.plant=v7,B.prototype.reverse=Uc,B.prototype.toJSON=B.prototype.valueOf=B.prototype.value=m7,B.prototype.first=B.prototype.head,Zr&&(B.prototype[Zr]=Wc),B},Jl=Q3();pr?((pr.exports=Jl)._=Jl,aa._=Jl):Ot._=Jl}).call(FH)}(c1,c1.exports)),c1.exports}var VH=IH();const NH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:r,updateOverride:l})=>{switch(typeof r){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(NO,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,u=s.findIndex(p=>VH.isEqual(p.value,t));u===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],u=0);const f=p=>h=>{h.preventDefault();const m=Object.fromEntries(new FormData(h.currentTarget));l(n,JSON.parse(m.value)),p()};return P.jsxs(Oi,{gap:"2",children:[P.jsx(yE,{"aria-label":"flag variations select",selectedKey:u,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(b.Fragment,{children:[u!==null&&s[u]._id==="OVERRIDE"?P.jsxs(I1,{children:[P.jsxs(fn,{children:[P.jsx(Ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(F1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(fn,{children:[P.jsx(Ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(Nv,{children:P.jsx(Fv,{children:s.map((p,h)=>{const m=p.name?p.name:JSON.stringify(p.value);return P.jsx(Iv,{id:h,textValue:m,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),m]})}):m},h)})})})]},".0")}),P.jsx(Ye,{width:"2rem",height:"2rem",children:P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(_3,{icon:"edit","aria-label":"edit variation value"}),P.jsx(F1,{children:"Edit the served variation value as JSON"})]}),P.jsx(vE,{children:P.jsx(hE,{children:P.jsx(fE,{children:({close:p})=>P.jsxs(EC,{onSubmit:f(p),children:[P.jsxs(zv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:h=>{try{return JSON.parse(h),null}catch(m){return m instanceof Error?`Unable to parse value as JSON: ${m.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(wu,{children:`${n} value`}),P.jsx($E,{style:{fontFamily:"monospace"}}),P.jsx(X0,{slot:"description",children:"Update the value as JSON"}),P.jsx(pE,{})]}),P.jsxs(uE,{children:[P.jsx(fn,{onPress:p,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var h5={exports:{}},zH=h5.exports,H8;function OH(){return H8||(H8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(zH,t=>{var n=(le,Y)=>{if(!le||!Y)return Pe;var ce=E(le);pe(Y)||(Y=$(Y));var Ce=ce.bitflags;return(Ce&Y._bitflags)!==Ce?Pe:_(ce,Y)},r=(le,Y,ce)=>{if(!le)return ce!=null&&ce.all?k(Y,ce):fe;var Ce=E(le),ke=Ce.bitflags,Se=Ce.containsSpace,ge=y((ce==null?void 0:ce.threshold)||0),Le=(ce==null?void 0:ce.limit)||$e,_e=0,je=0,Xe=Y.length;function wt(en){_ere.peek()._score&&re.replaceTop(en))}if(ce!=null&&ce.key)for(var Rt=ce.key,at=0;at-1e3&&O[pt]>se){var lt=(O[pt]+q[pt])/4;lt>O[pt]&&(O[pt]=lt)}q[pt]>O[pt]&&(O[pt]=q[pt])}}if(Se){for(let tt=0;tt-1e3&&Dt>se){var lt=(Dt+st._score)/4;lt>Dt&&(Dt=lt)}st._score>Dt&&(Dt=st._score)}}if(e0.obj=_t,e0._score=Dt,ce!=null&&ce.scoreFn){if(Dt=ce.scoreFn(e0),!Dt)continue;Dt=y(Dt),e0._score=Dt}Dt=0;--at)qt[at]=re.poll();return qt.total=_e+je,qt},l=(le,Y="",ce="")=>{for(var Ce=typeof Y=="function"?Y:void 0,ke=le.target,Se=ke.length,ge=le.indexes,Le="",_e=0,je=0,Xe=!1,wt=[],Rt=0;Rt{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=M(le);return h(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},u=()=>{V.clear(),K.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ce)=>Y-ce)}set indexes(Y){return this._indexes=Y}highlight(Y,ce){return l(this,Y,ce)}get score(){return m(this._score)}set score(Y){this._score=y(Y)}}class p extends Array{get score(){return m(this._score)}set score(Y){this._score=y(Y)}}var h=(le,Y)=>{const ce=new f;return ce.target=le,ce.obj=Y.obj??Pe,ce._score=Y._score??se,ce._indexes=Y._indexes??[],ce._targetLower=Y._targetLower??"",ce._targetLowerCodes=Y._targetLowerCodes??Pe,ce._nextBeginningIndexes=Y._nextBeginningIndexes??Pe,ce._bitflags=Y._bitflags??0,ce},m=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),y=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=M(le),ce=[];if(Y.containsSpace){var Ce=le.split(/\s+/);Ce=[...new Set(Ce)];for(var ke=0;ke{if(le.length>999)return s(le);var Y=V.get(le);return Y!==void 0||(Y=s(le),V.set(le,Y)),Y},E=le=>{if(le.length>999)return w(le);var Y=K.get(le);return Y!==void 0||(Y=w(le),K.set(le,Y)),Y},k=(le,Y)=>{var ce=[];ce.total=le.length;var Ce=(Y==null?void 0:Y.limit)||$e;if(Y!=null&&Y.key)for(var ke=0;ke=Ce)return ce}}else if(Y!=null&&Y.keys)for(var ke=0;ke=0;--je){var ge=Q(Se,Y.keys[je]);if(!ge){_e[je]=ue;continue}pe(ge)||(ge=$(ge)),ge._score=se,ge._indexes.len=0,_e[je]=ge}if(_e.obj=Se,_e._score=se,ce.push(_e),ce.length>=Ce)return ce}else for(var ke=0;ke=Ce))return ce}return ce},_=(le,Y,ce=!1,Ce=!1)=>{if(ce===!1&&le.containsSpace)return A(le,Y,Ce);for(var ke=le._lower,Se=le.lowerCodes,ge=Se[0],Le=Y._targetLowerCodes,_e=Se.length,je=Le.length,at=0,Xe=0,wt=0;;){var Rt=ge===Le[Xe];if(Rt){if(ne[wt++]=Xe,++at,at===_e)break;ge=Se[at]}if(++Xe,Xe>=je)return Pe}var at=0,_t=!1,it=0,st=Y._nextBeginningIndexes;st===Pe&&(st=Y._nextBeginningIndexes=I(Y.target)),Xe=ne[0]===0?0:st[ne[0]-1];var l0=0;if(Xe!==je)for(;;)if(Xe>=je){if(at<=0||(++l0,l0>200))break;--at;var $t=L[--it];Xe=st[$t]}else{var Rt=Se[at]===Le[Xe];if(Rt){if(L[it++]=Xe,++at,at===_e){_t=!0;break}++Xe}else Xe=st[Xe]}var ht=_e<=1?-1:Y._targetLower.indexOf(ke,ne[0]),Be=!!~ht,lt=Be?ht===0||Y._nextBeginningIndexes[ht-1]===ht:!1;if(Be&&!lt){for(var ze=0;ze{for(var pt=0,dr=0,T0=1;T0<_e;++T0)tt[T0]-tt[T0-1]!==1&&(pt-=tt[T0],++dr);var ai=tt[_e-1]-tt[0]-(_e-1);if(pt-=(12+ai)*dr,tt[0]!==0&&(pt-=tt[0]*tt[0]*.2),!_t)pt*=1e3;else{for(var En=1,T0=st[0];T024&&(pt*=(En-24)*10)}return pt-=(je-_e)/2,Be&&(pt/=1+_e*_e*1),lt&&(pt/=1+_e*_e*1),pt-=(je-_e)/2,pt};if(_t)if(lt){for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(ne)}else var qt=L,en=Dt(L);else{if(Be)for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(qt)}Y._score=en;for(var ze=0;ze<_e;++ze)Y._indexes[ze]=qt[ze];Y._indexes.len=_e;const tn=new f;return tn.target=Y.target,tn._score=Y._score,tn._indexes=Y._indexes,tn},A=(le,Y,ce)=>{for(var Ce=new Set,ke=0,Se=Pe,ge=0,Le=le.spaceSearches,_e=Le.length,je=0,Xe=()=>{for(let lt=je-1;lt>=0;lt--)Y._nextBeginningIndexes[ee[lt*2+0]]=ee[lt*2+1]},wt=!1,Be=0;Be<_e;++Be){q[Be]=se;var Rt=Le[Be];if(Se=_(Rt,Y),ce){if(Se===Pe)continue;wt=!0}else if(Se===Pe)return Xe(),Pe;var at=Be===_e-1;if(!at){var _t=Se._indexes,it=!0;for(let ze=0;ze<_t.len-1;ze++)if(_t[ze+1]-_t[ze]!==1){it=!1;break}if(it){var st=_t[_t.len-1]+1,l0=Y._nextBeginningIndexes[st-1];for(let ze=st-1;ze>=0&&l0===Y._nextBeginningIndexes[ze];ze--)Y._nextBeginningIndexes[ze]=st,ee[je*2+0]=ze,ee[je*2+1]=l0,je++}}ke+=Se._score/_e,q[Be]=Se._score/_e,Se._indexes[0]ke){if(ce)for(var Be=0;Be<_e;++Be)q[Be]=ht._score/_e;return ht}ce&&(Se=Y),Se._score=ke;var Be=0;for(let lt of Ce)Se._indexes[Be++]=lt;return Se._indexes.len=Be,Se},M=le=>{for(var Y=le.length,ce=le.toLowerCase(),Ce=[],ke=0,Se=!1,ge=0;ge=97&&Le<=122?Le-97:Le>=48&&Le<=57?26:Le<=127?30:31;ke|=1<<_e}return{lowerCodes:Ce,bitflags:ke,containsSpace:Se,_lower:ce}},R=le=>{for(var Y=le.length,ce=[],Ce=0,ke=!1,Se=!1,ge=0;ge=65&&Le<=90,je=_e||Le>=97&&Le<=122||Le>=48&&Le<=57,Xe=_e&&!ke||!Se||!je;ke=_e,Se=je,Xe&&(ce[Ce++]=ge)}return ce},I=le=>{for(var Y=le.length,ce=R(le),Ce=[],ke=ce[0],Se=0,ge=0;gege?Ce[ge]=ke:(ke=ce[++Se],Ce[ge]=ke===void 0?Y:ke);return Ce},V=new Map,K=new Map,ne=[],L=[],ee=[],O=[],q=[],ve=[],G=[],Q=(le,Y)=>{var ce=le[Y];if(ce!==void 0)return ce;if(typeof Y=="function")return Y(le);var Ce=Y;Array.isArray(Y)||(Ce=Y.split("."));for(var ke=Ce.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",$e=1/0,se=-$e,fe=[];fe.total=0;var Pe=null,ue=s(""),W=le=>{var Y=[],ce=0,Ce={},ke=Se=>{for(var ge=0,Le=Y[ge],_e=1;_e>1]=Y[ge],_e=1+(ge<<1)}for(var Xe=ge-1>>1;ge>0&&Le._score>1)Y[ge]=Y[Xe];Y[ge]=Le};return Ce.add=Se=>{var ge=ce;Y[ce++]=Se;for(var Le=ge-1>>1;ge>0&&Se._score>1)Y[ge]=Y[Le];Y[ge]=Se},Ce.poll=Se=>{if(ce!==0){var ge=Y[0];return Y[0]=Y[--ce],ke(),ge}},Ce.peek=Se=>{if(ce!==0)return Y[0]},Ce.replaceTop=Se=>{Y[0]=Se,ke()},Ce},re=W();return{single:n,go:r,prepare:s,cleanup:u}})}(h5)),h5.exports}var ZH=OH();const KH=V1(ZH);function jH({availableVariations:e,selectedProject:t,flags:n,overrides:r,setOverrides:l}){const[s,u]=b.useState(!1),[f,p]=b.useState(""),[h,m]=b.useState(0),y=20,w=b.useMemo(()=>r&&Object.keys(r).length>0,[r]);b.useEffect(()=>{!w&&s&&u(!1)},[w,s]);const $=b.useMemo(()=>n?Object.entries(n).filter(V=>{if(!f)return!0;const[K]=V,ne=KH.single(f.toLowerCase(),K);return ne&&ne.score>-5e3}).filter(V=>{const[K]=V,ne=K in r;return!(s&&!ne)}):[],[n,f,s,r]),E=b.useMemo(()=>{const I=h*y,V=I+y;return $.slice(I,V)},[$,h]),k=b.useCallback((I,V)=>{var ne;const K={...r,[I]:{value:V,version:((ne=r[I])==null?void 0:ne.version)||0}};l(K),fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"PUT",body:JSON.stringify(V)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(r),console.error("unable to update override",L)})},[r,t]),_=b.useCallback(async I=>{const V={...r};delete V[I],l(V);try{const K=await fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"DELETE"});if(!K.ok)throw new Error(`got ${K.status} ${K.statusText}. ${await K.text()}`)}catch(K){console.error("unable to remove override",K),l(r)}},[r,t]),A=b.useCallback(async()=>{l({});try{const I=await fetch(cr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!I.ok)throw new Error(`got ${I.status} ${I.statusText}. ${await I.text()}`)}catch(I){console.error("unable to remove all overrides",I),l(r)}},[r,t]);if(!n)return null;const M=Math.ceil($.length/y),R=I=>{switch(I){case"next":m(V=>Math.min(V+1,M-1));break;case"prev":m(V=>Math.max(V-1,0));break;case"first":m(0);break;case"last":m(M-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:RH.borderRadius.regular,children:[P.jsxs(wu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(Rv,{id:"only-show-overrides",isSelected:s,onChange:I=>{u(I)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(fn,{variant:"destructive",isDisabled:!w,onPress:async()=>{r&&(await A(),l({}),u(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs($3,{gap:"4",children:[P.jsx(Oi,{gap:"4",children:P.jsx(Sj,{"aria-label":"Search flags",children:P.jsxs(gK,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(Bv,{placeholder:"Search flags by key",onChange:I=>{p(I.target.value),m(0)},value:f,"aria-label":"Search flags input"}),P.jsx(_3,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:E.map(([I,{value:V}],K)=>{var O;const ne=(O=r[I])==null?void 0:O.value,L=I in r,ee=L?ne:V;return P.jsxs("li",{style:{backgroundColor:K%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Ye,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(J1,{asChild:!0,text:I,children:P.jsx("code",{className:L?"has-override":"",children:I})}),L&&P.jsx(fn,{"aria-label":"Remove override",onPress:()=>{_(I)},variant:"destructive",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Ye,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(NH,{availableVariations:e[I]?e[I]:[],currentValue:ee,flagValue:V,flagKey:I,updateOverride:k})})]},I)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(iN,{currentOffset:h*y,isReady:!0,onChange:I=>R(I),pageSize:y,resourceName:"flags",totalCount:$.length})})]})}const HH=async()=>{const e=await fetch(cr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function WH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[r,l]=b.useState([]),[s,u]=b.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),u(!1)};return b.useEffect(()=>{HH().then(f).catch(p=>{console.error(p),u(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):r.length>0?P.jsxs(pO,{children:[P.jsx(Oi,{gap:"1",children:P.jsxs(I1,{children:[P.jsx(fn,{children:e??"Select a project"}),P.jsx(F1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(Nv,{children:P.jsx(UK,{children:r.map(p=>P.jsx(qK,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const UH=async e=>{const t=await fetch(cr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},GH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[r,l]=b.useState(!1),s=async()=>{l(!0);try{const u=await UH(e);n(u.availableVariations),t(Vh(u.flagsState))}catch(u){Z8.warning("Sync failed"),console.error("Sync failed:",u)}finally{Z8.success("Sync successful"),l(!1)}};return e?P.jsxs(I1,{children:[P.jsx(fn,{onPress:s,isDisabled:r,style:{backgroundColor:r?"lightgray":void 0},children:r?P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(F1,{children:"Sync the selected project from the source environment"})]}):null};async function qH(e,t){const n=await fetch(cr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Pp,W8;function CE(){if(W8)return Pp;W8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Pp=e,Pp}var kp,U8;function YH(){if(U8)return kp;U8=1;var e=typeof Lo=="object"&&Lo&&Lo.Object===Object&&Lo;return kp=e,kp}var _p,G8;function SE(){if(G8)return _p;G8=1;var e=YH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return _p=n,_p}var Dp,q8;function XH(){if(q8)return Dp;q8=1;var e=SE(),t=function(){return e.Date.now()};return Dp=t,Dp}var Tp,Y8;function QH(){if(Y8)return Tp;Y8=1;var e=/\s/;function t(n){for(var r=n.length;r--&&e.test(n.charAt(r)););return r}return Tp=t,Tp}var Ap,X8;function JH(){if(X8)return Ap;X8=1;var e=QH(),t=/^\s+/;function n(r){return r&&r.slice(0,e(r)+1).replace(t,"")}return Ap=n,Ap}var Mp,Q8;function EE(){if(Q8)return Mp;Q8=1;var e=SE(),t=e.Symbol;return Mp=t,Mp}var Bp,J8;function eW(){if(J8)return Bp;J8=1;var e=EE(),t=Object.prototype,n=t.hasOwnProperty,r=t.toString,l=e?e.toStringTag:void 0;function s(u){var f=n.call(u,l),p=u[l];try{u[l]=void 0;var h=!0}catch{}var m=r.call(u);return h&&(f?u[l]=p:delete u[l]),m}return Bp=s,Bp}var Rp,eg;function tW(){if(eg)return Rp;eg=1;var e=Object.prototype,t=e.toString;function n(r){return t.call(r)}return Rp=n,Rp}var Lp,tg;function nW(){if(tg)return Lp;tg=1;var e=EE(),t=eW(),n=tW(),r="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function u(f){return f==null?f===void 0?l:r:s&&s in Object(f)?t(f):n(f)}return Lp=u,Lp}var Fp,ng;function rW(){if(ng)return Fp;ng=1;function e(t){return t!=null&&typeof t=="object"}return Fp=e,Fp}var Ip,rg;function iW(){if(rg)return Ip;rg=1;var e=nW(),t=rW(),n="[object Symbol]";function r(l){return typeof l=="symbol"||t(l)&&e(l)==n}return Ip=r,Ip}var Vp,ig;function lW(){if(ig)return Vp;ig=1;var e=JH(),t=CE(),n=iW(),r=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,u=/^0o[0-7]+$/i,f=parseInt;function p(h){if(typeof h=="number")return h;if(n(h))return r;if(t(h)){var m=typeof h.valueOf=="function"?h.valueOf():h;h=t(m)?m+"":m}if(typeof h!="string")return h===0?h:+h;h=e(h);var y=s.test(h);return y||u.test(h)?f(h.slice(2),y?2:8):l.test(h)?r:+h}return Vp=p,Vp}var Np,lg;function oW(){if(lg)return Np;lg=1;var e=CE(),t=XH(),n=lW(),r="Expected a function",l=Math.max,s=Math.min;function u(f,p,h){var m,y,w,$,E,k,_=0,A=!1,M=!1,R=!0;if(typeof f!="function")throw new TypeError(r);p=n(p)||0,e(h)&&(A=!!h.leading,M="maxWait"in h,w=M?l(n(h.maxWait)||0,p):w,R="trailing"in h?!!h.trailing:R);function I(G){var Q=m,pe=y;return m=y=void 0,_=G,$=f.apply(pe,Q),$}function V(G){return _=G,E=setTimeout(L,p),A?I(G):$}function K(G){var Q=G-k,pe=G-_,$e=p-Q;return M?s($e,w-pe):$e}function ne(G){var Q=G-k,pe=G-_;return k===void 0||Q>=p||Q<0||M&&pe>=w}function L(){var G=t();if(ne(G))return ee(G);E=setTimeout(L,K(G))}function ee(G){return E=void 0,R&&m?I(G):(m=y=void 0,$)}function O(){E!==void 0&&clearTimeout(E),_=0,m=k=y=E=void 0}function q(){return E===void 0?$:ee(t())}function ve(){var G=t(),Q=ne(G);if(m=arguments,y=this,k=G,Q){if(E===void 0)return V(k);if(M)return clearTimeout(E),E=setTimeout(L,p),I(k)}return E===void 0&&(E=setTimeout(L,p)),$}return ve.cancel=O,ve.flush=q,ve}return Np=u,Np}var aW=oW();const sW=V1(aW);function uW({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:r}){const[l,s]=b.useState(null),[u,f]=b.useState(""),[p,h]=b.useState(!1),m=b.useCallback(sW(y=>{h(!0),qH(e,y).then(w=>{if(s(w),!n){const $=w.find(E=>E.key===t);$?r($):w.length>0&&r({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{h(!1)})},300),[e,t,n,r]);return b.useEffect(()=>{m(u)},[m,u]),P.jsxs($3,{gap:"3",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(wu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(Bv,{id:"environmentSearch",value:u,onChange:y=>f(y.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Ye,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(c2,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Ye,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Fv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:y=>{const w=Array.from(y)[0],$=l==null?void 0:l.find(E=>E.key===w);$&&r($)},children:l==null?void 0:l.map(y=>P.jsx(Iv,{id:y.key,children:y.name},y.key))})})]})}function cW({context:e,setContext:t}){return P.jsxs($3,{gap:"3",children:[P.jsx(wu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(zv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(r){return r instanceof Error?`Unable to parse value as JSON: ${r.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx($E,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(X0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(pE,{})]})]})}function dW({isSubmitting:e,selectedEnvironment:t}){return P.jsx(fn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(Oi,{gap:"2",children:P.jsxs(Ye,{display:"flex",alignItems:"center",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function fW({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:r,context:l,updateProjectSettings:s}){const[u,f]=b.useState(t),[p,h]=b.useState(l),[m,y]=b.useState(!1);b.useEffect(()=>{f(t),h(l)},[t,l]);const w=async E=>{y(!0);try{E(),await s(u,p),n(u)}catch(k){console.error("Error submitting project settings:",k)}finally{y(!1)}},$=()=>{f(t),h(l)};return P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(dW,{isSubmitting:m,selectedEnvironment:r}),P.jsx(F1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(vE,{isDismissable:!1,children:P.jsx(hE,{children:P.jsx(fE,{children:({close:E})=>P.jsxs(EC,{onSubmit:k=>{k.preventDefault(),w(E)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(wu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs($3,{gap:"3",children:[P.jsx(uW,{projectKey:e,sourceEnvironmentKey:r,selectedEnvironment:u,setSelectedEnvironment:f}),P.jsx(Ye,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(cW,{context:p,setContext:h})]}),P.jsxs(uE,{style:{justifyContent:"flex-end"},children:[P.jsx(fn,{onPress:()=>{$(),E()},variant:"destructive",isDisabled:m,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",isDisabled:m,children:m?P.jsxs(Oi,{gap:"2",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function pW(){const[e,t]=b.useState(null),[n,r]=b.useState(null),[l,s]=b.useState(null),[u,f]=b.useState({}),[p,h]=b.useState({}),[m,y]=b.useState(null),[w,$]=b.useState(!1),[E,k]=b.useState("{}"),_=b.useCallback(async()=>{if(!e)return;const M=await fetch(cr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),R=await M.json();if(!M.ok)throw new Error(`Got ${M.status}, ${M.statusText} from flag fetch`);const{flagsState:I,overrides:V,sourceEnvironmentKey:K,availableVariations:ne,context:L}=R;y(Vh(I)),f(V),s(K),h(ne),k(JSON.stringify(L||"{}",null,2));const O=(await hW(e)).find(q=>q.key===K);O&&r(O)},[e]);b.useEffect(()=>{e&&_().catch(console.error.bind(console,"error when fetching flags"))},[_,e]),b.useEffect(()=>{Promise.all([_()]).catch(console.error.bind(console,"error when fetching flags"))},[_]);const A=b.useCallback(async(M,R)=>{if(e)try{const I=await fetch(cr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:M==null?void 0:M.key,context:JSON.parse(R)})});if(!I.ok)throw new Error(`Got ${I.status}, ${I.statusText} from project settings update`);const V=await I.json(),{flagsState:K,sourceEnvironmentKey:ne,context:L}=V;y(Vh(K)),s(ne),k(JSON.stringify(L||{},null,2)),r(M),await _()}catch(I){console.error("Error updating project settings:",I)}},[e,_]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Ye,{width:"100%",minWidth:"600px",children:P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Ye,{marginBottom:"2rem",width:"100%",children:P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(WH,{selectedProject:e,setSelectedProject:t,setShowBanner:$}),e&&P.jsx(fW,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:r,sourceEnvironmentKey:l,context:E,updateProjectSettings:A}),P.jsx(GH,{selectedProject:e,setFlags:y,setAvailableVariations:h})]}),e&&P.jsx(Ye,{width:"100%",children:P.jsx(jH,{availableVariations:p,selectedProject:e,flags:m,overrides:u,setOverrides:M=>{f(M)}})})]})})})}async function hW(e){const t=await fetch(cr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const sd=(e,t)=>P.jsx(J1,{kind:"basic",text:t,children:e}),vW=(e,t)=>{const n=[];for(const[r,l]of Object.entries(t.features||{})){const s=e.id+r,u=l.counters||[];for(const f of u)n.push(P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"summary"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",r]}),P.jsxs(Bt,{children:["evaluated as ",String(f.value)]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},s))}return n},mW=(e,t)=>{let n="unknown",r="help";if(e.data.context){const l=t.context;if(!l)return console.error("Index event context is undefined"),[];switch(l.kind){case"user":n="user context",r="person";break;case"application":n=l.key||"unknown application",r="cloud";break;case"multi":l.user?(n=l.user.email||l.user.key||"unknown user",r="person"):l.account?(n=l.account.name||l.account.key||"unknown account",r="group"):l.application?(n=l.application.key||"unknown application",r="cloud"):(n="multi context",r="chart-dashboard");break}}else t.user?(n=(t.user.key||"unknown")+" user",r="person-outline"):n="unknown";return[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"index"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:r,size:"small"})," ",n]}),P.jsxs(Bt,{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t.data))})]},e.id)]},gW=(e,t)=>{const n=`evaluated as ${String(t.value)}`;return[P.jsxs($u,{className:"feature-row",children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"feature"}),P.jsx(Bt,{children:t.key||"unknown"}),P.jsx(Bt,{children:n}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)]},yW=(e,t)=>[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:e.data.kind}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs(Bt,{children:["value is ",t.metricValue]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)],bW=e=>{switch(e.data.kind){case"summary":return vW(e,e.data);case"index":return mW(e,e.data);case"feature":return gW(e,e.data);case"custom":return yW(e,e.data);default:return[P.jsxs($u,{children:[P.jsx(Bt,{children:(()=>{try{const t=new Date(e.timestamp);return isNaN(t.getTime())?e.timestamp:t.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx(Bt,{children:e.data.kind}),P.jsx(Bt,{}),P.jsx(Bt,{}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(e.data))})]},e.id)]}},PE=({events:e,onToggleStreaming:t})=>{const[n,r]=b.useState(!0),l=s=>{r(s),t==null||t(s)};return P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",children:[P.jsx("h3",{children:"Events Stream"}),P.jsx(Ye,{paddingBottom:"1rem",children:t&&P.jsx(fn,{variant:"primary",onPress:async()=>l(!n),children:n?"Streaming ON":"Streaming OFF"})}),P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Time"}),P.jsx(Dl,{children:"Type"}),P.jsx(Dl,{children:"Target"}),P.jsx(Dl,{children:"Event"}),P.jsx(Dl,{children:"Link"})]}),P.jsx(wE,{children:e.map(s=>bW(s))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."})]})},xW=({limit:e=1e3})=>{const[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0);b.useEffect(()=>{const p=new EventSource(cr("/events/tee"));return p.addEventListener("put",h=>{if(!h.data||h.data.trim()==="")return;let m;try{m=JSON.parse(h.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const y={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:m};s?n(w=>[y,...w].slice(0,e)):l(w=>[y,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{u(p),p&&r.length>0&&(n(h=>[...r,...h].slice(0,e)),l([]))};return P.jsx(PE,{events:t,onToggleStreaming:f})},wW=()=>{const[e,t]=b.useState([]),[n,r]=b.useState(!0),[l,s]=b.useState(null),[u,f]=b.useState(0),[p,h]=b.useState(null),m=async()=>{try{r(!0),s(null);const $=await fetch(cr("/dev/debug-sessions?limit=100"));if(!$.ok)throw new Error(`Failed to fetch debug sessions: ${$.status} ${$.statusText}`);const E=await $.json();t(E.sessions),f(E.total_count)}catch($){s($ instanceof Error?$.message:"An unknown error occurred")}finally{r(!1)}};b.useEffect(()=>{m()},[]);const y=$=>{try{return new Date($).toLocaleString()}catch{return $}},w=async $=>{if(confirm(`Are you sure you want to delete debug session "${$}" and all its events? This action cannot be undone.`))try{h($),s(null);const E=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent($)}`),{method:"DELETE"});if(!E.ok)throw E.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${E.status} ${E.statusText}`);await m()}catch(E){s(E instanceof Error?E.message:"An unknown error occurred while deleting the session")}finally{h(null)}};return n?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",l]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:m,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:[u," total session",u!==1?"s":""]})]}),e.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No debug sessions found"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",borderRadius:"4px",borderWidth:"1px",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Debug Session Started"}),P.jsx(Dl,{children:"Event Count"}),P.jsx(Dl,{children:"Actions"})]}),P.jsx(wE,{children:e.map($=>P.jsxs($u,{children:[P.jsx(Bt,{children:P.jsx(PK,{href:`/ui/debug-sessions/${$.key}/events`,children:y($.written_at)})}),P.jsx(Bt,{children:P.jsx(X0,{children:$.event_count.toLocaleString()})}),P.jsx(Bt,{children:P.jsx(fn,{isDisabled:p===$.key,variant:"destructive",onPress:()=>w($.key),children:P.jsx(Pt,{name:"delete",size:"small"})})})]},$.key))})]})})]})};function $W(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const CW=()=>{const{debugSessionKey:e}=R_(),[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0),[f,p]=b.useState(null),h=async()=>{var y;if(!e){p("Debug session key is required"),u(!1);return}try{u(!0),p(null);const w=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const E=((y=(await w.json()).events)==null?void 0:y.map($W))||[];n(E),l(E)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{u(!1)}};b.useEffect(()=>{h()},[e]);const m=y=>{l(t.filter(w=>{let $="";const E=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(_=>E(_)):typeof k=="object"?Object.values(k).flatMap(_=>E(_)):[];return $=E(w).join(" "),$.toLowerCase().includes(y.toLowerCase())}))};return s?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading events..."})})]}):f?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",f]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:h,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Ye,{children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(zv,{onChange:m,name:"debug-session-search",children:P.jsxs(b.Fragment,{children:[P.jsx(wu,{children:"Search"}),P.jsx(Bv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No events found for this debug session"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(PE,{events:r})]})};function SW(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Ye,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Ye,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(BH,{})}),P.jsx(Ye,{padding:"1rem",width:"100%",children:P.jsxs(q_,{children:[P.jsx(Ya,{path:"/",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui/flags",element:P.jsx(pW,{})}),P.jsx(Ya,{path:"/ui/events",element:P.jsx(xW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions",element:P.jsx(wW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(CW,{})})]})})]})})}const EW="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function PW({children:e}){return b.useEffect(()=>{fetch(EW).then(async t=>t.text()).then(t=>{const r=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;r.id="lp-icons-sprite",r.style.display="none",document.body.appendChild(r)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(Eg.Provider,{value:{path:""},children:e})}const kW=()=>(b.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(Z.StrictMode,{children:P.jsx(yD,{children:P.jsxs(PW,{children:[P.jsx(SW,{}),P.jsx(DH,{})]})})}));i_.createRoot(document.getElementById("root")).render(P.jsx(kW,{})); +}`;var ot=nm(function(){return gt(F,Ne+"return "+xe).apply(n,z)});if(ot.source=xe,$7(ot))throw ot;return ot}function rk(a){return Mt(a).toLowerCase()}function ik(a){return Mt(a).toUpperCase()}function lk(a,c,g){if(a=Mt(a),a&&(g||c===n))return Id(a);if(!a||!(c=sn(c)))return a;var S=gn(a),D=gn(c),F=Vd(S,D),z=qu(S,D)+1;return Yr(S,F,z).join("")}function ok(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.slice(0,T2(a)+1);if(!a||!(c=sn(c)))return a;var S=gn(a),D=qu(S,gn(c))+1;return Yr(S,0,D).join("")}function ak(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.replace(_u,"");if(!a||!(c=sn(c)))return a;var S=gn(a),D=Vd(S,gn(c));return Yr(S,D).join("")}function sk(a,c){var g=O,S=q;if(r0(c)){var D="separator"in c?c.separator:D;g="length"in c?rt(c.length):g,S="omission"in c?sn(c.omission):S}a=Mt(a);var F=a.length;if(Ql(a)){var z=gn(a);F=z.length}if(g>=F)return a;var H=g-tl(S);if(H<1)return S;var J=z?Yr(z,0,H).join(""):a.slice(0,H);if(D===n)return J+S;if(z&&(H+=J.length-H),C7(D)){if(a.slice(H).search(D)){var he,me=J;for(D.global||(D=ua(D.source,Mt(Tu.exec(D))+"g")),D.lastIndex=0;he=D.exec(me);)var xe=he.index;J=J.slice(0,xe===n?H:xe)}}else if(a.indexOf(sn(D),H)!=H){var De=J.lastIndexOf(D);De>-1&&(J=J.slice(0,De))}return J+S}function uk(a){return a=Mt(a),a&&ud.test(a)?a.replace(Gi,Kd):a}var ck=hl(function(a,c,g){return a+(g?" ":"")+c.toUpperCase()}),P7=wc("toUpperCase");function tm(a,c,g){return a=Mt(a),c=g?n:c,c===n?U3(a)?X3(a):j3(a):a.match(c)||[]}var nm=nt(function(a,c){try{return Z0(a,n,c)}catch(g){return $7(g)?g:new qe(g)}}),dk=Pr(function(a,c){return A0(c,function(g){g=tr(g),br(a,g,we(a[g],a))}),a});function fk(a){var c=a==null?0:a.length,g=Ke();return a=c?Lt(a,function(S){if(typeof S[1]!="function")throw new kn(u);return[g(S[0]),S[1]]}):[],nt(function(S){for(var D=-1;++Dfe)return[];var g=W,S=M0(a,W);c=Ke(c),a-=W;for(var D=Gu(S,c);++g0||c<0)?new Qe(g):(a<0?g=g.takeRight(-a):a&&(g=g.drop(a)),c!==n&&(c=rt(c),g=c<0?g.dropRight(-c):g.take(c-a)),g)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(W)},xn(Qe.prototype,function(a,c){var g=/^(?:filter|find|map|reject)|While$/.test(c),S=/^(?:head|last)$/.test(c),D=B[S?"take"+(c=="last"?"Right":""):c],F=S||/^find/.test(c);D&&(B.prototype[c]=function(){var z=this.__wrapped__,H=S?[1]:arguments,J=z instanceof Qe,he=H[0],me=J||Je(z),xe=function(dt){var mt=D.apply(B,hi([dt],H));return S&&De?mt[0]:mt};me&&g&&typeof he=="function"&&he.length!=1&&(J=me=!1);var De=this.__chain__,Ne=!!this.__actions__.length,Ue=F&&!De,ot=J&&!Ne;if(!F&&me){z=ot?z:new Qe(this);var Ge=a.apply(z,H);return Ge.__actions__.push({func:rr,args:[xe],thisArg:n}),new B0(Ge,De)}return Ue&&ot?a.apply(this,H):(Ge=this.thru(xe),Ue?S?Ge.value()[0]:Ge.value():Ge)})}),A0(["pop","push","shift","sort","splice","unshift"],function(a){var c=zr[a],g=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);B.prototype[a]=function(){var D=arguments;if(S&&!this.__chain__){var F=this.value();return c.apply(Je(F)?F:[],D)}return this[g](function(z){return c.apply(Je(z)?z:[],D)})}}),xn(Qe.prototype,function(a,c){var g=B[c];if(g){var S=g.name+"";yt.call(lo,S)||(lo[S]=[]),lo[S].push({name:c,func:g})}}),lo[wo(n,A).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=O2,Qe.prototype.reverse=nc,Qe.prototype.value=so,B.prototype.at=ks,B.prototype.chain=xl,B.prototype.commit=_s,B.prototype.next=Hc,B.prototype.plant=v7,B.prototype.reverse=Uc,B.prototype.toJSON=B.prototype.valueOf=B.prototype.value=m7,B.prototype.first=B.prototype.head,Zr&&(B.prototype[Zr]=Wc),B},Jl=Q3();pr?((pr.exports=Jl)._=Jl,aa._=Jl):Ot._=Jl}).call(FH)}(c1,c1.exports)),c1.exports}var VH=IH();const NH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:r,updateOverride:l})=>{switch(typeof r){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(NO,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,u=s.findIndex(p=>VH.isEqual(p.value,t));u===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],u=0);const f=p=>h=>{h.preventDefault();const m=Object.fromEntries(new FormData(h.currentTarget));l(n,JSON.parse(m.value)),p()};return P.jsxs(Oi,{gap:"2",children:[P.jsx(yE,{"aria-label":"flag variations select",selectedKey:u,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(b.Fragment,{children:[u!==null&&s[u]._id==="OVERRIDE"?P.jsxs(I1,{children:[P.jsxs(fn,{children:[P.jsx(Ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(F1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(fn,{children:[P.jsx(Ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(Nv,{children:P.jsx(Fv,{children:s.map((p,h)=>{const m=p.name?p.name:JSON.stringify(p.value);return P.jsx(Iv,{id:h,textValue:m,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),m]})}):m},h)})})})]},".0")}),P.jsx(Ye,{width:"2rem",height:"2rem",children:P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(_3,{icon:"edit","aria-label":"edit variation value"}),P.jsx(F1,{children:"Edit the served variation value as JSON"})]}),P.jsx(vE,{children:P.jsx(hE,{children:P.jsx(fE,{children:({close:p})=>P.jsxs(EC,{onSubmit:f(p),children:[P.jsxs(zv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:h=>{try{return JSON.parse(h),null}catch(m){return m instanceof Error?`Unable to parse value as JSON: ${m.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(wu,{children:`${n} value`}),P.jsx($E,{style:{fontFamily:"monospace"}}),P.jsx(X0,{slot:"description",children:"Update the value as JSON"}),P.jsx(pE,{})]}),P.jsxs(uE,{children:[P.jsx(fn,{onPress:p,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var h5={exports:{}},zH=h5.exports,H8;function OH(){return H8||(H8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(zH,t=>{var n=(le,Y)=>{if(!le||!Y)return Pe;var ce=E(le);pe(Y)||(Y=$(Y));var Ce=ce.bitflags;return(Ce&Y._bitflags)!==Ce?Pe:_(ce,Y)},r=(le,Y,ce)=>{if(!le)return ce!=null&&ce.all?k(Y,ce):fe;var Ce=E(le),ke=Ce.bitflags,Se=Ce.containsSpace,ge=y((ce==null?void 0:ce.threshold)||0),Le=(ce==null?void 0:ce.limit)||$e,_e=0,je=0,Xe=Y.length;function wt(en){_ere.peek()._score&&re.replaceTop(en))}if(ce!=null&&ce.key)for(var Rt=ce.key,at=0;at-1e3&&O[pt]>se){var lt=(O[pt]+q[pt])/4;lt>O[pt]&&(O[pt]=lt)}q[pt]>O[pt]&&(O[pt]=q[pt])}}if(Se){for(let tt=0;tt-1e3&&Dt>se){var lt=(Dt+st._score)/4;lt>Dt&&(Dt=lt)}st._score>Dt&&(Dt=st._score)}}if(e0.obj=_t,e0._score=Dt,ce!=null&&ce.scoreFn){if(Dt=ce.scoreFn(e0),!Dt)continue;Dt=y(Dt),e0._score=Dt}Dt=0;--at)qt[at]=re.poll();return qt.total=_e+je,qt},l=(le,Y="",ce="")=>{for(var Ce=typeof Y=="function"?Y:void 0,ke=le.target,Se=ke.length,ge=le.indexes,Le="",_e=0,je=0,Xe=!1,wt=[],Rt=0;Rt{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=M(le);return h(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},u=()=>{V.clear(),K.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ce)=>Y-ce)}set indexes(Y){return this._indexes=Y}highlight(Y,ce){return l(this,Y,ce)}get score(){return m(this._score)}set score(Y){this._score=y(Y)}}class p extends Array{get score(){return m(this._score)}set score(Y){this._score=y(Y)}}var h=(le,Y)=>{const ce=new f;return ce.target=le,ce.obj=Y.obj??Pe,ce._score=Y._score??se,ce._indexes=Y._indexes??[],ce._targetLower=Y._targetLower??"",ce._targetLowerCodes=Y._targetLowerCodes??Pe,ce._nextBeginningIndexes=Y._nextBeginningIndexes??Pe,ce._bitflags=Y._bitflags??0,ce},m=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),y=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=M(le),ce=[];if(Y.containsSpace){var Ce=le.split(/\s+/);Ce=[...new Set(Ce)];for(var ke=0;ke{if(le.length>999)return s(le);var Y=V.get(le);return Y!==void 0||(Y=s(le),V.set(le,Y)),Y},E=le=>{if(le.length>999)return w(le);var Y=K.get(le);return Y!==void 0||(Y=w(le),K.set(le,Y)),Y},k=(le,Y)=>{var ce=[];ce.total=le.length;var Ce=(Y==null?void 0:Y.limit)||$e;if(Y!=null&&Y.key)for(var ke=0;ke=Ce)return ce}}else if(Y!=null&&Y.keys)for(var ke=0;ke=0;--je){var ge=Q(Se,Y.keys[je]);if(!ge){_e[je]=ue;continue}pe(ge)||(ge=$(ge)),ge._score=se,ge._indexes.len=0,_e[je]=ge}if(_e.obj=Se,_e._score=se,ce.push(_e),ce.length>=Ce)return ce}else for(var ke=0;ke=Ce))return ce}return ce},_=(le,Y,ce=!1,Ce=!1)=>{if(ce===!1&&le.containsSpace)return A(le,Y,Ce);for(var ke=le._lower,Se=le.lowerCodes,ge=Se[0],Le=Y._targetLowerCodes,_e=Se.length,je=Le.length,at=0,Xe=0,wt=0;;){var Rt=ge===Le[Xe];if(Rt){if(ne[wt++]=Xe,++at,at===_e)break;ge=Se[at]}if(++Xe,Xe>=je)return Pe}var at=0,_t=!1,it=0,st=Y._nextBeginningIndexes;st===Pe&&(st=Y._nextBeginningIndexes=I(Y.target)),Xe=ne[0]===0?0:st[ne[0]-1];var l0=0;if(Xe!==je)for(;;)if(Xe>=je){if(at<=0||(++l0,l0>200))break;--at;var $t=L[--it];Xe=st[$t]}else{var Rt=Se[at]===Le[Xe];if(Rt){if(L[it++]=Xe,++at,at===_e){_t=!0;break}++Xe}else Xe=st[Xe]}var ht=_e<=1?-1:Y._targetLower.indexOf(ke,ne[0]),Be=!!~ht,lt=Be?ht===0||Y._nextBeginningIndexes[ht-1]===ht:!1;if(Be&&!lt){for(var ze=0;ze{for(var pt=0,dr=0,T0=1;T0<_e;++T0)tt[T0]-tt[T0-1]!==1&&(pt-=tt[T0],++dr);var ai=tt[_e-1]-tt[0]-(_e-1);if(pt-=(12+ai)*dr,tt[0]!==0&&(pt-=tt[0]*tt[0]*.2),!_t)pt*=1e3;else{for(var En=1,T0=st[0];T024&&(pt*=(En-24)*10)}return pt-=(je-_e)/2,Be&&(pt/=1+_e*_e*1),lt&&(pt/=1+_e*_e*1),pt-=(je-_e)/2,pt};if(_t)if(lt){for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(ne)}else var qt=L,en=Dt(L);else{if(Be)for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(qt)}Y._score=en;for(var ze=0;ze<_e;++ze)Y._indexes[ze]=qt[ze];Y._indexes.len=_e;const tn=new f;return tn.target=Y.target,tn._score=Y._score,tn._indexes=Y._indexes,tn},A=(le,Y,ce)=>{for(var Ce=new Set,ke=0,Se=Pe,ge=0,Le=le.spaceSearches,_e=Le.length,je=0,Xe=()=>{for(let lt=je-1;lt>=0;lt--)Y._nextBeginningIndexes[ee[lt*2+0]]=ee[lt*2+1]},wt=!1,Be=0;Be<_e;++Be){q[Be]=se;var Rt=Le[Be];if(Se=_(Rt,Y),ce){if(Se===Pe)continue;wt=!0}else if(Se===Pe)return Xe(),Pe;var at=Be===_e-1;if(!at){var _t=Se._indexes,it=!0;for(let ze=0;ze<_t.len-1;ze++)if(_t[ze+1]-_t[ze]!==1){it=!1;break}if(it){var st=_t[_t.len-1]+1,l0=Y._nextBeginningIndexes[st-1];for(let ze=st-1;ze>=0&&l0===Y._nextBeginningIndexes[ze];ze--)Y._nextBeginningIndexes[ze]=st,ee[je*2+0]=ze,ee[je*2+1]=l0,je++}}ke+=Se._score/_e,q[Be]=Se._score/_e,Se._indexes[0]ke){if(ce)for(var Be=0;Be<_e;++Be)q[Be]=ht._score/_e;return ht}ce&&(Se=Y),Se._score=ke;var Be=0;for(let lt of Ce)Se._indexes[Be++]=lt;return Se._indexes.len=Be,Se},M=le=>{for(var Y=le.length,ce=le.toLowerCase(),Ce=[],ke=0,Se=!1,ge=0;ge=97&&Le<=122?Le-97:Le>=48&&Le<=57?26:Le<=127?30:31;ke|=1<<_e}return{lowerCodes:Ce,bitflags:ke,containsSpace:Se,_lower:ce}},R=le=>{for(var Y=le.length,ce=[],Ce=0,ke=!1,Se=!1,ge=0;ge=65&&Le<=90,je=_e||Le>=97&&Le<=122||Le>=48&&Le<=57,Xe=_e&&!ke||!Se||!je;ke=_e,Se=je,Xe&&(ce[Ce++]=ge)}return ce},I=le=>{for(var Y=le.length,ce=R(le),Ce=[],ke=ce[0],Se=0,ge=0;gege?Ce[ge]=ke:(ke=ce[++Se],Ce[ge]=ke===void 0?Y:ke);return Ce},V=new Map,K=new Map,ne=[],L=[],ee=[],O=[],q=[],ve=[],G=[],Q=(le,Y)=>{var ce=le[Y];if(ce!==void 0)return ce;if(typeof Y=="function")return Y(le);var Ce=Y;Array.isArray(Y)||(Ce=Y.split("."));for(var ke=Ce.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",$e=1/0,se=-$e,fe=[];fe.total=0;var Pe=null,ue=s(""),W=le=>{var Y=[],ce=0,Ce={},ke=Se=>{for(var ge=0,Le=Y[ge],_e=1;_e>1]=Y[ge],_e=1+(ge<<1)}for(var Xe=ge-1>>1;ge>0&&Le._score>1)Y[ge]=Y[Xe];Y[ge]=Le};return Ce.add=Se=>{var ge=ce;Y[ce++]=Se;for(var Le=ge-1>>1;ge>0&&Se._score>1)Y[ge]=Y[Le];Y[ge]=Se},Ce.poll=Se=>{if(ce!==0){var ge=Y[0];return Y[0]=Y[--ce],ke(),ge}},Ce.peek=Se=>{if(ce!==0)return Y[0]},Ce.replaceTop=Se=>{Y[0]=Se,ke()},Ce},re=W();return{single:n,go:r,prepare:s,cleanup:u}})}(h5)),h5.exports}var ZH=OH();const KH=V1(ZH);function jH({availableVariations:e,selectedProject:t,flags:n,overrides:r,setOverrides:l}){const[s,u]=b.useState(!1),[f,p]=b.useState(""),[h,m]=b.useState(0),y=20,w=b.useMemo(()=>r&&Object.keys(r).length>0,[r]);b.useEffect(()=>{!w&&s&&u(!1)},[w,s]);const $=b.useMemo(()=>n?Object.entries(n).filter(V=>{if(!f)return!0;const[K]=V,ne=KH.single(f.toLowerCase(),K);return ne&&ne.score>-5e3}).filter(V=>{const[K]=V,ne=K in r;return!(s&&!ne)}):[],[n,f,s,r]),E=b.useMemo(()=>{const I=h*y,V=I+y;return $.slice(I,V)},[$,h]),k=b.useCallback((I,V)=>{var ne;const K={...r,[I]:{value:V,version:((ne=r[I])==null?void 0:ne.version)||0}};l(K),fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"PUT",body:JSON.stringify(V)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(r),console.error("unable to update override",L)})},[r,t]),_=b.useCallback(async I=>{const V={...r};delete V[I],l(V);try{const K=await fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"DELETE"});if(!K.ok)throw new Error(`got ${K.status} ${K.statusText}. ${await K.text()}`)}catch(K){console.error("unable to remove override",K),l(r)}},[r,t]),A=b.useCallback(async()=>{l({});try{const I=await fetch(cr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!I.ok)throw new Error(`got ${I.status} ${I.statusText}. ${await I.text()}`)}catch(I){console.error("unable to remove all overrides",I),l(r)}},[r,t]);if(!n)return null;const M=Math.ceil($.length/y),R=I=>{switch(I){case"next":m(V=>Math.min(V+1,M-1));break;case"prev":m(V=>Math.max(V-1,0));break;case"first":m(0);break;case"last":m(M-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:RH.borderRadius.regular,children:[P.jsxs(wu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(Rv,{id:"only-show-overrides",isSelected:s,onChange:I=>{u(I)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(fn,{variant:"destructive",isDisabled:!w,onPress:async()=>{r&&(await A(),l({}),u(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs($3,{gap:"4",children:[P.jsx(Oi,{gap:"4",children:P.jsx(Sj,{"aria-label":"Search flags",children:P.jsxs(gK,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(Bv,{placeholder:"Search flags by key",onChange:I=>{p(I.target.value),m(0)},value:f,"aria-label":"Search flags input"}),P.jsx(_3,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:E.map(([I,{value:V}],K)=>{var O;const ne=(O=r[I])==null?void 0:O.value,L=I in r,ee=L?ne:V;return P.jsxs("li",{style:{backgroundColor:K%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Ye,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(J1,{asChild:!0,text:I,children:P.jsx("code",{className:L?"has-override":"",children:I})}),L&&P.jsx(fn,{"aria-label":"Remove override",onPress:()=>{_(I)},variant:"destructive",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Ye,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(NH,{availableVariations:e[I]?e[I]:[],currentValue:ee,flagValue:V,flagKey:I,updateOverride:k})})]},I)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(iN,{currentOffset:h*y,isReady:!0,onChange:I=>R(I),pageSize:y,resourceName:"flags",totalCount:$.length})})]})}const HH=async()=>{const e=await fetch(cr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function WH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[r,l]=b.useState([]),[s,u]=b.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),u(!1)};return b.useEffect(()=>{HH().then(f).catch(p=>{console.error(p),u(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):r.length>0?P.jsxs(pO,{children:[P.jsx(Oi,{gap:"1",children:P.jsxs(I1,{children:[P.jsx(fn,{children:e??"Select a project"}),P.jsx(F1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(Nv,{children:P.jsx(UK,{children:r.map(p=>P.jsx(qK,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const UH=async e=>{const t=await fetch(cr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},GH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[r,l]=b.useState(!1),s=async()=>{l(!0);try{const u=await UH(e);n(u.availableVariations),t(Vh(u.flagsState))}catch(u){Z8.warning("Sync failed"),console.error("Sync failed:",u)}finally{Z8.success("Sync successful"),l(!1)}};return e?P.jsxs(I1,{children:[P.jsx(fn,{onPress:s,isDisabled:r,style:{backgroundColor:r?"lightgray":void 0},children:r?P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(F1,{children:"Sync the selected project from the source environment"})]}):null};async function qH(e,t){const n=await fetch(cr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Pp,W8;function CE(){if(W8)return Pp;W8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Pp=e,Pp}var kp,U8;function YH(){if(U8)return kp;U8=1;var e=typeof Lo=="object"&&Lo&&Lo.Object===Object&&Lo;return kp=e,kp}var _p,G8;function SE(){if(G8)return _p;G8=1;var e=YH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return _p=n,_p}var Dp,q8;function XH(){if(q8)return Dp;q8=1;var e=SE(),t=function(){return e.Date.now()};return Dp=t,Dp}var Tp,Y8;function QH(){if(Y8)return Tp;Y8=1;var e=/\s/;function t(n){for(var r=n.length;r--&&e.test(n.charAt(r)););return r}return Tp=t,Tp}var Ap,X8;function JH(){if(X8)return Ap;X8=1;var e=QH(),t=/^\s+/;function n(r){return r&&r.slice(0,e(r)+1).replace(t,"")}return Ap=n,Ap}var Mp,Q8;function EE(){if(Q8)return Mp;Q8=1;var e=SE(),t=e.Symbol;return Mp=t,Mp}var Bp,J8;function eW(){if(J8)return Bp;J8=1;var e=EE(),t=Object.prototype,n=t.hasOwnProperty,r=t.toString,l=e?e.toStringTag:void 0;function s(u){var f=n.call(u,l),p=u[l];try{u[l]=void 0;var h=!0}catch{}var m=r.call(u);return h&&(f?u[l]=p:delete u[l]),m}return Bp=s,Bp}var Rp,eg;function tW(){if(eg)return Rp;eg=1;var e=Object.prototype,t=e.toString;function n(r){return t.call(r)}return Rp=n,Rp}var Lp,tg;function nW(){if(tg)return Lp;tg=1;var e=EE(),t=eW(),n=tW(),r="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function u(f){return f==null?f===void 0?l:r:s&&s in Object(f)?t(f):n(f)}return Lp=u,Lp}var Fp,ng;function rW(){if(ng)return Fp;ng=1;function e(t){return t!=null&&typeof t=="object"}return Fp=e,Fp}var Ip,rg;function iW(){if(rg)return Ip;rg=1;var e=nW(),t=rW(),n="[object Symbol]";function r(l){return typeof l=="symbol"||t(l)&&e(l)==n}return Ip=r,Ip}var Vp,ig;function lW(){if(ig)return Vp;ig=1;var e=JH(),t=CE(),n=iW(),r=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,u=/^0o[0-7]+$/i,f=parseInt;function p(h){if(typeof h=="number")return h;if(n(h))return r;if(t(h)){var m=typeof h.valueOf=="function"?h.valueOf():h;h=t(m)?m+"":m}if(typeof h!="string")return h===0?h:+h;h=e(h);var y=s.test(h);return y||u.test(h)?f(h.slice(2),y?2:8):l.test(h)?r:+h}return Vp=p,Vp}var Np,lg;function oW(){if(lg)return Np;lg=1;var e=CE(),t=XH(),n=lW(),r="Expected a function",l=Math.max,s=Math.min;function u(f,p,h){var m,y,w,$,E,k,_=0,A=!1,M=!1,R=!0;if(typeof f!="function")throw new TypeError(r);p=n(p)||0,e(h)&&(A=!!h.leading,M="maxWait"in h,w=M?l(n(h.maxWait)||0,p):w,R="trailing"in h?!!h.trailing:R);function I(G){var Q=m,pe=y;return m=y=void 0,_=G,$=f.apply(pe,Q),$}function V(G){return _=G,E=setTimeout(L,p),A?I(G):$}function K(G){var Q=G-k,pe=G-_,$e=p-Q;return M?s($e,w-pe):$e}function ne(G){var Q=G-k,pe=G-_;return k===void 0||Q>=p||Q<0||M&&pe>=w}function L(){var G=t();if(ne(G))return ee(G);E=setTimeout(L,K(G))}function ee(G){return E=void 0,R&&m?I(G):(m=y=void 0,$)}function O(){E!==void 0&&clearTimeout(E),_=0,m=k=y=E=void 0}function q(){return E===void 0?$:ee(t())}function ve(){var G=t(),Q=ne(G);if(m=arguments,y=this,k=G,Q){if(E===void 0)return V(k);if(M)return clearTimeout(E),E=setTimeout(L,p),I(k)}return E===void 0&&(E=setTimeout(L,p)),$}return ve.cancel=O,ve.flush=q,ve}return Np=u,Np}var aW=oW();const sW=V1(aW);function uW({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:r}){const[l,s]=b.useState(null),[u,f]=b.useState(""),[p,h]=b.useState(!1),m=b.useCallback(sW(y=>{h(!0),qH(e,y).then(w=>{if(s(w),!n){const $=w.find(E=>E.key===t);$?r($):w.length>0&&r({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{h(!1)})},300),[e,t,n,r]);return b.useEffect(()=>{m(u)},[m,u]),P.jsxs($3,{gap:"3",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(wu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(Bv,{id:"environmentSearch",value:u,onChange:y=>f(y.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Ye,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(c2,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Ye,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Fv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:y=>{const w=Array.from(y)[0],$=l==null?void 0:l.find(E=>E.key===w);$&&r($)},children:l==null?void 0:l.map(y=>P.jsx(Iv,{id:y.key,children:y.name},y.key))})})]})}function cW({context:e,setContext:t}){return P.jsxs($3,{gap:"3",children:[P.jsx(wu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(zv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(r){return r instanceof Error?`Unable to parse value as JSON: ${r.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx($E,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(X0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(pE,{})]})]})}function dW({isSubmitting:e,selectedEnvironment:t}){return P.jsx(fn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(Oi,{gap:"2",children:P.jsxs(Ye,{display:"flex",alignItems:"center",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function fW({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:r,context:l,updateProjectSettings:s}){const[u,f]=b.useState(t),[p,h]=b.useState(l),[m,y]=b.useState(!1);b.useEffect(()=>{f(t),h(l)},[t,l]);const w=async E=>{y(!0);try{E(),await s(u,p),n(u)}catch(k){console.error("Error submitting project settings:",k)}finally{y(!1)}},$=()=>{f(t),h(l)};return P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(dW,{isSubmitting:m,selectedEnvironment:r}),P.jsx(F1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(vE,{isDismissable:!1,children:P.jsx(hE,{children:P.jsx(fE,{children:({close:E})=>P.jsxs(EC,{onSubmit:k=>{k.preventDefault(),w(E)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(wu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs($3,{gap:"3",children:[P.jsx(uW,{projectKey:e,sourceEnvironmentKey:r,selectedEnvironment:u,setSelectedEnvironment:f}),P.jsx(Ye,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(cW,{context:p,setContext:h})]}),P.jsxs(uE,{style:{justifyContent:"flex-end"},children:[P.jsx(fn,{onPress:()=>{$(),E()},variant:"destructive",isDisabled:m,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",isDisabled:m,children:m?P.jsxs(Oi,{gap:"2",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function pW(){const[e,t]=b.useState(null),[n,r]=b.useState(null),[l,s]=b.useState(null),[u,f]=b.useState({}),[p,h]=b.useState({}),[m,y]=b.useState(null),[w,$]=b.useState(!1),[E,k]=b.useState("{}"),_=b.useCallback(async()=>{if(!e)return;const M=await fetch(cr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),R=await M.json();if(!M.ok)throw new Error(`Got ${M.status}, ${M.statusText} from flag fetch`);const{flagsState:I,overrides:V,sourceEnvironmentKey:K,availableVariations:ne,context:L}=R;y(Vh(I)),f(V),s(K),h(ne),k(JSON.stringify(L||"{}",null,2));const O=(await hW(e)).find(q=>q.key===K);O&&r(O)},[e]);b.useEffect(()=>{e&&_().catch(console.error.bind(console,"error when fetching flags"))},[_,e]),b.useEffect(()=>{Promise.all([_()]).catch(console.error.bind(console,"error when fetching flags"))},[_]);const A=b.useCallback(async(M,R)=>{if(e)try{const I=await fetch(cr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:M==null?void 0:M.key,context:JSON.parse(R)})});if(!I.ok)throw new Error(`Got ${I.status}, ${I.statusText} from project settings update`);const V=await I.json(),{flagsState:K,sourceEnvironmentKey:ne,context:L}=V;y(Vh(K)),s(ne),k(JSON.stringify(L||{},null,2)),r(M),await _()}catch(I){console.error("Error updating project settings:",I)}},[e,_]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Ye,{width:"100%",minWidth:"600px",children:P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Ye,{marginBottom:"2rem",width:"100%",children:P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(WH,{selectedProject:e,setSelectedProject:t,setShowBanner:$}),e&&P.jsx(fW,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:r,sourceEnvironmentKey:l,context:E,updateProjectSettings:A}),P.jsx(GH,{selectedProject:e,setFlags:y,setAvailableVariations:h})]}),e&&P.jsx(Ye,{width:"100%",children:P.jsx(jH,{availableVariations:p,selectedProject:e,flags:m,overrides:u,setOverrides:M=>{f(M)}})})]})})})}async function hW(e){const t=await fetch(cr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const sd=(e,t)=>P.jsx(J1,{kind:"basic",text:t,children:e}),vW=(e,t)=>{const n=[];for(const[r,l]of Object.entries(t.features||{})){const s=e.id+r,u=l.counters||[];for(const f of u)n.push(P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"summary"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",r]}),P.jsxs(Bt,{children:["evaluated as ",String(f.value)]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},s))}return n},mW=(e,t)=>{let n="unknown",r="help";if(e.data.context){const l=t.context;if(!l)return console.error("Index event context is undefined"),[];switch(l.kind){case"user":n="user context",r="person";break;case"application":n=l.key||"unknown application",r="cloud";break;case"multi":l.user?(n=l.user.email||l.user.key||"unknown user",r="person"):l.account?(n=l.account.name||l.account.key||"unknown account",r="group"):l.application?(n=l.application.key||"unknown application",r="cloud"):(n="multi context",r="chart-dashboard");break}}else t.user?(n=(t.user.key||"unknown")+" user",r="person-outline"):n="unknown";return[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"index"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:r,size:"small"})," ",n]}),P.jsxs(Bt,{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t.data))})]},e.id)]},gW=(e,t)=>{const n=`evaluated as ${String(t.value)}`;return[P.jsxs($u,{className:"feature-row",children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"feature"}),P.jsx(Bt,{children:t.key||"unknown"}),P.jsx(Bt,{children:n}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)]},yW=(e,t)=>[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:e.data.kind}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs(Bt,{children:["value is ",t.metricValue]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)],bW=e=>{switch(e.data.kind){case"summary":return vW(e,e.data);case"index":return mW(e,e.data);case"feature":return gW(e,e.data);case"custom":return yW(e,e.data);default:return[P.jsxs($u,{children:[P.jsx(Bt,{children:(()=>{try{const t=new Date(e.timestamp);return isNaN(t.getTime())?e.timestamp:t.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx(Bt,{children:e.data.kind}),P.jsx(Bt,{}),P.jsx(Bt,{}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(e.data))})]},e.id)]}},PE=({events:e,onToggleStreaming:t})=>{const[n,r]=b.useState(!0),l=s=>{r(s),t==null||t(s)};return P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",children:[P.jsx("h3",{children:"Events Stream"}),P.jsx(Ye,{paddingBottom:"1rem",children:t&&P.jsx(fn,{variant:"primary",onPress:async()=>l(!n),children:n?"Streaming ON":"Streaming OFF"})}),P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Time"}),P.jsx(Dl,{children:"Type"}),P.jsx(Dl,{children:"Target"}),P.jsx(Dl,{children:"Event"}),P.jsx(Dl,{children:"Link"})]}),P.jsx(wE,{children:e.map(s=>bW(s))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."})]})},xW=({limit:e=1e3})=>{const[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0);b.useEffect(()=>{const p=new EventSource(cr("/events/tee"));return p.addEventListener("put",h=>{if(!h.data||h.data.trim()==="")return;let m;try{m=JSON.parse(h.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const y={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:m};s?n(w=>[y,...w].slice(0,e)):l(w=>[y,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{u(p),p&&r.length>0&&(n(h=>[...r,...h].slice(0,e)),l([]))};return P.jsx(PE,{events:t,onToggleStreaming:f})},wW=()=>{const[e,t]=b.useState([]),[n,r]=b.useState(!0),[l,s]=b.useState(null),[u,f]=b.useState(0),[p,h]=b.useState(null),m=async()=>{try{r(!0),s(null);const $=await fetch(cr("/dev/debug-sessions?limit=100"));if(!$.ok)throw new Error(`Failed to fetch debug sessions: ${$.status} ${$.statusText}`);const E=await $.json();t(E.sessions||[]),f(E.total_count||0)}catch($){s($ instanceof Error?$.message:"An unknown error occurred")}finally{r(!1)}};b.useEffect(()=>{m()},[]);const y=$=>{try{return new Date($).toLocaleString()}catch{return $}},w=async $=>{if(confirm(`Are you sure you want to delete debug session "${$}" and all its events? This action cannot be undone.`))try{h($),s(null);const E=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent($)}`),{method:"DELETE"});if(!E.ok)throw E.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${E.status} ${E.statusText}`);await m()}catch(E){s(E instanceof Error?E.message:"An unknown error occurred while deleting the session")}finally{h(null)}};return n?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",l]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:m,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:[u," total session",u!==1?"s":""]})]}),e.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No debug sessions found"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",borderRadius:"4px",borderWidth:"1px",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Debug Session Started"}),P.jsx(Dl,{children:"Event Count"}),P.jsx(Dl,{children:"Actions"})]}),P.jsx(wE,{children:e.map($=>P.jsxs($u,{children:[P.jsx(Bt,{children:P.jsx(PK,{href:`/ui/debug-sessions/${$.key}/events`,children:y($.written_at)})}),P.jsx(Bt,{children:P.jsx(X0,{children:$.event_count.toLocaleString()})}),P.jsx(Bt,{children:P.jsx(fn,{isDisabled:p===$.key,variant:"destructive",onPress:()=>w($.key),children:P.jsx(Pt,{name:"delete",size:"small"})})})]},$.key))})]})})]})};function $W(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const CW=()=>{const{debugSessionKey:e}=R_(),[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0),[f,p]=b.useState(null),h=async()=>{var y;if(!e){p("Debug session key is required"),u(!1);return}try{u(!0),p(null);const w=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const E=((y=(await w.json()).events)==null?void 0:y.map($W))||[];n(E),l(E)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{u(!1)}};b.useEffect(()=>{h()},[e]);const m=y=>{l(t.filter(w=>{let $="";const E=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(_=>E(_)):typeof k=="object"?Object.values(k).flatMap(_=>E(_)):[];return $=E(w).join(" "),$.toLowerCase().includes(y.toLowerCase())}))};return s?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading events..."})})]}):f?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",f]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:h,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Ye,{children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(zv,{onChange:m,name:"debug-session-search",children:P.jsxs(b.Fragment,{children:[P.jsx(wu,{children:"Search"}),P.jsx(Bv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No events found for this debug session"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(PE,{events:r})]})};function SW(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Ye,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Ye,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(BH,{})}),P.jsx(Ye,{padding:"1rem",width:"100%",children:P.jsxs(q_,{children:[P.jsx(Ya,{path:"/",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui/flags",element:P.jsx(pW,{})}),P.jsx(Ya,{path:"/ui/events",element:P.jsx(xW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions",element:P.jsx(wW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(CW,{})})]})})]})})}const EW="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function PW({children:e}){return b.useEffect(()=>{fetch(EW).then(async t=>t.text()).then(t=>{const r=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;r.id="lp-icons-sprite",r.style.display="none",document.body.appendChild(r)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(Eg.Provider,{value:{path:""},children:e})}const kW=()=>(b.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(Z.StrictMode,{children:P.jsx(yD,{children:P.jsxs(PW,{children:[P.jsx(SW,{}),P.jsx(DH,{})]})})}));i_.createRoot(document.getElementById("root")).render(P.jsx(kW,{})); diff --git a/internal/dev_server/ui/src/DebugSessionsPage.tsx b/internal/dev_server/ui/src/DebugSessionsPage.tsx index b0e948d3f..e25019fd9 100644 --- a/internal/dev_server/ui/src/DebugSessionsPage.tsx +++ b/internal/dev_server/ui/src/DebugSessionsPage.tsx @@ -41,8 +41,8 @@ const DebugSessionsPage = () => { } const data: DebugSessionsPageType = await response.json(); - setDebugSessions(data.sessions); - setTotalCount(data.total_count); + setDebugSessions(data.sessions || []); + setTotalCount(data.total_count || 0); } catch (err) { setError( err instanceof Error ? err.message : 'An unknown error occurred', From 252a933daa1baf3a2b35de4e1c253b1f4da16a53 Mon Sep 17 00:00:00 2001 From: Brian Van Staalduine <1323225+brianvans@users.noreply.github.com> Date: Thu, 18 Sep 2025 19:35:06 -0700 Subject: [PATCH 91/96] Use event timestamps over now() where possible --- internal/dev_server/ui/dist/index.html | 2 +- internal/dev_server/ui/src/EventsPage.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index 853d12f49..8a13dbcc7 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -99,7 +99,7 @@ function print() { __p += __j.call(arguments, '') } `:`; `)+xe+`return __p -}`;var ot=nm(function(){return gt(F,Ne+"return "+xe).apply(n,z)});if(ot.source=xe,$7(ot))throw ot;return ot}function rk(a){return Mt(a).toLowerCase()}function ik(a){return Mt(a).toUpperCase()}function lk(a,c,g){if(a=Mt(a),a&&(g||c===n))return Id(a);if(!a||!(c=sn(c)))return a;var S=gn(a),D=gn(c),F=Vd(S,D),z=qu(S,D)+1;return Yr(S,F,z).join("")}function ok(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.slice(0,T2(a)+1);if(!a||!(c=sn(c)))return a;var S=gn(a),D=qu(S,gn(c))+1;return Yr(S,0,D).join("")}function ak(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.replace(_u,"");if(!a||!(c=sn(c)))return a;var S=gn(a),D=Vd(S,gn(c));return Yr(S,D).join("")}function sk(a,c){var g=O,S=q;if(r0(c)){var D="separator"in c?c.separator:D;g="length"in c?rt(c.length):g,S="omission"in c?sn(c.omission):S}a=Mt(a);var F=a.length;if(Ql(a)){var z=gn(a);F=z.length}if(g>=F)return a;var H=g-tl(S);if(H<1)return S;var J=z?Yr(z,0,H).join(""):a.slice(0,H);if(D===n)return J+S;if(z&&(H+=J.length-H),C7(D)){if(a.slice(H).search(D)){var he,me=J;for(D.global||(D=ua(D.source,Mt(Tu.exec(D))+"g")),D.lastIndex=0;he=D.exec(me);)var xe=he.index;J=J.slice(0,xe===n?H:xe)}}else if(a.indexOf(sn(D),H)!=H){var De=J.lastIndexOf(D);De>-1&&(J=J.slice(0,De))}return J+S}function uk(a){return a=Mt(a),a&&ud.test(a)?a.replace(Gi,Kd):a}var ck=hl(function(a,c,g){return a+(g?" ":"")+c.toUpperCase()}),P7=wc("toUpperCase");function tm(a,c,g){return a=Mt(a),c=g?n:c,c===n?U3(a)?X3(a):j3(a):a.match(c)||[]}var nm=nt(function(a,c){try{return Z0(a,n,c)}catch(g){return $7(g)?g:new qe(g)}}),dk=Pr(function(a,c){return A0(c,function(g){g=tr(g),br(a,g,we(a[g],a))}),a});function fk(a){var c=a==null?0:a.length,g=Ke();return a=c?Lt(a,function(S){if(typeof S[1]!="function")throw new kn(u);return[g(S[0]),S[1]]}):[],nt(function(S){for(var D=-1;++Dfe)return[];var g=W,S=M0(a,W);c=Ke(c),a-=W;for(var D=Gu(S,c);++g0||c<0)?new Qe(g):(a<0?g=g.takeRight(-a):a&&(g=g.drop(a)),c!==n&&(c=rt(c),g=c<0?g.dropRight(-c):g.take(c-a)),g)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(W)},xn(Qe.prototype,function(a,c){var g=/^(?:filter|find|map|reject)|While$/.test(c),S=/^(?:head|last)$/.test(c),D=B[S?"take"+(c=="last"?"Right":""):c],F=S||/^find/.test(c);D&&(B.prototype[c]=function(){var z=this.__wrapped__,H=S?[1]:arguments,J=z instanceof Qe,he=H[0],me=J||Je(z),xe=function(dt){var mt=D.apply(B,hi([dt],H));return S&&De?mt[0]:mt};me&&g&&typeof he=="function"&&he.length!=1&&(J=me=!1);var De=this.__chain__,Ne=!!this.__actions__.length,Ue=F&&!De,ot=J&&!Ne;if(!F&&me){z=ot?z:new Qe(this);var Ge=a.apply(z,H);return Ge.__actions__.push({func:rr,args:[xe],thisArg:n}),new B0(Ge,De)}return Ue&&ot?a.apply(this,H):(Ge=this.thru(xe),Ue?S?Ge.value()[0]:Ge.value():Ge)})}),A0(["pop","push","shift","sort","splice","unshift"],function(a){var c=zr[a],g=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);B.prototype[a]=function(){var D=arguments;if(S&&!this.__chain__){var F=this.value();return c.apply(Je(F)?F:[],D)}return this[g](function(z){return c.apply(Je(z)?z:[],D)})}}),xn(Qe.prototype,function(a,c){var g=B[c];if(g){var S=g.name+"";yt.call(lo,S)||(lo[S]=[]),lo[S].push({name:c,func:g})}}),lo[wo(n,A).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=O2,Qe.prototype.reverse=nc,Qe.prototype.value=so,B.prototype.at=ks,B.prototype.chain=xl,B.prototype.commit=_s,B.prototype.next=Hc,B.prototype.plant=v7,B.prototype.reverse=Uc,B.prototype.toJSON=B.prototype.valueOf=B.prototype.value=m7,B.prototype.first=B.prototype.head,Zr&&(B.prototype[Zr]=Wc),B},Jl=Q3();pr?((pr.exports=Jl)._=Jl,aa._=Jl):Ot._=Jl}).call(FH)}(c1,c1.exports)),c1.exports}var VH=IH();const NH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:r,updateOverride:l})=>{switch(typeof r){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(NO,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,u=s.findIndex(p=>VH.isEqual(p.value,t));u===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],u=0);const f=p=>h=>{h.preventDefault();const m=Object.fromEntries(new FormData(h.currentTarget));l(n,JSON.parse(m.value)),p()};return P.jsxs(Oi,{gap:"2",children:[P.jsx(yE,{"aria-label":"flag variations select",selectedKey:u,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(b.Fragment,{children:[u!==null&&s[u]._id==="OVERRIDE"?P.jsxs(I1,{children:[P.jsxs(fn,{children:[P.jsx(Ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(F1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(fn,{children:[P.jsx(Ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(Nv,{children:P.jsx(Fv,{children:s.map((p,h)=>{const m=p.name?p.name:JSON.stringify(p.value);return P.jsx(Iv,{id:h,textValue:m,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),m]})}):m},h)})})})]},".0")}),P.jsx(Ye,{width:"2rem",height:"2rem",children:P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(_3,{icon:"edit","aria-label":"edit variation value"}),P.jsx(F1,{children:"Edit the served variation value as JSON"})]}),P.jsx(vE,{children:P.jsx(hE,{children:P.jsx(fE,{children:({close:p})=>P.jsxs(EC,{onSubmit:f(p),children:[P.jsxs(zv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:h=>{try{return JSON.parse(h),null}catch(m){return m instanceof Error?`Unable to parse value as JSON: ${m.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(wu,{children:`${n} value`}),P.jsx($E,{style:{fontFamily:"monospace"}}),P.jsx(X0,{slot:"description",children:"Update the value as JSON"}),P.jsx(pE,{})]}),P.jsxs(uE,{children:[P.jsx(fn,{onPress:p,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var h5={exports:{}},zH=h5.exports,H8;function OH(){return H8||(H8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(zH,t=>{var n=(le,Y)=>{if(!le||!Y)return Pe;var ce=E(le);pe(Y)||(Y=$(Y));var Ce=ce.bitflags;return(Ce&Y._bitflags)!==Ce?Pe:_(ce,Y)},r=(le,Y,ce)=>{if(!le)return ce!=null&&ce.all?k(Y,ce):fe;var Ce=E(le),ke=Ce.bitflags,Se=Ce.containsSpace,ge=y((ce==null?void 0:ce.threshold)||0),Le=(ce==null?void 0:ce.limit)||$e,_e=0,je=0,Xe=Y.length;function wt(en){_ere.peek()._score&&re.replaceTop(en))}if(ce!=null&&ce.key)for(var Rt=ce.key,at=0;at-1e3&&O[pt]>se){var lt=(O[pt]+q[pt])/4;lt>O[pt]&&(O[pt]=lt)}q[pt]>O[pt]&&(O[pt]=q[pt])}}if(Se){for(let tt=0;tt-1e3&&Dt>se){var lt=(Dt+st._score)/4;lt>Dt&&(Dt=lt)}st._score>Dt&&(Dt=st._score)}}if(e0.obj=_t,e0._score=Dt,ce!=null&&ce.scoreFn){if(Dt=ce.scoreFn(e0),!Dt)continue;Dt=y(Dt),e0._score=Dt}Dt=0;--at)qt[at]=re.poll();return qt.total=_e+je,qt},l=(le,Y="",ce="")=>{for(var Ce=typeof Y=="function"?Y:void 0,ke=le.target,Se=ke.length,ge=le.indexes,Le="",_e=0,je=0,Xe=!1,wt=[],Rt=0;Rt{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=M(le);return h(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},u=()=>{V.clear(),K.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ce)=>Y-ce)}set indexes(Y){return this._indexes=Y}highlight(Y,ce){return l(this,Y,ce)}get score(){return m(this._score)}set score(Y){this._score=y(Y)}}class p extends Array{get score(){return m(this._score)}set score(Y){this._score=y(Y)}}var h=(le,Y)=>{const ce=new f;return ce.target=le,ce.obj=Y.obj??Pe,ce._score=Y._score??se,ce._indexes=Y._indexes??[],ce._targetLower=Y._targetLower??"",ce._targetLowerCodes=Y._targetLowerCodes??Pe,ce._nextBeginningIndexes=Y._nextBeginningIndexes??Pe,ce._bitflags=Y._bitflags??0,ce},m=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),y=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=M(le),ce=[];if(Y.containsSpace){var Ce=le.split(/\s+/);Ce=[...new Set(Ce)];for(var ke=0;ke{if(le.length>999)return s(le);var Y=V.get(le);return Y!==void 0||(Y=s(le),V.set(le,Y)),Y},E=le=>{if(le.length>999)return w(le);var Y=K.get(le);return Y!==void 0||(Y=w(le),K.set(le,Y)),Y},k=(le,Y)=>{var ce=[];ce.total=le.length;var Ce=(Y==null?void 0:Y.limit)||$e;if(Y!=null&&Y.key)for(var ke=0;ke=Ce)return ce}}else if(Y!=null&&Y.keys)for(var ke=0;ke=0;--je){var ge=Q(Se,Y.keys[je]);if(!ge){_e[je]=ue;continue}pe(ge)||(ge=$(ge)),ge._score=se,ge._indexes.len=0,_e[je]=ge}if(_e.obj=Se,_e._score=se,ce.push(_e),ce.length>=Ce)return ce}else for(var ke=0;ke=Ce))return ce}return ce},_=(le,Y,ce=!1,Ce=!1)=>{if(ce===!1&&le.containsSpace)return A(le,Y,Ce);for(var ke=le._lower,Se=le.lowerCodes,ge=Se[0],Le=Y._targetLowerCodes,_e=Se.length,je=Le.length,at=0,Xe=0,wt=0;;){var Rt=ge===Le[Xe];if(Rt){if(ne[wt++]=Xe,++at,at===_e)break;ge=Se[at]}if(++Xe,Xe>=je)return Pe}var at=0,_t=!1,it=0,st=Y._nextBeginningIndexes;st===Pe&&(st=Y._nextBeginningIndexes=I(Y.target)),Xe=ne[0]===0?0:st[ne[0]-1];var l0=0;if(Xe!==je)for(;;)if(Xe>=je){if(at<=0||(++l0,l0>200))break;--at;var $t=L[--it];Xe=st[$t]}else{var Rt=Se[at]===Le[Xe];if(Rt){if(L[it++]=Xe,++at,at===_e){_t=!0;break}++Xe}else Xe=st[Xe]}var ht=_e<=1?-1:Y._targetLower.indexOf(ke,ne[0]),Be=!!~ht,lt=Be?ht===0||Y._nextBeginningIndexes[ht-1]===ht:!1;if(Be&&!lt){for(var ze=0;ze{for(var pt=0,dr=0,T0=1;T0<_e;++T0)tt[T0]-tt[T0-1]!==1&&(pt-=tt[T0],++dr);var ai=tt[_e-1]-tt[0]-(_e-1);if(pt-=(12+ai)*dr,tt[0]!==0&&(pt-=tt[0]*tt[0]*.2),!_t)pt*=1e3;else{for(var En=1,T0=st[0];T024&&(pt*=(En-24)*10)}return pt-=(je-_e)/2,Be&&(pt/=1+_e*_e*1),lt&&(pt/=1+_e*_e*1),pt-=(je-_e)/2,pt};if(_t)if(lt){for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(ne)}else var qt=L,en=Dt(L);else{if(Be)for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(qt)}Y._score=en;for(var ze=0;ze<_e;++ze)Y._indexes[ze]=qt[ze];Y._indexes.len=_e;const tn=new f;return tn.target=Y.target,tn._score=Y._score,tn._indexes=Y._indexes,tn},A=(le,Y,ce)=>{for(var Ce=new Set,ke=0,Se=Pe,ge=0,Le=le.spaceSearches,_e=Le.length,je=0,Xe=()=>{for(let lt=je-1;lt>=0;lt--)Y._nextBeginningIndexes[ee[lt*2+0]]=ee[lt*2+1]},wt=!1,Be=0;Be<_e;++Be){q[Be]=se;var Rt=Le[Be];if(Se=_(Rt,Y),ce){if(Se===Pe)continue;wt=!0}else if(Se===Pe)return Xe(),Pe;var at=Be===_e-1;if(!at){var _t=Se._indexes,it=!0;for(let ze=0;ze<_t.len-1;ze++)if(_t[ze+1]-_t[ze]!==1){it=!1;break}if(it){var st=_t[_t.len-1]+1,l0=Y._nextBeginningIndexes[st-1];for(let ze=st-1;ze>=0&&l0===Y._nextBeginningIndexes[ze];ze--)Y._nextBeginningIndexes[ze]=st,ee[je*2+0]=ze,ee[je*2+1]=l0,je++}}ke+=Se._score/_e,q[Be]=Se._score/_e,Se._indexes[0]ke){if(ce)for(var Be=0;Be<_e;++Be)q[Be]=ht._score/_e;return ht}ce&&(Se=Y),Se._score=ke;var Be=0;for(let lt of Ce)Se._indexes[Be++]=lt;return Se._indexes.len=Be,Se},M=le=>{for(var Y=le.length,ce=le.toLowerCase(),Ce=[],ke=0,Se=!1,ge=0;ge=97&&Le<=122?Le-97:Le>=48&&Le<=57?26:Le<=127?30:31;ke|=1<<_e}return{lowerCodes:Ce,bitflags:ke,containsSpace:Se,_lower:ce}},R=le=>{for(var Y=le.length,ce=[],Ce=0,ke=!1,Se=!1,ge=0;ge=65&&Le<=90,je=_e||Le>=97&&Le<=122||Le>=48&&Le<=57,Xe=_e&&!ke||!Se||!je;ke=_e,Se=je,Xe&&(ce[Ce++]=ge)}return ce},I=le=>{for(var Y=le.length,ce=R(le),Ce=[],ke=ce[0],Se=0,ge=0;gege?Ce[ge]=ke:(ke=ce[++Se],Ce[ge]=ke===void 0?Y:ke);return Ce},V=new Map,K=new Map,ne=[],L=[],ee=[],O=[],q=[],ve=[],G=[],Q=(le,Y)=>{var ce=le[Y];if(ce!==void 0)return ce;if(typeof Y=="function")return Y(le);var Ce=Y;Array.isArray(Y)||(Ce=Y.split("."));for(var ke=Ce.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",$e=1/0,se=-$e,fe=[];fe.total=0;var Pe=null,ue=s(""),W=le=>{var Y=[],ce=0,Ce={},ke=Se=>{for(var ge=0,Le=Y[ge],_e=1;_e>1]=Y[ge],_e=1+(ge<<1)}for(var Xe=ge-1>>1;ge>0&&Le._score>1)Y[ge]=Y[Xe];Y[ge]=Le};return Ce.add=Se=>{var ge=ce;Y[ce++]=Se;for(var Le=ge-1>>1;ge>0&&Se._score>1)Y[ge]=Y[Le];Y[ge]=Se},Ce.poll=Se=>{if(ce!==0){var ge=Y[0];return Y[0]=Y[--ce],ke(),ge}},Ce.peek=Se=>{if(ce!==0)return Y[0]},Ce.replaceTop=Se=>{Y[0]=Se,ke()},Ce},re=W();return{single:n,go:r,prepare:s,cleanup:u}})}(h5)),h5.exports}var ZH=OH();const KH=V1(ZH);function jH({availableVariations:e,selectedProject:t,flags:n,overrides:r,setOverrides:l}){const[s,u]=b.useState(!1),[f,p]=b.useState(""),[h,m]=b.useState(0),y=20,w=b.useMemo(()=>r&&Object.keys(r).length>0,[r]);b.useEffect(()=>{!w&&s&&u(!1)},[w,s]);const $=b.useMemo(()=>n?Object.entries(n).filter(V=>{if(!f)return!0;const[K]=V,ne=KH.single(f.toLowerCase(),K);return ne&&ne.score>-5e3}).filter(V=>{const[K]=V,ne=K in r;return!(s&&!ne)}):[],[n,f,s,r]),E=b.useMemo(()=>{const I=h*y,V=I+y;return $.slice(I,V)},[$,h]),k=b.useCallback((I,V)=>{var ne;const K={...r,[I]:{value:V,version:((ne=r[I])==null?void 0:ne.version)||0}};l(K),fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"PUT",body:JSON.stringify(V)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(r),console.error("unable to update override",L)})},[r,t]),_=b.useCallback(async I=>{const V={...r};delete V[I],l(V);try{const K=await fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"DELETE"});if(!K.ok)throw new Error(`got ${K.status} ${K.statusText}. ${await K.text()}`)}catch(K){console.error("unable to remove override",K),l(r)}},[r,t]),A=b.useCallback(async()=>{l({});try{const I=await fetch(cr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!I.ok)throw new Error(`got ${I.status} ${I.statusText}. ${await I.text()}`)}catch(I){console.error("unable to remove all overrides",I),l(r)}},[r,t]);if(!n)return null;const M=Math.ceil($.length/y),R=I=>{switch(I){case"next":m(V=>Math.min(V+1,M-1));break;case"prev":m(V=>Math.max(V-1,0));break;case"first":m(0);break;case"last":m(M-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:RH.borderRadius.regular,children:[P.jsxs(wu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(Rv,{id:"only-show-overrides",isSelected:s,onChange:I=>{u(I)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(fn,{variant:"destructive",isDisabled:!w,onPress:async()=>{r&&(await A(),l({}),u(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs($3,{gap:"4",children:[P.jsx(Oi,{gap:"4",children:P.jsx(Sj,{"aria-label":"Search flags",children:P.jsxs(gK,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(Bv,{placeholder:"Search flags by key",onChange:I=>{p(I.target.value),m(0)},value:f,"aria-label":"Search flags input"}),P.jsx(_3,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:E.map(([I,{value:V}],K)=>{var O;const ne=(O=r[I])==null?void 0:O.value,L=I in r,ee=L?ne:V;return P.jsxs("li",{style:{backgroundColor:K%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Ye,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(J1,{asChild:!0,text:I,children:P.jsx("code",{className:L?"has-override":"",children:I})}),L&&P.jsx(fn,{"aria-label":"Remove override",onPress:()=>{_(I)},variant:"destructive",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Ye,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(NH,{availableVariations:e[I]?e[I]:[],currentValue:ee,flagValue:V,flagKey:I,updateOverride:k})})]},I)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(iN,{currentOffset:h*y,isReady:!0,onChange:I=>R(I),pageSize:y,resourceName:"flags",totalCount:$.length})})]})}const HH=async()=>{const e=await fetch(cr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function WH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[r,l]=b.useState([]),[s,u]=b.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),u(!1)};return b.useEffect(()=>{HH().then(f).catch(p=>{console.error(p),u(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):r.length>0?P.jsxs(pO,{children:[P.jsx(Oi,{gap:"1",children:P.jsxs(I1,{children:[P.jsx(fn,{children:e??"Select a project"}),P.jsx(F1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(Nv,{children:P.jsx(UK,{children:r.map(p=>P.jsx(qK,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const UH=async e=>{const t=await fetch(cr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},GH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[r,l]=b.useState(!1),s=async()=>{l(!0);try{const u=await UH(e);n(u.availableVariations),t(Vh(u.flagsState))}catch(u){Z8.warning("Sync failed"),console.error("Sync failed:",u)}finally{Z8.success("Sync successful"),l(!1)}};return e?P.jsxs(I1,{children:[P.jsx(fn,{onPress:s,isDisabled:r,style:{backgroundColor:r?"lightgray":void 0},children:r?P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(F1,{children:"Sync the selected project from the source environment"})]}):null};async function qH(e,t){const n=await fetch(cr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Pp,W8;function CE(){if(W8)return Pp;W8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Pp=e,Pp}var kp,U8;function YH(){if(U8)return kp;U8=1;var e=typeof Lo=="object"&&Lo&&Lo.Object===Object&&Lo;return kp=e,kp}var _p,G8;function SE(){if(G8)return _p;G8=1;var e=YH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return _p=n,_p}var Dp,q8;function XH(){if(q8)return Dp;q8=1;var e=SE(),t=function(){return e.Date.now()};return Dp=t,Dp}var Tp,Y8;function QH(){if(Y8)return Tp;Y8=1;var e=/\s/;function t(n){for(var r=n.length;r--&&e.test(n.charAt(r)););return r}return Tp=t,Tp}var Ap,X8;function JH(){if(X8)return Ap;X8=1;var e=QH(),t=/^\s+/;function n(r){return r&&r.slice(0,e(r)+1).replace(t,"")}return Ap=n,Ap}var Mp,Q8;function EE(){if(Q8)return Mp;Q8=1;var e=SE(),t=e.Symbol;return Mp=t,Mp}var Bp,J8;function eW(){if(J8)return Bp;J8=1;var e=EE(),t=Object.prototype,n=t.hasOwnProperty,r=t.toString,l=e?e.toStringTag:void 0;function s(u){var f=n.call(u,l),p=u[l];try{u[l]=void 0;var h=!0}catch{}var m=r.call(u);return h&&(f?u[l]=p:delete u[l]),m}return Bp=s,Bp}var Rp,eg;function tW(){if(eg)return Rp;eg=1;var e=Object.prototype,t=e.toString;function n(r){return t.call(r)}return Rp=n,Rp}var Lp,tg;function nW(){if(tg)return Lp;tg=1;var e=EE(),t=eW(),n=tW(),r="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function u(f){return f==null?f===void 0?l:r:s&&s in Object(f)?t(f):n(f)}return Lp=u,Lp}var Fp,ng;function rW(){if(ng)return Fp;ng=1;function e(t){return t!=null&&typeof t=="object"}return Fp=e,Fp}var Ip,rg;function iW(){if(rg)return Ip;rg=1;var e=nW(),t=rW(),n="[object Symbol]";function r(l){return typeof l=="symbol"||t(l)&&e(l)==n}return Ip=r,Ip}var Vp,ig;function lW(){if(ig)return Vp;ig=1;var e=JH(),t=CE(),n=iW(),r=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,u=/^0o[0-7]+$/i,f=parseInt;function p(h){if(typeof h=="number")return h;if(n(h))return r;if(t(h)){var m=typeof h.valueOf=="function"?h.valueOf():h;h=t(m)?m+"":m}if(typeof h!="string")return h===0?h:+h;h=e(h);var y=s.test(h);return y||u.test(h)?f(h.slice(2),y?2:8):l.test(h)?r:+h}return Vp=p,Vp}var Np,lg;function oW(){if(lg)return Np;lg=1;var e=CE(),t=XH(),n=lW(),r="Expected a function",l=Math.max,s=Math.min;function u(f,p,h){var m,y,w,$,E,k,_=0,A=!1,M=!1,R=!0;if(typeof f!="function")throw new TypeError(r);p=n(p)||0,e(h)&&(A=!!h.leading,M="maxWait"in h,w=M?l(n(h.maxWait)||0,p):w,R="trailing"in h?!!h.trailing:R);function I(G){var Q=m,pe=y;return m=y=void 0,_=G,$=f.apply(pe,Q),$}function V(G){return _=G,E=setTimeout(L,p),A?I(G):$}function K(G){var Q=G-k,pe=G-_,$e=p-Q;return M?s($e,w-pe):$e}function ne(G){var Q=G-k,pe=G-_;return k===void 0||Q>=p||Q<0||M&&pe>=w}function L(){var G=t();if(ne(G))return ee(G);E=setTimeout(L,K(G))}function ee(G){return E=void 0,R&&m?I(G):(m=y=void 0,$)}function O(){E!==void 0&&clearTimeout(E),_=0,m=k=y=E=void 0}function q(){return E===void 0?$:ee(t())}function ve(){var G=t(),Q=ne(G);if(m=arguments,y=this,k=G,Q){if(E===void 0)return V(k);if(M)return clearTimeout(E),E=setTimeout(L,p),I(k)}return E===void 0&&(E=setTimeout(L,p)),$}return ve.cancel=O,ve.flush=q,ve}return Np=u,Np}var aW=oW();const sW=V1(aW);function uW({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:r}){const[l,s]=b.useState(null),[u,f]=b.useState(""),[p,h]=b.useState(!1),m=b.useCallback(sW(y=>{h(!0),qH(e,y).then(w=>{if(s(w),!n){const $=w.find(E=>E.key===t);$?r($):w.length>0&&r({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{h(!1)})},300),[e,t,n,r]);return b.useEffect(()=>{m(u)},[m,u]),P.jsxs($3,{gap:"3",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(wu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(Bv,{id:"environmentSearch",value:u,onChange:y=>f(y.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Ye,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(c2,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Ye,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Fv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:y=>{const w=Array.from(y)[0],$=l==null?void 0:l.find(E=>E.key===w);$&&r($)},children:l==null?void 0:l.map(y=>P.jsx(Iv,{id:y.key,children:y.name},y.key))})})]})}function cW({context:e,setContext:t}){return P.jsxs($3,{gap:"3",children:[P.jsx(wu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(zv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(r){return r instanceof Error?`Unable to parse value as JSON: ${r.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx($E,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(X0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(pE,{})]})]})}function dW({isSubmitting:e,selectedEnvironment:t}){return P.jsx(fn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(Oi,{gap:"2",children:P.jsxs(Ye,{display:"flex",alignItems:"center",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function fW({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:r,context:l,updateProjectSettings:s}){const[u,f]=b.useState(t),[p,h]=b.useState(l),[m,y]=b.useState(!1);b.useEffect(()=>{f(t),h(l)},[t,l]);const w=async E=>{y(!0);try{E(),await s(u,p),n(u)}catch(k){console.error("Error submitting project settings:",k)}finally{y(!1)}},$=()=>{f(t),h(l)};return P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(dW,{isSubmitting:m,selectedEnvironment:r}),P.jsx(F1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(vE,{isDismissable:!1,children:P.jsx(hE,{children:P.jsx(fE,{children:({close:E})=>P.jsxs(EC,{onSubmit:k=>{k.preventDefault(),w(E)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(wu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs($3,{gap:"3",children:[P.jsx(uW,{projectKey:e,sourceEnvironmentKey:r,selectedEnvironment:u,setSelectedEnvironment:f}),P.jsx(Ye,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(cW,{context:p,setContext:h})]}),P.jsxs(uE,{style:{justifyContent:"flex-end"},children:[P.jsx(fn,{onPress:()=>{$(),E()},variant:"destructive",isDisabled:m,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",isDisabled:m,children:m?P.jsxs(Oi,{gap:"2",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function pW(){const[e,t]=b.useState(null),[n,r]=b.useState(null),[l,s]=b.useState(null),[u,f]=b.useState({}),[p,h]=b.useState({}),[m,y]=b.useState(null),[w,$]=b.useState(!1),[E,k]=b.useState("{}"),_=b.useCallback(async()=>{if(!e)return;const M=await fetch(cr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),R=await M.json();if(!M.ok)throw new Error(`Got ${M.status}, ${M.statusText} from flag fetch`);const{flagsState:I,overrides:V,sourceEnvironmentKey:K,availableVariations:ne,context:L}=R;y(Vh(I)),f(V),s(K),h(ne),k(JSON.stringify(L||"{}",null,2));const O=(await hW(e)).find(q=>q.key===K);O&&r(O)},[e]);b.useEffect(()=>{e&&_().catch(console.error.bind(console,"error when fetching flags"))},[_,e]),b.useEffect(()=>{Promise.all([_()]).catch(console.error.bind(console,"error when fetching flags"))},[_]);const A=b.useCallback(async(M,R)=>{if(e)try{const I=await fetch(cr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:M==null?void 0:M.key,context:JSON.parse(R)})});if(!I.ok)throw new Error(`Got ${I.status}, ${I.statusText} from project settings update`);const V=await I.json(),{flagsState:K,sourceEnvironmentKey:ne,context:L}=V;y(Vh(K)),s(ne),k(JSON.stringify(L||{},null,2)),r(M),await _()}catch(I){console.error("Error updating project settings:",I)}},[e,_]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Ye,{width:"100%",minWidth:"600px",children:P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Ye,{marginBottom:"2rem",width:"100%",children:P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(WH,{selectedProject:e,setSelectedProject:t,setShowBanner:$}),e&&P.jsx(fW,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:r,sourceEnvironmentKey:l,context:E,updateProjectSettings:A}),P.jsx(GH,{selectedProject:e,setFlags:y,setAvailableVariations:h})]}),e&&P.jsx(Ye,{width:"100%",children:P.jsx(jH,{availableVariations:p,selectedProject:e,flags:m,overrides:u,setOverrides:M=>{f(M)}})})]})})})}async function hW(e){const t=await fetch(cr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const sd=(e,t)=>P.jsx(J1,{kind:"basic",text:t,children:e}),vW=(e,t)=>{const n=[];for(const[r,l]of Object.entries(t.features||{})){const s=e.id+r,u=l.counters||[];for(const f of u)n.push(P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"summary"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",r]}),P.jsxs(Bt,{children:["evaluated as ",String(f.value)]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},s))}return n},mW=(e,t)=>{let n="unknown",r="help";if(e.data.context){const l=t.context;if(!l)return console.error("Index event context is undefined"),[];switch(l.kind){case"user":n="user context",r="person";break;case"application":n=l.key||"unknown application",r="cloud";break;case"multi":l.user?(n=l.user.email||l.user.key||"unknown user",r="person"):l.account?(n=l.account.name||l.account.key||"unknown account",r="group"):l.application?(n=l.application.key||"unknown application",r="cloud"):(n="multi context",r="chart-dashboard");break}}else t.user?(n=(t.user.key||"unknown")+" user",r="person-outline"):n="unknown";return[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"index"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:r,size:"small"})," ",n]}),P.jsxs(Bt,{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t.data))})]},e.id)]},gW=(e,t)=>{const n=`evaluated as ${String(t.value)}`;return[P.jsxs($u,{className:"feature-row",children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"feature"}),P.jsx(Bt,{children:t.key||"unknown"}),P.jsx(Bt,{children:n}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)]},yW=(e,t)=>[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:e.data.kind}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs(Bt,{children:["value is ",t.metricValue]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)],bW=e=>{switch(e.data.kind){case"summary":return vW(e,e.data);case"index":return mW(e,e.data);case"feature":return gW(e,e.data);case"custom":return yW(e,e.data);default:return[P.jsxs($u,{children:[P.jsx(Bt,{children:(()=>{try{const t=new Date(e.timestamp);return isNaN(t.getTime())?e.timestamp:t.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx(Bt,{children:e.data.kind}),P.jsx(Bt,{}),P.jsx(Bt,{}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(e.data))})]},e.id)]}},PE=({events:e,onToggleStreaming:t})=>{const[n,r]=b.useState(!0),l=s=>{r(s),t==null||t(s)};return P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",children:[P.jsx("h3",{children:"Events Stream"}),P.jsx(Ye,{paddingBottom:"1rem",children:t&&P.jsx(fn,{variant:"primary",onPress:async()=>l(!n),children:n?"Streaming ON":"Streaming OFF"})}),P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Time"}),P.jsx(Dl,{children:"Type"}),P.jsx(Dl,{children:"Target"}),P.jsx(Dl,{children:"Event"}),P.jsx(Dl,{children:"Link"})]}),P.jsx(wE,{children:e.map(s=>bW(s))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."})]})},xW=({limit:e=1e3})=>{const[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0);b.useEffect(()=>{const p=new EventSource(cr("/events/tee"));return p.addEventListener("put",h=>{if(!h.data||h.data.trim()==="")return;let m;try{m=JSON.parse(h.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const y={id:Math.random().toString(36).slice(2,11),timestamp:Date.now(),data:m};s?n(w=>[y,...w].slice(0,e)):l(w=>[y,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{u(p),p&&r.length>0&&(n(h=>[...r,...h].slice(0,e)),l([]))};return P.jsx(PE,{events:t,onToggleStreaming:f})},wW=()=>{const[e,t]=b.useState([]),[n,r]=b.useState(!0),[l,s]=b.useState(null),[u,f]=b.useState(0),[p,h]=b.useState(null),m=async()=>{try{r(!0),s(null);const $=await fetch(cr("/dev/debug-sessions?limit=100"));if(!$.ok)throw new Error(`Failed to fetch debug sessions: ${$.status} ${$.statusText}`);const E=await $.json();t(E.sessions||[]),f(E.total_count||0)}catch($){s($ instanceof Error?$.message:"An unknown error occurred")}finally{r(!1)}};b.useEffect(()=>{m()},[]);const y=$=>{try{return new Date($).toLocaleString()}catch{return $}},w=async $=>{if(confirm(`Are you sure you want to delete debug session "${$}" and all its events? This action cannot be undone.`))try{h($),s(null);const E=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent($)}`),{method:"DELETE"});if(!E.ok)throw E.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${E.status} ${E.statusText}`);await m()}catch(E){s(E instanceof Error?E.message:"An unknown error occurred while deleting the session")}finally{h(null)}};return n?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",l]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:m,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:[u," total session",u!==1?"s":""]})]}),e.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No debug sessions found"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",borderRadius:"4px",borderWidth:"1px",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Debug Session Started"}),P.jsx(Dl,{children:"Event Count"}),P.jsx(Dl,{children:"Actions"})]}),P.jsx(wE,{children:e.map($=>P.jsxs($u,{children:[P.jsx(Bt,{children:P.jsx(PK,{href:`/ui/debug-sessions/${$.key}/events`,children:y($.written_at)})}),P.jsx(Bt,{children:P.jsx(X0,{children:$.event_count.toLocaleString()})}),P.jsx(Bt,{children:P.jsx(fn,{isDisabled:p===$.key,variant:"destructive",onPress:()=>w($.key),children:P.jsx(Pt,{name:"delete",size:"small"})})})]},$.key))})]})})]})};function $W(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const CW=()=>{const{debugSessionKey:e}=R_(),[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0),[f,p]=b.useState(null),h=async()=>{var y;if(!e){p("Debug session key is required"),u(!1);return}try{u(!0),p(null);const w=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const E=((y=(await w.json()).events)==null?void 0:y.map($W))||[];n(E),l(E)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{u(!1)}};b.useEffect(()=>{h()},[e]);const m=y=>{l(t.filter(w=>{let $="";const E=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(_=>E(_)):typeof k=="object"?Object.values(k).flatMap(_=>E(_)):[];return $=E(w).join(" "),$.toLowerCase().includes(y.toLowerCase())}))};return s?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading events..."})})]}):f?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",f]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:h,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Ye,{children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(zv,{onChange:m,name:"debug-session-search",children:P.jsxs(b.Fragment,{children:[P.jsx(wu,{children:"Search"}),P.jsx(Bv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No events found for this debug session"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(PE,{events:r})]})};function SW(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Ye,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Ye,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(BH,{})}),P.jsx(Ye,{padding:"1rem",width:"100%",children:P.jsxs(q_,{children:[P.jsx(Ya,{path:"/",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui/flags",element:P.jsx(pW,{})}),P.jsx(Ya,{path:"/ui/events",element:P.jsx(xW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions",element:P.jsx(wW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(CW,{})})]})})]})})}const EW="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function PW({children:e}){return b.useEffect(()=>{fetch(EW).then(async t=>t.text()).then(t=>{const r=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;r.id="lp-icons-sprite",r.style.display="none",document.body.appendChild(r)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(Eg.Provider,{value:{path:""},children:e})}const kW=()=>(b.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(Z.StrictMode,{children:P.jsx(yD,{children:P.jsxs(PW,{children:[P.jsx(SW,{}),P.jsx(DH,{})]})})}));i_.createRoot(document.getElementById("root")).render(P.jsx(kW,{})); +}`;var ot=nm(function(){return gt(F,Ne+"return "+xe).apply(n,z)});if(ot.source=xe,$7(ot))throw ot;return ot}function rk(a){return Mt(a).toLowerCase()}function ik(a){return Mt(a).toUpperCase()}function lk(a,c,g){if(a=Mt(a),a&&(g||c===n))return Id(a);if(!a||!(c=sn(c)))return a;var S=gn(a),D=gn(c),F=Vd(S,D),z=qu(S,D)+1;return Yr(S,F,z).join("")}function ok(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.slice(0,T2(a)+1);if(!a||!(c=sn(c)))return a;var S=gn(a),D=qu(S,gn(c))+1;return Yr(S,0,D).join("")}function ak(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.replace(_u,"");if(!a||!(c=sn(c)))return a;var S=gn(a),D=Vd(S,gn(c));return Yr(S,D).join("")}function sk(a,c){var g=O,S=q;if(r0(c)){var D="separator"in c?c.separator:D;g="length"in c?rt(c.length):g,S="omission"in c?sn(c.omission):S}a=Mt(a);var F=a.length;if(Ql(a)){var z=gn(a);F=z.length}if(g>=F)return a;var H=g-tl(S);if(H<1)return S;var J=z?Yr(z,0,H).join(""):a.slice(0,H);if(D===n)return J+S;if(z&&(H+=J.length-H),C7(D)){if(a.slice(H).search(D)){var he,me=J;for(D.global||(D=ua(D.source,Mt(Tu.exec(D))+"g")),D.lastIndex=0;he=D.exec(me);)var xe=he.index;J=J.slice(0,xe===n?H:xe)}}else if(a.indexOf(sn(D),H)!=H){var De=J.lastIndexOf(D);De>-1&&(J=J.slice(0,De))}return J+S}function uk(a){return a=Mt(a),a&&ud.test(a)?a.replace(Gi,Kd):a}var ck=hl(function(a,c,g){return a+(g?" ":"")+c.toUpperCase()}),P7=wc("toUpperCase");function tm(a,c,g){return a=Mt(a),c=g?n:c,c===n?U3(a)?X3(a):j3(a):a.match(c)||[]}var nm=nt(function(a,c){try{return Z0(a,n,c)}catch(g){return $7(g)?g:new qe(g)}}),dk=Pr(function(a,c){return A0(c,function(g){g=tr(g),br(a,g,we(a[g],a))}),a});function fk(a){var c=a==null?0:a.length,g=Ke();return a=c?Lt(a,function(S){if(typeof S[1]!="function")throw new kn(u);return[g(S[0]),S[1]]}):[],nt(function(S){for(var D=-1;++Dfe)return[];var g=W,S=M0(a,W);c=Ke(c),a-=W;for(var D=Gu(S,c);++g0||c<0)?new Qe(g):(a<0?g=g.takeRight(-a):a&&(g=g.drop(a)),c!==n&&(c=rt(c),g=c<0?g.dropRight(-c):g.take(c-a)),g)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(W)},xn(Qe.prototype,function(a,c){var g=/^(?:filter|find|map|reject)|While$/.test(c),S=/^(?:head|last)$/.test(c),D=B[S?"take"+(c=="last"?"Right":""):c],F=S||/^find/.test(c);D&&(B.prototype[c]=function(){var z=this.__wrapped__,H=S?[1]:arguments,J=z instanceof Qe,he=H[0],me=J||Je(z),xe=function(dt){var mt=D.apply(B,hi([dt],H));return S&&De?mt[0]:mt};me&&g&&typeof he=="function"&&he.length!=1&&(J=me=!1);var De=this.__chain__,Ne=!!this.__actions__.length,Ue=F&&!De,ot=J&&!Ne;if(!F&&me){z=ot?z:new Qe(this);var Ge=a.apply(z,H);return Ge.__actions__.push({func:rr,args:[xe],thisArg:n}),new B0(Ge,De)}return Ue&&ot?a.apply(this,H):(Ge=this.thru(xe),Ue?S?Ge.value()[0]:Ge.value():Ge)})}),A0(["pop","push","shift","sort","splice","unshift"],function(a){var c=zr[a],g=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);B.prototype[a]=function(){var D=arguments;if(S&&!this.__chain__){var F=this.value();return c.apply(Je(F)?F:[],D)}return this[g](function(z){return c.apply(Je(z)?z:[],D)})}}),xn(Qe.prototype,function(a,c){var g=B[c];if(g){var S=g.name+"";yt.call(lo,S)||(lo[S]=[]),lo[S].push({name:c,func:g})}}),lo[wo(n,A).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=O2,Qe.prototype.reverse=nc,Qe.prototype.value=so,B.prototype.at=ks,B.prototype.chain=xl,B.prototype.commit=_s,B.prototype.next=Hc,B.prototype.plant=v7,B.prototype.reverse=Uc,B.prototype.toJSON=B.prototype.valueOf=B.prototype.value=m7,B.prototype.first=B.prototype.head,Zr&&(B.prototype[Zr]=Wc),B},Jl=Q3();pr?((pr.exports=Jl)._=Jl,aa._=Jl):Ot._=Jl}).call(FH)}(c1,c1.exports)),c1.exports}var VH=IH();const NH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:r,updateOverride:l})=>{switch(typeof r){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(NO,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,u=s.findIndex(p=>VH.isEqual(p.value,t));u===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],u=0);const f=p=>h=>{h.preventDefault();const m=Object.fromEntries(new FormData(h.currentTarget));l(n,JSON.parse(m.value)),p()};return P.jsxs(Oi,{gap:"2",children:[P.jsx(yE,{"aria-label":"flag variations select",selectedKey:u,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(b.Fragment,{children:[u!==null&&s[u]._id==="OVERRIDE"?P.jsxs(I1,{children:[P.jsxs(fn,{children:[P.jsx(Ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(F1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(fn,{children:[P.jsx(Ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(Nv,{children:P.jsx(Fv,{children:s.map((p,h)=>{const m=p.name?p.name:JSON.stringify(p.value);return P.jsx(Iv,{id:h,textValue:m,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),m]})}):m},h)})})})]},".0")}),P.jsx(Ye,{width:"2rem",height:"2rem",children:P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(_3,{icon:"edit","aria-label":"edit variation value"}),P.jsx(F1,{children:"Edit the served variation value as JSON"})]}),P.jsx(vE,{children:P.jsx(hE,{children:P.jsx(fE,{children:({close:p})=>P.jsxs(EC,{onSubmit:f(p),children:[P.jsxs(zv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:h=>{try{return JSON.parse(h),null}catch(m){return m instanceof Error?`Unable to parse value as JSON: ${m.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(wu,{children:`${n} value`}),P.jsx($E,{style:{fontFamily:"monospace"}}),P.jsx(X0,{slot:"description",children:"Update the value as JSON"}),P.jsx(pE,{})]}),P.jsxs(uE,{children:[P.jsx(fn,{onPress:p,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var h5={exports:{}},zH=h5.exports,H8;function OH(){return H8||(H8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(zH,t=>{var n=(le,Y)=>{if(!le||!Y)return Pe;var ce=E(le);pe(Y)||(Y=$(Y));var Ce=ce.bitflags;return(Ce&Y._bitflags)!==Ce?Pe:_(ce,Y)},r=(le,Y,ce)=>{if(!le)return ce!=null&&ce.all?k(Y,ce):fe;var Ce=E(le),ke=Ce.bitflags,Se=Ce.containsSpace,ge=y((ce==null?void 0:ce.threshold)||0),Le=(ce==null?void 0:ce.limit)||$e,_e=0,je=0,Xe=Y.length;function wt(en){_ere.peek()._score&&re.replaceTop(en))}if(ce!=null&&ce.key)for(var Rt=ce.key,at=0;at-1e3&&O[pt]>se){var lt=(O[pt]+q[pt])/4;lt>O[pt]&&(O[pt]=lt)}q[pt]>O[pt]&&(O[pt]=q[pt])}}if(Se){for(let tt=0;tt-1e3&&Dt>se){var lt=(Dt+st._score)/4;lt>Dt&&(Dt=lt)}st._score>Dt&&(Dt=st._score)}}if(e0.obj=_t,e0._score=Dt,ce!=null&&ce.scoreFn){if(Dt=ce.scoreFn(e0),!Dt)continue;Dt=y(Dt),e0._score=Dt}Dt=0;--at)qt[at]=re.poll();return qt.total=_e+je,qt},l=(le,Y="",ce="")=>{for(var Ce=typeof Y=="function"?Y:void 0,ke=le.target,Se=ke.length,ge=le.indexes,Le="",_e=0,je=0,Xe=!1,wt=[],Rt=0;Rt{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=M(le);return h(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},u=()=>{V.clear(),K.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ce)=>Y-ce)}set indexes(Y){return this._indexes=Y}highlight(Y,ce){return l(this,Y,ce)}get score(){return m(this._score)}set score(Y){this._score=y(Y)}}class p extends Array{get score(){return m(this._score)}set score(Y){this._score=y(Y)}}var h=(le,Y)=>{const ce=new f;return ce.target=le,ce.obj=Y.obj??Pe,ce._score=Y._score??se,ce._indexes=Y._indexes??[],ce._targetLower=Y._targetLower??"",ce._targetLowerCodes=Y._targetLowerCodes??Pe,ce._nextBeginningIndexes=Y._nextBeginningIndexes??Pe,ce._bitflags=Y._bitflags??0,ce},m=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),y=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=M(le),ce=[];if(Y.containsSpace){var Ce=le.split(/\s+/);Ce=[...new Set(Ce)];for(var ke=0;ke{if(le.length>999)return s(le);var Y=V.get(le);return Y!==void 0||(Y=s(le),V.set(le,Y)),Y},E=le=>{if(le.length>999)return w(le);var Y=K.get(le);return Y!==void 0||(Y=w(le),K.set(le,Y)),Y},k=(le,Y)=>{var ce=[];ce.total=le.length;var Ce=(Y==null?void 0:Y.limit)||$e;if(Y!=null&&Y.key)for(var ke=0;ke=Ce)return ce}}else if(Y!=null&&Y.keys)for(var ke=0;ke=0;--je){var ge=Q(Se,Y.keys[je]);if(!ge){_e[je]=ue;continue}pe(ge)||(ge=$(ge)),ge._score=se,ge._indexes.len=0,_e[je]=ge}if(_e.obj=Se,_e._score=se,ce.push(_e),ce.length>=Ce)return ce}else for(var ke=0;ke=Ce))return ce}return ce},_=(le,Y,ce=!1,Ce=!1)=>{if(ce===!1&&le.containsSpace)return A(le,Y,Ce);for(var ke=le._lower,Se=le.lowerCodes,ge=Se[0],Le=Y._targetLowerCodes,_e=Se.length,je=Le.length,at=0,Xe=0,wt=0;;){var Rt=ge===Le[Xe];if(Rt){if(ne[wt++]=Xe,++at,at===_e)break;ge=Se[at]}if(++Xe,Xe>=je)return Pe}var at=0,_t=!1,it=0,st=Y._nextBeginningIndexes;st===Pe&&(st=Y._nextBeginningIndexes=I(Y.target)),Xe=ne[0]===0?0:st[ne[0]-1];var l0=0;if(Xe!==je)for(;;)if(Xe>=je){if(at<=0||(++l0,l0>200))break;--at;var $t=L[--it];Xe=st[$t]}else{var Rt=Se[at]===Le[Xe];if(Rt){if(L[it++]=Xe,++at,at===_e){_t=!0;break}++Xe}else Xe=st[Xe]}var ht=_e<=1?-1:Y._targetLower.indexOf(ke,ne[0]),Be=!!~ht,lt=Be?ht===0||Y._nextBeginningIndexes[ht-1]===ht:!1;if(Be&&!lt){for(var ze=0;ze{for(var pt=0,dr=0,T0=1;T0<_e;++T0)tt[T0]-tt[T0-1]!==1&&(pt-=tt[T0],++dr);var ai=tt[_e-1]-tt[0]-(_e-1);if(pt-=(12+ai)*dr,tt[0]!==0&&(pt-=tt[0]*tt[0]*.2),!_t)pt*=1e3;else{for(var En=1,T0=st[0];T024&&(pt*=(En-24)*10)}return pt-=(je-_e)/2,Be&&(pt/=1+_e*_e*1),lt&&(pt/=1+_e*_e*1),pt-=(je-_e)/2,pt};if(_t)if(lt){for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(ne)}else var qt=L,en=Dt(L);else{if(Be)for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(qt)}Y._score=en;for(var ze=0;ze<_e;++ze)Y._indexes[ze]=qt[ze];Y._indexes.len=_e;const tn=new f;return tn.target=Y.target,tn._score=Y._score,tn._indexes=Y._indexes,tn},A=(le,Y,ce)=>{for(var Ce=new Set,ke=0,Se=Pe,ge=0,Le=le.spaceSearches,_e=Le.length,je=0,Xe=()=>{for(let lt=je-1;lt>=0;lt--)Y._nextBeginningIndexes[ee[lt*2+0]]=ee[lt*2+1]},wt=!1,Be=0;Be<_e;++Be){q[Be]=se;var Rt=Le[Be];if(Se=_(Rt,Y),ce){if(Se===Pe)continue;wt=!0}else if(Se===Pe)return Xe(),Pe;var at=Be===_e-1;if(!at){var _t=Se._indexes,it=!0;for(let ze=0;ze<_t.len-1;ze++)if(_t[ze+1]-_t[ze]!==1){it=!1;break}if(it){var st=_t[_t.len-1]+1,l0=Y._nextBeginningIndexes[st-1];for(let ze=st-1;ze>=0&&l0===Y._nextBeginningIndexes[ze];ze--)Y._nextBeginningIndexes[ze]=st,ee[je*2+0]=ze,ee[je*2+1]=l0,je++}}ke+=Se._score/_e,q[Be]=Se._score/_e,Se._indexes[0]ke){if(ce)for(var Be=0;Be<_e;++Be)q[Be]=ht._score/_e;return ht}ce&&(Se=Y),Se._score=ke;var Be=0;for(let lt of Ce)Se._indexes[Be++]=lt;return Se._indexes.len=Be,Se},M=le=>{for(var Y=le.length,ce=le.toLowerCase(),Ce=[],ke=0,Se=!1,ge=0;ge=97&&Le<=122?Le-97:Le>=48&&Le<=57?26:Le<=127?30:31;ke|=1<<_e}return{lowerCodes:Ce,bitflags:ke,containsSpace:Se,_lower:ce}},R=le=>{for(var Y=le.length,ce=[],Ce=0,ke=!1,Se=!1,ge=0;ge=65&&Le<=90,je=_e||Le>=97&&Le<=122||Le>=48&&Le<=57,Xe=_e&&!ke||!Se||!je;ke=_e,Se=je,Xe&&(ce[Ce++]=ge)}return ce},I=le=>{for(var Y=le.length,ce=R(le),Ce=[],ke=ce[0],Se=0,ge=0;gege?Ce[ge]=ke:(ke=ce[++Se],Ce[ge]=ke===void 0?Y:ke);return Ce},V=new Map,K=new Map,ne=[],L=[],ee=[],O=[],q=[],ve=[],G=[],Q=(le,Y)=>{var ce=le[Y];if(ce!==void 0)return ce;if(typeof Y=="function")return Y(le);var Ce=Y;Array.isArray(Y)||(Ce=Y.split("."));for(var ke=Ce.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",$e=1/0,se=-$e,fe=[];fe.total=0;var Pe=null,ue=s(""),W=le=>{var Y=[],ce=0,Ce={},ke=Se=>{for(var ge=0,Le=Y[ge],_e=1;_e>1]=Y[ge],_e=1+(ge<<1)}for(var Xe=ge-1>>1;ge>0&&Le._score>1)Y[ge]=Y[Xe];Y[ge]=Le};return Ce.add=Se=>{var ge=ce;Y[ce++]=Se;for(var Le=ge-1>>1;ge>0&&Se._score>1)Y[ge]=Y[Le];Y[ge]=Se},Ce.poll=Se=>{if(ce!==0){var ge=Y[0];return Y[0]=Y[--ce],ke(),ge}},Ce.peek=Se=>{if(ce!==0)return Y[0]},Ce.replaceTop=Se=>{Y[0]=Se,ke()},Ce},re=W();return{single:n,go:r,prepare:s,cleanup:u}})}(h5)),h5.exports}var ZH=OH();const KH=V1(ZH);function jH({availableVariations:e,selectedProject:t,flags:n,overrides:r,setOverrides:l}){const[s,u]=b.useState(!1),[f,p]=b.useState(""),[h,m]=b.useState(0),y=20,w=b.useMemo(()=>r&&Object.keys(r).length>0,[r]);b.useEffect(()=>{!w&&s&&u(!1)},[w,s]);const $=b.useMemo(()=>n?Object.entries(n).filter(V=>{if(!f)return!0;const[K]=V,ne=KH.single(f.toLowerCase(),K);return ne&&ne.score>-5e3}).filter(V=>{const[K]=V,ne=K in r;return!(s&&!ne)}):[],[n,f,s,r]),E=b.useMemo(()=>{const I=h*y,V=I+y;return $.slice(I,V)},[$,h]),k=b.useCallback((I,V)=>{var ne;const K={...r,[I]:{value:V,version:((ne=r[I])==null?void 0:ne.version)||0}};l(K),fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"PUT",body:JSON.stringify(V)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(r),console.error("unable to update override",L)})},[r,t]),_=b.useCallback(async I=>{const V={...r};delete V[I],l(V);try{const K=await fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"DELETE"});if(!K.ok)throw new Error(`got ${K.status} ${K.statusText}. ${await K.text()}`)}catch(K){console.error("unable to remove override",K),l(r)}},[r,t]),A=b.useCallback(async()=>{l({});try{const I=await fetch(cr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!I.ok)throw new Error(`got ${I.status} ${I.statusText}. ${await I.text()}`)}catch(I){console.error("unable to remove all overrides",I),l(r)}},[r,t]);if(!n)return null;const M=Math.ceil($.length/y),R=I=>{switch(I){case"next":m(V=>Math.min(V+1,M-1));break;case"prev":m(V=>Math.max(V-1,0));break;case"first":m(0);break;case"last":m(M-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:RH.borderRadius.regular,children:[P.jsxs(wu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(Rv,{id:"only-show-overrides",isSelected:s,onChange:I=>{u(I)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(fn,{variant:"destructive",isDisabled:!w,onPress:async()=>{r&&(await A(),l({}),u(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs($3,{gap:"4",children:[P.jsx(Oi,{gap:"4",children:P.jsx(Sj,{"aria-label":"Search flags",children:P.jsxs(gK,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(Bv,{placeholder:"Search flags by key",onChange:I=>{p(I.target.value),m(0)},value:f,"aria-label":"Search flags input"}),P.jsx(_3,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:E.map(([I,{value:V}],K)=>{var O;const ne=(O=r[I])==null?void 0:O.value,L=I in r,ee=L?ne:V;return P.jsxs("li",{style:{backgroundColor:K%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Ye,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(J1,{asChild:!0,text:I,children:P.jsx("code",{className:L?"has-override":"",children:I})}),L&&P.jsx(fn,{"aria-label":"Remove override",onPress:()=>{_(I)},variant:"destructive",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Ye,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(NH,{availableVariations:e[I]?e[I]:[],currentValue:ee,flagValue:V,flagKey:I,updateOverride:k})})]},I)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(iN,{currentOffset:h*y,isReady:!0,onChange:I=>R(I),pageSize:y,resourceName:"flags",totalCount:$.length})})]})}const HH=async()=>{const e=await fetch(cr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function WH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[r,l]=b.useState([]),[s,u]=b.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),u(!1)};return b.useEffect(()=>{HH().then(f).catch(p=>{console.error(p),u(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):r.length>0?P.jsxs(pO,{children:[P.jsx(Oi,{gap:"1",children:P.jsxs(I1,{children:[P.jsx(fn,{children:e??"Select a project"}),P.jsx(F1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(Nv,{children:P.jsx(UK,{children:r.map(p=>P.jsx(qK,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const UH=async e=>{const t=await fetch(cr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},GH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[r,l]=b.useState(!1),s=async()=>{l(!0);try{const u=await UH(e);n(u.availableVariations),t(Vh(u.flagsState))}catch(u){Z8.warning("Sync failed"),console.error("Sync failed:",u)}finally{Z8.success("Sync successful"),l(!1)}};return e?P.jsxs(I1,{children:[P.jsx(fn,{onPress:s,isDisabled:r,style:{backgroundColor:r?"lightgray":void 0},children:r?P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(F1,{children:"Sync the selected project from the source environment"})]}):null};async function qH(e,t){const n=await fetch(cr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Pp,W8;function CE(){if(W8)return Pp;W8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Pp=e,Pp}var kp,U8;function YH(){if(U8)return kp;U8=1;var e=typeof Lo=="object"&&Lo&&Lo.Object===Object&&Lo;return kp=e,kp}var _p,G8;function SE(){if(G8)return _p;G8=1;var e=YH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return _p=n,_p}var Dp,q8;function XH(){if(q8)return Dp;q8=1;var e=SE(),t=function(){return e.Date.now()};return Dp=t,Dp}var Tp,Y8;function QH(){if(Y8)return Tp;Y8=1;var e=/\s/;function t(n){for(var r=n.length;r--&&e.test(n.charAt(r)););return r}return Tp=t,Tp}var Ap,X8;function JH(){if(X8)return Ap;X8=1;var e=QH(),t=/^\s+/;function n(r){return r&&r.slice(0,e(r)+1).replace(t,"")}return Ap=n,Ap}var Mp,Q8;function EE(){if(Q8)return Mp;Q8=1;var e=SE(),t=e.Symbol;return Mp=t,Mp}var Bp,J8;function eW(){if(J8)return Bp;J8=1;var e=EE(),t=Object.prototype,n=t.hasOwnProperty,r=t.toString,l=e?e.toStringTag:void 0;function s(u){var f=n.call(u,l),p=u[l];try{u[l]=void 0;var h=!0}catch{}var m=r.call(u);return h&&(f?u[l]=p:delete u[l]),m}return Bp=s,Bp}var Rp,eg;function tW(){if(eg)return Rp;eg=1;var e=Object.prototype,t=e.toString;function n(r){return t.call(r)}return Rp=n,Rp}var Lp,tg;function nW(){if(tg)return Lp;tg=1;var e=EE(),t=eW(),n=tW(),r="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function u(f){return f==null?f===void 0?l:r:s&&s in Object(f)?t(f):n(f)}return Lp=u,Lp}var Fp,ng;function rW(){if(ng)return Fp;ng=1;function e(t){return t!=null&&typeof t=="object"}return Fp=e,Fp}var Ip,rg;function iW(){if(rg)return Ip;rg=1;var e=nW(),t=rW(),n="[object Symbol]";function r(l){return typeof l=="symbol"||t(l)&&e(l)==n}return Ip=r,Ip}var Vp,ig;function lW(){if(ig)return Vp;ig=1;var e=JH(),t=CE(),n=iW(),r=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,u=/^0o[0-7]+$/i,f=parseInt;function p(h){if(typeof h=="number")return h;if(n(h))return r;if(t(h)){var m=typeof h.valueOf=="function"?h.valueOf():h;h=t(m)?m+"":m}if(typeof h!="string")return h===0?h:+h;h=e(h);var y=s.test(h);return y||u.test(h)?f(h.slice(2),y?2:8):l.test(h)?r:+h}return Vp=p,Vp}var Np,lg;function oW(){if(lg)return Np;lg=1;var e=CE(),t=XH(),n=lW(),r="Expected a function",l=Math.max,s=Math.min;function u(f,p,h){var m,y,w,$,E,k,_=0,A=!1,M=!1,R=!0;if(typeof f!="function")throw new TypeError(r);p=n(p)||0,e(h)&&(A=!!h.leading,M="maxWait"in h,w=M?l(n(h.maxWait)||0,p):w,R="trailing"in h?!!h.trailing:R);function I(G){var Q=m,pe=y;return m=y=void 0,_=G,$=f.apply(pe,Q),$}function V(G){return _=G,E=setTimeout(L,p),A?I(G):$}function K(G){var Q=G-k,pe=G-_,$e=p-Q;return M?s($e,w-pe):$e}function ne(G){var Q=G-k,pe=G-_;return k===void 0||Q>=p||Q<0||M&&pe>=w}function L(){var G=t();if(ne(G))return ee(G);E=setTimeout(L,K(G))}function ee(G){return E=void 0,R&&m?I(G):(m=y=void 0,$)}function O(){E!==void 0&&clearTimeout(E),_=0,m=k=y=E=void 0}function q(){return E===void 0?$:ee(t())}function ve(){var G=t(),Q=ne(G);if(m=arguments,y=this,k=G,Q){if(E===void 0)return V(k);if(M)return clearTimeout(E),E=setTimeout(L,p),I(k)}return E===void 0&&(E=setTimeout(L,p)),$}return ve.cancel=O,ve.flush=q,ve}return Np=u,Np}var aW=oW();const sW=V1(aW);function uW({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:r}){const[l,s]=b.useState(null),[u,f]=b.useState(""),[p,h]=b.useState(!1),m=b.useCallback(sW(y=>{h(!0),qH(e,y).then(w=>{if(s(w),!n){const $=w.find(E=>E.key===t);$?r($):w.length>0&&r({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{h(!1)})},300),[e,t,n,r]);return b.useEffect(()=>{m(u)},[m,u]),P.jsxs($3,{gap:"3",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(wu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(Bv,{id:"environmentSearch",value:u,onChange:y=>f(y.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Ye,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(c2,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Ye,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Fv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:y=>{const w=Array.from(y)[0],$=l==null?void 0:l.find(E=>E.key===w);$&&r($)},children:l==null?void 0:l.map(y=>P.jsx(Iv,{id:y.key,children:y.name},y.key))})})]})}function cW({context:e,setContext:t}){return P.jsxs($3,{gap:"3",children:[P.jsx(wu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(zv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(r){return r instanceof Error?`Unable to parse value as JSON: ${r.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx($E,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(X0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(pE,{})]})]})}function dW({isSubmitting:e,selectedEnvironment:t}){return P.jsx(fn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(Oi,{gap:"2",children:P.jsxs(Ye,{display:"flex",alignItems:"center",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function fW({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:r,context:l,updateProjectSettings:s}){const[u,f]=b.useState(t),[p,h]=b.useState(l),[m,y]=b.useState(!1);b.useEffect(()=>{f(t),h(l)},[t,l]);const w=async E=>{y(!0);try{E(),await s(u,p),n(u)}catch(k){console.error("Error submitting project settings:",k)}finally{y(!1)}},$=()=>{f(t),h(l)};return P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(dW,{isSubmitting:m,selectedEnvironment:r}),P.jsx(F1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(vE,{isDismissable:!1,children:P.jsx(hE,{children:P.jsx(fE,{children:({close:E})=>P.jsxs(EC,{onSubmit:k=>{k.preventDefault(),w(E)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(wu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs($3,{gap:"3",children:[P.jsx(uW,{projectKey:e,sourceEnvironmentKey:r,selectedEnvironment:u,setSelectedEnvironment:f}),P.jsx(Ye,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(cW,{context:p,setContext:h})]}),P.jsxs(uE,{style:{justifyContent:"flex-end"},children:[P.jsx(fn,{onPress:()=>{$(),E()},variant:"destructive",isDisabled:m,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",isDisabled:m,children:m?P.jsxs(Oi,{gap:"2",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function pW(){const[e,t]=b.useState(null),[n,r]=b.useState(null),[l,s]=b.useState(null),[u,f]=b.useState({}),[p,h]=b.useState({}),[m,y]=b.useState(null),[w,$]=b.useState(!1),[E,k]=b.useState("{}"),_=b.useCallback(async()=>{if(!e)return;const M=await fetch(cr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),R=await M.json();if(!M.ok)throw new Error(`Got ${M.status}, ${M.statusText} from flag fetch`);const{flagsState:I,overrides:V,sourceEnvironmentKey:K,availableVariations:ne,context:L}=R;y(Vh(I)),f(V),s(K),h(ne),k(JSON.stringify(L||"{}",null,2));const O=(await hW(e)).find(q=>q.key===K);O&&r(O)},[e]);b.useEffect(()=>{e&&_().catch(console.error.bind(console,"error when fetching flags"))},[_,e]),b.useEffect(()=>{Promise.all([_()]).catch(console.error.bind(console,"error when fetching flags"))},[_]);const A=b.useCallback(async(M,R)=>{if(e)try{const I=await fetch(cr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:M==null?void 0:M.key,context:JSON.parse(R)})});if(!I.ok)throw new Error(`Got ${I.status}, ${I.statusText} from project settings update`);const V=await I.json(),{flagsState:K,sourceEnvironmentKey:ne,context:L}=V;y(Vh(K)),s(ne),k(JSON.stringify(L||{},null,2)),r(M),await _()}catch(I){console.error("Error updating project settings:",I)}},[e,_]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Ye,{width:"100%",minWidth:"600px",children:P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Ye,{marginBottom:"2rem",width:"100%",children:P.jsxs(H5,{kind:"error",children:[P.jsx(No,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(WH,{selectedProject:e,setSelectedProject:t,setShowBanner:$}),e&&P.jsx(fW,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:r,sourceEnvironmentKey:l,context:E,updateProjectSettings:A}),P.jsx(GH,{selectedProject:e,setFlags:y,setAvailableVariations:h})]}),e&&P.jsx(Ye,{width:"100%",children:P.jsx(jH,{availableVariations:p,selectedProject:e,flags:m,overrides:u,setOverrides:M=>{f(M)}})})]})})})}async function hW(e){const t=await fetch(cr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const sd=(e,t)=>P.jsx(J1,{kind:"basic",text:t,children:e}),vW=(e,t)=>{const n=[];for(const[r,l]of Object.entries(t.features||{})){const s=e.id+r,u=l.counters||[];for(const f of u)n.push(P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"summary"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",r]}),P.jsxs(Bt,{children:["evaluated as ",String(f.value)]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},s))}return n},mW=(e,t)=>{let n="unknown",r="help";if(e.data.context){const l=t.context;if(!l)return console.error("Index event context is undefined"),[];switch(l.kind){case"user":n="user context",r="person";break;case"application":n=l.key||"unknown application",r="cloud";break;case"multi":l.user?(n=l.user.email||l.user.key||"unknown user",r="person"):l.account?(n=l.account.name||l.account.key||"unknown account",r="group"):l.application?(n=l.application.key||"unknown application",r="cloud"):(n="multi context",r="chart-dashboard");break}}else t.user?(n=(t.user.key||"unknown")+" user",r="person-outline"):n="unknown";return[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"index"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:r,size:"small"})," ",n]}),P.jsxs(Bt,{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t.data))})]},e.id)]},gW=(e,t)=>{const n=`evaluated as ${String(t.value)}`;return[P.jsxs($u,{className:"feature-row",children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"feature"}),P.jsx(Bt,{children:t.key||"unknown"}),P.jsx(Bt,{children:n}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)]},yW=(e,t)=>[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:e.data.kind}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs(Bt,{children:["value is ",t.metricValue]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)],bW=e=>{switch(e.data.kind){case"summary":return vW(e,e.data);case"index":return mW(e,e.data);case"feature":return gW(e,e.data);case"custom":return yW(e,e.data);default:return[P.jsxs($u,{children:[P.jsx(Bt,{children:(()=>{try{const t=new Date(e.timestamp);return isNaN(t.getTime())?e.timestamp:t.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx(Bt,{children:e.data.kind}),P.jsx(Bt,{}),P.jsx(Bt,{}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(e.data))})]},e.id)]}},PE=({events:e,onToggleStreaming:t})=>{const[n,r]=b.useState(!0),l=s=>{r(s),t==null||t(s)};return P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",children:[P.jsx("h3",{children:"Events Stream"}),P.jsx(Ye,{paddingBottom:"1rem",children:t&&P.jsx(fn,{variant:"primary",onPress:async()=>l(!n),children:n?"Streaming ON":"Streaming OFF"})}),P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Time"}),P.jsx(Dl,{children:"Type"}),P.jsx(Dl,{children:"Target"}),P.jsx(Dl,{children:"Event"}),P.jsx(Dl,{children:"Link"})]}),P.jsx(wE,{children:e.map(s=>bW(s))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."})]})},xW=({limit:e=1e3})=>{const[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0);b.useEffect(()=>{const p=new EventSource(cr("/events/tee"));return p.addEventListener("put",h=>{if(!h.data||h.data.trim()==="")return;let m;try{m=JSON.parse(h.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const y={id:Math.random().toString(36).slice(2,11),timestamp:m.endDate||m.startDate||Date.now(),data:m};s?n(w=>[y,...w].slice(0,e)):l(w=>[y,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{u(p),p&&r.length>0&&(n(h=>[...r,...h].slice(0,e)),l([]))};return P.jsx(PE,{events:t,onToggleStreaming:f})},wW=()=>{const[e,t]=b.useState([]),[n,r]=b.useState(!0),[l,s]=b.useState(null),[u,f]=b.useState(0),[p,h]=b.useState(null),m=async()=>{try{r(!0),s(null);const $=await fetch(cr("/dev/debug-sessions?limit=100"));if(!$.ok)throw new Error(`Failed to fetch debug sessions: ${$.status} ${$.statusText}`);const E=await $.json();t(E.sessions||[]),f(E.total_count||0)}catch($){s($ instanceof Error?$.message:"An unknown error occurred")}finally{r(!1)}};b.useEffect(()=>{m()},[]);const y=$=>{try{return new Date($).toLocaleString()}catch{return $}},w=async $=>{if(confirm(`Are you sure you want to delete debug session "${$}" and all its events? This action cannot be undone.`))try{h($),s(null);const E=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent($)}`),{method:"DELETE"});if(!E.ok)throw E.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${E.status} ${E.statusText}`);await m()}catch(E){s(E instanceof Error?E.message:"An unknown error occurred while deleting the session")}finally{h(null)}};return n?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",l]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:m,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(No,{children:"Debug Sessions"}),P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:[u," total session",u!==1?"s":""]})]}),e.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No debug sessions found"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",borderRadius:"4px",borderWidth:"1px",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Debug Session Started"}),P.jsx(Dl,{children:"Event Count"}),P.jsx(Dl,{children:"Actions"})]}),P.jsx(wE,{children:e.map($=>P.jsxs($u,{children:[P.jsx(Bt,{children:P.jsx(PK,{href:`/ui/debug-sessions/${$.key}/events`,children:y($.written_at)})}),P.jsx(Bt,{children:P.jsx(X0,{children:$.event_count.toLocaleString()})}),P.jsx(Bt,{children:P.jsx(fn,{isDisabled:p===$.key,variant:"destructive",onPress:()=>w($.key),children:P.jsx(Pt,{name:"delete",size:"small"})})})]},$.key))})]})})]})};function $W(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const CW=()=>{const{debugSessionKey:e}=R_(),[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0),[f,p]=b.useState(null),h=async()=>{var y;if(!e){p("Debug session key is required"),u(!1);return}try{u(!0),p(null);const w=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const E=((y=(await w.json()).events)==null?void 0:y.map($W))||[];n(E),l(E)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{u(!1)}};b.useEffect(()=>{h()},[e]);const m=y=>{l(t.filter(w=>{let $="";const E=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(_=>E(_)):typeof k=="object"?Object.values(k).flatMap(_=>E(_)):[];return $=E(w).join(" "),$.toLowerCase().includes(y.toLowerCase())}))};return s?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading events..."})})]}):f?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",f]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:h,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Ye,{children:[P.jsx(No,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(zv,{onChange:m,name:"debug-session-search",children:P.jsxs(b.Fragment,{children:[P.jsx(wu,{children:"Search"}),P.jsx(Bv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No events found for this debug session"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(PE,{events:r})]})};function SW(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Ye,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Ye,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(BH,{})}),P.jsx(Ye,{padding:"1rem",width:"100%",children:P.jsxs(q_,{children:[P.jsx(Ya,{path:"/",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui/flags",element:P.jsx(pW,{})}),P.jsx(Ya,{path:"/ui/events",element:P.jsx(xW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions",element:P.jsx(wW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(CW,{})})]})})]})})}const EW="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function PW({children:e}){return b.useEffect(()=>{fetch(EW).then(async t=>t.text()).then(t=>{const r=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;r.id="lp-icons-sprite",r.style.display="none",document.body.appendChild(r)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(Eg.Provider,{value:{path:""},children:e})}const kW=()=>(b.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(Z.StrictMode,{children:P.jsx(yD,{children:P.jsxs(PW,{children:[P.jsx(SW,{}),P.jsx(DH,{})]})})}));i_.createRoot(document.getElementById("root")).render(P.jsx(kW,{})); diff --git a/internal/dev_server/ui/src/EventsPage.tsx b/internal/dev_server/ui/src/EventsPage.tsx index 4736bbae7..f30fbe8e4 100644 --- a/internal/dev_server/ui/src/EventsPage.tsx +++ b/internal/dev_server/ui/src/EventsPage.tsx @@ -30,7 +30,7 @@ const EventsPage = ({ limit = 1000 }: Props) => { const newEvent: EventData = { id: Math.random().toString(36).slice(2, 11), - timestamp: Date.now(), + timestamp: (parsed.endDate || parsed.startDate || Date.now()), data: parsed, }; From 7056473fb424444c59c6054fbe6575c24273a157 Mon Sep 17 00:00:00 2001 From: Brian Van Staalduine <1323225+brianvans@users.noreply.github.com> Date: Thu, 18 Sep 2025 19:39:56 -0700 Subject: [PATCH 92/96] Heading > h3 --- internal/dev_server/ui/dist/index.html | 24 +++++++++++----------- internal/dev_server/ui/src/EventsTable.tsx | 3 ++- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/internal/dev_server/ui/dist/index.html b/internal/dev_server/ui/dist/index.html index 8a13dbcc7..918c9edde 100644 --- a/internal/dev_server/ui/dist/index.html +++ b/internal/dev_server/ui/dist/index.html @@ -5,7 +5,7 @@ LaunchDevly - +}`;var ot=nm(function(){return gt(F,Ne+"return "+xe).apply(n,z)});if(ot.source=xe,$7(ot))throw ot;return ot}function rk(a){return Mt(a).toLowerCase()}function ik(a){return Mt(a).toUpperCase()}function lk(a,c,g){if(a=Mt(a),a&&(g||c===n))return Id(a);if(!a||!(c=sn(c)))return a;var S=gn(a),D=gn(c),F=Vd(S,D),z=qu(S,D)+1;return Yr(S,F,z).join("")}function ok(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.slice(0,T2(a)+1);if(!a||!(c=sn(c)))return a;var S=gn(a),D=qu(S,gn(c))+1;return Yr(S,0,D).join("")}function ak(a,c,g){if(a=Mt(a),a&&(g||c===n))return a.replace(_u,"");if(!a||!(c=sn(c)))return a;var S=gn(a),D=Vd(S,gn(c));return Yr(S,D).join("")}function sk(a,c){var g=O,S=q;if(r0(c)){var D="separator"in c?c.separator:D;g="length"in c?rt(c.length):g,S="omission"in c?sn(c.omission):S}a=Mt(a);var F=a.length;if(Jl(a)){var z=gn(a);F=z.length}if(g>=F)return a;var H=g-tl(S);if(H<1)return S;var J=z?Yr(z,0,H).join(""):a.slice(0,H);if(D===n)return J+S;if(z&&(H+=J.length-H),C7(D)){if(a.slice(H).search(D)){var he,me=J;for(D.global||(D=ua(D.source,Mt(Tu.exec(D))+"g")),D.lastIndex=0;he=D.exec(me);)var xe=he.index;J=J.slice(0,xe===n?H:xe)}}else if(a.indexOf(sn(D),H)!=H){var De=J.lastIndexOf(D);De>-1&&(J=J.slice(0,De))}return J+S}function uk(a){return a=Mt(a),a&&ud.test(a)?a.replace(Gi,Kd):a}var ck=hl(function(a,c,g){return a+(g?" ":"")+c.toUpperCase()}),P7=wc("toUpperCase");function tm(a,c,g){return a=Mt(a),c=g?n:c,c===n?U3(a)?X3(a):j3(a):a.match(c)||[]}var nm=nt(function(a,c){try{return Z0(a,n,c)}catch(g){return $7(g)?g:new qe(g)}}),dk=Pr(function(a,c){return A0(c,function(g){g=tr(g),br(a,g,we(a[g],a))}),a});function fk(a){var c=a==null?0:a.length,g=Ke();return a=c?Lt(a,function(S){if(typeof S[1]!="function")throw new kn(u);return[g(S[0]),S[1]]}):[],nt(function(S){for(var D=-1;++Dfe)return[];var g=W,S=M0(a,W);c=Ke(c),a-=W;for(var D=Gu(S,c);++g0||c<0)?new Qe(g):(a<0?g=g.takeRight(-a):a&&(g=g.drop(a)),c!==n&&(c=rt(c),g=c<0?g.dropRight(-c):g.take(c-a)),g)},Qe.prototype.takeRightWhile=function(a){return this.reverse().takeWhile(a).reverse()},Qe.prototype.toArray=function(){return this.take(W)},xn(Qe.prototype,function(a,c){var g=/^(?:filter|find|map|reject)|While$/.test(c),S=/^(?:head|last)$/.test(c),D=B[S?"take"+(c=="last"?"Right":""):c],F=S||/^find/.test(c);D&&(B.prototype[c]=function(){var z=this.__wrapped__,H=S?[1]:arguments,J=z instanceof Qe,he=H[0],me=J||Je(z),xe=function(dt){var mt=D.apply(B,hi([dt],H));return S&&De?mt[0]:mt};me&&g&&typeof he=="function"&&he.length!=1&&(J=me=!1);var De=this.__chain__,Ne=!!this.__actions__.length,Ue=F&&!De,ot=J&&!Ne;if(!F&&me){z=ot?z:new Qe(this);var Ge=a.apply(z,H);return Ge.__actions__.push({func:rr,args:[xe],thisArg:n}),new B0(Ge,De)}return Ue&&ot?a.apply(this,H):(Ge=this.thru(xe),Ue?S?Ge.value()[0]:Ge.value():Ge)})}),A0(["pop","push","shift","sort","splice","unshift"],function(a){var c=zr[a],g=/^(?:push|sort|unshift)$/.test(a)?"tap":"thru",S=/^(?:pop|shift)$/.test(a);B.prototype[a]=function(){var D=arguments;if(S&&!this.__chain__){var F=this.value();return c.apply(Je(F)?F:[],D)}return this[g](function(z){return c.apply(Je(z)?z:[],D)})}}),xn(Qe.prototype,function(a,c){var g=B[c];if(g){var S=g.name+"";yt.call(oo,S)||(oo[S]=[]),oo[S].push({name:c,func:g})}}),oo[$o(n,A).name]=[{name:"wrapper",func:n}],Qe.prototype.clone=O2,Qe.prototype.reverse=nc,Qe.prototype.value=uo,B.prototype.at=ks,B.prototype.chain=xl,B.prototype.commit=_s,B.prototype.next=Hc,B.prototype.plant=v7,B.prototype.reverse=Uc,B.prototype.toJSON=B.prototype.valueOf=B.prototype.value=m7,B.prototype.first=B.prototype.head,Zr&&(B.prototype[Zr]=Wc),B},eo=Q3();pr?((pr.exports=eo)._=eo,aa._=eo):Ot._=eo}).call(FH)}(c1,c1.exports)),c1.exports}var VH=IH();const NH=({availableVariations:e,currentValue:t,flagKey:n,flagValue:r,updateOverride:l})=>{switch(typeof r){case"boolean":return P.jsx("div",{className:"animated-switch-container",children:P.jsxs(NO,{className:"animated-switch",isSelected:t,onChange:s=>{l(n,s)},children:[P.jsx("span",{className:"switch-text switch-text-false",children:"False"}),P.jsx("span",{className:"switch-text switch-text-true",children:"True"})]})});default:{let s=e,u=s.findIndex(p=>VH.isEqual(p.value,t));u===-1&&(s=[{_id:"OVERRIDE",name:"Local Override",value:t},...s],u=0);const f=p=>h=>{h.preventDefault();const m=Object.fromEntries(new FormData(h.currentTarget));l(n,JSON.parse(m.value)),p()};return P.jsxs(Oi,{gap:"2",children:[P.jsx(yE,{"aria-label":"flag variations select",selectedKey:u,onSelectionChange:p=>{typeof p!="number"?console.error(`selected non numeric key: ${p}`):l(n,s[p].value)},style:{maxWidth:"250px"},children:P.jsxs(b.Fragment,{children:[u!==null&&s[u]._id==="OVERRIDE"?P.jsxs(I1,{children:[P.jsxs(fn,{children:[P.jsx(Ih,{}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(F1,{children:"This value is overriden locally. Click the edit button to change the value served."})]}):P.jsxs(fn,{children:[P.jsx(Ih,{style:{maxWidth:"250px",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}}),P.jsx(Pt,{name:"chevron-down",size:"small"})]}),P.jsx(Nv,{children:P.jsx(Fv,{children:s.map((p,h)=>{const m=p.name?p.name:JSON.stringify(p.value);return P.jsx(Iv,{id:h,textValue:m,children:p._id==="OVERRIDE"?P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"devices",size:"small"}),m]})}):m},h)})})})]},".0")}),P.jsx(Ye,{width:"2rem",height:"2rem",children:P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(_3,{icon:"edit","aria-label":"edit variation value"}),P.jsx(F1,{children:"Edit the served variation value as JSON"})]}),P.jsx(vE,{children:P.jsx(hE,{children:P.jsx(fE,{children:({close:p})=>P.jsxs(EC,{onSubmit:f(p),children:[P.jsxs(zv,{defaultValue:JSON.stringify(t,null,2),name:"value",style:{fontFamily:"monospace",height:"25rem"},validate:h=>{try{return JSON.parse(h),null}catch(m){return m instanceof Error?`Unable to parse value as JSON: ${m.toString()}`:"Unable to parse value as JSON: unknown parse error"}},children:[P.jsx(wu,{children:`${n} value`}),P.jsx($E,{style:{fontFamily:"monospace"}}),P.jsx(X0,{slot:"description",children:"Update the value as JSON"}),P.jsx(pE,{})]}),P.jsxs(uE,{children:[P.jsx(fn,{onPress:p,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",children:"Save"})]})]})})})})]})})]})}}};var h5={exports:{}},zH=h5.exports,H8;function OH(){return H8||(H8=1,function(e){((t,n)=>{e.exports?e.exports=n():t.fuzzysort=n()})(zH,t=>{var n=(le,Y)=>{if(!le||!Y)return Pe;var ce=E(le);pe(Y)||(Y=$(Y));var Ce=ce.bitflags;return(Ce&Y._bitflags)!==Ce?Pe:_(ce,Y)},r=(le,Y,ce)=>{if(!le)return ce!=null&&ce.all?k(Y,ce):fe;var Ce=E(le),ke=Ce.bitflags,Se=Ce.containsSpace,ge=y((ce==null?void 0:ce.threshold)||0),Le=(ce==null?void 0:ce.limit)||$e,_e=0,je=0,Xe=Y.length;function wt(en){_ere.peek()._score&&re.replaceTop(en))}if(ce!=null&&ce.key)for(var Rt=ce.key,at=0;at-1e3&&O[pt]>se){var lt=(O[pt]+q[pt])/4;lt>O[pt]&&(O[pt]=lt)}q[pt]>O[pt]&&(O[pt]=q[pt])}}if(Se){for(let tt=0;tt-1e3&&Dt>se){var lt=(Dt+st._score)/4;lt>Dt&&(Dt=lt)}st._score>Dt&&(Dt=st._score)}}if(e0.obj=_t,e0._score=Dt,ce!=null&&ce.scoreFn){if(Dt=ce.scoreFn(e0),!Dt)continue;Dt=y(Dt),e0._score=Dt}Dt=0;--at)qt[at]=re.poll();return qt.total=_e+je,qt},l=(le,Y="",ce="")=>{for(var Ce=typeof Y=="function"?Y:void 0,ke=le.target,Se=ke.length,ge=le.indexes,Le="",_e=0,je=0,Xe=!1,wt=[],Rt=0;Rt{typeof le=="number"?le=""+le:typeof le!="string"&&(le="");var Y=M(le);return h(le,{_targetLower:Y._lower,_targetLowerCodes:Y.lowerCodes,_bitflags:Y.bitflags})},u=()=>{V.clear(),K.clear()};class f{get indexes(){return this._indexes.slice(0,this._indexes.len).sort((Y,ce)=>Y-ce)}set indexes(Y){return this._indexes=Y}highlight(Y,ce){return l(this,Y,ce)}get score(){return m(this._score)}set score(Y){this._score=y(Y)}}class p extends Array{get score(){return m(this._score)}set score(Y){this._score=y(Y)}}var h=(le,Y)=>{const ce=new f;return ce.target=le,ce.obj=Y.obj??Pe,ce._score=Y._score??se,ce._indexes=Y._indexes??[],ce._targetLower=Y._targetLower??"",ce._targetLowerCodes=Y._targetLowerCodes??Pe,ce._nextBeginningIndexes=Y._nextBeginningIndexes??Pe,ce._bitflags=Y._bitflags??0,ce},m=le=>le===se?0:le>1?le:Math.E**(((-le+1)**.04307-1)*-2),y=le=>le===0?se:le>1?le:1-Math.pow(Math.log(le)/-2+1,1/.04307),w=le=>{typeof le=="number"?le=""+le:typeof le!="string"&&(le=""),le=le.trim();var Y=M(le),ce=[];if(Y.containsSpace){var Ce=le.split(/\s+/);Ce=[...new Set(Ce)];for(var ke=0;ke{if(le.length>999)return s(le);var Y=V.get(le);return Y!==void 0||(Y=s(le),V.set(le,Y)),Y},E=le=>{if(le.length>999)return w(le);var Y=K.get(le);return Y!==void 0||(Y=w(le),K.set(le,Y)),Y},k=(le,Y)=>{var ce=[];ce.total=le.length;var Ce=(Y==null?void 0:Y.limit)||$e;if(Y!=null&&Y.key)for(var ke=0;ke=Ce)return ce}}else if(Y!=null&&Y.keys)for(var ke=0;ke=0;--je){var ge=Q(Se,Y.keys[je]);if(!ge){_e[je]=ue;continue}pe(ge)||(ge=$(ge)),ge._score=se,ge._indexes.len=0,_e[je]=ge}if(_e.obj=Se,_e._score=se,ce.push(_e),ce.length>=Ce)return ce}else for(var ke=0;ke=Ce))return ce}return ce},_=(le,Y,ce=!1,Ce=!1)=>{if(ce===!1&&le.containsSpace)return A(le,Y,Ce);for(var ke=le._lower,Se=le.lowerCodes,ge=Se[0],Le=Y._targetLowerCodes,_e=Se.length,je=Le.length,at=0,Xe=0,wt=0;;){var Rt=ge===Le[Xe];if(Rt){if(ne[wt++]=Xe,++at,at===_e)break;ge=Se[at]}if(++Xe,Xe>=je)return Pe}var at=0,_t=!1,it=0,st=Y._nextBeginningIndexes;st===Pe&&(st=Y._nextBeginningIndexes=I(Y.target)),Xe=ne[0]===0?0:st[ne[0]-1];var l0=0;if(Xe!==je)for(;;)if(Xe>=je){if(at<=0||(++l0,l0>200))break;--at;var $t=L[--it];Xe=st[$t]}else{var Rt=Se[at]===Le[Xe];if(Rt){if(L[it++]=Xe,++at,at===_e){_t=!0;break}++Xe}else Xe=st[Xe]}var ht=_e<=1?-1:Y._targetLower.indexOf(ke,ne[0]),Be=!!~ht,lt=Be?ht===0||Y._nextBeginningIndexes[ht-1]===ht:!1;if(Be&&!lt){for(var ze=0;ze{for(var pt=0,dr=0,T0=1;T0<_e;++T0)tt[T0]-tt[T0-1]!==1&&(pt-=tt[T0],++dr);var ai=tt[_e-1]-tt[0]-(_e-1);if(pt-=(12+ai)*dr,tt[0]!==0&&(pt-=tt[0]*tt[0]*.2),!_t)pt*=1e3;else{for(var En=1,T0=st[0];T024&&(pt*=(En-24)*10)}return pt-=(je-_e)/2,Be&&(pt/=1+_e*_e*1),lt&&(pt/=1+_e*_e*1),pt-=(je-_e)/2,pt};if(_t)if(lt){for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(ne)}else var qt=L,en=Dt(L);else{if(Be)for(var ze=0;ze<_e;++ze)ne[ze]=ht+ze;var qt=ne,en=Dt(qt)}Y._score=en;for(var ze=0;ze<_e;++ze)Y._indexes[ze]=qt[ze];Y._indexes.len=_e;const tn=new f;return tn.target=Y.target,tn._score=Y._score,tn._indexes=Y._indexes,tn},A=(le,Y,ce)=>{for(var Ce=new Set,ke=0,Se=Pe,ge=0,Le=le.spaceSearches,_e=Le.length,je=0,Xe=()=>{for(let lt=je-1;lt>=0;lt--)Y._nextBeginningIndexes[ee[lt*2+0]]=ee[lt*2+1]},wt=!1,Be=0;Be<_e;++Be){q[Be]=se;var Rt=Le[Be];if(Se=_(Rt,Y),ce){if(Se===Pe)continue;wt=!0}else if(Se===Pe)return Xe(),Pe;var at=Be===_e-1;if(!at){var _t=Se._indexes,it=!0;for(let ze=0;ze<_t.len-1;ze++)if(_t[ze+1]-_t[ze]!==1){it=!1;break}if(it){var st=_t[_t.len-1]+1,l0=Y._nextBeginningIndexes[st-1];for(let ze=st-1;ze>=0&&l0===Y._nextBeginningIndexes[ze];ze--)Y._nextBeginningIndexes[ze]=st,ee[je*2+0]=ze,ee[je*2+1]=l0,je++}}ke+=Se._score/_e,q[Be]=Se._score/_e,Se._indexes[0]ke){if(ce)for(var Be=0;Be<_e;++Be)q[Be]=ht._score/_e;return ht}ce&&(Se=Y),Se._score=ke;var Be=0;for(let lt of Ce)Se._indexes[Be++]=lt;return Se._indexes.len=Be,Se},M=le=>{for(var Y=le.length,ce=le.toLowerCase(),Ce=[],ke=0,Se=!1,ge=0;ge=97&&Le<=122?Le-97:Le>=48&&Le<=57?26:Le<=127?30:31;ke|=1<<_e}return{lowerCodes:Ce,bitflags:ke,containsSpace:Se,_lower:ce}},R=le=>{for(var Y=le.length,ce=[],Ce=0,ke=!1,Se=!1,ge=0;ge=65&&Le<=90,je=_e||Le>=97&&Le<=122||Le>=48&&Le<=57,Xe=_e&&!ke||!Se||!je;ke=_e,Se=je,Xe&&(ce[Ce++]=ge)}return ce},I=le=>{for(var Y=le.length,ce=R(le),Ce=[],ke=ce[0],Se=0,ge=0;gege?Ce[ge]=ke:(ke=ce[++Se],Ce[ge]=ke===void 0?Y:ke);return Ce},V=new Map,K=new Map,ne=[],L=[],ee=[],O=[],q=[],ve=[],G=[],Q=(le,Y)=>{var ce=le[Y];if(ce!==void 0)return ce;if(typeof Y=="function")return Y(le);var Ce=Y;Array.isArray(Y)||(Ce=Y.split("."));for(var ke=Ce.length,Se=-1;le&&++Setypeof le=="object"&&typeof le._bitflags=="number",$e=1/0,se=-$e,fe=[];fe.total=0;var Pe=null,ue=s(""),W=le=>{var Y=[],ce=0,Ce={},ke=Se=>{for(var ge=0,Le=Y[ge],_e=1;_e>1]=Y[ge],_e=1+(ge<<1)}for(var Xe=ge-1>>1;ge>0&&Le._score>1)Y[ge]=Y[Xe];Y[ge]=Le};return Ce.add=Se=>{var ge=ce;Y[ce++]=Se;for(var Le=ge-1>>1;ge>0&&Se._score>1)Y[ge]=Y[Le];Y[ge]=Se},Ce.poll=Se=>{if(ce!==0){var ge=Y[0];return Y[0]=Y[--ce],ke(),ge}},Ce.peek=Se=>{if(ce!==0)return Y[0]},Ce.replaceTop=Se=>{Y[0]=Se,ke()},Ce},re=W();return{single:n,go:r,prepare:s,cleanup:u}})}(h5)),h5.exports}var ZH=OH();const KH=V1(ZH);function jH({availableVariations:e,selectedProject:t,flags:n,overrides:r,setOverrides:l}){const[s,u]=b.useState(!1),[f,p]=b.useState(""),[h,m]=b.useState(0),y=20,w=b.useMemo(()=>r&&Object.keys(r).length>0,[r]);b.useEffect(()=>{!w&&s&&u(!1)},[w,s]);const $=b.useMemo(()=>n?Object.entries(n).filter(V=>{if(!f)return!0;const[K]=V,ne=KH.single(f.toLowerCase(),K);return ne&&ne.score>-5e3}).filter(V=>{const[K]=V,ne=K in r;return!(s&&!ne)}):[],[n,f,s,r]),E=b.useMemo(()=>{const I=h*y,V=I+y;return $.slice(I,V)},[$,h]),k=b.useCallback((I,V)=>{var ne;const K={...r,[I]:{value:V,version:((ne=r[I])==null?void 0:ne.version)||0}};l(K),fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"PUT",body:JSON.stringify(V)}).then(async L=>{if(!L.ok)throw new Error(`got ${L.status} ${L.statusText}. ${await L.text()}`)}).catch(L=>{l(r),console.error("unable to update override",L)})},[r,t]),_=b.useCallback(async I=>{const V={...r};delete V[I],l(V);try{const K=await fetch(cr(`/dev/projects/${t}/overrides/${I}`),{method:"DELETE"});if(!K.ok)throw new Error(`got ${K.status} ${K.statusText}. ${await K.text()}`)}catch(K){console.error("unable to remove override",K),l(r)}},[r,t]),A=b.useCallback(async()=>{l({});try{const I=await fetch(cr(`/dev/projects/${t}/overrides`),{method:"DELETE"});if(!I.ok)throw new Error(`got ${I.status} ${I.statusText}. ${await I.text()}`)}catch(I){console.error("unable to remove all overrides",I),l(r)}},[r,t]);if(!n)return null;const M=Math.ceil($.length/y),R=I=>{switch(I){case"next":m(V=>Math.min(V+1,M-1));break;case"prev":m(V=>Math.max(V-1,0));break;case"first":m(0);break;case"last":m(M-1);break;default:console.error("invalid page change direction.")}};return P.jsxs(P.Fragment,{children:[P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",padding:"1rem",background:"var(--lp-color-bg-feedback-info)",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-feedback-info)",borderRadius:RH.borderRadius.regular,children:[P.jsxs(wu,{htmlFor:"only-show-overrides",className:"only-show-overrides-label",children:[P.jsx(Rv,{id:"only-show-overrides",isSelected:s,onChange:I=>{u(I)},isDisabled:!w,style:{display:"inline-block",marginRight:".25rem"}}),"Only show flags with overrides"]}),P.jsxs(fn,{variant:"destructive",isDisabled:!w,onPress:async()=>{r&&(await A(),l({}),u(!1))},children:[P.jsx(Pt,{size:"medium",name:"cancel"}),"Remove all overrides"]})]}),P.jsxs($3,{gap:"4",children:[P.jsx(Oi,{gap:"4",children:P.jsx(Sj,{"aria-label":"Search flags",children:P.jsxs(gK,{children:[P.jsx(Pt,{name:"search",size:"small"}),P.jsx(Bv,{placeholder:"Search flags by key",onChange:I=>{p(I.target.value),m(0)},value:f,"aria-label":"Search flags input"}),P.jsx(_3,{"aria-label":"clear",icon:"cancel-circle-outline",size:"small",variant:"minimal",onPress:()=>p("")})]})})}),P.jsx("ul",{className:"flags-list",children:E.map(([I,{value:V}],K)=>{var O;const ne=(O=r[I])==null?void 0:O.value,L=I in r,ee=L?ne:V;return P.jsxs("li",{style:{backgroundColor:K%2===0?"var(--lp-color-bg-ui-primary)":"var(--lp-color-bg-ui-secondary)",height:"2rem",display:"flex",alignItems:"center"},children:[P.jsx(Ye,{whiteSpace:"nowrap",paddingLeft:"1rem",paddingRight:"1rem",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(J1,{asChild:!0,text:I,children:P.jsx("code",{className:L?"has-override":"",children:I})}),L&&P.jsx(fn,{"aria-label":"Remove override",onPress:()=>{_(I)},variant:"destructive",children:P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"cancel",size:"small"}),"Remove override"]})})]})}),P.jsx(Ye,{alignItems:"center",paddingRight:"1rem",overflow:"hidden",flexShrink:0,children:P.jsx(NH,{availableVariations:e[I]?e[I]:[],currentValue:ee,flagValue:V,flagKey:I,updateOverride:k})})]},I)})})]}),P.jsx("div",{style:{display:"flex",justifyContent:"flex-end",marginTop:"1rem"},children:P.jsx(iN,{currentOffset:h*y,isReady:!0,onChange:I=>R(I),pageSize:y,resourceName:"flags",totalCount:$.length})})]})}const HH=async()=>{const e=await fetch(cr("/dev/projects")),t=await e.json();if(!e.ok)throw new Error(`Got ${e.status}, ${e.statusText} from projects fetch`);return t};function WH({selectedProject:e,setSelectedProject:t,setShowBanner:n}){const[r,l]=b.useState([]),[s,u]=b.useState(!0),f=p=>{l(p),n(p.length==0),p.length==1&&t(p[0]),u(!1)};return b.useEffect(()=>{HH().then(f).catch(p=>{console.error(p),u(!1)}),l([])},[]),s?P.jsxs("div",{style:{textAlign:"center"},children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"100%",height:"2rem"}}),P.jsx("p",{children:"Projects are loading"})]}):r.length>0?P.jsxs(pO,{children:[P.jsx(Oi,{gap:"1",children:P.jsxs(I1,{children:[P.jsx(fn,{children:e??"Select a project"}),P.jsx(F1,{children:e==null?"Please select a project":"This is the selected project"})]})}),P.jsx(Nv,{children:P.jsx(UK,{children:r.map(p=>P.jsx(qK,{onAction:()=>{t(p)},children:p},p))})})]}):P.jsxs(H5,{kind:"error",children:[P.jsx(Bl,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}const UH=async e=>{const t=await fetch(cr(`/dev/projects/${e}?expand=availableVariations`),{method:"PATCH",body:JSON.stringify({})}),n=await t.json();if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from projects fetch`);return n},GH=({selectedProject:e,setFlags:t,setAvailableVariations:n})=>{const[r,l]=b.useState(!1),s=async()=>{l(!0);try{const u=await UH(e);n(u.availableVariations),t(Vh(u.flagsState))}catch(u){Z8.warning("Sync failed"),console.error("Sync failed:",u)}finally{Z8.success("Sync successful"),l(!1)}};return e?P.jsxs(I1,{children:[P.jsx(fn,{onPress:s,isDisabled:r,style:{backgroundColor:r?"lightgray":void 0},children:r?P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}):P.jsx("div",{children:P.jsxs(Oi,{gap:"1",children:[P.jsx(Pt,{name:"sync",size:"small"}),P.jsx("span",{children:"Sync"})]})})}),P.jsx(F1,{children:"Sync the selected project from the source environment"})]}):null};async function qH(e,t){const n=await fetch(cr(`/dev/projects/${e}/environments?limit=20${t?`&name=${t}`:""}`));if(!n.ok)throw new Error(`Got ${n.status}, ${n.statusText} from environments fetch`);return n.json()}var Pp,W8;function CE(){if(W8)return Pp;W8=1;function e(t){var n=typeof t;return t!=null&&(n=="object"||n=="function")}return Pp=e,Pp}var kp,U8;function YH(){if(U8)return kp;U8=1;var e=typeof Fo=="object"&&Fo&&Fo.Object===Object&&Fo;return kp=e,kp}var _p,G8;function SE(){if(G8)return _p;G8=1;var e=YH(),t=typeof self=="object"&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return _p=n,_p}var Dp,q8;function XH(){if(q8)return Dp;q8=1;var e=SE(),t=function(){return e.Date.now()};return Dp=t,Dp}var Tp,Y8;function QH(){if(Y8)return Tp;Y8=1;var e=/\s/;function t(n){for(var r=n.length;r--&&e.test(n.charAt(r)););return r}return Tp=t,Tp}var Ap,X8;function JH(){if(X8)return Ap;X8=1;var e=QH(),t=/^\s+/;function n(r){return r&&r.slice(0,e(r)+1).replace(t,"")}return Ap=n,Ap}var Mp,Q8;function EE(){if(Q8)return Mp;Q8=1;var e=SE(),t=e.Symbol;return Mp=t,Mp}var Bp,J8;function eW(){if(J8)return Bp;J8=1;var e=EE(),t=Object.prototype,n=t.hasOwnProperty,r=t.toString,l=e?e.toStringTag:void 0;function s(u){var f=n.call(u,l),p=u[l];try{u[l]=void 0;var h=!0}catch{}var m=r.call(u);return h&&(f?u[l]=p:delete u[l]),m}return Bp=s,Bp}var Rp,eg;function tW(){if(eg)return Rp;eg=1;var e=Object.prototype,t=e.toString;function n(r){return t.call(r)}return Rp=n,Rp}var Lp,tg;function nW(){if(tg)return Lp;tg=1;var e=EE(),t=eW(),n=tW(),r="[object Null]",l="[object Undefined]",s=e?e.toStringTag:void 0;function u(f){return f==null?f===void 0?l:r:s&&s in Object(f)?t(f):n(f)}return Lp=u,Lp}var Fp,ng;function rW(){if(ng)return Fp;ng=1;function e(t){return t!=null&&typeof t=="object"}return Fp=e,Fp}var Ip,rg;function iW(){if(rg)return Ip;rg=1;var e=nW(),t=rW(),n="[object Symbol]";function r(l){return typeof l=="symbol"||t(l)&&e(l)==n}return Ip=r,Ip}var Vp,ig;function lW(){if(ig)return Vp;ig=1;var e=JH(),t=CE(),n=iW(),r=NaN,l=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,u=/^0o[0-7]+$/i,f=parseInt;function p(h){if(typeof h=="number")return h;if(n(h))return r;if(t(h)){var m=typeof h.valueOf=="function"?h.valueOf():h;h=t(m)?m+"":m}if(typeof h!="string")return h===0?h:+h;h=e(h);var y=s.test(h);return y||u.test(h)?f(h.slice(2),y?2:8):l.test(h)?r:+h}return Vp=p,Vp}var Np,lg;function oW(){if(lg)return Np;lg=1;var e=CE(),t=XH(),n=lW(),r="Expected a function",l=Math.max,s=Math.min;function u(f,p,h){var m,y,w,$,E,k,_=0,A=!1,M=!1,R=!0;if(typeof f!="function")throw new TypeError(r);p=n(p)||0,e(h)&&(A=!!h.leading,M="maxWait"in h,w=M?l(n(h.maxWait)||0,p):w,R="trailing"in h?!!h.trailing:R);function I(G){var Q=m,pe=y;return m=y=void 0,_=G,$=f.apply(pe,Q),$}function V(G){return _=G,E=setTimeout(L,p),A?I(G):$}function K(G){var Q=G-k,pe=G-_,$e=p-Q;return M?s($e,w-pe):$e}function ne(G){var Q=G-k,pe=G-_;return k===void 0||Q>=p||Q<0||M&&pe>=w}function L(){var G=t();if(ne(G))return ee(G);E=setTimeout(L,K(G))}function ee(G){return E=void 0,R&&m?I(G):(m=y=void 0,$)}function O(){E!==void 0&&clearTimeout(E),_=0,m=k=y=E=void 0}function q(){return E===void 0?$:ee(t())}function ve(){var G=t(),Q=ne(G);if(m=arguments,y=this,k=G,Q){if(E===void 0)return V(k);if(M)return clearTimeout(E),E=setTimeout(L,p),I(k)}return E===void 0&&(E=setTimeout(L,p)),$}return ve.cancel=O,ve.flush=q,ve}return Np=u,Np}var aW=oW();const sW=V1(aW);function uW({projectKey:e,sourceEnvironmentKey:t,selectedEnvironment:n,setSelectedEnvironment:r}){const[l,s]=b.useState(null),[u,f]=b.useState(""),[p,h]=b.useState(!1),m=b.useCallback(sW(y=>{h(!0),qH(e,y).then(w=>{if(s(w),!n){const $=w.find(E=>E.key===t);$?r($):w.length>0&&r({name:"",key:t||""})}}).catch(w=>{console.error("Error fetching environments:",w)}).finally(()=>{h(!1)})},300),[e,t,n,r]);return b.useEffect(()=>{m(u)},[m,u]),P.jsxs($3,{gap:"3",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:P.jsx(wu,{htmlFor:"environmentSearch",style:{fontSize:"1rem",fontWeight:"bold"},children:"Environments"})}),P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",children:[P.jsxs("div",{style:{position:"relative",flexGrow:1},children:[P.jsx(Bv,{id:"environmentSearch",value:u,onChange:y=>f(y.target.value||""),placeholder:"Search environments...","aria-label":"Search environments"}),p&&P.jsx(Ye,{position:"absolute",right:"0.5rem",top:"50%",transform:"translateY(-50%)",children:P.jsx(c2,{size:"small","aria-label":"Loading environments"})})]}),P.jsx("span",{style:{whiteSpace:"nowrap",flexShrink:0,marginLeft:"0.5rem"},children:n!=null&&n.name?n.name:P.jsx("code",{children:n==null?void 0:n.key})})]}),P.jsx(Ye,{position:"relative",height:"12.5rem",overflow:"auto",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"0.5rem",borderStyle:"solid",borderWidth:"0.0625rem",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsx(Fv,{"aria-label":"Environments",selectionMode:"single",selectedKeys:[(n==null?void 0:n.key)||""],onSelectionChange:y=>{const w=Array.from(y)[0],$=l==null?void 0:l.find(E=>E.key===w);$&&r($)},children:l==null?void 0:l.map(y=>P.jsx(Iv,{id:y.key,children:y.name},y.key))})})]})}function cW({context:e,setContext:t}){return P.jsxs($3,{gap:"3",children:[P.jsx(wu,{style:{fontSize:"1rem",fontWeight:"bold"},children:"Context"}),P.jsxs(zv,{value:e,onChange:t,validate:n=>{try{return JSON.parse(n),null}catch(r){return r instanceof Error?`Unable to parse value as JSON: ${r.toString()}`:"Unable to parse value as JSON: unknown parse error"}},style:{flexGrow:1,display:"flex",flexDirection:"column"},children:[P.jsx($E,{style:{fontFamily:"monospace",flexGrow:1,minHeight:"18.75rem",backgroundColor:"var(--lp-color-bg-ui-secondary)"}}),P.jsx(X0,{slot:"description",children:"Edit the context as JSON"}),P.jsx(pE,{})]})]})}function dW({isSubmitting:e,selectedEnvironment:t}){return P.jsx(fn,{variant:"primary",type:"submit",isDisabled:e,children:e?P.jsx(Oi,{gap:"2",children:P.jsxs(Ye,{display:"flex",alignItems:"center",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0}),P.jsx("span",{style:{marginLeft:"0.5rem"},children:"Updating..."})]})}):t?P.jsxs(Oi,{gap:"2",children:[P.jsx(Pt,{name:"bullseye-arrow",size:"medium","data-testid":"icon-bullseye-arrow"}),P.jsx("span",{children:t})]}):"Environment"})}function fW({projectKey:e,selectedEnvironment:t,setSelectedEnvironment:n,sourceEnvironmentKey:r,context:l,updateProjectSettings:s}){const[u,f]=b.useState(t),[p,h]=b.useState(l),[m,y]=b.useState(!1);b.useEffect(()=>{f(t),h(l)},[t,l]);const w=async E=>{y(!0);try{E(),await s(u,p),n(u)}catch(k){console.error("Error submitting project settings:",k)}finally{y(!1)}},$=()=>{f(t),h(l)};return P.jsxs(pS,{children:[P.jsxs(I1,{children:[P.jsx(dW,{isSubmitting:m,selectedEnvironment:r}),P.jsx(F1,{children:P.jsx("span",{children:"Current environment. Click to update."})})]}),P.jsx(vE,{isDismissable:!1,children:P.jsx(hE,{children:P.jsx(fE,{children:({close:E})=>P.jsxs(EC,{onSubmit:k=>{k.preventDefault(),w(E)},style:{display:"flex",flexDirection:"column",padding:"1rem"},children:[P.jsx(wu,{slot:"title",style:{flexGrow:0,paddingBottom:"2rem"},children:"Project Settings"}),P.jsxs($3,{gap:"3",children:[P.jsx(uW,{projectKey:e,sourceEnvironmentKey:r,selectedEnvironment:u,setSelectedEnvironment:f}),P.jsx(Ye,{height:"1px",backgroundColor:"var(--lp-color-border-ui-primary)",margin:"1rem 0"}),P.jsx(cW,{context:p,setContext:h})]}),P.jsxs(uE,{style:{justifyContent:"flex-end"},children:[P.jsx(fn,{onPress:()=>{$(),E()},variant:"destructive",isDisabled:m,children:"Cancel"}),P.jsx(fn,{variant:"primary",type:"submit",isDisabled:m,children:m?P.jsxs(Oi,{gap:"2",children:[P.jsx(c2,{"aria-label":"loading",isIndeterminate:!0,style:{width:"16px",height:"16px"}}),P.jsx("span",{children:"Updating..."})]}):"Confirm"})]})]})})})})]})}function pW(){const[e,t]=b.useState(null),[n,r]=b.useState(null),[l,s]=b.useState(null),[u,f]=b.useState({}),[p,h]=b.useState({}),[m,y]=b.useState(null),[w,$]=b.useState(!1),[E,k]=b.useState("{}"),_=b.useCallback(async()=>{if(!e)return;const M=await fetch(cr(`/dev/projects/${e}?expand=overrides&expand=availableVariations`)),R=await M.json();if(!M.ok)throw new Error(`Got ${M.status}, ${M.statusText} from flag fetch`);const{flagsState:I,overrides:V,sourceEnvironmentKey:K,availableVariations:ne,context:L}=R;y(Vh(I)),f(V),s(K),h(ne),k(JSON.stringify(L||"{}",null,2));const O=(await hW(e)).find(q=>q.key===K);O&&r(O)},[e]);b.useEffect(()=>{e&&_().catch(console.error.bind(console,"error when fetching flags"))},[_,e]),b.useEffect(()=>{Promise.all([_()]).catch(console.error.bind(console,"error when fetching flags"))},[_]);const A=b.useCallback(async(M,R)=>{if(e)try{const I=await fetch(cr(`/dev/projects/${e}`),{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({sourceEnvironmentKey:M==null?void 0:M.key,context:JSON.parse(R)})});if(!I.ok)throw new Error(`Got ${I.status}, ${I.statusText} from project settings update`);const V=await I.json(),{flagsState:K,sourceEnvironmentKey:ne,context:L}=V;y(Vh(K)),s(ne),k(JSON.stringify(L||{},null,2)),r(M),await _()}catch(I){console.error("Error updating project settings:",I)}},[e,_]);return P.jsx("div",{style:{width:"100%"},children:P.jsx(Ye,{width:"100%",minWidth:"600px",children:P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",children:[w&&P.jsx(Ye,{marginBottom:"2rem",width:"100%",children:P.jsxs(H5,{kind:"error",children:[P.jsx(Bl,{children:"No projects."}),P.jsx(X0,{children:"Add one via"}),P.jsx(J1,{kind:"basic",text:"ldcli dev-server add-project --help",children:"ldcli dev-server add-project --help"})]})}),!w&&P.jsxs(Ye,{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:"2rem",width:"100%",children:[P.jsx(WH,{selectedProject:e,setSelectedProject:t,setShowBanner:$}),e&&P.jsx(fW,{projectKey:e,selectedEnvironment:n,setSelectedEnvironment:r,sourceEnvironmentKey:l,context:E,updateProjectSettings:A}),P.jsx(GH,{selectedProject:e,setFlags:y,setAvailableVariations:h})]}),e&&P.jsx(Ye,{width:"100%",children:P.jsx(jH,{availableVariations:p,selectedProject:e,flags:m,overrides:u,setOverrides:M=>{f(M)}})})]})})})}async function hW(e){const t=await fetch(cr(`/dev/projects/${e}/environments`));if(!t.ok)throw new Error(`Got ${t.status}, ${t.statusText} from environments fetch`);return t.json()}const sd=(e,t)=>P.jsx(J1,{kind:"basic",text:t,children:e}),vW=(e,t)=>{const n=[];for(const[r,l]of Object.entries(t.features||{})){const s=e.id+r,u=l.counters||[];for(const f of u)n.push(P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"summary"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"flag",size:"small"})," ",r]}),P.jsxs(Bt,{children:["evaluated as ",String(f.value)]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},s))}return n},mW=(e,t)=>{let n="unknown",r="help";if(e.data.context){const l=t.context;if(!l)return console.error("Index event context is undefined"),[];switch(l.kind){case"user":n="user context",r="person";break;case"application":n=l.key||"unknown application",r="cloud";break;case"multi":l.user?(n=l.user.email||l.user.key||"unknown user",r="person"):l.account?(n=l.account.name||l.account.key||"unknown account",r="group"):l.application?(n=l.application.key||"unknown application",r="cloud"):(n="multi context",r="chart-dashboard");break}}else t.user?(n=(t.user.key||"unknown")+" user",r="person-outline"):n="unknown";return[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"index"}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:r,size:"small"})," ",n]}),P.jsxs(Bt,{children:["indexed ",JSON.stringify(t).length," bytes"]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t.data))})]},e.id)]},gW=(e,t)=>{const n=`evaluated as ${String(t.value)}`;return[P.jsxs($u,{className:"feature-row",children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:"feature"}),P.jsx(Bt,{children:t.key||"unknown"}),P.jsx(Bt,{children:n}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)]},yW=(e,t)=>[P.jsxs($u,{children:[P.jsx(Bt,{children:new Date(e.timestamp).toLocaleTimeString()}),P.jsx(Bt,{children:e.data.kind}),P.jsxs(Bt,{children:[P.jsx(Pt,{name:"chart-histogram",size:"small"})," ",t.key]}),P.jsxs(Bt,{children:["value is ",t.metricValue]}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(t))})]},e.id)],bW=e=>{switch(e.data.kind){case"summary":return vW(e,e.data);case"index":return mW(e,e.data);case"feature":return gW(e,e.data);case"custom":return yW(e,e.data);default:return[P.jsxs($u,{children:[P.jsx(Bt,{children:(()=>{try{const t=new Date(e.timestamp);return isNaN(t.getTime())?e.timestamp:t.toLocaleTimeString()}catch{return e.timestamp}})()}),P.jsx(Bt,{children:e.data.kind}),P.jsx(Bt,{}),P.jsx(Bt,{}),P.jsx(Bt,{children:sd("Copy to clipboard",JSON.stringify(e.data))})]},e.id)]}},PE=({events:e,onToggleStreaming:t})=>{const[n,r]=b.useState(!0),l=s=>{r(s),t==null||t(s)};return P.jsxs(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",children:[P.jsx(Bl,{children:"Events Stream"}),P.jsx(Ye,{paddingBottom:"1rem",children:t&&P.jsx(fn,{variant:"primary",onPress:async()=>l(!n),children:n?"Streaming ON":"Streaming OFF"})}),P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Time"}),P.jsx(Dl,{children:"Type"}),P.jsx(Dl,{children:"Target"}),P.jsx(Dl,{children:"Event"}),P.jsx(Dl,{children:"Link"})]}),P.jsx(wE,{children:e.map(s=>bW(s))})]}),e.length===0&&P.jsx("p",{children:"No events received yet..."})]})},xW=({limit:e=1e3})=>{const[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0);b.useEffect(()=>{const p=new EventSource(cr("/events/tee"));return p.addEventListener("put",h=>{if(!h.data||h.data.trim()==="")return;let m;try{m=JSON.parse(h.data)}catch(w){console.error("Failed to parse event data as JSON:",w);return}const y={id:Math.random().toString(36).slice(2,11),timestamp:m.endDate||m.startDate||Date.now(),data:m};s?n(w=>[y,...w].slice(0,e)):l(w=>[y,...w].slice(0,e))}),()=>{console.log("closing event source"),p.close()}},[s,e]);const f=p=>{u(p),p&&r.length>0&&(n(h=>[...r,...h].slice(0,e)),l([]))};return P.jsx(PE,{events:t,onToggleStreaming:f})},wW=()=>{const[e,t]=b.useState([]),[n,r]=b.useState(!0),[l,s]=b.useState(null),[u,f]=b.useState(0),[p,h]=b.useState(null),m=async()=>{try{r(!0),s(null);const $=await fetch(cr("/dev/debug-sessions?limit=100"));if(!$.ok)throw new Error(`Failed to fetch debug sessions: ${$.status} ${$.statusText}`);const E=await $.json();t(E.sessions||[]),f(E.total_count||0)}catch($){s($ instanceof Error?$.message:"An unknown error occurred")}finally{r(!1)}};b.useEffect(()=>{m()},[]);const y=$=>{try{return new Date($).toLocaleString()}catch{return $}},w=async $=>{if(confirm(`Are you sure you want to delete debug session "${$}" and all its events? This action cannot be undone.`))try{h($),s(null);const E=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent($)}`),{method:"DELETE"});if(!E.ok)throw E.status===404?new Error("Debug session not found"):new Error(`Failed to delete debug session: ${E.status} ${E.statusText}`);await m()}catch(E){s(E instanceof Error?E.message:"An unknown error occurred while deleting the session")}finally{h(null)}};return n?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Bl,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading debug sessions..."})})]}):l?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Bl,{children:"Debug Sessions"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",l]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:m,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsxs(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:[P.jsx(Bl,{children:"Debug Sessions"}),P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:[u," total session",u!==1?"s":""]})]}),e.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No debug sessions found"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Debug sessions will appear here when events are captured"})})]}):P.jsx(Ye,{display:"flex",flexDirection:"column",width:"100%",minWidth:"600px",borderRadius:"4px",borderWidth:"1px",borderColor:"var(--lp-color-border-ui-primary)",children:P.jsxs(bE,{children:[P.jsxs(xE,{children:[P.jsx(Dl,{isRowHeader:!0,children:"Debug Session Started"}),P.jsx(Dl,{children:"Event Count"}),P.jsx(Dl,{children:"Actions"})]}),P.jsx(wE,{children:e.map($=>P.jsxs($u,{children:[P.jsx(Bt,{children:P.jsx(PK,{href:`/ui/debug-sessions/${$.key}/events`,children:y($.written_at)})}),P.jsx(Bt,{children:P.jsx(X0,{children:$.event_count.toLocaleString()})}),P.jsx(Bt,{children:P.jsx(fn,{isDisabled:p===$.key,variant:"destructive",onPress:()=>w($.key),children:P.jsx(Pt,{name:"delete",size:"small"})})})]},$.key))})]})})]})};function $W(e){return{id:e.id.toString(),timestamp:new Date(e.written_at).getTime(),data:e.data}}const CW=()=>{const{debugSessionKey:e}=R_(),[t,n]=b.useState([]),[r,l]=b.useState([]),[s,u]=b.useState(!0),[f,p]=b.useState(null),h=async()=>{var y;if(!e){p("Debug session key is required"),u(!1);return}try{u(!0),p(null);const w=await fetch(cr(`/dev/debug-sessions/${encodeURIComponent(e)}/events?limit=1000`));if(!w.ok)throw new Error(`Failed to fetch events: ${w.status} ${w.statusText}`);const E=((y=(await w.json()).events)==null?void 0:y.map($W))||[];n(E),l(E)}catch(w){p(w instanceof Error?w.message:"An unknown error occurred")}finally{u(!1)}};b.useEffect(()=>{h()},[e]);const m=y=>{l(t.filter(w=>{let $="";const E=k=>k==null?[]:typeof k=="string"||typeof k=="number"||typeof k=="boolean"?[String(k)]:Array.isArray(k)?k.flatMap(_=>E(_)):typeof k=="object"?Object.values(k).flatMap(_=>E(_)):[];return $=E(w).join(" "),$.toLowerCase().includes(y.toLowerCase())}))};return s?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Bl,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(c2,{isIndeterminate:!0})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"Loading events..."})})]}):f?P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Bl,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",children:["Session: ",e]})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(H5,{kind:"error",children:P.jsxs(X0,{children:["Error: ",f]})})}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(fn,{onPress:h,children:"Retry"})})]}):P.jsxs(Ye,{padding:"2rem",width:"100%",children:[P.jsx(Ye,{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:"1rem",children:P.jsxs(Ye,{children:[P.jsx(Bl,{children:"Debug Session Events"}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsxs(X0,{color:"var(--lp-color-text-ui-secondary)",style:{fontFamily:"monospace"},children:["Session: ",e]})})]})}),P.jsx(zv,{onChange:m,name:"debug-session-search",children:P.jsxs(b.Fragment,{children:[P.jsx(wu,{children:"Search"}),P.jsx(Bv,{placeholder:"Try a type like 'summary', or an email address, or similar"})]},".0")}),t.length===0?P.jsxs(Ye,{padding:"2rem",textAlign:"center",backgroundColor:"var(--lp-color-bg-ui-secondary)",borderRadius:"4px",children:[P.jsx(Pt,{name:"data",size:"large"}),P.jsx(Ye,{marginTop:"1rem",children:P.jsx(X0,{children:"No events found for this debug session"})}),P.jsx(Ye,{marginTop:"0.5rem",children:P.jsx(X0,{color:"var(--lp-color-text-ui-secondary)",children:"Events will appear here when they are captured for this session"})})]}):P.jsx(PE,{events:r})]})};function SW(){return P.jsx("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",padding:"1rem"},children:P.jsxs(Ye,{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",maxWidth:"900px",minWidth:"600px",padding:"2rem",children:[P.jsx(Ye,{display:"flex",justifyContent:"flex-start",width:"100%",children:P.jsx(BH,{})}),P.jsx(Ye,{padding:"1rem",width:"100%",children:P.jsxs(q_,{children:[P.jsx(Ya,{path:"/",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui",element:P.jsx(ym,{to:"/ui/flags",replace:!0})}),P.jsx(Ya,{path:"/ui/flags",element:P.jsx(pW,{})}),P.jsx(Ya,{path:"/ui/events",element:P.jsx(xW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions",element:P.jsx(wW,{})}),P.jsx(Ya,{path:"/ui/debug-sessions/:debugSessionKey/events",element:P.jsx(CW,{})})]})})]})})}const EW="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-a-to-b'%3e%3cpath%20fill-rule='evenodd'%20d='M3.833%207.417A1.333%201.333%200%200%200%202.5%208.75v.5h2.667v-.5a1.333%201.333%200%200%200-1.334-1.333ZM6.667%208.75A2.833%202.833%200%201%200%201%208.75v4.583a.75.75%200%200%200%201.5%200V10.75h2.667v2.583a.75.75%200%200%200%201.5%200V8.75ZM13%206.667a.75.75%200%200%201%20.75-.75h2.5A2.417%202.417%200%200%201%2018%2010a2.417%202.417%200%200%201-1.75%204.083h-2.5a.75.75%200%200%201-.75-.75V6.667Zm1.5%204.083v1.833h1.75a.916.916%200%201%200%200-1.833H14.5Zm1.75-1.5a.917.917%200%200%200%200-1.833H14.5V9.25h1.75ZM8.636%207.803a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06L9.772%2010%208.636%208.864a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.75a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-add-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%203.5a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75H7.5a.75.75%200%200%201%200-1.5h1.75V7.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-alert-rhombus'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.376a2.14%202.14%200%200%201%201.515.627l6.482%206.482a2.143%202.143%200%200%201%200%203.03l-6.482%206.482a2.143%202.143%200%200%201-3.03%200l-6.482-6.482a2.143%202.143%200%200%201%200-3.03l6.482-6.482A2.143%202.143%200%200%201%2010%201.376Zm.833%206.124a.833.833%200%201%200-1.666%200v3.333a.833.833%200%201%200%201.666%200V7.5ZM10%2012.417c.506%200%20.917.41.917.916v.009a.917.917%200%200%201-1.834%200v-.009c0-.506.41-.916.917-.916Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-analyze'%3e%3cpath%20fill-rule='evenodd'%20d='M6.684%203.356a7.496%207.496%200%200%201%204.257-.698%207.5%207.5%200%200%201%206.469%206.405.75.75%200%201%201-1.486.207%206%206%200%200%200-5.175-5.124A5.998%205.998%200%200%200%205.6%205.992a1.583%201.583%200%201%201-1.215-.894%207.496%207.496%200%200%201%202.3-1.742Zm1.018%204.346a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM3.23%2010.09a.75.75%200%200%201%20.846.64A6%206%200%200%200%2014.4%2014.004a1.583%201.583%200%201%201%201.213.896A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-cat'%3e%3cpath%20fill-rule='evenodd'%20d='M3.51%203.173a1.869%201.869%200%200%200-.054.447c-.013.476.062%201.11.18%201.776a25.782%2025.782%200%200%200%20.546%202.366l.045.16.012.04.002.01.001.002a.751.751%200%200%201-.043.538c-.406.842-.736%201.636-.736%202.462%200%20.569.09%201.108.262%201.61h2.108a.75.75%200%200%201%20.53%201.28l-1.005%201.005c1.162.933%202.783%201.48%204.646%201.48%201.85%200%203.463-.56%204.625-1.493l-.993-.992a.75.75%200%200%201%20.53-1.28h2.107a4.815%204.815%200%200%200%20.273-1.61c0-.798-.288-1.62-.722-2.435a.75.75%200%200%201-.06-.557V7.98l.004-.01.01-.041c.01-.036.026-.09.044-.16a27.882%2027.882%200%200%200%20.52-2.365c.11-.665.178-1.3.16-1.776a1.838%201.838%200%200%200-.062-.453%202.122%202.122%200%200%200-.659-.05c-.354.018-.77.096-1.208.236-.883.283-1.776.796-2.388%201.484a.75.75%200%200%201-.75.227%205.694%205.694%200%200%200-1.43-.186%206.523%206.523%200%200%200-1.453.167.75.75%200%200%201-.728-.232C7.216%204.138%206.312%203.63%205.41%203.35a5.089%205.089%200%200%200-1.234-.23%202.225%202.225%200%200%200-.667.052Zm13.029.035h-.002Zm.747%204.894c.425.857.76%201.835.76%202.872%200%20.564-.07%201.101-.199%201.61h.486a.75.75%200%200%201%200%201.5h-1.089c-.15.265-.319.52-.505.76l1.291%201.292a.75.75%200%200%201-1.06%201.061l-1.275-1.275c-1.479%201.23-3.515%201.927-5.69%201.927-2.185%200-4.231-.683-5.713-1.914L3.03%2017.197a.75.75%200%201%201-1.06-1.06l1.28-1.281a6.252%206.252%200%200%201-.506-.773H1.667a.75.75%200%200%201%200-1.5h.488a6.659%206.659%200%200%201-.192-1.61c0-1.08.388-2.055.761-2.854a27.278%2027.278%200%200%201-.565-2.46c-.123-.695-.22-1.449-.203-2.08a3.11%203.11%200%200%201%20.148-.934c.102-.29.309-.648.725-.822.422-.176.925-.224%201.42-.2a6.582%206.582%200%200%201%201.605.295c.962.298%201.983.824%202.783%201.588.45-.079.907-.119%201.365-.12h.002c.46%200%20.924.046%201.376.135.791-.756%201.79-1.285%202.735-1.588a6.4%206.4%200%200%201%201.586-.307c.49-.026.99.02%201.414.197.412.172.622.526.727.814.106.292.147.621.159.934.024.63-.064%201.385-.18%202.08a27.035%2027.035%200%200%201-.535%202.451ZM7.5%2010.092a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm5%200a.75.75%200%200%201%20.75.75v.408a.75.75%200%200%201-1.5%200v-.408a.75.75%200%200%201%20.75-.75Zm-3.818%203.163a.75.75%200%200%201%20.693-.463h1.25a.75.75%200%200%201%20.53%201.28l-.625.625a.75.75%200%200%201-1.06%200l-.625-.625a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-animal-turtle'%3e%3cpath%20fill-rule='evenodd'%20d='m6.135%206.585%201.693%201.832h2.677L12.2%206.585a5.886%205.886%200%200%200-3.032-.835%205.886%205.886%200%200%200-3.032.835Zm7.247.93-1.597%201.727%201.117%201.675h2.134a5.868%205.868%200%200%200-.744-2.208%205.94%205.94%200%200%200-.91-1.194Zm3.164%203.402H17a.583.583%200%200%200%200-1.167h-.667c.101.378.173.768.213%201.167ZM15.75%208.25a7.449%207.449%200%200%200-1.949-2.373A7.388%207.388%200%200%200%209.168%204.25c-1.753%200-3.366.61-4.636%201.627a7.407%207.407%200%200%200-2.743%205.04h-.121a.75.75%200%200%200%200%201.5h1.686l.404%202.694a.75.75%200%200%200%20.742.639H5a.75.75%200%200%200%20.728-.568l.691-2.765h5.496l.69%202.765a.75.75%200%200%200%20.728.568H14a.75.75%200%200%200%20.739-.62l.474-2.713H17a2.083%202.083%200%200%200%200-4.167h-1.249Zm-4.65%202.667-.667-1h-2.53l-.667%201H11.1Zm-5.667%200%201.116-1.675-1.596-1.727a5.896%205.896%200%200%200-1.655%203.402h2.135Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-api'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%203.25A1.333%201.333%200%200%200%208.25%204.583V10a.75.75%200%200%201-1.5%200V4.583a2.833%202.833%200%200%201%205.667%200V5a.75.75%200%200%201-1.5%200v-.417A1.333%201.333%200%200%200%209.583%203.25ZM9.25%207.5a.75.75%200%200%201%20.75-.75h5.417a2.833%202.833%200%201%201%200%205.667H15a.75.75%200%200%201%200-1.5h.417a1.333%201.333%200%200%200%200-2.667H10a.75.75%200%200%201-.75-.75ZM4.583%209.083a1.333%201.333%200%200%200%200%202.667H10a.75.75%200%200%201%200%201.5H4.583a2.833%202.833%200%201%201%200-5.667H5a.75.75%200%200%201%200%201.5h-.417Zm7.917.167a.75.75%200%200%201%20.75.75v5.417a2.833%202.833%200%201%201-5.667%200V15a.75.75%200%200%201%201.5%200v.417a1.333%201.333%200%200%200%202.667%200V10a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application'%3e%3cpath%20fill-rule='evenodd'%20d='M3.131%203.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%208.964a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24ZM3.13%2014.797a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.834%200a1.584%201.584%200%201%201%202.239%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%203.047c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75ZM3.047%2011.38c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.333%200c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-application-plus-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083a.083.083%200%200%200-.084.084V7.5a.083.083%200%200%200%20.084.083H7.5a.083.083%200%200%200%20.083-.083V4.167a.083.083%200%200%200-.083-.084H4.167Zm-1.12-1.036c.297-.297.7-.464%201.12-.464H7.5a1.583%201.583%200%200%201%201.583%201.584V7.5A1.583%201.583%200%200%201%207.5%209.083H4.167A1.583%201.583%200%200%201%202.583%207.5V4.167c0-.42.167-.823.464-1.12Zm11.12-.464a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Zm-10%209.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm9.453%201.037a.083.083%200%200%200-.083.083v3.333a.083.083%200%200%200%20.083.084h3.333a.084.084%200%200%200%20.084-.084V12.5a.083.083%200%200%200-.084-.083H12.5Zm-1.12-1.037c.297-.296.7-.463%201.12-.463h3.333a1.583%201.583%200%200%201%201.584%201.583v3.333a1.583%201.583%200%200%201-1.584%201.584H12.5a1.583%201.583%200%200%201-1.583-1.584V12.5c0-.42.167-.823.463-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-applied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.53%203.982A2.583%202.583%200%200%200%209.167%209.25h2.702a2.416%202.416%200%201%201%200%201.5H9.167a4.083%204.083%200%200%201-2.584-.921v2.874a2.417%202.417%200%201%201-1.5%200V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm8.334%205a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%205a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-approved'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm9.47-1.28a.75.75%200%201%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%200%201%201.06-1.06l.72.72%201.97-1.97Zm-9.47%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-denied'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.137-1.28a.75.75%200%200%201%201.06%200l1.137%201.136%201.136-1.136a.75.75%200%201%201%201.06%201.06L15.228%205l1.137%201.136a.75.75%200%200%201-1.06%201.061l-1.137-1.136-1.137%201.136a.75.75%200%201%201-1.06-1.06L13.106%205%2011.97%203.864a.75.75%200%200%201%200-1.061Zm-6.137%2011.28a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approval-pending'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%203.291a2.417%202.417%200%201%201%202.458%204.006v5.406a2.417%202.417%200%200%201%201.548%201.547h4.37a.917.917%200%200%200%20.916-.917v-2.356l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v2.356A2.417%202.417%200%200%201%2012.5%2015.75H8.13a2.417%202.417%200%201%201-3.047-3.047V7.297a2.416%202.416%200%200%201-.958-4.006Zm1.708.792a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.625-.792a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm1.709.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-8.334%2010a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-approvals'%3e%3cpath%20fill-rule='evenodd'%20d='M9.016%201.957a2.583%202.583%200%200%201%202.823.563l.581.582c.203.201.478.315.763.315h.833A2.583%202.583%200%200%201%2016.6%206v.833c0%20.285.113.56.314.762l.581.581.001.001a2.584%202.584%200%200%201%200%203.662v.001l-.581.58a1.085%201.085%200%200%200-.315.764v.833a2.583%202.583%200%200%201-2.584%202.583h-.833c-.285%200-.56.113-.762.314l-.581.581-.001.001a2.584%202.584%200%200%201-3.662%200l-.581-.58a1.086%201.086%200%200%200-.763-.316H6a2.583%202.583%200%200%201-2.584-2.583v-.833c0-.286-.113-.56-.314-.763l-.581-.58a2.588%202.588%200%200%201-.564-2.825c.13-.314.322-.599.563-.839l.581-.58a1.09%201.09%200%200%200%20.315-.764V6A2.583%202.583%200%200%201%206%203.417h.833c.285%200%20.56-.114.762-.315l.581-.58a2.59%202.59%200%200%201%20.84-.565Zm4.014%205.846a.75.75%200%200%201%200%201.06l-3.333%203.334a.75.75%200%200%201-1.061%200L6.969%2010.53A.75.75%200%201%201%208.03%209.47l1.136%201.136%202.803-2.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive'%3e%3cpath%20fill-rule='evenodd'%20d='M14.167%207H3.417v8a2.417%202.417%200%200%200%202.417%202.417h8.333A2.417%202.417%200%200%200%2016.584%2015V7h-2.417Zm-6.583%204a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75ZM3%202.583a.75.75%200%200%200-.75.75V5c0%20.414.336.75.75.75h14a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75H3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-archive-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M2.25%203.333a.75.75%200%200%201%20.75-.75h14a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-.75.75h-.417V15a2.417%202.417%200%200%201-2.416%202.417H5.833A2.417%202.417%200%200%201%203.417%2015V7.417H3a.75.75%200%200%201-.75-.75V3.333Zm2.667%204.084V15a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V7.417H4.917Zm11.333-1.5H3.75V4.083h12.5v1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.584%2011a.75.75%200%200%201%20.75-.75h3.333a.75.75%200%200%201%200%201.5H8.334a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M15.53%201.14a.75.75%200%201%200-1.06%201.06l1.22%201.22H6.237a3.667%203.667%200%200%200%200%207.333h1.47a2.417%202.417%200%200%200%204.593%200h1.443a2.167%202.167%200%200%201%200%204.333H6.478a2.429%202.429%200%200%200-.581-.979%202.416%202.416%200%201%200%20.554%202.479h7.313a3.667%203.667%200%200%200%200-7.333h-1.462a2.396%202.396%200%200%200-.57-.94%202.417%202.417%200%200%200-4.028.94H6.258a2.167%202.167%200%200%201%200-4.333h9.432l-1.22%201.22a.75.75%200%200%200%201.06%201.06l2.5-2.5a.75.75%200%200%200%200-1.06l-2.5-2.5ZM4.168%2014.878a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star'%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill='%23A14BDD'%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.464.416v.002l.602%201.214%201.343.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-connect-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.458%206.404a1.03%201.03%200%200%201%201.463.416l.002.002.6%201.214%201.344.194a1.028%201.028%200%200%201%20.571%201.756l-.971.944.229%201.33a1.03%201.03%200%200%201-1.493%201.086L10%2012.715l-1.204.632a1.03%201.03%200%200%201-1.494-1.078l.001-.008.23-1.333-.97-.942a1.03%201.03%200%200%201%20.055-1.527c.147-.123.326-.203.515-.23l1.343-.194.603-1.216a1.03%201.03%200%200%201%20.38-.416ZM10%208.339l.354.716a.75.75%200%200%200%20.565.41l.787.113-.568.552a.75.75%200%200%200-.217.665l.135.781-.709-.37a.75.75%200%200%200-.696%200l-.707.37.135-.782a.75.75%200%200%200-.217-.665l-.567-.551.786-.114a.75.75%200%200%200%20.565-.41L10%208.34Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M14.47%201.14a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H6.258a2.167%202.167%200%200%200-1.5%203.684.75.75%200%200%201-1.07%201.051A3.667%203.667%200%200%201%206.237%203.42h9.453L14.47%202.2a.75.75%200%200%201%200-1.06Zm.783%209.2a.75.75%200%200%201%201.06.01%203.667%203.667%200%200%201-2.549%206.236H6.451a2.416%202.416%200%201%201%20.027-1.5h7.265a2.167%202.167%200%200%200%201.5-3.685.75.75%200%200%201%20.01-1.06ZM4.167%2014.879a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-down-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75v9.856l2.053-2.053a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%201%201%201.061-1.06l2.053%202.053V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-left-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M8.03%206.136a.75.75%200%200%201%200%201.061L5.977%209.25h9.856a.75.75%200%200%201%200%201.5H5.977l2.053%202.053a.75.75%200%201%201-1.06%201.06L3.636%2010.53a.75.75%200%200%201%200-1.06L6.97%206.136a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-right-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M11.97%206.136a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%201%201-1.06-1.06l2.053-2.054H4.167a.75.75%200%200%201%200-1.5h9.856L11.97%207.197a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-undo'%3e%3cpath%20fill-rule='evenodd'%20d='M4%205.25a.75.75%200%200%201%20.75.75v2.316l.749-.674a6.75%206.75%200%200%201%204.5-1.725c1.79%200%203.508.71%204.774%201.977C16.084%209.205%2016.75%2010.877%2016.75%2014a.75.75%200%201%201-1.5%200c0-2.877-.6-4.107-1.538-5.046A5.25%205.25%200%200%200%2010%207.417a5.25%205.25%200%200%200-3.5%201.34c0%20.001%200%200%200%200l-.546.493H8a.75.75%200%201%201%200%201.5H4a.75.75%200%200%201-.75-.75V6A.75.75%200%200%201%204%205.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM7.5%208.25a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-right-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.166a8.25%208.25%200%201%201%2011.668%2011.668A8.25%208.25%200%200%201%204.166%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm-2.5%205a.75.75%200%200%201%200-1.5h5a.75.75%200%200%201%20.75.75v5a.75.75%200%200%201-1.5%200V9.31l-3.72%203.72a.75.75%200%200%201-1.06-1.06l3.72-3.72H7.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrow-up-thin'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10.75%205.977v9.856a.75.75%200%200%201-1.5%200V5.977L7.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-arrows-maximize'%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%202.583h3.334a.75.75%200%200%201%200%201.5H5.144l3.72%203.72a.75.75%200%201%201-1.061%201.06l-3.72-3.719v1.523a.75.75%200%201%201-1.5%200V3.333a.75.75%200%200%201%20.75-.75Zm11.523%201.5h-1.523a.75.75%200%200%201%200-1.5h3.334a.75.75%200%200%201%20.75.75v3.334a.75.75%200%200%201-1.5%200V5.144l-3.72%203.72a.75.75%200%200%201-1.06-1.061l3.719-3.72Zm-5.992%207.053a.75.75%200%200%201%200%201.061l-3.72%203.72h1.523a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200v1.523l3.72-3.72a.75.75%200%200%201%201.06%200Zm2.272%200a.75.75%200%200%201%201.061%200l3.72%203.72v-1.523a.75.75%200%200%201%201.5%200v3.334a.75.75%200%200%201-.75.75h-3.334a.75.75%200%200%201%200-1.5h1.523l-3.72-3.72a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-article'%3e%3cpath%20fill-rule='evenodd'%20d='M2.458%203.291a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709Zm2.626%203.376a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h8.333a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h4.583a.75.75%200%200%201%200%201.5H5.834a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-backslash'%3e%3cpath%20fill-rule='evenodd'%20d='M5.39738%203.55626C5.73444%203.31551%206.20285%203.39357%206.44361%203.73063L14.7769%2015.3973C15.0177%2015.7344%2014.9396%2016.2028%2014.6026%2016.4435C14.2655%2016.6843%2013.7971%2016.6062%2013.5563%2016.2692L5.22301%204.60249C4.98225%204.26543%205.06032%203.79702%205.39738%203.55626Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M11.065%201.748a.75.75%200%200%201%20.518.713v5.083h4.25a.75.75%200%200%201%20.607%201.191l-6.667%209.167a.75.75%200%200%201-1.356-.441v-5.083h-4.25a.75.75%200%200%201-.607-1.191l6.667-9.167a.75.75%200%200%201%20.838-.272Zm-5.425%209.13h3.527a.75.75%200%200%201%20.75.75v3.527l4.444-6.11h-3.528a.75.75%200%200%201-.75-.75V4.766l-4.443%206.11Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205Zm2.417%209.083a.917.917%200%201%200%200%201.834h9.25v-1.834h-9.25Zm.916-7.416a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-code'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v7.764c.288-.118.6-.18.917-.18h4.166a.75.75%200%201%201%200%201.5H5a.917.917%200%201%200%200%201.833h4.5a.75.75%200%200%201%200%201.5H5A2.417%202.417%200%200%201%202.583%2015V5A2.417%202.417%200%200%201%205%202.583h10a.75.75%200%200%201%20.75.75V11a.75.75%200%200%201-1.5%200V4.083H5Zm9.697%209.553a.75.75%200%200%201%200%201.06l-1.137%201.137%201.137%201.137a.75.75%200%201%201-1.061%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.439%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.666%201.667a.75.75%200%200%201-1.061-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.91%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-book-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5.834%204.083A.917.917%200%200%200%204.917%205v7.764c.288-.118.6-.18.917-.18h9.25v-8.5h-9.25Zm10.75-.75a.75.75%200%200%200-.75-.75h-10A2.417%202.417%200%200%200%203.417%205v10a2.417%202.417%200%200%200%202.417%202.417h10a.75.75%200%200%200%20.75-.75V3.333Zm-1.5%2010.75h-9.25a.917.917%200%201%200%200%201.834h9.25v-1.834ZM6.75%206.667a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-border-all'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v4.25H9.25V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm5.75%201.5V9.25h5.166V5A.917.917%200%200%200%2015%204.083h-4.25Zm5.166%206.667H10.75v5.167H15a.917.917%200%200%200%20.916-.917v-4.25ZM9.25%2015.917V10.75H4.083V15a.917.917%200%200%200%20.917.917h4.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-brain'%3e%3cpath%20fill-rule='evenodd'%20d='M8.125%203.25a1.124%201.124%200%200%200-1.106.918.75.75%200%200%201-.6.6%201.124%201.124%200%200%200-.89%201.35.75.75%200%200%201-.601.901%201.124%201.124%200%200%200-.594%201.91.75.75%200%200%201-.212%201.214%201.5%201.5%200%200%200%20.17%202.79.75.75%200%200%201%20.495.907%201.126%201.126%200%200%200%201.331%201.386.75.75%200%200%201%20.901.599%201.126%201.126%200%200%200%201.936.56%201.12%201.12%200%200%200%20.295-.758v-1.976a18.174%2018.174%200%200%200-1.124-.982%209.263%209.263%200%200%200-1.134-.794c-.39-.223-.636-.292-.742-.292a.75.75%200%200%201%200-1.5c.52%200%201.056.244%201.486.49.458.261.921.6%201.327.925.063.05.126.101.187.152V4.375A1.126%201.126%200%200%200%208.125%203.25Zm1.876-.712a2.624%202.624%200%200%200-4.324.888%202.624%202.624%200%200%200-1.672%202.327%202.624%202.624%200%200%200-1.247%203.51%203%203%200%200%200%20.492%204.84%202.627%202.627%200%200%200%202.505%202.648%202.625%202.625%200%200%200%204.246.711%202.624%202.624%200%200%200%204.245-.711%202.624%202.624%200%200%200%202.505-2.648%203%203%200%200%200%20.492-4.84%202.63%202.63%200%200%200-.631-3.105%202.626%202.626%200%200%200-.616-.405%202.623%202.623%200%200%200-1.672-2.327%202.625%202.625%200%200%200-4.323-.888Zm.75%201.837v7.07a8.71%208.71%200%200%201%20.176-.146c.716-.582%201.72-1.2%202.812-1.216a.75.75%200%201%201%20.022%201.5c-.574.009-1.247.36-1.89.88a7.896%207.896%200%200%200-1.12%201.122v2.042a1.126%201.126%200%200%200%201.806.892%201.13%201.13%200%200%200%20.425-.694.75.75%200%200%201%20.9-.599%201.123%201.123%200%200%200%201.332-1.386.75.75%200%200%201%20.495-.906%201.5%201.5%200%200%200%20.17-2.791.75.75%200%200%201-.212-1.215%201.126%201.126%200%200%200-.594-1.909.75.75%200%200%201-.601-.9%201.125%201.125%200%200%200-.89-1.352.75.75%200%200%201-.6-.599%201.126%201.126%200%200%200-2.231.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-broom'%3e%3cpath%20fill-rule='evenodd'%20d='M16.903%202.87a.75.75%200%201%200-1.306-.74l-.022.04-.067.116-.255.435c-.218.368-.527.878-.886%201.444-.613.964-1.354%202.058-2.042%202.892-.681-.298-1.46-.448-2.07-.53a13.23%2013.23%200%200%200-1.378-.108l-.126-.002H8.75a.75.75%200%200%200-.386%201.393l.12.072c-.527.45-1.234.948-2.062%201.42-1.232.704-2.674%201.32-4.085%201.633a.75.75%200%200%200-.53%201.018%2010.07%2010.07%200%200%200%201.622%202.697%208.632%208.632%200%200%200%203.282%202.397c1.38.575%202.172.703%202.99.703.756%200%201.437-.438%201.976-.934.56-.515%201.086-1.203%201.537-1.93.642-1.033%201.19-2.237%201.484-3.283a.75.75%200%200%200%201.026-.884l-.013-.041a3.57%203.57%200%200%200-.121-.32%205.298%205.298%200%200%200-.432-.79%207.437%207.437%200%200%200-1.563-1.695c.72-.893%201.454-1.985%202.038-2.904a57.017%2057.017%200%200%200%201.244-2.055l.026-.044ZM9.828%208.688c-.666.636-1.602%201.312-2.662%201.917a17.37%2017.37%200%200%201-3.607%201.56c.231.442.482.834.747%201.182a7.14%207.14%200%200%200%201.025-.35c.623-.266%201.234-.623%201.639-1.027a.75.75%200%201%201%201.06%201.06c-.595.596-1.4%201.044-2.111%201.346a9.302%209.302%200%200%201-.46.182c.299.248.603.46.908.641l.057-.015c.212-.06.504-.147.823-.263.67-.245%201.346-.574%201.723-.951a.75.75%200%201%201%201.06%201.06c-.444.444-1.05.785-1.616%201.037.541.154.916.183%201.288.183.185%200%20.511-.125.96-.537.427-.394.87-.961%201.278-1.619.703-1.132%201.225-2.4%201.412-3.292L9.828%208.688Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bug'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.917a1.75%201.75%200%200%200-1.75%201.75v.083h3.5v-.083A1.75%201.75%200%200%200%2010%204.917Zm3.25%201.833v-.083a3.25%203.25%200%201%200-6.5%200v.083h-.083a.75.75%200%200%200-.364.094L3.738%205.202a.75.75%200%201%200-.809%201.263l2.57%201.645A5.75%205.75%200%200%200%205.083%2010v.083H2.5a.75.75%200%200%200%200%201.5h2.583v.917c0%20.446.061.886.178%201.31l-2.312%201.38a.75.75%200%200%200%20.769%201.287l2.164-1.291a4.915%204.915%200%200%200%207.595.79c.242-.242.457-.507.641-.79l2.164%201.291a.75.75%200%200%200%20.77-1.288l-2.313-1.38a4.91%204.91%200%200%200%20.178-1.309v-.917H17.5a.75.75%200%200%200%200-1.5h-2.583V10c0-.014%200-.027-.002-.041a5.748%205.748%200%200%200-.414-1.85l2.57-1.644a.75.75%200%200%200-.809-1.263l-2.566%201.642a.75.75%200%200%200-.363-.094h-.083Zm-6.16%201.5a4.25%204.25%200%200%200-.507%201.772V12.5a3.417%203.417%200%200%200%202.667%203.333v-4.166a.75.75%200%200%201%201.5%200v4.166a3.416%203.416%200%200%200%202.667-3.333v-2.478a4.25%204.25%200%200%200-.506-1.772H7.089Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75v13A1.75%201.75%200%200%201%2016%2018.25H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm1.5%2010.536h2.5V15.5a.75.75%200%200%201%201.5%200v1.25H16a.25.25%200%200%200%20.25-.25v-13a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25Zm.75-11.083a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm5.501%201.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm-8.501%201a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-arrow-up-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm0%202.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm8%20.833a.75.75%200%200%201%20.75-.75h3.75a.75.75%200%200%201%20.75.75v3.75a.75.75%200%200%201-1.5%200v-1.939l-2.886%202.886a.75.75%200%201%201-1.06-1.06l2.886-2.887h-1.94a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-building-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M8.25%203.5c0-.966.784-1.75%201.75-1.75h6c.966%200%201.75.784%201.75%201.75V10a.75.75%200%200%201-1.5%200V3.5a.25.25%200%200%200-.25-.25h-6a.25.25%200%200%200-.25.25v13.25H10a.75.75%200%200%201%200%201.5H4a1.75%201.75%200%200%201-1.75-1.75V8.618c0-.663.374-1.269.967-1.565L8.25%204.536V3.5Zm0%202.714-4.362%202.18a.25.25%200%200%200-.138.224V16.5c0%20.138.112.25.25.25h4.25V6.214Zm2.25-.547a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75ZM10.5%209a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2010.5%209Zm3%200a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5A.75.75%200%200%201%2013.5%209Zm-8.501%202a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Zm10%20.333a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%200%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.996l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.415%202.415%200%200%201-.865.5v.619a.75.75%200%200%201-1.5%200v-.62a2.417%202.417%200%200%201-.864-.498l-.537.309a.75.75%200%200%201-.75-1.3l.536-.308a2.414%202.414%200%200%201%200-1l-.535-.309a.75.75%200%201%201%20.75-1.3l.536.31c.251-.226.546-.395.864-.498v-.62a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.035-.06.922.922%200%200%201%20.776-.429.917.917%200%201%201-.81.489ZM5%2013.333a.75.75%200%200%201%20.75-.75h.5a.75.75%200%200%201%200%201.5h-.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullhorn'%3e%3cpath%20fill-rule='evenodd'%20d='M14.059%202.614a1.5%201.5%200%200%201%201.692%201.488v1.902a3.25%203.25%200%200%201%200%206.325v1.902a1.501%201.501%200%200%201-2.46%201.154l-3.562-2.968h-.645v3.416A1.584%201.584%200%200%201%207.5%2017.417h-.833a1.583%201.583%200%200%201-1.583-1.584v-3.416h-1.75a1.583%201.583%200%200%201-1.584-1.584V7.5a1.583%201.583%200%200%201%201.584-1.583h6.395l3.561-2.968a1.5%201.5%200%200%201%20.769-.335Zm-7.475%209.803v3.416a.083.083%200%200%200%20.083.084H7.5a.083.083%200%200%200%20.084-.084v-3.416h-1Zm1-1.5h-4.25a.083.083%200%200%201-.084-.084V7.5a.083.083%200%200%201%20.084-.083h4.25v3.5Zm1.5%200H10a.75.75%200%200%201%20.48.174l3.77%203.141V4.102l-3.77%203.14a.75.75%200%200%201-.48.175h-.917v3.5Zm6.667-.17a1.748%201.748%200%200%200%20.487-2.818%201.75%201.75%200%200%200-.487-.343v3.162Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.524%206.523a4.917%204.917%200%201%201%206.953%206.954%204.917%204.917%200%200%201-6.953-6.954Zm3.477.06a3.417%203.417%200%201%200%200%206.834%203.417%203.417%200%200%200%200-6.834ZM8.88%208.88a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-bullseye-arrow'%3e%3cpath%20fill-rule='evenodd'%20d='M6.005%202.78a8.25%208.25%200%200%201%204.913-.98.75.75%200%201%201-.167%201.491%206.75%206.75%200%201%200%205.955%205.959.75.75%200%201%201%201.491-.167A8.25%208.25%200%201%201%206.005%202.78Zm9.283-.973a.75.75%200%200%201%20.463.693v1.75h1.75a.75.75%200%200%201%20.53%201.28l-2.5%202.5a.75.75%200%200%201-.53.22h-2.19l-1.294%201.294a1.58%201.58%200%200%201-.397%201.576%201.584%201.584%200%201%201-.664-2.636l1.295-1.295V5a.75.75%200%200%201%20.22-.53l2.5-2.5a.75.75%200%200%201%20.816-.163Zm-8.02%204.105a4.917%204.917%200%200%201%202.733-.829.75.75%200%200%201%200%201.5A3.417%203.417%200%201%200%2013.417%2010a.75.75%200%201%201%201.5%200A4.916%204.916%200%201%201%207.27%205.912Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calculator'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.99998%203.25C4.75686%203.25%204.52371%203.34658%204.3518%203.51849C4.17989%203.69039%204.08331%203.92355%204.08331%204.16667V15.8333C4.08331%2016.0764%204.17989%2016.3096%204.3518%2016.4815C4.52371%2016.6534%204.75686%2016.75%204.99998%2016.75H15C15.2431%2016.75%2015.4763%2016.6534%2015.6482%2016.4815C15.8201%2016.3096%2015.9166%2016.0764%2015.9166%2015.8333V4.16667C15.9166%203.92355%2015.8201%203.69039%2015.6482%203.51849C15.4763%203.34658%2015.2431%203.25%2015%203.25H4.99998ZM3.29114%202.45783C3.74435%202.00461%204.35904%201.75%204.99998%201.75H15C15.6409%201.75%2016.2556%202.00461%2016.7088%202.45783C17.162%202.91104%2017.4166%203.52573%2017.4166%204.16667V15.8333C17.4166%2016.4743%2017.162%2017.089%2016.7088%2017.5422C16.2556%2017.9954%2015.6409%2018.25%2015%2018.25H4.99998C4.35904%2018.25%203.74435%2017.9954%203.29114%2017.5422C2.83793%2017.089%202.58331%2016.4743%202.58331%2015.8333V4.16667C2.58331%203.52573%202.83793%202.91104%203.29114%202.45783ZM7.49998%206.58333C7.47788%206.58333%207.45668%206.59211%207.44105%206.60774C7.42543%206.62337%207.41665%206.64457%207.41665%206.66667V7.5C7.41665%207.5221%207.42543%207.5433%207.44105%207.55893C7.45668%207.57455%207.47788%207.58333%207.49998%207.58333H12.5C12.5221%207.58333%2012.5433%207.57455%2012.5589%207.55893C12.5745%207.5433%2012.5833%207.5221%2012.5833%207.5V6.66667C12.5833%206.64457%2012.5745%206.62337%2012.5589%206.60774C12.5433%206.59211%2012.5221%206.58333%2012.5%206.58333H7.49998ZM6.38039%205.54708C6.67733%205.25015%207.08005%205.08333%207.49998%205.08333H12.5C12.9199%205.08333%2013.3226%205.25015%2013.6196%205.54708C13.9165%205.84401%2014.0833%206.24674%2014.0833%206.66667V7.5C14.0833%207.91993%2013.9165%208.32265%2013.6196%208.61959C13.3226%208.91652%2012.9199%209.08333%2012.5%209.08333H7.49998C7.08005%209.08333%206.67733%208.91652%206.38039%208.61959C6.08346%208.32265%205.91665%207.91993%205.91665%207.5V6.66667C5.91665%206.24674%206.08346%205.84401%206.38039%205.54708ZM6.66665%2010.9167C7.08086%2010.9167%207.41665%2011.2525%207.41665%2011.6667V11.675C7.41665%2012.0892%207.08086%2012.425%206.66665%2012.425C6.25243%2012.425%205.91665%2012.0892%205.91665%2011.675V11.6667C5.91665%2011.2525%206.25243%2010.9167%206.66665%2010.9167ZM9.99998%2010.9167C10.4142%2010.9167%2010.75%2011.2525%2010.75%2011.6667V11.675C10.75%2012.0892%2010.4142%2012.425%209.99998%2012.425C9.58577%2012.425%209.24998%2012.0892%209.24998%2011.675V11.6667C9.24998%2011.2525%209.58577%2010.9167%209.99998%2010.9167ZM13.3333%2010.9167C13.7475%2010.9167%2014.0833%2011.2525%2014.0833%2011.6667V11.675C14.0833%2012.0892%2013.7475%2012.425%2013.3333%2012.425C12.9191%2012.425%2012.5833%2012.0892%2012.5833%2011.675V11.6667C12.5833%2011.2525%2012.9191%2010.9167%2013.3333%2010.9167ZM6.66665%2013.4167C7.08086%2013.4167%207.41665%2013.7525%207.41665%2014.1667V14.175C7.41665%2014.5892%207.08086%2014.925%206.66665%2014.925C6.25243%2014.925%205.91665%2014.5892%205.91665%2014.175V14.1667C5.91665%2013.7525%206.25243%2013.4167%206.66665%2013.4167ZM9.99998%2013.4167C10.4142%2013.4167%2010.75%2013.7525%2010.75%2014.1667V14.175C10.75%2014.5892%2010.4142%2014.925%209.99998%2014.925C9.58577%2014.925%209.24998%2014.5892%209.24998%2014.175V14.1667C9.24998%2013.7525%209.58577%2013.4167%209.99998%2013.4167ZM13.3333%2013.4167C13.7475%2013.4167%2014.0833%2013.7525%2014.0833%2014.1667V14.175C14.0833%2014.5892%2013.7475%2014.925%2013.3333%2014.925C12.9191%2014.925%2012.5833%2014.5892%2012.5833%2014.175V14.1667C12.5833%2013.7525%2012.9191%2013.4167%2013.3333%2013.4167Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar'%3e%3cpath%20d='M8.417%2011.25a.75.75%200%200%201%20.75-.75H10a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200V12h-.083a.75.75%200%200%201-.75-.75Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h10a2.417%202.417%200%200%200%202.417-2.417v-10A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Zm8.5%207.5V8.417H4.083v7.416A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.917-.917V10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.06%200l1.554%201.553%201.553-1.553a.75.75%200%201%201%201.06%201.06L17.31%2016.25l1.553%201.553a.75.75%200%201%201-1.06%201.06l-1.553-1.552-1.553%201.552a.75.75%200%200%201-1.061-1.06l1.553-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h5a.75.75%200%201%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833V10a.75.75%200%200%200%201.5%200V5.833A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-calendar-schedule'%3e%3cpath%20d='M7.416%202.5a.75.75%200%201%200-1.5%200v.917H5a2.417%202.417%200%200%200-2.417%202.416v10A2.417%202.417%200%200%200%205%2018.25h3.635a.75.75%200%200%200%200-1.5H5a.917.917%200%200%201-.917-.917V8.417h11.833l.043.666v.084a.75.75%200%200%200%201.5%200l-.043-3.334A2.417%202.417%200%200%200%2015%203.417h-.917V2.5a.75.75%200%200%200-1.5%200v.917H7.416V2.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M15%2010.916a4.083%204.083%200%201%200%200%208.167%204.083%204.083%200%200%200%200-8.167Zm0%201.5a2.583%202.583%200%201%200%200%205.167%202.583%202.583%200%200%200%200-5.167Zm.75%201.33a.75.75%200%200%200-1.5%200V15c0%20.199.08.39.22.53l.833.833a.75.75%200%201%200%201.06-1.06l-.613-.614v-.943Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%204.47a.75.75%200%200%201%201.06%200L10%208.94l4.47-4.47a.75.75%200%201%201%201.06%201.06L11.062%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06L10%2011.06l-4.47%204.47a.75.75%200%201%201-1.06-1.06L8.94%2010%204.47%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.062%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cancel-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.97%206.97a.75.75%200%200%201%201.06%200L10%208.94l1.97-1.97a.75.75%200%201%201%201.06%201.06L11.06%2010l1.97%201.97a.75.75%200%200%201-1.06%201.06L10%2011.06l-1.97%201.97a.75.75%200%201%201-1.06-1.06L8.94%2010%206.97%208.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.307%208.046A.75.75%200%200%201%205%207.583h10a.75.75%200%200%201%20.53%201.28l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201-.163-.817Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-left'%3e%3cpath%20fill-rule='evenodd'%20d='M11.954%204.307a.75.75%200%200%201%20.463.693v10a.75.75%200%200%201-1.28.53l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%20.817-.163Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-right'%3e%3cpath%20fill-rule='evenodd'%20d='M8.046%204.307a.75.75%200%200%201%20.818.163l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%200%201-1.28-.53V5a.75.75%200%200%201%20.462-.693Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-caret-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.136a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-.53%201.28H5a.75.75%200%200%201-.53-1.28l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-certificate'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.922.922%200%200%200-.917.916v8.334a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H4.167a2.416%202.416%200%200%201-2.417-2.416V5.832a2.422%202.422%200%200%201%202.417-2.417h11.666a2.417%202.417%200%200%201%202.417%202.417v8.334a2.416%202.416%200%200%201-1.208%202.09.75.75%200%200%201-.75-1.298.917.917%200%200%200%20.458-.793V5.833a.917.917%200%200%200-.917-.917H4.167ZM4.25%207.5A.75.75%200%200%201%205%206.75h10a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm0%202.5A.75.75%200%200%201%205%209.25h2.5a.75.75%200%201%201%200%201.5H5a.75.75%200%200%201-.75-.75Zm5.952.202a3.25%203.25%200%200%201%204.715%204.47v3.661a.75.75%200%200%201-1.2.6l-1.217-.912-1.217.912a.75.75%200%200%201-1.2-.6v-3.66a3.25%203.25%200%200%201%20.119-4.471Zm1.381%205.416v1.215l.467-.35a.75.75%200%200%201%20.9%200l.467.35v-1.215a3.248%203.248%200%200%201-1.834%200Zm.917-4.868a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM4.25%2012.5a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-change-history'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.407%202.407%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.406%202.406%200%200%201-2.057%203.611H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72c.215-.354.517-.646.878-.85Zm1.18%201.19a.907.907%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.907.907%200%200%200%20.775-1.356L10.726%203.687l-.001-.002a.907.907%200%200%200-.775-.435Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-area'%3e%3cpath%20fill-rule='evenodd'%20d='M13.3%202.584a.75.75%200%200%201%20.563.219l3.334%203.333a.75.75%200%200%201-1.06%201.061l-2.754-2.753-3.64%204.37a.75.75%200%200%201-.912.19L6.057%207.617%203.933%2010.45a.75.75%200%201%201-1.2-.9l2.5-3.333a.75.75%200%200%201%20.935-.221l2.802%201.4%203.787-4.543a.75.75%200%200%201%20.542-.269Zm-.008%205a.75.75%200%200%201%20.571.219l3.334%203.333c.14.141.22.332.22.53v4.167a.75.75%200%200%201-.75.75H3.332a.75.75%200%200%201-.624-1.166l3.333-5a.75.75%200%200%201%20.96-.255l2.79%201.396%202.955-3.693a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-bar'%3e%3cpath%20fill-rule='evenodd'%20d='M13.333%204.083a.083.083%200%200%200-.083.084v11.666a.084.084%200%200%200%20.083.084h3.334a.083.083%200%200%200%20.083-.084V4.167a.083.083%200%200%200-.083-.084h-3.334Zm3.334%2013.334a1.583%201.583%200%200%200%201.583-1.584V4.167a1.583%201.583%200%200%200-1.583-1.584h-3.334a1.584%201.584%200%200%200-1.583%201.584v1.752a1.583%201.583%200%200%200-.083-.002H8.333A1.583%201.583%200%200%200%206.75%207.5v1.752a1.582%201.582%200%200%200-.083-.002H3.333a1.583%201.583%200%200%200-1.583%201.583v5a1.583%201.583%200%200%200%201.583%201.584h13.334Zm-5-1.5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083H8.333a.083.083%200%200%200-.083.083v8.333a.084.084%200%200%200%20.083.084h3.334Zm-5%200a.084.084%200%200%200%20.083-.084v-5a.083.083%200%200%200-.083-.083H3.333a.083.083%200%200%200-.083.083v5a.084.084%200%200%200%20.083.084h3.334Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-dashboard'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.917a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V5.667a.75.75%200%200%201%20.75-.75Zm5%201.666a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200V7.333a.75.75%200%200%201%20.75-.75Zm-2.5.834a.75.75%200%200%201%20.75.75V9a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M3.333%203.25a.083.083%200%200%200-.083.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.333Zm14.917.083a1.583%201.583%200%200%200-1.583-1.583H3.333A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.583%201.583h4.15l-.228%201.834h-.588a.75.75%200%200%200%200%201.5h6.666a.75.75%200%200%200%200-1.5h-.588l-.229-1.834h4.15a1.584%201.584%200%200%200%201.584-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-histogram'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%201.75a.75.75%200%200%201%20.75.75v5.879c.736-.079%201.272-.273%201.688-.513.554-.32.952-.752%201.351-1.251l.218-.278c.324-.416.695-.893%201.138-1.262C8.24%204.578%208.982%204.25%2010%204.25s1.76.328%202.355.825c.443.369.814.846%201.138%201.262.075.097.147.19.218.278.399.499.797.931%201.351%201.251.546.315%201.298.55%202.438.55a.75.75%200%200%201%200%201.5c-1.36%200-2.379-.284-3.187-.75-.8-.462-1.34-1.072-1.774-1.614l-.28-.355c-.312-.4-.558-.714-.864-.97-.342-.284-.747-.477-1.395-.477s-1.053.193-1.395.477c-.306.256-.552.57-.864.97-.088.111-.18.23-.28.355-.434.542-.974%201.152-1.774%201.613-.652.377-1.442.635-2.437.72v6.865h2.667v-3.417a.75.75%200%200%201%201.5%200v3.417H9.25v-5.917a.75.75%200%200%201%201.5%200v5.917h1.833v-3.417a.75.75%200%200%201%201.5%200v3.417h1.834V15a.75.75%200%200%201%201.5%200v1.75h.083a.75.75%200%200%201%200%201.5h-15a.75.75%200%200%201-.75-.75v-15a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-infographic'%3e%3cpath%20fill-rule='evenodd'%20d='M2.946%202.946a4.083%204.083%200%201%201%205.775%205.775%204.083%204.083%200%200%201-5.775-5.775Zm2.137.415A2.583%202.583%200%200%200%204.157%207.8l.926-2.122V3.36Zm1.5%200v1.722h1.722a2.583%202.583%200%200%200-1.722-1.722Zm1.722%203.222h-1.98L5.531%208.4a2.585%202.585%200%200%200%202.773-1.816ZM17.5%209.25a.75.75%200%200%201%20.75.75v7.5a.75.75%200%200%201-1.5%200V10a.75.75%200%200%201%20.75-.75Zm-6.667.833a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-6.667a.75.75%200%200%201%20.75-.75Zm3.334.834a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-5.833a.75.75%200%200%201%20.75-.75Zm-6.667%202.5a.75.75%200%200%201%20.75.75V17.5a.75.75%200%200%201-1.5%200v-3.333a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-line'%3e%3cpath%20fill-rule='evenodd'%20d='M13.959%204.251a.75.75%200%200%201%20.571.219l4%204a.75.75%200%200%201-1.06%201.06l-3.408-3.407-3.476%204.346a.75.75%200%200%201-.921.202L6.257%208.967l-3.633%205.449a.75.75%200%201%201-1.248-.832l4-6a.75.75%200%200%201%20.96-.255l3.457%201.729%203.621-4.527a.75.75%200%200%201%20.545-.28Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-pie'%3e%3cpath%20fill-rule='evenodd'%20d='M8.246%201.922a1.5%201.5%200%200%201%201.67%201.411v5.834a.917.917%200%200%200%20.918.916H16.5a1.583%201.583%200%200%201%201.584%201.584.749.749%200%200%201-.02.17%208.25%208.25%200%201%201-9.9-9.9.748.748%200%200%201%20.082-.015Zm.17%201.496a6.75%206.75%200%201%200%208.156%208.207.083.083%200%200%200-.072-.041h-5.666a2.417%202.417%200%200%201-2.417-2.417v-5.75Zm3.651-1.113a.75.75%200%200%201%20.683-.096%208.25%208.25%200%200%201%205.041%205.042.75.75%200%200%201-.707%201h-3.75a1.584%201.584%200%200%201-1.583-1.584v-3.75a.75.75%200%200%201%20.316-.612Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.146a5.333%205.333%200%200%201%208.998%202.71%205.333%205.333%200%201%201-6.287%206.288%205.334%205.334%200%200%201-2.71-8.998Zm4.279%209.08a3.833%203.833%200%201%200%204.802-4.802%205.334%205.334%200%200%201-4.802%204.802Zm3.152-6.452a5.333%205.333%200%200%200-4.802%204.802%203.833%203.833%200%201%201%204.801-4.802Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chart-venn-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M4.145%204.145a5.333%205.333%200%200%201%208.999%202.711%205.333%205.333%200%200%201%204.07%203.773.75.75%200%200%201-1.443.409%203.833%203.833%200%200%200-2.545-2.614%205.334%205.334%200%200%201-4.802%204.802%203.832%203.832%200%200%200%201.917%202.272.75.75%200%200%201-.682%201.336%205.334%205.334%200%200%201-2.803-3.69%205.333%205.333%200%200%201-2.71-8.999Zm7.43%202.63a5.333%205.333%200%200%200-4.8%204.8%203.834%203.834%200%201%201%204.8-4.8Zm3.841%205.902a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble'%3e%3cpath%20fill-rule='evenodd'%20d='M4.9%204.16c1.562-1.108%203.51-1.667%205.484-1.587%201.974.08%203.861.795%205.308%202.029%201.448%201.235%202.36%202.913%202.538%204.73.178%201.817-.394%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.85%202.825a9.097%209.097%200%200%201-5.462-.606l-3.671.781a.75.75%200%200%201-.868-.97l.97-2.911c-.89-1.477-1.202-3.193-.863-4.866C2.258%206.862%203.336%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chat-bubble-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.323%204.072c-1.658-.067-3.277.404-4.556%201.312-1.277.906-2.12%202.178-2.402%203.567-.28%201.386.012%202.822.84%204.046a.75.75%200%200%201%20.09.657l-.669%202.006%202.635-.56a.75.75%200%200%201%20.483.059%207.58%207.58%200%200%200%204.753.595c1.618-.32%203.03-1.149%203.986-2.308.954-1.157%201.391-2.567%201.254-3.969-.137-1.402-.845-2.732-2.02-3.734-1.176-1.004-2.736-1.604-4.394-1.67Zm-5.424.088c1.562-1.108%203.511-1.667%205.485-1.587%201.974.08%203.86.795%205.307%202.029%201.449%201.235%202.36%202.913%202.539%204.73.178%201.817-.395%203.618-1.59%205.068-1.192%201.447-2.92%202.443-4.851%202.825a9.097%209.097%200%200%201-5.462-.606l-3.67.781a.75.75%200%200%201-.869-.97l.97-2.911c-.89-1.477-1.201-3.193-.863-4.866C2.258%206.862%203.335%205.27%204.9%204.16Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check'%3e%3cpath%20fill-rule='evenodd'%20d='M17.197%205.303a.75.75%200%200%201%200%201.06l-8.333%208.334a.75.75%200%200%201-1.06%200L3.635%2010.53a.75.75%200%201%201%201.061-1.06l3.636%203.636%207.803-7.803a.75.75%200%200%201%201.061%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm6.971%204.546a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-check-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm3.813%203.674a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.106.05l-2.5-2.5a.75.75%200%201%201%201.06-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-checklist'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%203.22a.75.75%200%200%201%200%201.06L4.697%206.364a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%203.22a.75.75%200%200%201%201.06%200ZM8.417%205a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%208.22a.75.75%200%200%201%200%201.06l-2.083%202.084a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.061l.72.72L5.72%208.22a.75.75%200%200%201%201.06%200ZM8.417%2010a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75ZM6.78%2013.22a.75.75%200%200%201%200%201.06l-2.083%202.083a.75.75%200%200%201-1.06%200l-1.25-1.25a.75.75%200%201%201%201.06-1.06l.72.72L5.72%2013.22a.75.75%200%200%201%201.06%200ZM8.417%2015a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%201%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-down'%3e%3cpath%20fill-rule='evenodd'%20d='M4.47%206.97a.75.75%200%200%201%201.06%200L10%2011.44l4.47-4.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-left'%3e%3cpath%20fill-rule='evenodd'%20d='M13.03%204.47a.75.75%200%200%201%200%201.06L8.562%2010l4.47%204.47a.75.75%200%200%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-right'%3e%3cpath%20fill-rule='evenodd'%20d='M6.97%204.47a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.06-1.06L11.44%2010%206.97%205.53a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevron-up'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%206.97a.75.75%200%200%201%201.06%200l5%205a.75.75%200%200%201-1.06%201.06L10%208.56l-4.47%204.47a.75.75%200%201%201-1.06-1.06l5-5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-in'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%208.03a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200-1.06-1.06L10%206.438%207.197%203.636a.75.75%200%200%200-1.06%201.061L9.47%208.03Zm-3.334%208.334a.75.75%200%200%200%201.061%200L10%2013.56l2.803%202.803a.75.75%200%201%200%201.06-1.06L10.53%2011.97a.75.75%200%200%200-1.06%200l-3.334%203.333a.75.75%200%200%200%200%201.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-left'%3e%3cpath%20fill-rule='evenodd'%20d='M9.697%205.303a.75.75%200%200%201%200%201.06L6.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L4.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Zm5%200a.75.75%200%200%201%200%201.06L11.061%2010l3.636%203.636a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201%200-1.06l4.167-4.167a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-out'%3e%3cpath%20fill-rule='evenodd'%20d='M9.47%203.636a.75.75%200%200%201%201.06%200l3.334%203.334a.75.75%200%200%201-1.06%201.06L10%205.227%207.197%208.03a.75.75%200%200%201-1.06-1.06L9.47%203.636ZM6.136%2011.97a.75.75%200%200%201%201.061%200L10%2014.773l2.803-2.803a.75.75%200%201%201%201.06%201.06l-3.333%203.334a.75.75%200%200%201-1.06%200L6.136%2013.03a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-chevrons-right'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%205.303a.75.75%200%200%201%201.06%200L10.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L8.939%2010%205.303%206.364a.75.75%200%200%201%200-1.061Zm5%200a.75.75%200%200%201%201.06%200L15.53%209.47a.75.75%200%200%201%200%201.06l-4.167%204.167a.75.75%200%201%201-1.06-1.06L13.939%2010l-3.636-3.636a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-dashed'%3e%3cpath%20fill-rule='evenodd'%20d='M9.25%202.499a.75.75%200%200%201%20.751-.749%208.25%208.25%200%200%201%203.154.632.75.75%200%200%201-.576%201.385%206.75%206.75%200%200%200-2.58-.517.75.75%200%200%201-.749-.751Zm-1.424.29a.75.75%200%200%201-.406.979A6.75%206.75%200%200%200%205.23%205.23a.75.75%200%200%201-1.06-1.06%208.25%208.25%200%200%201%202.676-1.788.75.75%200%200%201%20.98.406Zm6.944%201.38a.75.75%200%200%201%201.06%200%208.251%208.251%200%200%201%201.788%202.677.75.75%200%201%201-1.386.574%206.75%206.75%200%200%200-1.462-2.19.75.75%200%200%201%200-1.06ZM3.363%206.441a.75.75%200%200%201%20.405.98%206.75%206.75%200%200%200-.518%202.58.75.75%200%201%201-1.5-.002%208.25%208.25%200%200%201%20.632-3.154.75.75%200%200%201%20.981-.404ZM17.501%209.25a.75.75%200%200%201%20.749.751%208.249%208.249%200%200%201-.633%203.154.75.75%200%200%201-1.385-.576c.34-.818.516-1.695.518-2.58a.75.75%200%200%201%20.751-.749ZM2.789%2012.174a.75.75%200%200%201%20.98.406%206.75%206.75%200%200%200%201.462%202.19.75.75%200%201%201-1.061%201.06%208.25%208.25%200%200%201-1.788-2.677.75.75%200%200%201%20.407-.98ZM15.83%2014.77a.75.75%200%200%201%200%201.06%208.25%208.25%200%200%201-2.677%201.788.75.75%200%200%201-.574-1.386%206.75%206.75%200%200%200%202.19-1.462.75.75%200%200%201%201.06%200Zm-9.39%201.867a.75.75%200%200%201%20.98-.404%206.75%206.75%200%200%200%202.58.517.75.75%200%201%201-.003%201.5%208.249%208.249%200%200%201-3.153-.633.75.75%200%200%201-.405-.98Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-click'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75V5a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.137%204.136a.75.75%200%200%201%201.061%200L7.03%205.97a.75.75%200%201%201-1.06%201.06L4.137%205.197a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061L14.031%207.03a.75.75%200%200%201-1.06-1.06l1.833-1.834a.75.75%200%200%201%201.06%200ZM1.75%2010a.75.75%200%200%201%20.75-.75H5a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm5.28%202.97a.75.75%200%200%201%200%201.06l-1.833%201.834a.75.75%200%201%201-1.06-1.061l1.833-1.834a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.238%209.288a.75.75%200%200%200-.949.949l2.5%207.5a.75.75%200%200%200%201.382.098l1.202-2.402%202.597%202.597a.75.75%200%201%200%201.06-1.06l-2.166-2.813%201.972-.986a.75.75%200%200%200-.098-1.383l-7.5-2.5Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clipboard-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v3.334a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917H7.5a.75.75%200%200%201%200%201.5H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm7.464%2010.788a1%201%200%200%200-.707.293l-.003.002-2.628%202.605v1.437h1.438l2.605-2.628.002-.002a1%201%200%200%200-.707-1.707Zm-.957-1.31a2.5%202.5%200%200%201%202.726%204.076l-.001.002-2.823%202.847a.75.75%200%200%201-.533.222h-2.5a.75.75%200%200%201-.75-.75v-2.5c0-.2.08-.392.222-.532l2.848-2.823.001-.001a2.5%202.5%200%200%201%20.81-.541Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Zm0%201.833a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M7.645%202.095a8.25%208.25%200%200%201%2010.593%208.365.75.75%200%201%201-1.498-.083%206.75%206.75%200%201%200-4.48%205.985.75.75%200%201%201%20.502%201.413%208.25%208.25%200%201%201-5.117-15.68ZM10%205.083a.75.75%200%200%201%20.75.75V9.69l2.28%202.28a.75.75%200%200%201-1.06%201.061l-2.5-2.5a.75.75%200%200%201-.22-.53V5.833a.75.75%200%200%201%20.75-.75Zm5.833%207.5a.75.75%200%200%201%20.75.75v2.5a.75.75%200%200%201-1.5%200v-2.5a.75.75%200%200%201%20.75-.75Zm.001%204.875c.483%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-clock-history'%3e%3cpath%20fill-rule='evenodd'%20d='M14.441%204.841A6.75%206.75%200%200%200%203.288%209.243a.75.75%200%201%201-1.493-.152%208.25%208.25%200%201%201%201.497%205.634v1.942a.75.75%200%200%201-1.5%200V12.5a.75.75%200%200%201%20.75-.75h4.166a.75.75%200%201%201%200%201.5h-2.58A6.75%206.75%200%201%200%2014.44%204.841ZM10%205.917a.75.75%200%200%201%20.75.75v3.022l1.447%201.447a.75.75%200%200%201-1.06%201.061L9.47%2010.53a.75.75%200%200%201-.22-.53V6.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%204.633c-1.441-1.156-3.43-1.512-5.224-.966-1.605.49-2.882%201.65-3.416%203.146-2.267.272-4.059%202.139-4.059%204.45%200%202.505%202.1%204.486%204.63%204.487l9.899.003c2.013%200%203.638-1.64%203.638-3.656a3.646%203.646%200%200%200-3.621-3.655c.026-1.454-.649-2.851-1.847-3.81Zm-.938%201.17c-1.04-.833-2.51-1.108-3.85-.7-1.336.407-2.286%201.412-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.363-3.131%202.985%200%201.622%201.375%202.986%203.13%202.986l9.9.003c1.175%200%202.137-.96%202.137-2.156a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.4-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M13.616%202.966c-1.441-1.155-3.43-1.511-5.224-.965-1.605.489-2.882%201.65-3.416%203.145C2.709%205.418.917%207.286.917%209.597c0%202.504%202.1%204.486%204.63%204.486l.37.001v2.583a.083.083%200%200%201-.083.083H2.5a.75.75%200%200%200%200%201.5h3.334a1.583%201.583%200%200%200%201.583-1.583v-2.58H9.25V17.5a.75.75%200%201%200%201.5%200v-3.414h1.834v2.58a1.584%201.584%200%200%200%201.583%201.584H17.5a.75.75%200%200%200%200-1.5h-3.333a.083.083%200%200%201-.083-.083v-2.58h1.362a3.646%203.646%200%200%200%203.638-3.656c0-2.01-1.616-3.647-3.621-3.655.026-1.455-.649-2.852-1.847-3.81Zm-.938%201.17c-1.04-.832-2.51-1.108-3.85-.7-1.336.407-2.286%201.413-2.548%202.59a.75.75%200%200%201-.732.586c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986h.003l1.117.003h8.779c1.177%200%202.138-.96%202.138-2.155a2.146%202.146%200%200%200-2.137-2.155h-.825a.75.75%200%200%201-.732-.913c.26-1.17-.18-2.401-1.212-3.226Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-cloud-search'%3e%3cpath%20fill-rule='evenodd'%20d='M10.884%204.88c-.601-.104-1.27-.039-2.037.216-1.42.474-2.306%201.427-2.567%202.596a.75.75%200%200%201-.732.587c-1.757%200-3.131%201.364-3.131%202.985%200%201.623%201.375%202.986%203.13%202.986H9a.75.75%200%201%201%200%201.5H5.548c-2.53%200-4.631-1.982-4.631-4.486%200-2.311%201.79-4.178%204.057-4.45.527-1.489%201.763-2.595%203.4-3.14.941-.315%201.866-.428%202.767-.272.906.158%201.737.58%202.502%201.254%201.162%201.024%201.845%202.348%201.82%203.787a.75.75%200%200%201-.016%201.5h-.825a.75.75%200%200%201-.732-.913c.256-1.151-.16-2.298-1.239-3.25-.586-.516-1.17-.796-1.767-.9Zm1.818%207.822a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%201%201-1.06%201.061l-1.098-1.097a3.25%203.25%200%200%201-4.004-5.065ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.021%205.425a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-code-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm3.158.872a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.864%207.803a.75.75%200%200%201%200%201.06L7.728%2010l1.136%201.136a.75.75%200%200%201-1.06%201.06L6.136%2010.53a.75.75%200%200%201%200-1.06l1.666-1.667a.75.75%200%200%201%201.061%200Zm2.273%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06L12.273%2010l-1.136-1.136a.75.75%200%200%201%200-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm7.022%203.758c.2.201.271.498.181.768l-1.666%205a.75.75%200%200%201-.475.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.937%202.79-1.074%203.221%203.221-1.073%201.074-3.222-3.221%201.074ZM10%202.75a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200V3.5a.75.75%200%200%201%20.75-.75Zm0%2013a.75.75%200%200%201%20.75.75v.01a.75.75%200%200%201-1.5%200v-.01a.75.75%200%200%201%20.75-.75ZM2.75%2010a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H3.5a.75.75%200%200%201-.75-.75Zm13%200a.75.75%200%200%201%20.75-.75h.009a.75.75%200%200%201%200%201.5H16.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-compass-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm2.407.914A6.75%206.75%200%200%200%203.292%209.25h.875a.75.75%200%200%201%200%201.5h-.875a6.75%206.75%200%200%200%205.958%205.958v-.875a.75.75%200%200%201%201.5%200v.875a6.751%206.751%200%200%200%205.958-5.958h-.875a.75.75%200%200%201%200-1.5h.875a6.75%206.75%200%200%200-5.958-5.958v.875a.75.75%200%200%201-1.5%200v-.875Zm4.614%202.844c.2.201.27.498.18.768l-1.666%205a.75.75%200%200%201-.474.474l-5%201.667a.75.75%200%200%201-.949-.949l1.667-5a.75.75%200%200%201%20.474-.474l5-1.667a.75.75%200%200%201%20.768.181Zm-4.938%202.79-1.073%203.222%203.22-1.074%201.075-3.221-3.222%201.073Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-confetti'%3e%3cpath%20fill-rule='evenodd'%20d='M13.349%203.683c.643-.522%201.577-.766%202.9-.766a.75.75%200%200%201%200%201.5c-1.175%200-1.7.224-1.955.431-.247.2-.37.483-.494.98l-.053.223c-.1.434-.237%201.023-.553%201.529-.418.67-1.102%201.159-2.198%201.402a.75.75%200%201%201-.326-1.464c.78-.173%201.085-.465%201.252-.733.172-.275.244-.576.346-1.004l.077-.317c.136-.545.352-1.252%201.004-1.78ZM15.083%207a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-4.166-4.167a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm-5.834.834a.75.75%200%200%201%20.75-.75h.009a.75.75%200%201%201%200%201.5h-.009a.75.75%200%200%201-.75-.75Zm9.167%209.166a.75.75%200%200%201%20.75-.75h.008a.75.75%200%201%201%200%201.5H15a.75.75%200%200%201-.75-.75ZM4.917%208.364a1.494%201.494%200%200%200-.38.662L1.792%2016.75a.75.75%200%200%200%20.957.958l7.885-2.793a.751.751%200%200%200%20.157-.077c.122-.064.238-.148.344-.254.332-.332.445-.764.447-1.16.003-.39-.1-.798-.255-1.188-.314-.781-.9-1.632-1.666-2.397-.765-.765-1.616-1.352-2.398-1.666-.39-.156-.797-.258-1.188-.255-.395.002-.827.115-1.16.447Zm2.955%205.938a8.515%208.515%200%200%201-1.481-1.193%208.52%208.52%200%200%201-1.19-1.475l-1.467%204.133%204.138-1.465Zm2.2-.783a.394.394%200%200%201-.105.011c-.135.001-.343-.037-.62-.148-.553-.221-1.239-.676-1.896-1.333-.552-.553-.966-1.13-1.215-1.633-.25-.504-.283-.825-.26-.96l.01-.029a.413.413%200%200%201%20.1-.01c.135-.001.343.037.62.148.553.221%201.238.677%201.895%201.334s1.113%201.342%201.334%201.894c.111.278.15.486.148.621a.394.394%200%200%201-.011.105ZM8.414%202.996a.75.75%200%200%201%201.006.335c.537%201.074.39%202.13.145%202.865a4.997%204.997%200%200%201-.607%201.219l-.016.023-.005.007-.002.003-.001.001S8.933%207.45%208.333%207l.6.45a.75.75%200%200%201-1.202-.897l.004-.006.026-.038a3.498%203.498%200%200%200%20.381-.788c.172-.515.233-1.126-.063-1.719a.75.75%200%200%201%20.335-1.006Zm4.671%208.64a.074.074%200%200%201-.002.003l.001-.002.001-.001Zm.004-.004-.006.007a.75.75%200%200%201-1.169-.94l.586.468-.586-.469.001-.001.002-.001.002-.004.008-.01a1.912%201.912%200%200%201%20.099-.112%204.608%204.608%200%200%201%201.284-.96c.9-.45%202.194-.696%203.692.053a.75.75%200%200%201-.67%201.341c-1.003-.5-1.793-.33-2.35-.052a3.11%203.11%200%200%200-.893.68Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-clipboard'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%200%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416v2.5a.75.75%200%200%201-1.5%200v-2.5a.917.917%200%200%200-.916-.916H13.13a2.418%202.418%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917V15a.75.75%200%200%201%201.5%200v.833a2.417%202.417%200%200%201-2.416%202.417H5.833a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87c.117-.359.318-.688.589-.96Zm3.907%206.178a.75.75%200%200%201%200%201.06l-1.22%201.22h5.69a.75.75%200%200%201%200%201.5h-5.69l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-code'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.917.917%200%201%200%200%201.833h1.666a.917.917%200%201%200%200-1.833H9.167Zm-1.71-.792a2.417%202.417%200%200%201%201.71-.708h1.666a2.417%202.417%200%200%201%202.298%201.667h1.036a2.417%202.417%200%200%201%202.416%202.416V10a.75.75%200%200%201-1.5%200V5.833a.916.916%200%200%200-.916-.916H13.13a2.417%202.417%200%200%201-2.298%201.666H9.167a2.417%202.417%200%200%201-2.298-1.666H5.833a.917.917%200%200%200-.916.916v10a.917.917%200%200%200%20.916.917h2.5a.75.75%200%200%201%200%201.5h-2.5a2.417%202.417%200%200%201-2.416-2.417v-10a2.417%202.417%200%200%201%202.416-2.416H6.87a2.42%202.42%200%200%201%20.589-.96Zm6.057%2010.352a.75.75%200%200%201-.015%201.061l-1.59%201.546%201.59%201.545a.75.75%200%201%201-1.046%201.076l-2.143-2.084a.75.75%200%200%201%200-1.075l2.143-2.083a.75.75%200%200%201%201.06.014Zm2.139%200a.75.75%200%200%201%201.06-.014l2.143%202.083a.75.75%200%200%201%200%201.075l-2.143%202.084a.75.75%200%201%201-1.045-1.076l1.59-1.545-1.59-1.546a.75.75%200%200%201-.015-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-copy-content'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%203.291A2.417%202.417%200%200%201%205%202.583h6.666A2.417%202.417%200%200%201%2014.083%205v.917H15a2.417%202.417%200%200%201%202.416%202.416V15A2.417%202.417%200%200%201%2015%2017.417H8.333A2.417%202.417%200%200%201%205.916%2015v-.917H5a2.417%202.417%200%200%201-2.417-2.416V5c0-.641.255-1.256.708-1.709ZM7.417%2015a.917.917%200%200%200%20.917.917H15a.917.917%200%200%200%20.916-.917V8.333A.917.917%200%200%200%2015%207.417H8.333a.917.917%200%200%200-.917.916V15Zm5.167-9.083h-4.25a2.417%202.417%200%200%200-2.417%202.416v4.25H5a.917.917%200%200%201-.917-.916V5A.917.917%200%200%201%205%204.083h6.666a.917.917%200%200%201%20.917.917v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-created'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.83333%204.08337C5.59022%204.08337%205.35706%204.17995%205.18515%204.35186C5.01324%204.52377%204.91666%204.75693%204.91666%205.00004V15C4.91666%2015.2432%205.01324%2015.4763%205.18515%2015.6482C5.35706%2015.8201%205.59022%2015.9167%205.83333%2015.9167H8.0125C8.42671%2015.9167%208.7625%2016.2525%208.7625%2016.6667C8.7625%2017.0809%208.42671%2017.4167%208.0125%2017.4167H5.83333C5.19239%2017.4167%204.5777%2017.1621%204.12449%2016.7089C3.67128%2016.2557%203.41666%2015.641%203.41666%2015V5.00004C3.41666%204.3591%203.67128%203.74441%204.12449%203.2912C4.5777%202.83799%205.19239%202.58337%205.83333%202.58337H12.5C13.1409%202.58337%2013.7556%202.83799%2014.2088%203.2912C14.6621%203.74441%2014.9167%204.3591%2014.9167%205.00004V11.6667C14.9167%2012.0809%2014.5809%2012.4167%2014.1667%2012.4167C13.7524%2012.4167%2013.4167%2012.0809%2013.4167%2011.6667V5.00004C13.4167%204.75693%2013.3201%204.52377%2013.1482%204.35186C12.9763%204.17995%2012.7431%204.08337%2012.5%204.08337H5.83333ZM6.75%206.66671C6.75%206.25249%207.08578%205.91671%207.5%205.91671H10.8333C11.2475%205.91671%2011.5833%206.25249%2011.5833%206.66671C11.5833%207.08092%2011.2475%207.41671%2010.8333%207.41671H7.5C7.08578%207.41671%206.75%207.08092%206.75%206.66671ZM6.75%2010C6.75%209.58583%207.08578%209.25004%207.5%209.25004H9.16666C9.58088%209.25004%209.91666%209.58583%209.91666%2010C9.91666%2010.4143%209.58088%2010.75%209.16666%2010.75H7.5C7.08578%2010.75%206.75%2010.4143%206.75%2010ZM17.197%2013.6364C17.4899%2013.9293%2017.4899%2014.4041%2017.197%2014.697L13.8637%2018.0304C13.723%2018.171%2013.5322%2018.25%2013.3333%2018.25C13.1344%2018.25%2012.9437%2018.171%2012.803%2018.0304L11.1363%2016.3637C10.8434%2016.0708%2010.8434%2015.5959%2011.1363%2015.303C11.4292%2015.0102%2011.9041%2015.0102%2012.197%2015.303L13.3333%2016.4394L16.1363%2013.6364C16.4292%2013.3435%2016.9041%2013.3435%2017.197%2013.6364Z'/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-credit-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.917a1.75%201.75%200%200%200-1.75%201.75v.916h13.5v-.916A1.75%201.75%200%200%200%2015%204.917H5Zm13.25%201.75A3.25%203.25%200%200%200%2015%203.417H5a3.25%203.25%200%200%200-3.25%203.25v6.666A3.25%203.25%200%200%200%205%2016.583h10a3.25%203.25%200%200%200%203.25-3.25V6.667Zm-1.5%202.416H3.25v4.25A1.75%201.75%200%200%200%205%2015.083h10a1.75%201.75%200%200%200%201.75-1.75v-4.25ZM5.084%2012.5a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5h-.008a.75.75%200%200%201-.75-.75Zm3.333%200a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H9.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Zm0%202.102-2.71%204.064a.75.75%200%200%201-1.092.17L3.64%208.539l1.143%205.711H15.22l1.142-5.711-2.56%202.047a.75.75%200%200%201-1.092-.17L10%206.352Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-crown'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.25a.75.75%200%200%201%20.624.334l2.88%204.32%203.528-2.823a.75.75%200%200%201%201.203.733l-1.666%208.333a.75.75%200%200%201-.736.603H4.167a.75.75%200%200%201-.736-.603L1.765%206.814a.75.75%200%200%201%201.204-.733l3.527%202.822%202.88-4.319A.75.75%200%200%201%2010%204.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data'%3e%3cpath%20fill-rule='evenodd'%20d='M5.022%202.53C6.38%202.021%208.17%201.75%2010%201.75c1.83%200%203.62.271%204.977.78.677.254%201.26.572%201.685.957.426.386.754.897.754%201.513v10c0%20.616-.328%201.127-.754%201.513-.426.385-1.008.703-1.685.957-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78-.677-.254-1.259-.572-1.685-.957-.426-.386-.754-.897-.754-1.513V5c0-.616.328-1.127.754-1.513.426-.385%201.008-.703%201.685-.957Zm-.939%204.51V10c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401V7.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.748%206.748%200%200%201-.939-.43ZM15.916%205c0%20.047-.022.185-.26.4-.238.216-.633.45-1.206.666-1.143.428-2.745.684-4.45.684-1.706%200-3.307-.256-4.451-.684-.573-.215-.967-.45-1.205-.665-.238-.216-.261-.354-.261-.401%200-.047.023-.185.26-.4.239-.216.633-.45%201.206-.666%201.144-.428%202.745-.684%204.45-.684%201.706%200%203.308.256%204.451.684.573.215.968.45%201.206.665.238.216.26.354.26.401Zm0%207.04c-.284.16-.6.303-.939.43-1.357.509-3.147.78-4.977.78-1.83%200-3.62-.271-4.978-.78a6.735%206.735%200%200%201-.939-.43V15c0%20.047.023.185.26.4.239.216.633.45%201.206.665%201.144.43%202.745.685%204.45.685%201.706%200%203.308-.256%204.451-.684.573-.215.968-.45%201.206-.665.238-.216.26-.354.26-.401v-2.96Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-data-export'%3e%3cpath%20fill-rule='evenodd'%20d='M5.023%202.53c1.31-.491%203.07-.78%204.977-.78%201.907%200%203.667.289%204.977.78.653.245%201.233.554%201.663.936.43.38.777.897.777%201.534v5a.75.75%200%200%201-1.5%200V7.04a6.791%206.791%200%200%201-.94.43c-1.31.491-3.07.78-4.977.78-1.907%200-3.667-.289-4.977-.78a6.788%206.788%200%200%201-.94-.43V10c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.895%200%201.743-.069%202.507-.191a.75.75%200%200%201%20.238%201.48c-.848.136-1.775.211-2.744.211-1.907%200-3.667-.289-4.977-.78a6.793%206.793%200%200%201-.94-.43V15c0%20.054.027.195.272.412.244.216.64.446%201.194.654%201.103.413%202.676.684%204.45.684.125%200%20.25-.002.375-.004a.75.75%200%201%201%20.029%201.5c-.132.002-.266.004-.403.004-1.907%200-3.667-.289-4.977-.78-.653-.245-1.233-.554-1.663-.936-.43-.38-.777-.897-.777-1.534V5c0-.637.347-1.154.777-1.534.43-.382%201.01-.691%201.663-.936ZM4.083%205c0%20.054.027.195.272.412.244.217.64.446%201.194.654%201.103.413%202.676.684%204.45.684%201.776%200%203.349-.271%204.451-.684.555-.208.95-.437%201.195-.654.245-.217.272-.358.272-.412%200-.054-.027-.195-.272-.412-.244-.217-.64-.446-1.194-.654-1.103-.413-2.676-.684-4.451-.684-1.775%200-3.348.271-4.45.684-.555.208-.951.437-1.195.654-.245.217-.272.358-.272.412Zm11.22%207.803a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%200%201-1.06-1.06l1.22-1.22h-3.19a.75.75%200%201%201%200-1.5h3.19l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-delete'%3e%3cpath%20fill-rule='evenodd'%20d='M8.333%203.25a.083.083%200%200%200-.083.083v1.75h3.5v-1.75a.083.083%200%200%200-.084-.083H8.333Zm4.917%201.833v-1.75a1.583%201.583%200%200%200-1.584-1.583H8.333A1.583%201.583%200%200%200%206.75%203.333v1.75H3.333a.75.75%200%201%200%200%201.5h.143l.774%209.284a2.417%202.417%200%200%200%202.416%202.383h6.667a2.417%202.417%200%200%200%202.416-2.383l.774-9.284h.143a.75.75%200%201%200%200-1.5H13.25Zm-8.269%201.5.766%209.188c.002.02.003.041.003.062a.917.917%200%200%200%20.916.917h6.667a.917.917%200%200%200%20.917-.917c0-.02%200-.041.002-.062l.766-9.188H4.98Zm3.352%201.834a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Zm3.333%200a.75.75%200%200%201%20.75.75v5a.75.75%200%201%201-1.5%200v-5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-dependency'%3e%3cpath%20fill-rule='evenodd'%20d='M16.709%204.124a2.416%202.416%200%201%201-4.006%202.46h-1.036a.917.917%200%200%200-.917.916v5a.917.917%200%200%200%20.917.917h1.036a2.416%202.416%200%201%201%200%201.5h-1.036A2.416%202.416%200%200%201%209.25%2012.5v-1.75H7.297a2.415%202.415%200%200%201-4.006.959A2.417%202.417%200%201%201%207.297%209.25H9.25V7.5a2.417%202.417%200%200%201%202.417-2.417h1.036a2.416%202.416%200%200%201%204.006-.959Zm-.792%201.71a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Zm0%208.333a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200ZM5.917%2010a.917.917%200%201%200-1.834%200%20.917.917%200%200%200%201.834%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-desktop'%3e%3cpath%20fill-rule='evenodd'%20d='M3.334%203.25a.083.083%200%200%200-.084.083v8.417h13.5V3.333a.083.083%200%200%200-.083-.083H3.334Zm14.916.083a1.583%201.583%200%200%200-1.583-1.583H3.334A1.583%201.583%200%200%200%201.75%203.333v10a1.583%201.583%200%200%200%201.584%201.583h4.15l-.229%201.834h-.588a.75.75%200%200%200%200%201.5h6.667a.75.75%200%200%200%200-1.5h-.588l-.23-1.834h4.151a1.583%201.583%200%200%200%201.583-1.583v-10Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-mobile'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%203.25a.917.917%200%200%200-.917.917v11.666a.917.917%200%200%200%20.917.917h6.667a.917.917%200%200%200%20.917-.917V4.167a.917.917%200%200%200-.917-.917h-1.755a.75.75%200%200%201-.745.833H9.167a.75.75%200%200%201-.745-.833H6.667Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h6.666a2.417%202.417%200%200%201%202.417%202.417v11.666a2.417%202.417%200%200%201-2.417%202.417H6.667a2.417%202.417%200%200%201-2.417-2.417V4.167c0-.641.255-1.256.708-1.71Zm5.043%2010.959a.75.75%200%200%201%20.75.75v.008a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-device-server'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75V7.5A1.75%201.75%200%200%200%205%209.25h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5ZM17.077%2010a3.25%203.25%200%200%200%201.173-2.5V5.833A3.25%203.25%200%200%200%2015%202.583H5a3.25%203.25%200%200%200-3.25%203.25V7.5A3.25%203.25%200%200%200%202.924%2010a3.246%203.246%200%200%200-1.174%202.5v1.667A3.25%203.25%200%200%200%205%2017.417h10a3.25%203.25%200%200%200%203.25-3.25V12.5a3.25%203.25%200%200%200-1.173-2.5ZM5%2010.75a1.75%201.75%200%200%200-1.75%201.75v1.667A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V12.5A1.75%201.75%200%200%200%2015%2010.75H5Zm.834-4.833a.75.75%200%200%201%20.75.75v.008a.75.75%200%201%201-1.5%200v-.008a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Zm-2.583%205.916a.75.75%200%200%201%20.75.75v.009a.75.75%200%201%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Zm2.583.75a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-devices'%3e%3cpath%20fill-rule='evenodd'%20d='M3.463%203.047c.297-.297.7-.464%201.12-.464h10.833A1.583%201.583%200%200%201%2017%204.167v1.75h.083A1.583%201.583%200%200%201%2018.666%207.5v8.333a1.583%201.583%200%200%201-1.583%201.584h-5a1.584%201.584%200%200%201-1.583-1.584v-.083H2.083a.75.75%200%200%201%200-1.5h.919A1.584%201.584%200%200%201%203%2014.167v-10c0-.42.166-.823.463-1.12Zm1.12%2011.203H10.5V7.5a1.583%201.583%200%200%201%201.583-1.583H15.5v-1.75a.083.083%200%200%200-.084-.084H4.583a.083.083%200%200%200-.083.084v10a.084.084%200%200%200%20.083.083Zm8.421-6.833h-.921A.083.083%200%200%200%2012%207.5v8.333a.083.083%200%200%200%20.083.084h5a.083.083%200%200%200%20.083-.084V7.5a.083.083%200%200%200-.083-.083h-.921a.75.75%200%200%201-.745.833H13.75a.75.75%200%200%201-.746-.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M14.583%2013.941a.75.75%200%200%201%20.75.75v.009a.75.75%200%200%201-1.5%200v-.009a.75.75%200%200%201%20.75-.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-diamond-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.116%202.323a1.25%201.25%200%200%201%201.768%200l6.793%206.793a1.25%201.25%200%200%201%200%201.768l-6.793%206.793a1.25%201.25%200%200%201-1.768%200l-6.793-6.793a1.25%201.25%200%200%201%200-1.768l6.793-6.793ZM10%203.561%203.56%2010%2010%2016.44%2016.44%2010%2010%203.56Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-document-question'%3e%3cpath%20fill-rule='evenodd'%20d='M5.833%203.25a.917.917%200%200%200-.916.917v11.666a.917.917%200%200%200%20.916.917h3.75a.75.75%200%200%201%200%201.5h-3.75a2.417%202.417%200%200%201-2.416-2.417V4.167A2.417%202.417%200%200%201%205.833%201.75h5.834a.75.75%200%200%201%20.53.22l4.167%204.166c.14.141.22.332.22.53v4.167a.75.75%200%200%201-1.5%200V7.417H12.5a1.583%201.583%200%200%201-1.583-1.584V3.25H5.833Zm7.039%208.547a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-door-exit'%3e%3cpath%20fill-rule='evenodd'%20d='M7%209.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V10c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m7.778%202.777-3.334.834a.917.917%200%200%200-.694.889v10.47c0%20.573.39%201.073.947%201.212l4.116%201.03a.083.083%200%200%200%20.104-.082V3.667a.92.92%200%200%200-.727-.897.917.917%200%200%200-.412.007Zm2.639.977v12.163h1.833v-1.25a.75.75%200%200%201%201.5%200v1.25h1.417a.75.75%200%200%201%200%201.5H10.39a1.585%201.585%200%200%201-1.94%201.25l-4.117-1.03A2.75%202.75%200%200%201%202.25%2014.97V4.5a2.417%202.417%200%200%201%201.83-2.345l3.334-.833a2.417%202.417%200%200%201%202.545.93.765.765%200%200%201%20.048-.002l1.318.012a2.416%202.416%200%200%201%202.413%202.417.75.75%200%200%201-1.5%200%20.917.917%200%200%200-.916-.917h-.007l-.898-.008ZM14.22%206.47a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H12.5a.75.75%200%200%201%200-1.5h2.94l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-download'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v8.19l2.886-2.887a.75.75%200%200%201%201.06%201.061l-4.166%204.167a.75.75%200%200%201-1.06%200L5.302%209.697a.75.75%200%201%201%201.06-1.06l2.887%202.886v-8.19a.75.75%200%200%201%20.75-.75ZM3.333%2013.417a.75.75%200%200%201%20.75.75v1.666A.917.917%200%200%200%205%2016.75h10a.917.917%200%200%200%20.916-.917v-1.666a.75.75%200%200%201%201.5%200v1.666A2.417%202.417%200%200%201%2015%2018.25H5a2.417%202.417%200%200%201-2.417-2.417v-1.666a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit'%3e%3cpath%20fill-rule='evenodd'%20d='M12.848%203.107a3.107%203.107%200%200%201%203.386%205.067l-8.75%208.75a.75.75%200%200%201-.53.22H3.62a.75.75%200%200%201-.75-.75V13.06a.75.75%200%200%201%20.22-.53L11%204.618a.117.117%200%200%201%20.01-.01l.829-.828a3.106%203.106%200%200%201%201.008-.673Zm-1.311%203.097L4.37%2013.371v2.273h2.273l7.167-7.167-2.273-2.273Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-edit-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm1.37%204.631a1.722%201.722%200%200%201%201.876%202.809l-4.404%204.403c-.1.1-.237.157-.379.157H6.786a.536.536%200%200%201-.536-.536v-1.677c0-.142.056-.279.157-.38l4.403-4.403c.16-.16.35-.286.56-.373Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-equal-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5ZM7%207.5A.75.75%200%200%200%207%209h6a.75.75%200%200%200%200-1.5H7Zm-.75%204.25A.75.75%200%200%201%207%2011h6a.75.75%200%200%201%200%201.5H7a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-extension'%3e%3cpath%20fill-rule='evenodd'%20d='M6.625%202.458a2.417%202.417%200%200%201%204.126%201.709V5a.083.083%200%200%200%20.083.083h2.5a1.583%201.583%200%200%201%201.583%201.584v2.5a.083.083%200%200%200%20.084.083h.833a2.417%202.417%200%200%201%200%204.833H15a.083.083%200%200%200-.084.083v2.5a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-.833a.917.917%200%200%200-1.833%200v.833a1.583%201.583%200%200%201-1.583%201.584h-2.5a1.583%201.583%200%200%201-1.584-1.584v-2.5a1.583%201.583%200%200%201%201.584-1.583h.833a.917.917%200%200%200%200-1.833h-.833A1.583%201.583%200%200%201%201.75%209.167v-2.5a1.583%201.583%200%200%201%201.584-1.584h2.5A.083.083%200%200%200%205.917%205v-.833c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter'%3e%3cpath%20fill-rule='evenodd'%20d='M2.65%203.856a.75.75%200%200%201%20.683-.44h13.333a.75.75%200%200%201%20.566%201.243l-5.149%205.92v5.254a.75.75%200%200%201-1.078.675l-2.667-1.296a.75.75%200%200%201-.422-.675V10.58L2.767%204.66a.75.75%200%200%201-.116-.803Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-list'%3e%3cpath%20fill-rule='evenodd'%20d='M2.5%206.667a.75.75%200%200%201%20.75-.75h13.5a.75.75%200%200%201%200%201.5H3.25a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M7.5%2013.333a.75.75%200%200%201%20.75-.75h3.5a.75.75%200%200%201%200%201.5h-3.5a.75.75%200%200%201-.75-.75ZM5%2010a.75.75%200%200%201%20.75-.75h8.625a.75.75%200%200%201%200%201.5H5.75A.75.75%200%200%201%205%2010Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-filter-tune'%3e%3cpath%20fill-rule='evenodd'%20d='M9.957%204.958a2.417%202.417%200%200%201%204.007.959h2.702a.75.75%200%201%201%200%201.5h-2.702a2.417%202.417%200%200%201-4.595%200H3.333a.75.75%200%201%201%200-1.5h6.036a2.43%202.43%200%200%201%20.588-.96Zm1.71.792a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-6.304%205.874a2.417%202.417%200%200%201%204.006.96h7.297a.75.75%200%201%201%200%201.5H9.37a2.416%202.416%200%200%201-4.595%200H3.333a.75.75%200%200%201%200-1.5h1.441c.117-.359.317-.688.589-.96Zm1.709.793a.916.916%200%201%200%200%201.832.916.916%200%200%200%200-1.832Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint'%3e%3cpath%20fill-rule='evenodd'%20d='M15.363%205.19a.75.75%200%200%201%201.03.256%207.417%207.417%200%200%201%201.024%204.594v.793a4.25%204.25%200%200%200%20.566%202.126.75.75%200%200%201-1.3.748%205.75%205.75%200%200%201-.766-2.874V10c0-.028.001-.055.004-.082a5.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.03ZM10%206.583a2.583%202.583%200%200%200-2.583%202.583.75.75%200%201%201-1.5%200%204.083%204.083%200%200%201%208.166%200V10a7.59%207.59%200%200%200%201.517%204.55.75.75%200%201%201-1.2.9A9.083%209.083%200%200%201%2012.583%2010v-.834A2.583%202.583%200%200%200%2010%206.583Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%208.416a.75.75%200%200%201%20.75.75v1.668a10.916%2010.916%200%200%200%201.95%206.238.75.75%200%201%201-1.233.855%2012.417%2012.417%200%200%201-2.217-7.094V9.166a.75.75%200%200%201%20.75-.75Zm-3.42%203.339a.75.75%200%200%201%20.832.657%2014.25%2014.25%200%200%200%201.425%204.75.75.75%200%200%201-1.34.675%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%204.024a5.917%205.917%200%200%200-8.875%205.14v.861c-.063%201.891.18%203.78.72%205.594a.75.75%200%200%201-1.439.428%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.442.75.75%200%200%201-.75%201.3Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-fingerprint-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M12.958%203.986a5.917%205.917%200%200%200-8.875%205.14v.86c-.063%201.891.18%203.78.72%205.595a.75.75%200%201%201-1.439.427%2019.084%2019.084%200%200%201-.78-6.06v-.82a7.417%207.417%200%200%201%2011.124-6.441.75.75%200%200%201-.75%201.299Zm2.405%201.166a.75.75%200%200%201%201.03.255%207.417%207.417%200%200%201%201.024%204.594v.793a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.004-.082%205.917%205.917%200%200%200-.813-3.698.75.75%200%200%201%20.255-1.029ZM10%206.544a2.583%202.583%200%200%200-2.583%202.584.75.75%200%200%201-1.5%200%204.083%204.083%200%201%201%208.166%200v.833c0%20.383.03.763.086%201.138a.75.75%200%200%201-1.483.225%209.084%209.084%200%200%201-.103-1.363v-.833A2.583%202.583%200%200%200%2010%206.544Zm0%201.834a.75.75%200%200%201%20.75.749l.001.834-.001.834c-.002%201.34.244%202.66.715%203.899a.75.75%200%201%201-1.401.534%2012.417%2012.417%200%200%201-.814-4.434l.001-.833-.001-.832a.75.75%200%200%201%20.75-.751Zm-3.42%203.338a.75.75%200%200%201%20.832.658%2014.249%2014.249%200%200%200%201.425%204.75.75.75%200%200%201-1.34.674%2015.75%2015.75%200%200%201-1.575-5.25.75.75%200%200%201%20.657-.832Zm9.67.954a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%2012a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-code'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.917%204.917%200%200%201%205.608.902c.28.275.607.5.964.665a.75.75%200%201%201-.627%201.363%204.91%204.91%200%200%201-1.387-.957A3.416%203.416%200%200%200%204.917%2012v5.5a.75.75%200%200%201-1.5%200V4.167a.75.75%200%200%201%20.225-.536%204.917%204.917%200%200%201%206.883%200%203.417%203.417%200%200%200%204.784%200%20.75.75%200%200%201%201.275.536v6.666a.75.75%200%200%201-1.5%200V5.605a4.916%204.916%200%200%201-5.609-.903A3.417%203.417%200%200%200%204.917%204.5Zm9.78%209.136a.75.75%200%200%201%200%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.667-1.667a.75.75%200%200%201%201.06%200Zm1.44%200a.75.75%200%200%201%201.06%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%201%201-1.06-1.06l1.136-1.137-1.136-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-health'%3e%3cpath%20fill-rule='evenodd'%20d='M4.91663%204.50051V10.2286C5.45765%209.96291%206.04692%209.79697%206.65626%209.74374C7.79157%209.64455%208.92609%209.94277%209.86587%2010.5874C10.2074%2010.8217%2010.2944%2011.2886%2010.0601%2011.6301C9.8258%2011.9717%209.35896%2012.0587%209.01738%2011.8244C8.36426%2011.3764%207.57581%2011.1691%206.7868%2011.238C6.09855%2011.2982%205.44714%2011.5652%204.91663%2012.0005V17.5C4.91663%2017.9142%204.58084%2018.25%204.16663%2018.25C3.75241%2018.25%203.41663%2017.9142%203.41663%2017.5V4.16673C3.41663%203.96522%203.49772%203.77219%203.64163%203.63113C4.56069%202.73026%205.79634%202.22566%207.08329%202.22566C8.37024%202.22566%209.60589%202.73026%2010.525%203.63113C11.1636%204.25715%2012.0223%204.60781%2012.9166%204.60781C13.8109%204.60781%2014.6696%204.25715%2015.3083%203.63113C15.524%203.41974%2015.8454%203.35831%2016.1238%203.47527C16.4022%203.59223%2016.5833%203.86475%2016.5833%204.16673V9.16673C16.5833%209.58095%2016.2475%209.91673%2015.8333%209.91673C15.4191%209.91673%2015.0833%209.58095%2015.0833%209.16673V5.60466C14.415%205.93271%2013.6747%206.10781%2012.9166%206.10781C11.6297%206.10781%2010.394%205.60321%209.47496%204.70234C8.83629%204.07632%207.97761%203.72566%207.08329%203.72566C6.29017%203.72566%205.52509%204.00145%204.91663%204.50051ZM11.687%2012.4892C12.1768%2012.0142%2012.8326%2011.7491%2013.5149%2011.7504C14.0503%2011.7514%2014.5688%2011.9164%2015.003%2012.2178C15.4387%2011.9174%2015.9584%2011.754%2016.4945%2011.755C17.1769%2011.7563%2017.8319%2012.024%2018.3198%2012.5011C18.5622%2012.7377%2018.7546%2013.0206%2018.8858%2013.3328C19.017%2013.6451%2019.0844%2013.9805%2019.0838%2014.3193C19.0832%2014.658%2019.0148%2014.9932%2018.8826%2015.305C18.7506%2015.6163%2018.5578%2015.898%2018.3153%2016.1336C18.3149%2016.1341%2018.3144%2016.1345%2018.3139%2016.135L15.525%2018.869C15.2331%2019.1551%2014.7659%2019.1549%2014.4744%2018.8684L11.6799%2016.1231C11.6797%2016.123%2011.6801%2016.1233%2011.6799%2016.1231C11.4379%2015.8865%2011.2452%2015.6032%2011.1142%2015.2911C10.9831%2014.9788%2010.9159%2014.6434%2010.9165%2014.3047C10.9172%2013.9659%2010.9857%2013.6308%2011.118%2013.3189C11.2504%2013.0071%2011.4438%2012.725%2011.687%2012.4892ZM13.512%2013.2504C13.2206%2013.2498%2012.9405%2013.3631%2012.7313%2013.566C12.632%2013.6623%2012.5529%2013.7776%2012.4988%2013.9049C12.4448%2014.0323%2012.4168%2014.1692%2012.4165%2014.3076C12.4163%2014.4459%2012.4437%2014.583%2012.4973%2014.7105C12.5508%2014.8381%2012.6294%2014.9537%2012.7283%2015.0504L12.7297%2015.0517L15.0005%2017.2826L17.2693%2015.0585C17.3686%2014.9621%2017.4476%2014.8469%2017.5016%2014.7195C17.5556%2014.5921%2017.5836%2014.4552%2017.5838%2014.3168C17.584%2014.1785%2017.5565%2014.0415%2017.5029%2013.9139C17.4493%2013.7863%2017.3707%2013.6708%2017.2717%2013.5741C17.0633%2013.3703%2016.7832%2013.2556%2016.4916%2013.255C16.2007%2013.2544%2015.9211%2013.3673%2015.712%2013.5695C15.7115%2013.5699%2015.7111%2013.5704%2015.7106%2013.5708L15.5272%2013.751C15.2349%2014.038%2014.7665%2014.0375%2014.4749%2013.7498L14.2916%2013.569C14.2912%2013.5686%2014.2909%2013.5683%2014.2905%2013.5679C14.0822%2013.3649%2013.803%2013.251%2013.512%2013.2504Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flag-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M4.917%204.5v5.729a4.916%204.916%200%200%201%205.608.902%203.417%203.417%200%200%200%204.558.202V5.605a4.916%204.916%200%200%201-5.608-.903A3.417%203.417%200%200%200%204.917%204.5Zm0%207.5a3.417%203.417%200%200%201%204.558.202%204.916%204.916%200%200%200%206.883%200%20.75.75%200%200%200%20.225-.535v-7.5a.75.75%200%200%200-1.275-.536%203.417%203.417%200%200%201-4.783%200%204.917%204.917%200%200%200-6.883%200%20.75.75%200%200%200-.225.536V17.5a.75.75%200%200%200%201.5%200V12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.118l3.277%209.01a1.334%201.334%200%200%201-.974%201.86.755.755%200%200%201-.136.012H5.417a.755.755%200%200%201-.135-.012%201.334%201.334%200%200%201-.975-1.86l3.276-9.01.001-4.118H7.5a.75.75%200%200%201-.75-.75Zm2.334.75V7.5a.75.75%200%200%201-.046.256l-1.567%204.311c.655-.099%201.467-.291%202.194-.655a9.014%209.014%200%200%201%202.336-.795h.001l-1.04-2.86a.75.75%200%200%201-.045-.257V3.25H9.084Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-flask-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.46a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-.083v4.12l1.167%203.209a.75.75%200%201%201-1.41.513l-1.212-3.334a.752.752%200%200%201-.045-.256V3.21H9.083v4.25a.75.75%200%200%201-.045.256l-3.27%208.994H10a.75.75%200%200%201%200%201.5H5.417a.746.746%200%200%201-.136-.012%201.333%201.333%200%200%201-.974-1.86l3.276-9.01V3.21H7.5a.75.75%200%200%201-.75-.75Zm8.666%2010.21a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-folders'%3e%3cpath%20fill-rule='evenodd'%20d='M7.5%204.083A.917.917%200%200%200%206.583%205v7.5a.917.917%200%200%200%20.917.917h8.333a.917.917%200%200%200%20.917-.917V6.667a.917.917%200%200%200-.917-.917h-4.166a.75.75%200%200%201-.53-.22L9.688%204.083H7.5Zm5.917%2010.834H7.5A2.416%202.416%200%200%201%205.083%2012.5V7.417h-.916a.917.917%200%200%200-.917.916v7.5a.917.917%200%200%200%20.917.917H12.5a.917.917%200%200%200%20.917-.917v-.916Zm-8.334-9h-.916A2.417%202.417%200%200%200%201.75%208.333v7.5a2.417%202.417%200%200%200%202.417%202.417H12.5a2.417%202.417%200%200%200%202.417-2.417v-.916h.916A2.416%202.416%200%200%200%2018.25%2012.5V6.667a2.417%202.417%200%200%200-2.417-2.417h-3.856L10.53%202.803a.75.75%200%200%200-.53-.22H7.5A2.417%202.417%200%200%200%205.083%205v.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-forward'%3e%3cpath%20fill-rule='evenodd'%20d='M11.085%204.192a1.307%201.307%200%200%200-1.562%201.28v2.264H3.807A1.307%201.307%200%200%200%202.5%209.042v1.916c0%20.292.138.679.383.924s.577.382.924.382h5.716v2.263a1.305%201.305%200%200%200%202.231.924l4.53-4.528a1.306%201.306%200%200%200%200-1.847l-4.53-4.527a1.306%201.306%200%200%200-.669-.357Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M9.23%201.875c-.765%200-1.417.552-1.542%201.306l-.149.893c-.017.1-.095.218-.247.29a6.244%206.244%200%200%200-.822.476c-.138.095-.279.104-.374.068l-.85-.318a1.562%201.562%200%200%200-1.901.682l-.768%201.331a1.563%201.563%200%200%200%20.36%201.988l.7.576c.079.065.14.191.128.359a6.328%206.328%200%200%200%200%20.949c.013.167-.049.293-.128.358l-.7.577a1.562%201.562%200%200%200-.36%201.987l.768%201.331c.382.662%201.186.95%201.901.682l.85-.318c.096-.036.236-.027.375.069.26.178.534.337.82.474.153.074.231.19.248.291l.149.893a1.562%201.562%200%200%200%201.541%201.306h1.537c.764%200%201.415-.552%201.541-1.306l.149-.893c.017-.1.095-.217.247-.29.287-.138.561-.297.822-.476.138-.095.278-.104.374-.069l.85.319a1.56%201.56%200%200%200%201.9-.682l.77-1.331a1.563%201.563%200%200%200-.36-1.988l-.701-.576c-.08-.065-.141-.191-.128-.359a6.317%206.317%200%200%200%200-.949c-.013-.167.049-.293.128-.358l.7-.577c.59-.485.742-1.326.36-1.987l-.768-1.331a1.563%201.563%200%200%200-1.901-.682l-.85.318c-.096.036-.236.027-.375-.068a6.241%206.241%200%200%200-.821-.475c-.152-.074-.23-.19-.247-.291l-.149-.893a1.563%201.563%200%200%200-1.541-1.306H9.229Zm.768%2011.25a3.125%203.125%200%201%200%200-6.25%203.125%203.125%200%200%200%200%206.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-gear-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.252%203.16c.136-.814.84-1.41%201.665-1.41h2.161c.825%200%201.53.596%201.665%201.41l.178%201.068c.008.05.05.13.16.191.07.039.14.079.208.12.106.065.197.062.245.043l1.014-.38a1.688%201.688%200%200%201%202.054.737l1.08%201.872a1.687%201.687%200%200%201-.388%202.147l-.837.689c-.04.033-.088.11-.086.233a6.856%206.856%200%200%201%200%20.24c-.002.124.046.2.086.234l.837.689c.637.524.801%201.432.389%202.146l-1.081%201.872a1.688%201.688%200%200%201-2.054.737l-1.014-.38c-.048-.018-.139-.022-.245.043a6.191%206.191%200%200%201-.208.12c-.11.06-.152.14-.16.191l-.178%201.068a1.688%201.688%200%200%201-1.665%201.41H8.917a1.688%201.688%200%200%201-1.665-1.41l-.178-1.068c-.008-.05-.05-.13-.16-.191a6.228%206.228%200%200%201-.208-.12c-.107-.065-.197-.062-.246-.043l-1.014.38a1.688%201.688%200%200%201-2.053-.737l-1.08-1.872a1.688%201.688%200%200%201%20.388-2.146l.837-.69c.04-.033.088-.109.086-.233a6.49%206.49%200%200%201%200-.24c.002-.124-.046-.2-.086-.233l-.837-.69a1.688%201.688%200%200%201-.389-2.146l1.08-1.872a1.687%201.687%200%200%201%202.054-.736l1.014.38c.049.018.14.02.246-.044.069-.041.138-.081.208-.12.11-.06.152-.14.16-.191l.178-1.068Zm1.665.09a.187.187%200%200%200-.185.157l-.178%201.067a1.786%201.786%200%200%201-.914%201.258l-.158.091a1.786%201.786%200%200%201-1.548.164l-1.014-.38a.187.187%200%200%200-.228.082l-1.08%201.872a.188.188%200%200%200%20.042.239l.837.689c.448.368.642.911.632%201.419a4.975%204.975%200%200%200%200%20.184%201.783%201.783%200%200%201-.632%201.42l-.837.688a.188.188%200%200%200-.043.24l1.081%201.871c.046.08.142.114.228.082l1.014-.38a1.786%201.786%200%200%201%201.548.164l.158.092c.444.245.818.685.914%201.257l.178%201.067c.015.09.093.157.185.157h2.161c.092%200%20.17-.066.185-.157l.178-1.067c.095-.572.47-1.012.913-1.257.054-.03.107-.06.16-.092a1.783%201.783%200%200%201%201.547-.164l1.014.38a.187.187%200%200%200%20.228-.082l1.08-1.872a.188.188%200%200%200-.043-.239l-.836-.688a1.785%201.785%200%200%201-.633-1.42%204.726%204.726%200%200%200%200-.184%201.787%201.787%200%200%201%20.633-1.42l.836-.688a.188.188%200%200%200%20.044-.239L15.303%205.69a.187.187%200%200%200-.228-.082l-1.014.38a1.786%201.786%200%200%201-1.548-.164%204.797%204.797%200%200%200-.159-.091%201.787%201.787%200%200%201-.913-1.258l-.178-1.067a.188.188%200%200%200-.185-.157H8.917Zm1.08%205a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5ZM6.747%2010a3.25%203.25%200%201%201%206.5%200%203.25%203.25%200%200%201-6.5%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe'%3e%3cpath%20fill-rule='evenodd'%20d='M10.595%201.771a.752.752%200%200%200-.275-.015%208.25%208.25%200%200%200-.639%200%20.752.752%200%200%200-.276.015%208.25%208.25%200%200%200%200%2016.457c.09.022.183.028.276.016a8.289%208.289%200%200%200%20.639%200%20.75.75%200%200%200%20.275-.015%208.25%208.25%200%200%200%200-16.458Zm-2.42%201.73a6.75%206.75%200%200%200-4.09%203.249h2.959c.25-1.121.63-2.211%201.131-3.249Zm.41%203.249c.304-1.22.78-2.394%201.415-3.489a13.417%2013.417%200%200%201%201.416%203.489H8.585Zm-1.797%201.5H3.481a6.748%206.748%200%200%200%200%203.5h3.307a14.915%2014.915%200%200%201%200-3.5Zm1.512%203.5a13.415%2013.415%200%200%201%200-3.5h3.4a13.41%2013.41%200%200%201%200%203.5H8.3Zm-1.256%201.5h-2.96a6.749%206.749%200%200%200%204.091%203.249%2014.92%2014.92%200%200%201-1.131-3.249ZM10%2016.738a13.415%2013.415%200%200%201-1.415-3.488h2.83A13.417%2013.417%200%200%201%2010%2016.738Zm1.825-.24a6.755%206.755%200%200%200%204.092-3.248h-2.96a14.92%2014.92%200%200%201-1.132%203.249Zm1.387-4.748h3.308a6.749%206.749%200%200%200%200-3.5h-3.308a14.914%2014.914%200%200%201%200%203.5Zm-.255-5h2.96a6.749%206.749%200%200%200-4.092-3.249%2014.92%2014.92%200%200%201%201.132%203.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-globe-check'%3e%3cpath%20fill-rule='evenodd'%20d='M9.533%201.763a8.248%208.248%200%200%201%208.666%209.154.75.75%200%200%201-1.49-.167%206.746%206.746%200%200%200-.19-2.5h-3.307a14.914%2014.914%200%200%201-.131%204.382.75.75%200%200%201-.739.618H8.584a13.417%2013.417%200%200%200%201.628%203.842.75.75%200%200%201-.679%201.145A8.252%208.252%200%200%201%201.75%2010a8.25%208.25%200%200%201%207.783-8.237ZM8.3%2011.75h3.4a13.41%2013.41%200%200%200%200-3.5H8.3a13.416%2013.416%200%200%200%200%203.5Zm-1.512-3.5a14.914%2014.914%200%200%200%200%203.5H3.48a6.75%206.75%200%200%201%200-3.5h3.307Zm1.796-1.5h2.831A13.415%2013.415%200%200%200%2010%203.261%2013.416%2013.416%200%200%200%208.584%206.75Zm3.24-3.249a14.92%2014.92%200%200%201%201.133%203.249h2.96a6.749%206.749%200%200%200-4.092-3.249Zm-3.65%200a14.917%2014.917%200%200%200-1.13%203.249h-2.96a6.748%206.748%200%200%201%204.09-3.249Zm-4.09%209.749h2.96c.25%201.121.629%202.211%201.13%203.249a6.751%206.751%200%200%201-4.09-3.249Zm13.946.386a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%200%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-7.248%203.624a.75.75%200%200%201-.67%200L1.33%209.004a.75.75%200%200%201%200-1.341l8.334-4.167Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.441%2014.053%205.335%2012l-.357-.183a.5.5%200%200%200-.728.445v1.905c0%20.199.079.39.22.53%201.422%201.422%203.506%202.095%205.53%202.095%202.024%200%204.108-.673%205.53-2.095a.75.75%200%200%200%20.22-.53V12.26a.5.5%200%200%200-.728-.444l-.357.183-4.106%202.053a1.25%201.25%200%200%201-1.118%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-graduation-cap-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.665%203.496a.75.75%200%200%201%20.67%200l8.334%204.167a.75.75%200%200%201%20.414.67v5a.75.75%200%200%201-1.5%200V9.547l-1.833.916v3.704a.75.75%200%200%201-.22.53c-1.422%201.422-3.506%202.095-5.53%202.095-2.024%200-4.108-.673-5.53-2.095a.75.75%200%200%201-.22-.53v-3.704L1.331%209.005a.75.75%200%200%201%200-1.341l8.334-4.167Zm-4.316%205.84a.749.749%200%200%200-.028-.014l-1.977-.989L10%205.005l6.656%203.328-1.977.989a.761.761%200%200%200-.028.014L10%2011.66%205.349%209.337Zm.401%201.877v2.63c1.077.944%202.637%201.449%204.25%201.449s3.173-.505%204.25-1.45v-2.629l-3.915%201.958a.75.75%200%200%201-.67%200L5.75%2011.214Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.38%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-5%205.834a1.583%201.583%200%201%201%202.24%202.238%201.583%201.583%200%200%201-2.24-2.238Zm5%200a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-grip-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%206.38a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm-11.666%205a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group'%3e%3cpath%20fill-rule='evenodd'%20d='M11.762%203.65a.75.75%200%200%201%20.885-.584%203.25%203.25%200%200%201%200%206.368.75.75%200%200%201-.3-1.47%201.75%201.75%200%200%200%200-3.429.75.75%200%200%201-.585-.885Zm-6.063.302a3.25%203.25%200%201%201%204.596%204.596A3.25%203.25%200%200%201%205.7%203.952Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5.701%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m14.233%2016.204.088-.08.043-.038c.14-.14.22-.331.22-.53a4.638%204.638%200%200%200-4.64-4.64H6.057l-.138.003a4.639%204.639%200%200%200-4.5%204.636c0%20.2.078.39.219.53l.04.04.087.078c.074.065.18.153.318.256.275.207.677.474%201.208.74C4.354%2017.73%205.926%2018.25%208%2018.25c.126%200%20.25-.002.372-.006%201.89-.057%203.337-.546%204.336-1.045.53-.266.933-.533%201.208-.74.138-.103.243-.19.317-.255Zm1.587-4.89a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.049-.046a.75.75%200%200%200%20.22-.53%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-group-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M7.997%203a3.25%203.25%200%201%200%200%206.5%203.25%203.25%200%200%200%200-6.5ZM6.76%205.013a1.75%201.75%200%201%201%202.474%202.474A1.75%201.75%200%200%201%206.76%205.013Zm5.887-1.947a.75.75%200%201%200-.3%201.47%201.75%201.75%200%200%201%200%203.429.75.75%200%201%200%20.3%201.47%203.25%203.25%200%200%200%200-6.37Zm1.586%2013.138.088-.08.04-.037a.755.755%200%200%200%20.22-.531%204.639%204.639%200%200%200-4.64-4.64H6.054a4.64%204.64%200%200%200-4.639%204.64c0%20.199.08.39.22.53l.04.039.087.079c.074.064.18.152.318.255a7.94%207.94%200%200%200%201.208.74c1.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.255Zm-8.18-3.787a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.225.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.432%206.432%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807H6.053Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M15.82%2011.314a.75.75%200%200%200-.607%201.372%203.138%203.138%200%200%201%201.85%202.538%206.842%206.842%200%200%201-1.367.793.75.75%200%201%200%20.603%201.373%208.331%208.331%200%200%200%201.511-.853%205.818%205.818%200%200%200%20.502-.405l.016-.015.031-.03h.002a.75.75%200%200%200%20.22-.531%204.638%204.638%200%200%200-2.761-4.242Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-half-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm0%201.5A6.75%206.75%200%200%200%203.25%2010h13.5A6.75%206.75%200%200%200%2010%203.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-handshake'%3e%3cpath%20fill-rule='evenodd'%20d='M7.018%204.093a3.417%203.417%200%200%200-2.745%205.846l.005.005L10%2015.61l1.03-1.02-1.144-1.144a.75.75%200%200%201%201.06-1.06l1.15%201.148%201.027-1.017-1.153-1.154a.75.75%200%201%201%201.06-1.061l1.16%201.159%201.027-1.018-1.373-1.372a1.902%201.902%200%200%200-2.689%200l-.833.833a2.224%202.224%200%200%201-3.144%200l-.453-.452a1.584%201.584%200%200%201%200-2.24l2.241-2.24a3.416%203.416%200%200%200-1.948-.88Zm3.457%201.493L7.786%208.274m0%20.118a.084.084%200%200%201%200-.118m0%20.118.452.453a.724.724%200%200%200%201.023%200l.833-.834a3.401%203.401%200%200%201%204.811%200l1.317%201.318a3.405%203.405%200%200%200%20.524-1.917A3.416%203.416%200%200%200%2010.6%205.456a.75.75%200%200%201-.125.13m6.248%205.478a.743.743%200%200%200%20.053-.047%204.916%204.916%200%200%200-6.773-7.128%204.917%204.917%200%200%200-6.778%207.123L9.472%2017.2a.75.75%200%200%200%201.056%200l6.195-6.136Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help'%3e%3cpath%20fill-rule='evenodd'%20d='M9.583%204.917c-.608%200-1.173.208-1.574.551-.397.34-.592.775-.592%201.199a.75.75%200%200%201-1.5%200c0-.903.419-1.74%201.116-2.338.693-.594%201.612-.912%202.55-.912h.834c.938%200%201.857.318%202.55.912.692.593%201.11%201.422%201.116%202.316a3.25%203.25%200%200%201-2.126%203.214c-.321.16-.637.472-.87.939a3.45%203.45%200%200%200-.338%201.67.75.75%200%201%201-1.498.064%204.95%204.95%200%200%201%20.494-2.405c.361-.722.912-1.315%201.603-1.64a.741.741%200%200%201%20.07-.028%201.75%201.75%200%200%200%201.165-1.792c0-.424-.195-.858-.592-1.199-.4-.343-.966-.551-1.574-.551h-.834ZM10%2014.958c.483%200%20.875.392.875.875v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a8.25%208.25%200%201%200%200%2016.5%208.25%208.25%200%200%200%200-16.5Zm.068%203.31a2.917%202.917%200%200%200-2.332%201.153.75.75%200%201%200%201.195.907%201.417%201.417%200%201%201%201.642%202.176%202%202%200%200%200-1.321%201.996.75.75%200%201%200%201.497-.085.499.499%200%200%201%20.334-.5l.007-.002.012-.005a2.915%202.915%200%200%200-1.034-5.64Zm-.067%208.232c.483%200%20.875.391.875.874v.009a.875.875%200%200%201-1.75%200v-.009c0-.483.391-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-help-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM8.766%205.362A2.917%202.917%200%201%201%2011.1%2010.7l-.012.005-.007.002a.5.5%200%200%200-.333.5.75.75%200%201%201-1.498.085%202%202%200%200%201%201.322-1.995A1.417%201.417%200%201%200%208.93%207.12a.75.75%200%201%201-1.195-.907c.273-.36.625-.65%201.03-.851Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%2013.292c.483%200%20.875.391.875.875v.008a.875.875%200%200%201-1.75%200v-.008c0-.484.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-holdout'%3e%3cpath%20fill-rule='evenodd'%20d='M13.75%209.984a1.15%201.15%200%201%200%200%202.3%201.15%201.15%200%200%200%200-2.3Zm-2.65%201.15a2.65%202.65%200%201%201%205.3%200%202.65%202.65%200%200%201-5.3%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M9.917%2014.067a2.4%202.4%200%201%201-4.8%200%202.4%202.4%200%200%201%204.8%200Z'/%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%204.984a1.65%201.65%200%201%200%200%203.3%201.65%201.65%200%200%200%200-3.3ZM3.6%206.634a3.15%203.15%200%201%201%206.3%200%203.15%203.15%200%200%201-6.3%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-hub'%3e%3cpath%20fill-rule='evenodd'%20d='M4.958%202.458a2.417%202.417%200%200%201%203.45%203.385L9.59%207.618a2.416%202.416%200%200%201%20.818%200l1.183-1.775a2.417%202.417%200%201%201%201.333.705L11.74%208.324c.255.265.444.582.556.926h2.072a2.416%202.416%200%201%201%200%201.5h-2.072a2.416%202.416%200%200%201-.556.926l1.184%201.775a2.417%202.417%200%201%201-1.332.706l-1.184-1.775a2.407%202.407%200%200%201-.818%200l-1.183%201.775a2.417%202.417%200%201%201-1.333-.706l1.184-1.775a2.417%202.417%200%200%201-.556-.926H5.63a2.417%202.417%200%201%201%200-1.5h2.072c.112-.344.301-.661.556-.926L7.075%206.548a2.417%202.417%200%200%201-2.117-4.09Zm1.709.792a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm6.666%200a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm13.334%200a.916.916%200%201%200%200%201.833.916.916%200%200%200%200-1.833Zm-10%205.833a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Zm6.666%200a.917.917%200%201%200%200%201.834.917.917%200%200%200%200-1.834Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-badge'%3e%3cpath%20fill-rule='evenodd'%20d='M9.167%203.25a.083.083%200%200%200-.084.083v2.5a.083.083%200%200%200%20.084.084h1.666a.084.084%200%200%200%20.084-.084v-2.5a.083.083%200%200%200-.084-.083H9.167Zm3.25%201v-.917a1.583%201.583%200%200%200-1.584-1.583H9.167a1.583%201.583%200%200%200-1.584%201.583v.917h-4.25A1.583%201.583%200%200%200%201.75%205.833v10a1.583%201.583%200%200%200%201.583%201.584h13.334a1.583%201.583%200%200%200%201.583-1.584v-10a1.583%201.583%200%200%200-1.583-1.583h-4.25Zm0%201.5v.083a1.583%201.583%200%200%201-1.584%201.584H9.167a1.583%201.583%200%200%201-1.584-1.584V5.75h-4.25a.083.083%200%200%200-.083.083v10a.084.084%200%200%200%20.083.084h13.334a.083.083%200%200%200%20.083-.084v-10a.083.083%200%200%200-.083-.083h-4.25ZM5.083%2010a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-.75.75h-2.5a.75.75%200%200%201-.75-.75V10Zm1.5.75v1.833h1V10.75h-1Zm4.334-.75a.75.75%200%200%201%20.75-.75H15a.75.75%200%200%201%200%201.5h-3.333a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h1.666a.75.75%200%200%201%200%201.5h-1.666a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-id-card'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083a1.75%201.75%200%200%200-1.75%201.75v8.334A1.75%201.75%200%200%200%205%2015.917h10a1.75%201.75%200%200%200%201.75-1.75V5.833A1.75%201.75%200%200%200%2015%204.083H5Zm-2.298-.548A3.25%203.25%200%200%201%205%202.583h10a3.25%203.25%200%200%201%203.25%203.25v8.334a3.25%203.25%200%200%201-3.25%203.25H5a3.25%203.25%200%200%201-3.25-3.25V5.833c0-.862.342-1.688.952-2.298Zm3.51%202.677a1.821%201.821%200%201%201%202.575%202.576%201.821%201.821%200%200%201-2.576-2.576Zm5.538.871a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Zm0%202.917a.75.75%200%200%201%20.75-.75h1.667a.75.75%200%200%201%200%201.5H12.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10.455%2013.16.048-.044.027-.026c.14-.14.22-.332.22-.53a2.417%202.417%200%200%200-2.417-2.417H6.667a2.417%202.417%200%200%200-2.417%202.416c0%20.2.079.39.22.53l.075.07a3.67%203.67%200%200%200%20.745.488c.508.254%201.247.496%202.21.496.963%200%201.702-.242%202.21-.496.253-.127.448-.255.584-.357.068-.051.121-.096.16-.13Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-inbox-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v5.083h1.75a.75.75%200%200%201%20.53.22l2.28%202.28h2.713l2.28-2.28a.75.75%200%200%201%20.53-.22h1.75V5A.917.917%200%200%200%2015%204.083H5ZM17.416%205A2.417%202.417%200%200%200%2015%202.583H5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.416%2015V5Zm-1.5%206.583h-1.439l-2.28%202.28a.75.75%200%200%201-.53.22H8.332a.75.75%200%200%201-.53-.22l-2.28-2.28h-1.44V15a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.916-.917v-3.417Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-individual-target'%3e%3cpath%20d='M14.861%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2015.125a.75.75%200%200%201-.75-.75V9.042a.75.75%200%201%201%201.5%200v5.333a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.166a8.25%208.25%200%201%201%2011.667%2011.667A8.25%208.25%200%200%201%204.167%204.166ZM10%206.125a.875.875%200%201%200%200%201.75h.014a.875.875%200%200%200%200-1.75H10Zm0%208.125a.75.75%200%200%201-.75-.75v-3.334a.75.75%200%200%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-info-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2014.25a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%201%201%201.5%200V13.5a.75.75%200%200%201-.75.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M13.157%2017.622A8.25%208.25%200%201%201%206.843%202.379a8.25%208.25%200%200%201%206.314%2015.243ZM10%2016.75a6.75%206.75%200%201%200%200-13.5%206.75%206.75%200%200%200%200%2013.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%206.125a.875.875%200%201%200%200%201.75h.015a.875.875%200%200%200%200-1.75H10Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-key'%3e%3cpath%20d='M12.5%206.75a.75.75%200%200%200%200%201.5h.008a.75.75%200%200%200%200-1.5H12.5Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.1%201.75a3.147%203.147%200%200%200-2.225.922L7.672%204.875a3.147%203.147%200%200%200-.262%204.154l-1.274%201.274a.75.75%200%200%200-.22.53v.917H5a.75.75%200%200%200-.75.75v.916h-.917a.75.75%200%200%200-.53.22l-.345.345a.806.806%200%200%200-.023.024l-.1.108a2.417%202.417%200%200%200-.586%201.576v.977l.002.045.006.098.004.043a1.583%201.583%200%200%200%201.572%201.398h1.011l.146-.008c.01%200%20.021%200%20.031-.002a2.416%202.416%200%200%200%201.498-.698l4.952-4.952a3.147%203.147%200%200%200%204.154-.262l.098-.098%202.105-2.105a3.148%203.148%200%200%200%200-4.451l-3.002-3.002A3.148%203.148%200%200%200%2012.1%201.75Zm-.63%201.625a1.647%201.647%200%200%201%201.795.358l3.002%203.001a1.648%201.648%200%200%201%200%202.33l-2.202%202.203a1.648%201.648%200%200%201-2.33%200l-.173-.172-.078-.079a.75.75%200%200%200-1.061%200l-5.465%205.465a.917.917%200%200%201-.554.264l-.111.005h-.96a.083.083%200%200%201-.08-.064l-.003-.042v-.954c0-.21.073-.415.205-.578l.075-.082.114-.114H5a.75.75%200%200%200%20.75-.75v-.916h.917a.75.75%200%200%200%20.75-.75v-1.356l1.567-1.567a.75.75%200%200%200%200-1.06l-.251-.252a1.648%201.648%200%200%201%200-2.33l2.202-2.202c.153-.153.335-.275.535-.358Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lightbulb'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM10%206.583a3.417%203.417%200%200%200-2.05%206.15c.027.02.053.043.078.067.189.188.357.394.5.617h2.944a3.61%203.61%200%200%201%20.5-.617.75.75%200%200%201%20.078-.067A3.417%203.417%200%200%200%2010%206.583Zm2.562%207.967a.741.741%200%200%200%20.062-.132c.097-.19.222-.365.372-.52a4.917%204.917%200%201%200-5.992%200c.15.155.276.331.373.522a.747.747%200%200%200%20.06.128%202.183%202.183%200%200%201%20.154%201.175.751.751%200%200%200-.008.11%202.417%202.417%200%201%200%204.834%200%20.748.748%200%200%200-.008-.11%202.168%202.168%200%200%201%20.152-1.173Zm-1.644.367H9.082c.043.318.044.64.002.96a.917.917%200%200%200%201.832%200c-.042-.32-.04-.643.002-.96ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link'%3e%3cpath%20fill-rule='evenodd'%20d='m10.101%205.065-.367.425a.75.75%200%201%201-1.135-.98l.386-.447a4.917%204.917%200%201%201%206.952%206.95l-.445.386a.75.75%200%201%201-.984-1.132l.424-.368a3.417%203.417%200%200%200-4.83-4.834Zm2.93%201.905a.75.75%200%200%201%200%201.06l-5%205a.75.75%200%201%201-1.062-1.06l5-5a.75.75%200%200%201%201.061%200Zm-7.47%201.7a.75.75%200%200%201-.065%201.059l-.42.37a3.393%203.393%200%200%200%20.014%204.813%203.473%203.473%200%200%200%204.846.037l.295-.396a.75.75%200%201%201%201.204.894l-.33.445a.752.752%200%200%201-.075.086%204.973%204.973%200%200%201-6.994%200%204.893%204.893%200%200%201%20.03-6.988l.437-.385a.75.75%200%200%201%201.059.065Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-link-external'%3e%3cpath%20fill-rule='evenodd'%20d='M12.5%204.083a.75.75%200%200%201%200-1.5h4.166a.75.75%200%200%201%20.75.75V7.5a.75.75%200%201%201-1.5%200V5.144l-6.22%206.22a.75.75%200%200%201-1.06-1.061l6.22-6.22H12.5Zm-9.21.875A2.417%202.417%200%200%201%205%204.25h5a.75.75%200%201%201%200%201.5H5a.917.917%200%200%200-.917.917V15a.917.917%200%200%200%20.917.917h8.333A.917.917%200%200%200%2014.25%2015v-5a.75.75%200%200%201%201.5%200v5a2.416%202.416%200%200%201-2.417%202.417H5A2.417%202.417%200%200%201%202.583%2015V6.667c0-.641.255-1.256.708-1.71Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-list'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501A.75.75%200%200%201%206.75%205Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%200%201%200%201.5H7.501a.75.75%200%200%201-.75-.75Zm0%205a.75.75%200%200%201%20.75-.75h9.167a.75.75%200%201%201%200%201.5H7.501a.75.75%200%200%201-.75-.75ZM4.167%204.125c.483%200%20.875.392.875.875v.008a.875.875%200%201%201-1.75%200V5c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V10c0-.483.392-.875.875-.875Zm0%205c.483%200%20.875.392.875.875v.008a.875.875%200%200%201-1.75%200V15c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-lock'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a2.583%202.583%200%200%200-2.583%202.583v2.584h5.166V5.833A2.584%202.584%200%200%200%2010%203.25Zm4.083%205.167V5.833a4.083%204.083%200%201%200-8.166%200v2.584h-.084a2.417%202.417%200%200%200-2.416%202.416v5a2.417%202.417%200%200%200%202.416%202.417h8.334a2.417%202.417%200%200%200%202.416-2.417v-5a2.417%202.417%200%200%200-2.416-2.416h-.084Zm-8.25%201.5a.917.917%200%200%200-.916.916v5a.917.917%200%200%200%20.916.917h8.334a.917.917%200%200%200%20.916-.917v-5a.917.917%200%200%200-.916-.916H5.833Zm3.047%202.297a1.583%201.583%200%201%201%202.24%202.239%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-magic-wand'%3e%3cpath%20fill-rule='evenodd'%20d='M6.75%202.5a.75.75%200%200%201%201.5%200%20.917.917%200%200%200%20.917.917.75.75%200%201%201%200%201.5.917.917%200%200%200-.917.916.75.75%200%201%201-1.5%200%20.917.917%200%200%200-.917-.916.75.75%200%200%201%200-1.5.917.917%200%200%200%20.917-.917Zm7.72-.53a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5-10%2010a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%200-1.06l10-10%202.5-2.5ZM12.5%206.06%203.56%2015%205%2016.44l8.94-8.94-1.44-1.44Zm2.5.38L13.56%205%2015%203.56%2016.44%205%2015%206.44Zm.833%203.643a.75.75%200%200%201%20.75.75.917.917%200%200%200%20.917.917.75.75%200%200%201%200%201.5.917.917%200%200%200-.917.917.75.75%200%200%201-1.5%200%20.916.916%200%200%200-.916-.917.75.75%200%200%201%200-1.5.917.917%200%200%200%20.916-.917.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-mail-question'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.917a.917.917%200%200%200-.846.562L10%209.932l6.679-4.453a.917.917%200%200%200-.846-.562H4.167ZM16.75%207.235v2.348a.75.75%200%200%200%201.5%200v-3.75a2.417%202.417%200%200%200-2.417-2.416H4.167A2.417%202.417%200%200%200%201.75%205.833v8.334a2.417%202.417%200%200%200%202.417%202.416H12.5a.75.75%200%200%200%200-1.5H4.167a.916.916%200%200%201-.917-.916V7.235l6.334%204.222a.75.75%200%200%200%20.832%200l6.334-4.222Zm-1.378%204.562a2.4%202.4%200%200%201%201.565.217l.003.002a2.42%202.42%200%200%201-1.104%204.567.75.75%200%200%201-.005-1.5.919.919%200%200%200%20.42-1.735.9.9%200%200%200-1.095.22.75.75%200%201%201-1.145-.968%202.4%202.4%200%200%201%201.36-.803Zm.461%205.661c.484%200%20.875.392.875.875v.009a.875.875%200%201%201-1.75%200v-.009c0-.483.392-.875.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v10.834a.75.75%200%200%201-.415.67l-5%202.5a.75.75%200%200%201-.67%200L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM11.75%206.297l-3.5-1.75v9.156l3.5%201.75V6.297Zm1.5%209.156%203.5-1.75V4.547l-3.5%201.75v9.156Zm-6.5-1.75V4.547l-3.5%201.75v9.156l3.5-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-check'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V12.5a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm7.417%202.736%202.803-2.803a.75.75%200%201%201%201.06%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-code'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v7.5a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75v4.953a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.994l4.665-2.333a.75.75%200%200%201%20.73.033ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm6.886-.067a.75.75%200%200%201%201.061%201.061l-1.136%201.136%201.136%201.137a.75.75%200%201%201-1.06%201.06l-1.667-1.666a.75.75%200%200%201%200-1.061l1.666-1.667Zm2.5%200a.75.75%200%200%201%201.061%200l1.667%201.667a.75.75%200%200%201%200%201.06l-1.667%201.667a.75.75%200%200%201-1.06-1.06l1.136-1.137-1.137-1.136a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-map-search'%3e%3cpath%20fill-rule='evenodd'%20d='M17.894%202.695a.75.75%200%200%201%20.356.638v6.25a.75.75%200%200%201-1.5%200V4.547l-3.5%201.75V10a.75.75%200%200%201-1.5%200V6.297l-3.5-1.75v9.156l1.252.626a.75.75%200%201%201-.67%201.342L7.5%2015.005l-4.665%202.332a.75.75%200%200%201-1.085-.67V5.833a.75.75%200%200%201%20.415-.67l5-2.5a.75.75%200%200%201%20.67%200L12.5%204.995l4.665-2.332a.75.75%200%200%201%20.73.032ZM6.75%2013.703V4.547l-3.5%201.75v9.156l3.5-1.75Zm5.952-1.001a3.25%203.25%200%200%201%205.064%204.004l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.097-1.097a3.25%203.25%200%200%201-4.004-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-menu'%3e%3cpath%20fill-rule='evenodd'%20d='M2.583%206.667a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Zm0%206.666a.75.75%200%200%201%20.75-.75h13.334a.75.75%200%200%201%200%201.5H3.333a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-funnel'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.417%202.417%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709ZM7%206.25a.75.75%200%200%201%20.75.75v6a.75.75%200%200%201-1.5%200V7A.75.75%200%200%201%207%206.25Zm3%201a.75.75%200%200%201%20.75.75v4a.75.75%200%200%201-1.5%200V8a.75.75%200%200%201%20.75-.75Zm3%201a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200V9a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-metric-group'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h10a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083H5Zm-1.709-.792A2.417%202.417%200%200%201%205%202.583h10A2.417%202.417%200%200%201%2017.417%205v10A2.416%202.416%200%200%201%2015%2017.417H5A2.416%202.416%200%200%201%202.583%2015V5c0-.64.255-1.256.708-1.709Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M8.986%206.42a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%208.986%206.42ZM6.42%208.986a1.434%201.434%200%201%201%202.028%202.028A1.434%201.434%200%200%201%206.42%208.986Zm5.132%200a1.434%201.434%200%201%201%202.028%202.028%201.434%201.434%200%200%201-2.028-2.028Zm-2.566%202.566a1.434%201.434%200%201%201%202.028%202.027%201.434%201.434%200%200%201-2.028-2.027Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.315%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-minus-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5ZM6.75%2010a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-money'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75h.949a3.25%203.25%200%200%201%202.925%202.167.75.75%200%200%201-1.415.499%201.75%201.75%200%200%200-1.56-1.166H8.333a1.75%201.75%200%201%200%200%203.5h3.333a3.25%203.25%200%201%201%200%206.5h-.916v1.75a.75.75%200%200%201-1.5%200v-1.75H8.3a3.25%203.25%200%200%201-2.925-2.168.75.75%200%201%201%201.414-.498%201.75%201.75%200%200%200%201.56%201.166h3.316a1.75%201.75%200%201%200%200-3.5H8.333a3.25%203.25%200%201%201%200-6.5h.917V2.5a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M3.047%208.88a1.583%201.583%200%201%201%202.239%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm5.833%200a1.584%201.584%200%201%201%202.24%202.24%201.584%201.584%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-more-vert'%3e%3cpath%20fill-rule='evenodd'%20d='M8.88%203.047a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.833a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Zm0%205.834a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-network-cloud'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2012.583a.75.75%200%200%201%20.75.75v1.036a2.416%202.416%200%200%201%201.547%201.548H17.5a.75.75%200%200%201%200%201.5h-5.203a2.416%202.416%200%200%201-4.594%200H2.5a.75.75%200%200%201%200-1.5h5.203a2.416%202.416%200%200%201%201.547-1.548v-1.036a.75.75%200%200%201%20.75-.75Zm0%203.167a.917.917%200%201%200%200%201.833.917.917%200%200%200%200-1.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.392%202c-1.605.49-2.882%201.651-3.417%203.147C2.708%205.419.917%207.285.917%209.597c0%202.505%202.1%204.486%204.63%204.49h1.12a.75.75%200%200%200%200-1.5H5.549c-1.757-.003-3.132-1.367-3.132-2.99%200-1.621%201.374-2.984%203.13-2.984a.75.75%200%200%200%20.733-.587c.26-1.17%201.2-2.17%202.524-2.583l.053-.016c1.332-.395%202.789-.117%203.82.71%201.033.825%201.473%202.056%201.213%203.226a.75.75%200%200%200%20.732.913h.825c1.175%200%202.136.96%202.136%202.155a2.146%202.146%200%200%201-2.137%202.156h-2.113a.75.75%200%200%200%200%201.5h2.113c2.013%200%203.637-1.64%203.637-3.656%200-2.01-1.615-3.646-3.62-3.655.025-1.444-.64-2.83-1.82-3.788l-.05-.04c-1.439-1.14-3.417-1.49-5.201-.947Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications'%3e%3cpath%20d='M7.702%2017.298a3.25%203.25%200%200%200%204.96-.435c.331-.472-.086-1.03-.662-1.029H8c-.576%200-.993.558-.663%201.03.108.154.23.3.365.434Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M16.666%2014.917a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.895V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403h13.332Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-add'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h5.254a.75.75%200%200%201%200%201.5H8.25V15a1.75%201.75%200%200%200%202.047%201.725.75.75%200%201%201%20.255%201.478A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483V10a.75.75%200%201%201-1.5%200v-.815a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.833%209.333a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%200%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-check'%3e%3cpath%20d='M9.352%203.518a.917.917%200%200%201%201.564.649c0%20.29.168.554.43.678a5.083%205.083%200%200%201%202.904%204.34v2.482c0%20.03.002.061.005.092.016.127.037.257.067.389a.75.75%200%201%200%201.464-.326%202.559%202.559%200%200%201-.036-.204V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.452a2.583%202.583%200%200%201-1.286%201.895.75.75%200%200%200%20.37%201.403H6.75V15a3.25%203.25%200%200%200%202.71%203.205.75.75%200%201%200%20.25-1.479A1.75%201.75%200%200%201%208.25%2015v-.083h1.333a.75.75%200%200%200%200-1.5H5.162c.312-.504.51-1.07.582-1.66a.75.75%200%200%200%20.006-.09V9.185a5.083%205.083%200%200%201%202.904-4.34.75.75%200%200%200%20.43-.678c0-.243.096-.477.268-.649Z'%20/%3e%3cpath%20fill='%2300A85F'%20d='M18.03%2013.636a.75.75%200%200%200-1.06%200l-2.804%202.803-1.136-1.136a.75.75%200%200%200-1.06%201.06l1.666%201.667a.75.75%200%200%200%201.06%200l3.334-3.333a.75.75%200%200%200%200-1.06Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66H10a.75.75%200%201%201%200%201.5H8.25V15A1.75%201.75%200%200%200%2010%2016.75a.75.75%200%201%201%200%201.5A3.25%203.25%200%200%201%206.75%2015v-.083H3.333a.75.75%200%200%201-.37-1.403%202.583%202.583%200%200%200%201.287-1.895V9.167a6.583%206.583%200%200%201%203.382-5.483%202.417%202.417%200%200%201%204.736%200%206.583%206.583%200%200%201%203.382%205.483v.416a.75.75%200%201%201-1.5%200v-.398a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm5.834%208.917a.75.75%200%200%201%20.75.75v.619c.318.104.613.273.865.5l.536-.31a.75.75%200%200%201%20.75%201.298l-.537.31a2.414%202.414%200%200%201%200%20.998l.538.31a.75.75%200%200%201-.75%201.3l-.537-.31a2.417%202.417%200%200%201-.865.499v.619a.75.75%200%200%201-1.5%200v-.62a2.418%202.418%200%200%201-.865-.498l-.536.31a.75.75%200%200%201-.75-1.3l.536-.31a2.41%202.41%200%200%201%200-.998l-.536-.31a.75.75%200%201%201%20.75-1.299l.536.31c.252-.226.547-.395.865-.499v-.62a.75.75%200%200%201%20.75-.75Zm-.805%203.227a.606.606%200%200%200%20.022-.038.916.916%200%201%201-.022.038Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.25a.917.917%200%200%200-.917.917.75.75%200%200%201-.43.678%205.083%205.083%200%200%200-2.903%204.34v2.482a.75.75%200%200%201-.006.09%204.084%204.084%200%200%201-.582%201.66h9.676a4.083%204.083%200%200%201-.583-1.66.754.754%200%200%201-.005-.09V9.185a5.083%205.083%200%200%200-2.904-4.34.75.75%200%200%201-.43-.678A.917.917%200%200%200%2010%203.25Zm1.75%2011.667h-3.5V15a1.75%201.75%200%200%200%203.5%200v-.083Zm-5%200V15a3.25%203.25%200%201%200%206.5%200v-.083h3.416a.75.75%200%200%200%20.37-1.403%202.582%202.582%200%200%201-1.286-1.896V9.167l-.001-.035a6.583%206.583%200%200%200-3.381-5.448%202.416%202.416%200%200%200-4.736%200A6.583%206.583%200%200%200%204.25%209.167v2.451a2.583%202.583%200%200%201-1.286%201.896.75.75%200%200%200%20.37%201.403H6.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-off'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.74378%202.76509C6.82541%202.30646%207.04564%201.88012%207.37955%201.54621C7.80932%201.11644%208.39221%200.875%209%200.875C9.60779%200.875%2010.1907%201.11644%2010.6205%201.54621C10.9544%201.88017%2011.1747%202.30659%2011.2563%202.7653C12.1768%203.26544%2012.9636%203.98302%2013.5467%204.85773C14.1969%205.83291%2014.5694%206.96663%2014.6243%208.13736C14.6248%208.14712%2014.625%208.15689%2014.625%208.16667V10.6667C14.625%2010.9194%2014.4728%2011.1473%2014.2393%2011.244C14.0058%2011.3408%2013.737%2011.2874%2013.5582%2011.1088L6.34657%203.90295C6.2112%203.7677%206.14526%203.57788%206.16761%203.38783C6.18996%203.19778%206.29814%203.02845%206.4612%202.92829C6.55407%202.87123%206.64829%202.81691%206.74378%202.76509Z'%20/%3e%3cpath%20d='M1.94194%201.05806C1.69786%200.813981%201.30214%200.813981%201.05806%201.05806C0.813981%201.30214%200.813981%201.69786%201.05806%201.94194L4.26845%205.15233C3.73292%206.05726%203.42519%207.08181%203.37569%208.13739C3.37523%208.14714%203.375%208.1569%203.375%208.16667V10.627C3.32013%2011.0351%203.17288%2011.4255%202.94429%2011.7684C2.70909%2012.1212%202.39433%2012.4139%202.02536%2012.6228C1.77837%2012.7627%201.65664%2013.0514%201.72896%2013.3259C1.80128%2013.6004%202.04948%2013.7917%202.33333%2013.7917H12.9078L16.0581%2016.9419C16.3021%2017.186%2016.6979%2017.186%2016.9419%2016.9419C17.186%2016.6979%2017.186%2016.3021%2016.9419%2016.0581L1.94194%201.05806Z'/%3e%3cpath%20d='M6.70165%2016.2981C7.31114%2016.9076%208.13779%2017.25%208.99975%2017.25C9.8617%2017.25%2010.6884%2016.9076%2011.2978%2016.2981C11.4329%2016.1631%2011.5548%2016.0174%2011.6627%2015.8631C11.993%2015.391%2011.5761%2014.8339%2011%2014.8342H7C6.42364%2014.8342%206.0068%2015.3917%206.33735%2015.8639C6.44519%2016.0179%206.56689%2016.1633%206.70165%2016.2981Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-notifications-tilt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.625%203.026a2.417%202.417%200%200%201%203.349%203.348%206.584%206.584%200%200%201-1.486%206.27l-1.734%201.732a2.583%202.583%200%200%200-.43%202.25.75.75%200%200%201-1.254.73L2.643%207.93a.75.75%200%200%201%20.73-1.253%202.583%202.583%200%200%200%202.25-.43L7.356%204.51a6.583%206.583%200%200%201%206.27-1.485ZM4.58%2011.662a.75.75%200%200%201%20.77.18l2.809%202.808a.75.75%200%200%201-.431%201.274A3.254%203.254%200%200%201%204.998%2015a3.25%203.25%200%200%201-.923-2.727.75.75%200%200%201%20.503-.611Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-osmo'%3e%3cpath%20fill-rule='evenodd'%20d='M10.194%2018.94a.42.42%200%200%201-.359-.218c-.06-.139-.06-.278.04-.397l4.245-5.819-7.433%203.019c-.06.02-.1.04-.16.04a.389.389%200%200%201-.378-.278c-.06-.16.02-.338.16-.438l6.535-3.832-11.498-.656a.394.394%200%200%201-.378-.397c0-.179.12-.377.378-.397l11.498-.655-6.536-3.833c-.14-.1-.219-.278-.16-.437.06-.16.2-.278.38-.278.06%200%20.1.02.159.04l7.433%203.018-4.245-5.839a.408.408%200%200%201-.04-.397c.06-.139.2-.218.36-.218.099%200%20.198.04.278.119l8.45%208.4c.119.12.179.298.179.457%200%20.16-.06.318-.18.457l-8.449%208.42c-.08.08-.18.12-.279.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package'%3e%3cpath%20d='M10.368%201.846a.75.75%200%200%200-.736%200L3.333%205.39%206%206.89l6.667-3.75-2.3-1.293ZM10%209.14%207.53%207.75%2014.196%204l2.47%201.39L10%209.14Zm-7.417%204.61c0%20.271.146.52.383.654l6.284%203.535v-7.5l-6.667-3.75v7.061Zm14.451.654a.75.75%200%200%200%20.383-.654V6.689l-6.667%203.75v7.5l6.284-3.535Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654v7.5a.75.75%200%200%201-.383.654l-6.666%203.75a.75.75%200%200%201-.736%200l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM4.083%207.532%209.25%2010.44v5.779L4.083%2013.31V7.532Zm6.667%208.686%205.167-2.907V7.532L10.75%2010.44v5.779ZM10%209.139l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-outline-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M9.632%201.846a.75.75%200%200%201%20.736%200l6.666%203.75a.75.75%200%200%201%20.383.654V10a.75.75%200%201%201-1.5%200V7.532L10.75%2010.44v7.06a.75.75%200%200%201-1.118.654l-6.666-3.75a.75.75%200%200%201-.383-.654v-7.5a.75.75%200%200%201%20.383-.654l6.666-3.75ZM10%209.14l5.137-2.889-1.912-1.075L8.276%208.17%2010%209.14ZM6.775%207.325l4.949-2.995L10%203.36%204.863%206.25l1.912%201.075Zm-2.692.207v5.78l5.167%202.906v-5.78L4.083%207.533Zm11.333%205.145a.75.75%200%200%201%20.208%201.04l-.89%201.334h1.933a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%201%201-1.248-.832l.89-1.334h-1.933a.75.75%200%200%201-.624-1.166l1.667-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-package-send'%3e%3cpath%20fill-rule='evenodd'%20d='M13.942%203.532a.75.75%200%200%201%20.8%200l4.825%203.044a.75.75%200%200%201%20.35.634v.003a.94.94%200%200%201%200%20.024v5.553a.75.75%200%200%201-.35.634l-4.825%203.044a.75.75%200%200%201-.8%200l-4.825-3.044a.75.75%200%200%201-.35-.634V7.21a.75.75%200%200%201%20.35-.634l4.825-3.044Zm3.836%203.689-3.436-2.167-3.419%202.156%203.453%202.178%203.402-2.167Zm-2.686%203.49%203.325-2.118v3.783l-3.325%202.098V10.71Zm-1.5-.044L10.267%208.57v3.806l3.325%202.098v-3.807ZM.083%206.703a.75.75%200%200%201%20.75-.75h4.825a.75.75%200%201%201%200%201.5H.833a.75.75%200%200%201-.75-.75Zm1.93%203.043a.75.75%200%200%201%20.75-.75h2.895a.75.75%200%201%201%200%201.5H2.763a.75.75%200%200%201-.75-.75Zm1.93%203.044a.75.75%200%200%201%20.75-.75h.965a.75.75%200%200%201%200%201.5h-.965a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%207.583a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.67%201.342L5.845%2010l.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.671-1.341L2.49%2010l-.325-.162a.75.75%200%200%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.454l.581-.291a.75.75%200%200%201%20.671%201.342l-.325.162.325.163a.75.75%200%201%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341L8.322%2010l-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.454l.58-.291a.75.75%200%200%201%20.672%201.342L17.51%2010l.325.163a.75.75%200%201%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%200%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pause'%3e%3cpath%20fill-rule='evenodd'%20d='M5.547%203.88c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%205v10A1.584%201.584%200%200%201%207.5%2016.583h-.834A1.583%201.583%200%200%201%205.083%2015V5c0-.42.167-.823.464-1.12Zm5.833%200c.297-.296.7-.463%201.12-.463h.833A1.583%201.583%200%200%201%2014.916%205v10a1.584%201.584%200%200%201-1.583%201.583H12.5A1.583%201.583%200%200%201%2010.916%2015V5c0-.42.167-.823.464-1.12Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M16.236%2016.203c.037-.032.067-.058.088-.078l.04-.039c.14-.14.22-.331.22-.53a4.639%204.639%200%200%200-4.64-4.64H8.057a4.639%204.639%200%200%200-4.639%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74c.137-.103.242-.19.316-.256Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-add'%3e%3cpath%20fill-rule='evenodd'%20d='M15.833%2012.583a.75.75%200%200%201%20.75.75v1.75h1.75a.75.75%200%200%201%200%201.5h-1.75v1.75a.75.75%200%200%201-1.5%200v-1.75h-1.75a.75.75%200%201%201%200-1.5h1.75v-1.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-check'%3e%3cpath%20fill-rule='evenodd'%20d='M7.702%203.952a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%204.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm8.03%209.136a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-1.667-1.666a.75.75%200%201%201%201.06-1.061l1.137%201.136%202.803-2.803a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378Zm.574%2013.858a6.75%206.75%200%200%201-2.592-1.901l-.048-.06a4.639%204.639%200%200%201%203.28-1.358h3.889c1.23%200%202.41.488%203.28%201.358l-.03.033a6.755%206.755%200%200%201-2.613%201.928%206.75%206.75%200%200%201-5.166%200Zm.285-10.284a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%200%200-5.223%2011.025%204.639%204.639%200%200%201%203.28-1.358h3.889a4.64%204.64%200%200%201%203.279%201.357A6.75%206.75%200%200%200%2010%203.25Zm4.152%2012.072a3.139%203.139%200%200%200-2.206-.905h-3.89a3.14%203.14%200%200%200-2.206.906%206.753%206.753%200%200%200%208.302%200Zm-6.45-9.37a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%206.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-gear'%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Zm6.584%208.417a.75.75%200%200%200-1.5%200v.62a2.417%202.417%200%200%200-.865.498l-.537-.31a.75.75%200%200%200-.749%201.3l.536.31a2.417%202.417%200%200%200%200%20.998l-.536.31a.75.75%200%201%200%20.75%201.298l.536-.31c.252.227.547.396.865.5v.62a.75.75%200%200%200%201.5%200v-.62a2.42%202.42%200%200%200%20.865-.5l.537.31a.75.75%200%201%200%20.75-1.299l-.538-.31a2.412%202.412%200%200%200%200-.998l.537-.31a.75.75%200%200%200-.75-1.298l-.537.31a2.416%202.416%200%200%200-.864-.5v-.62Zm-1.543%202.458a.916.916%200%201%200%201.584.917.916.916%200%200%200-1.584-.917Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-off'%3e%3cpath%20fill-rule='evenodd'%20d='M10%2018.25c2.074%200%203.647-.52%204.71-1.051.36-.18.662-.361.904-.524l1.355%201.355a.75.75%200%200%200%201.06-1.06l-6.053-6.053L3.03%201.97a.75.75%200%200%200-1.06%201.06l7.886%207.887h-1.8a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051Zm-1.944-5.833a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893.182-.091.345-.182.487-.268l-3.172-3.172h-3.3Zm-.354-8.465a3.25%203.25%200%200%201%204.596%204.596.75.75%200%200%201-1.06-1.06%201.75%201.75%200%201%200-2.475-2.475.75.75%200%201%201-1.061-1.061Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-outline'%3e%3cpath%20fill-rule='evenodd'%20d='m16.324%2016.125.026-.025.013-.014a.747.747%200%200%200%20.22-.53%204.639%204.639%200%200%200-4.638-4.64h-3.89a4.639%204.639%200%200%200-4.638%204.64c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051s3.647-.52%204.71-1.051a7.984%207.984%200%200%200%201.21-.74%205.489%205.489%200%200%200%20.404-.334Zm-8.268-3.708a3.14%203.14%200%200%200-3.121%202.807l.047.035c.21.159.537.377.979.598.88.44%202.224.893%204.04.893%201.814%200%203.158-.453%204.039-.893a6.441%206.441%200%200%200%201.026-.633%203.139%203.139%200%200%200-3.121-2.807h-3.89ZM10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203ZM8.763%205.013a1.75%201.75%200%201%201%202.475%202.474%201.75%201.75%200%200%201-2.475-2.474Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-password'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%2013.417a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.67%201.34l-.324.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%200%201-.671-1.341l.325-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.833%200a.75.75%200%200%201%20.75.75v.453l.581-.29a.75.75%200%201%201%20.671%201.34l-.325.163.325.163a.75.75%200%200%201-.67%201.341l-.582-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.581.29a.75.75%200%201%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.67-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75Zm5.834%200a.75.75%200%200%201%20.75.75v.453l.58-.29a.75.75%200%201%201%20.672%201.34l-.325.163.325.163a.75.75%200%200%201-.671%201.341l-.581-.29v.453a.75.75%200%200%201-1.5%200v-.453l-.582.29a.75.75%200%200%201-.67-1.341l.324-.163-.325-.162a.75.75%200%201%201%20.671-1.342l.582.29v-.452a.75.75%200%200%201%20.75-.75ZM7.702%202.702a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596ZM10%203.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Zm-1.943%207.5a3.139%203.139%200%200%200-2.467%201.198.75.75%200%200%201-1.179-.927%204.639%204.639%200%200%201%203.646-1.77h3.889a4.639%204.639%200%200%201%203.643%201.767.75.75%200%201%201-1.178.928%203.139%203.139%200%200%200-2.466-1.196H8.058Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-person-remove'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%2013.636a.75.75%200%200%201%201.061%200l1.553%201.553%201.553-1.553a.75.75%200%200%201%201.06%201.061l-1.552%201.553%201.553%201.553a.75.75%200%200%201-1.061%201.06l-1.553-1.552-1.553%201.553a.75.75%200%200%201-1.06-1.061l1.552-1.553-1.553-1.553a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M5.836%2013.336a3.14%203.14%200%200%201%202.22-.92h3.889c.387%200%20.766.072%201.12.208a.75.75%200%200%200%20.537-1.401%204.638%204.638%200%200%200-1.657-.306h-3.89a4.639%204.639%200%200%200-4.638%204.639c0%20.199.079.39.22.53l.04.039.087.078c.074.065.18.153.318.256.274.207.677.474%201.208.74%201.064.532%202.636%201.051%204.71%201.051a.75.75%200%200%200%200-1.5c-1.815%200-3.159-.453-4.04-.893a6.441%206.441%200%200%201-1.025-.633c.075-.71.391-1.378.901-1.888Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%203a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%203Zm0%201.5A1.75%201.75%200%201%200%2010%208a1.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play'%3e%3cpath%20fill-rule='evenodd'%20d='M5.467%202.679a.75.75%200%200%201%20.76.016L17.058%209.36a.75.75%200%200%201%200%201.278L6.226%2017.305a.75.75%200%200%201-1.143-.638V3.333a.75.75%200%200%201%20.384-.654Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666ZM7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-play-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.695%206.298a.38.38%200%200%201%20.384.008l5.49%203.371a.38.38%200%200%201%200%20.646l-5.49%203.37a.38.38%200%200%201-.579-.322V6.629a.38.38%200%200%201%20.195-.33Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug'%3e%3cpath%20d='M8.596%204.558a.625.625%200%200%200-.884%200L6.004%206.266A5.467%205.467%200%200%200%205.44%2013.5l-.36.36-2.276%202.276a.75.75%200%200%200%201.06%201.061l2.24-2.24.396-.396a5.468%205.468%200%200%200%207.235-.566l1.708-1.707a.625.625%200%200%200%200-.884l-.81-.81%202.565-2.564a.75.75%200%201%200-1.061-1.06l-2.564%202.564-3.106-3.106.162-.162%202.402-2.402a.75.75%200%201%200-1.06-1.061L9.582%205.189l-.178.178-.81-.809Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.698%203.698%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-gear'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.573-1.574a3.697%203.697%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Zm9.691.272a.75.75%200%200%201%20.75.75v.62c.318.103.613.273.865.499l.537-.31a.75.75%200%201%201%20.75%201.3l-.537.31a2.42%202.42%200%200%201%200%20.997l.537.31a.75.75%200%201%201-.75%201.299l-.537-.31a2.416%202.416%200%200%201-.865.5v.619a.75.75%200%201%201-1.5%200v-.62a2.414%202.414%200%200%201-.864-.498l-.536.309a.75.75%200%200%201-.75-1.3l.536-.308a2.415%202.415%200%200%201%200-1l-.536-.309a.75.75%200%200%201%20.75-1.299l.536.31c.252-.227.547-.396.864-.5v-.619a.75.75%200%200%201%20.75-.75Zm-.81%203.239a.764.764%200%200%200%20.034-.06.918.918%200%201%201-.035.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-plug-connect-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M18.03%201.97a.75.75%200%200%201%200%201.06l-1.573%201.574a3.704%203.704%200%200%201%20.607%202.059%203.697%203.697%200%200%201-1.121%202.621l-1.246%201.246a.75.75%200%200%201-1.06%200L9.47%206.364a.75.75%200%200%201%200-1.061l1.246-1.246a3.696%203.696%200%200%201%204.68-.514L16.97%201.97a.75.75%200%200%201%201.06%200ZM14.2%204.6a2.196%202.196%200%200%200-2.411.505l-.009.009-.72.72%203.107%203.105.728-.728A2.195%202.195%200%200%200%2014.2%204.6ZM8.864%208.636a.75.75%200%200%201%200%201.061l-1.137%201.136%201.44%201.44%201.136-1.137a.75.75%200%200%201%201.06%201.061l-1.136%201.136.303.303a.75.75%200%200%201%200%201.061l-1.246%201.246a3.697%203.697%200%200%201-4.68.514L3.03%2018.03a.75.75%200%200%201-1.06-1.06l1.5-1.5.073-.074a3.696%203.696%200%200%201%20.514-4.68L5.303%209.47a.75.75%200%200%201%201.06%200l.304.303%201.136-1.137a.75.75%200%200%201%201.06%200Zm-3.03%202.425-.729.728a2.198%202.198%200%201%200%203.106%203.106l.009-.009.72-.72-3.107-3.105Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-preview'%3e%3cpath%20fill-rule='evenodd'%20d='M4.166%204.083a.083.083%200%200%200-.083.084v1.75h1.833V4.083h-1.75Zm0-1.5a1.583%201.583%200%200%200-1.583%201.584v11.666a1.583%201.583%200%200%200%201.583%201.584H7.5a.75.75%200%201%200%200-1.5H4.166a.083.083%200%200%201-.083-.084V7.417h11.833v2.166a.75.75%200%200%200%201.5%200V4.167a1.583%201.583%200%200%200-1.583-1.584H4.166Zm3.25%201.5v1.834h8.5v-1.75a.083.083%200%200%200-.083-.084H7.416Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.825%2014.083c.898%201.194%202.1%201.75%203.258%201.75%201.159%200%202.36-.556%203.258-1.75-.898-1.193-2.1-1.75-3.258-1.75-1.159%200-2.36.557-3.258%201.75Zm3.258-3.25c1.845%200%203.637.987%204.803%202.853a.75.75%200%200%201%200%20.795c-1.166%201.865-2.958%202.852-4.803%202.852-1.845%200-3.637-.987-4.803-2.852a.75.75%200%200%201%200-.795c1.166-1.866%202.959-2.853%204.803-2.853Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M12.908%2014.083c0-.644.523-1.166%201.167-1.166h.008a1.167%201.167%200%200%201%200%202.333h-.008a1.167%201.167%200%200%201-1.167-1.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress'%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-progress-check'%3e%3cpath%20d='M13.814%206.924a.75.75%200%200%201%20.096%201.056l-4.167%205a.75.75%200%200%201-1.107.05l-2.5-2.5a.75.75%200%201%201%201.061-1.06l1.92%201.919%203.64-4.37a.75.75%200%200%201%201.057-.095Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10.935%202.519a.75.75%200%200%201%20.899-.564%208.252%208.252%200%200%201%200%2016.09.75.75%200%200%201-.335-1.462%206.753%206.753%200%200%200%200-13.166.75.75%200%200%201-.564-.898Zm-1.87%200a.75.75%200%200%201-.565.898%206.712%206.712%200%200%200-2.32%201.017.75.75%200%200%201-.85-1.236%208.212%208.212%200%200%201%202.836-1.243.75.75%200%200%201%20.898.565ZM3.857%205.612a.75.75%200%200%201%20.293%201.02l-.136.246a6.73%206.73%200%200%200-.671%201.998.75.75%200%201%201-1.48-.25%208.23%208.23%200%200%201%20.826-2.452l.008-.016.141-.254a.75.75%200%200%201%201.02-.292Zm-1.273%205.753a.75.75%200%200%201%20.93.512c.2.693.51%201.349.92%201.943a.75.75%200%201%201-1.237.85%208.215%208.215%200%200%201-1.125-2.376.75.75%200%200%201%20.512-.93Zm3.032%204.769a.75.75%200%200%201%201.024-.276c.58.333%201.206.578%201.859.726a.75.75%200%201%201-.332%201.463%208.2%208.2%200%200%201-2.275-.889.75.75%200%200%201-.276-1.024Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-pulse'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-quick-start'%3e%3cpath%20fill-rule='evenodd'%20d='M10%202.583a.75.75%200%200%201%20.75.75v1.75H15a.75.75%200%200%201%20.494.186l3.334%202.917a.75.75%200%200%201%200%201.128l-3.334%202.917a.75.75%200%200%201-.493.186h-4.25v4.25a.75.75%200%201%201-1.5%200v-4.25H4.166A2.417%202.417%200%200%201%201.75%2010V7.5a2.417%202.417%200%200%201%202.417-2.417H9.25v-1.75a.75.75%200%200%201%20.75-.75Zm-5.833%204a.917.917%200%200%200-.917.917V10a.917.917%200%200%200%20.917.917H14.72l2.476-2.167-2.476-2.167H4.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-robot'%3e%3cpath%20fill-rule='evenodd'%20d='M6.484%202.398a.75.75%200%200%201%20.91.545l.691%202.766h3.83l.69-2.766a.75.75%200%200%201%201.456.364l-.6%202.402h.705a2.417%202.417%200%200%201%202.417%202.416v.523l.614.614c.14.14.22.33.22.53v2.5a.75.75%200%200%201-.22.53l-.614.614v.94a2.417%202.417%200%200%201-2.417%202.416H5.833a2.417%202.417%200%200%201-2.417-2.417v-.94l-.613-.613a.75.75%200%200%201-.22-.53v-2.5a.75.75%200%200%201%20.22-.53l.613-.614v-.523A2.417%202.417%200%200%201%205.833%205.71h.706l-.6-2.402a.75.75%200%200%201%20.545-.91Zm.999%204.81h-1.65a.917.917%200%200%200-.917.917v.834a.75.75%200%200%201-.22.53l-.613.613v1.88l.614.613c.14.14.22.331.22.53v1.25a.917.917%200%200%200%20.916.917h8.333a.917.917%200%200%200%20.917-.917v-1.25a.75.75%200%200%201%20.22-.53l.613-.614v-1.879l-.613-.613a.75.75%200%200%201-.22-.53v-.834a.917.917%200%200%200-.917-.916H7.483Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.25%2012.963a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Zm3.5%200a.75.75%200%200%201-.75-.75v-2.084a.75.75%200%201%201%201.5%200v2.084a.75.75%200%200%201-.75.75Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.97a.75.75%200%200%201%201.06%200l3.334%203.333a.75.75%200%200%201%200%201.06L6.364%2018.03a.75.75%200%200%201-1.061%200L1.97%2014.697a.75.75%200%200%201%200-1.06L13.636%201.97Zm-1.553%203.674%201.25%201.25%201.06-1.06-1.25-1.25%201.023-1.023%202.273%202.272L5.833%2016.44l-2.272-2.273%201.022-1.022%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44%201.25%201.25%201.06-1.06-1.25-1.25%201.44-1.44Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ruler-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M13.636%201.93a.75.75%200%200%201%201.061%200l3.333%203.334a.75.75%200%200%201%200%201.06L6.364%2017.992a.75.75%200%200%201-1.061%200L1.97%2014.658a.75.75%200%200%201%200-1.06L13.636%201.93Zm-1.553%203.675.72.72a.75.75%200%200%200%201.06-1.061l-.719-.72%201.023-1.022%202.272%202.272L5.833%2016.4l-2.272-2.272%201.022-1.023.72.72a.75.75%200%201%200%201.06-1.061l-.719-.72%201.44-1.44.719.72a.75.75%200%201%200%201.06-1.06l-.719-.72%201.44-1.44.719.72a.75.75%200%200%200%201.06-1.06l-.719-.72%201.44-1.44Zm4.167%207.065a.75.75%200%200%201%20.207%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-search'%3e%3cpath%20fill-rule='evenodd'%20d='M5.814%202.251a6.583%206.583%200%200%201%207.675%2010.177l4.542%204.541a.75.75%200%200%201-1.06%201.061l-4.543-4.542a6.581%206.581%200%200%201-8.75-.5A6.583%206.583%200%200%201%205.815%202.251Zm2.52.999a5.083%205.083%200%201%200%200%2010.167%205.083%205.083%200%200%200%200-10.167Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account'%3e%3cpath%20d='M12.933%2015.29Zm.095-.076Zm-4.204%201.294a19.195%2019.195%200%200%201-.003-.002l.003.002Zm-1.593-1.085Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.566%202.253s-.203.111-.403.111a.98.98%200%200%201-.403-.111s-.136-.066-.236-.117a19.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm3.294%209.996a17.92%2017.92%200%200%201-.58.463%2017.36%2017.36%200%200%201-1.486%201.013l-.055.033c-.16.098-.313.188-.455.269l-.625.341-.097.05a15.818%2015.818%200%200%201-.721-.391c-.139-.08-.287-.166-.444-.261l-.007-.005-.003-.002A21.527%2021.527%200%200%201%208.033%2016a17.572%2017.572%200%200%201-1.283-.96%2012.194%2012.194%200%200%201-1.328-1.274l-.016-.017a4.639%204.639%200%200%201%202.651-.832h3.889a4.64%204.64%200%200%201%202.644.827l-.016.019c-.39.439-.824.851-1.28%201.233Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-account-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.153%201.215%203.956%202.565%205.303%201.074%201.072%202.292%201.914%203.23%202.485a20.021%2020.021%200%200%200%201.51.831l.096.046.026.012.007.003.003.002c.199.09.427.09.625%200h.001l.003-.002.007-.003.026-.012c.023-.01.055-.026.095-.046a20.052%2020.052%200%200%200%201.512-.832c.94-.572%202.16-1.416%203.234-2.49%201.348-1.346%202.56-3.147%202.56-5.297V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a17.98%2017.98%200%200%200%201.177-.66c.694-.422%201.529-.99%202.321-1.68a3.14%203.14%200%200%200-1.548-.408H8.06c-.55%200-1.084.144-1.554.412a17.117%2017.117%200%200%200%202.319%201.677%2018.497%2018.497%200%200%200%201.175.659ZM5.41%2013.75a4.639%204.639%200%200%201%202.65-.832h3.89a4.64%204.64%200%200%201%202.644.827c.983-1.113%201.656-2.38%201.656-3.744V4.936L10%202.793%203.75%204.936V10c0%201.367.675%202.634%201.66%203.749Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%205a3.25%203.25%200%201%200%200%206.5A3.25%203.25%200%200%200%2010%205Zm0%201.5a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253l-.065.03-.018.01-.006.002h-.001L10%2018l-.313.682-.002-.001-.005-.003-.018-.008a7.251%207.251%200%200%201-.302-.148%2019.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4Zm-.07%2017.392L10%2018l.313.682a.754.754%200%200%201-.626%200ZM10.75%206.667a.75.75%200%200%200-1.5%200V10.5a.75.75%200%200%200%201.5%200V6.667Zm-1.625%206.667c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-alert-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.781%206.386a19.74%2019.74%200%200%201-3.63%202.284l-.019.008-.005.003h-.002s-.001.001-.313-.681l-.312.682-.003-.001-.005-.003-.018-.008a6.995%206.995%200%200%201-.301-.148%2019.738%2019.738%200%200%201-3.33-2.137C4.247%2014.959%202.25%2012.764%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM10%2018l-.312.682c.198.09.426.09.624%200L10%2018Zm0-.835a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10%205.917a.75.75%200%200%201%20.75.75V10.5a.75.75%200%200%201-1.5%200V6.667a.75.75%200%200%201%20.75-.75Zm-.875%207.417c0-.484.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.739%2019.739%200%200%200%203.566%202.253s.203.111.403.111.403-.111.403-.111a18.75%2018.75%200%200%200%201.063-.563%2019.74%2019.74%200%200%200%202.502-1.69c1.785-1.428%203.782-3.622%203.782-6.386V4.4a.75.75%200%200%200-.507-.71l-7-2.4Zm-.604%205.663.486.496.486-.496a2.333%202.333%200%200%201%201.665-.703c.624%200%201.223.253%201.665.703.438.453.684%201.064.684%201.7%200%20.637-.246%201.248-.684%201.701l-3.305%203.188a.73.73%200%200%201-1.022%200L6.31%2010.354a2.444%202.444%200%200%201-.685-1.7c0-.637.246-1.248.685-1.701a2.333%202.333%200%200%201%201.664-.703c.624%200%201.223.253%201.665.703Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-heart-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200l.007-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.246%2018.246%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.248%2018.248%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='m9.595%206.836.405.413.405-.413a1.944%201.944%200%200%201%201.387-.586c.52%200%201.02.21%201.388.586.365.377.57.886.57%201.417%200%20.53-.205%201.04-.57%201.417l-2.755%202.656a.609.609%200%200%201-.85%200L6.82%209.67a2.037%202.037%200%200%201-.57-1.417c0-.53.205-1.04.57-1.417a1.944%201.944%200%200%201%201.388-.586c.52%200%201.019.21%201.387.586Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='m10%207.25-.405-.414a1.944%201.944%200%200%200-1.387-.586c-.52%200-1.02.21-1.388.586-.365.377-.57.886-.57%201.417%200%20.53.205%201.04.57%201.417l2.755%202.656c.24.232.61.232.85%200L13.18%209.67c.365-.377.57-.886.57-1.417%200-.53-.205-1.04-.57-1.417a1.944%201.944%200%200%200-1.388-.586c-.52%200-1.019.21-1.387.586L10%207.249Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key'%3e%3cpath%20fill-rule='evenodd'%20d='M9.757%201.29a.75.75%200%200%201%20.486%200l7%202.4a.75.75%200%200%201%20.507.71V10c0%202.764-1.997%204.958-3.782%206.386a19.74%2019.74%200%200%201-3.565%202.253s-.203.111-.403.111-.403-.111-.403-.111-.136-.066-.237-.117a19.739%2019.739%200%200%201-3.33-2.137C4.247%2014.958%202.25%2012.763%202.25%2010V4.4a.75.75%200%200%201%20.507-.71l7-2.4ZM8.674%206.8a1.875%201.875%200%201%201%202.214%202.976v2a.888.888%200%200%201-1.777%200v-2A1.874%201.874%200%200%201%208.675%206.8Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-shield-key-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10.243%201.29a.75.75%200%200%200-.486%200l-7%202.4a.75.75%200%200%200-.507.71V10c0%202.764%201.997%204.958%203.781%206.386a19.738%2019.738%200%200%200%203.63%202.284l.019.008.005.003h.003a.75.75%200%200%200%20.625%200h.002l.005-.003.018-.008a7.03%207.03%200%200%200%20.302-.148%2019.74%2019.74%200%200%200%203.329-2.137c1.784-1.427%203.781-3.622%203.781-6.385V4.4a.75.75%200%200%200-.507-.71l-7-2.4ZM10%2017.166a18.238%2018.238%200%200%200%203.031-1.95c1.716-1.373%203.219-3.179%203.219-5.215V4.936L10%202.793%203.75%204.936V10c0%202.037%201.503%203.842%203.219%205.214A18.239%2018.239%200%200%200%2010%2017.164Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.94%206.8c.28-.352.662-.55%201.06-.55s.78.198%201.06.55c.282.35.44.828.44%201.325s-.158.974-.44%201.326a1.55%201.55%200%200%201-.35.325v2c0%20.49-.318.889-.71.889-.393%200-.711-.398-.711-.889v-2a1.578%201.578%200%200%201-.35-.325c-.281-.352-.439-.829-.439-1.326%200-.497.158-.974.44-1.326Z'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M10%206.25c-.398%200-.78.198-1.06.55-.282.35-.44.828-.44%201.325s.158.974.44%201.326c.104.13.222.24.35.325l-.001%202c0%20.49.318.889.71.889.393%200%20.711-.398.711-.889v-2c.128-.086.246-.195.35-.325.282-.352.44-.829.44-1.326%200-.497-.158-.974-.44-1.326-.28-.351-.662-.549-1.06-.549Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship'%3e%3cpath%20fill-rule='evenodd'%20d='M10.75%202.5a.75.75%200%200%200-1.5%200v1.75H6A1.75%201.75%200%200%200%204.25%206v3.13l-1.21.514a.75.75%200%200%200-.456.69%208.693%208.693%200%200%200%201.05%204.187.75.75%200%200%200%201.097.255h.001l.003-.003.027-.018a4.733%204.733%200%200%201%20.569-.317c.388-.182.872-.345%201.35-.354.598-.012%201.272.298%201.859.693a7.036%207.036%200%200%201%20.915.738l.01.01v.001a.75.75%200%200%200%201.07%200l.001-.001.01-.01.046-.044a7.045%207.045%200%200%201%20.869-.694c.587-.395%201.26-.705%201.858-.694.71.014%201.189.19%201.474.341a1.839%201.839%200%200%201%20.357.246l.003.003a.75.75%200%200%200%201.209-.142%208.694%208.694%200%200%200%201.055-4.197.75.75%200%200%200-.457-.69l-1.21-.514V6A1.75%201.75%200%200%200%2014%204.25h-3.25V2.5Zm-5%205.992L9.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm5%201.34%205.006%202.068c.075-.348.123-.705.146-1.076l-5.152-2.19v1.199Zm-1.5%200V8.635L4.1%2010.824c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M6.651%2016.583a1.25%201.25%200%200%200-1.041.521%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.75%202.75%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.749%202.749%200%200%201%202.276-1.147%202.75%202.75%200%200%201%202.276%201.146%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.25%201.25%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-ship-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v1.75H14c.967%200%201.75.784%201.75%201.75v3.13l1.21.514a.75.75%200%200%201%20.457.69%208.694%208.694%200%200%201-1.266%204.57c-.219.368-.464.729-.735%201.085.069.076.133.157.194.24a1.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.041-.52.75.75%200%200%201%201.219.874%202.75%202.75%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.042.52A2.749%202.749%200%200%201%2010%2018.25a2.75%202.75%200%200%201-2.276-1.146%201.25%201.25%200%200%200-1.073-.52%201.249%201.249%200%200%200-1.041.52%202.749%202.749%200%200%201-2.276%201.146%202.75%202.75%200%200%201-2.276-1.146.75.75%200%201%201%201.218-.875%201.25%201.25%200%200%200%201.073.521%201.251%201.251%200%200%200%201.042-.52%202.51%202.51%200%200%201%20.194-.24%2011.437%2011.437%200%200%201-.656-.955%209.262%209.262%200%200%201-.89-1.877%208.693%208.693%200%200%201-.455-2.823.75.75%200%200%201%20.456-.69l1.21-.515V6c0-.966.784-1.75%201.75-1.75h3.25V2.5a.75.75%200%200%201%20.75-.75ZM5.75%208.492%209.707%206.81a.75.75%200%200%201%20.587%200l3.956%201.682V6a.25.25%200%200%200-.25-.25H6a.25.25%200%200%200-.25.25v2.492Zm.113%206.699a9.944%209.944%200%200%201-.656-.941%208.209%208.209%200%200%201-.49-.922L10%2011.146l5.284%202.182a8.098%208.098%200%200%201-.423.81c-.208.35-.449.7-.723%201.053a2.754%202.754%200%200%200-.804-.108%202.75%202.75%200%200%200-2.276%201.146%201.25%201.25%200%200%201-1.073.521%201.251%201.251%200%200%201-1.042-.52%202.75%202.75%200%200%200-2.276-1.147%202.754%202.754%200%200%200-.804.108Zm9.893-3.29c.075-.348.123-.706.146-1.077l-5.152-2.19v1.199l5.006%202.067ZM9.25%209.832v-1.2L4.1%2010.825c.022.37.071.729.146%201.076L9.25%209.833Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-slash'%3e%3cpath%20fill-rule='evenodd'%20d='M14.53%203.65797C14.8109%203.8586%2014.8759%204.24894%2014.6753%204.52983L6.34194%2016.1965C6.14131%2016.4774%205.75097%2016.5424%205.47009%2016.3418C5.1892%2016.1412%205.12415%2015.7508%205.32478%2015.4699L13.6581%203.80328C13.8587%203.5224%2014.2491%203.45734%2014.53%203.65797Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%202.583A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-left-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.916h1.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.416h10A2.417%202.417%200%200%200%2017.416%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm3.25%201.5v11.833H15a.917.917%200%200%200%20.916-.916V5A.917.917%200%200%200%2015%204.083H8.25Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-collapse'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sidebar-right-expand'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v10a.917.917%200%200%200%20.917.917h6.75V4.083H5Zm0-1.5A2.417%202.417%200%200%200%202.583%205v10A2.417%202.417%200%200%200%205%2017.417h10A2.417%202.417%200%200%200%2017.417%2015V5A2.417%202.417%200%200%200%2015%202.583H5Zm8.25%201.5v11.834H15a.917.917%200%200%200%20.917-.917V5A.917.917%200%200%200%2015%204.083h-1.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sort'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%206.667a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h7.5a.75.75%200%200%201%200%201.5h-7.5a.75.75%200%200%201-.75-.75Zm0%203.333a.75.75%200%200%201%20.75-.75h5a.75.75%200%200%201%200%201.5h-5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sparkle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.67.415l2.39%204.775%204.776%202.388a.75.75%200%200%201%200%201.342l-4.776%202.388-2.388%204.776a.75.75%200%200%201-1.342%200L6.941%2013.06l-4.776-2.388a.75.75%200%200%201%200-1.342L6.94%206.941l2.388-4.776A.75.75%200%200%201%2010%201.75Zm0%202.427L8.17%207.835a.75.75%200%200%201-.335.336L4.177%2010l3.658%201.83a.75.75%200%200%201%20.336.335L10%2015.823l1.83-3.658a.75.75%200%200%201%20.335-.336L15.823%2010l-3.658-1.83a.75.75%200%200%201-.336-.335L10%204.177Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-speedometer'%3e%3cpath%20fill-rule='evenodd'%20d='M10%204.083a6.75%206.75%200%200%200-4.773%2011.523.75.75%200%200%201-1.06%201.061%208.25%208.25%200%201%201%2011.667%200%20.75.75%200%200%201-1.061-1.06A6.75%206.75%200%200%200%2010%204.082Zm3.864%202.887a.75.75%200%200%201%200%201.06l-3.334%203.334a.75.75%200%200%201-1.06-1.061l3.333-3.333a.75.75%200%200%201%201.06%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.667a8.333%208.333%200%201%200%200%2016.666%208.333%208.333%200%200%200%200-16.666Zm.334%204.273A.377.377%200%200%200%2010%205.75a.377.377%200%200%200-.334.19L8.477%208.147%205.82%208.5a.365.365%200%200%200-.3.233.321.321%200%200%200%20.094.35L7.539%2010.8l-.454%202.426a.328.328%200%200%200%20.148.334.4.4%200%200%200%20.392.026l2.378-1.146%202.372%201.146a.4.4%200%200%200%20.392-.026.328.328%200%200%200%20.148-.334l-.454-2.426%201.926-1.718a.321.321%200%200%200%20.095-.35.365.365%200%200%200-.3-.232l-2.66-.353-1.188-2.207Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-star-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M9.995.918a.75.75%200%200%201%20.672.418l2.397%204.857%205.36.777a.75.75%200%200%201%20.415%201.28l-3.883%203.78.915%205.339a.75.75%200%200%201-1.089.79L10%2015.64l-4.794%202.52a.75.75%200%200%201-1.088-.79l.916-5.339L1.15%208.25a.75.75%200%200%201%20.415-1.28l5.36-.777%202.397-4.857a.75.75%200%200%201%20.673-.418Zm0%202.445-1.9%203.848a.75.75%200%200%201-.565.41l-4.244.615%203.077%202.995a.75.75%200%200%201%20.216.664l-.726%204.23%203.798-1.997a.75.75%200%200%201%20.699%200l3.786%201.995-.726-4.228a.75.75%200%200%201%20.216-.664l3.077-2.995-4.244-.615a.75.75%200%200%201-.565-.41l-1.9-3.848Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-active'%3e%3cpath%20fill-rule='evenodd'%20d='M7.472%204.25a.75.75%200%200%201%20.74.513l2.477%207.43%201.08-4.856a.75.75%200%200%201%201.402-.173l1.043%202.086H17.5a.75.75%200%200%201%200%201.5h-3.75a.75.75%200%200%201-.67-.415l-.306-.61-1.208%205.438a.75.75%200%200%201-1.444.074L7.603%207.68l-.625%202.502a.75.75%200%200%201-.728.568H2.5a.75.75%200%200%201%200-1.5h3.165l1.108-4.432a.75.75%200%200%201%20.699-.568Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-inactive'%3e%3cpath%20fill-rule='evenodd'%20d='M3.417%2010a.75.75%200%200%201%20.75-.75h11.666a.75.75%200%200%201%200%201.5H4.167a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-launched'%3e%3cpath%20d='M14.86%2010a5%205%200%201%201-10%200%205%205%200%200%201%2010%200Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-status-new'%3e%3cpath%20fill-rule='evenodd'%20d='M10%203.417a.75.75%200%200%201%20.75.75V9.25h5.083a.75.75%200%200%201%200%201.5H10.75v5.083a.75.75%200%200%201-1.5%200V10.75H4.167a.75.75%200%200%201%200-1.5H9.25V4.167a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop'%3e%3cpath%20fill-rule='evenodd'%20d='M4.125%204.125a2.417%202.417%200%200%201%201.708-.708h8.334a2.417%202.417%200%200%201%202.416%202.416v8.334a2.417%202.417%200%200%201-2.416%202.416H5.833a2.417%202.417%200%200%201-2.416-2.416V5.833c0-.64.254-1.255.708-1.708Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M4.107%204.107a8.333%208.333%200%201%201%2011.785%2011.785A8.333%208.333%200%200%201%204.107%204.107ZM7.21%207.211c.215-.215.507-.336.81-.336h3.957a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-stop-circle-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M6.843%202.378a8.25%208.25%200%201%201%206.314%2015.244A8.25%208.25%200%200%201%206.843%202.378ZM10%203.25a6.75%206.75%200%201%200%200%2013.5%206.75%206.75%200%200%200%200-13.5Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M7.211%207.211c.215-.215.507-.336.811-.336h3.956a1.147%201.147%200%200%201%201.147%201.147v3.956a1.147%201.147%200%200%201-1.147%201.147H8.022a1.147%201.147%200%200%201-1.147-1.147V8.022c0-.304.12-.596.336-.811Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-horiz'%3e%3cpath%20fill-rule='evenodd'%20d='M6.78%202.803a.75.75%200%200%201%200%201.06l-1.219%201.22h10.69a.75.75%200%200%201%200%201.5H5.56l1.22%201.22a.75.75%200%200%201-1.06%201.06l-2.5-2.5a.75.75%200%200%201%200-1.06l2.5-2.5a.75.75%200%200%201%201.06%200Zm6.44%208.333a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.061l-2.5%202.5a.75.75%200%201%201-1.06-1.06l1.22-1.22H3.75a.75.75%200%201%201%200-1.5h10.69l-1.22-1.22a.75.75%200%200%201%200-1.06Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-swap-vertical'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%203.22a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201-1.06%201.06l-1.22-1.22v10.69a.75.75%200%200%201-1.5%200V5.56l-1.22%201.22a.75.75%200%200%201-1.06-1.06l2.5-2.5ZM14.166%203a.75.75%200%200%201%20.75.75v10.69l1.22-1.22a.75.75%200%200%201%201.06%201.06l-2.5%202.5a.75.75%200%200%201-1.06%200l-2.5-2.5a.75.75%200%200%201%201.06-1.06l1.22%201.22V3.75a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-sync'%3e%3cpath%20fill-rule='evenodd'%20d='M6.229%203.602a7.5%207.5%200%200%201%2011.18%205.461.75.75%200%200%201-1.485.207A6%206%200%200%200%205%206.75h1.666a.75.75%200%201%201%200%201.5H3.333a.75.75%200%200%201-.75-.75V4.167a.75.75%200%201%201%201.5%200v1.295a7.5%207.5%200%200%201%202.146-1.86Zm-3%206.489a.75.75%200%200%201%20.847.64%206%206%200%200%200%2010.923%202.52h-1.666a.75.75%200%200%201%200-1.5h2.9a.65.65%200%200%201%20.034%200h.4a.75.75%200%200%201%20.75.75v3.332a.75.75%200%200%201-1.5%200v-1.295A7.499%207.499%200%200%201%202.59%2010.937a.75.75%200%200%201%20.64-.846Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tag'%3e%3cpath%20fill-rule='evenodd'%20d='M5.13%205.13a1.583%201.583%200%201%201%202.24%202.24%201.583%201.583%200%200%201-2.24-2.24Z'%20clip-rule='evenodd'%20/%3e%3cpath%20fill-rule='evenodd'%20d='M5%201.75A3.25%203.25%200%200%200%201.75%205v4.31c0%20.641.255%201.256.708%201.709l6.425%206.425a2.758%202.758%200%200%200%203.9%200l4.66-4.66a2.758%202.758%200%200%200%200-3.901L11.02%202.458a2.417%202.417%200%200%200-1.71-.708H5Zm0%201.5A1.75%201.75%200%200%200%203.25%205v4.31c0%20.243.097.476.269.648l6.425%206.425a1.259%201.259%200%200%200%201.779%200l4.66-4.66a1.258%201.258%200%200%200%200-1.78L9.958%203.52a.917.917%200%200%200-.648-.269H5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-terminal'%3e%3cpath%20fill-rule='evenodd'%20d='M4.167%204.083A.917.917%200%200%200%203.25%205v10a.917.917%200%200%200%20.917.917h11.667A.917.917%200%200%200%2016.75%2015V5a.917.917%200%200%200-.916-.917H4.167Zm-1.709-.792a2.417%202.417%200%200%201%201.71-.708h11.666A2.417%202.417%200%200%201%2018.25%205v10a2.417%202.417%200%200%201-2.416%202.417H4.167A2.417%202.417%200%200%201%201.75%2015V5c0-.641.255-1.256.708-1.709ZM6.137%206.97a.75.75%200%200%201%201.06%200l2.5%202.5a.75.75%200%200%201%200%201.06l-2.5%202.5a.75.75%200%201%201-1.06-1.06L8.107%2010l-1.97-1.97a.75.75%200%200%201%200-1.06Zm3.947%205.53a.75.75%200%200%201%20.75-.75h2.5a.75.75%200%200%201%200%201.5h-2.5a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-text-box-search'%3e%3cpath%20fill-rule='evenodd'%20d='M3.29%205.791A2.417%202.417%200%200%201%205%205.083h10A2.417%202.417%200%200%201%2017.416%207.5v1.667a.75.75%200%201%201-1.5%200V7.5A.917.917%200%200%200%2015%206.583H5a.917.917%200%200%200-.917.917v4.167a.917.917%200%200%200%20.917.916h4.166a.75.75%200%200%201%200%201.5H5a2.417%202.417%200%200%201-2.417-2.416V7.5c0-.641.255-1.256.708-1.709Zm9.412%206.91a3.25%203.25%200%200%201%205.064%204.005l1.098%201.097a.75.75%200%200%201-1.061%201.06l-1.098-1.097a3.25%203.25%200%200%201-4.003-5.064ZM15%2013.25a1.75%201.75%200%201%200%200%203.5%201.75%201.75%200%200%200%200-3.5Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-dark'%3e%3cpath%20fill-rule='evenodd'%20d='M8.637%203.383a6.75%206.75%200%201%200%206.775%2010.646A6.999%206.999%200%200%201%208.637%203.383ZM10.1%201.75h.227a.75.75%200%200%201%20.51%201.3%205.5%205.5%200%200%200%205.809%209.126.75.75%200%200%201%20.974.983A8.251%208.251%200%201%201%2010%201.743a.84.84%200%200%201%20.1.007Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-theme-light'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200V2.5a.75.75%200%200%201%20.75-.75ZM4.136%204.136a.75.75%200%200%201%201.061%200l.583.584a.75.75%200%200%201-1.06%201.06l-.584-.583a.75.75%200%200%201%200-1.06Zm11.728%200a.75.75%200%200%201%200%201.061l-.584.583a.75.75%200%201%201-1.06-1.06l.583-.584a.75.75%200%200%201%201.06%200ZM7.113%207.113a4.083%204.083%200%201%201%205.774%205.774%204.083%204.083%200%200%201-5.774-5.774ZM10%207.417a2.583%202.583%200%201%200%200%205.166%202.583%202.583%200%200%200%200-5.166ZM1.75%2010a.75.75%200%200%201%20.75-.75h.833a.75.75%200%201%201%200%201.5H2.5a.75.75%200%200%201-.75-.75Zm14.167%200a.75.75%200%200%201%20.75-.75h.833a.75.75%200%200%201%200%201.5h-.833a.75.75%200%200%201-.75-.75Zm-1.697%204.22a.75.75%200%200%201%201.06%200l.584.583a.75.75%200%200%201-1.061%201.06l-.583-.583a.75.75%200%200%201%200-1.06Zm-8.44%200a.75.75%200%200%201%200%201.06l-.583.584a.75.75%200%201%201-1.06-1.061l.583-.583a.75.75%200%200%201%201.06%200ZM10%2015.917a.75.75%200%200%201%20.75.75v.833a.75.75%200%200%201-1.5%200v-.833a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-thumb-up'%3e%3cpath%20d='M10.833%202.5a2.5%202.5%200%200%201%202.495%202.353l.005.147v3.333h1.666a2.5%202.5%200%200%201%202.484%202.209l.012.145.004.146-.016.164-.839%204.193c-.317%201.355-1.251%202.33-2.341%202.317l-.137-.007H7.499a.833.833%200%200%201-.827-.736l-.006-.097V8.72A.833.833%200%200%201%207.085%208a2.498%202.498%200%200%200%201.243-1.998l.006-.169V5a2.5%202.5%200%200%201%202.5-2.5ZM4.166%208.333a.833.833%200%200%201%20.828.736l.005.098v7.5a.833.833%200%200%201-.735.827l-.098.006h-.833a1.667%201.667%200%200%201-1.663-1.542l-.004-.125V10a1.667%201.667%200%200%201%201.542-1.662l.125-.005h.833Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-timeline-text'%3e%3cpath%20fill-rule='evenodd'%20d='M17.167%2014.165a.083.083%200%200%201-.083.083h-6.667a.083.083%200%200%201-.083-.083v-2.5a.75.75%200%200%200-.22-.53L8.978%209.998l1.136-1.136a.75.75%200%200%200%20.22-.53v-2.5a.083.083%200%200%201%20.083-.084h6.667a.083.083%200%200%201%20.083.084v8.333Zm1.036%201.12c.297-.297.464-.7.464-1.12V5.832a1.583%201.583%200%200%200-1.583-1.584h-6.667a1.583%201.583%200%200%200-1.583%201.584V8.02L7.387%209.468a.75.75%200%200%200%200%201.06l1.447%201.448v2.189a1.583%201.583%200%200%200%201.583%201.583h6.667c.42%200%20.822-.166%201.12-.463Zm-2.036-5.287a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm0-2.5a.75.75%200%200%200-.75-.75h-3.333a.75.75%200%201%200%200%201.5h3.333a.75.75%200%200%200%20.75-.75Zm-1.667%205a.75.75%200%200%200-.75-.75h-1.666a.75.75%200%201%200%200%201.5h1.666a.75.75%200%200%200%20.75-.75Zm-9.04-.79A2.417%202.417%200%200%200%204.5%207.7V3.33a.75.75%200%201%200-1.5%200V7.7a2.417%202.417%200%200%200%200%204.595v4.369a.75.75%200%200%200%201.5%200v-4.37c.358-.116.688-.316.96-.588Zm-.793-1.71a.917.917%200%201%201-1.833%200%20.917.917%200%200%201%201.833%200Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-bolt'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.71a4.25%204.25%200%201%200%200%208.5H10a.75.75%200%200%201%200%201.5H6.667a5.75%205.75%200%200%201%200-11.5h6.666a5.75%205.75%200%200%201%205.75%205.75.75.75%200%201%201-1.5%200%204.25%204.25%200%200%200-4.25-4.25H6.667Zm4.957%202.542a2.417%202.417%200%201%201%203.418%203.418%202.417%202.417%200%200%201-3.418-3.418Zm4.625%204.418a.75.75%200%200%201%20.208%201.04l-.889%201.334H17.5a.75.75%200%200%201%20.624%201.166l-1.667%202.5a.75.75%200%200%201-1.248-.832l.89-1.334h-1.932a.75.75%200%200%201-.624-1.166l1.666-2.5a.75.75%200%200%201%201.04-.208Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-off'%3e%3cpath%20fill-rule='evenodd'%20d='M2.6%205.934A5.75%205.75%200%200%201%206.668%204.25h6.666a5.75%205.75%200%201%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm2.358%202.357a2.417%202.417%200%201%201%203.418%203.418A2.417%202.417%200%200%201%204.958%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-on'%3e%3cpath%20fill-rule='evenodd'%20d='M6.667%205.75a4.25%204.25%200%201%200%200%208.5h6.666a4.25%204.25%200%200%200%200-8.5H6.667ZM2.6%205.934A5.75%205.75%200%200%201%206.667%204.25h6.666a5.75%205.75%200%200%201%200%2011.5H6.667A5.75%205.75%200%200%201%202.6%205.934Zm9.024%202.357a2.417%202.417%200%201%201%203.417%203.418%202.417%202.417%200%200%201-3.417-3.418Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-toggle-stack'%3e%3cpath%20fill-rule='evenodd'%20d='M6.334%202H13a3.333%203.333%200%201%201%200%206.667H6.334a3.333%203.333%200%200%201%200-6.667ZM4.919%206.748a2%202%200%201%200%202.829-2.829%202%202%200%200%200-2.829%202.829ZM6.333%2011H13a3.333%203.333%200%201%201%200%206.667H6.333a3.333%203.333%200%201%201%200-6.667Zm5.253%204.748a2%202%200%201%200%202.828-2.83%202%202%200%200%200-2.828%202.83Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-tools'%3e%3cpath%20fill-rule='evenodd'%20d='M5.303%201.97a.75.75%200%200%201%201.06%200L10%205.606l1.552-1.552.002-.002%201.249-1.249a3.107%203.107%200%200%201%204.394%204.394L14.394%2010l3.636%203.636a.75.75%200%200%201%200%201.061l-3.333%203.333a.75.75%200%200%201-1.06%200l-2.084-2.083L10%2014.394%206.364%2018.03a.75.75%200%200%201-.53.22H2.5a.75.75%200%200%201-.75-.75v-3.333a.75.75%200%200%201%20.22-.53L5.606%2010%204.053%208.447%201.97%206.364a.75.75%200%200%201%200-1.061L5.303%201.97Zm.341%205.947.72-.72a.75.75%200%201%200-1.061-1.06l-.72.719-1.022-1.023%202.272-2.272L8.94%206.667%206.667%208.939%205.644%207.917Zm-2.394%206.56v2.273h2.273l7.28-7.28%201.553-1.553-2.273-2.273-8.833%208.833Zm9.894-9.894%202.273%202.273.72-.72a1.607%201.607%200%201%200-2.273-2.272l-.72.72Zm.19%206.478-2.273%202.272%201.022%201.023.72-.72a.75.75%200%200%201%201.06%201.061l-.719.72%201.023%201.022%202.272-2.272-3.106-3.106Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-triangle-square-circle'%3e%3cpath%20fill-rule='evenodd'%20d='M10%201.75a.75.75%200%200%201%20.651.378l3.334%205.833a.75.75%200%200%201-.652%201.122H6.667a.75.75%200%200%201-.652-1.122L9.35%202.128A.75.75%200%200%201%2010%201.75ZM7.96%207.583h4.08L10%204.012%207.96%207.583Zm-3.793%204.834a.083.083%200%200%200-.084.083v3.333a.084.084%200%200%200%20.084.084H7.5a.083.083%200%200%200%20.083-.084V12.5a.083.083%200%200%200-.083-.083H4.167Zm-1.12-1.037c.297-.296.7-.463%201.12-.463H7.5A1.583%201.583%200%200%201%209.083%2012.5v3.333A1.583%201.583%200%200%201%207.5%2017.417H4.167a1.583%201.583%200%200%201-1.584-1.584V12.5c0-.42.167-.823.464-1.12Zm8.822.489a3.25%203.25%200%201%201%204.596%204.596%203.25%203.25%200%200%201-4.596-4.596Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility'%3e%3cpath%20fill-rule='evenodd'%20d='M3.382%2010c1.862%202.915%204.07%204.25%206.619%204.25%202.548%200%204.756-1.335%206.618-4.25-1.862-2.916-4.07-4.25-6.618-4.25-2.549%200-4.757%201.334-6.619%204.25Zm-1.525-.386C3.947%206.131%206.66%204.25%2010.001%204.25s6.053%201.881%208.143%205.364a.75.75%200%200%201%200%20.772c-2.09%203.483-4.802%205.364-8.143%205.364-3.342%200-6.054-1.881-8.144-5.364a.75.75%200%200%201%200-.772Zm6.435-1.323a2.417%202.417%200%201%201%203.417%203.418A2.417%202.417%200%200%201%208.292%208.29Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-off'%3e%3cpath%20fill-rule='evenodd'%20d='M1.97%201.97a.75.75%200%200%201%201.06%200l11.338%2011.336a.747.747%200%200%201%20.12.12l3.543%203.543a.75.75%200%200%201-1.06%201.061l-3.199-3.198a8.014%208.014%200%200%201-3.774.918c-3.34-.001-6.051-1.882-8.14-5.364a.75.75%200%200%201%200-.772c.906-1.511%201.93-2.725%203.081-3.615L1.97%203.03a.75.75%200%200%201%200-1.06Zm4.04%205.1c-.935.687-1.814%201.656-2.628%202.93%201.862%202.915%204.07%204.25%206.619%204.25h.004a6.515%206.515%200%200%200%202.644-.541l-1.554-1.554a2.416%202.416%200%200%201-3.25-3.25L6.01%207.07Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M8.633%205.885c.45-.091.907-.136%201.366-.135H10c2.548%200%204.756%201.334%206.618%204.25-.46.72-.943%201.345-1.445%201.876a.75.75%200%201%200%201.09%201.03%2014.56%2014.56%200%200%200%201.88-2.52.75.75%200%200%200%200-.772C16.054%206.131%2013.343%204.25%2010%204.25a8.297%208.297%200%200%200-1.666.165.75.75%200%200%200%20.298%201.47Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-visibility-scan'%3e%3cpath%20fill-rule='evenodd'%20d='M5%204.083A.917.917%200%200%200%204.083%205v1.667a.75.75%200%201%201-1.5%200V5A2.417%202.417%200%200%201%205%202.583h1.667a.75.75%200%200%201%200%201.5H5Zm7.583-.75a.75.75%200%200%201%20.75-.75H15A2.417%202.417%200%200%201%2017.417%205v1.667a.75.75%200%200%201-1.5%200V5A.917.917%200%200%200%2015%204.083h-1.667a.75.75%200%200%201-.75-.75ZM6.768%2010c1.216%201.563%202.3%202.167%203.232%202.167.933%200%202.016-.604%203.232-2.167-1.216-1.563-2.3-2.167-3.232-2.167-.933%200-2.016.604-3.232%202.167ZM10%206.333c1.763%200%203.347%201.23%204.777%203.231a.75.75%200%200%201%200%20.872c-1.43%202.002-3.014%203.23-4.777%203.23-1.763%200-3.347-1.228-4.777-3.23a.75.75%200%200%201%200-.872c1.43-2.002%203.014-3.23%204.777-3.23Zm-6.667%206.25a.75.75%200%200%201%20.75.75V15a.917.917%200%200%200%20.917.917h1.667a.75.75%200%200%201%200%201.5H5A2.416%202.416%200%200%201%202.583%2015v-1.667a.75.75%200%200%201%20.75-.75Zm13.334%200a.75.75%200%200%201%20.75.75V15A2.416%202.416%200%200%201%2015%2017.417h-1.667a.75.75%200%200%201%200-1.5H15a.917.917%200%200%200%20.917-.917v-1.667a.75.75%200%200%201%20.75-.75Z'%20clip-rule='evenodd'%20/%3e%3cpath%20d='M10.707%209.207a1%201%200%200%200-1.414%200l-.086.086a1%201%200%200%200%200%201.414l.086.086a1%201%200%200%200%201.414%200l.086-.086a1%201%200%200%200%200-1.414l-.086-.086Z'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning'%3e%3cpath%20fill-rule='evenodd'%20d='M9.95%201.75a2.407%202.407%200%200%200-2.058%201.158l-7.02%2011.72-.007.011a2.407%202.407%200%200%200%202.058%203.611h14.055a2.408%202.408%200%200%200%202.057-3.61l-.006-.011L12.01%202.912l-.002-.004A2.408%202.408%200%200%200%209.95%201.75Zm.8%205.75a.75.75%200%200%200-1.5%200v3.333a.75.75%200%200%200%201.5%200V7.5Zm-1.625%206.667c0-.483.392-.875.875-.875h.008a.875.875%200%201%201%200%201.75H10a.875.875%200%200%201-.875-.875Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3csymbol%20viewBox='0%200%2020%2020'%20id='lp-icon-warning-outline'%3e%3cpath%20fill-rule='evenodd'%20d='M8.77%202.06a2.408%202.408%200%200%201%203.238.848l.002.004%207.02%2011.717.005.01a2.407%202.407%200%200%201-2.057%203.61l-.009.001H2.923a2.408%202.408%200%200%201-2.058-3.61l.007-.011%207.02-11.72a2.41%202.41%200%200%201%20.878-.85Zm1.18%201.19a.908.908%200%200%200-.775.435L2.162%2015.394a.907.907%200%200%200%20.775%201.356h14.027a.909.909%200%200%200%20.775-1.357L10.726%203.688l-.001-.002a.908.908%200%200%200-.775-.435Zm.05%203.5a.75.75%200%200%201%20.75.75v3.333a.75.75%200%200%201-1.5%200V7.5a.75.75%200%200%201%20.75-.75Zm-.75%207.417a.75.75%200%200%201%20.75-.75h.008a.75.75%200%200%201%200%201.5H10a.75.75%200%200%201-.75-.75Z'%20clip-rule='evenodd'%20/%3e%3c/symbol%3e%3c/defs%3e%3c/svg%3e";function PW({children:e}){return b.useEffect(()=>{fetch(EW).then(async t=>t.text()).then(t=>{const r=new DOMParser().parseFromString(t,"image/svg+xml").documentElement;r.id="lp-icons-sprite",r.style.display="none",document.body.appendChild(r)}).catch(t=>{console.log("unable to fetch icon",t)})},[]),P.jsx(Eg.Provider,{value:{path:""},children:e})}const kW=()=>(b.useEffect(()=>{const e=window.matchMedia("(prefers-color-scheme: dark)"),t=n=>{document.documentElement.setAttribute("data-theme",n.matches?"dark":"default")};return t(e),e.addEventListener("change",t),()=>{e.removeEventListener("change",t)}},[]),P.jsx(Z.StrictMode,{children:P.jsx(yD,{children:P.jsxs(PW,{children:[P.jsx(SW,{}),P.jsx(DH,{})]})})}));i_.createRoot(document.getElementById("root")).render(P.jsx(kW,{})); diff --git a/internal/dev_server/ui/src/EventsTable.tsx b/internal/dev_server/ui/src/EventsTable.tsx index 012f17f71..051a9c3d7 100644 --- a/internal/dev_server/ui/src/EventsTable.tsx +++ b/internal/dev_server/ui/src/EventsTable.tsx @@ -10,6 +10,7 @@ import { Button, Cell, Column, + Heading, Row, Table, TableBody, @@ -201,7 +202,7 @@ const EventsTable = ({ events, onToggleStreaming }: Props) => { return ( -

Events Stream

+ Events Stream {onToggleStreaming && (