react-toolkits 2.8.2 → 2.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -1,24 +1,2714 @@
1
1
  import { lazy, useContext, useMemo, useState, useRef, useEffect, createContext, Fragment as Fragment$1, memo, useCallback, forwardRef, Suspense, useImperativeHandle, cloneElement } from 'react';
2
- import { pick, has, template, get, isEqual } from 'lodash-es';
2
+ import { useStore, create, createStore } from 'zustand';
3
3
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
4
- import { create, createStore } from 'zustand';
5
- import * as Te from 'antd';
6
- import { Modal, Form, theme, Space, Input, Tag, Typography, Spin, Table, Button, Result, Card, Select, Alert, Divider, Menu, Dropdown, App, Row, Col, Breadcrumb, Skeleton, Descriptions, Tooltip, Empty, Collapse, Checkbox } from 'antd';
4
+ import { pick, has, template, get, isEqual } from 'lodash-es';
5
+ import * as Antd2 from 'antd';
6
+ import { Modal, Form, theme, Space, Input, Tag, Typography, Spin, Result, Table, Button, Card, Select, Alert, Divider, Menu, Dropdown, App, Row, Col, Breadcrumb, Skeleton, Descriptions, Tooltip, Empty, Collapse, Checkbox } from 'antd';
7
7
  import { flushSync } from 'react-dom';
8
8
  import { createRoot } from 'react-dom/client';
9
- import w1 from './logo-L6MFCL6M.png';
9
+ import logoUrl from './logo-L6MFCL6M.png';
10
10
  import { persist, createJSONStorage } from 'zustand/middleware';
11
11
  import { useNavigate, Routes, Route, Navigate, useLocation, Link, useParams } from 'react-router-dom';
12
12
  import { jwtDecode } from 'jwt-decode';
13
- import U1 from 'swr/immutable';
13
+ import useSWRImmutable from 'swr/immutable';
14
14
  import { PlusOutlined, LogoutOutlined, UserOutlined, UserAddOutlined, UsergroupAddOutlined, MenuUnfoldOutlined, MenuFoldOutlined } from '@ant-design/icons';
15
- import Do from 'query-string';
16
- import $e, { mutate, unstable_serialize } from 'swr';
17
- import fe from 'swr/mutation';
15
+ import qs from 'query-string';
16
+ import useSWR3, { mutate, unstable_serialize } from 'swr';
17
+ import useSWRMutation from 'swr/mutation';
18
18
  import { produce } from 'immer';
19
- import Pr from 'swr/infinite';
20
- import ua from 'dayjs';
19
+ import useSWRInfinite from 'swr/infinite';
20
+ import dayjs from 'dayjs';
21
+
22
+ var __defProp = Object.defineProperty;
23
+ var __getOwnPropNames = Object.getOwnPropertyNames;
24
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
25
+ var __esm = (fn, res) => function __init() {
26
+ return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
27
+ };
28
+ var __export = (target, all) => {
29
+ for (var name in all)
30
+ __defProp(target, name, { get: all[name], enumerable: true });
31
+ };
32
+ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
33
+
34
+ // src/components/locale/en_GB.ts
35
+ var locale, en_GB_default;
36
+ var init_en_GB = __esm({
37
+ "src/components/locale/en_GB.ts"() {
38
+ locale = {
39
+ global: {
40
+ noEntitlement: "No permission, please contact the administrator.",
41
+ name: "Name",
42
+ creationTime: "Creation Time",
43
+ operation: "Operation",
44
+ update: "Update",
45
+ edit: "Edit",
46
+ delete: "Delete",
47
+ selectAll: "Select All",
48
+ game: "Game",
49
+ user: "User",
50
+ role: "Role",
51
+ username: "Username",
52
+ password: "Password",
53
+ label: "Label",
54
+ method: "Method",
55
+ route: "Route",
56
+ request: "Request",
57
+ response: "Response",
58
+ add: "Add",
59
+ signIn: "Sign In"
60
+ },
61
+ SignIn: {
62
+ title: "Sign In Method",
63
+ thirdParty: "Third party sign in",
64
+ signInWithIDass: "Sign in width IDass",
65
+ notRegistered: "You are not yet registered on the platform, please contact the administrator",
66
+ welcome: "Welcome"
67
+ },
68
+ NotFound: {
69
+ subTitle: "The page you visited does not exist",
70
+ buttonText: "Return to homepage"
71
+ },
72
+ FilterFormWrapper: {
73
+ confirmText: "Search",
74
+ resetText: "Reset"
75
+ },
76
+ FormModal: {
77
+ confirmText: "Confirm",
78
+ cancelText: "Cancel"
79
+ },
80
+ GameSelect: {
81
+ label: "Current Game",
82
+ placeholder: "Please select a game"
83
+ },
84
+ RequireGame: {
85
+ description: "Please select a game"
86
+ },
87
+ UserWidget: {
88
+ signOutText: "Sign Out"
89
+ },
90
+ UserList: {
91
+ createTitle: "Create User",
92
+ createSuccessfully: "User created successfully",
93
+ updateTitle: "Update User",
94
+ updateSuccessfully: "User updated successfully",
95
+ deleteTitle: "Delete User",
96
+ deleteContent: "Are you sure you want to delete user <%= user %>?",
97
+ deleteSuccessfully: "User deleted successfully"
98
+ },
99
+ RoleList: {
100
+ createTitle: "Create Role",
101
+ createSuccessfully: "Role created successfully",
102
+ updateTitle: "Update Role",
103
+ updateSuccessfully: "Role updated successfully",
104
+ deleteTitle: "Delete Role",
105
+ deleteContent: "Are you sure you want to delete role <%= role %>?",
106
+ deleteSuccessfully: "Role deleted successfully"
107
+ },
108
+ PermissionList: {
109
+ failedDescription: "Failed to get permission list",
110
+ baseSectionTitle: "Platform Basic Permissions",
111
+ gameSectionTitle: "Game Permissions",
112
+ gameSectionDescription: "Please select a game first",
113
+ gameSelectPlaceholder: "Please select a game first",
114
+ removeText: "Remove",
115
+ addText: "Add Game Permissions"
116
+ },
117
+ RoleDetail: {
118
+ title: "Role Details"
119
+ },
120
+ InfiniteList: {
121
+ loadingText: "Loading...",
122
+ reachEndText: "You've reached the end",
123
+ loadMoreText: "Load more"
124
+ }
125
+ };
126
+ en_GB_default = locale;
127
+ }
128
+ });
129
+ function useToolkitsContext(selector) {
130
+ const store = useContext(ToolkitsContext);
131
+ if (!store) throw new Error("Missing ToolkitsContext.Provider in the tree");
132
+ return useStore(store, selector);
133
+ }
134
+ var createContextStore, contextStore, ToolkitsContext, ContextProvider, Provider_default;
135
+ var init_Provider = __esm({
136
+ "src/components/contextProvider/Provider.tsx"() {
137
+ init_en_GB();
138
+ createContextStore = (initProps) => {
139
+ const DEFAULT_PROPS = {
140
+ usePermissionApiV2: false,
141
+ locale: en_GB_default
142
+ };
143
+ return createStore()((set) => ({
144
+ ...DEFAULT_PROPS,
145
+ ...initProps,
146
+ setContext: (props) => {
147
+ set({ ...props });
148
+ }
149
+ }));
150
+ };
151
+ ToolkitsContext = createContext(null);
152
+ ContextProvider = (props) => {
153
+ const { children, ...restProps } = props;
154
+ const storeRef = useRef();
155
+ if (!storeRef.current) {
156
+ storeRef.current = createContextStore(restProps);
157
+ }
158
+ contextStore = storeRef.current;
159
+ return /* @__PURE__ */ jsx(ToolkitsContext.Provider, { value: storeRef.current, children });
160
+ };
161
+ if (process.env.NODE_ENV !== "production") {
162
+ ContextProvider.displayName = "ContextProvider";
163
+ }
164
+ Provider_default = ContextProvider;
165
+ }
166
+ });
167
+
168
+ // src/components/contextProvider/index.ts
169
+ var init_contextProvider = __esm({
170
+ "src/components/contextProvider/index.ts"() {
171
+ init_Provider();
172
+ }
173
+ });
174
+ function useTranslation() {
175
+ const locale2 = useToolkitsContext((state) => state.locale);
176
+ const t = useMemo(
177
+ () => (key, data) => has(locale2, key) ? template(get(locale2, key))(data) : key,
178
+ [locale2]
179
+ );
180
+ return { t };
181
+ }
182
+ var init_hooks = __esm({
183
+ "src/components/locale/hooks.ts"() {
184
+ init_contextProvider();
185
+ }
186
+ });
187
+
188
+ // src/components/locale/index.tsx
189
+ var init_locale = __esm({
190
+ "src/components/locale/index.tsx"() {
191
+ init_hooks();
192
+ }
193
+ });
194
+ var FilterFormWrapper, filterFormWrapper_default;
195
+ var init_filterFormWrapper = __esm({
196
+ "src/components/filterFormWrapper/index.tsx"() {
197
+ init_locale();
198
+ FilterFormWrapper = (props) => {
199
+ const { extras, isConfirming, onConfirm, onReset, children, buttonsAlign = "left", showReset } = props;
200
+ const { t } = useTranslation();
201
+ const {
202
+ token: { colorFillAlter, lineWidth, lineType, colorBorder, borderRadiusLG }
203
+ } = theme.useToken();
204
+ const style = {
205
+ maxWidth: "none",
206
+ background: colorFillAlter,
207
+ borderWidth: lineWidth,
208
+ borderStyle: lineType,
209
+ borderColor: colorBorder,
210
+ borderRadius: borderRadiusLG,
211
+ padding: 24,
212
+ marginBottom: 24
213
+ };
214
+ return /* @__PURE__ */ jsx("div", { style, children: /* @__PURE__ */ jsxs("div", { className: `flex ${buttonsAlign === "bottom" ? "flex-col" : "flex-row"}`, children: [
215
+ /* @__PURE__ */ jsx("div", { className: `${buttonsAlign === "left" ? "flex-grow-0" : "flex-1"}`, children }),
216
+ /* @__PURE__ */ jsx("div", { className: `${buttonsAlign === "bottom" ? "text-end" : "text-start"} ml-4`, children: /* @__PURE__ */ jsxs(Space, { children: [
217
+ /* @__PURE__ */ jsx(Button, { type: "primary", loading: isConfirming, onClick: onConfirm, children: t("FilterFormWrapper.confirmText") }),
218
+ extras?.map((item) => /* @__PURE__ */ jsx(Fragment$1, { children: item.children }, item.key)),
219
+ showReset && /* @__PURE__ */ jsx(Button, { onClick: onReset, children: t("FilterFormWrapper.resetText") })
220
+ ] }) })
221
+ ] }) });
222
+ };
223
+ filterFormWrapper_default = FilterFormWrapper;
224
+ }
225
+ });
226
+ function renderToString(node) {
227
+ const container = document.createElement("div");
228
+ const root = createRoot(container);
229
+ return new Promise((resolve) => {
230
+ setTimeout(() => {
231
+ flushSync(() => {
232
+ root.render(node);
233
+ });
234
+ resolve(container.innerHTML);
235
+ });
236
+ });
237
+ }
238
+ var splitByTags, Highlight, highlight_default;
239
+ var init_highlight = __esm({
240
+ "src/components/highlight/index.tsx"() {
241
+ splitByTags = (str) => {
242
+ const regex = /(<[^>]*>)/;
243
+ return str.split(regex).filter((part) => part !== "");
244
+ };
245
+ Highlight = (props) => {
246
+ const { texts, children } = props;
247
+ const [htmlString, setHtmlString] = useState("");
248
+ useEffect(() => {
249
+ renderToString(children).then((str) => {
250
+ const result = splitByTags(str);
251
+ for (const text of texts) {
252
+ for (let index = 0; index < result.length; index++) {
253
+ result[index] = result[index].replace(String(text), `<span style='color: #DC143C;'>${text}</span>`);
254
+ }
255
+ }
256
+ setHtmlString(result.join(""));
257
+ });
258
+ }, [children, texts]);
259
+ return /* @__PURE__ */ jsx("div", { dangerouslySetInnerHTML: { __html: htmlString } });
260
+ };
261
+ highlight_default = Highlight;
262
+ }
263
+ });
264
+ var Logo, Logo_default;
265
+ var init_Logo = __esm({
266
+ "src/components/logo/Logo.tsx"() {
267
+ Logo = (props) => {
268
+ return /* @__PURE__ */ jsx("img", { src: logoUrl, alt: "logo", ...props });
269
+ };
270
+ Logo_default = Logo;
271
+ }
272
+ });
273
+
274
+ // src/components/logo/index.tsx
275
+ var init_logo = __esm({
276
+ "src/components/logo/index.tsx"() {
277
+ init_Logo();
278
+ }
279
+ });
280
+ var useNavStore;
281
+ var init_stores = __esm({
282
+ "src/components/navMenu/stores.ts"() {
283
+ useNavStore = create()(
284
+ persist(
285
+ (set) => ({
286
+ openKeys: [],
287
+ setOpenKeys: (keys) => set({ openKeys: keys }),
288
+ selectedKeys: [],
289
+ setSelectedKeys: (keys) => set({ selectedKeys: keys })
290
+ }),
291
+ {
292
+ name: "nav",
293
+ storage: createJSONStorage(() => localStorage),
294
+ partialize: (state) => ({
295
+ openKeys: state.openKeys,
296
+ selectedKeys: state.selectedKeys
297
+ })
298
+ }
299
+ )
300
+ );
301
+ }
302
+ });
303
+ function checkChildren(children, permissions) {
304
+ return (children ?? []).some((child) => {
305
+ if (child === null) {
306
+ return false;
307
+ } else if (child.type === "divider") {
308
+ return true;
309
+ } else {
310
+ if (child.children) {
311
+ return checkChildren(child.children ?? [], permissions);
312
+ } else {
313
+ return !permissions || !child.code || permissions[child.code];
314
+ }
315
+ }
316
+ });
317
+ }
318
+ function transformItems(items, permissions) {
319
+ const result = [];
320
+ for (let i = 0; i < items.length; i++) {
321
+ if (items[i] === null) {
322
+ result[i] = null;
323
+ } else if (items[i].type === "divider") {
324
+ result[i] = { ...items[i] };
325
+ } else {
326
+ if (items[i].children) {
327
+ const { children, ...restProps } = items[i];
328
+ result[i] = checkChildren(children ?? [], permissions) ? {
329
+ ...restProps,
330
+ children: transformItems(children ?? [], permissions)
331
+ } : null;
332
+ } else {
333
+ const { route: route3, label, code, ...restProps } = items[i];
334
+ const isPass = !code || !permissions || permissions[code];
335
+ result[i] = isPass ? {
336
+ ...restProps,
337
+ label: withLink(label, route3)
338
+ } : null;
339
+ }
340
+ }
341
+ }
342
+ return result;
343
+ }
344
+ function flatItems(items, result = [], keypath = []) {
345
+ for (const item of items) {
346
+ const children = item?.children;
347
+ if (Array.isArray(children)) {
348
+ const keys = item.type !== "group" && item.key ? [...keypath, item.key] : keypath;
349
+ flatItems(children, result, keys);
350
+ } else if (item) {
351
+ result.push(Object.assign(item, { keypath }));
352
+ }
353
+ }
354
+ return result;
355
+ }
356
+ var withLink;
357
+ var init_utils = __esm({
358
+ "src/components/navMenu/utils.tsx"() {
359
+ withLink = (label, route3) => {
360
+ if (route3) {
361
+ return /* @__PURE__ */ jsx(Link, { to: route3, children: label });
362
+ }
363
+ return label;
364
+ };
365
+ }
366
+ });
367
+ var NavMenu, NavMenu_default;
368
+ var init_NavMenu = __esm({
369
+ "src/components/navMenu/NavMenu.tsx"() {
370
+ init_permission();
371
+ init_stores();
372
+ init_utils();
373
+ NavMenu = memo(function NavMenu2(props) {
374
+ const { items } = props;
375
+ const location = useLocation();
376
+ const flattenItems = useMemo(() => flatItems(items ?? []), [items]);
377
+ const codes = useMemo(() => flattenItems.map((item) => item.code).filter(Boolean), [flattenItems]);
378
+ const { data: permissions, isLoading } = usePermissions(codes, true);
379
+ const internalItems = useMemo(() => transformItems(items ?? [], permissions), [items, permissions]);
380
+ const { openKeys, selectedKeys, setOpenKeys, setSelectedKeys } = useNavStore();
381
+ const onOpenChange = useCallback(
382
+ (keys) => {
383
+ const lastOpenKey = keys?.find((key) => openKeys?.indexOf(key) === -1);
384
+ const match = flattenItems.find((item) => lastOpenKey === item.key);
385
+ setOpenKeys(match?.keypath ?? [lastOpenKey]);
386
+ },
387
+ [flattenItems, openKeys, setOpenKeys]
388
+ );
389
+ useEffect(() => {
390
+ const match = flattenItems.find((item) => location.pathname === item.route);
391
+ if (match) {
392
+ const key = match.key;
393
+ const keypath = match.keypath;
394
+ setSelectedKeys([key]);
395
+ setOpenKeys(keypath);
396
+ }
397
+ }, [flattenItems, location]);
398
+ if (isLoading) {
399
+ return /* @__PURE__ */ jsx("div", { className: "flex justify-center items-center", style: { height: "calc(100vh - 64px)" }, children: /* @__PURE__ */ jsx(Spin, {}) });
400
+ }
401
+ return /* @__PURE__ */ jsx(
402
+ Menu,
403
+ {
404
+ style: { borderRight: "none" },
405
+ items: internalItems,
406
+ mode: "inline",
407
+ openKeys,
408
+ selectedKeys,
409
+ onOpenChange
410
+ }
411
+ );
412
+ });
413
+ if (process.env.NODE_ENV === "development") {
414
+ NavMenu.displayName = "NavMenu";
415
+ }
416
+ NavMenu_default = NavMenu;
417
+ }
418
+ });
419
+
420
+ // src/components/navMenu/index.ts
421
+ var init_navMenu = __esm({
422
+ "src/components/navMenu/index.ts"() {
423
+ init_NavMenu();
424
+ }
425
+ });
426
+
427
+ // src/constants.ts
428
+ var SSO_URL, NOT_REGISTERED;
429
+ var init_constants = __esm({
430
+ "src/constants.ts"() {
431
+ SSO_URL = "https://idaas.ifunplus.cn/enduser/api/application/plugin_FunPlus/sso/v1";
432
+ NOT_REGISTERED = "notRegistered";
433
+ }
434
+ });
435
+ function useTokenValidation(skip = false) {
436
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
437
+ const { clearToken } = useTokenStore();
438
+ const navigate = useNavigate();
439
+ const redirectToSignIn = (notRegistered) => {
440
+ clearToken();
441
+ navigate("/sign_in", { state: { [NOT_REGISTERED]: notRegistered } });
442
+ };
443
+ return useSWRImmutable(
444
+ !skip ? usePermissionApiV2 ? "/api/usystem/user/checkV2" : "/api/usystem/user/check" : null,
445
+ (url) => request(url, {
446
+ method: "POST",
447
+ body: {
448
+ permissions: ["100001"]
449
+ },
450
+ isGlobal: true
451
+ }),
452
+ {
453
+ onError: (error) => {
454
+ if (error instanceof RequestError) {
455
+ if (error.status === 401) {
456
+ redirectToSignIn();
457
+ } else if (error.status === 412) {
458
+ redirectToSignIn(true);
459
+ }
460
+ }
461
+ }
462
+ }
463
+ );
464
+ }
465
+ var useTokenStore;
466
+ var init_token = __esm({
467
+ "src/hooks/token.ts"() {
468
+ init_contextProvider();
469
+ init_constants();
470
+ init_request();
471
+ useTokenStore = create()(
472
+ persist(
473
+ (set, get2, store) => ({
474
+ token: "",
475
+ getUser: () => {
476
+ try {
477
+ return jwtDecode(get2().token);
478
+ } catch (_) {
479
+ return null;
480
+ }
481
+ },
482
+ setToken: (token) => set({ token }),
483
+ clearToken: () => {
484
+ get2().setToken("");
485
+ store.persist.clearStorage();
486
+ }
487
+ }),
488
+ {
489
+ name: "token",
490
+ partialize: (state) => ({ token: state.token })
491
+ }
492
+ )
493
+ );
494
+ }
495
+ });
496
+ var UserWidget, userWidget_default;
497
+ var init_userWidget = __esm({
498
+ "src/components/userWidget/index.tsx"() {
499
+ init_token();
500
+ init_locale();
501
+ UserWidget = (props) => {
502
+ const { logoutRedirectUrl } = props;
503
+ const { t } = useTranslation();
504
+ const navigate = useNavigate();
505
+ const { clearToken, getUser } = useTokenStore();
506
+ const user = getUser();
507
+ const items = [
508
+ {
509
+ key: "1",
510
+ icon: /* @__PURE__ */ jsx(LogoutOutlined, {}),
511
+ label: /* @__PURE__ */ jsx(
512
+ "a",
513
+ {
514
+ onClick: () => {
515
+ clearToken();
516
+ navigate(logoutRedirectUrl);
517
+ },
518
+ children: t("UserWidget.signOutText")
519
+ }
520
+ )
521
+ }
522
+ ];
523
+ return /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
524
+ Dropdown,
525
+ {
526
+ menu: {
527
+ selectable: true,
528
+ items
529
+ },
530
+ placement: "bottomRight",
531
+ children: /* @__PURE__ */ jsx(
532
+ "a",
533
+ {
534
+ onClick: (e) => {
535
+ e.preventDefault();
536
+ },
537
+ children: /* @__PURE__ */ jsxs(Space, { align: "center", children: [
538
+ /* @__PURE__ */ jsx("span", { children: user?.authorityId }),
539
+ /* @__PURE__ */ jsx(UserOutlined, { style: { fontSize: "16px" } })
540
+ ] })
541
+ }
542
+ )
543
+ }
544
+ ) });
545
+ };
546
+ userWidget_default = UserWidget;
547
+ }
548
+ });
549
+
550
+ // src/utils/storage.ts
551
+ var mixedStorage;
552
+ var init_storage = __esm({
553
+ "src/utils/storage.ts"() {
554
+ mixedStorage = {
555
+ getItem: (name) => {
556
+ return sessionStorage.getItem(name) || localStorage.getItem(name);
557
+ },
558
+ setItem: (name, value) => {
559
+ sessionStorage.setItem(name, value);
560
+ localStorage.setItem(name, value);
561
+ },
562
+ removeItem: async (name) => {
563
+ sessionStorage.removeItem(name);
564
+ localStorage.removeItem(name);
565
+ }
566
+ };
567
+ }
568
+ });
569
+ var useLayoutStore, useGameStore;
570
+ var init_stores2 = __esm({
571
+ "src/components/layout/stores.ts"() {
572
+ init_request();
573
+ init_storage();
574
+ useLayoutStore = create()(
575
+ persist(
576
+ (set) => ({
577
+ collapsed: false,
578
+ setCollapsed: (collapsed) => set({ collapsed })
579
+ }),
580
+ {
581
+ name: "layout",
582
+ storage: createJSONStorage(() => localStorage),
583
+ partialize: (state) => ({ collapsed: state.collapsed })
584
+ }
585
+ )
586
+ );
587
+ useGameStore = create()(
588
+ persist(
589
+ (set, get2) => ({
590
+ initialized: false,
591
+ isLoading: false,
592
+ switching: false,
593
+ game: null,
594
+ games: [],
595
+ async setGame(id2) {
596
+ const { initialized, refetchGames } = get2();
597
+ if (!initialized) {
598
+ await refetchGames();
599
+ }
600
+ const matchedGame = (get2().games ?? []).find((item) => item.game_id === id2);
601
+ set({ game: matchedGame ?? null });
602
+ },
603
+ async refetchGames() {
604
+ if (!get2().isLoading) {
605
+ try {
606
+ set({ isLoading: true });
607
+ const response = await request("/api/game/list");
608
+ set({ games: response.data?.list ?? [] });
609
+ } finally {
610
+ set({
611
+ initialized: true,
612
+ isLoading: false
613
+ });
614
+ }
615
+ }
616
+ },
617
+ setSwitching: (switching) => set({ switching })
618
+ }),
619
+ {
620
+ name: "game",
621
+ storage: createJSONStorage(() => mixedStorage),
622
+ partialize: (state) => ({ game: state.game })
623
+ }
624
+ )
625
+ );
626
+ }
627
+ });
628
+ var Spin2, ContentWrapper, ContentWrapper_default;
629
+ var init_ContentWrapper = __esm({
630
+ "src/components/layout/ContentWrapper.tsx"() {
631
+ init_contextProvider();
632
+ init_locale();
633
+ init_stores2();
634
+ ({ Spin: Spin2 } = Antd2);
635
+ ContentWrapper = (props) => {
636
+ const { hideGameSelect, children } = props;
637
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
638
+ const { game, isLoading } = useGameStore();
639
+ const { t } = useTranslation();
640
+ if (isLoading) {
641
+ return /* @__PURE__ */ jsx(
642
+ Spin2,
643
+ {
644
+ style: {
645
+ display: "flex",
646
+ justifyContent: "center",
647
+ alignItems: "center",
648
+ height: 200
649
+ }
650
+ }
651
+ );
652
+ }
653
+ if (usePermissionApiV2 && !hideGameSelect && !game) {
654
+ return /* @__PURE__ */ jsx(Empty, { image: Empty.PRESENTED_IMAGE_SIMPLE, description: t("RequireGame.description") });
655
+ }
656
+ return children;
657
+ };
658
+ ContentWrapper_default = ContentWrapper;
659
+ }
660
+ });
661
+ var Text, GameSelect, GameSelect_default;
662
+ var init_GameSelect = __esm({
663
+ "src/components/layout/GameSelect.tsx"() {
664
+ init_locale();
665
+ init_stores2();
666
+ ({ Text } = Typography);
667
+ GameSelect = (props) => {
668
+ const { filter, onGameChange } = props;
669
+ const { t } = useTranslation();
670
+ const { game, games, isLoading, refetchGames, setGame } = useGameStore();
671
+ useEffect(() => {
672
+ refetchGames();
673
+ }, []);
674
+ const options = games?.filter((item) => filter?.(item) ?? true)?.map((item) => ({
675
+ label: item.name,
676
+ value: item.game_id
677
+ }));
678
+ const onChange = async (id2) => {
679
+ setGame(id2);
680
+ onGameChange?.(games.find((item) => item.game_id === id2));
681
+ };
682
+ return /* @__PURE__ */ jsxs(Space, { children: [
683
+ /* @__PURE__ */ jsx(Text, { children: t("GameSelect.label") }),
684
+ /* @__PURE__ */ jsx(
685
+ Select,
686
+ {
687
+ showSearch: true,
688
+ optionFilterProp: "label",
689
+ value: game?.game_id,
690
+ placeholder: t("GameSelect.placeholder"),
691
+ loading: isLoading,
692
+ style: { width: "200px" },
693
+ options,
694
+ onChange
695
+ }
696
+ )
697
+ ] });
698
+ };
699
+ GameSelect_default = GameSelect;
700
+ }
701
+ });
702
+
703
+ // src/components/layout/style.css
704
+ var init_style = __esm({
705
+ "src/components/layout/style.css"() {
706
+ }
707
+ });
708
+ var Spin3, theme3, Header, Sider, Content, Layout2, Layout_default;
709
+ var init_Layout = __esm({
710
+ "src/components/layout/Layout.tsx"() {
711
+ init_contextProvider();
712
+ init_logo();
713
+ init_navMenu();
714
+ init_userWidget();
715
+ init_ContentWrapper();
716
+ init_GameSelect();
717
+ init_stores2();
718
+ init_style();
719
+ ({ Spin: Spin3, theme: theme3 } = Antd2);
720
+ ({ Header, Sider, Content } = Antd2.Layout);
721
+ Layout2 = (props) => {
722
+ const { title, items, headerExtra, hideGameSelect, children, navWidth, logoutRedirectUrl, filter, onGameChange } = props;
723
+ const {
724
+ token: { colorBgContainer, colorBorder }
725
+ } = theme3.useToken();
726
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
727
+ const { collapsed, setCollapsed } = useLayoutStore();
728
+ const onCollapse = async () => {
729
+ setCollapsed(!collapsed);
730
+ };
731
+ return /* @__PURE__ */ jsxs(Antd2.Layout, { children: [
732
+ /* @__PURE__ */ jsxs(
733
+ Sider,
734
+ {
735
+ collapsible: true,
736
+ theme: "light",
737
+ trigger: null,
738
+ collapsed,
739
+ width: navWidth,
740
+ style: {
741
+ height: "100vh",
742
+ overflow: "auto",
743
+ borderRightWidth: 1,
744
+ borderRightStyle: "solid",
745
+ borderRightColor: colorBorder
746
+ },
747
+ children: [
748
+ /* @__PURE__ */ jsxs("div", { className: "flex gap-2 px-6 py-4 overflow-hidden", children: [
749
+ /* @__PURE__ */ jsx(Logo_default, { width: 32, height: 32 }),
750
+ !collapsed && /* @__PURE__ */ jsx("div", { className: "h-8 flex items-center expand", children: title })
751
+ ] }),
752
+ /* @__PURE__ */ jsx(NavMenu_default, { items })
753
+ ]
754
+ }
755
+ ),
756
+ /* @__PURE__ */ jsxs(Antd2.Layout, { children: [
757
+ /* @__PURE__ */ jsx(
758
+ Header,
759
+ {
760
+ style: {
761
+ padding: "0 24px",
762
+ background: colorBgContainer
763
+ },
764
+ children: /* @__PURE__ */ jsxs("div", { className: "flex justify-between items-center h-full", children: [
765
+ /* @__PURE__ */ jsxs(Space, { size: "small", split: /* @__PURE__ */ jsx(Divider, { type: "vertical" }), className: "mr-6", children: [
766
+ /* @__PURE__ */ jsx(
767
+ Button,
768
+ {
769
+ type: "text",
770
+ icon: collapsed ? /* @__PURE__ */ jsx(MenuUnfoldOutlined, {}) : /* @__PURE__ */ jsx(MenuFoldOutlined, {}),
771
+ style: { fontSize: "16px" },
772
+ onClick: onCollapse
773
+ }
774
+ ),
775
+ usePermissionApiV2 && !hideGameSelect && /* @__PURE__ */ jsx(GameSelect_default, { filter, onGameChange }),
776
+ headerExtra?.left?.map((extra) => /* @__PURE__ */ jsx("span", { children: extra.children }, extra.key))
777
+ ] }),
778
+ /* @__PURE__ */ jsxs(Space, { size: "small", split: /* @__PURE__ */ jsx(Divider, { type: "vertical" }), children: [
779
+ headerExtra?.right?.map((extra) => /* @__PURE__ */ jsx("span", { children: extra.children }, extra.key)),
780
+ /* @__PURE__ */ jsx(userWidget_default, { logoutRedirectUrl })
781
+ ] })
782
+ ] })
783
+ }
784
+ ),
785
+ /* @__PURE__ */ jsx(
786
+ Content,
787
+ {
788
+ style: {
789
+ overflow: "auto",
790
+ padding: "24px 16px",
791
+ maxHeight: "calc(100vh - 64px)"
792
+ },
793
+ children: /* @__PURE__ */ jsx(
794
+ Suspense,
795
+ {
796
+ fallback: /* @__PURE__ */ jsx(
797
+ Spin3,
798
+ {
799
+ style: {
800
+ display: "flex",
801
+ justifyContent: "center",
802
+ alignItems: "center",
803
+ height: "200px"
804
+ }
805
+ }
806
+ ),
807
+ children: /* @__PURE__ */ jsx(ContentWrapper_default, { hideGameSelect, children })
808
+ }
809
+ )
810
+ }
811
+ )
812
+ ] })
813
+ ] });
814
+ };
815
+ Layout_default = Layout2;
816
+ }
817
+ });
818
+
819
+ // src/components/layout/index.tsx
820
+ var init_layout = __esm({
821
+ "src/components/layout/index.tsx"() {
822
+ init_Layout();
823
+ init_stores2();
824
+ }
825
+ });
826
+ async function request(url, opts = {}) {
827
+ const _opts = Object.assign(opts, { responseType: opts.responseType ?? "json" });
828
+ const { body, params, responseType, isGlobal, ...rest } = _opts;
829
+ if (!url) {
830
+ throw new RequestError({
831
+ status: 400,
832
+ message: "URL is required"
833
+ });
834
+ }
835
+ const parsed = qs.parseUrl(url);
836
+ const queryParams = Object.assign({}, parsed.query, params);
837
+ const options = {
838
+ skipNull: true,
839
+ skipEmptyString: true,
840
+ strict: true,
841
+ encode: true
842
+ };
843
+ const queryString = qs.stringify(queryParams, options);
844
+ url = queryString ? `${parsed.url}?${queryString}` : url;
845
+ const headers = new Headers(_opts.headers);
846
+ const token = useTokenStore?.getState()?.token;
847
+ if (token) {
848
+ headers.set("Authorization", `Bearer ${token}`);
849
+ }
850
+ if (contextStore.getState().usePermissionApiV2) {
851
+ if (isGlobal) {
852
+ headers.set("App-ID", "global");
853
+ } else {
854
+ const game = useGameStore.getState().game;
855
+ if (game) {
856
+ headers.set("App-ID", String(game.game_id));
857
+ }
858
+ }
859
+ }
860
+ if (responseType === "blob") {
861
+ headers.append("Accept", "application/octet-stream");
862
+ } else if (responseType === "json") {
863
+ headers.append("Accept", "application/json");
864
+ }
865
+ const isJsonBody = !!(body && typeof body === "object" && !(body instanceof FormData));
866
+ if (isJsonBody) {
867
+ headers.set("Content-Type", "application/json");
868
+ }
869
+ const requestOpts = Object.assign(rest, {
870
+ headers,
871
+ body: isJsonBody ? JSON.stringify(body) : body
872
+ });
873
+ const response = await fetch(url, requestOpts);
874
+ if (!response.ok) {
875
+ throw new RequestError({ status: response.status });
876
+ }
877
+ const responseInterceptor = contextStore.getState().interceptor?.response;
878
+ if (typeof responseInterceptor === "function") {
879
+ return await responseInterceptor(response, _opts);
880
+ }
881
+ let data;
882
+ if (responseType === "blob") {
883
+ data = await response.blob();
884
+ } else if (responseType === "json") {
885
+ const json = await response.json();
886
+ if (json.code === 0 || json.code === 200 || json.status === 0) {
887
+ data = json.data;
888
+ } else {
889
+ throw new RequestError({
890
+ code: json.code,
891
+ status: response.status,
892
+ message: json.msg
893
+ });
894
+ }
895
+ } else {
896
+ data = await response.text();
897
+ }
898
+ const result = {
899
+ ...pick(response, ["headers", "status", "statusText", "url"]),
900
+ data
901
+ };
902
+ return result;
903
+ }
904
+ var RequestError;
905
+ var init_request = __esm({
906
+ "src/utils/request.ts"() {
907
+ init_contextProvider();
908
+ init_layout();
909
+ init_token();
910
+ RequestError = class extends Error {
911
+ constructor(opts) {
912
+ super(opts?.message);
913
+ __publicField(this, "status");
914
+ __publicField(this, "code");
915
+ this.status = opts.status;
916
+ this.code = opts.code;
917
+ }
918
+ };
919
+ }
920
+ });
921
+ function usePermissions(codes, isGlobal) {
922
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
923
+ const { data, isValidating, isLoading } = useSWR3(
924
+ codes.length > 0 ? [usePermissionApiV2 ? "/api/usystem/user/checkV2" : "/api/usystem/user/check", codes] : null,
925
+ ([url]) => request(url, {
926
+ method: "POST",
927
+ body: {
928
+ permissions: codes
929
+ },
930
+ isGlobal
931
+ }).then((response) => {
932
+ if (response.data?.has_all) {
933
+ return codes.reduce(
934
+ (acc, curr) => {
935
+ acc[curr] = true;
936
+ return acc;
937
+ },
938
+ {}
939
+ );
940
+ }
941
+ return codes.reduce(
942
+ (acc, curr) => {
943
+ acc[curr] = response.data?.[curr] ?? false;
944
+ return acc;
945
+ },
946
+ {}
947
+ );
948
+ }),
949
+ {
950
+ revalidateOnFocus: false
951
+ }
952
+ );
953
+ return { data, isValidating, isLoading };
954
+ }
955
+ function usePermission(code, isGlobal) {
956
+ const { data, isValidating, isLoading } = usePermissions(code ? [code] : [], isGlobal);
957
+ if (code === void 0) {
958
+ return {
959
+ accessible: true,
960
+ isValidating: false,
961
+ isLoading: false
962
+ };
963
+ }
964
+ return {
965
+ accessible: data?.[code] ?? false,
966
+ isValidating,
967
+ isLoading
968
+ };
969
+ }
970
+ var init_permission = __esm({
971
+ "src/hooks/permission.ts"() {
972
+ init_contextProvider();
973
+ init_request();
974
+ }
975
+ });
976
+ var PermissionButton, PermissionButton_default;
977
+ var init_PermissionButton = __esm({
978
+ "src/components/permissionButton/PermissionButton.tsx"() {
979
+ init_locale();
980
+ init_permission();
981
+ PermissionButton = (props) => {
982
+ const { children, code, showLoading, isGlobal, disabled, ...restProps } = props;
983
+ const { data, isLoading } = usePermissions(Array.isArray(code) ? code : [code], isGlobal);
984
+ const { t } = useTranslation();
985
+ if (isLoading) {
986
+ return /* @__PURE__ */ jsx(Button, { loading: showLoading, disabled: !showLoading, ...restProps, children });
987
+ }
988
+ if (!Object.values(data ?? {})?.some(Boolean)) {
989
+ return /* @__PURE__ */ jsx(Tooltip, { defaultOpen: false, title: t("global.noEntitlement"), children: /* @__PURE__ */ jsx(Button, { disabled: true, ...restProps, children }) });
990
+ }
991
+ return /* @__PURE__ */ jsx(Button, { disabled, ...restProps, children });
992
+ };
993
+ PermissionButton_default = PermissionButton;
994
+ }
995
+ });
996
+
997
+ // src/components/permissionButton/index.tsx
998
+ var init_permissionButton = __esm({
999
+ "src/components/permissionButton/index.tsx"() {
1000
+ init_PermissionButton();
1001
+ }
1002
+ });
1003
+ var useQueryListStore;
1004
+ var init_stores3 = __esm({
1005
+ "src/components/queryList/stores.ts"() {
1006
+ useQueryListStore = create((set, get2) => ({
1007
+ keyMap: /* @__PURE__ */ new Map(),
1008
+ payloadMap: /* @__PURE__ */ new Map(),
1009
+ getPayload(route3) {
1010
+ return get2().payloadMap.get(route3) ?? { page: 1 };
1011
+ },
1012
+ setPayload(route3, payload) {
1013
+ set((state) => ({
1014
+ payloadMap: new Map(state.payloadMap).set(route3, payload)
1015
+ }));
1016
+ },
1017
+ refetch(route3, payload) {
1018
+ const prevPayload = get2().getPayload(route3);
1019
+ const nextPayload = { ...prevPayload, ...payload };
1020
+ if (isEqual(prevPayload, nextPayload)) {
1021
+ get2().mutate(route3, void 0);
1022
+ } else {
1023
+ get2().setPayload(route3, nextPayload);
1024
+ }
1025
+ },
1026
+ mutate(route3, data, opts) {
1027
+ const key = get2().keyMap.get(route3);
1028
+ return mutate(key, data, opts);
1029
+ }
1030
+ }));
1031
+ }
1032
+ });
1033
+ var QueryListAction, InternalQueryList, QueryList, QueryList_default;
1034
+ var init_QueryList = __esm({
1035
+ "src/components/queryList/QueryList.tsx"() {
1036
+ init_permission();
1037
+ init_request();
1038
+ init_contextProvider();
1039
+ init_filterFormWrapper();
1040
+ init_layout();
1041
+ init_locale();
1042
+ init_stores3();
1043
+ QueryListAction = /* @__PURE__ */ ((QueryListAction2) => {
1044
+ QueryListAction2[QueryListAction2["Confirm"] = 0] = "Confirm";
1045
+ QueryListAction2[QueryListAction2["Reset"] = 1] = "Reset";
1046
+ QueryListAction2[QueryListAction2["Jump"] = 2] = "Jump";
1047
+ QueryListAction2[QueryListAction2["Init"] = 3] = "Init";
1048
+ return QueryListAction2;
1049
+ })(QueryListAction || {});
1050
+ InternalQueryList = (props, ref) => {
1051
+ const internalProps = {
1052
+ method: "GET",
1053
+ defaultSize: 10,
1054
+ refreshInterval: 0,
1055
+ getTotal: (response) => response?.total,
1056
+ getDataSource: (response) => response?.list,
1057
+ ...props
1058
+ };
1059
+ const {
1060
+ route: route3,
1061
+ code,
1062
+ headers,
1063
+ isGlobal,
1064
+ onePage,
1065
+ method,
1066
+ buttonsAlign,
1067
+ showReset,
1068
+ defaultSize,
1069
+ refreshInterval,
1070
+ tableExtra,
1071
+ form,
1072
+ extra,
1073
+ renderForm,
1074
+ afterSuccess,
1075
+ body,
1076
+ params,
1077
+ getTotal,
1078
+ getDataSource,
1079
+ ...tableProps
1080
+ } = internalProps;
1081
+ const { notification } = App.useApp();
1082
+ const { t } = useTranslation();
1083
+ const [_form] = Form.useForm(form);
1084
+ const { accessible, isLoading } = usePermission(code, isGlobal);
1085
+ const action = useRef(3 /* Init */);
1086
+ const originalData = useRef();
1087
+ const { game } = useGameStore();
1088
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
1089
+ const [isValid, setIsValid] = useState(false);
1090
+ const { keyMap, getPayload, refetch } = useQueryListStore();
1091
+ const { page, size = defaultSize, formValue } = getPayload(route3);
1092
+ const payload = { page, size, formValue };
1093
+ const _body = useMemo(() => {
1094
+ return typeof body === "function" ? body(payload) : method === "POST" ? {
1095
+ ...formValue,
1096
+ ...!onePage ? { page, size } : void 0,
1097
+ ...body
1098
+ } : void 0;
1099
+ }, [onePage, method, page, size, formValue, body]);
1100
+ const _params = useMemo(
1101
+ () => typeof params === "function" ? params(payload) : method === "GET" ? {
1102
+ ...formValue,
1103
+ ...!onePage ? { page, size } : void 0,
1104
+ ...params
1105
+ } : void 0,
1106
+ [onePage, method, page, size, formValue, params]
1107
+ );
1108
+ const _headers = useMemo(() => {
1109
+ const newHeaders = new Headers(headers);
1110
+ if (usePermissionApiV2) {
1111
+ if (isGlobal) {
1112
+ newHeaders.set("App-ID", "global");
1113
+ } else if (game) {
1114
+ newHeaders.set("App-ID", String(game.id));
1115
+ }
1116
+ }
1117
+ return newHeaders;
1118
+ }, [usePermissionApiV2, isGlobal, game, headers]);
1119
+ const key = useMemo(() => {
1120
+ if (!accessible || !isValid) {
1121
+ return null;
1122
+ }
1123
+ const httpOption = {
1124
+ route: route3,
1125
+ method,
1126
+ body: _body,
1127
+ params: _params,
1128
+ headers: _headers
1129
+ };
1130
+ const serializedKey = unstable_serialize(httpOption);
1131
+ keyMap.set(route3, serializedKey);
1132
+ return serializedKey;
1133
+ }, [method, route3, _body, _params, _headers, isValid, accessible]);
1134
+ const shouldPoll = useRef(false);
1135
+ const { data, isValidating } = useSWR3(
1136
+ key,
1137
+ async () => {
1138
+ const response = await request(route3, {
1139
+ method,
1140
+ body: _body,
1141
+ params: _params,
1142
+ headers: _headers
1143
+ });
1144
+ return response.data;
1145
+ },
1146
+ {
1147
+ shouldRetryOnError: false,
1148
+ revalidateOnFocus: false,
1149
+ refreshInterval: shouldPoll.current ? refreshInterval : 0,
1150
+ onSuccess(response) {
1151
+ shouldPoll.current = true;
1152
+ afterSuccess?.(action.current, response, _form);
1153
+ },
1154
+ onError(error) {
1155
+ shouldPoll.current = false;
1156
+ notification.error({
1157
+ message: "\u8BF7\u6C42\u51FA\u9519",
1158
+ description: error.message
1159
+ });
1160
+ }
1161
+ }
1162
+ );
1163
+ const dataSource = useMemo(() => getDataSource(data, _form), [data, form, getDataSource]);
1164
+ const total = useMemo(() => getTotal(data), [data, getTotal]);
1165
+ const pagination = useMemo(
1166
+ () => !onePage && {
1167
+ showSizeChanger: true,
1168
+ showQuickJumper: true,
1169
+ current: page,
1170
+ pageSize: size,
1171
+ total,
1172
+ onChange: async (currentPage, currentSize) => {
1173
+ action.current = 2 /* Jump */;
1174
+ refetch(route3, {
1175
+ page: currentPage,
1176
+ size: currentSize
1177
+ });
1178
+ }
1179
+ },
1180
+ [page, size, onePage, total]
1181
+ );
1182
+ const onConfirm = async () => {
1183
+ action.current = 0 /* Confirm */;
1184
+ try {
1185
+ await _form.validateFields();
1186
+ setIsValid(true);
1187
+ refetch(route3, {
1188
+ page: 1,
1189
+ formValue: _form.getFieldsValue()
1190
+ });
1191
+ } catch (error) {
1192
+ setIsValid(false);
1193
+ }
1194
+ };
1195
+ const onReset = async () => {
1196
+ action.current = 1 /* Reset */;
1197
+ _form.resetFields();
1198
+ try {
1199
+ await _form.validateFields({ validateOnly: true });
1200
+ setIsValid(true);
1201
+ refetch(route3, {
1202
+ page: 1,
1203
+ formValue: _form.getFieldsValue()
1204
+ });
1205
+ } catch (error) {
1206
+ setIsValid(false);
1207
+ }
1208
+ };
1209
+ useEffect(() => {
1210
+ const init = async () => {
1211
+ if (!accessible) {
1212
+ return;
1213
+ }
1214
+ try {
1215
+ _form.resetFields();
1216
+ const value = await _form.validateFields({ validateOnly: true });
1217
+ refetch(route3, {
1218
+ page: 1,
1219
+ formValue: value
1220
+ });
1221
+ setIsValid(true);
1222
+ } catch (err) {
1223
+ setIsValid(false);
1224
+ }
1225
+ };
1226
+ init();
1227
+ }, [accessible, form, game]);
1228
+ useImperativeHandle(ref, () => ({
1229
+ response: data,
1230
+ dataSource,
1231
+ form: _form
1232
+ }));
1233
+ if (isLoading) {
1234
+ return /* @__PURE__ */ jsx(
1235
+ Spin,
1236
+ {
1237
+ style: {
1238
+ display: "flex",
1239
+ justifyContent: "center",
1240
+ alignItems: "center",
1241
+ height: 300
1242
+ }
1243
+ }
1244
+ );
1245
+ }
1246
+ if (!accessible) {
1247
+ return /* @__PURE__ */ jsx(Result, { status: 403, subTitle: t("global.noEntitlement") });
1248
+ }
1249
+ const formRenderer = typeof renderForm === "function" && /* @__PURE__ */ jsx(
1250
+ filterFormWrapper_default,
1251
+ {
1252
+ showReset,
1253
+ buttonsAlign,
1254
+ isConfirming: isValidating,
1255
+ onReset,
1256
+ onConfirm,
1257
+ children: cloneElement(renderForm(_form), {
1258
+ onKeyUp: (e) => {
1259
+ if (e.key === "Enter") {
1260
+ onConfirm();
1261
+ }
1262
+ }
1263
+ })
1264
+ }
1265
+ );
1266
+ const extraRenderer = extra && /* @__PURE__ */ jsx("div", { className: "mt-2 mb-4", children: extra({ form: _form, data: originalData.current }) });
1267
+ return /* @__PURE__ */ jsxs("div", { children: [
1268
+ formRenderer,
1269
+ extraRenderer,
1270
+ typeof tableExtra === "function" ? tableExtra(_form) : tableExtra,
1271
+ /* @__PURE__ */ jsx(Table, { ...tableProps, dataSource, loading: isValidating, pagination })
1272
+ ] });
1273
+ };
1274
+ QueryList = forwardRef(InternalQueryList);
1275
+ QueryList_default = QueryList;
1276
+ }
1277
+ });
1278
+
1279
+ // src/components/queryList/index.ts
1280
+ var init_queryList = __esm({
1281
+ "src/components/queryList/index.ts"() {
1282
+ init_QueryList();
1283
+ init_stores3();
1284
+ }
1285
+ });
1286
+ function useModal(props) {
1287
+ const { content, onConfirm, ...modalProps } = props;
1288
+ const uuid = useMemo(() => ++id, []);
1289
+ const modalStore = useModalStore();
1290
+ const open = modalStore.getOpen(uuid);
1291
+ const [confirmLoading, setConfirmLoading] = useState(false);
1292
+ const isRenderFunction = typeof content === "function";
1293
+ const show = () => {
1294
+ modalStore.show(uuid);
1295
+ };
1296
+ const hide = () => {
1297
+ modalStore.hide(uuid);
1298
+ };
1299
+ const onCancel = () => {
1300
+ hide();
1301
+ };
1302
+ const onOk = async () => {
1303
+ try {
1304
+ setConfirmLoading(true);
1305
+ await onConfirm?.();
1306
+ } finally {
1307
+ setConfirmLoading(false);
1308
+ }
1309
+ };
1310
+ const internalModal = /* @__PURE__ */ jsx(Modal, { ...modalProps, open, confirmLoading, onOk, onCancel, children: isRenderFunction ? content({ hide }) : content });
1311
+ return {
1312
+ uuid,
1313
+ show,
1314
+ hide,
1315
+ modal: internalModal
1316
+ };
1317
+ }
1318
+ var useModalStore, id;
1319
+ var init_modal = __esm({
1320
+ "src/hooks/modal.tsx"() {
1321
+ useModalStore = create((set, get2) => ({
1322
+ open: /* @__PURE__ */ new Map(),
1323
+ getOpen: (uuid) => get2().open.get(uuid) ?? false,
1324
+ show(uuid) {
1325
+ set({ open: new Map(get2().open).set(uuid, true) });
1326
+ },
1327
+ hide(uuid) {
1328
+ set({ open: new Map(get2().open).set(uuid, false) });
1329
+ },
1330
+ hideAll() {
1331
+ set({ open: /* @__PURE__ */ new Map() });
1332
+ }
1333
+ }));
1334
+ id = 0;
1335
+ }
1336
+ });
1337
+ function useFormModal(props) {
1338
+ const { content, form, formProps, onConfirm, ...modalProps } = props;
1339
+ const [internalExtraValues, setInternalExtraValues] = useState({});
1340
+ let [internalForm] = Form.useForm();
1341
+ internalForm = form || internalForm;
1342
+ const isRenderFunction = typeof content === "function";
1343
+ const hanldeConfirm = async () => {
1344
+ const values = await internalForm.validateFields();
1345
+ await onConfirm?.(values, internalExtraValues);
1346
+ hide();
1347
+ };
1348
+ const afterClose = () => {
1349
+ internalForm.resetFields();
1350
+ };
1351
+ const { uuid, show, hide, modal } = useModal({
1352
+ ...modalProps,
1353
+ content: (operation) => /* @__PURE__ */ jsx(Form, { ...formProps, form: internalForm, children: isRenderFunction ? content(internalExtraValues, operation) : content }),
1354
+ onConfirm: hanldeConfirm,
1355
+ afterClose
1356
+ });
1357
+ const onShow = ({
1358
+ initialValues,
1359
+ extraValues
1360
+ } = {}) => {
1361
+ if (extraValues) {
1362
+ setInternalExtraValues(extraValues);
1363
+ }
1364
+ if (initialValues) {
1365
+ internalForm.setFieldsValue(initialValues);
1366
+ }
1367
+ show();
1368
+ };
1369
+ return {
1370
+ uuid,
1371
+ show: onShow,
1372
+ hide,
1373
+ modal
1374
+ };
1375
+ }
1376
+ var init_formModal = __esm({
1377
+ "src/hooks/formModal.tsx"() {
1378
+ init_modal();
1379
+ }
1380
+ });
1381
+ function useAllPermissions() {
1382
+ return useSWR3(
1383
+ "/api/usystem/user/allPermssions",
1384
+ (url) => request(url, { isGlobal: true }).then((response) => response.data)
1385
+ );
1386
+ }
1387
+ function useAllPermissionsV2() {
1388
+ return useSWR3(
1389
+ "/api/usystem/user/allPermissionsV2",
1390
+ (url) => request(url, { isGlobal: true }).then((response) => response.data)
1391
+ );
1392
+ }
1393
+ function useAllRoles() {
1394
+ const { accessible } = usePermission("200005", true);
1395
+ return useSWR3(
1396
+ accessible ? "/api/usystem/role/all" : null,
1397
+ (url) => request(url, { isGlobal: true }).then((response) => response.data)
1398
+ );
1399
+ }
1400
+ function useRole(name) {
1401
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
1402
+ return useSWR3(
1403
+ `/api/usystem/role/${usePermissionApiV2 ? "infoV2" : "info"}?name=${name}`,
1404
+ (url) => request(url, { isGlobal: true }).then((response) => response.data)
1405
+ );
1406
+ }
1407
+ function useCreateRole() {
1408
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
1409
+ return useSWRMutation(
1410
+ usePermissionApiV2 ? "/api/usystem/role/createV2" : "/api/usystem/role/create",
1411
+ (url, {
1412
+ arg
1413
+ }) => request(url, {
1414
+ method: "post",
1415
+ body: arg,
1416
+ isGlobal: true
1417
+ })
1418
+ );
1419
+ }
1420
+ function useUpdateRole() {
1421
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
1422
+ return useSWRMutation(
1423
+ usePermissionApiV2 ? "/api/usystem/role/updateV2" : "/api/usystem/role/update",
1424
+ (url, {
1425
+ arg
1426
+ }) => request(url, {
1427
+ method: "post",
1428
+ body: arg,
1429
+ isGlobal: true
1430
+ })
1431
+ );
1432
+ }
1433
+ function useRemoveRole() {
1434
+ return useSWRMutation(
1435
+ "/api/usystem/role/delete",
1436
+ (url, {
1437
+ arg
1438
+ }) => request(url, {
1439
+ method: "post",
1440
+ body: arg,
1441
+ isGlobal: true
1442
+ })
1443
+ );
1444
+ }
1445
+ function useCreateUser() {
1446
+ return useSWRMutation(
1447
+ "/api/usystem/user/create",
1448
+ (url, {
1449
+ arg
1450
+ }) => request(url, {
1451
+ method: "post",
1452
+ body: arg,
1453
+ isGlobal: true
1454
+ })
1455
+ );
1456
+ }
1457
+ function useUpdateUser() {
1458
+ return useSWRMutation(
1459
+ "/api/usystem/user/update",
1460
+ (url, {
1461
+ arg
1462
+ }) => request(url, {
1463
+ method: "post",
1464
+ body: arg,
1465
+ isGlobal: true
1466
+ })
1467
+ );
1468
+ }
1469
+ function useRemoveUser() {
1470
+ return useSWRMutation(
1471
+ "/api/usystem/user/delete",
1472
+ (url, {
1473
+ arg
1474
+ }) => request(url, {
1475
+ method: "post",
1476
+ body: arg,
1477
+ isGlobal: true
1478
+ })
1479
+ );
1480
+ }
1481
+ var init_hooks2 = __esm({
1482
+ "src/features/permission/hooks/index.ts"() {
1483
+ init_contextProvider();
1484
+ init_permission();
1485
+ init_request();
1486
+ }
1487
+ });
1488
+ var PermissionCollapse, permissionCollapse_default;
1489
+ var init_permissionCollapse = __esm({
1490
+ "src/features/permission/components/permissionCollapse/index.tsx"() {
1491
+ init_locale();
1492
+ PermissionCollapse = (props) => {
1493
+ const { permissions, readonly, expand, value, onChange } = props;
1494
+ const [activeKey, setActiveKey] = useState([]);
1495
+ const [checkedMap, setCheckedMap] = useState({});
1496
+ const [internalValue, setInternalValue] = useState(value ?? []);
1497
+ const { t } = useTranslation();
1498
+ const onCollapseChange = useCallback((key) => {
1499
+ setActiveKey(key);
1500
+ }, []);
1501
+ const getCheckedValue = (checkedValue, codes) => {
1502
+ let tempValue = [];
1503
+ if (checkedValue) {
1504
+ tempValue = [...new Set(internalValue.concat(codes))];
1505
+ } else {
1506
+ tempValue = internalValue.slice();
1507
+ codes.forEach((code) => {
1508
+ const index = tempValue.findIndex((item) => item === code);
1509
+ if (index > -1) {
1510
+ tempValue.splice(index, 1);
1511
+ }
1512
+ });
1513
+ }
1514
+ return tempValue;
1515
+ };
1516
+ const onCheckChange = (e, codes) => {
1517
+ const checkedValue = getCheckedValue(e.target.checked, codes);
1518
+ setInternalValue(checkedValue);
1519
+ onChange?.(checkedValue);
1520
+ };
1521
+ useEffect(() => {
1522
+ setInternalValue(value ?? []);
1523
+ }, [value]);
1524
+ useEffect(() => {
1525
+ if (expand) {
1526
+ setActiveKey((permissions ?? []).map(({ category }) => category));
1527
+ }
1528
+ }, [expand, permissions]);
1529
+ useEffect(() => {
1530
+ const checkedValue = (permissions ?? []).reduce(
1531
+ (acc, curr) => {
1532
+ acc[curr.category] = curr.permissions.every((item) => internalValue?.includes(item.value));
1533
+ return acc;
1534
+ },
1535
+ {}
1536
+ );
1537
+ setCheckedMap(checkedValue);
1538
+ }, [internalValue, permissions]);
1539
+ return /* @__PURE__ */ jsx(
1540
+ Collapse,
1541
+ {
1542
+ style: { width: "100%" },
1543
+ collapsible: "header",
1544
+ activeKey,
1545
+ items: (permissions ?? []).map((item) => ({
1546
+ key: item.category,
1547
+ label: item.category,
1548
+ extra: !readonly && /* @__PURE__ */ jsx(
1549
+ Checkbox,
1550
+ {
1551
+ checked: checkedMap[item.category],
1552
+ onChange: (e) => {
1553
+ onCheckChange(
1554
+ e,
1555
+ item.permissions.map((permission) => permission.value)
1556
+ );
1557
+ },
1558
+ children: t("global.selectAll")
1559
+ }
1560
+ ),
1561
+ children: /* @__PURE__ */ jsx(Checkbox.Group, { style: { width: "100%" }, value: internalValue, disabled: readonly, children: /* @__PURE__ */ jsx(Row, { gutter: [10, 10], style: { width: "100%" }, children: item.permissions.map((permission) => /* @__PURE__ */ jsx(Col, { span: 6, children: /* @__PURE__ */ jsx(
1562
+ Checkbox,
1563
+ {
1564
+ value: permission.value,
1565
+ onChange: (e) => {
1566
+ onCheckChange(e, [permission.value]);
1567
+ },
1568
+ children: permission.label
1569
+ }
1570
+ ) }, permission.value)) }) })
1571
+ })),
1572
+ onChange: onCollapseChange
1573
+ }
1574
+ );
1575
+ };
1576
+ permissionCollapse_default = PermissionCollapse;
1577
+ }
1578
+ });
1579
+ var Text2, PermissionListV1, permissionListV1_default;
1580
+ var init_permissionListV1 = __esm({
1581
+ "src/features/permission/components/permissionListV1/index.tsx"() {
1582
+ init_locale();
1583
+ init_hooks2();
1584
+ init_permissionCollapse();
1585
+ ({ Text: Text2 } = Typography);
1586
+ PermissionListV1 = (props) => {
1587
+ const { expand = true, value, readonly, onChange } = props;
1588
+ const { data: permissions, isLoading, error } = useAllPermissions();
1589
+ const { t } = useTranslation();
1590
+ if (error) {
1591
+ return /* @__PURE__ */ jsx("div", { className: "flex justify-center", children: /* @__PURE__ */ jsx(Text2, { type: "danger", children: t("PermissionList.failedDescription") }) });
1592
+ }
1593
+ return /* @__PURE__ */ jsx(Skeleton, { active: true, loading: isLoading, children: /* @__PURE__ */ jsx(
1594
+ permissionCollapse_default,
1595
+ {
1596
+ value,
1597
+ permissions,
1598
+ readonly,
1599
+ expand,
1600
+ onChange
1601
+ }
1602
+ ) });
1603
+ };
1604
+ permissionListV1_default = PermissionListV1;
1605
+ }
1606
+ });
1607
+ var Text3, Option2, PermissionListV2, permissionListV2_default;
1608
+ var init_permissionListV2 = __esm({
1609
+ "src/features/permission/components/permissionListV2/index.tsx"() {
1610
+ init_locale();
1611
+ init_hooks2();
1612
+ init_permissionCollapse();
1613
+ ({ Text: Text3 } = Typography);
1614
+ ({ Option: Option2 } = Select);
1615
+ PermissionListV2 = (props) => {
1616
+ const { expand = true, value, readonly, onChange } = props;
1617
+ const { data: { permission, game: games } = {}, isLoading, error } = useAllPermissionsV2();
1618
+ const [gameList, setGameList] = useState([]);
1619
+ const globalPermissions = permission?.filter((item) => item.is_common);
1620
+ const gamePermissions = permission?.filter((item) => !item.is_common);
1621
+ const { t } = useTranslation();
1622
+ useEffect(() => {
1623
+ const list = [];
1624
+ Object.keys(value ?? {}).forEach((key) => {
1625
+ if (key !== "global") {
1626
+ list.push({ gameId: key, permissions: value?.[key] ?? [] });
1627
+ }
1628
+ });
1629
+ setGameList(list);
1630
+ }, [value]);
1631
+ if (error) {
1632
+ return /* @__PURE__ */ jsx("div", { className: "flex justify-center", children: /* @__PURE__ */ jsx(Text3, { type: "danger", children: t("PermissionList.failedDescription") }) });
1633
+ }
1634
+ const addGame = () => {
1635
+ setGameList((prev) => [...prev, { gameId: "", permissions: [] }]);
1636
+ };
1637
+ const removeGame = (index) => {
1638
+ setGameList((prev) => prev.filter((_, i) => i !== index));
1639
+ };
1640
+ return /* @__PURE__ */ jsxs("div", { className: "flex flex-col w-full", children: [
1641
+ /* @__PURE__ */ jsx("div", { className: "mb-12", children: /* @__PURE__ */ jsx(Divider, { dashed: true, children: t("PermissionList.baseSectionTitle") }) }),
1642
+ /* @__PURE__ */ jsx(Skeleton, { active: true, loading: isLoading, children: /* @__PURE__ */ jsx(
1643
+ permissionCollapse_default,
1644
+ {
1645
+ value: value?.global,
1646
+ readonly,
1647
+ permissions: globalPermissions,
1648
+ expand,
1649
+ onChange: (newValue) => {
1650
+ onChange?.({
1651
+ ...value,
1652
+ global: newValue
1653
+ });
1654
+ }
1655
+ }
1656
+ ) }),
1657
+ /* @__PURE__ */ jsx("div", { className: "my-12", children: /* @__PURE__ */ jsx(Divider, { dashed: true, children: t("PermissionList.gameSectionTitle") }) }),
1658
+ gameList.map((item, index) => /* @__PURE__ */ jsx(
1659
+ Card,
1660
+ {
1661
+ title: /* @__PURE__ */ jsxs(Space, { children: [
1662
+ /* @__PURE__ */ jsx(Text3, { children: t("global.game") }),
1663
+ readonly ? /* @__PURE__ */ jsx(Text3, { children: games?.find((game) => game.id === item.gameId)?.name }) : /* @__PURE__ */ jsx(
1664
+ Select,
1665
+ {
1666
+ disabled: readonly,
1667
+ value: gameList[index].gameId || void 0,
1668
+ style: { width: "160px" },
1669
+ placeholder: t("PermissionList.gameSelectPlaceholder"),
1670
+ onChange: (selectedValue) => {
1671
+ setGameList((pev) => {
1672
+ const temp = pev.slice();
1673
+ temp[index].gameId = selectedValue;
1674
+ return temp;
1675
+ });
1676
+ },
1677
+ children: games?.map((game) => /* @__PURE__ */ jsx(Option2, { value: game.id, disabled: gameList.some(({ gameId }) => gameId === game.id), children: game.name }, game.id))
1678
+ }
1679
+ )
1680
+ ] }),
1681
+ className: "mb-6",
1682
+ extra: !readonly && /* @__PURE__ */ jsx(
1683
+ Button,
1684
+ {
1685
+ type: "link",
1686
+ onClick: () => {
1687
+ removeGame(index);
1688
+ },
1689
+ children: t("PermissionList.removeText")
1690
+ }
1691
+ ),
1692
+ children: gameList[index].gameId ? /* @__PURE__ */ jsx(Skeleton, { active: true, loading: isLoading, children: /* @__PURE__ */ jsx(
1693
+ permissionCollapse_default,
1694
+ {
1695
+ value: value?.[gameList[index].gameId],
1696
+ readonly,
1697
+ expand,
1698
+ permissions: gamePermissions,
1699
+ onChange: (newValue) => {
1700
+ onChange?.({
1701
+ ...value,
1702
+ [gameList[index].gameId]: newValue
1703
+ });
1704
+ }
1705
+ }
1706
+ ) }) : /* @__PURE__ */ jsx(Empty, { description: t("PermissionList.gameSectionDescription") })
1707
+ },
1708
+ index
1709
+ )),
1710
+ !readonly && /* @__PURE__ */ jsx(Button, { block: true, type: "dashed", onClick: addGame, children: t("PermissionList.addText") })
1711
+ ] });
1712
+ };
1713
+ permissionListV2_default = PermissionListV2;
1714
+ }
1715
+ });
1716
+ var PermissionList, permissionList_default;
1717
+ var init_permissionList = __esm({
1718
+ "src/features/permission/components/permissionList/index.tsx"() {
1719
+ init_contextProvider();
1720
+ init_permissionListV1();
1721
+ init_permissionListV2();
1722
+ PermissionList = (props) => {
1723
+ const { value } = props;
1724
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
1725
+ return /* @__PURE__ */ jsx(Fragment, { children: usePermissionApiV2 ? /* @__PURE__ */ jsx(permissionListV2_default, { ...props, value }) : /* @__PURE__ */ jsx(permissionListV1_default, { ...props, value }) });
1726
+ };
1727
+ permissionList_default = PermissionList;
1728
+ }
1729
+ });
1730
+
1731
+ // src/features/permission/types/index.ts
1732
+ var init_types = __esm({
1733
+ "src/features/permission/types/index.ts"() {
1734
+ }
1735
+ });
1736
+
1737
+ // src/features/permission/index.ts
1738
+ var init_permission2 = __esm({
1739
+ "src/features/permission/index.ts"() {
1740
+ init_permissionList();
1741
+ init_hooks2();
1742
+ init_types();
1743
+ }
1744
+ });
1745
+
1746
+ // src/pages/permission/userList/index.tsx
1747
+ var userList_exports = {};
1748
+ __export(userList_exports, {
1749
+ default: () => userList_default,
1750
+ route: () => route
1751
+ });
1752
+ var Option3, route, useModal2, UserList, userList_default;
1753
+ var init_userList = __esm({
1754
+ "src/pages/permission/userList/index.tsx"() {
1755
+ init_highlight();
1756
+ init_locale();
1757
+ init_permissionButton();
1758
+ init_queryList();
1759
+ init_stores3();
1760
+ init_permission2();
1761
+ init_formModal();
1762
+ ({ Option: Option3 } = Select);
1763
+ route = "/api/usystem/user/list";
1764
+ useModal2 = (isCreate) => {
1765
+ const { message } = App.useApp();
1766
+ const { t } = useTranslation();
1767
+ const { refetch, mutate: mutate2 } = useQueryListStore();
1768
+ const { data: roles, isLoading } = useAllRoles();
1769
+ const create6 = useCreateUser();
1770
+ const update = useUpdateUser();
1771
+ const title = isCreate ? t("UserList.createTitle") : t("UserList.updateTitle");
1772
+ const content = /* @__PURE__ */ jsxs(Fragment, { children: [
1773
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.name"), name: "name", rules: [{ required: true }], children: /* @__PURE__ */ jsx(Input, { disabled: !isCreate }) }),
1774
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.role"), name: "roles", children: /* @__PURE__ */ jsx(Select, { allowClear: true, mode: "multiple", loading: isLoading, children: (roles ?? []).map((role) => /* @__PURE__ */ jsx(Option3, { value: role.name, children: role.name }, role.id)) }) })
1775
+ ] });
1776
+ const onConfirm = async (values, extraValues) => {
1777
+ if (isCreate) {
1778
+ await create6.trigger(values);
1779
+ refetch(route, { page: 1 });
1780
+ message.success(t("UserList.createSuccessfully"));
1781
+ } else {
1782
+ await update.trigger(values);
1783
+ mutate2(
1784
+ route,
1785
+ (prev) => {
1786
+ return produce(prev, (draft) => {
1787
+ if (draft?.List) {
1788
+ const index = draft.List?.findIndex((item) => item.id === extraValues?.id);
1789
+ if (index !== -1) {
1790
+ draft.List[index].roles = values.roles;
1791
+ }
1792
+ }
1793
+ });
1794
+ },
1795
+ { revalidate: false }
1796
+ );
1797
+ message.success(t("UserList.updateSuccessfully"));
1798
+ }
1799
+ };
1800
+ return useFormModal({
1801
+ title,
1802
+ formProps: {
1803
+ labelCol: { flex: "80px" }
1804
+ },
1805
+ content,
1806
+ onConfirm
1807
+ });
1808
+ };
1809
+ UserList = () => {
1810
+ const { modal, message } = App.useApp();
1811
+ const remove = useRemoveUser();
1812
+ const { mutate: mutate2 } = useQueryListStore();
1813
+ const { show: showCreateModal, modal: createModal } = useModal2(true);
1814
+ const { show: showUpdateModal, modal: updateModal } = useModal2();
1815
+ const { t } = useTranslation();
1816
+ const columns = [
1817
+ {
1818
+ title: t("global.name"),
1819
+ dataIndex: "name",
1820
+ key: "name"
1821
+ },
1822
+ {
1823
+ title: "ID",
1824
+ dataIndex: "id",
1825
+ key: "id"
1826
+ },
1827
+ {
1828
+ title: t("global.role"),
1829
+ dataIndex: "roles",
1830
+ key: "roles",
1831
+ width: "40%",
1832
+ render(value) {
1833
+ return /* @__PURE__ */ jsx(Row, { gutter: [4, 4], children: (value || []).map((item) => /* @__PURE__ */ jsx(Col, { children: item === "root" ? /* @__PURE__ */ jsx(Tag, { color: "#f50", children: item }) : /* @__PURE__ */ jsx(Tag, { color: "#ff5a00", children: /* @__PURE__ */ jsx(Link, { to: `../role/${item}`, children: item }) }) }, item)) });
1834
+ }
1835
+ },
1836
+ {
1837
+ title: t("global.creationTime"),
1838
+ dataIndex: "Ctime",
1839
+ key: "ctime"
1840
+ },
1841
+ {
1842
+ title: t("global.operation"),
1843
+ width: 150,
1844
+ align: "center",
1845
+ render: (value) => /* @__PURE__ */ jsxs(Space, { children: [
1846
+ /* @__PURE__ */ jsx(
1847
+ PermissionButton_default,
1848
+ {
1849
+ isGlobal: true,
1850
+ size: "small",
1851
+ type: "link",
1852
+ code: "100003",
1853
+ onClick: () => {
1854
+ showUpdateModal({
1855
+ initialValues: {
1856
+ name: value.name,
1857
+ roles: value.roles
1858
+ },
1859
+ extraValues: {
1860
+ id: value.id
1861
+ }
1862
+ });
1863
+ },
1864
+ children: t("global.update")
1865
+ }
1866
+ ),
1867
+ /* @__PURE__ */ jsx(
1868
+ PermissionButton_default,
1869
+ {
1870
+ isGlobal: true,
1871
+ danger: true,
1872
+ size: "small",
1873
+ code: "100004",
1874
+ type: "link",
1875
+ onClick: () => {
1876
+ modal.confirm({
1877
+ title: t("UserList.deleteTitle"),
1878
+ content: /* @__PURE__ */ jsx(highlight_default, { texts: [value.name], children: t("UserList.deleteContent", { user: value.name }) }),
1879
+ async onOk() {
1880
+ await remove.trigger({
1881
+ id: value.id,
1882
+ name: value.name
1883
+ });
1884
+ mutate2(route, (prev) => {
1885
+ return produce(prev, (draft) => {
1886
+ const index = draft?.List?.findIndex((item) => item.id === value.id);
1887
+ if (index) {
1888
+ draft?.List?.splice(index, 1);
1889
+ }
1890
+ });
1891
+ });
1892
+ message.success(t("UserList.deleteSuccessfully"));
1893
+ }
1894
+ });
1895
+ },
1896
+ children: t("global.delete")
1897
+ }
1898
+ )
1899
+ ] })
1900
+ }
1901
+ ];
1902
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
1903
+ /* @__PURE__ */ jsx(
1904
+ Card,
1905
+ {
1906
+ title: t("global.user"),
1907
+ extra: /* @__PURE__ */ jsx(
1908
+ PermissionButton_default,
1909
+ {
1910
+ isGlobal: true,
1911
+ type: "primary",
1912
+ icon: /* @__PURE__ */ jsx(UserAddOutlined, {}),
1913
+ code: "100002",
1914
+ onClick: () => {
1915
+ showCreateModal();
1916
+ },
1917
+ children: t("UserList.createTitle")
1918
+ }
1919
+ ),
1920
+ children: /* @__PURE__ */ jsx(
1921
+ QueryList_default,
1922
+ {
1923
+ isGlobal: true,
1924
+ code: "100001",
1925
+ route,
1926
+ rowKey: "id",
1927
+ columns,
1928
+ getTotal: (response) => response?.Total,
1929
+ getDataSource: (response) => response?.List
1930
+ }
1931
+ )
1932
+ }
1933
+ ),
1934
+ createModal,
1935
+ updateModal
1936
+ ] });
1937
+ };
1938
+ userList_default = UserList;
1939
+ }
1940
+ });
1941
+
1942
+ // src/pages/permission/roleList/index.tsx
1943
+ var roleList_exports = {};
1944
+ __export(roleList_exports, {
1945
+ default: () => roleList_default
1946
+ });
1947
+ var route2, useModal3, RoleList, roleList_default;
1948
+ var init_roleList = __esm({
1949
+ "src/pages/permission/roleList/index.tsx"() {
1950
+ init_contextProvider();
1951
+ init_highlight();
1952
+ init_locale();
1953
+ init_permissionButton();
1954
+ init_queryList();
1955
+ init_stores3();
1956
+ init_permission2();
1957
+ init_formModal();
1958
+ init_permission();
1959
+ init_request();
1960
+ route2 = "/api/usystem/role/list";
1961
+ useModal3 = (isCreate) => {
1962
+ const { message } = App.useApp();
1963
+ const { t } = useTranslation();
1964
+ const { refetch, mutate: mutate2 } = useQueryListStore();
1965
+ const create6 = useCreateRole();
1966
+ const update = useUpdateRole();
1967
+ const title = isCreate ? t("RoleList.createTitle") : t("RoleList.updateTitle");
1968
+ const formProps = {
1969
+ layout: "vertical"
1970
+ };
1971
+ const content = /* @__PURE__ */ jsxs(Fragment, { children: [
1972
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.name"), name: "name", rules: [{ required: true }], children: /* @__PURE__ */ jsx(Input, { disabled: !isCreate, addonBefore: "role_" }) }),
1973
+ /* @__PURE__ */ jsx(Form.Item, { name: "permissions", children: /* @__PURE__ */ jsx(permissionList_default, {}) })
1974
+ ] });
1975
+ const onConfirm = async (values, extraValues) => {
1976
+ if (isCreate) {
1977
+ await create6.trigger({
1978
+ name: `role_${values.name}`,
1979
+ permissions: values.permissions
1980
+ });
1981
+ refetch(route2, { page: 1 });
1982
+ message.success(t("RoleList.createSuccessfully"));
1983
+ } else {
1984
+ await update.trigger({
1985
+ id: extraValues?.id,
1986
+ name: `role_${values.name}`,
1987
+ permissions: values.permissions
1988
+ });
1989
+ mutate2(
1990
+ route2,
1991
+ (prev) => produce(prev, (draft) => {
1992
+ const match = draft?.List?.find((item) => item.id === extraValues?.id);
1993
+ if (match) {
1994
+ match.permissions = values.permissions;
1995
+ }
1996
+ }),
1997
+ { revalidate: false }
1998
+ );
1999
+ message.success(t("RoleList.updateSuccessfully"));
2000
+ }
2001
+ };
2002
+ return useFormModal({
2003
+ title,
2004
+ width: "50vw",
2005
+ formProps,
2006
+ content,
2007
+ onConfirm
2008
+ });
2009
+ };
2010
+ RoleList = () => {
2011
+ const { accessible: viewable } = usePermission("200005", true);
2012
+ const { modal, message } = App.useApp();
2013
+ const { t } = useTranslation();
2014
+ const usePermissionApiV2 = useToolkitsContext((state) => state.usePermissionApiV2);
2015
+ const { mutate: mutate2 } = useQueryListStore();
2016
+ const { show: showCreateModal, modal: createModal } = useModal3(true);
2017
+ const { show: showUpdateModal, modal: updateModal } = useModal3();
2018
+ const remove = useRemoveRole();
2019
+ const handleUpdateBtnClick = async (record) => {
2020
+ const { data: role } = await request(
2021
+ `/api/usystem/role/info${usePermissionApiV2 ? "V2" : ""}?name=${record.name}`,
2022
+ { isGlobal: true }
2023
+ );
2024
+ showUpdateModal({
2025
+ initialValues: {
2026
+ permissions: role?.permissions,
2027
+ name: role?.name.replace(/^role_/, "")
2028
+ },
2029
+ extraValues: {
2030
+ id: role?.id
2031
+ }
2032
+ });
2033
+ };
2034
+ const columns = [
2035
+ {
2036
+ title: t("global.name"),
2037
+ key: "name",
2038
+ render(value) {
2039
+ if (viewable) {
2040
+ return /* @__PURE__ */ jsx(Link, { to: `${value.name}`, relative: "path", children: value.name });
2041
+ } else {
2042
+ return /* @__PURE__ */ jsx(Fragment, { children: value.name });
2043
+ }
2044
+ }
2045
+ },
2046
+ {
2047
+ title: "ID",
2048
+ dataIndex: "id",
2049
+ key: "id"
2050
+ },
2051
+ {
2052
+ title: t("global.creationTime"),
2053
+ dataIndex: "ctime",
2054
+ key: "ctime"
2055
+ },
2056
+ {
2057
+ title: t("global.operation"),
2058
+ width: 150,
2059
+ align: "center",
2060
+ render: (_, record) => {
2061
+ return /* @__PURE__ */ jsxs(Space, { size: "small", children: [
2062
+ /* @__PURE__ */ jsx(
2063
+ PermissionButton_default,
2064
+ {
2065
+ isGlobal: true,
2066
+ code: "200003",
2067
+ size: "small",
2068
+ type: "link",
2069
+ onClick: async () => {
2070
+ handleUpdateBtnClick(record);
2071
+ },
2072
+ children: t("global.edit")
2073
+ }
2074
+ ),
2075
+ /* @__PURE__ */ jsx(
2076
+ PermissionButton_default,
2077
+ {
2078
+ isGlobal: true,
2079
+ danger: true,
2080
+ code: "200004",
2081
+ size: "small",
2082
+ type: "link",
2083
+ onClick: () => {
2084
+ modal.confirm({
2085
+ title: t("RoleList.deleteTitle"),
2086
+ content: /* @__PURE__ */ jsx(highlight_default, { texts: [record.name], children: t("RoleList.deleteContent", { role: record.name }) }),
2087
+ async onOk() {
2088
+ await remove.trigger({
2089
+ id: record.id,
2090
+ name: record.name
2091
+ });
2092
+ mutate2(route2, (prev) => {
2093
+ return produce(prev, (draft) => {
2094
+ const index = draft?.List?.findIndex((item) => item.id === record.id);
2095
+ if (index) {
2096
+ draft?.List?.splice(index, 1);
2097
+ }
2098
+ });
2099
+ });
2100
+ message.success(t("RoleList.deleteSuccessfully"));
2101
+ }
2102
+ });
2103
+ },
2104
+ children: t("global.delete")
2105
+ }
2106
+ )
2107
+ ] });
2108
+ }
2109
+ }
2110
+ ];
2111
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
2112
+ /* @__PURE__ */ jsx(
2113
+ Card,
2114
+ {
2115
+ title: t("global.role"),
2116
+ extra: /* @__PURE__ */ jsx(
2117
+ PermissionButton_default,
2118
+ {
2119
+ isGlobal: true,
2120
+ type: "primary",
2121
+ code: "200002",
2122
+ icon: /* @__PURE__ */ jsx(UsergroupAddOutlined, {}),
2123
+ onClick: () => {
2124
+ showCreateModal();
2125
+ },
2126
+ children: t("RoleList.createTitle")
2127
+ }
2128
+ ),
2129
+ children: /* @__PURE__ */ jsx(
2130
+ QueryList_default,
2131
+ {
2132
+ isGlobal: true,
2133
+ rowKey: "name",
2134
+ columns,
2135
+ code: "200001",
2136
+ route: route2,
2137
+ getTotal: (response) => response?.Total,
2138
+ getDataSource: (response) => response?.List
2139
+ }
2140
+ )
2141
+ }
2142
+ ),
2143
+ createModal,
2144
+ updateModal
2145
+ ] });
2146
+ };
2147
+ roleList_default = RoleList;
2148
+ }
2149
+ });
2150
+
2151
+ // src/pages/permission/roleDetail/index.tsx
2152
+ var roleDetail_exports = {};
2153
+ __export(roleDetail_exports, {
2154
+ default: () => roleDetail_default
2155
+ });
2156
+ var RoleDetail, roleDetail_default;
2157
+ var init_roleDetail = __esm({
2158
+ "src/pages/permission/roleDetail/index.tsx"() {
2159
+ init_locale();
2160
+ init_permission2();
2161
+ RoleDetail = () => {
2162
+ const params = useParams();
2163
+ const { data, isLoading } = useRole(params.name);
2164
+ const { t } = useTranslation();
2165
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
2166
+ /* @__PURE__ */ jsx(
2167
+ Breadcrumb,
2168
+ {
2169
+ style: { marginBottom: 24 },
2170
+ items: [
2171
+ {
2172
+ key: "1",
2173
+ title: /* @__PURE__ */ jsx(Link, { to: "..", children: t("global.role") })
2174
+ },
2175
+ {
2176
+ key: "2",
2177
+ title: params.name
2178
+ }
2179
+ ]
2180
+ }
2181
+ ),
2182
+ /* @__PURE__ */ jsx(Card, { title: t("RoleDetail.title"), children: /* @__PURE__ */ jsxs(Skeleton, { loading: isLoading, children: [
2183
+ /* @__PURE__ */ jsxs(Descriptions, { column: 3, layout: "vertical", children: [
2184
+ /* @__PURE__ */ jsx(Descriptions.Item, { label: t("global.name"), children: data?.name }),
2185
+ /* @__PURE__ */ jsx(Descriptions.Item, { label: "ID", children: data?.id }),
2186
+ /* @__PURE__ */ jsx(Descriptions.Item, { label: t("global.creationTime"), children: data?.ctime })
2187
+ ] }),
2188
+ /* @__PURE__ */ jsx(permissionList_default, { readonly: true, value: data?.permissions })
2189
+ ] }) })
2190
+ ] });
2191
+ };
2192
+ roleDetail_default = RoleDetail;
2193
+ }
2194
+ });
2195
+
2196
+ // src/index.ts
2197
+ init_contextProvider();
2198
+
2199
+ // src/components/dynamicTags/index.tsx
2200
+ init_locale();
2201
+ var DynamicTags = (props) => {
2202
+ const { initialTags, addable, removable, addCallback, removeCallback } = props;
2203
+ const { t } = useTranslation();
2204
+ const { token } = theme.useToken();
2205
+ const [tags, setTags] = useState([]);
2206
+ const [inputVisible, setInputVisible] = useState(false);
2207
+ const [inputValue, setInputValue] = useState("");
2208
+ const [editInputIndex, setEditInputIndex] = useState(-1);
2209
+ const [editInputValue, setEditInputValue] = useState("");
2210
+ const inputRef = useRef(null);
2211
+ const editInputRef = useRef(null);
2212
+ useEffect(() => {
2213
+ setTags(initialTags ?? []);
2214
+ }, [initialTags]);
2215
+ useEffect(() => {
2216
+ if (inputVisible) {
2217
+ inputRef.current?.focus();
2218
+ }
2219
+ }, [inputVisible]);
2220
+ useEffect(() => {
2221
+ editInputRef.current?.focus();
2222
+ }, [inputValue]);
2223
+ const handleClose = async (removedTag) => {
2224
+ const success = await removeCallback?.(removedTag);
2225
+ if (success) {
2226
+ const newTags = tags.filter((tag) => tag !== removedTag);
2227
+ setTags(newTags);
2228
+ }
2229
+ };
2230
+ const showInput = () => {
2231
+ setInputVisible(true);
2232
+ };
2233
+ const handleInputChange = (e) => {
2234
+ setInputValue(e.target.value);
2235
+ };
2236
+ const handleInputConfirm = async () => {
2237
+ if (inputValue && tags.indexOf(inputValue) === -1) {
2238
+ const success = await addCallback?.(inputValue);
2239
+ if (success) {
2240
+ setTags([...tags, inputValue]);
2241
+ }
2242
+ }
2243
+ setInputVisible(false);
2244
+ setInputValue("");
2245
+ };
2246
+ const handleEditInputChange = (e) => {
2247
+ setEditInputValue(e.target.value);
2248
+ };
2249
+ const handleEditInputConfirm = () => {
2250
+ const newTags = [...tags];
2251
+ newTags[editInputIndex] = editInputValue;
2252
+ setTags(newTags);
2253
+ setEditInputIndex(-1);
2254
+ setInputValue("");
2255
+ };
2256
+ const tagInputStyle = {
2257
+ width: 78,
2258
+ verticalAlign: "top"
2259
+ };
2260
+ const tagPlusStyle = {
2261
+ background: token.colorBgContainer,
2262
+ borderStyle: "dashed"
2263
+ };
2264
+ return /* @__PURE__ */ jsxs(Space, { wrap: true, size: [0, 8], children: [
2265
+ /* @__PURE__ */ jsx(Space, { wrap: true, size: [0, 8], children: tags.map((tag, index) => {
2266
+ if (editInputIndex === index) {
2267
+ return /* @__PURE__ */ jsx(
2268
+ Input,
2269
+ {
2270
+ ref: editInputRef,
2271
+ size: "small",
2272
+ style: tagInputStyle,
2273
+ value: editInputValue,
2274
+ onChange: handleEditInputChange,
2275
+ onBlur: handleEditInputConfirm,
2276
+ onPressEnter: handleEditInputConfirm
2277
+ },
2278
+ tag
2279
+ );
2280
+ }
2281
+ return /* @__PURE__ */ jsx(
2282
+ Tag,
2283
+ {
2284
+ closable: removable,
2285
+ style: { userSelect: "none" },
2286
+ onClose: async (e) => {
2287
+ e.preventDefault();
2288
+ await handleClose(tag);
2289
+ },
2290
+ children: /* @__PURE__ */ jsx(
2291
+ "span",
2292
+ {
2293
+ onDoubleClick: (e) => {
2294
+ if (index !== 0) {
2295
+ setEditInputIndex(index);
2296
+ setEditInputValue(tag);
2297
+ e.preventDefault();
2298
+ }
2299
+ },
2300
+ children: tag
2301
+ }
2302
+ )
2303
+ },
2304
+ tag
2305
+ );
2306
+ }) }),
2307
+ addable && (inputVisible ? /* @__PURE__ */ jsx(
2308
+ Input,
2309
+ {
2310
+ ref: inputRef,
2311
+ type: "text",
2312
+ size: "small",
2313
+ style: tagInputStyle,
2314
+ value: inputValue,
2315
+ onChange: handleInputChange,
2316
+ onBlur: handleInputConfirm,
2317
+ onPressEnter: handleInputConfirm
2318
+ }
2319
+ ) : /* @__PURE__ */ jsxs(Tag, { style: tagPlusStyle, onClick: showInput, children: [
2320
+ /* @__PURE__ */ jsx(PlusOutlined, {}),
2321
+ "\xA0",
2322
+ t("global.add")
2323
+ ] }))
2324
+ ] });
2325
+ };
2326
+ var dynamicTags_default = DynamicTags;
2327
+ var ExpandableParagraph = (props) => {
2328
+ const { children, ...restProps } = props;
2329
+ const [expanded, setExpanded] = useState(false);
2330
+ return /* @__PURE__ */ jsx(
2331
+ Typography.Paragraph,
2332
+ {
2333
+ ...restProps,
2334
+ className: "mb-0",
2335
+ ellipsis: {
2336
+ rows: 2,
2337
+ expandable: "collapsible",
2338
+ expanded,
2339
+ onExpand: (_, info) => {
2340
+ setExpanded(info.expanded);
2341
+ }
2342
+ },
2343
+ children
2344
+ }
2345
+ );
2346
+ };
2347
+ var expandableParagraph_default = ExpandableParagraph;
2348
+
2349
+ // src/index.ts
2350
+ init_filterFormWrapper();
2351
+ init_highlight();
2352
+
2353
+ // src/components/infiniteList/InfiniteList.tsx
2354
+ init_permission();
2355
+ init_request();
2356
+ init_filterFormWrapper();
2357
+ init_locale();
2358
+ var InfiniteList = (props) => {
2359
+ const {
2360
+ code,
2361
+ action,
2362
+ extras,
2363
+ headers,
2364
+ isGlobal,
2365
+ getRowKey,
2366
+ getDataSource,
2367
+ hasMore,
2368
+ renderForm,
2369
+ transformArg,
2370
+ ...tableProps
2371
+ } = props;
2372
+ const { t } = useTranslation();
2373
+ const [form] = Form.useForm();
2374
+ const { accessible, isLoading } = usePermission(code);
2375
+ const [isValid, setIsValid] = useState(false);
2376
+ const [formValues, setFormValues] = useState();
2377
+ const getKey = (pageIndex, previousPageData) => {
2378
+ if (!isValid) return null;
2379
+ const rowKey = pageIndex !== 0 ? getRowKey(previousPageData) : void 0;
2380
+ const args = transformArg(formValues, rowKey);
2381
+ const queryString = qs.stringify(args);
2382
+ return queryString ? `${action}?${qs.stringify(args)}` : action;
2383
+ };
2384
+ const {
2385
+ data,
2386
+ size,
2387
+ setSize,
2388
+ isValidating: isListValidating
2389
+ } = useSWRInfinite(
2390
+ getKey,
2391
+ (arg) => {
2392
+ return request(arg, {
2393
+ headers: typeof headers === "function" ? headers(form) : headers,
2394
+ isGlobal
2395
+ }).then((response) => response.data);
2396
+ },
2397
+ {
2398
+ shouldRetryOnError: false,
2399
+ revalidateOnFocus: false,
2400
+ revalidateFirstPage: false
2401
+ }
2402
+ );
2403
+ const dataSource = getDataSource(data);
2404
+ const isLoadingMore = isListValidating || size > 0 && data && typeof data[size - 1] === "undefined";
2405
+ const isReachingEnd = typeof hasMore !== "undefined" ? !hasMore(data) : true;
2406
+ const isEmpty = !dataSource || dataSource.length === 0;
2407
+ const onConfirm = async () => {
2408
+ const values = await form.getFieldsValue();
2409
+ setFormValues(values);
2410
+ try {
2411
+ await form.validateFields();
2412
+ setSize(1);
2413
+ setIsValid(true);
2414
+ } catch (_) {
2415
+ setSize(0);
2416
+ setIsValid(false);
2417
+ }
2418
+ };
2419
+ const loadMore = () => {
2420
+ setSize(size + 1);
2421
+ };
2422
+ const onReset = async () => {
2423
+ try {
2424
+ form.resetFields();
2425
+ await form.validateFields({ validateOnly: true });
2426
+ setSize(1);
2427
+ } catch (_) {
2428
+ setSize(0);
2429
+ }
2430
+ };
2431
+ useEffect(() => {
2432
+ if (accessible) {
2433
+ form.validateFields({ validateOnly: true }).then((values) => {
2434
+ setFormValues(values);
2435
+ setIsValid(true);
2436
+ }).catch(() => {
2437
+ setIsValid(false);
2438
+ });
2439
+ }
2440
+ }, [accessible]);
2441
+ if (isLoading) {
2442
+ return /* @__PURE__ */ jsx(
2443
+ Spin,
2444
+ {
2445
+ style: {
2446
+ display: "flex",
2447
+ justifyContent: "center",
2448
+ alignItems: "center",
2449
+ height: 300
2450
+ }
2451
+ }
2452
+ );
2453
+ }
2454
+ if (!accessible) {
2455
+ return /* @__PURE__ */ jsx(Result, { status: 403, subTitle: t("global.noEntitlement") });
2456
+ }
2457
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
2458
+ renderForm ? /* @__PURE__ */ jsx(
2459
+ filterFormWrapper_default,
2460
+ {
2461
+ extras: extras?.map((extra) => ({
2462
+ key: extra.key,
2463
+ children: typeof extra.children === "function" ? extra.children(form) : extra.children
2464
+ })),
2465
+ onReset,
2466
+ onConfirm,
2467
+ children: renderForm(form)
2468
+ }
2469
+ ) : /* @__PURE__ */ jsx(Form, { form }),
2470
+ /* @__PURE__ */ jsx(Table, { ...tableProps, dataSource, loading: isLoadingMore, pagination: false }),
2471
+ !isEmpty && /* @__PURE__ */ jsx(
2472
+ Button,
2473
+ {
2474
+ block: true,
2475
+ loading: isLoadingMore,
2476
+ type: "link",
2477
+ htmlType: "button",
2478
+ disabled: isLoadingMore || isReachingEnd,
2479
+ onClick: loadMore,
2480
+ children: isLoadingMore ? t("InfiniteList.loadingText") : isReachingEnd ? t("InfiniteList.reachEndText") : t("InfiniteList.loadMoreText")
2481
+ }
2482
+ )
2483
+ ] });
2484
+ };
2485
+ var InfiniteList_default = InfiniteList;
2486
+
2487
+ // src/index.ts
2488
+ init_layout();
2489
+ init_navMenu();
2490
+ init_permissionButton();
2491
+
2492
+ // src/components/permissionGuard/index.tsx
2493
+ init_locale();
2494
+ init_permission();
2495
+ var PermissionGuard = (props) => {
2496
+ const { code, isGlobal, children } = props;
2497
+ const { accessible, isValidating } = usePermission(code, isGlobal);
2498
+ const { t } = useTranslation();
2499
+ if (isValidating) {
2500
+ return /* @__PURE__ */ jsx(
2501
+ Spin,
2502
+ {
2503
+ style: {
2504
+ display: "flex",
2505
+ justifyContent: "center",
2506
+ alignItems: "center",
2507
+ height: 200
2508
+ }
2509
+ }
2510
+ );
2511
+ }
2512
+ if (!accessible) {
2513
+ return /* @__PURE__ */ jsx(Result, { status: "403", subTitle: t("global.noEntitlement") });
2514
+ }
2515
+ return /* @__PURE__ */ jsx(Fragment, { children });
2516
+ };
2517
+ var permissionGuard_default = PermissionGuard;
2518
+
2519
+ // src/index.ts
2520
+ init_queryList();
2521
+ init_userWidget();
2522
+ init_constants();
2523
+ init_formModal();
2524
+ init_modal();
2525
+ init_permission();
2526
+ init_token();
2527
+
2528
+ // src/pages/notFound/index.tsx
2529
+ init_locale();
2530
+ var NotFound = (props) => {
2531
+ const { redirectUrl } = props;
2532
+ const navigate = useNavigate();
2533
+ const { t } = useTranslation();
2534
+ return /* @__PURE__ */ jsx("div", { className: "h-screen flex justify-center items-center", children: /* @__PURE__ */ jsx(
2535
+ Result,
2536
+ {
2537
+ status: "404",
2538
+ title: "404",
2539
+ subTitle: t("NotFound.subTitle"),
2540
+ extra: redirectUrl && /* @__PURE__ */ jsx(
2541
+ Button,
2542
+ {
2543
+ type: "primary",
2544
+ onClick: () => {
2545
+ navigate(redirectUrl);
2546
+ },
2547
+ children: t("NotFound.buttonText")
2548
+ }
2549
+ )
2550
+ }
2551
+ ) });
2552
+ };
2553
+ var notFound_default = NotFound;
2554
+ init_locale();
2555
+ init_queryList();
2556
+ var { Option } = Select;
2557
+ var OperationLogList = () => {
2558
+ const { t } = useTranslation();
2559
+ const columns = [
2560
+ {
2561
+ key: "username",
2562
+ title: t("global.username"),
2563
+ dataIndex: "uname",
2564
+ width: 100
2565
+ },
2566
+ {
2567
+ key: "label",
2568
+ title: t("global.label"),
2569
+ dataIndex: "label",
2570
+ width: 150
2571
+ },
2572
+ {
2573
+ key: "method",
2574
+ title: t("global.method"),
2575
+ dataIndex: "method",
2576
+ width: 100
2577
+ },
2578
+ {
2579
+ key: "route",
2580
+ title: t("global.route"),
2581
+ dataIndex: "route",
2582
+ width: 200
2583
+ },
2584
+ {
2585
+ key: "request",
2586
+ title: t("global.request"),
2587
+ dataIndex: "request",
2588
+ render(value) {
2589
+ return /* @__PURE__ */ jsx(expandableParagraph_default, { children: value });
2590
+ }
2591
+ },
2592
+ {
2593
+ key: "response",
2594
+ title: t("global.response"),
2595
+ dataIndex: "response",
2596
+ render(value) {
2597
+ return /* @__PURE__ */ jsx(expandableParagraph_default, { children: value });
2598
+ }
2599
+ },
2600
+ {
2601
+ key: "creation_time",
2602
+ title: t("global.creationTime"),
2603
+ dataIndex: "ctime",
2604
+ width: 200,
2605
+ render(value) {
2606
+ return dayjs(value).format("YYYY-MM-DD HH:mm:ss");
2607
+ }
2608
+ }
2609
+ ];
2610
+ return /* @__PURE__ */ jsx(Card, { title: "\u64CD\u4F5C\u65E5\u5FD7", children: /* @__PURE__ */ jsx(
2611
+ QueryList_default,
2612
+ {
2613
+ rowKey: "id",
2614
+ code: "300001",
2615
+ columns,
2616
+ tableLayout: "fixed",
2617
+ route: "/api/usystem/log/list",
2618
+ getTotal: (response) => response?.Total,
2619
+ getDataSource: (response) => response?.List,
2620
+ renderForm: (form) => /* @__PURE__ */ jsxs(Form, { form, layout: "inline", children: [
2621
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.username"), name: "uname", children: /* @__PURE__ */ jsx(Input, { allowClear: true }) }),
2622
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.route"), name: "route", children: /* @__PURE__ */ jsx(Input, { allowClear: true }) }),
2623
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.method"), name: "method", children: /* @__PURE__ */ jsxs(Select, { allowClear: true, style: { width: "100px" }, children: [
2624
+ /* @__PURE__ */ jsx(Option, { value: "get", children: "GET" }),
2625
+ /* @__PURE__ */ jsx(Option, { value: "post", children: "POST" })
2626
+ ] }) }),
2627
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.label"), name: "label", children: /* @__PURE__ */ jsx(Input, { allowClear: true }) })
2628
+ ] })
2629
+ }
2630
+ ) });
2631
+ };
2632
+ var operationLogList_default = OperationLogList;
2633
+ var UserList2 = lazy(() => Promise.resolve().then(() => (init_userList(), userList_exports)));
2634
+ var RoleList2 = lazy(() => Promise.resolve().then(() => (init_roleList(), roleList_exports)));
2635
+ var RoleDetail2 = lazy(() => Promise.resolve().then(() => (init_roleDetail(), roleDetail_exports)));
2636
+ var PermissionRoutes = () => {
2637
+ return /* @__PURE__ */ jsxs(Routes, { children: [
2638
+ /* @__PURE__ */ jsx(Route, { index: true, element: /* @__PURE__ */ jsx(Navigate, { to: "user" }) }),
2639
+ /* @__PURE__ */ jsx(Route, { path: "user", element: /* @__PURE__ */ jsx(UserList2, {}) }),
2640
+ /* @__PURE__ */ jsx(Route, { path: "role", element: /* @__PURE__ */ jsx(RoleList2, {}) }),
2641
+ /* @__PURE__ */ jsx(Route, { path: "role/:name", element: /* @__PURE__ */ jsx(RoleDetail2, {}) })
2642
+ ] });
2643
+ };
2644
+ var permission_default = PermissionRoutes;
2645
+
2646
+ // src/pages/signIn/index.tsx
2647
+ init_locale();
2648
+ init_logo();
2649
+ init_constants();
2650
+ init_token();
2651
+ init_request();
2652
+
2653
+ // src/pages/signIn/background.svg
2654
+ var background_default = 'data:image/svg+xml,<svg xml:space="preserve" style="enable-background:new 0 0 6000 4000;" viewBox="0 0 6000 4000" y="0px" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" id="Layer_1" version="1.1">%0A<style type="text/css">%0A%09.Graphic_x0020_Style_x0020_100{fill:%23FFFFFF;}%0A%09.Graphic_x0020_Style_x0020_101{fill:url(%23SVGID_1_);}%0A%09.Graphic_x0020_Style_x0020_102{fill:url(%23SVGID_2_);}%0A%09.Graphic_x0020_Style_x0020_104{fill:%23DB6767;}%0A%09.Graphic_x0020_Style_x0020_105{fill:%23FFDE70;}%0A%09.Graphic_x0020_Style_x0020_106{fill:%23FFB114;}%0A%09.Graphic_x0020_Style_x0020_107{fill:%236584C6;}%0A%09.Graphic_x0020_Style_x0020_108{fill:%23102140;}%0A%09.Graphic_x0020_Style_x0020_109{fill:%233B546B;}%0A%09.Graphic_x0020_Style_x0020_110{fill:%23152A52;}%0A%09.Graphic_x0020_Style_x0020_111{fill:%23E8766F;}%0A%09.Graphic_x0020_Style_x0020_112{fill:%23EF5668;}%0A%09.Graphic_x0020_Style_x0020_113{fill:%23FC9590;}%0A%09.Graphic_x0020_Style_x0020_114{fill:%23912433;}%0A%09.Graphic_x0020_Style_x0020_115{opacity:0.5;fill:%23FFFFFF;}%0A%09.Graphic_x0020_Style_x0020_116{fill:%231A1A1A;}%0A%09.Graphic_x0020_Style_x0020_117{fill:%23535353;}%0A%09.Graphic_x0020_Style_x0020_118{fill:%23DBD2DB;}%0A%09.Graphic_x0020_Style_x0020_119{fill:%234D73C6;}%0A%09.Graphic_x0020_Style_x0020_120{fill:%23D1334A;}%0A%09.Graphic_x0020_Style_x0020_123{fill:url(%23SVGID_3_);}%0A%09.st0{fill:url(%23SVGID_4_);}%0A%09.st1{fill:url(%23SVGID_5_);}%0A%09.st2{fill:url(%23SVGID_6_);}%0A%09.st3{fill:%239D8A9D;}%0A%09.st4{fill:url(%23SVGID_7_);}%0A%09.st5{fill:url(%23SVGID_8_);}%0A%09.st6{fill:%233B546B;}%0A%09.st7{fill:%23A8A1A8;}%0A%09.st8{fill:%23DBD2DB;}%0A%09.st9{fill:%23FFFFFF;stroke:%231A1A1A;stroke-width:5.3432;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st10{fill:%23339E7E;}%0A%09.st11{fill:none;stroke:%2310663F;stroke-width:5.3432;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st12{fill:%2300593B;}%0A%09.st13{fill:none;stroke:%233DBE88;stroke-width:5.3432;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st14{fill:none;stroke:%23134411;stroke-width:8.0149;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st15{fill:%23EF5668;}%0A%09.st16{fill:%23FC9590;}%0A%09.st17{fill:%23102140;}%0A%09.st18{fill:%23DB6767;}%0A%09.st19{fill:%231A1A1A;stroke:%231A1A1A;stroke-width:5.3432;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st20{fill:%23FFFFFF;}%0A%09.st21{fill:%23535353;}%0A%09.st22{fill:%23F9EBF9;}%0A%09.st23{fill:%23D896D8;}%0A%09.st24{fill:%238E3D8E;}%0A%09.st25{fill:%23CA74CA;}%0A%09.st26{fill:%23D590D5;}%0A%09.st27{fill:%23160A16;}%0A%09.st28{fill:%23384A6E;}%0A%09.st29{fill:%23B7C0D4;}%0A%09.st30{fill:%23E8766F;}%0A%09.st31{fill:%23FFB114;}%0A%09.st32{fill:%23FFDE70;}%0A%09.st33{fill:%23434343;}%0A%09.st34{fill:%23664708;}%0A%09.st35{fill:%23D9D9D9;}%0A%09.st36{fill:url(%23SVGID_9_);}%0A%09.st37{fill:url(%23SVGID_10_);}%0A%09.st38{fill:url(%23SVGID_11_);}%0A%09.st39{fill:url(%23SVGID_12_);}%0A</style>%0A<linearGradient y2="0" x2="1" y1="0" x1="0" gradientUnits="userSpaceOnUse" id="SVGID_1_">%0A%09<stop style="stop-color:%234085F0" offset="0"></stop>%0A%09<stop style="stop-color:%23275DC9" offset="1"></stop>%0A</linearGradient>%0A<linearGradient y2="0" x2="1" y1="0" x1="0" gradientUnits="userSpaceOnUse" id="SVGID_2_">%0A%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09<stop style="stop-color:%23529BF7" offset="1"></stop>%0A</linearGradient>%0A<linearGradient y2="0" x2="1" y1="0" x1="0" gradientUnits="userSpaceOnUse" id="SVGID_3_">%0A%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09<stop style="stop-color:%23EBF0F7" offset="1"></stop>%0A</linearGradient>%0A<g>%0A%09<linearGradient y2="3014.9536" x2="4941.2124" y1="3014.9536" x1="1288.5804" gradientUnits="userSpaceOnUse" id="SVGID_4_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23EBF0F7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M1288.6,2793.9c55.3,134.1,186.5,387.6,453.7,503.3c220.8,95.6,442.9,57.4,694.7,14.2%0A%09%09c343.1-59,344.3-140.4,552.9-134.7c282.5,7.8,357.3,159.3,673.4,219.7c66.5,12.7,309.6,47.5,574.2-28.4%0A%09%09c360.6-103.4,734.8-407.2,701.8-560C4895.4,2605.9,4103.5,2505.3,1288.6,2793.9z" class="st0"></path>%0A%09<linearGradient y2="1994.5433" x2="5456.5684" y1="1994.5433" x1="686.3356" gradientUnits="userSpaceOnUse" id="SVGID_5_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23529BF7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M5428.3,1649.1c-131.4-612.4-697.6-977.3-1155.4-1020.7c-232.1-22-245.1,56.7-616.7,117%0A%09%09c-821.7,133.2-1081-199.5-1850.1-85.1c-341.2,50.8-687.6,102.3-914.4,382.8C519.9,1502.7,718.2,2270,973.9,2621.3%0A%09%09c165.2,227,392.7,363.9,392.7,363.9c68.9,41.5,168.6,100.4,304.8,131.1c237.9,53.7,359.9-29.9,560-42.5%0A%09%09c342.7-21.6,401.6,197.2,772.6,276.4c190.7,40.7,257.4,0.5,1084.5-212.6c811.7-209.1,858.2-198.9,974.7-297.7%0A%09%09C5379.4,2571.8,5521.7,2084.7,5428.3,1649.1z M2709.5,2042.7v-2.7V2042.7z" class="st1"></path>%0A%09<linearGradient y2="1859.5726" x2="5227.9292" y1="1859.5726" x1="1116.5316" gradientUnits="userSpaceOnUse" id="SVGID_6_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23EBF0F7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M5148.1,1664.4c-146.3-421.8-552.5-838.3-943.2-819c-297.4,14.6-412.5,273.3-678.4,215.1%0A%09%09c-227.7-49.8-217.9-255.8-471.6-405.4c-401.7-236.8-1083-107.4-1265.9,223.4c-99.3,179.7-11.7,346.7-173.7,521.2%0A%09%09c-113.5,122.3-192.5,78.9-314.4,198.6c-154.9,152-219.8,410.7-165.5,645.3c73.8,318.7,366.8,477.2,388.9,488.1%0A%09%09c827.4,146.2,1654.7,292.3,2482.1,438.5c80.8,13.1,529.4,77.9,879.7-216.7C5295.8,2609,5272.6,2023.2,5148.1,1664.4z%0A%09%09 M2709.5,2042.7v-2.7V2042.7z" class="st2"></path>%0A%09<path d="M5224.3,2042.5c-143.7-88.6-413.9-68.2-740.1-95.9c-488.7-41.5-1188.7,312.8-1437,221.4%0A%09%09c-95.1-35-167.4-141.7-220.4-260v1053.6c291.4,51.5,582.8,103,874.2,154.4l1292.2-269.1C5190,2615.6,5243.4,2314,5224.3,2042.5z" class="st3"></path>%0A%09<linearGradient y2="1741.7239" x2="2757.678" y1="1741.7239" x1="1116.5317" gradientUnits="userSpaceOnUse" id="SVGID_7_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23529BF7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M1789.1,878.4c-99.3,179.7-11.7,346.7-173.7,521.2c-113.5,122.3-192.5,78.9-314.4,198.6%0A%09%09c-154.9,152-219.8,410.7-165.5,645.3c73.8,318.7,366.8,477.2,388.9,488.1c411.1,72.6,822.2,145.3,1233.4,217.9V550.2%0A%09%09C2377.7,484.9,1931.7,620.4,1789.1,878.4z M2709.5,2042.7v-2.7V2042.7z" class="st4"></path>%0A%09<linearGradient y2="1215.4698" x2="2649.5779" y1="1215.4698" x1="1137.9542" gradientUnits="userSpaceOnUse" id="SVGID_8_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23EBF0F7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M1789.1,878.4c-99.4,179.7-11.7,346.7-173.7,521.2c-113.6,122.3-192.5,78.9-314.4,198.6%0A%09%09c-79.1,77.6-134.7,183-163,298.8c82.9-108.4,187.6-189.5,319.3-210.4c445.6-70.8,892.8,45.1,1192.3-113.7V537.1%0A%09%09C2296.9,511.3,1918.4,644.5,1789.1,878.4z" class="st5"></path>%0A%09<polygon points="1937.1,644.5 1937.1,2265.3 1979.7,2269.9 1983,640.9" class="st6"></polygon>%0A%09<path d="M2757.7,550.2c-35.6-6.1-71.7-10.5-108.1-13.1v1035.7c38.6-20.4,74.7-45.4,108.1-76V550.2z" class="st7"></path>%0A%09<path d="M1117.4,850.5c-15.5,9-30.8,18.5-45.8,28.5v1689.5l42.6,5.1L1117.4,850.5z" class="st6"></path>%0A%09<path d="M2826.8,564.5c-22.7-5.5-45.8-10.3-69.1-14.3v2399.3c23,4.1,46.1,8.1,69.1,12.2V564.5z" class="st8"></path>%0A%09<g>%0A%09%09<path d="M1121,2361c0,0-98.3-110.7,84.2-222.1c-25.3,43.4-118,92.3-52.4,202.9%0A%09%09%09c27.1,62.9-12.8,89.7-12.8,89.7S1080.6,2436.5,1121,2361z" class="Graphic_x0020_Style_x0020_116"></path>%0A%09%09<g>%0A%09%09%09<path d="M1282.2,2470.4c-15.5,28.9-215.1,26.5-315.7,23.4c-1.1-4.4-2.1-8.7-3.1-13c-1.8-7.8-3.5-15.5-5-23.2%0A%09%09%09%09C1035.2,2452.4,1299.9,2437.2,1282.2,2470.4z" class="st9"></path>%0A%09%09%09<path d="M1282.2,2470.4l-16.7,216.9c-25.9,39.1-25.5,89.5-36,137.5c-4.3,22.7-20.4,30.2-38.6,29.2%0A%09%09%09%09c-39.4-34.1-82.1-74.2-124.2-119.9c-50-80.3-81.3-162.6-100.3-240.3C1067.1,2496.9,1266.7,2499.4,1282.2,2470.4z" class="st9"></path>%0A%09%09</g>%0A%09%09<g>%0A%09%09%09<path d="M1331.3,2151c12.7,12.2,30.7,16,43,17c5.5-2.7,11.1-5.7,16.6-8.9c24.3-13.9,39.8-38.8,49.7-66.7%0A%09%09%09%09c-16.1,5.8-51.8,17.4-67.4,11.2c-20.4-8.1-12.5-17.1-3-14.1c11.7,6,55.7-6.5,75.3-12.5c4.1-14.9,6.8-30.2,8.6-44.8%0A%09%09%09%09c-13.9,8.3-34.9,15.8-44.4,12.6c-12.3-4.2-7.4-14.4,2.7-13.2c7.4,0.8,31.4-12,43.6-18.8c2.2-29.7,0.8-53.4,0.4-59.6%0A%09%09%09%09c-0.1-1-0.1-1.6-0.1-1.6s-29-8.6-66.9-14.1c-8,8.1-19.9,20.8-24.9,29.3c-8,13.3-11.7,24.3-18.1,22.2%0A%09%09%09%09c-12.7-6.6,13.3-37.6,27.8-53.4c-16.5-1.8-34.1-2.9-51.4-2.3c-51.5,40.6-24.5,76.1-44.7,71.8c-17.5-3.7,13.5-51.5,26.6-70.5%0A%09%09%09%09c-16.3,1.8-31.9,5.4-45.3,11.6c-12.1,6.2-22.8,12.2-32.4,18.1c-14.5,34.4,20,53.7,1.7,57.9c-14.3,3.3-16.2-30.4-16.2-48.5%0A%09%09%09%09c-124.9,86.7,2.8,144.8,2.8,144.8c0.1,0.5,0.2,1,0.3,1.6c11.4,70.5,70.1,82,134.6,58.3c-10-8-28.1-22.8-31-26.1%0A%09%09%09%09C1315,2147.7,1321.1,2139.9,1331.3,2151z" class="st10"></path>%0A%09%09%09<path d="M1433.5,1969.4c0,0-146,112.4-218.2,149.3" class="st11"></path>%0A%09%09%09<path d="M1396.4,2051c0,0-33.9,4.5-68.8-3.9" class="st11"></path>%0A%09%09%09<path d="M1316.2,1996.6c0,0-20.5,49.4-10.8,65.9" class="st11"></path>%0A%09%09%09<path d="M1352,2122.6c0,0-59.6-20.8-79-38.4" class="st11"></path>%0A%09%09%09<path d="M1216.4,2052.4c0,0-4.7,37.9,18.4,55.6" class="st11"></path>%0A%09%09</g>%0A%09%09<g>%0A%09%09%09<path d="M882.7,2066.4c10.6,1.3,21,2.9,31.1,4.8c13.6,13.1,30.4,35.2,30.3,62.7c-1.8,23.8,15.4,19.7,16.3,10%0A%09%09%09%09c0.7-7-2.6-43-4.5-62.6c108.1,32.2,164.1,103.7,86.8,204.4c0,0,80.5,195.4-178.5,184.8c22.7-22.7,62.8-66.9,41.4-76.4%0A%09%09%09%09c-27.3-12.2-10,45.1-70.7,74.5c-19-1.7-39.5-4.4-61.7-8.2c-24-5.1-47.2-15.4-69.1-28.8c39.7-11.4,137-41.9,120.6-63.3%0A%09%09%09%09c-18.9-24.6-31,45.8-143.9,47.6c-21.5-15.8-41.4-33.9-58.9-52.1c37.3-6,107.4-20.1,100.5-40.6c-5.2-8.8-23.3,1.5-49.6,10.6%0A%09%09%09%09c-16.7,5.7-46.9,10.3-66.7,12.9c-38.7-43.2-62.7-81.8-62.7-81.8s30.7-35.6,77.3-76.8c23.3,3.1,68.1,9.9,76,18.1%0A%09%09%09%09c10.7,11.2,29.3,3.1,19.9-14.1c-7.3-13.2-42.1-23.8-69.1-26.7c20.4-16.6,42.9-33.2,66.6-48c31,11.1,99.6,37.5,106.2,56.3%0A%09%09%09%09c7.6,12.8,28.5,9,14.2-20.6c-10.9-22.7-68.4-42.4-95-50.5C786.1,2077.1,836.1,2060.7,882.7,2066.4z" class="st12"></path>%0A%09%09%09<path d="M593.2,2264.5c0,0,316.6-1.6,449.7,21.1" class="st13"></path>%0A%09%09%09<path d="M740.2,2197.3c0,0,46.4,26.9,77.7,70.8" class="st13"></path>%0A%09%09%09<path d="M768.3,2342.5c0,0,86.7-42.5,95.7-72.6" class="st13"></path>%0A%09%09%09<path d="M883.4,2149.7c0,0,45.4,83.2,46.7,123.9" class="st13"></path>%0A%09%09%09<path d="M958.3,2368c0,0,53.3-43.2,47.7-87.5" class="st13"></path>%0A%09%09</g>%0A%09%09<g>%0A%09%09%09<path d="M924,1810c7.6,5.4,14.9,11,21.8,16.7c4.5,17.1,7.4,43.4-5.2,67.8c-12.3,20.5,2.9,23.7,8,15.4%0A%09%09%09%09c3.7-5.9,17.7-39.3,25.2-57.5c68.8,71.8,79.4,157.7-26.4,216.5c0,0-27.1,205.9-222.4,93.1c27.9-11.1,79.1-34.4,67-51.4%0A%09%09%09%09c-15.5-21.8-28.3,36.1-88.6,38c-13.9-9.1-28.5-19.7-43.9-32c-16.2-14.1-29.4-32.6-40.2-53.2c35.9,5.7,125,17.5,122.1-8.1%0A%09%09%09%09c-3.3-29.5-44.9,28.3-132.9-15.1c-9.4-22.6-16.5-46.7-21.7-69.8c31.6,9.6,92.2,25,96.2,4c0-9.9-18.7-8-43.2-10.4%0A%09%09%09%09c-15.5-1.6-41-9.5-57.5-15.1c-10.2-53.9-11.1-97.8-11.1-97.8s40-19.4,94.8-37.4c16.6,12,48.1,36,50.4,46.4%0A%09%09%09%09c3.2,14.2,21.3,14.5,21.8-4.6c0.4-14.7-21.6-38-41.2-51.3c23.4-6.6,48.4-12.4,73.4-16.1c18.9,22.3,59.8,73.1,56.3,92.5%0A%09%09%09%09c0,14.5,17.9,19.4,20.4-12.7c1.9-24.5-33.5-65-50.3-82.8C844.5,1781,890.6,1786.3,924,1810z" class="st10"></path>%0A%09%09%09<path d="M609.7,1870.6c0,0,245.3,125,337.8,198.4" class="st11"></path>%0A%09%09%09<path d="M754.1,1869.5c0,0,23.6,42.4,27.7,94" class="st11"></path>%0A%09%09%09<path d="M709.4,2009.9c0,0,86.4-3.2,107.1-26.3" class="st11"></path>%0A%09%09%09<path d="M886.5,1884.4c0,0-2.9,92.1-20.5,128.9" class="st11"></path>%0A%09%09%09<path d="M844.5,2108.4c0,0,60.9-17.2,76.8-58.8" class="st11"></path>%0A%09%09</g>%0A%09%09<g>%0A%09%09%09<path d="M1245.1,1794.2c20.8-5.3,34.8-21,42.5-32.8c-0.2-7.2-0.7-14.6-1.4-22.1c-3.2-32.9-23.8-63.7-50.7-90.6%0A%09%09%09%09c-1.8,19.7-7.4,62.7-22.8,74.5c-20.1,15.5-26.4,2-17.9-5.6c13.2-8.1,22.1-59.9,25.4-83.2c-15-13.2-31.3-25.3-47.2-36%0A%09%09%09%09c2.2,19-0.2,44.7-9,52.2c-11.4,9.8-20.6-1.3-13.9-10.8c4.9-7,2.8-38.8,1.4-55.2c-33.1-20.3-61.3-33.5-68.7-36.8%0A%09%09%09%09c-1.2-0.6-1.9-0.9-1.9-0.9s-25.3,23.8-51.7,58.6c5.2,13,13.5,32.7,20.6,42.9c11.1,16.1,21.9,26.5,16,31.7%0A%09%09%09%09c-14.4,8.7-36.4-36.3-47-60.5c-10.9,15.5-21.4,32.5-29.9,50.2c19.7,76.5,74.9,71.1,59.3,88.7c-13.5,15.3-52.4-45-67.4-69.8%0A%09%09%09%09c-6.6,17.5-10.6,35.3-10.6,52.6c0.7,15.9,2,30.4,3.8,43.6c32.1,35.6,72.7,12.7,67.8,33.6c-3.8,16.4-43.7-2.3-64.6-13.4%0A%09%09%09%09c33.9,178.4,168.8,85.6,168.8,85.6c0.7,0.2,1.3,0.5,2,0.7c87.5,31.6,132-20.3,138.8-99.5c-14.6,5.1-41.3,14.3-46.7,15.2%0A%09%09%09%09C1232.6,1808.5,1226.7,1797.5,1245.1,1794.2z" class="st10"></path>%0A%09%09%09<path d="M1089.2,1580.6c0,0,52.5,215.2,56.8,310.2" class="st11"></path>%0A%09%09%09<path d="M1164,1667.7c0,0-12.8,36.8-41,66.6" class="st11"></path>%0A%09%09%09<path d="M1058.6,1715c0,0,46.2,50.8,70.4,51.1" class="st11"></path>%0A%09%09%09<path d="M1223.1,1755.9c0,0-55.6,47.1-86.3,55.9" class="st11"></path>%0A%09%09%09<path d="M1070,1849.3c0,0,41.4,27.9,74,15.4" class="st11"></path>%0A%09%09</g>%0A%09%09<path d="M1146.1,1890.8c0,0,14.8,158.8-25,350.6" class="st14"></path>%0A%09%09<path d="M937.7,2061.4c0,0,170.2,50.3,183.3,183.5" class="st14"></path>%0A%09%09<path d="M1029.4,2285.6c13.6-4.9,80.6-4.6,99.5,8.8" class="st14"></path>%0A%09%09<path d="M1223.3,2114.4c0,0-98.3,30.9-77.3,232.1" class="st14"></path>%0A%09</g>%0A%09<g>%0A%09%09<path d="M2812.2,2216.6c0,0,60.8,180.6,68.3,350.2c-193.8,44.1-832.8-6.2-832.8-6.2%0A%09%09%09s14-297.1,80.4-332.6C2416.5,2250.4,2812.2,2216.6,2812.2,2216.6z" class="Graphic_x0020_Style_x0020_110"></path>%0A%09%09<path d="M2880.5,2566.9c-7.5-169.6-68.3-350.2-68.3-350.2s-395.8,33.8-684.1,11.4%0A%09%09%09c-17.2,9.2-30.9,36-41.7,70.6c61.5,25.5,298.6,104,672.8-9.3c-4.1,90.6,73.5,94.8,73.5,94.8c12.1,42.2,11.5,131.9,9.7,189.5%0A%09%09%09C2856.4,2571.7,2869.2,2569.4,2880.5,2566.9z" class="Graphic_x0020_Style_x0020_116"></path>%0A%09%09<path d="M2025.5,1497.7c-85.5,55.5-169,100.9-241.9,164.1c7.6,4.2,13.3,9.3,16.2,15.7%0A%09%09%09c0,0,180.9-97,314-235c-1,0.6-1.9,1.2-2.9,1.8C2081.6,1463,2054.9,1479,2025.5,1497.7z" class="Graphic_x0020_Style_x0020_120"></path>%0A%09%09<path d="M2229.4,1095.4c-25.7-0.9-176.5,78.1-272.1,168.2c-95.6,90.1-340.3,323.9-337.5,369.2%0A%09%09%09c19.6,10.4,121.7,5.7,163.9,29c72.9-63.1,156.4-108.6,241.9-164.1c29.4-18.7,56.1-34.7,85.5-53.4c0.9-0.7,1.9-1.2,2.9-1.8%0A%09%09%09c13.7-14.2,26.8-28.8,39.2-43.8C2153.1,1398.7,2255.2,1096.3,2229.4,1095.4z" class="st15"></path>%0A%09%09<path d="M2771.6,1674.1c-70.5,28.9-142.4,50.7-222.4,50.7c-37.4,0-80.1,18.7-104.2,53.4%0A%09%09%09c-61.4,98.9-133.6,184.3-232.4,229.8c-32.1,14.6-74.5,15.6-110.7,1.8c-16.7,87.9-31.4,153-31.4,153s68.3,148.9,349.6,142.7%0A%09%09%09c281.3-6.2,397.1-37.2,407.5-93.1C2841.2,2157.3,2787.4,1837.7,2771.6,1674.1z M2709.5,2042.7v-2.7V2042.7z" class="Graphic_x0020_Style_x0020_120"></path>%0A%09%09<path d="M2767.4,1598.2c4.1-101.3,24.8-260.6-97.2-366.1c-122-105.5-384.9-173.4-473.5-126.7l-76.5,292.8%0A%09%09%09c11.8,55.4,25.9,140.8,27.6,239.6c1.7,97.6-23.8,254.9-46,372c36.3,13.8,78.6,12.7,110.7-1.8c98.9-45.4,171-130.9,232.4-229.8%0A%09%09%09c24-34.7,66.8-53.4,104.2-53.4c80,0,151.9-21.8,222.4-50.7C2768.4,1641.5,2766.7,1615.1,2767.4,1598.2z" class="st15"></path>%0A%09%09<path d="M2357.9,1064.1c0,0-9-52.4-22.1-33.8c-13.1,18.6-10.3,92.4,9,98.6" class="st16"></path>%0A%09%09<path d="M2626.6,1195.8c5.3-16-5.3-34.7-24-34.7c-74.8,5.3-155,13.4-224.4-18.7c-23.9-11-31.4-34.7-32.8-58.9%0A%09%09%09c-12.4,46.4-71.3,284.2,13.2,332.7c71.4,40.9,184.3-8.4,256.1-105.5C2581,1285.5,2613.8,1234.5,2626.6,1195.8z" class="st16"></path>%0A%09%09<path d="M2517.2,949.8c-125.5-23.1-169.6,125.8-169.6,125.8s-0.8,2.8-2.2,7.9%0A%09%09%09c1.4,24.2,8.9,47.9,32.8,58.9c69.5,32.1,149.6,24,224.4,18.7c18.7,0,29.4,18.7,24,34.7c-12.9,38.6-45.6,89.7-12,114.9%0A%09%09%09c22.5-30.4,41-65.6,52.8-104.1C2717.1,1045.3,2621.6,969,2517.2,949.8z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M2650.9,1208c2.1-1.4,41.5-29.8,53.8,4.1c10.6,31.7-40.8,91.7-77.6,80.7l-7.2-3.4" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M2641.7,1253.5c0,0,22.4-60.7,39.3-38c16.9,22.7-50.4,66.6-53,66.6C2625.5,1282,2641.7,1253.5,2641.7,1253.5%0A%09%09%09z" class="st16"></path>%0A%09%09<path d="M2695.3,1256.7L2573,1608.5c0,0-4.1,73.6,8.3,89.5c-74.5,98.7-223.4,363.4-223.4,363.4%0A%09%09%09c93.1,24.8,111.9,120,92.1,155.1c108.5-97.2,400.1-407.5,406.4-575C2879.1,1534.1,2854.6,1361.8,2695.3,1256.7z" class="st15"></path>%0A%09%09<path d="M2837.6,1430.3c30.9,169.9,7.7,183.1-75,353.6%0A%09%09%09c-61.7,127.1-230.6,287.4-312.6,360.9c9.9,28.2,8.9,56.1,0,71.9c108.5-97.2,400.1-407.5,406.4-575%0A%09%09%09C2868.7,1583.2,2867.1,1505.7,2837.6,1430.3z" class="Graphic_x0020_Style_x0020_114"></path>%0A%09%09<path d="M2680.8,1197.5c-6.7,0-12.5,1.5-17.3,3.9c-21.5,10.5-26.4,38.8-26.4,38.8s-8.9,23.1-16.3,12.6%0A%09%09%09c-0.8-1.2-1.6-2.7-2.3-4.8c18.6-24.8,18.6-85.5,11.7-103.4c-6.9-17.9-99.3,26.2-212.3-13.8c-68.9-29.9-68.1-84.2-59.4-118%0A%09%09%09c4.5-17.6,11.1-29.6,11.1-29.6c8.7-20.6,14.7-76,34.2-70.3c40.6,11.7,106.8-29.1,164.9-24.4c49.8,4.1,97.3,36.1,128.3,67.6%0A%09%09%09c18.2,18.5,30.7,36.8,34.4,49.1C2741.5,1038.4,2700.5,1163.4,2680.8,1197.5z" class="st17"></path>%0A%09%09<path d="M2759.2,2289.4c0,0-18.6,62.6,23.2,86c41.8,23.4,50.2,8.7,50.2,8.7S2751.6,2373.8,2759.2,2289.4z" class="st9"></path>%0A%09%09<path d="M1712.9,1890.5c-52.6-85.2-72.3-184.5-63.6-284.7c-5.7,3.2-11.6,6.9-17.5,11%0A%09%09%09c0,0-40.7,64.1,46.2,255.8c-60.7,57.2-63.2,76.8-57.8,148.5c3.8,6,7.7,11.4,11.8,16.3C1628.4,1981.4,1663.8,1922.1,1712.9,1890.5z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M1827.7,1946.4c-2.8-88.2-44.1-69.6-38.6-133.1c5.5-63.4,12.4-109.6,15.9-150.3%0A%09%09%09c3.3-38.4-60.9-110.4-155.6-57.2c-8.8,100.2,10.9,199.5,63.6,284.7c-49.2,31.6-84.5,91-80.9,146.9c42.1,50.6,95,40.7,95,40.7%0A%09%09%09s40.7-51,44.8-68.3c11.7,0.7-32.4,71-32.4,71s7.6,14.2,24.1,13C1780.1,2092.5,1830.4,2034.6,1827.7,1946.4z" class="st16"></path>%0A%09%09<path d="M1679.1,1995l-15.9,55.8c0,0,23.8-50.3,29.3-72C1698.1,1957.1,1679.1,1995,1679.1,1995z" class="st18"></path>%0A%09%09<path d="M1719.7,2081.7c0.5-1.4,56.1-102.4,65.3-88.7c9.2,13.7-42,92.4-42,92.4s-5.3,3.1-3.5-4.7%0A%09%09%09c1.8-7.8,42.7-68.9,35.4-68.5c-7.4,0.5-44.1,60.7-47.8,65.7S1719.7,2081.7,1719.7,2081.7z" class="st18"></path>%0A%09%09<path d="M1686.9,2067.8c0,0,33.5-83.7,43.3-79.9c9.8,3.9-39.4,83.3-39.4,83.3L1686.9,2067.8z" class="st18"></path>%0A%09%09<path d="M1653.4,1961.3c0,0-15.7,62.3-15.2,75C1645.6,2045.3,1657.7,1960.6,1653.4,1961.3z" class="st18"></path>%0A%09%09<path d="M1761.8,2227.6c-54.2-19.3-110.3-23.2-166.4-38.7c-0.1,0-0.2-0.1-0.3-0.1c8.4,8.6,16.7,17.2,25.1,25.7%0A%09%09%09c53.2,60.7,288.8,91.2,288.8,91.2s-10.9-9.9-72.5-89.2c-8.1,3.7-16.2,7.5-24.4,11.1C1796.6,2235.3,1777.3,2233.4,1761.8,2227.6z" class="st19"></path>%0A%09%09<path d="M1267.8,1860.2c0,0,164.6,162.1,327.3,328.6c0.1,0,0.2,0.1,0.3,0.1c56.1,15.5,112.2,19.3,166.4,38.7%0A%09%09%09c15.5,5.8,34.8,7.7,50.3,0c8.2-3.6,16.4-7.4,24.4-11.1c-33.8-43.5-82.8-108-153.6-203.3%0A%09%09%09C1514.7,2038.1,1267.8,1860.2,1267.8,1860.2z" class="st20"></path>%0A%09%09<path d="M1894.6,2339.3c-53.4,8-106.9,10.7-163-2.7c-19-4.7-34.6-13.9-48.5-25.2%0A%09%09%09c15.8,36.7,102.7,87.4,133.9,82.8c31.7-4.6,303.8-96.5,339.7-99.3c35.9-2.8,272.6-59.4,293.2-78.4c6.2-5.7,10.6-21.4,10.5-40.6%0A%09%09%09c-161,58-322,87.3-483.1,141.9C1950.7,2325.9,1921.3,2334,1894.6,2339.3z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M2357.9,2061.5c-149.6,34-453,200.5-549.1,192.3c0,0-60.2,7.5-96.1-8.3c-35.9-15.8-83.7-37.4-96.5-28.9%0A%09%09%09c-10.2,6.8,29.5,56.4,52.7,80.6c6,6.2,10.8,10.8,13.5,12.5c0.2,0.6,0.5,1.1,0.7,1.7c13.9,11.3,29.5,20.5,48.5,25.2%0A%09%09%09c56.1,13.4,109.5,10.7,163,2.7c26.7-5.3,56.1-13.4,82.8-21.4c161-54.5,322-83.8,483.1-141.9%0A%09%09%09C2460.3,2131.9,2436.5,2068.5,2357.9,2061.5z" class="st16"></path>%0A%09</g>%0A%09<path d="M5147.8,2758.7c3.3,42.6-104.8,129-220.1,160.2c-111.1,40.4-316.5,84.1-839.1,218.8%0A%09%09c-356.5,91.9-571.8,151.6-716.6,186.6c-191.1,46.2-259.5,49.2-368,26c-51.4-11-96.9-24.7-137.9-40%0A%09%09c-255-95.3-339.6-255.1-634.7-236.4c-200.1,12.7-322,96.2-560,42.5c-136.3-30.7-235.9-89.6-304.8-131.1%0A%09%09c0,0-186.3-112.1-344.2-301.7c-39.9-42.2-73.3-85.6-94.5-130.9l1061.8-81.6L5147.8,2758.7z" class="Graphic_x0020_Style_x0020_118"></path>%0A%09<polygon points="1909,2627.9 2329.7,2696.9 2880.5,2648.9 2839.9,2636 1902.2,2607.7 1873.4,2616.7" class="st21"></polygon>%0A%09<path d="M2902.4,2554.2c0,0,128.1,29.9,198.1,36.5c16.9,26,103.7,26.1,139.2,31.4c35.5,5.3,64.9,60.1,137.9,65%0A%09%09c73,4.9,88.9,32.2,118.2,30.1c29.2-2.1,39.1-54.7,49.7-59.9c10.6-5.2-32-38.9-10.7-45.5C3396.5,2597.2,2902.4,2554.2,2902.4,2554.2%0A%09%09z" class="st21"></path>%0A%09<path d="M3668.6,2761.4c39.6,3,90.3-36.8,169.2-23.5c88.5,14.9,307.2,32.5,354.3-1.4%0A%09%09c61.3,3.3,696.2,65.4,749.1,44.1c52.9-21.3,68-34.5,68-34.5l-1182-107.2c0,0-299.4,44.5-286.7,84.2%0A%09%09C3547.2,2749,3629,2758.4,3668.6,2761.4z" class="Graphic_x0020_Style_x0020_117"></path>%0A%09<path d="M3779.6,3218.3c-115.9-48.9-340.1-136.6-484.1-148c-201.1-15.9-340.3-109.9-337.2-157.7%0A%09%09c3.1-47.8-605.8-113-946.8-126.3c-204.7-8-676.2-112.3-330.9-291.5l-79,6.1c-81.3,57.9-200.4,165.5-77.3,230.8%0A%09%09c174.8,92.7,1373.9,95.9,1387.8,212c13.2,110.3,575.5,195.9,765.9,301.5C3710,3236.7,3743.7,3227.7,3779.6,3218.3z" class="st22"></path>%0A%09<g>%0A%09%09<path d="M4484.2,1461.7v1181h488.7v-1181H4484.2z M4939.2,2561.4h-421.4v-539.8h421.4%0A%09%09%09V2561.4z M4939.2,1982.4h-421.4v-485.5h421.4V1982.4z" class="Graphic_x0020_Style_x0020_107"></path>%0A%09%09<rect height="485.5" width="355.8" class="Graphic_x0020_Style_x0020_118" y="1496.9" x="4583.5"></rect>%0A%09%09<rect height="485.5" width="65.6" class="Graphic_x0020_Style_x0020_119" y="1496.9" x="4517.8"></rect>%0A%09%09<rect height="539.8" width="80.1" class="Graphic_x0020_Style_x0020_119" y="2021.5" x="4517.8"></rect>%0A%09%09<rect height="539.8" width="341.3" class="Graphic_x0020_Style_x0020_118" y="2021.5" x="4597.9"></rect>%0A%09%09<polygon points="5067.7,1559.5 4972.9,1461.7 4975.8,2765.4 5070.3,2765.4" class="Graphic_x0020_Style_x0020_110"></polygon>%0A%09</g>%0A%09<g>%0A%09%09<polyline points="2442.7,2752.3 2386.8,2825.9 2352.6,2827.7 2416.8,2743.1 2832.6,2738.3 %0A%09%09%092839.9,2747.7" class="Graphic_x0020_Style_x0020_117"></polyline>%0A%09%09<polygon points="2832.6,2738.3 2416.8,2743.1 2352.6,2827.7 2134.5,2839.2 2105.5,2724.6 %0A%09%09%092798.5,2694.4" class="Graphic_x0020_Style_x0020_117"></polygon>%0A%09%09<polygon points="3202.8,2854.8 2364.9,2854.8 2386.8,2825.9 2442.7,2752.3 2839.9,2747.7 %0A%09%09%093134.1,2744.3" class="Graphic_x0020_Style_x0020_117"></polygon>%0A%09%09<polygon points="2839.5,2730.9 2805.3,2687.1 2112.4,2717.2 2141.4,2831.8 2359.4,2820.3 %0A%09%09%092393.7,2818.5 2449.6,2745 2846.8,2740.3" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09%09<polygon points="3202.8,2848.8 2364.9,2848.8 2386.8,2819.9 2442.7,2746.3 2839.9,2741.7 %0A%09%09%093134.1,2738.3" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09</g>%0A%09<g>%0A%09%09<path d="M3326.7,2053.5c67.2,11.8,127,45.4,188.5,75.5c-25.6-21.6-54.4-38-66.9-44.7c-69.9-65-238.4-55.8-331.3-54.5%0A%09%09%09c-56.7,0.8-107.4,28.8-147.4,65.5C3076.9,2034.1,3204.5,2033.1,3326.7,2053.5z" class="st23"></path>%0A%09%09<path d="M3390.7,2125.6c29.4,10.7,40.1,48.1,64.1,69.5c33.5,30.3,76.4,36.8,117.6,27.5c-4-13-8.3-25.7-12.8-37.7%0A%09%09%09c-7.5-20.2-25.1-39.4-44.4-55.7c-61.4-30.2-121.3-63.8-188.5-75.5c-6.7-1.1-13.5-2.2-20.2-3.1c2.5,4.5,4.8,9.1,6.8,13.8%0A%09%09%09c6.9,18.8,10.9,38,12.4,57.2C3347.5,2119.7,3369.7,2120.3,3390.7,2125.6z" class="st23"></path>%0A%09%09<path d="M3454.8,2195c-24-21.4-34.7-58.8-64.1-69.5c-21.1-5.3-43.3-5.9-65.1-4.2c6.4,84.5-36.4,169.9-95.2,228.6%0A%09%09%09c-29.4,32.1-61.4,58.8-101.5,82.8c-32.1,21.4-66.8,37.4-101.5,53.4c-41.6,14.5-81.5,4.8-119.8-10.2c3.7,32.6,11.1,70.7,27.1,85.4%0A%09%09%09c2.2,2,149.9,56.5,246.1,29.3c130.3-36.9,227.4-163.5,314.2-210.2c10.9-5.9,21.4-12.4,31.4-19.5l-0.4-14l53.6-33.2%0A%09%09%09c3.8-4.2,7.6-8.5,11.2-12.9c-4.1-26.8-10.7-53.3-18.4-78.3C3531.3,2231.8,3488.3,2225.3,3454.8,2195z" class="st24"></path>%0A%09%09<path d="M2963.9,2113.7l-74.4,244.3c3.2,19.6,7.7,41,13.7,64.4c0.8-0.5,1.1,24.3,4.3,53.6%0A%09%09%09c38.3,15.1,78.3,24.8,119.8,10.2c34.7-16,69.5-32.1,101.5-53.4c40.1-24,72.1-50.8,101.5-82.8c65-65,110.5-162.6,91.4-255.6%0A%09%09%09C3210,2135.2,3083,2108.6,2963.9,2113.7z" class="st25"></path>%0A%09%09<path d="M3321.8,2094.4c-2.1-10.2-4.9-20.2-8.6-30.2c-2-4.6-4.2-9.2-6.8-13.8c-116-16.9-235.4-12.9-336.9,44.9%0A%09%09%09l-5.6,18.4C3083,2108.6,3210,2135.2,3321.8,2094.4z" class="st26"></path>%0A%09%09<path d="M3590.8,2300.8c-3.6,4.4-7.4,8.7-11.2,12.9l12-7.5C3591.4,2304.4,3591.1,2302.6,3590.8,2300.8z" class="st9"></path>%0A%09%09<g>%0A%09%09%09<path d="M3452.4,2090.3c-50.3-112.2-85.1-243.7-193.4-309.5c-17.4-9.7-50.3-13.5-71.6,3.9%0A%09%09%09%09c-34.5,27-36.4,68-35.6,109.5c51.1,42.2,96.7,74.2,118.4,75.2c65,3,117,150.1,192.8,215.4c35.5,30.6,78.2,23.7,113.6,7.7%0A%09%09%09%09c-19.8-3.7-39.3-11.4-54.6-19C3487.2,2158,3467.9,2123.1,3452.4,2090.3z" class="Graphic_x0020_Style_x0020_116"></path>%0A%09%09%09<path d="M3489,1994.5c-13.8-96.5-49-197.2-111.1-242.1c-62.1-44.9-38.1-160-114.8-199.7%0A%09%09%09%09c-190.3-102-287.5,4.8-333,55.2c-45.5,50.3-4.1,77.2-4.1,77.2s123.9,124.8,225.9,209c-0.9-41.4,1-82.4,35.6-109.5%0A%09%09%09%09c21.3-17.4,54.2-13.5,71.6-3.9c108.3,65.8,143.1,197.3,193.4,309.5c15.5,32.9,34.8,67.7,69.6,83.2c15.3,7.7,34.8,15.3,54.6,19%0A%09%09%09%09c40.3-18.2,71.2-48.2,71.2-48.2S3502.8,2091.1,3489,1994.5z" class="Graphic_x0020_Style_x0020_108"></path>%0A%09%09%09<path d="M3182.3,2144.3c-13.4-74.8,34.7-189.7-58.8-221.7c-16-61.4,5.3-128.2-37.4-184.3%0A%09%09%09%09c-33.7-46.4-75.8-81.1-127.5-97.6c-15.4,4-42.2,14-46.3,24.6c-13.8,35.6-24.4,108.3-3.6,195.1c19.9,94,53.6,191.2,151.7,162.7%0A%09%09%09%09c51,68.9,51,103.4,48.3,128.2c25.3,30.5,60,37.2,94.1,32.1C3192.8,2173.6,3185.5,2160.8,3182.3,2144.3z" class="st16"></path>%0A%09%09%09<path d="M3314.2,2124.9c-5.5-129.6-75.8-207-93.8-211.7c30.3-46.1,33.1-82-6.9-106.8%0A%09%09%09%09c-40-24.8-57.9,67.6-57.9,67.6s-19.3,18-16-3.3c17.7-114.7-62.5-214-170.5-231.9c-1.2-0.2-5.1,0.5-10.4,1.9%0A%09%09%09%09c51.7,16.5,93.8,51.2,127.5,97.6c42.7,56.1,21.4,122.9,37.4,184.3c93.5,32.1,45.4,146.9,58.8,221.7c3.1,16.5,10.5,29.3,20.4,38.9%0A%09%09%09%09C3250.3,2176,3296.5,2145.8,3314.2,2124.9z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09%09<path d="M2969,1635.8c0,0,75.2,27.2,72.4,70.7c-2.8,43.5-9.8,77.5,56.3,98.1c-31.6-35.6-34.2-44-26.9-86.3%0A%09%09%09%09S3035.8,1587.8,2969,1635.8z" class="st17"></path>%0A%09%09%09<path d="M2789.6,2288.5c-77.5,101.5-203,106.9-323.3,128.2c-27.7,5.9-43.7,28.1-64.3,43.4%0A%09%09%09%09c7.2,13.8,19.1,27.9,28,39.8c0.5-0.1,1.1-0.3,1.6-0.4c159.5-16.7,359.4-29.1,470.9-150.7l-0.1-16l61-218.3%0A%09%09%09%09c-27.4,9-56.1,12.8-77.6,32.4C2837.7,2184.3,2824.3,2243.1,2789.6,2288.5z" class="st25"></path>%0A%09%09%09<path d="M3017.4,2050.7c-17.9,4.3-35.5,9.7-52.8,16.1c-58.6,21.8-113.1,55-149.7,106.6%0A%09%09%09%09c-16.4,23.2-29.7,48.3-42.2,73.7c-5.8,11.7-11.7,21.5-19.5,31.9c-8.1,10.8-17.8,20.2-27.8,29.2c-21.9,19.5-47.7,34.4-75.4,44.1%0A%09%09%09%09c-33.1,11.6-67.9,16.1-101.5,25.4c-82.7,23-147.1,41.1-152.6,60.5c-0.2,7,2.3,14.5,6.2,22c20.6-15.4,36.6-37.5,64.3-43.4%0A%09%09%09%09c120.2-21.4,245.8-26.7,323.3-128.2c34.7-45.4,48.1-104.2,96.2-141.6c21.5-19.6,50.2-23.4,77.6-32.4l5.1-18.3%0A%09%09%09%09c11-10.8,16.7-15,29.5-24.1c14.7-10.5,30.5-19.7,47.1-26.7c0.1-0.2,0.2-0.4,0.3-0.6C3036,2046.5,3026.6,2048.4,3017.4,2050.7z" class="st23"></path>%0A%09%09%09<path d="M3045.4,2044.9c-0.1,0.2-0.2,0.4-0.3,0.6c0.7-0.3,1.4-0.6,2.1-0.9%0A%09%09%09%09C3046.6,2044.7,3046,2044.8,3045.4,2044.9z" class="Graphic_x0020_Style_x0020_100"></path>%0A%09%09%09<path d="M2431.6,2499.6c-0.5,0.1-1.1,0.3-1.6,0.4c0.9,1.2,1.8,2.4,2.6,3.6c10.8,15.3,7.8,45,49.1,42.6%0A%09%09%09%09c30.8-6,230-18.7,273.3-29.7c32-8.2,82.2-26.3,148.2-94.1l-0.7-73.5C2791,2470.5,2591.1,2482.9,2431.6,2499.6z" class="st24"></path>%0A%09%09%09<path d="M2398.2,2439.8c0,0,40.7-31.7,69.6,4.1c29,35.9,49.3,96,29,100.7c-20.4,4.6-65.8,2.1-87-35.2%0A%09%09%09%09C2388.5,2472.2,2387.5,2454.3,2398.2,2439.8z" class="st27"></path>%0A%09%09%09<path d="M3350.7,1877.1c18.7-58.6,71.9-104,69.5-165.2c-4.1,1.2-8.2,5.1-10.8,12.5c-7.6,21.4-71.4,103.8-71.4,103.8%0A%09%09%09%09s0,0,3.8-22.1s1.4-35.5-9.7-36.9c-11-1.4-18.3,10.3-18.3,10.3c1-31-13.4-29.3-23.4-27.6c-10,1.7-9.3,51.4-10,64.8%0A%09%09%09%09c-0.7,13.4-15.2,26.9-20-4.1c-2.8-35.9-40.7-71.7-51.7-66.9c-11,4.8,14.8,62,13.1,94.5c-1.7,32.4-20,100.7-5.5,148.2%0A%09%09%09%09c14.5,47.6-3.4,102-3.4,102l85.3,21.2c4.2-67.5,4.5-134.6,44.5-197.1C3350.7,1903.8,3348,1890.5,3350.7,1877.1z" class="st16"></path>%0A%09%09%09<path d="M3420.1,1711.9c2.4,61.2-50.8,106.6-69.5,165.2c-2.7,13.4,0,26.7-8,37.4%0A%09%09%09%09c-40,62.5-40.2,129.7-44.5,197.1l22.9,5.7c0,0-3.5-115.8,17.2-141.3c20.7-25.5,15.2-80,25.3-108.9c10.1-29,71.3-117.9,72-137.2%0A%09%09%09%09C3436,1717.3,3427.9,1709.7,3420.1,1711.9z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09%09<path d="M3305.2,1839.7c-0.4,0.9,11-56.8,9-67.2c4.3,1.6,4.3,1.6,4.3,1.6S3312.8,1824.1,3305.2,1839.7z" class="st9"></path>%0A%09%09%09<g>%0A%09%09%09%09<polygon points="2369.1,2558.8 2880.5,2623.2 2325,2668.2 1891.1,2604.1" class="Graphic_x0020_Style_x0020_115"></polygon>%0A%09%09%09%09<polygon points="2264.3,2566.5 2626.8,2624.8 2334.4,2648.9 2170.4,2611.3" class="Graphic_x0020_Style_x0020_109"></polygon>%0A%09%09%09%09<path d="M2421.8,2452.1c-5.6-0.2-22.6,8.6-22.6,8.6s-13.8-44.1-80.7-43.4s-64.8,65.5-64.8,65.5s5.5,77.2,26.9,93.1%0A%09%09%09%09%09c21.4,15.9,99.3,4.1,102.4,0c3.1-4.1,45.3-6.9,66.9-30.3c21.6-23.4,33.5-24.4,33.5-24.4S2463.5,2453.5,2421.8,2452.1z" class="st16"></path>%0A%09%09%09%09<path d="M2319.3,2460c0,0-45.5,32.4-15.2,90.3c-6.8,0.6-6.8,0.6-6.8,0.6%0A%09%09%09%09%09S2262.7,2493.1,2319.3,2460z" class="Graphic_x0020_Style_x0020_104"></path>%0A%09%09%09%09<path d="M2376.8,2552.2c0,0-56.9-11.2-43.1-33.6c13.8-22.4,45.5-15.9,46.9-24.5%0A%09%09%09%09%09c1.4-8.6-15.9-23.8-21.7-14.5c-5.9,9.3-15.5,25.2-15.5,25.2s-24.1,6.2-17.9,23.1c6.2,16.9,33.8,15.5,6.2,16.9%0A%09%09%09%09%09c-27.6,1.4-39.6,0-39.6,0s-7.4,36.2,7.3,37.5c14.7,1.4,61.6,6.9,105-10.3c43.4-17.2,43.8-24.7,43.8-24.7%0A%09%09%09%09%09S2401.3,2559.2,2376.8,2552.2z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09%09%09<polygon points="2331,2682 2848.1,2642 2880.5,2623.2 2322,2668.2 1885.6,2604.1 %0A%09%09%09%09%091893.9,2613.5" class="Graphic_x0020_Style_x0020_109"></polygon>%0A%09%09%09%09<path d="M1784.9,2001.5l427.1,0.5l15.9,3c18.3,3.5,31.9,18.7,33.5,37.3c9.9,120.2,38.5,538.8,42.7,616.9%0A%09%09%09%09%09c0.3,6.5-11.2,15-17.7,14.2l-444.6-65.8L1784.9,2001.5z" class="st28"></path>%0A%09%09%09%09<path d="M1794.6,1993.3l411.5,8.2c15.8,0.3,28.8,12.5,30.1,28.3c10.4,126.7,52.8,644.5,49.2,643.3%0A%09%09%09%09%09c-3.6-1.2-348.6-51.6-443.5-65.4c-14.1-2.1-24.9-13.4-26.2-27.6l-52.4-553C1761.5,2008.7,1776.2,1992.9,1794.6,1993.3z" class="st29"></path>%0A%09%09%09</g>%0A%09%09%09<path d="M3465.5,2285.9c-5.8-29.1-28.6-54-57-68.5c9.3,57-21.2,85.5-21.2,85.5c-6.8,3.4-40.2,78.1-48.3,71.7%0A%09%09%09%09c-4.1-3.3-5.8-14.7-6.3-29.4c-17.3-67.3-4-136.5-11.5-203.5c-2.3-18.1-0.7-36.2-6.7-52.6c-6.5-5.5-15.7-10.3-27.9-14.4%0A%09%09%09%09c0.8,120.3-17.7,240.4,10.5,355.6c8,37.4,77.5,16,112.2-8C3452.2,2392.7,3478.9,2339.3,3465.5,2285.9z" class="st24"></path>%0A%09%09%09<path d="M3332.7,2345.1c-0.9-27.1,2.3-65.1,1.7-83.5c-0.9-28.4,4.6-84.2-6.4-147.7c-0.5-9.3-4.6-17.6-13.4-24.9%0A%09%09%09%09c5.9,16.5,4.4,34.5,6.7,52.6C3328.7,2208.5,3315.4,2277.8,3332.7,2345.1z" class="st27"></path>%0A%09%09%09<path d="M3591.6,2306.2l-189.3-113.8c2.9,8.8,4.9,17.1,6.2,24.9c28.4,14.5,51.2,39.4,57,68.5%0A%09%09%09%09c4.9,19.6,4.4,39.1-0.3,57.5c36.8,33.3,76.9,62.3,118.5,89.3C3596.9,2393.5,3597.6,2349.6,3591.6,2306.2z" class="st24"></path>%0A%09%09%09<path d="M3226.7,2062.8c-4.2-0.5-8.6-0.9-13.2-1.3c-89.6,102-96.5,485.4-63.4,524c10.1,11.8,36.5,17.9,71.6,18.6%0A%09%09%09%09c-2.7-1.6-5.1-3.5-7.3-5.6C3080,2450.9,3137.9,2222.8,3226.7,2062.8z" class="st23"></path>%0A%09%09%09<path d="M3465.3,2343.4c-8.1,31.8-28.7,60.1-55.8,78.8c-34.7,24-104.2,45.4-112.2,8%0A%09%09%09%09c-28.2-115.2-9.7-235.3-10.5-355.6c-15.1-5.1-34.8-9.1-60-11.8c-88.8,160-146.7,388.1-12.3,535.7c2.1,2.1,4.6,4,7.3,5.6%0A%09%09%09%09c79.8,1.5,205-25.2,288.3-77.9c38.4-24.3,61.5-56.9,73.7-93.5C3542.2,2405.6,3502.1,2376.6,3465.3,2343.4z" class="st25"></path>%0A%09%09</g>%0A%09%09<path d="M3123.6,1922.5c3.2,5.9-36.5,92.1-63.1,100.4c35,56.6,28,41.3,37.6,63.1c63.2-44,78.1-61.9,78.3-92.2%0A%09%09%09C3177.1,1914.4,3123.6,1922.5,3123.6,1922.5z" class="st30"></path>%0A%09</g>%0A%09<g>%0A%09%09<path d="M3972.8,2436.5c-19.3-100.6-1.9-197.3,30.9-292.1c1.9-7.7,9.7-13.5,11.6-23.2%0A%09%09%09c13.5-58,34.8-108.3,58-160.5c1.9-7.7,1.9-15.5,3.9-23.2c1.5-4.4,6.3-7.7,9.3-11.5c-108.6,18.8-247.9,49.9-313.3,64.9%0A%09%09%09c22.2,33.7,40.9,69.3,52.5,109.1c3.9,7.7,13.5,13.5,17.4,21.3c3.9,5.8,0,11.6,3.9,17.4c11.6,15.5,21.3,29,25.1,48.4%0A%09%09%09c1.9,3.9,7.7,5.8,7.7,9.7c0,94.8,7.7,189.6,0,284.3c-6.7,72.9-22.6,143.8-37.3,214.7c84.9-0.2,183-1.6,281.4-2.7%0A%09%09%09c-52.2-58.4-91.1-128-129.9-198.4C3984.4,2475.2,3976.6,2455.8,3972.8,2436.5z" class="Graphic_x0020_Style_x0020_114"></path>%0A%09%09<path d="M4194.9,2483.6c82.8-18.7,163-5.3,237.8,48.1c8,8,26.7,5.3,37.4,0%0A%09%09%09c58.6-34.6,128.4-61.3,198-68.7c-150.8-225.4-393-546.7-446.5-551.9c-23.2-2.2-74.3,4.4-135,14.8c-3.1,3.9-7.9,7.1-9.3,11.5%0A%09%09%09c-1.9,7.7-1.9,15.5-3.9,23.2c-23.2,52.2-44.5,102.5-58,160.5c-1.9,9.7-9.7,15.5-11.6,23.2c-32.9,94.8-50.3,191.5-30.9,292.1%0A%09%09%09c3.3,16.6,9.5,33.3,17.3,49.9C4050.6,2508.5,4130.6,2499.3,4194.9,2483.6z" class="Graphic_x0020_Style_x0020_105"></path>%0A%09%09<path d="M4470.1,2531.7c-10.7,5.3-29.4,8-37.4,0c-74.8-53.4-155-66.8-237.8-48.1%0A%09%09%09c-64.3,15.7-144.3,24.9-204.8,2.8c1.3,2.7,2.6,5.4,3.9,8.1c38.9,70.4,77.7,140.1,129.9,198.4c233-2.6,467.2-3.9,529.1,13.9%0A%09%09%09c110.3,31.7,131,20.7,137.9-30.3c2.3-16.7-49.5-103.7-123-213.5C4598.5,2470.4,4528.6,2497,4470.1,2531.7z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09%09<path d="M3879.9,2196.6c0-3.9-5.8-5.8-7.7-9.7c-3.9-19.3-13.5-32.9-25.1-48.4c-3.9-5.8,0-11.6-3.9-17.4%0A%09%09%09c-3.9-7.7-13.5-13.5-17.4-21.3c-11.6-39.8-30.4-75.4-52.5-109.1c-23.2,5.3-37.1,8.6-37.1,8.6s-76.6,50.8-73.5,108.1%0A%09%09%09c3.1,57.3,7.7,545.5-0.1,585.4c44.9,2.2,107.7,2.8,180,2.6c14.8-70.9,30.6-141.8,37.3-214.7%0A%09%09%09C3887.6,2386.2,3879.9,2291.4,3879.9,2196.6z" class="st31"></path>%0A%09%09<path d="M3622.6,2308.8c7.7-30.9,11.6-63.8,40.6-85.1c3.9-3.9,1.9-9.7,5.8-13.5c21.7-17.1,39.8-41.6,63-53.7%0A%09%09%09c-6.4-58.7-17.6-101.8-29.1-95c-30.3,17.9-474.3,322.7-497.1,369.5s-42.1,123.7,13.1,152.8c0,0-20.7-133.5,59.3-157%0A%09%09%09c80-23.4,155.8,45.5,157.2,51c0.7,2.8,16.3,25.9,31.7,46.8c24.5-12.2,48.8-24.7,72.3-41.8%0A%09%09%09C3593.6,2440.4,3609.1,2376.5,3622.6,2308.8z" class="st32"></path>%0A%09%09<path d="M3669.1,2210.2c-3.9,3.9-1.9,9.7-5.8,13.5c-29,21.3-32.9,54.2-40.6,85.1c-13.5,67.7-29,131.5-83.2,174.1%0A%09%09%09c-23.4,17.1-47.7,29.6-72.3,41.8c14.9,20.3,29.7,38.6,30.4,34.1c1.4-9.2,146.2-90.6,205.5-136.8c36.9-28.8,39.6-168.5,29.1-265.5%0A%09%09%09C3708.8,2168.5,3690.8,2193.1,3669.1,2210.2z" class="st31"></path>%0A%09%09<path d="M3252.8,2424.8c-14.7,6.4-25.2,15.5-32.7,25.8c33.5,31.1,84.8,42,119.8,22.2c22.9-10.4,45.8-17.6,64.9-32.9%0A%09%09%09c-0.9-0.6-1.9-1.3-3.1-2.1C3385.9,2421.4,3321.1,2395.2,3252.8,2424.8z" class="st16"></path>%0A%09%09<path d="M3220.1,2450.6c-5.4,7.5-9.3,15.6-11.9,23.8c11.3,29.8,34.2,55.9,59.6,75.9%0A%09%09%09c39.9,36.8,89.5,48.9,140.2,47.1l4-152.6c0,0,0,0-7.2-4.8c-19.1,15.3-42,22.5-64.9,32.9%0A%09%09%09C3304.9,2492.6,3253.6,2481.7,3220.1,2450.6z" class="Graphic_x0020_Style_x0020_113"></path>%0A%09%09<path d="M3267.8,2550.4c-25.4-20-48.3-46.1-59.6-75.9c-0.6,1.9-1.2,3.9-1.7,5.8%0A%09%09%09c-3.2,12.6-4,25-3.7,35.5c0.4,15.7,3.1,26.9,3.1,26.9s73.1,121.3,186.1,122.7c14.5-13.8,14.5-13.8,14.5-13.8l0.5-17.8l0.7-24.6%0A%09%09%09l0.3-11.9C3357.3,2599.3,3307.7,2587.2,3267.8,2550.4z" class="Graphic_x0020_Style_x0020_104"></path>%0A%09%09<path d="M3235.6,2602c0,0,20.6,1.7,15.5-3.8c-16.6-18-47.6-98.2-21.8-124.8c29.7-30.7,122.5-41.5,160.6-26.4%0A%09%09%09c-3.3-14.6-3.3-14.6-3.3-14.6s-76.5-31-120-13.1c-43.4,17.9-62.2,9.2-63.8,77c-1.7,67.8,9.5,101.6,23.2,107.8%0A%09%09%09C3239.7,2610.3,3235.6,2602,3235.6,2602z" class="st33"></path>%0A%09%09<path d="M3226,2604.1c0,0-34.8-98.6-3.2-143.2s183.6-37.2,209.7,22.5c15.9-4.6,15.9-4.6,15.9-4.6%0A%09%09%09s51.4-54.7-36.3-81.6c-87.8-26.9-216.5,9.7-228.4,92.5S3199.4,2597,3226,2604.1z" class="st20"></path>%0A%09%09<path d="M3340,2529c32.1-10.7,40.1-29.4,53.4-58.8c2.7-5.3,21.4,2.7,32.1-5.3%0A%09%09%09c34.7-32.1,80.1-48.1,120.2-32.1c9,3,17.6,7.1,26,11.5c-6.3-16.9-12.8-29.1-12.8-29.1s-3-1.5-7.6-3.6%0A%09%09%09c-11.7-5.4-33.9-14.8-44.8-14.3c-15.2,0.7-29.9,22.1-29.9,22.1s-32.8-9-49.4,0c-16.5,9-18.5,35.5-18.5,35.5s-15.9-1.7-33.9,7.3%0A%09%09%09s-6.2,37.2-6.2,37.2s-15.2-12.4-42.1,6.2c-20.5,12.6-13.4,51.1-1.3,85.4C3326.1,2565.1,3319.5,2533.5,3340,2529z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M3545.7,2432.8c-40.1-16-85.5,0-120.2,32.1c-10.7,8-29.4,0-32.1,5.3c-13.4,29.4-21.4,48.1-53.4,58.8%0A%09%09%09c-20.4,4.5-13.9,36.1-14.7,61.9c4.6,13,9.9,25.4,14.7,35.5c6.7,14.3,12.4,24,13.6,24.5c32.4,14.5,39.8-12.1,39.8-12.1%0A%09%09%09s7.4,27.2,34.4,26.6c27-0.6,13.8-43.4,13.8-43.4s36.8,33.1,54,29c17.2-4.1,4.1-42.1,4.1-42.1s23.4,27.6,48.3,21.4%0A%09%09%09c24.8-6.2-10.3-94-10.3-94s24.1,13.3,41.4-12.2c10.5-21.9,1.8-55.6-7.2-79.8C3563.2,2439.9,3554.7,2435.8,3545.7,2432.8z" class="st16"></path>%0A%09%09<path d="M3855.6,1746.2c-34.7-66.8-53.4-157.6-120.2-181.7c-70.3-26.7-149.3,8.2-227.2-3%0A%09%09%09c-21.3,43.8-31,95-34.5,140.3c-7.9,103.1,20.2,204.3,82.4,287.5c9.2,12.3,20.1,15.4,35.2,15.3c13.5-0.1,92.2-26.6,94.3-24.1%0A%09%09%09c0,0,89.2,104.8,138.8,155.4c3.9,4,7.6,7.6,11.1,10.9c41,38.7,55.1,33.2,55.1,33.2s66.2-16.5,80-60.7c13.8-44.1,68-261.3,68-261.3%0A%09%09%09s-2.5-6.5-5.6-15.8C3959.1,1845.2,3889.3,1813.7,3855.6,1746.2z" class="st16"></path>%0A%09%09<path d="M4022,1797.7c-2.8-24.8,81.8-357.6-168.2-366.8c-89.9-3.3-189,3.2-269.9,46.9%0A%09%09%09c-34.4,18.6-58.8,48.8-75.7,83.7c77.9,11.2,156.9-23.7,227.2,3c66.8,24,85.5,114.9,120.2,181.7c33.8,67.5,103.5,99,177.4,96.1%0A%09%09%09c-1.2-3.7-2.5-7.7-3.8-12.1C4026.1,1819.7,4023.1,1807.8,4022,1797.7z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M4069.8,1569.7c-23-40.4-27.6-96.5-46-109.4c-0.8-25.3-12.8-44.3-33.2-58.9%0A%09%09%09c-26.3-18.9-66.6-30.6-114.7-39.4c-85.5-15.6-326.4,68.3-388.9,41.2c-46.2-20-44.1,85.7-44.1,85.7s-0.6,8.6,2.7,18.9%0A%09%09%09c0.8,2.6,1.9,5.3,3.4,8c6.8,13.1,21.3,26,51.9,25.5c61.6-0.9,148-35.8,156.3-17.5c8.3,18.4,0.9,143.8,12.9,163.8%0A%09%09%09c4.5,0.7,8.3,1.3,11.5,1.8c16,2.6,16,2.6,16,2.6s1.8-85.5,55.2-84.1c18.2,0.5,37.2,5.3,55.1,14.9c34.5,18.6,64.6,55.2,75.4,113.4%0A%09%09%09c16.6,88.2,147.1,77.2,147.1,77.2s2.3-7.5,5.9-19.9c5.1-17.8,12.8-45.6,20-75.9C4070,1659,4082.1,1591.2,4069.8,1569.7z" class="Graphic_x0020_Style_x0020_108"></path>%0A%09%09<polygon points="3720.5,1573.4 3453,1652.4 3452.3,1641 3736.1,1563.3" class="Graphic_x0020_Style_x0020_110"></polygon>%0A%09%09<path d="M3661.3,2544.8c-2.7-1-5.3-2.4-7.9-4.1c4.4,48.9,8.2,80.7,8.2,80.7l146.2-7.8%0A%09%09%09c0,0,5.8-43,13.8-101.1c-7.6,1.5-15.3,3.9-23,7.2C3756.1,2539,3707.8,2556.4,3661.3,2544.8z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09%09<path d="M3847.5,2157.6c-42.9-65.3-126-117.2-122.4-138.8c-110.1-35.4-87.2,349.7-71.6,521.9%0A%09%09%09c2.6,1.7,5.2,3.1,7.9,4.1c46.4,11.6,94.8-5.8,137.3-25.1c7.7-3.3,15.3-5.7,23-7.2c11.1-80.9,26.4-191.1,35.8-255.6%0A%09%09%09C3859.9,2240.5,3857.5,2172.8,3847.5,2157.6z" class="st32"></path>%0A%09%09<path d="M4242.6,2242.6c0,0,36.8,108.5,119.5,116.7c-13.8,52.4,206.2,183.4,206.2,183.4l9.8-23.8l-239.8-248.8%0A%09%09%09L4242.6,2242.6z" class="st34"></path>%0A%09%09<path d="M3298.6,2799c-8.5,5.6-14.3,9.3-14.8,9.1c-2.1-0.7-22.1,19.3-22.1,19.3%0A%09%09%09s33.8,2.8,36.5,0c0.5-0.5,4.9-3.2,11.4-7C3308.5,2811.6,3304.6,2802.8,3298.6,2799z" class="Graphic_x0020_Style_x0020_108"></path>%0A%09%09<path d="M3379,2744c0,0-53.6,37.3-80.3,55c3.9,2.5,6.9,7,8.8,12.3l95.8-56.5%0A%09%09%09C3402.9,2747.5,3396.9,2742.8,3379,2744z" class="Graphic_x0020_Style_x0020_112"></path>%0A%09%09<path d="M3307.5,2811.4c1.1,2.9,1.8,6,2.3,9.1c26.5-15.5,89.9-50.9,89.9-50.9%0A%09%09%09c2.2-5.4,3.8-10.5,3.6-14.7L3307.5,2811.4z" class="Graphic_x0020_Style_x0020_110"></path>%0A%09%09<path d="M4750.6,2686.6c-104.2,18.7-203,5.3-304.6,0c-109.5-2.7-227.1-26.7-334,16%0A%09%09%09c-80.1,29.4-171-21.4-261.8-2.7c-64.6,14.9-126.9,34.4-189.1,52.1c1.8,0.1,3.8,0.2,6,0.2c37.2,0,155.8-45.5,257.9-29%0A%09%09%09s212.4,30.3,251-6.9c96.5,5.5,601.2,41.4,650.9,26.2c10.9-23.2,13.8-50.2,10.6-77.7C4808.9,2673.1,4780.3,2680.7,4750.6,2686.6z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M4112.1,2702.6c106.9-42.7,224.4-18.7,334-16c101.5,5.3,200.4,18.7,304.6,0c29.7-5.9,58.4-13.5,86.9-21.6%0A%09%09%09c-9.7-83.3-75.3-171.2-141.6-173.3c-45.6,12.2-90.4,22.8-134.1,31.9c-331.1,69.3-596.5,55.3-657.4,37%0A%09%09%09c-68.9-20.7-170.7,19.4-243.8,51.1c-73.1,31.7-122,56.6-95.8,74.6c-0.8,1.2-5,6.1-5.1,9.5c-0.1,3.5-5.8,5.5-8.7,8.7%0A%09%09%09c-8.6,9.5-7.7,26.2,7.4,27.1c1.8,0.1,3.6,0.3,5.3,0.6c20,3.4,31.7,17.6,60.9,4.9c30.3-4.1,30.3-4.1,30.3-4.1s-21.9,17.1,6.4,19.1%0A%09%09%09c62.2-17.7,124.5-37.2,189.1-52.1C3941.1,2681.3,4031.9,2732,4112.1,2702.6z" class="st16"></path>%0A%09%09<path d="M5017.7,2587.8c-2.7-5.3,2.7-13.4,0-18.7c-37.4-72.1-72.1-141.6-130.9-195%0A%09%09%09c-45.4-42.7-96.2-77.5-141.6-120.2c-64.1-53.4-101.5-125.6-173.7-165.6c-80.1-45.4-157.6-88.2-243.1-120.2%0A%09%09%09c-56.1-18.7-114.9-8-173.7-10.7c-8,0-13.4-8-18.7-8c-26.9-3.6-52.7-12-77.2-22.8l-4.1,6.3l-47.1,153.2l241.3,154.8%0A%09%09%09c0.7,4.9,2.5,10,5.3,15.1c70.7-21.4,153.8-12.5,210.4,35.3c58.8,50.8,77.5,133.6,138.9,176.3c50.8,37.4,117.6,48.1,155,101.5%0A%09%09%09c26.3,32.9,23.8,78.3-4.4,111.2c16.3,20,31.9,41.7,46.4,65.4c43.6,17.7,172.5,20.1,226.6-52.4%0A%09%09%09C5038.9,2660.1,5036.7,2621.8,5017.7,2587.8z" class="Graphic_x0020_Style_x0020_105"></path>%0A%09%09<path d="M4666.9,2134.6c-215.1-230.3-311.2-220.2-404.5-226.6%0A%09%09%09c-58.4-29.4-93.8-48.3-120.4-4.6c-12.4-21.6-57-17.5-57-17.5l-26.1,40.5c24.5,10.8,50.2,19.2,77.2,22.8c5.3,0,10.7,8,18.7,8%0A%09%09%09c58.8,2.7,117.6-8,173.7,10.7c85.5,32.1,163,74.8,243.1,120.2c72.1,40.1,109.5,112.2,173.7,165.6c45.4,42.7,96.2,77.5,141.6,120.2%0A%09%09%09c58.8,53.4,93.5,122.9,130.9,195c2.7,5.3-2.7,13.4,0,18.7c18.9,34.1,21.2,72.4,9.5,105.5c14.4-19.2,23.5-43.8,24.4-74.7%0A%09%09%09C5055.7,2471,4882,2364.8,4666.9,2134.6z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09%09<path d="M4758.6,2569.1c-37.4-53.4-104.2-64.1-155-101.5%0A%09%09%09c-61.4-42.7-80.1-125.6-138.9-176.3c-56.5-47.8-139.6-56.7-210.4-35.3c25.1,47.2,127.1,102.1,127.1,102.1s20.7,44.1,55.2,84.1%0A%09%09%09c30.5,35.4,193.5,85.8,317.6,238.2C4782.4,2647.3,4784.9,2601.9,4758.6,2569.1z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09%09<path d="M3715.8,2015.7l-33.4,5.8c0,0,86.9,194.9,81.4,227c99.3-46.4,98.4-56.1,98.4-56.1%0A%09%09%09l-7.4-38.1C3852.2,2113.2,3774.4,2063.6,3715.8,2015.7z" class="Graphic_x0020_Style_x0020_100"></path>%0A%09%09<path d="M4035.3,1825.7c0,0-127.3,345.2-108.9,400.3c60.7-14.7,108.9,4.6,108.9,4.6%0A%09%09%09s-11.5-222.5,55.6-345.6C4061.5,1845.5,4035.3,1825.7,4035.3,1825.7z" class="Graphic_x0020_Style_x0020_100"></path>%0A%09%09<path d="M3654.8,2733l130-51c-71.4,10.3-156.4,53.6-160.3,55.2C3633.4,2740.2,3654.8,2733,3654.8,2733z" class="st18"></path>%0A%09%09<path d="M3576.1,2735.8c0,0,55.9-47.6,182.8-76.5c-16.5-5.5-133.9,28.9-190.4,74.1%0A%09%09%09C3573.4,2738.5,3576.1,2735.8,3576.1,2735.8z" class="st18"></path>%0A%09%09<path d="M3558,2699.3c0,0,110.1-70.4,179-82.8c-35.9-12.4-176.2,71.6-176.2,71.6L3558,2699.3z" class="st18"></path>%0A%09%09<path d="M3834.5,1885.6c0,0-102,90.4-148.9,95c48.7,53.3,78.2,78.6,99.3,89.2%0A%09%09%09c0-99.3,91.9-168.2,83.7-237.2c-8.3-68.9-6.4-64.3-6.4-64.3S3863,1851.2,3834.5,1885.6z" class="Graphic_x0020_Style_x0020_104"></path>%0A%09%09<path d="M4897.2,2712.3c-24.8-45.5-111.6-233-210.3-220.6c0,0-65.2,9.2-99.4,20.8c-1.1,12.9,9.7,22,21.7,26.5%0A%09%09%09c104.1,32,201.6,111.9,214.5,216.4c41.8,6.1,86.6,20.3,88.3-2.4C4912.3,2747.3,4901.4,2720.1,4897.2,2712.3z" class="st20"></path>%0A%09%09<path d="M4609.1,2539c-12-4.5-22.8-13.6-21.7-26.5c-9.2,3.1-16.2,6.4-19,9.7c149.6,89.2,160.1,153.2,228.5,227.8%0A%09%09%09c9,2.3,18,4.1,26.7,5.4C4810.8,2650.9,4713.3,2571,4609.1,2539z" class="st35"></path>%0A%09%09<path d="M3389.9,2642.1c0,0-40.9-81.4-37.1-99.3c3.8-17.9-3.1-35.9,15.9-43.4c-6.2,13.8-11,29-10,45.5%0A%09%09%09c1,16.5,34.6,94,34.6,94L3389.9,2642.1z" class="st18"></path>%0A%09%09<path d="M3407,2460.9c0,0-9.2,34.9-1.9,66.6c7.4,31.7,30.8,93.9,37,97.1c6.2,3.2,6.2,3.2,6.2,3.2%0A%09%09%09S3398.3,2507.3,3407,2460.9z" class="st18"></path>%0A%09%09<path d="M3472.9,2418.4c0,0-17,55.4-15.2,76c1.8,20.7,41.7,120.8,41.7,120.8l2.9-3.5%0A%09%09%09c0,0-42.5-108.1-31.7-146c10.9-37.9,9.3-50.7,9.3-50.7L3472.9,2418.4z" class="Graphic_x0020_Style_x0020_104"></path>%0A%09%09<path d="M3537.6,2454.9c0,0-9.2,72.2,0,81.4s20.4,7.3,20.4,7.3S3539.9,2483.9,3537.6,2454.9z" class="st18"></path>%0A%09%09<path d="M3543.3,2484.1c0,0-7.6,38.4-5.8,52.2c0.7,5.4,2.5,11.2,5.6,16.5c7.7,6.5,16.6,9.4,25.4,1.7%0A%09%09%09c15.6-12.5,17.4-32.6,17.5-52.1c-0.7-2.3-1.4-4.6-2.2-7" class="st16"></path>%0A%09%09<g>%0A%09%09%09<polygon points="3466.8,1624.2 3466.8,1624.2 3466.8,1624.2" class="st9"></polygon>%0A%09%09%09<path d="M3516.4,1675.9c-7.1-21.6-14.1-34.6-21-42.6c-3.4-4-6.9-6.7-10.3-8.4%0A%09%09%09%09c-3.4-1.7-6.8-2.3-9.8-2.3c-3.4,0-6.3,0.8-8.6,1.5c-4.1,1.3-8,4.5-10.7,9.6c-2.7,5.1-4.4,12.1-4.4,21.5%0A%09%09%09%09c0,12.2,2.8,28.6,10.1,50.4c6.4,19,13.3,30.6,20.3,37.6c3.5,3.5,7.1,5.8,10.5,7.3c3.4,1.4,6.8,2,9.7,2c2.7,0,5.1-0.4,7.1-0.9%0A%09%09%09%09c2-0.5,3.5-1.1,4.4-1.4l0,0c2.9-0.9,6.2-3.2,8.5-7.4c2.3-4.2,3.8-10.1,3.8-18.4C3526.2,1713.3,3523.6,1697.9,3516.4,1675.9z%0A%09%09%09%09 M3515.7,1738.9c-1.5,2.6-3.1,3.5-4.1,3.8c-1.2,0.4-2.5,0.9-4,1.3c-1.5,0.4-3.3,0.7-5.1,0.7c-2,0-4.3-0.3-6.7-1.4%0A%09%09%09%09c-3.7-1.5-7.9-4.6-12.5-10.9c-4.6-6.2-9.4-15.6-14-29.3c-7.1-21.2-9.7-36.9-9.7-47.9c0-8.5,1.5-14.2,3.5-17.9%0A%09%09%09%09c2-3.6,4.2-5.2,6.2-5.8l0,0c2-0.6,4.1-1.1,6.3-1.1c2,0,4,0.4,6.3,1.5c3.5,1.7,7.7,5.3,12.4,12.6c4.7,7.2,9.7,18.1,14.9,33.8%0A%09%09%09%09c7.1,21.4,9.4,36.2,9.4,46C3518.5,1731.7,3517.1,1736.3,3515.7,1738.9z" class="Graphic_x0020_Style_x0020_110"></path>%0A%09%09</g>%0A%09</g>%0A%09<polygon points="4535.9,1753.6 4677.9,1982.4 4774.4,1982.4 4597.9,1697.5" class="Graphic_x0020_Style_x0020_109"></polygon>%0A%09<polygon points="4616.6,1659.7 4815.1,1982.4 4916.5,1982.4 4705.5,1586.9" class="Graphic_x0020_Style_x0020_105"></polygon>%0A%09<polygon points="4597.9,1697.5 4644.4,1704.9 4815.1,1982.4 4774.4,1982.4" class="Graphic_x0020_Style_x0020_108"></polygon>%0A%09<polygon points="4791.1,1650.6 4705.5,1586.9 4916.5,1982.4 4939.2,1982.4 4939.2,1925.9" class="Graphic_x0020_Style_x0020_107"></polygon>%0A%09<path d="M4590.7,1773.7c0,0,19.3-16,39,11c19.6,27-20.3,47.3-33.4,30.1%0A%09%09C4583.1,1797.4,4579.5,1778.2,4590.7,1773.7z" class="Graphic_x0020_Style_x0020_100"></path>%0A%09<path d="M4596.3,1780.1c0,0,13.5-11.2,27.3,7.7s-14.2,33.1-23.4,21.1%0A%09%09C4591,1796.7,4588.5,1783.2,4596.3,1780.1z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09<polygon points="4609.5,1841.2 4648,1821.1 4757.4,1982.4 4699.5,1982.4" class="Graphic_x0020_Style_x0020_105"></polygon>%0A%09<ellipse ry="38.6" rx="31.7" cy="1701" cx="4703.2" class="Graphic_x0020_Style_x0020_104"></ellipse>%0A%09<polygon points="4705.5,1762.7 4757.4,1724.1 4766.2,1734.7 4712.4,1768.9" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09<polygon points="4718.4,1793 4770.3,1754.3 4779,1764.9 4725.3,1799.2" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09<polygon points="4731.2,1823.2 4783.2,1784.6 4791.9,1795.1 4738.1,1829.4" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09<g>%0A%09%09<path d="M973.4,2494.7c-1.1-7.7-1.9-15.4-2.3-22.9c9.5-13.4,26.8-31.8,52.9-40.2c23.1-6.1,15.4-16.7,6-14.3%0A%09%09%09c-6.8,1.7-40.3,15-58.6,22.4c6.9-84.5,62.6-145.2,175.4-122.9c0,0,168.2-115.8,215,66.2c-26.6-8.7-77.4-22.7-81.8-5%0A%09%09%09c-5.6,22.6,45.1-7,86.4,25.8c2.5,13.6,4.5,28.6,5.7,45.1c0.4,18.1-4.3,37.3-12.2,56.6c-19.6-23.9-69.9-81.6-86.6-63.7%0A%09%09%09c-19.3,20.6,50.3,7.3,76.9,84.6c-10.3,19.7-23.2,39-36.6,56.7c-13.9-23.9-42.7-67.9-60.7-56.8c-7.2,6.3,6.6,15.6,21,31%0A%09%09%09c9.1,9.8,20.1,29.2,27,42.1c-32.6,40-64,68.5-64,68.5s-40.6-10.2-90-29.6c-2.2-17-5.6-50,0.5-58c8.3-10.9-3.5-21.2-17.7-9.4%0A%09%09%09c-11,9.1-13.4,36.4-10.2,55.9c-20.3-9-41-19.4-60.3-31.1c3.7-24.8,13.8-80.3,30.3-90.6c10.5-9.2,2.3-22.4-22.7-3.4%0A%09%09%09c-19.2,14.5-25.3,60.3-27.2,81.1C1004.8,2558,978.2,2528.6,973.4,2494.7z" class="st10"></path>%0A%09%09<path d="M1225.4,2633.4c0,0-71-217.9-78.6-316.8" class="st11"></path>%0A%09%09<path d="M1129.2,2552.6c0,0,15.4-40.3,50.3-75.4" class="st11"></path>%0A%09%09<path d="M1261.1,2488.4c0,0-59.5-46.7-90-43.7" class="st11"></path>%0A%09%09<path d="M1052.5,2468.5c0,0,69.2-57,107.6-70.5" class="st11"></path>%0A%09%09<path d="M1243.7,2349.5c0,0-52.8-23.4-93.7-5.9" class="st11"></path>%0A%09</g>%0A%09<path d="M3360.2,3327.1c-71.4-58-182.9-129.1-345.1-184.1c-329.3-111.6-176.9-187.3-303.6-225.2%0A%09%09s-430.3-22.5-784.9-68.8s-643.1-33.1-556-162c60.4-89.4,145-152.7,191.1-183.1l-109.7,8.4c-108.3,81.3-312.5,270.2,66.8,308.2%0A%09%09c486.5,48.7,1181.1,101.9,1192.6,208.2c9.2,84.8,440.1,200.1,610.2,307.3C3334,3333.3,3346.8,3330.3,3360.2,3327.1z" class="st22"></path>%0A%09<linearGradient y2="608.8419" x2="3633.9429" y1="608.8419" x1="3431.6741" gradientUnits="userSpaceOnUse" id="SVGID_9_">%0A%09%09<stop style="stop-color:%234085F0" offset="0"></stop>%0A%09%09<stop style="stop-color:%23275DC9" offset="1"></stop>%0A%09</linearGradient>%0A%09<ellipse ry="101.1" rx="101.1" cy="608.8" cx="3532.8" class="st36"></ellipse>%0A%09<linearGradient y2="3174.8586" x2="1457.2415" y1="3174.8586" x1="1136.8959" gradientUnits="userSpaceOnUse" id="SVGID_10_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23529BF7" offset="1"></stop>%0A%09</linearGradient>%0A%09<ellipse ry="106.3" rx="160.2" cy="3174.9" cx="1297.1" class="st37"></ellipse>%0A%09<linearGradient y2="2968.6479" x2="1266.5088" y1="2968.6479" x1="1085.6805" gradientUnits="userSpaceOnUse" id="SVGID_11_">%0A%09%09<stop style="stop-color:%234085F0" offset="0"></stop>%0A%09%09<stop style="stop-color:%23275DC9" offset="1"></stop>%0A%09</linearGradient>%0A%09<ellipse ry="60" rx="90.4" cy="2968.6" cx="1176.1" class="st38"></ellipse>%0A%09<linearGradient y2="3078.0559" x2="5051.6841" y1="3078.0559" x1="4866.0625" gradientUnits="userSpaceOnUse" id="SVGID_12_">%0A%09%09<stop style="stop-color:%234085F0" offset="0"></stop>%0A%09%09<stop style="stop-color:%23275DC9" offset="1"></stop>%0A%09</linearGradient>%0A%09<ellipse ry="92.8" rx="92.8" cy="3078.1" cx="4958.9" class="st39"></ellipse>%0A%09<path d="M2285.6,3438c0,0,206.8,24.5,420.7-87.7c42.5-28.4,62.6,33.1,35.4,53.2%0A%09%09c-27.2,20.1-168.9,100.4-399.3,87.4C2216,3486.1,2239.4,3435.8,2285.6,3438z" class="Graphic_x0020_Style_x0020_100"></path>%0A</g>%0A</svg>%0A';
2655
+ var SignIn = (props) => {
2656
+ const { title, successRedirectUrl, extra } = props;
2657
+ const location = useLocation();
2658
+ const queryParams = new URLSearchParams(window.location.search);
2659
+ const { token, setToken } = useTokenStore();
2660
+ const { t } = useTranslation();
2661
+ const idaasRedirectUrl = encodeURIComponent(window.location.href);
2662
+ const { isLoading } = useSWRImmutable(
2663
+ queryParams.has("ticket") ? `/api/usystem/user/login?ticket=${queryParams.get("ticket")}` : null,
2664
+ (url) => request(url),
2665
+ {
2666
+ onSuccess: (data) => {
2667
+ setToken(data.data.token);
2668
+ }
2669
+ }
2670
+ );
2671
+ if (isLoading) {
2672
+ return /* @__PURE__ */ jsx("div", { className: "w-screen h-screen flex justify-center items-center", children: /* @__PURE__ */ jsx(Spin, {}) });
2673
+ }
2674
+ if (token) {
2675
+ const hashMode = !!window.location.hash;
2676
+ const path = successRedirectUrl;
2677
+ if (!hashMode) {
2678
+ return /* @__PURE__ */ jsx(Navigate, { replace: true, to: path });
2679
+ }
2680
+ window.location.href = `${window.location.origin}${window.location.pathname}#${path}`;
2681
+ return null;
2682
+ }
2683
+ return /* @__PURE__ */ jsxs("div", { className: "w-screen h-screen relative flex overflow-hidden", children: [
2684
+ /* @__PURE__ */ jsx("div", { className: "absolute top-16 right-16 z-10", children: extra }),
2685
+ /* @__PURE__ */ jsx("div", { className: "absolute left-14 top-6", children: /* @__PURE__ */ jsxs(Space, { align: "center", children: [
2686
+ /* @__PURE__ */ jsx(Logo_default, { width: 48 }),
2687
+ title
2688
+ ] }) }),
2689
+ /* @__PURE__ */ jsx("div", { className: "flex-1 flex justify-center items-center bg-slate-50", children: /* @__PURE__ */ jsx("img", { src: background_default, alt: "background", className: "w-10/12" }) }),
2690
+ /* @__PURE__ */ jsx("div", { className: "w-[650px] relative top-0 left-0 right-0 bottom-0", children: /* @__PURE__ */ jsx("div", { className: "absolute top-1/2 -translate-y-1/2 left-0 right-0", children: /* @__PURE__ */ jsx("div", { className: "-translate-y-10 px-36", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col justify-center", children: [
2691
+ /* @__PURE__ */ jsx("div", { className: "h-10", children: location.state?.[NOT_REGISTERED] && /* @__PURE__ */ jsx(Alert, { banner: true, closable: true, message: t("SignIn.notRegistered"), type: "error" }) }),
2692
+ /* @__PURE__ */ jsx(Typography.Title, { level: 2, children: t("SignIn.welcome") }),
2693
+ /* @__PURE__ */ jsx("div", { className: "mt-4", children: /* @__PURE__ */ jsxs(Form, { layout: "vertical", autoComplete: "off", children: [
2694
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.username"), name: "username", rules: [{ required: true }], children: /* @__PURE__ */ jsx(Input, {}) }),
2695
+ /* @__PURE__ */ jsx(Form.Item, { label: t("global.password"), name: "password", rules: [{ required: true }], children: /* @__PURE__ */ jsx(Input.Password, {}) }),
2696
+ /* @__PURE__ */ jsx(Form.Item, { children: /* @__PURE__ */ jsx(Button, { block: true, type: "primary", shape: "round", htmlType: "submit", children: t("global.signIn") }) })
2697
+ ] }) }),
2698
+ /* @__PURE__ */ jsx(Divider, { plain: true, dashed: true, children: t("SignIn.thirdParty") }),
2699
+ /* @__PURE__ */ jsx("div", { className: "flex justify-center items-center", children: /* @__PURE__ */ jsxs(Button, { block: true, shape: "round", href: `${SSO_URL}/login?service=${idaasRedirectUrl}`, target: "_self", children: [
2700
+ /* @__PURE__ */ jsx(Logo_default, { width: 18 }),
2701
+ t("SignIn.signInWithIDass")
2702
+ ] }) })
2703
+ ] }) }) }) })
2704
+ ] });
2705
+ };
2706
+ var signIn_default = SignIn;
21
2707
 
22
- var jt=Object.defineProperty;var Us=(e,t,o)=>t in e?jt(e,t,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[t]=o;var x=(e,t)=>()=>(e&&(t=e(e=0)),t);var lt=(e,t)=>{for(var o in t)jt(e,o,{get:t[o],enumerable:!0});};var ct=(e,t,o)=>Us(e,typeof t!="symbol"?t+"":t,o);var Bs,Oe,pt=x(()=>{Bs=createContext(void 0),Oe=Bs;});var Ws,$t,Jt=x(()=>{Ws={global:{noEntitlement:"\u65E0\u6743\u9650\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u3002",name:"\u540D\u79F0",creationTime:"\u521B\u5EFA\u65F6\u95F4",operation:"\u64CD\u4F5C",update:"\u66F4\u65B0",edit:"\u7F16\u8F91",delete:"\u5220\u9664",selectAll:"\u5168\u9009",game:"\u6E38\u620F",user:"\u7528\u6237",role:"\u89D2\u8272",username:"\u7528\u6237\u540D",password:"\u5BC6\u7801",label:"\u6807\u7B7E",method:"\u65B9\u6CD5",route:"\u8DEF\u7531",request:"\u8BF7\u6C42",response:"\u54CD\u5E94",add:"\u6DFB\u52A0",signIn:"\u767B\u5F55"},SignIn:{title:"\u767B\u5F55\u65B9\u5F0F",thirdParty:"\u7B2C\u4E09\u65B9\u767B\u5F55",signInWithIDass:"IDass \u767B\u5F55",notRegistered:"\u60A8\u8FD8\u672A\u5728\u5E73\u53F0\u6CE8\u518C\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458",welcome:"\u6B22\u8FCE"},NotFound:{subTitle:"\u8BBF\u95EE\u7684\u9875\u9762\u4E0D\u5B58\u5728",buttonText:"\u8FD4\u56DE\u9996\u9875"},FilterFormWrapper:{confirmText:"\u67E5\u8BE2",resetText:"\u91CD\u7F6E"},FormModal:{confirmText:"\u786E\u8BA4",cancelText:"\u53D6\u6D88"},GameSelect:{label:"\u5F53\u524D\u6E38\u620F",placeholder:"\u8BF7\u9009\u62E9\u6E38\u620F"},RequireGame:{description:"\u8BF7\u9009\u62E9\u6E38\u620F"},UserWidget:{signOutText:"\u767B\u51FA"},UserList:{createTitle:"\u521B\u5EFA\u7528\u6237",createSuccessfully:"\u7528\u6237\u521B\u5EFA\u6210\u529F",updateTitle:"\u66F4\u65B0\u7528\u6237",updateSuccessfully:"\u7528\u6237\u66F4\u65B0\u6210\u529F",deleteTitle:"\u5220\u9664\u7528\u6237",deleteContent:"\u786E\u5B9A\u8981\u5220\u9664\u7528\u6237 <%= user %> \u5417\uFF1F",deleteSuccessfully:"\u7528\u6237\u5220\u9664\u6210\u529F"},RoleList:{createTitle:"\u521B\u5EFA\u89D2\u8272",createSuccessfully:"\u89D2\u8272\u521B\u5EFA\u6210\u529F",updateTitle:"\u66F4\u65B0\u89D2\u8272",updateSuccessfully:"\u89D2\u8272\u66F4\u65B0\u6210\u529F",deleteTitle:"\u5220\u9664\u89D2\u8272",deleteContent:"\u786E\u5B9A\u8981\u5220\u9664\u89D2\u8272 <%= role %> \u5417\uFF1F",deleteSuccessfully:"\u89D2\u8272\u5220\u9664\u6210\u529F"},PermissionList:{failedDescription:"\u83B7\u53D6\u6743\u9650\u5217\u8868\u5931\u8D25",baseSectionTitle:"\u5E73\u53F0\u57FA\u7840\u6743\u9650",gameSectionTitle:"\u6E38\u620F\u6743\u9650",gameSectionDescription:"\u8BF7\u5148\u9009\u62E9\u6E38\u620F",gameSelectPlaceholder:"\u8BF7\u5148\u9009\u62E9\u6E38\u620F",removeText:"\u79FB\u9664",addText:"\u6DFB\u52A0\u6E38\u620F\u6743\u9650"},RoleDetail:{title:"\u89D2\u8272\u8BE6\u60C5"},InfiniteList:{loadingText:"\u52A0\u8F7D\u4E2D",reachEndText:"\u5DF2\u7ECF\u5230\u5E95\u4E86",loadMoreText:"\u52A0\u8F7D\u66F4\u591A"}},$t=Ws;});function b(){let e=useContext(Oe),t={...$t,...e};return {t:useMemo(()=>(s,r)=>has(t,s)?template(get(t,s))(r):s,[t])}}var Yt=x(()=>{pt();Jt();});var Js,Xt,I=x(()=>{pt();Yt();Js=e=>{let{locale:t={},children:o}=e,s=useMemo(()=>({...t}),[t]);return jsx(Oe.Provider,{value:s,children:o})},Xt=Js;});var Ne,mt=x(()=>{Ne={usePermissionApiV2:!1};});var Zs,dt,Zt=x(()=>{mt();Zs=createContext(Ne),dt=Zs;});function P(){return useContext(dt)}var _e,to,oo,so=x(()=>{I();mt();Zt();_e=createStore(()=>Ne);to=e=>{let{children:t,locale:o,...s}=e,n={...P(),...s},i=o?jsx(Xt,{locale:o,children:t}):t;return useEffect(()=>{_e.setState(n);},[n]),jsx(dt.Provider,{value:n,children:i})};process.env.NODE_ENV!=="production"&&(to.displayName="ContextProvider");oo=to;});var E=x(()=>{so();});var f1,Ce,Ae=x(()=>{I();f1=e=>{let{extras:t,isConfirming:o,onConfirm:s,onReset:r,children:n,buttonsAlign:i="left",showReset:c}=e,{t:a}=b(),{token:{colorFillAlter:g,lineWidth:f,lineType:m,colorBorder:u,borderRadiusLG:d}}=theme.useToken();return jsx("div",{style:{maxWidth:"none",background:g,borderWidth:f,borderStyle:m,borderColor:u,borderRadius:d,padding:24,marginBottom:24},children:jsxs("div",{className:`flex ${i==="bottom"?"flex-col":"flex-row"}`,children:[jsx("div",{className:`${i==="left"?"flex-grow-0":"flex-1"}`,children:n}),jsx("div",{className:`${i==="bottom"?"text-end":"text-start"} ml-4`,children:jsxs(Space,{children:[jsx(Button,{type:"primary",loading:o,onClick:s,children:a("FilterFormWrapper.confirmText")}),t?.map(_=>jsx(Fragment$1,{children:_.children},_.key)),c&&jsx(Button,{onClick:r,children:a("FilterFormWrapper.resetText")})]})})]})})},Ce=f1;});function _1(e){let t=document.createElement("div"),o=createRoot(t);return new Promise(s=>{setTimeout(()=>{flushSync(()=>{o.render(e);}),s(t.innerHTML);});})}var b1,S1,we,Be=x(()=>{b1=e=>{let t=/(<[^>]*>)/;return e.split(t).filter(o=>o!=="")};S1=e=>{let{texts:t,children:o}=e,[s,r]=useState("");return useEffect(()=>{_1(o).then(n=>{let i=b1(n);for(let c of t)for(let a=0;a<i.length;a++)i[a]=i[a].replace(String(c),`<span style='color: #DC143C;'>${c}</span>`);r(i.join(""));});},[o,t]),jsx("div",{dangerouslySetInnerHTML:{__html:s}})},we=S1;});var P1,me,mo=x(()=>{P1=e=>jsx("img",{src:w1,alt:"logo",...e}),me=P1;});var ft=x(()=>{mo();});var uo,fo=x(()=>{uo=create()(persist(e=>({openKeys:[],setOpenKeys:t=>e({openKeys:t}),selectedKeys:[],setSelectedKeys:t=>e({selectedKeys:t})}),{name:"nav",storage:createJSONStorage(()=>localStorage),partialize:e=>({openKeys:e.openKeys,selectedKeys:e.selectedKeys})}));});function ho(e,t){return (e??[]).some(o=>o===null?!1:o.type==="divider"?!0:o.children?ho(o.children??[],t):!t||!o.code||t[o.code])}function ht(e,t){let o=[];for(let s=0;s<e.length;s++)if(e[s]===null)o[s]=null;else if(e[s].type==="divider")o[s]={...e[s]};else if(e[s].children){let{children:r,...n}=e[s];o[s]=ho(r??[],t)?{...n,children:ht(r??[],t)}:null;}else {let{route:r,label:n,code:i,...c}=e[s],a=!i||!t||t[i];o[s]=a?{...c,label:R1(n,r)}:null;}return o}function yt(e,t=[],o=[]){for(let s of e){let r=s?.children;if(Array.isArray(r)){let n=s.type!=="group"&&s.key?[...o,s.key]:o;yt(r,t,n);}else s&&t.push(Object.assign(s,{keypath:o}));}return t}var R1,yo=x(()=>{R1=(e,t)=>t?jsx(Link,{to:t,children:e}):e;});var go,We,xo=x(()=>{Q();fo();yo();go=memo(function(t){let{items:o}=t,s=useLocation(),r=useMemo(()=>yt(o??[]),[o]),n=useMemo(()=>r.map(h=>h.code).filter(Boolean),[r]),{data:i,isLoading:c}=de(n,!0),a=useMemo(()=>ht(o??[],i),[o,i]),{openKeys:g,selectedKeys:f,setOpenKeys:m,setSelectedKeys:u}=uo(),d=useCallback(h=>{let _=h?.find(l=>g?.indexOf(l)===-1),p=r.find(l=>_===l.key);m(p?.keypath??[_]);},[r,g,m]);return useEffect(()=>{let h=r.find(_=>s.pathname===_.route);if(h){let _=h.key,p=h.keypath;u([_]),m(p);}},[r,s]),c?jsx("div",{className:"flex justify-center items-center",style:{height:"calc(100vh - 64px)"},children:jsx(Spin,{})}):jsx(Menu,{style:{borderRight:"none"},items:a,mode:"inline",openKeys:g,selectedKeys:f,onOpenChange:d})});process.env.NODE_ENV==="development"&&(go.displayName="NavMenu");We=go;});var bt=x(()=>{xo();});var bo,Pe,qe=x(()=>{bo="https://idaas.ifunplus.cn/enduser/api/application/plugin_FunPlus/sso/v1",Pe="notRegistered";});function W1(e=!1){let{usePermissionApiV2:t}=P(),{clearToken:o}=$(),s=useNavigate(),r=n=>{o(),s("/sign_in",{state:{[Pe]:n}});};return U1(e?null:t?"/api/usystem/user/checkV2":"/api/usystem/user/check",n=>S(n,{method:"POST",body:{permissions:["100001"]},isGlobal:!0}),{onError:n=>{n instanceof J&&(n.status===401?r():n.status===412&&r(!0));}})}var $,Me=x(()=>{E();qe();W();$=create()(persist((e,t,o)=>({token:"",getUser:()=>{try{return jwtDecode(t().token)}catch{return null}},setToken:s=>e({token:s}),clearToken:()=>{t().setToken(""),o.persist.clearStorage();}}),{name:"token",partialize:e=>({token:e.token})}));});var $1,_t,St=x(()=>{Me();I();$1=e=>{let{logoutRedirectUrl:t}=e,{t:o}=b(),s=useNavigate(),{clearToken:r,getUser:n}=$(),i=n(),c=[{key:"1",icon:jsx(LogoutOutlined,{}),label:jsx("a",{onClick:()=>{r(),s(t);},children:o("UserWidget.signOutText")})}];return jsx("div",{children:jsx(Dropdown,{menu:{selectable:!0,items:c},placement:"bottomRight",children:jsx("a",{onClick:a=>{a.preventDefault();},children:jsxs(Space,{align:"center",children:[jsx("span",{children:i?.authorityId}),jsx(UserOutlined,{style:{fontSize:"16px"}})]})})})})},_t=$1;});var Ct,wt=x(()=>{Ct={getItem:e=>sessionStorage.getItem(e)||localStorage.getItem(e),setItem:(e,t)=>{sessionStorage.setItem(e,t),localStorage.setItem(e,t);},removeItem:async e=>{sessionStorage.removeItem(e),localStorage.removeItem(e);}};});var wo,H,ve=x(()=>{W();wt();wo=create()(persist(e=>({collapsed:!1,setCollapsed:t=>e({collapsed:t})}),{name:"layout",storage:createJSONStorage(()=>localStorage),partialize:e=>({collapsed:e.collapsed})})),H=create()(persist((e,t)=>({initialized:!1,isLoading:!1,switching:!1,game:null,games:[],async setGame(o){let{initialized:s,refetchGames:r}=t();s||await r();let n=(t().games??[]).find(i=>i.game_id===o);e({game:n??null});},async refetchGames(){if(!t().isLoading)try{e({isLoading:!0});let o=await S("/api/game/list");e({games:o.data?.list??[]});}finally{e({initialized:!0,isLoading:!1});}},setSwitching:o=>e({switching:o})}),{name:"game",storage:createJSONStorage(()=>Ct),partialize:e=>({game:e.game})}));});var X1,Z1,vo,To=x(()=>{E();I();ve();(({Spin:X1}=Te)),Z1=e=>{let{hideGameSelect:t,children:o}=e,{usePermissionApiV2:s}=P(),{game:r,isLoading:n}=H(),{t:i}=b();return n?jsx(X1,{style:{display:"flex",justifyContent:"center",alignItems:"center",height:200}}):s&&!t&&!r?jsx(Empty,{image:Empty.PRESENTED_IMAGE_SIMPLE,description:i("RequireGame.description")}):o},vo=Z1;});var rr,ar,Lo,Ro=x(()=>{I();ve();(({Text:rr}=Typography)),ar=e=>{let{filter:t,onGameChange:o}=e,{t:s}=b(),{game:r,games:n,isLoading:i,refetchGames:c,setGame:a}=H();useEffect(()=>{c();},[]);let g=n?.filter(m=>t?.(m)??!0)?.map(m=>({label:m.name,value:m.game_id})),f=async m=>{a(m),o?.(n.find(u=>u.game_id===m));};return jsxs(Space,{children:[jsx(rr,{children:s("GameSelect.label")}),jsx(Select,{showSearch:!0,optionFilterProp:"label",value:r?.game_id,placeholder:s("GameSelect.placeholder"),loading:i,style:{width:"200px"},options:g,onChange:f})]})},Lo=ar;});var ko=x(()=>{});var mr,dr,ur,fr,hr,yr,Vo,zo=x(()=>{E();ft();bt();St();To();Ro();ve();ko();(({Spin:mr,theme:dr}=Te)),{Header:ur,Sider:fr,Content:hr}=Te.Layout,yr=e=>{let{title:t,items:o,headerExtra:s,hideGameSelect:r,children:n,navWidth:i,logoutRedirectUrl:c,filter:a,onGameChange:g}=e,{token:{colorBgContainer:f,colorBorder:m}}=dr.useToken(),{usePermissionApiV2:u,localeDropdownMenu:d}=P(),{collapsed:h,setCollapsed:_}=wo();return jsxs(Te.Layout,{children:[jsxs(fr,{collapsible:!0,theme:"light",trigger:null,collapsed:h,width:i,style:{height:"100vh",overflow:"auto",borderRightWidth:1,borderRightStyle:"solid",borderRightColor:m},children:[jsxs("div",{className:"flex gap-2 px-6 py-4 overflow-hidden",children:[jsx(me,{width:32,height:32}),!h&&jsx("div",{className:"h-8 flex items-center expand",children:t})]}),jsx(We,{items:o})]}),jsxs(Te.Layout,{children:[jsx(ur,{style:{padding:"0 24px",background:f},children:jsxs("div",{className:"flex justify-between items-center h-full",children:[jsxs(Space,{size:"small",split:jsx(Divider,{type:"vertical"}),className:"mr-6",children:[jsx(Button,{type:"text",icon:h?jsx(MenuUnfoldOutlined,{}):jsx(MenuFoldOutlined,{}),style:{fontSize:"16px"},onClick:async()=>{_(!h);}}),u&&!r&&jsx(Lo,{filter:a,onGameChange:g}),s?.left?.map(l=>jsx("span",{children:l.children},l.key))]}),jsxs(Space,{size:"small",split:jsx(Divider,{type:"vertical"}),children:[s?.right?.map(l=>jsx("span",{children:l.children},l.key)),d,jsx(_t,{logoutRedirectUrl:c})]})]})}),jsx(hr,{style:{overflow:"auto",padding:"24px 16px",maxHeight:"calc(100vh - 64px)"},children:jsx(Suspense,{fallback:jsx(mr,{style:{display:"flex",justifyContent:"center",alignItems:"center",height:"200px"}}),children:jsx(vo,{hideGameSelect:r,children:n})})})]})]})},Vo=yr;});var Ke=x(()=>{zo();ve();});async function S(e,t={}){let o=Object.assign(t,{responseType:t.responseType??"json"}),{body:s,params:r,responseType:n,isGlobal:i,...c}=o;if(!e)throw new J({status:400,message:"URL is required"});let a=Do.parseUrl(e),g=Object.assign({},a.query,r),f={skipNull:!0,skipEmptyString:!0,strict:!0,encode:!0},m=Do.stringify(g,f);e=m?`${a.url}?${m}`:e;let u=new Headers(o.headers),d=$?.getState()?.token;if(d&&u.set("Authorization",`Bearer ${d}`),_e.getState().usePermissionApiV2)if(i)u.set("App-ID","global");else {let y=H.getState().game;y&&u.set("App-ID",String(y.game_id));}n==="blob"?u.append("Accept","application/octet-stream"):n==="json"&&u.append("Accept","application/json");let h=!!(s&&typeof s=="object"&&!(s instanceof FormData));h&&u.set("Content-Type","application/json");let _=Object.assign(c,{headers:u,body:h?JSON.stringify(s):s}),p=await fetch(e,_);if(!p.ok)throw new J({status:p.status});let l;if(n==="blob")l=await p.blob();else if(n==="json"){let y=await p.json();if(y.code===0||y.code===200||y.status===0)l=y.data;else throw new J({code:y.code,status:p.status,message:y.msg})}else l=await p.text();return {...pick(p,["headers","status","statusText","url"]),data:l}}var J,W=x(()=>{E();Ke();Me();J=class extends Error{constructor(o){super(o?.message);ct(this,"status");ct(this,"code");this.status=o.status,this.code=o.code;}};});function de(e,t){let{usePermissionApiV2:o}=P(),{data:s,isValidating:r,isLoading:n}=$e(e.length>0?[o?"/api/usystem/user/checkV2":"/api/usystem/user/check",e]:null,([i])=>S(i,{method:"POST",body:{permissions:e},isGlobal:t}).then(c=>c.data?.has_all?e.reduce((a,g)=>(a[g]=!0,a),{}):e.reduce((a,g)=>(a[g]=c.data?.[g]??!1,a),{})),{revalidateOnFocus:!1});return {data:s,isValidating:r,isLoading:n}}function A(e,t){let{data:o,isValidating:s,isLoading:r}=de(e?[e]:[],t);return e===void 0?{accessible:!0,isValidating:!1,isLoading:!1}:{accessible:o?.[e]??!1,isValidating:s,isLoading:r}}var Q=x(()=>{E();W();});var Lr,q,Ao=x(()=>{I();Q();Lr=e=>{let{children:t,code:o,showLoading:s,isGlobal:r,disabled:n,...i}=e,{data:c,isLoading:a}=de(Array.isArray(o)?o:[o],r),{t:g}=b();return a?jsx(Button,{loading:s,disabled:!s,...i,children:t}):Object.values(c??{})?.some(Boolean)?jsx(Button,{disabled:n,...i,children:t}):jsx(Tooltip,{defaultOpen:!1,title:g("global.noEntitlement"),children:jsx(Button,{disabled:!0,...i,children:t})})},q=Lr;});var He=x(()=>{Ao();});var K,Ie=x(()=>{K=create((e,t)=>({keyMap:new Map,payloadMap:new Map,getPayload(o){return t().payloadMap.get(o)??{page:1}},setPayload(o,s){e(r=>({payloadMap:new Map(r.payloadMap).set(o,s)}));},refetch(o,s){let r=t().getPayload(o),n={...r,...s};isEqual(r,n)?t().mutate(o,void 0):t().setPayload(o,n);},mutate(o,s,r){let n=t().keyMap.get(o);return mutate(n,s,r)}}));});var Tt,Jr,Yr,Y,Bo=x(()=>{Q();W();E();Ae();Ke();I();Ie();Tt=(r=>(r[r.Confirm=0]="Confirm",r[r.Reset=1]="Reset",r[r.Jump=2]="Jump",r[r.Init=3]="Init",r))(Tt||{}),Jr=(e,t)=>{let o={method:"GET",defaultSize:10,refreshInterval:0,getTotal:M=>M?.total,getDataSource:M=>M?.list,...e},{route:s,code:r,headers:n,isGlobal:i,onePage:c,method:a,buttonsAlign:g,showReset:f,defaultSize:m,refreshInterval:u,tableExtra:d,form:h,extra:_,renderForm:p,afterSuccess:l,body:y,params:v,getTotal:z,getDataSource:O,...Z}=o,{notification:B}=App.useApp(),{t:ye}=b(),[T]=Form.useForm(h),{accessible:N,isLoading:ie}=A(r,i),w=useRef(3),j=useRef(),{game:D}=H(),{usePermissionApiV2:le}=P(),[F,U]=useState(!1),{keyMap:st,getPayload:Ee,refetch:ge}=K(),{page:ee,size:te=m,formValue:xe}=Ee(s),Wt={page:ee,size:te,formValue:xe},rt=useMemo(()=>typeof y=="function"?y(Wt):a==="POST"?{...xe,...c?void 0:{page:ee,size:te},...y}:void 0,[c,a,ee,te,xe,y]),at=useMemo(()=>typeof v=="function"?v(Wt):a==="GET"?{...xe,...c?void 0:{page:ee,size:te},...v}:void 0,[c,a,ee,te,xe,v]),nt=useMemo(()=>{let M=new Headers(n);return le&&(i?M.set("App-ID","global"):D&&M.set("App-ID",String(D.id))),M},[le,i,D,n]),zs=useMemo(()=>{if(!N||!F)return null;let oe=unstable_serialize({route:s,method:a,body:rt,params:at,headers:nt});return st.set(s,oe),oe},[a,s,rt,at,nt,F,N]),it=useRef(!1),{data:be,isValidating:qt}=$e(zs,async()=>(await S(s,{method:a,body:rt,params:at,headers:nt})).data,{shouldRetryOnError:!1,revalidateOnFocus:!1,refreshInterval:it.current?u:0,onSuccess(M){it.current=!0,l?.(w.current,M,T);},onError(M){it.current=!1,B.error({message:"\u8BF7\u6C42\u51FA\u9519",description:M.message});}}),Kt=useMemo(()=>O(be,T),[be,h,O]),Qt=useMemo(()=>z(be),[be,z]),Ds=useMemo(()=>!c&&{showSizeChanger:!0,showQuickJumper:!0,current:ee,pageSize:te,total:Qt,onChange:async(M,oe)=>{w.current=2,ge(s,{page:M,size:oe});}},[ee,te,c,Qt]),Ht=async()=>{w.current=0;try{await T.validateFields(),U(!0),ge(s,{page:1,formValue:T.getFieldsValue()});}catch{U(!1);}},Es=async()=>{w.current=1,T.resetFields();try{await T.validateFields({validateOnly:!0}),U(!0),ge(s,{page:1,formValue:T.getFieldsValue()});}catch{U(!1);}};if(useEffect(()=>{let M=setTimeout(async()=>{try{T.resetFields();let oe=await T.validateFields({validateOnly:!0});ge(s,{page:1,formValue:oe}),U(!0);}catch{U(!1);}},0);return ()=>{clearTimeout(M);}},[h,D]),useImperativeHandle(t,()=>({response:be,dataSource:Kt,form:T})),ie)return jsx(Spin,{style:{display:"flex",justifyContent:"center",alignItems:"center",height:300}});if(!N)return jsx(Result,{status:403,subTitle:ye("global.noEntitlement")});let Os=typeof p=="function"&&jsx(Ce,{showReset:f,buttonsAlign:g,isConfirming:qt,onReset:Es,onConfirm:Ht,children:cloneElement(p(T),{onKeyUp:M=>{M.key==="Enter"&&Ht();}})}),Ns=_&&jsx("div",{className:"mt-2 mb-4",children:_({form:T,data:j.current})});return jsxs("div",{children:[Os,Ns,typeof d=="function"?d(T):d,jsx(Table,{...Z,dataSource:Kt,loading:qt,pagination:Ds})]})},Yr=forwardRef(Jr),Y=Yr;});var Re=x(()=>{Bo();Ie();});function It(e){let{content:t,onConfirm:o,...s}=e,r=useMemo(()=>++sa,[]),n=Wo(),i=n.getOpen(r),[c,a]=useState(!1),g=typeof t=="function",f=()=>{n.show(r);},m=()=>{n.hide(r);},h=jsx(Modal,{...s,open:i,confirmLoading:c,onOk:async()=>{try{a(!0),await o?.();}finally{a(!1);}},onCancel:()=>{m();},children:g?t({hide:m}):t});return {uuid:r,show:f,hide:m,modal:h}}var Wo,sa,Lt=x(()=>{Wo=create((e,t)=>({open:new Map,getOpen:o=>t().open.get(o)??!1,show(o){e({open:new Map(t().open).set(o,!0)});},hide(o){e({open:new Map(t().open).set(o,!1)});},hideAll(){e({open:new Map});}})),sa=0;});function ke(e){let{content:t,form:o,formProps:s,onConfirm:r,...n}=e,[i,c]=useState({}),[a]=Form.useForm();a=o||a;let g=typeof t=="function",f=async()=>{let l=await a.validateFields();await r?.(l,i),h();},m=()=>{a.resetFields();},{uuid:u,show:d,hide:h,modal:_}=It({...n,content:l=>jsx(Form,{...s,form:a,children:g?t(i,l):t}),onConfirm:f,afterClose:m});return {uuid:u,show:({initialValues:l,extraValues:y}={})=>{y&&c(y),l&&a.setFieldsValue(l),d();},hide:h,modal:_}}var je=x(()=>{Lt();});function jo(){return $e("/api/usystem/user/allPermssions",e=>S(e,{isGlobal:!0}).then(t=>t.data))}function $o(){return $e("/api/usystem/user/allPermissionsV2",e=>S(e,{isGlobal:!0}).then(t=>t.data))}function Jo(){let{accessible:e}=A("200005",!0);return $e(e?"/api/usystem/role/all":null,t=>S(t,{isGlobal:!0}).then(o=>o.data))}function Yo(e){let{usePermissionApiV2:t}=P();return $e(`/api/usystem/role/${t?"infoV2":"info"}?name=${e}`,o=>S(o,{isGlobal:!0}).then(s=>s.data))}function Xo(){let{usePermissionApiV2:e}=P();return fe(e?"/api/usystem/role/createV2":"/api/usystem/role/create",(t,{arg:o})=>S(t,{method:"post",body:o,isGlobal:!0}))}function Zo(){let{usePermissionApiV2:e}=P();return fe(e?"/api/usystem/role/updateV2":"/api/usystem/role/update",(t,{arg:o})=>S(t,{method:"post",body:o,isGlobal:!0}))}function es(){return fe("/api/usystem/role/delete",(e,{arg:t})=>S(e,{method:"post",body:t,isGlobal:!0}))}function ts(){return fe("/api/usystem/user/create",(e,{arg:t})=>S(e,{method:"post",body:t,isGlobal:!0}))}function os(){return fe("/api/usystem/user/update",(e,{arg:t})=>S(e,{method:"post",body:t,isGlobal:!0}))}function ss(){return fe("/api/usystem/user/delete",(e,{arg:t})=>S(e,{method:"post",body:t,isGlobal:!0}))}var Je=x(()=>{E();Q();W();});var _a,Ge,zt=x(()=>{I();_a=e=>{let{permissions:t,readonly:o,expand:s,value:r,onChange:n}=e,[i,c]=useState([]),[a,g]=useState({}),[f,m]=useState(r??[]),{t:u}=b(),d=useCallback(p=>{c(p);},[]),h=(p,l)=>{let y=[];return p?y=[...new Set(f.concat(l))]:(y=f.slice(),l.forEach(v=>{let z=y.findIndex(O=>O===v);z>-1&&y.splice(z,1);})),y},_=(p,l)=>{let y=h(p.target.checked,l);m(y),n?.(y);};return useEffect(()=>{m(r??[]);},[r]),useEffect(()=>{s&&c((t??[]).map(({category:p})=>p));},[s,t]),useEffect(()=>{let p=(t??[]).reduce((l,y)=>(l[y.category]=y.permissions.every(v=>f?.includes(v.value)),l),{});g(p);},[f,t]),jsx(Collapse,{style:{width:"100%"},collapsible:"header",activeKey:i,items:(t??[]).map(p=>({key:p.category,label:p.category,extra:!o&&jsx(Checkbox,{checked:a[p.category],onChange:l=>{_(l,p.permissions.map(y=>y.value));},children:u("global.selectAll")}),children:jsx(Checkbox.Group,{style:{width:"100%"},value:f,disabled:o,children:jsx(Row,{gutter:[10,10],style:{width:"100%"},children:p.permissions.map(l=>jsx(Col,{span:6,children:jsx(Checkbox,{value:l.value,onChange:y=>{_(y,[l.value]);},children:l.label})},l.value))})})})),onChange:d})},Ge=_a;});var wa,Pa,rs,as=x(()=>{I();Je();zt();(({Text:wa}=Typography)),Pa=e=>{let{expand:t=!0,value:o,readonly:s,onChange:r}=e,{data:n,isLoading:i,error:c}=jo(),{t:a}=b();return c?jsx("div",{className:"flex justify-center",children:jsx(wa,{type:"danger",children:a("PermissionList.failedDescription")})}):jsx(Skeleton,{active:!0,loading:i,children:jsx(Ge,{value:o,permissions:n,readonly:s,expand:t,onChange:r})})},rs=Pa;});var Dt,ka,Fa,ms,ds=x(()=>{I();Je();zt();(({Text:Dt}=Typography)),{Option:ka}=Select,Fa=e=>{let{expand:t=!0,value:o,readonly:s,onChange:r}=e,{data:{permission:n,game:i}={},isLoading:c,error:a}=$o(),[g,f]=useState([]),m=n?.filter(p=>p.is_common),u=n?.filter(p=>!p.is_common),{t:d}=b();if(useEffect(()=>{let p=[];Object.keys(o??{}).forEach(l=>{l!=="global"&&p.push({gameId:l,permissions:o?.[l]??[]});}),f(p);},[o]),a)return jsx("div",{className:"flex justify-center",children:jsx(Dt,{type:"danger",children:d("PermissionList.failedDescription")})});let h=()=>{f(p=>[...p,{gameId:"",permissions:[]}]);},_=p=>{f(l=>l.filter((y,v)=>v!==p));};return jsxs("div",{className:"flex flex-col w-full",children:[jsx("div",{className:"mb-12",children:jsx(Divider,{dashed:!0,children:d("PermissionList.baseSectionTitle")})}),jsx(Skeleton,{active:!0,loading:c,children:jsx(Ge,{value:o?.global,readonly:s,permissions:m,expand:t,onChange:p=>{r?.({...o,global:p});}})}),jsx("div",{className:"my-12",children:jsx(Divider,{dashed:!0,children:d("PermissionList.gameSectionTitle")})}),g.map((p,l)=>jsx(Card,{title:jsxs(Space,{children:[jsx(Dt,{children:d("global.game")}),s?jsx(Dt,{children:i?.find(y=>y.id===p.gameId)?.name}):jsx(Select,{disabled:s,value:g[l].gameId||void 0,style:{width:"160px"},placeholder:d("PermissionList.gameSelectPlaceholder"),onChange:y=>{f(v=>{let z=v.slice();return z[l].gameId=y,z});},children:i?.map(y=>jsx(ka,{value:y.id,disabled:g.some(({gameId:v})=>v===y.id),children:y.name},y.id))})]}),className:"mb-6",extra:!s&&jsx(Button,{type:"link",onClick:()=>{_(l);},children:d("PermissionList.removeText")}),children:g[l].gameId?jsx(Skeleton,{active:!0,loading:c,children:jsx(Ge,{value:o?.[g[l].gameId],readonly:s,expand:t,permissions:u,onChange:y=>{r?.({...o,[g[l].gameId]:y});}})}):jsx(Empty,{description:d("PermissionList.gameSectionDescription")})},l)),!s&&jsx(Button,{block:!0,type:"dashed",onClick:h,children:d("PermissionList.addText")})]})},ms=Fa;});var Ga,Ve,us=x(()=>{E();as();ds();Ga=e=>{let{value:t}=e,{usePermissionApiV2:o}=P();return jsx(Fragment,{children:o?jsx(ms,{...e,value:t}):jsx(rs,{...e,value:t})})},Ve=Ga;});var fs=x(()=>{});var Xe=x(()=>{us();Je();fs();});var Ss={};lt(Ss,{default:()=>qa,route:()=>ze});var Ba,ze,gs,Wa,qa,ws=x(()=>{Be();I();He();Re();Ie();Xe();je();(({Option:Ba}=Select)),ze="/api/usystem/user/list",gs=e=>{let{message:t}=App.useApp(),{t:o}=b(),{refetch:s,mutate:r}=K(),{data:n,isLoading:i}=Jo(),c=ts(),a=os(),g=o(e?"UserList.createTitle":"UserList.updateTitle"),f=jsxs(Fragment,{children:[jsx(Form.Item,{label:o("global.name"),name:"name",rules:[{required:!0}],children:jsx(Input,{disabled:!e})}),jsx(Form.Item,{label:o("global.role"),name:"roles",children:jsx(Select,{allowClear:!0,mode:"multiple",loading:i,children:(n??[]).map(u=>jsx(Ba,{value:u.name,children:u.name},u.id))})})]});return ke({title:g,formProps:{labelCol:{flex:"80px"}},content:f,onConfirm:async(u,d)=>{e?(await c.trigger(u),s(ze,{page:1}),t.success(o("UserList.createSuccessfully"))):(await a.trigger(u),r(ze,h=>produce(h,_=>{if(_?.List){let p=_.List?.findIndex(l=>l.id===d?.id);p!==-1&&(_.List[p].roles=u.roles);}}),{revalidate:!1}),t.success(o("UserList.updateSuccessfully")));}})},Wa=()=>{let{modal:e,message:t}=App.useApp(),o=ss(),{mutate:s}=K(),{show:r,modal:n}=gs(!0),{show:i,modal:c}=gs(),{t:a}=b(),g=[{title:a("global.name"),dataIndex:"name",key:"name"},{title:"ID",dataIndex:"id",key:"id"},{title:a("global.role"),dataIndex:"roles",key:"roles",width:"40%",render(f){return jsx(Row,{gutter:[4,4],children:(f||[]).map(m=>jsx(Col,{children:m==="root"?jsx(Tag,{color:"#f50",children:m}):jsx(Tag,{color:"#ff5a00",children:jsx(Link,{to:`../role/${m}`,children:m})})},m))})}},{title:a("global.creationTime"),dataIndex:"Ctime",key:"ctime"},{title:a("global.operation"),width:150,align:"center",render:f=>jsxs(Space,{children:[jsx(q,{isGlobal:!0,size:"small",type:"link",code:"100003",onClick:()=>{i({initialValues:{name:f.name,roles:f.roles},extraValues:{id:f.id}});},children:a("global.update")}),jsx(q,{isGlobal:!0,danger:!0,size:"small",code:"100004",type:"link",onClick:()=>{e.confirm({title:a("UserList.deleteTitle"),content:jsx(we,{texts:[f.name],children:a("UserList.deleteContent",{user:f.name})}),async onOk(){await o.trigger({id:f.id,name:f.name}),s(ze,m=>produce(m,u=>{let d=u?.List?.findIndex(h=>h.id===f.id);d&&u?.List?.splice(d,1);})),t.success(a("UserList.deleteSuccessfully"));}});},children:a("global.delete")})]})}];return jsxs(Fragment,{children:[jsx(Card,{title:a("global.user"),extra:jsx(q,{isGlobal:!0,type:"primary",icon:jsx(UserAddOutlined,{}),code:"100002",onClick:()=>{r();},children:a("UserList.createTitle")}),children:jsx(Y,{isGlobal:!0,code:"100001",route:ze,rowKey:"id",columns:g,getTotal:f=>f?.Total,getDataSource:f=>f?.List})}),n,c]})},qa=Wa;});var Is={};lt(Is,{default:()=>Ya});var Ze,Ms,Ja,Ya,Ls=x(()=>{E();Be();I();He();Re();Ie();Xe();je();Q();W();Ze="/api/usystem/role/list",Ms=e=>{let{message:t}=App.useApp(),{t:o}=b(),{refetch:s,mutate:r}=K(),n=Xo(),i=Zo(),c=o(e?"RoleList.createTitle":"RoleList.updateTitle"),a={layout:"vertical"},g=jsxs(Fragment,{children:[jsx(Form.Item,{label:o("global.name"),name:"name",rules:[{required:!0}],children:jsx(Input,{disabled:!e,addonBefore:"role_"})}),jsx(Form.Item,{name:"permissions",children:jsx(Ve,{})})]});return ke({title:c,width:"50vw",formProps:a,content:g,onConfirm:async(m,u)=>{e?(await n.trigger({name:`role_${m.name}`,permissions:m.permissions}),s(Ze,{page:1}),t.success(o("RoleList.createSuccessfully"))):(await i.trigger({id:u?.id,name:`role_${m.name}`,permissions:m.permissions}),r(Ze,d=>produce(d,h=>{let _=h?.List?.find(p=>p.id===u?.id);_&&(_.permissions=m.permissions);}),{revalidate:!1}),t.success(o("RoleList.updateSuccessfully")));}})},Ja=()=>{let{accessible:e}=A("200005",!0),{modal:t,message:o}=App.useApp(),{t:s}=b(),{usePermissionApiV2:r}=P(),{mutate:n}=K(),{show:i,modal:c}=Ms(!0),{show:a,modal:g}=Ms(),f=es(),m=async d=>{let{data:h}=await S(`/api/usystem/role/info${r?"V2":""}?name=${d.name}`,{isGlobal:!0});a({initialValues:{permissions:h?.permissions,name:h?.name.replace(/^role_/,"")},extraValues:{id:h?.id}});},u=[{title:s("global.name"),key:"name",render(d){return e?jsx(Link,{to:`${d.name}`,relative:"path",children:d.name}):jsx(Fragment,{children:d.name})}},{title:"ID",dataIndex:"id",key:"id"},{title:s("global.creationTime"),dataIndex:"ctime",key:"ctime"},{title:s("global.operation"),width:150,align:"center",render:(d,h)=>jsxs(Space,{size:"small",children:[jsx(q,{isGlobal:!0,code:"200003",size:"small",type:"link",onClick:async()=>{m(h);},children:s("global.edit")}),jsx(q,{isGlobal:!0,danger:!0,code:"200004",size:"small",type:"link",onClick:()=>{t.confirm({title:s("RoleList.deleteTitle"),content:jsx(we,{texts:[h.name],children:s("RoleList.deleteContent",{role:h.name})}),async onOk(){await f.trigger({id:h.id,name:h.name}),n(Ze,_=>produce(_,p=>{let l=p?.List?.findIndex(y=>y.id===h.id);l&&p?.List?.splice(l,1);})),o.success(s("RoleList.deleteSuccessfully"));}});},children:s("global.delete")})]})}];return jsxs(Fragment,{children:[jsx(Card,{title:s("global.role"),extra:jsx(q,{isGlobal:!0,type:"primary",code:"200002",icon:jsx(UsergroupAddOutlined,{}),onClick:()=>{i();},children:s("RoleList.createTitle")}),children:jsx(Y,{isGlobal:!0,rowKey:"name",columns:u,code:"200001",route:Ze,getTotal:d=>d?.Total,getDataSource:d=>d?.List})}),c,g]})},Ya=Ja;});var Rs={};lt(Rs,{default:()=>r2});var s2,r2,ks=x(()=>{I();Xe();s2=()=>{let e=useParams(),{data:t,isLoading:o}=Yo(e.name),{t:s}=b();return jsxs(Fragment,{children:[jsx(Breadcrumb,{style:{marginBottom:24},items:[{key:"1",title:jsx(Link,{to:"..",children:s("global.role")})},{key:"2",title:e.name}]}),jsx(Card,{title:s("RoleDetail.title"),children:jsxs(Skeleton,{loading:o,children:[jsxs(Descriptions,{column:3,layout:"vertical",children:[jsx(Descriptions.Item,{label:s("global.name"),children:t?.name}),jsx(Descriptions.Item,{label:"ID",children:t?.id}),jsx(Descriptions.Item,{label:s("global.creationTime"),children:t?.ctime})]}),jsx(Ve,{readonly:!0,value:t?.permissions})]})})]})},r2=s2;});E();I();var a1=e=>{let{initialTags:t,addable:o,removable:s,addCallback:r,removeCallback:n}=e,{t:i}=b(),{token:c}=theme.useToken(),[a,g]=useState([]),[f,m]=useState(!1),[u,d]=useState(""),[h,_]=useState(-1),[p,l]=useState(""),y=useRef(null),v=useRef(null);useEffect(()=>{g(t??[]);},[t]),useEffect(()=>{f&&y.current?.focus();},[f]),useEffect(()=>{v.current?.focus();},[u]);let z=async w=>{if(await n?.(w)){let D=a.filter(le=>le!==w);g(D);}},O=()=>{m(!0);},Z=w=>{d(w.target.value);},B=async()=>{u&&a.indexOf(u)===-1&&await r?.(u)&&g([...a,u]),m(!1),d("");},ye=w=>{l(w.target.value);},T=()=>{let w=[...a];w[h]=p,g(w),_(-1),d("");},N={width:78,verticalAlign:"top"},ie={background:c.colorBgContainer,borderStyle:"dashed"};return jsxs(Space,{wrap:!0,size:[0,8],children:[jsx(Space,{wrap:!0,size:[0,8],children:a.map((w,j)=>h===j?jsx(Input,{ref:v,size:"small",style:N,value:p,onChange:ye,onBlur:T,onPressEnter:T},w):jsx(Tag,{closable:s,style:{userSelect:"none"},onClose:async D=>{D.preventDefault(),await z(w);},children:jsx("span",{onDoubleClick:D=>{j!==0&&(_(j),l(w),D.preventDefault());},children:w})},w))}),o&&(f?jsx(Input,{ref:y,type:"text",size:"small",style:N,value:u,onChange:Z,onBlur:B,onPressEnter:B}):jsxs(Tag,{style:ie,onClick:O,children:[jsx(PlusOutlined,{}),"\xA0",i("global.add")]}))]})},n1=a1;var c1=e=>{let{children:t,...o}=e,[s,r]=useState(!1);return jsx(Typography.Paragraph,{...o,className:"mb-0",ellipsis:{rows:2,expandable:"collapsible",expanded:s,onExpand:(n,i)=>{r(i.expanded);}},children:t})},Ue=c1;Ae();Be();Q();W();Ae();I();var Mr=e=>{let{code:t,action:o,extras:s,headers:r,isGlobal:n,getRowKey:i,getDataSource:c,hasMore:a,renderForm:g,transformArg:f,...m}=e,{t:u}=b(),[d]=Form.useForm(),{accessible:h,isLoading:_}=A(t),[p,l]=useState(!1),[y,v]=useState(),z=(F,U)=>{if(!p)return null;let st=F!==0?i(U):void 0,Ee=f(y,st);return Do.stringify(Ee)?`${o}?${Do.stringify(Ee)}`:o},{data:O,size:Z,setSize:B,isValidating:ye}=Pr(z,F=>S(F,{headers:typeof r=="function"?r(d):r,isGlobal:n}).then(U=>U.data),{shouldRetryOnError:!1,revalidateOnFocus:!1,revalidateFirstPage:!1}),T=c(O),N=ye||Z>0&&O&&typeof O[Z-1]>"u",ie=typeof a<"u"?!a(O):!0,w=!T||T.length===0,j=async()=>{let F=await d.getFieldsValue();v(F);try{await d.validateFields(),B(1),l(!0);}catch{B(0),l(!1);}},D=()=>{B(Z+1);},le=async()=>{try{d.resetFields(),await d.validateFields({validateOnly:!0}),B(1);}catch{B(0);}};return useEffect(()=>{h&&d.validateFields({validateOnly:!0}).then(F=>{v(F),l(!0);}).catch(()=>{l(!1);});},[h]),_?jsx(Spin,{style:{display:"flex",justifyContent:"center",alignItems:"center",height:300}}):h?jsxs(Fragment,{children:[g?jsx(Ce,{extras:s?.map(F=>({key:F.key,children:typeof F.children=="function"?F.children(d):F.children})),onReset:le,onConfirm:j,children:g(d)}):jsx(Form,{form:d}),jsx(Table,{...m,dataSource:T,loading:N,pagination:!1}),!w&&jsx(Button,{block:!0,loading:N,type:"link",htmlType:"button",disabled:N||ie,onClick:D,children:u(N?"InfiniteList.loadingText":ie?"InfiniteList.reachEndText":"InfiniteList.loadMoreText")})]}):jsx(Result,{status:403,subTitle:u("global.noEntitlement")})},Uo=Mr;Ke();bt();He();I();Q();var Fr=e=>{let{code:t,isGlobal:o,children:s}=e,{accessible:r,isValidating:n}=A(t,o),{t:i}=b();return n?jsx(Spin,{style:{display:"flex",justifyContent:"center",alignItems:"center",height:200}}):r?jsx(Fragment,{children:s}):jsx(Result,{status:"403",subTitle:i("global.noEntitlement")})},Gr=Fr;Re();St();qe();je();Lt();Q();Me();I();var pa=e=>{let{redirectUrl:t}=e,o=useNavigate(),{t:s}=b();return jsx("div",{className:"h-screen flex justify-center items-center",children:jsx(Result,{status:"404",title:"404",subTitle:s("NotFound.subTitle"),extra:t&&jsx(Button,{type:"primary",onClick:()=>{o(t);},children:s("NotFound.buttonText")})})})},ma=pa;I();Re();var {Option:Ko}=Select,fa=()=>{let{t:e}=b(),t=[{key:"username",title:e("global.username"),dataIndex:"uname",width:100},{key:"label",title:e("global.label"),dataIndex:"label",width:150},{key:"method",title:e("global.method"),dataIndex:"method",width:100},{key:"route",title:e("global.route"),dataIndex:"route",width:200},{key:"request",title:e("global.request"),dataIndex:"request",render(o){return jsx(Ue,{children:o})}},{key:"response",title:e("global.response"),dataIndex:"response",render(o){return jsx(Ue,{children:o})}},{key:"creation_time",title:e("global.creationTime"),dataIndex:"ctime",width:200,render(o){return ua(o).format("YYYY-MM-DD HH:mm:ss")}}];return jsx(Card,{title:"\u64CD\u4F5C\u65E5\u5FD7",children:jsx(Y,{rowKey:"id",code:"300001",columns:t,tableLayout:"fixed",route:"/api/usystem/log/list",getTotal:o=>o?.Total,getDataSource:o=>o?.List,renderForm:o=>jsxs(Form,{form:o,layout:"inline",children:[jsx(Form.Item,{label:e("global.username"),name:"uname",children:jsx(Input,{allowClear:!0})}),jsx(Form.Item,{label:e("global.route"),name:"route",children:jsx(Input,{allowClear:!0})}),jsx(Form.Item,{label:e("global.method"),name:"method",children:jsxs(Select,{allowClear:!0,style:{width:"100px"},children:[jsx(Ko,{value:"get",children:"GET"}),jsx(Ko,{value:"post",children:"POST"})]})}),jsx(Form.Item,{label:e("global.label"),name:"label",children:jsx(Input,{allowClear:!0})})]})})})},ha=fa;var l2=lazy(()=>Promise.resolve().then(()=>(ws(),Ss))),c2=lazy(()=>Promise.resolve().then(()=>(Ls(),Is))),p2=lazy(()=>Promise.resolve().then(()=>(ks(),Rs))),m2=()=>jsxs(Routes,{children:[jsx(Route,{index:!0,element:jsx(Navigate,{to:"user"})}),jsx(Route,{path:"user",element:jsx(l2,{})}),jsx(Route,{path:"role",element:jsx(c2,{})}),jsx(Route,{path:"role/:name",element:jsx(p2,{})})]}),d2=m2;E();I();ft();qe();Me();W();var Fs='data:image/svg+xml,<svg xml:space="preserve" style="enable-background:new 0 0 6000 4000;" viewBox="0 0 6000 4000" y="0px" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" id="Layer_1" version="1.1">%0A<style type="text/css">%0A%09.Graphic_x0020_Style_x0020_100{fill:%23FFFFFF;}%0A%09.Graphic_x0020_Style_x0020_101{fill:url(%23SVGID_1_);}%0A%09.Graphic_x0020_Style_x0020_102{fill:url(%23SVGID_2_);}%0A%09.Graphic_x0020_Style_x0020_104{fill:%23DB6767;}%0A%09.Graphic_x0020_Style_x0020_105{fill:%23FFDE70;}%0A%09.Graphic_x0020_Style_x0020_106{fill:%23FFB114;}%0A%09.Graphic_x0020_Style_x0020_107{fill:%236584C6;}%0A%09.Graphic_x0020_Style_x0020_108{fill:%23102140;}%0A%09.Graphic_x0020_Style_x0020_109{fill:%233B546B;}%0A%09.Graphic_x0020_Style_x0020_110{fill:%23152A52;}%0A%09.Graphic_x0020_Style_x0020_111{fill:%23E8766F;}%0A%09.Graphic_x0020_Style_x0020_112{fill:%23EF5668;}%0A%09.Graphic_x0020_Style_x0020_113{fill:%23FC9590;}%0A%09.Graphic_x0020_Style_x0020_114{fill:%23912433;}%0A%09.Graphic_x0020_Style_x0020_115{opacity:0.5;fill:%23FFFFFF;}%0A%09.Graphic_x0020_Style_x0020_116{fill:%231A1A1A;}%0A%09.Graphic_x0020_Style_x0020_117{fill:%23535353;}%0A%09.Graphic_x0020_Style_x0020_118{fill:%23DBD2DB;}%0A%09.Graphic_x0020_Style_x0020_119{fill:%234D73C6;}%0A%09.Graphic_x0020_Style_x0020_120{fill:%23D1334A;}%0A%09.Graphic_x0020_Style_x0020_123{fill:url(%23SVGID_3_);}%0A%09.st0{fill:url(%23SVGID_4_);}%0A%09.st1{fill:url(%23SVGID_5_);}%0A%09.st2{fill:url(%23SVGID_6_);}%0A%09.st3{fill:%239D8A9D;}%0A%09.st4{fill:url(%23SVGID_7_);}%0A%09.st5{fill:url(%23SVGID_8_);}%0A%09.st6{fill:%233B546B;}%0A%09.st7{fill:%23A8A1A8;}%0A%09.st8{fill:%23DBD2DB;}%0A%09.st9{fill:%23FFFFFF;stroke:%231A1A1A;stroke-width:5.3432;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st10{fill:%23339E7E;}%0A%09.st11{fill:none;stroke:%2310663F;stroke-width:5.3432;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st12{fill:%2300593B;}%0A%09.st13{fill:none;stroke:%233DBE88;stroke-width:5.3432;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st14{fill:none;stroke:%23134411;stroke-width:8.0149;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st15{fill:%23EF5668;}%0A%09.st16{fill:%23FC9590;}%0A%09.st17{fill:%23102140;}%0A%09.st18{fill:%23DB6767;}%0A%09.st19{fill:%231A1A1A;stroke:%231A1A1A;stroke-width:5.3432;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}%0A%09.st20{fill:%23FFFFFF;}%0A%09.st21{fill:%23535353;}%0A%09.st22{fill:%23F9EBF9;}%0A%09.st23{fill:%23D896D8;}%0A%09.st24{fill:%238E3D8E;}%0A%09.st25{fill:%23CA74CA;}%0A%09.st26{fill:%23D590D5;}%0A%09.st27{fill:%23160A16;}%0A%09.st28{fill:%23384A6E;}%0A%09.st29{fill:%23B7C0D4;}%0A%09.st30{fill:%23E8766F;}%0A%09.st31{fill:%23FFB114;}%0A%09.st32{fill:%23FFDE70;}%0A%09.st33{fill:%23434343;}%0A%09.st34{fill:%23664708;}%0A%09.st35{fill:%23D9D9D9;}%0A%09.st36{fill:url(%23SVGID_9_);}%0A%09.st37{fill:url(%23SVGID_10_);}%0A%09.st38{fill:url(%23SVGID_11_);}%0A%09.st39{fill:url(%23SVGID_12_);}%0A</style>%0A<linearGradient y2="0" x2="1" y1="0" x1="0" gradientUnits="userSpaceOnUse" id="SVGID_1_">%0A%09<stop style="stop-color:%234085F0" offset="0"></stop>%0A%09<stop style="stop-color:%23275DC9" offset="1"></stop>%0A</linearGradient>%0A<linearGradient y2="0" x2="1" y1="0" x1="0" gradientUnits="userSpaceOnUse" id="SVGID_2_">%0A%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09<stop style="stop-color:%23529BF7" offset="1"></stop>%0A</linearGradient>%0A<linearGradient y2="0" x2="1" y1="0" x1="0" gradientUnits="userSpaceOnUse" id="SVGID_3_">%0A%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09<stop style="stop-color:%23EBF0F7" offset="1"></stop>%0A</linearGradient>%0A<g>%0A%09<linearGradient y2="3014.9536" x2="4941.2124" y1="3014.9536" x1="1288.5804" gradientUnits="userSpaceOnUse" id="SVGID_4_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23EBF0F7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M1288.6,2793.9c55.3,134.1,186.5,387.6,453.7,503.3c220.8,95.6,442.9,57.4,694.7,14.2%0A%09%09c343.1-59,344.3-140.4,552.9-134.7c282.5,7.8,357.3,159.3,673.4,219.7c66.5,12.7,309.6,47.5,574.2-28.4%0A%09%09c360.6-103.4,734.8-407.2,701.8-560C4895.4,2605.9,4103.5,2505.3,1288.6,2793.9z" class="st0"></path>%0A%09<linearGradient y2="1994.5433" x2="5456.5684" y1="1994.5433" x1="686.3356" gradientUnits="userSpaceOnUse" id="SVGID_5_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23529BF7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M5428.3,1649.1c-131.4-612.4-697.6-977.3-1155.4-1020.7c-232.1-22-245.1,56.7-616.7,117%0A%09%09c-821.7,133.2-1081-199.5-1850.1-85.1c-341.2,50.8-687.6,102.3-914.4,382.8C519.9,1502.7,718.2,2270,973.9,2621.3%0A%09%09c165.2,227,392.7,363.9,392.7,363.9c68.9,41.5,168.6,100.4,304.8,131.1c237.9,53.7,359.9-29.9,560-42.5%0A%09%09c342.7-21.6,401.6,197.2,772.6,276.4c190.7,40.7,257.4,0.5,1084.5-212.6c811.7-209.1,858.2-198.9,974.7-297.7%0A%09%09C5379.4,2571.8,5521.7,2084.7,5428.3,1649.1z M2709.5,2042.7v-2.7V2042.7z" class="st1"></path>%0A%09<linearGradient y2="1859.5726" x2="5227.9292" y1="1859.5726" x1="1116.5316" gradientUnits="userSpaceOnUse" id="SVGID_6_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23EBF0F7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M5148.1,1664.4c-146.3-421.8-552.5-838.3-943.2-819c-297.4,14.6-412.5,273.3-678.4,215.1%0A%09%09c-227.7-49.8-217.9-255.8-471.6-405.4c-401.7-236.8-1083-107.4-1265.9,223.4c-99.3,179.7-11.7,346.7-173.7,521.2%0A%09%09c-113.5,122.3-192.5,78.9-314.4,198.6c-154.9,152-219.8,410.7-165.5,645.3c73.8,318.7,366.8,477.2,388.9,488.1%0A%09%09c827.4,146.2,1654.7,292.3,2482.1,438.5c80.8,13.1,529.4,77.9,879.7-216.7C5295.8,2609,5272.6,2023.2,5148.1,1664.4z%0A%09%09 M2709.5,2042.7v-2.7V2042.7z" class="st2"></path>%0A%09<path d="M5224.3,2042.5c-143.7-88.6-413.9-68.2-740.1-95.9c-488.7-41.5-1188.7,312.8-1437,221.4%0A%09%09c-95.1-35-167.4-141.7-220.4-260v1053.6c291.4,51.5,582.8,103,874.2,154.4l1292.2-269.1C5190,2615.6,5243.4,2314,5224.3,2042.5z" class="st3"></path>%0A%09<linearGradient y2="1741.7239" x2="2757.678" y1="1741.7239" x1="1116.5317" gradientUnits="userSpaceOnUse" id="SVGID_7_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23529BF7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M1789.1,878.4c-99.3,179.7-11.7,346.7-173.7,521.2c-113.5,122.3-192.5,78.9-314.4,198.6%0A%09%09c-154.9,152-219.8,410.7-165.5,645.3c73.8,318.7,366.8,477.2,388.9,488.1c411.1,72.6,822.2,145.3,1233.4,217.9V550.2%0A%09%09C2377.7,484.9,1931.7,620.4,1789.1,878.4z M2709.5,2042.7v-2.7V2042.7z" class="st4"></path>%0A%09<linearGradient y2="1215.4698" x2="2649.5779" y1="1215.4698" x1="1137.9542" gradientUnits="userSpaceOnUse" id="SVGID_8_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23EBF0F7" offset="1"></stop>%0A%09</linearGradient>%0A%09<path d="M1789.1,878.4c-99.4,179.7-11.7,346.7-173.7,521.2c-113.6,122.3-192.5,78.9-314.4,198.6%0A%09%09c-79.1,77.6-134.7,183-163,298.8c82.9-108.4,187.6-189.5,319.3-210.4c445.6-70.8,892.8,45.1,1192.3-113.7V537.1%0A%09%09C2296.9,511.3,1918.4,644.5,1789.1,878.4z" class="st5"></path>%0A%09<polygon points="1937.1,644.5 1937.1,2265.3 1979.7,2269.9 1983,640.9" class="st6"></polygon>%0A%09<path d="M2757.7,550.2c-35.6-6.1-71.7-10.5-108.1-13.1v1035.7c38.6-20.4,74.7-45.4,108.1-76V550.2z" class="st7"></path>%0A%09<path d="M1117.4,850.5c-15.5,9-30.8,18.5-45.8,28.5v1689.5l42.6,5.1L1117.4,850.5z" class="st6"></path>%0A%09<path d="M2826.8,564.5c-22.7-5.5-45.8-10.3-69.1-14.3v2399.3c23,4.1,46.1,8.1,69.1,12.2V564.5z" class="st8"></path>%0A%09<g>%0A%09%09<path d="M1121,2361c0,0-98.3-110.7,84.2-222.1c-25.3,43.4-118,92.3-52.4,202.9%0A%09%09%09c27.1,62.9-12.8,89.7-12.8,89.7S1080.6,2436.5,1121,2361z" class="Graphic_x0020_Style_x0020_116"></path>%0A%09%09<g>%0A%09%09%09<path d="M1282.2,2470.4c-15.5,28.9-215.1,26.5-315.7,23.4c-1.1-4.4-2.1-8.7-3.1-13c-1.8-7.8-3.5-15.5-5-23.2%0A%09%09%09%09C1035.2,2452.4,1299.9,2437.2,1282.2,2470.4z" class="st9"></path>%0A%09%09%09<path d="M1282.2,2470.4l-16.7,216.9c-25.9,39.1-25.5,89.5-36,137.5c-4.3,22.7-20.4,30.2-38.6,29.2%0A%09%09%09%09c-39.4-34.1-82.1-74.2-124.2-119.9c-50-80.3-81.3-162.6-100.3-240.3C1067.1,2496.9,1266.7,2499.4,1282.2,2470.4z" class="st9"></path>%0A%09%09</g>%0A%09%09<g>%0A%09%09%09<path d="M1331.3,2151c12.7,12.2,30.7,16,43,17c5.5-2.7,11.1-5.7,16.6-8.9c24.3-13.9,39.8-38.8,49.7-66.7%0A%09%09%09%09c-16.1,5.8-51.8,17.4-67.4,11.2c-20.4-8.1-12.5-17.1-3-14.1c11.7,6,55.7-6.5,75.3-12.5c4.1-14.9,6.8-30.2,8.6-44.8%0A%09%09%09%09c-13.9,8.3-34.9,15.8-44.4,12.6c-12.3-4.2-7.4-14.4,2.7-13.2c7.4,0.8,31.4-12,43.6-18.8c2.2-29.7,0.8-53.4,0.4-59.6%0A%09%09%09%09c-0.1-1-0.1-1.6-0.1-1.6s-29-8.6-66.9-14.1c-8,8.1-19.9,20.8-24.9,29.3c-8,13.3-11.7,24.3-18.1,22.2%0A%09%09%09%09c-12.7-6.6,13.3-37.6,27.8-53.4c-16.5-1.8-34.1-2.9-51.4-2.3c-51.5,40.6-24.5,76.1-44.7,71.8c-17.5-3.7,13.5-51.5,26.6-70.5%0A%09%09%09%09c-16.3,1.8-31.9,5.4-45.3,11.6c-12.1,6.2-22.8,12.2-32.4,18.1c-14.5,34.4,20,53.7,1.7,57.9c-14.3,3.3-16.2-30.4-16.2-48.5%0A%09%09%09%09c-124.9,86.7,2.8,144.8,2.8,144.8c0.1,0.5,0.2,1,0.3,1.6c11.4,70.5,70.1,82,134.6,58.3c-10-8-28.1-22.8-31-26.1%0A%09%09%09%09C1315,2147.7,1321.1,2139.9,1331.3,2151z" class="st10"></path>%0A%09%09%09<path d="M1433.5,1969.4c0,0-146,112.4-218.2,149.3" class="st11"></path>%0A%09%09%09<path d="M1396.4,2051c0,0-33.9,4.5-68.8-3.9" class="st11"></path>%0A%09%09%09<path d="M1316.2,1996.6c0,0-20.5,49.4-10.8,65.9" class="st11"></path>%0A%09%09%09<path d="M1352,2122.6c0,0-59.6-20.8-79-38.4" class="st11"></path>%0A%09%09%09<path d="M1216.4,2052.4c0,0-4.7,37.9,18.4,55.6" class="st11"></path>%0A%09%09</g>%0A%09%09<g>%0A%09%09%09<path d="M882.7,2066.4c10.6,1.3,21,2.9,31.1,4.8c13.6,13.1,30.4,35.2,30.3,62.7c-1.8,23.8,15.4,19.7,16.3,10%0A%09%09%09%09c0.7-7-2.6-43-4.5-62.6c108.1,32.2,164.1,103.7,86.8,204.4c0,0,80.5,195.4-178.5,184.8c22.7-22.7,62.8-66.9,41.4-76.4%0A%09%09%09%09c-27.3-12.2-10,45.1-70.7,74.5c-19-1.7-39.5-4.4-61.7-8.2c-24-5.1-47.2-15.4-69.1-28.8c39.7-11.4,137-41.9,120.6-63.3%0A%09%09%09%09c-18.9-24.6-31,45.8-143.9,47.6c-21.5-15.8-41.4-33.9-58.9-52.1c37.3-6,107.4-20.1,100.5-40.6c-5.2-8.8-23.3,1.5-49.6,10.6%0A%09%09%09%09c-16.7,5.7-46.9,10.3-66.7,12.9c-38.7-43.2-62.7-81.8-62.7-81.8s30.7-35.6,77.3-76.8c23.3,3.1,68.1,9.9,76,18.1%0A%09%09%09%09c10.7,11.2,29.3,3.1,19.9-14.1c-7.3-13.2-42.1-23.8-69.1-26.7c20.4-16.6,42.9-33.2,66.6-48c31,11.1,99.6,37.5,106.2,56.3%0A%09%09%09%09c7.6,12.8,28.5,9,14.2-20.6c-10.9-22.7-68.4-42.4-95-50.5C786.1,2077.1,836.1,2060.7,882.7,2066.4z" class="st12"></path>%0A%09%09%09<path d="M593.2,2264.5c0,0,316.6-1.6,449.7,21.1" class="st13"></path>%0A%09%09%09<path d="M740.2,2197.3c0,0,46.4,26.9,77.7,70.8" class="st13"></path>%0A%09%09%09<path d="M768.3,2342.5c0,0,86.7-42.5,95.7-72.6" class="st13"></path>%0A%09%09%09<path d="M883.4,2149.7c0,0,45.4,83.2,46.7,123.9" class="st13"></path>%0A%09%09%09<path d="M958.3,2368c0,0,53.3-43.2,47.7-87.5" class="st13"></path>%0A%09%09</g>%0A%09%09<g>%0A%09%09%09<path d="M924,1810c7.6,5.4,14.9,11,21.8,16.7c4.5,17.1,7.4,43.4-5.2,67.8c-12.3,20.5,2.9,23.7,8,15.4%0A%09%09%09%09c3.7-5.9,17.7-39.3,25.2-57.5c68.8,71.8,79.4,157.7-26.4,216.5c0,0-27.1,205.9-222.4,93.1c27.9-11.1,79.1-34.4,67-51.4%0A%09%09%09%09c-15.5-21.8-28.3,36.1-88.6,38c-13.9-9.1-28.5-19.7-43.9-32c-16.2-14.1-29.4-32.6-40.2-53.2c35.9,5.7,125,17.5,122.1-8.1%0A%09%09%09%09c-3.3-29.5-44.9,28.3-132.9-15.1c-9.4-22.6-16.5-46.7-21.7-69.8c31.6,9.6,92.2,25,96.2,4c0-9.9-18.7-8-43.2-10.4%0A%09%09%09%09c-15.5-1.6-41-9.5-57.5-15.1c-10.2-53.9-11.1-97.8-11.1-97.8s40-19.4,94.8-37.4c16.6,12,48.1,36,50.4,46.4%0A%09%09%09%09c3.2,14.2,21.3,14.5,21.8-4.6c0.4-14.7-21.6-38-41.2-51.3c23.4-6.6,48.4-12.4,73.4-16.1c18.9,22.3,59.8,73.1,56.3,92.5%0A%09%09%09%09c0,14.5,17.9,19.4,20.4-12.7c1.9-24.5-33.5-65-50.3-82.8C844.5,1781,890.6,1786.3,924,1810z" class="st10"></path>%0A%09%09%09<path d="M609.7,1870.6c0,0,245.3,125,337.8,198.4" class="st11"></path>%0A%09%09%09<path d="M754.1,1869.5c0,0,23.6,42.4,27.7,94" class="st11"></path>%0A%09%09%09<path d="M709.4,2009.9c0,0,86.4-3.2,107.1-26.3" class="st11"></path>%0A%09%09%09<path d="M886.5,1884.4c0,0-2.9,92.1-20.5,128.9" class="st11"></path>%0A%09%09%09<path d="M844.5,2108.4c0,0,60.9-17.2,76.8-58.8" class="st11"></path>%0A%09%09</g>%0A%09%09<g>%0A%09%09%09<path d="M1245.1,1794.2c20.8-5.3,34.8-21,42.5-32.8c-0.2-7.2-0.7-14.6-1.4-22.1c-3.2-32.9-23.8-63.7-50.7-90.6%0A%09%09%09%09c-1.8,19.7-7.4,62.7-22.8,74.5c-20.1,15.5-26.4,2-17.9-5.6c13.2-8.1,22.1-59.9,25.4-83.2c-15-13.2-31.3-25.3-47.2-36%0A%09%09%09%09c2.2,19-0.2,44.7-9,52.2c-11.4,9.8-20.6-1.3-13.9-10.8c4.9-7,2.8-38.8,1.4-55.2c-33.1-20.3-61.3-33.5-68.7-36.8%0A%09%09%09%09c-1.2-0.6-1.9-0.9-1.9-0.9s-25.3,23.8-51.7,58.6c5.2,13,13.5,32.7,20.6,42.9c11.1,16.1,21.9,26.5,16,31.7%0A%09%09%09%09c-14.4,8.7-36.4-36.3-47-60.5c-10.9,15.5-21.4,32.5-29.9,50.2c19.7,76.5,74.9,71.1,59.3,88.7c-13.5,15.3-52.4-45-67.4-69.8%0A%09%09%09%09c-6.6,17.5-10.6,35.3-10.6,52.6c0.7,15.9,2,30.4,3.8,43.6c32.1,35.6,72.7,12.7,67.8,33.6c-3.8,16.4-43.7-2.3-64.6-13.4%0A%09%09%09%09c33.9,178.4,168.8,85.6,168.8,85.6c0.7,0.2,1.3,0.5,2,0.7c87.5,31.6,132-20.3,138.8-99.5c-14.6,5.1-41.3,14.3-46.7,15.2%0A%09%09%09%09C1232.6,1808.5,1226.7,1797.5,1245.1,1794.2z" class="st10"></path>%0A%09%09%09<path d="M1089.2,1580.6c0,0,52.5,215.2,56.8,310.2" class="st11"></path>%0A%09%09%09<path d="M1164,1667.7c0,0-12.8,36.8-41,66.6" class="st11"></path>%0A%09%09%09<path d="M1058.6,1715c0,0,46.2,50.8,70.4,51.1" class="st11"></path>%0A%09%09%09<path d="M1223.1,1755.9c0,0-55.6,47.1-86.3,55.9" class="st11"></path>%0A%09%09%09<path d="M1070,1849.3c0,0,41.4,27.9,74,15.4" class="st11"></path>%0A%09%09</g>%0A%09%09<path d="M1146.1,1890.8c0,0,14.8,158.8-25,350.6" class="st14"></path>%0A%09%09<path d="M937.7,2061.4c0,0,170.2,50.3,183.3,183.5" class="st14"></path>%0A%09%09<path d="M1029.4,2285.6c13.6-4.9,80.6-4.6,99.5,8.8" class="st14"></path>%0A%09%09<path d="M1223.3,2114.4c0,0-98.3,30.9-77.3,232.1" class="st14"></path>%0A%09</g>%0A%09<g>%0A%09%09<path d="M2812.2,2216.6c0,0,60.8,180.6,68.3,350.2c-193.8,44.1-832.8-6.2-832.8-6.2%0A%09%09%09s14-297.1,80.4-332.6C2416.5,2250.4,2812.2,2216.6,2812.2,2216.6z" class="Graphic_x0020_Style_x0020_110"></path>%0A%09%09<path d="M2880.5,2566.9c-7.5-169.6-68.3-350.2-68.3-350.2s-395.8,33.8-684.1,11.4%0A%09%09%09c-17.2,9.2-30.9,36-41.7,70.6c61.5,25.5,298.6,104,672.8-9.3c-4.1,90.6,73.5,94.8,73.5,94.8c12.1,42.2,11.5,131.9,9.7,189.5%0A%09%09%09C2856.4,2571.7,2869.2,2569.4,2880.5,2566.9z" class="Graphic_x0020_Style_x0020_116"></path>%0A%09%09<path d="M2025.5,1497.7c-85.5,55.5-169,100.9-241.9,164.1c7.6,4.2,13.3,9.3,16.2,15.7%0A%09%09%09c0,0,180.9-97,314-235c-1,0.6-1.9,1.2-2.9,1.8C2081.6,1463,2054.9,1479,2025.5,1497.7z" class="Graphic_x0020_Style_x0020_120"></path>%0A%09%09<path d="M2229.4,1095.4c-25.7-0.9-176.5,78.1-272.1,168.2c-95.6,90.1-340.3,323.9-337.5,369.2%0A%09%09%09c19.6,10.4,121.7,5.7,163.9,29c72.9-63.1,156.4-108.6,241.9-164.1c29.4-18.7,56.1-34.7,85.5-53.4c0.9-0.7,1.9-1.2,2.9-1.8%0A%09%09%09c13.7-14.2,26.8-28.8,39.2-43.8C2153.1,1398.7,2255.2,1096.3,2229.4,1095.4z" class="st15"></path>%0A%09%09<path d="M2771.6,1674.1c-70.5,28.9-142.4,50.7-222.4,50.7c-37.4,0-80.1,18.7-104.2,53.4%0A%09%09%09c-61.4,98.9-133.6,184.3-232.4,229.8c-32.1,14.6-74.5,15.6-110.7,1.8c-16.7,87.9-31.4,153-31.4,153s68.3,148.9,349.6,142.7%0A%09%09%09c281.3-6.2,397.1-37.2,407.5-93.1C2841.2,2157.3,2787.4,1837.7,2771.6,1674.1z M2709.5,2042.7v-2.7V2042.7z" class="Graphic_x0020_Style_x0020_120"></path>%0A%09%09<path d="M2767.4,1598.2c4.1-101.3,24.8-260.6-97.2-366.1c-122-105.5-384.9-173.4-473.5-126.7l-76.5,292.8%0A%09%09%09c11.8,55.4,25.9,140.8,27.6,239.6c1.7,97.6-23.8,254.9-46,372c36.3,13.8,78.6,12.7,110.7-1.8c98.9-45.4,171-130.9,232.4-229.8%0A%09%09%09c24-34.7,66.8-53.4,104.2-53.4c80,0,151.9-21.8,222.4-50.7C2768.4,1641.5,2766.7,1615.1,2767.4,1598.2z" class="st15"></path>%0A%09%09<path d="M2357.9,1064.1c0,0-9-52.4-22.1-33.8c-13.1,18.6-10.3,92.4,9,98.6" class="st16"></path>%0A%09%09<path d="M2626.6,1195.8c5.3-16-5.3-34.7-24-34.7c-74.8,5.3-155,13.4-224.4-18.7c-23.9-11-31.4-34.7-32.8-58.9%0A%09%09%09c-12.4,46.4-71.3,284.2,13.2,332.7c71.4,40.9,184.3-8.4,256.1-105.5C2581,1285.5,2613.8,1234.5,2626.6,1195.8z" class="st16"></path>%0A%09%09<path d="M2517.2,949.8c-125.5-23.1-169.6,125.8-169.6,125.8s-0.8,2.8-2.2,7.9%0A%09%09%09c1.4,24.2,8.9,47.9,32.8,58.9c69.5,32.1,149.6,24,224.4,18.7c18.7,0,29.4,18.7,24,34.7c-12.9,38.6-45.6,89.7-12,114.9%0A%09%09%09c22.5-30.4,41-65.6,52.8-104.1C2717.1,1045.3,2621.6,969,2517.2,949.8z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M2650.9,1208c2.1-1.4,41.5-29.8,53.8,4.1c10.6,31.7-40.8,91.7-77.6,80.7l-7.2-3.4" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M2641.7,1253.5c0,0,22.4-60.7,39.3-38c16.9,22.7-50.4,66.6-53,66.6C2625.5,1282,2641.7,1253.5,2641.7,1253.5%0A%09%09%09z" class="st16"></path>%0A%09%09<path d="M2695.3,1256.7L2573,1608.5c0,0-4.1,73.6,8.3,89.5c-74.5,98.7-223.4,363.4-223.4,363.4%0A%09%09%09c93.1,24.8,111.9,120,92.1,155.1c108.5-97.2,400.1-407.5,406.4-575C2879.1,1534.1,2854.6,1361.8,2695.3,1256.7z" class="st15"></path>%0A%09%09<path d="M2837.6,1430.3c30.9,169.9,7.7,183.1-75,353.6%0A%09%09%09c-61.7,127.1-230.6,287.4-312.6,360.9c9.9,28.2,8.9,56.1,0,71.9c108.5-97.2,400.1-407.5,406.4-575%0A%09%09%09C2868.7,1583.2,2867.1,1505.7,2837.6,1430.3z" class="Graphic_x0020_Style_x0020_114"></path>%0A%09%09<path d="M2680.8,1197.5c-6.7,0-12.5,1.5-17.3,3.9c-21.5,10.5-26.4,38.8-26.4,38.8s-8.9,23.1-16.3,12.6%0A%09%09%09c-0.8-1.2-1.6-2.7-2.3-4.8c18.6-24.8,18.6-85.5,11.7-103.4c-6.9-17.9-99.3,26.2-212.3-13.8c-68.9-29.9-68.1-84.2-59.4-118%0A%09%09%09c4.5-17.6,11.1-29.6,11.1-29.6c8.7-20.6,14.7-76,34.2-70.3c40.6,11.7,106.8-29.1,164.9-24.4c49.8,4.1,97.3,36.1,128.3,67.6%0A%09%09%09c18.2,18.5,30.7,36.8,34.4,49.1C2741.5,1038.4,2700.5,1163.4,2680.8,1197.5z" class="st17"></path>%0A%09%09<path d="M2759.2,2289.4c0,0-18.6,62.6,23.2,86c41.8,23.4,50.2,8.7,50.2,8.7S2751.6,2373.8,2759.2,2289.4z" class="st9"></path>%0A%09%09<path d="M1712.9,1890.5c-52.6-85.2-72.3-184.5-63.6-284.7c-5.7,3.2-11.6,6.9-17.5,11%0A%09%09%09c0,0-40.7,64.1,46.2,255.8c-60.7,57.2-63.2,76.8-57.8,148.5c3.8,6,7.7,11.4,11.8,16.3C1628.4,1981.4,1663.8,1922.1,1712.9,1890.5z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M1827.7,1946.4c-2.8-88.2-44.1-69.6-38.6-133.1c5.5-63.4,12.4-109.6,15.9-150.3%0A%09%09%09c3.3-38.4-60.9-110.4-155.6-57.2c-8.8,100.2,10.9,199.5,63.6,284.7c-49.2,31.6-84.5,91-80.9,146.9c42.1,50.6,95,40.7,95,40.7%0A%09%09%09s40.7-51,44.8-68.3c11.7,0.7-32.4,71-32.4,71s7.6,14.2,24.1,13C1780.1,2092.5,1830.4,2034.6,1827.7,1946.4z" class="st16"></path>%0A%09%09<path d="M1679.1,1995l-15.9,55.8c0,0,23.8-50.3,29.3-72C1698.1,1957.1,1679.1,1995,1679.1,1995z" class="st18"></path>%0A%09%09<path d="M1719.7,2081.7c0.5-1.4,56.1-102.4,65.3-88.7c9.2,13.7-42,92.4-42,92.4s-5.3,3.1-3.5-4.7%0A%09%09%09c1.8-7.8,42.7-68.9,35.4-68.5c-7.4,0.5-44.1,60.7-47.8,65.7S1719.7,2081.7,1719.7,2081.7z" class="st18"></path>%0A%09%09<path d="M1686.9,2067.8c0,0,33.5-83.7,43.3-79.9c9.8,3.9-39.4,83.3-39.4,83.3L1686.9,2067.8z" class="st18"></path>%0A%09%09<path d="M1653.4,1961.3c0,0-15.7,62.3-15.2,75C1645.6,2045.3,1657.7,1960.6,1653.4,1961.3z" class="st18"></path>%0A%09%09<path d="M1761.8,2227.6c-54.2-19.3-110.3-23.2-166.4-38.7c-0.1,0-0.2-0.1-0.3-0.1c8.4,8.6,16.7,17.2,25.1,25.7%0A%09%09%09c53.2,60.7,288.8,91.2,288.8,91.2s-10.9-9.9-72.5-89.2c-8.1,3.7-16.2,7.5-24.4,11.1C1796.6,2235.3,1777.3,2233.4,1761.8,2227.6z" class="st19"></path>%0A%09%09<path d="M1267.8,1860.2c0,0,164.6,162.1,327.3,328.6c0.1,0,0.2,0.1,0.3,0.1c56.1,15.5,112.2,19.3,166.4,38.7%0A%09%09%09c15.5,5.8,34.8,7.7,50.3,0c8.2-3.6,16.4-7.4,24.4-11.1c-33.8-43.5-82.8-108-153.6-203.3%0A%09%09%09C1514.7,2038.1,1267.8,1860.2,1267.8,1860.2z" class="st20"></path>%0A%09%09<path d="M1894.6,2339.3c-53.4,8-106.9,10.7-163-2.7c-19-4.7-34.6-13.9-48.5-25.2%0A%09%09%09c15.8,36.7,102.7,87.4,133.9,82.8c31.7-4.6,303.8-96.5,339.7-99.3c35.9-2.8,272.6-59.4,293.2-78.4c6.2-5.7,10.6-21.4,10.5-40.6%0A%09%09%09c-161,58-322,87.3-483.1,141.9C1950.7,2325.9,1921.3,2334,1894.6,2339.3z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M2357.9,2061.5c-149.6,34-453,200.5-549.1,192.3c0,0-60.2,7.5-96.1-8.3c-35.9-15.8-83.7-37.4-96.5-28.9%0A%09%09%09c-10.2,6.8,29.5,56.4,52.7,80.6c6,6.2,10.8,10.8,13.5,12.5c0.2,0.6,0.5,1.1,0.7,1.7c13.9,11.3,29.5,20.5,48.5,25.2%0A%09%09%09c56.1,13.4,109.5,10.7,163,2.7c26.7-5.3,56.1-13.4,82.8-21.4c161-54.5,322-83.8,483.1-141.9%0A%09%09%09C2460.3,2131.9,2436.5,2068.5,2357.9,2061.5z" class="st16"></path>%0A%09</g>%0A%09<path d="M5147.8,2758.7c3.3,42.6-104.8,129-220.1,160.2c-111.1,40.4-316.5,84.1-839.1,218.8%0A%09%09c-356.5,91.9-571.8,151.6-716.6,186.6c-191.1,46.2-259.5,49.2-368,26c-51.4-11-96.9-24.7-137.9-40%0A%09%09c-255-95.3-339.6-255.1-634.7-236.4c-200.1,12.7-322,96.2-560,42.5c-136.3-30.7-235.9-89.6-304.8-131.1%0A%09%09c0,0-186.3-112.1-344.2-301.7c-39.9-42.2-73.3-85.6-94.5-130.9l1061.8-81.6L5147.8,2758.7z" class="Graphic_x0020_Style_x0020_118"></path>%0A%09<polygon points="1909,2627.9 2329.7,2696.9 2880.5,2648.9 2839.9,2636 1902.2,2607.7 1873.4,2616.7" class="st21"></polygon>%0A%09<path d="M2902.4,2554.2c0,0,128.1,29.9,198.1,36.5c16.9,26,103.7,26.1,139.2,31.4c35.5,5.3,64.9,60.1,137.9,65%0A%09%09c73,4.9,88.9,32.2,118.2,30.1c29.2-2.1,39.1-54.7,49.7-59.9c10.6-5.2-32-38.9-10.7-45.5C3396.5,2597.2,2902.4,2554.2,2902.4,2554.2%0A%09%09z" class="st21"></path>%0A%09<path d="M3668.6,2761.4c39.6,3,90.3-36.8,169.2-23.5c88.5,14.9,307.2,32.5,354.3-1.4%0A%09%09c61.3,3.3,696.2,65.4,749.1,44.1c52.9-21.3,68-34.5,68-34.5l-1182-107.2c0,0-299.4,44.5-286.7,84.2%0A%09%09C3547.2,2749,3629,2758.4,3668.6,2761.4z" class="Graphic_x0020_Style_x0020_117"></path>%0A%09<path d="M3779.6,3218.3c-115.9-48.9-340.1-136.6-484.1-148c-201.1-15.9-340.3-109.9-337.2-157.7%0A%09%09c3.1-47.8-605.8-113-946.8-126.3c-204.7-8-676.2-112.3-330.9-291.5l-79,6.1c-81.3,57.9-200.4,165.5-77.3,230.8%0A%09%09c174.8,92.7,1373.9,95.9,1387.8,212c13.2,110.3,575.5,195.9,765.9,301.5C3710,3236.7,3743.7,3227.7,3779.6,3218.3z" class="st22"></path>%0A%09<g>%0A%09%09<path d="M4484.2,1461.7v1181h488.7v-1181H4484.2z M4939.2,2561.4h-421.4v-539.8h421.4%0A%09%09%09V2561.4z M4939.2,1982.4h-421.4v-485.5h421.4V1982.4z" class="Graphic_x0020_Style_x0020_107"></path>%0A%09%09<rect height="485.5" width="355.8" class="Graphic_x0020_Style_x0020_118" y="1496.9" x="4583.5"></rect>%0A%09%09<rect height="485.5" width="65.6" class="Graphic_x0020_Style_x0020_119" y="1496.9" x="4517.8"></rect>%0A%09%09<rect height="539.8" width="80.1" class="Graphic_x0020_Style_x0020_119" y="2021.5" x="4517.8"></rect>%0A%09%09<rect height="539.8" width="341.3" class="Graphic_x0020_Style_x0020_118" y="2021.5" x="4597.9"></rect>%0A%09%09<polygon points="5067.7,1559.5 4972.9,1461.7 4975.8,2765.4 5070.3,2765.4" class="Graphic_x0020_Style_x0020_110"></polygon>%0A%09</g>%0A%09<g>%0A%09%09<polyline points="2442.7,2752.3 2386.8,2825.9 2352.6,2827.7 2416.8,2743.1 2832.6,2738.3 %0A%09%09%092839.9,2747.7" class="Graphic_x0020_Style_x0020_117"></polyline>%0A%09%09<polygon points="2832.6,2738.3 2416.8,2743.1 2352.6,2827.7 2134.5,2839.2 2105.5,2724.6 %0A%09%09%092798.5,2694.4" class="Graphic_x0020_Style_x0020_117"></polygon>%0A%09%09<polygon points="3202.8,2854.8 2364.9,2854.8 2386.8,2825.9 2442.7,2752.3 2839.9,2747.7 %0A%09%09%093134.1,2744.3" class="Graphic_x0020_Style_x0020_117"></polygon>%0A%09%09<polygon points="2839.5,2730.9 2805.3,2687.1 2112.4,2717.2 2141.4,2831.8 2359.4,2820.3 %0A%09%09%092393.7,2818.5 2449.6,2745 2846.8,2740.3" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09%09<polygon points="3202.8,2848.8 2364.9,2848.8 2386.8,2819.9 2442.7,2746.3 2839.9,2741.7 %0A%09%09%093134.1,2738.3" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09</g>%0A%09<g>%0A%09%09<path d="M3326.7,2053.5c67.2,11.8,127,45.4,188.5,75.5c-25.6-21.6-54.4-38-66.9-44.7c-69.9-65-238.4-55.8-331.3-54.5%0A%09%09%09c-56.7,0.8-107.4,28.8-147.4,65.5C3076.9,2034.1,3204.5,2033.1,3326.7,2053.5z" class="st23"></path>%0A%09%09<path d="M3390.7,2125.6c29.4,10.7,40.1,48.1,64.1,69.5c33.5,30.3,76.4,36.8,117.6,27.5c-4-13-8.3-25.7-12.8-37.7%0A%09%09%09c-7.5-20.2-25.1-39.4-44.4-55.7c-61.4-30.2-121.3-63.8-188.5-75.5c-6.7-1.1-13.5-2.2-20.2-3.1c2.5,4.5,4.8,9.1,6.8,13.8%0A%09%09%09c6.9,18.8,10.9,38,12.4,57.2C3347.5,2119.7,3369.7,2120.3,3390.7,2125.6z" class="st23"></path>%0A%09%09<path d="M3454.8,2195c-24-21.4-34.7-58.8-64.1-69.5c-21.1-5.3-43.3-5.9-65.1-4.2c6.4,84.5-36.4,169.9-95.2,228.6%0A%09%09%09c-29.4,32.1-61.4,58.8-101.5,82.8c-32.1,21.4-66.8,37.4-101.5,53.4c-41.6,14.5-81.5,4.8-119.8-10.2c3.7,32.6,11.1,70.7,27.1,85.4%0A%09%09%09c2.2,2,149.9,56.5,246.1,29.3c130.3-36.9,227.4-163.5,314.2-210.2c10.9-5.9,21.4-12.4,31.4-19.5l-0.4-14l53.6-33.2%0A%09%09%09c3.8-4.2,7.6-8.5,11.2-12.9c-4.1-26.8-10.7-53.3-18.4-78.3C3531.3,2231.8,3488.3,2225.3,3454.8,2195z" class="st24"></path>%0A%09%09<path d="M2963.9,2113.7l-74.4,244.3c3.2,19.6,7.7,41,13.7,64.4c0.8-0.5,1.1,24.3,4.3,53.6%0A%09%09%09c38.3,15.1,78.3,24.8,119.8,10.2c34.7-16,69.5-32.1,101.5-53.4c40.1-24,72.1-50.8,101.5-82.8c65-65,110.5-162.6,91.4-255.6%0A%09%09%09C3210,2135.2,3083,2108.6,2963.9,2113.7z" class="st25"></path>%0A%09%09<path d="M3321.8,2094.4c-2.1-10.2-4.9-20.2-8.6-30.2c-2-4.6-4.2-9.2-6.8-13.8c-116-16.9-235.4-12.9-336.9,44.9%0A%09%09%09l-5.6,18.4C3083,2108.6,3210,2135.2,3321.8,2094.4z" class="st26"></path>%0A%09%09<path d="M3590.8,2300.8c-3.6,4.4-7.4,8.7-11.2,12.9l12-7.5C3591.4,2304.4,3591.1,2302.6,3590.8,2300.8z" class="st9"></path>%0A%09%09<g>%0A%09%09%09<path d="M3452.4,2090.3c-50.3-112.2-85.1-243.7-193.4-309.5c-17.4-9.7-50.3-13.5-71.6,3.9%0A%09%09%09%09c-34.5,27-36.4,68-35.6,109.5c51.1,42.2,96.7,74.2,118.4,75.2c65,3,117,150.1,192.8,215.4c35.5,30.6,78.2,23.7,113.6,7.7%0A%09%09%09%09c-19.8-3.7-39.3-11.4-54.6-19C3487.2,2158,3467.9,2123.1,3452.4,2090.3z" class="Graphic_x0020_Style_x0020_116"></path>%0A%09%09%09<path d="M3489,1994.5c-13.8-96.5-49-197.2-111.1-242.1c-62.1-44.9-38.1-160-114.8-199.7%0A%09%09%09%09c-190.3-102-287.5,4.8-333,55.2c-45.5,50.3-4.1,77.2-4.1,77.2s123.9,124.8,225.9,209c-0.9-41.4,1-82.4,35.6-109.5%0A%09%09%09%09c21.3-17.4,54.2-13.5,71.6-3.9c108.3,65.8,143.1,197.3,193.4,309.5c15.5,32.9,34.8,67.7,69.6,83.2c15.3,7.7,34.8,15.3,54.6,19%0A%09%09%09%09c40.3-18.2,71.2-48.2,71.2-48.2S3502.8,2091.1,3489,1994.5z" class="Graphic_x0020_Style_x0020_108"></path>%0A%09%09%09<path d="M3182.3,2144.3c-13.4-74.8,34.7-189.7-58.8-221.7c-16-61.4,5.3-128.2-37.4-184.3%0A%09%09%09%09c-33.7-46.4-75.8-81.1-127.5-97.6c-15.4,4-42.2,14-46.3,24.6c-13.8,35.6-24.4,108.3-3.6,195.1c19.9,94,53.6,191.2,151.7,162.7%0A%09%09%09%09c51,68.9,51,103.4,48.3,128.2c25.3,30.5,60,37.2,94.1,32.1C3192.8,2173.6,3185.5,2160.8,3182.3,2144.3z" class="st16"></path>%0A%09%09%09<path d="M3314.2,2124.9c-5.5-129.6-75.8-207-93.8-211.7c30.3-46.1,33.1-82-6.9-106.8%0A%09%09%09%09c-40-24.8-57.9,67.6-57.9,67.6s-19.3,18-16-3.3c17.7-114.7-62.5-214-170.5-231.9c-1.2-0.2-5.1,0.5-10.4,1.9%0A%09%09%09%09c51.7,16.5,93.8,51.2,127.5,97.6c42.7,56.1,21.4,122.9,37.4,184.3c93.5,32.1,45.4,146.9,58.8,221.7c3.1,16.5,10.5,29.3,20.4,38.9%0A%09%09%09%09C3250.3,2176,3296.5,2145.8,3314.2,2124.9z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09%09<path d="M2969,1635.8c0,0,75.2,27.2,72.4,70.7c-2.8,43.5-9.8,77.5,56.3,98.1c-31.6-35.6-34.2-44-26.9-86.3%0A%09%09%09%09S3035.8,1587.8,2969,1635.8z" class="st17"></path>%0A%09%09%09<path d="M2789.6,2288.5c-77.5,101.5-203,106.9-323.3,128.2c-27.7,5.9-43.7,28.1-64.3,43.4%0A%09%09%09%09c7.2,13.8,19.1,27.9,28,39.8c0.5-0.1,1.1-0.3,1.6-0.4c159.5-16.7,359.4-29.1,470.9-150.7l-0.1-16l61-218.3%0A%09%09%09%09c-27.4,9-56.1,12.8-77.6,32.4C2837.7,2184.3,2824.3,2243.1,2789.6,2288.5z" class="st25"></path>%0A%09%09%09<path d="M3017.4,2050.7c-17.9,4.3-35.5,9.7-52.8,16.1c-58.6,21.8-113.1,55-149.7,106.6%0A%09%09%09%09c-16.4,23.2-29.7,48.3-42.2,73.7c-5.8,11.7-11.7,21.5-19.5,31.9c-8.1,10.8-17.8,20.2-27.8,29.2c-21.9,19.5-47.7,34.4-75.4,44.1%0A%09%09%09%09c-33.1,11.6-67.9,16.1-101.5,25.4c-82.7,23-147.1,41.1-152.6,60.5c-0.2,7,2.3,14.5,6.2,22c20.6-15.4,36.6-37.5,64.3-43.4%0A%09%09%09%09c120.2-21.4,245.8-26.7,323.3-128.2c34.7-45.4,48.1-104.2,96.2-141.6c21.5-19.6,50.2-23.4,77.6-32.4l5.1-18.3%0A%09%09%09%09c11-10.8,16.7-15,29.5-24.1c14.7-10.5,30.5-19.7,47.1-26.7c0.1-0.2,0.2-0.4,0.3-0.6C3036,2046.5,3026.6,2048.4,3017.4,2050.7z" class="st23"></path>%0A%09%09%09<path d="M3045.4,2044.9c-0.1,0.2-0.2,0.4-0.3,0.6c0.7-0.3,1.4-0.6,2.1-0.9%0A%09%09%09%09C3046.6,2044.7,3046,2044.8,3045.4,2044.9z" class="Graphic_x0020_Style_x0020_100"></path>%0A%09%09%09<path d="M2431.6,2499.6c-0.5,0.1-1.1,0.3-1.6,0.4c0.9,1.2,1.8,2.4,2.6,3.6c10.8,15.3,7.8,45,49.1,42.6%0A%09%09%09%09c30.8-6,230-18.7,273.3-29.7c32-8.2,82.2-26.3,148.2-94.1l-0.7-73.5C2791,2470.5,2591.1,2482.9,2431.6,2499.6z" class="st24"></path>%0A%09%09%09<path d="M2398.2,2439.8c0,0,40.7-31.7,69.6,4.1c29,35.9,49.3,96,29,100.7c-20.4,4.6-65.8,2.1-87-35.2%0A%09%09%09%09C2388.5,2472.2,2387.5,2454.3,2398.2,2439.8z" class="st27"></path>%0A%09%09%09<path d="M3350.7,1877.1c18.7-58.6,71.9-104,69.5-165.2c-4.1,1.2-8.2,5.1-10.8,12.5c-7.6,21.4-71.4,103.8-71.4,103.8%0A%09%09%09%09s0,0,3.8-22.1s1.4-35.5-9.7-36.9c-11-1.4-18.3,10.3-18.3,10.3c1-31-13.4-29.3-23.4-27.6c-10,1.7-9.3,51.4-10,64.8%0A%09%09%09%09c-0.7,13.4-15.2,26.9-20-4.1c-2.8-35.9-40.7-71.7-51.7-66.9c-11,4.8,14.8,62,13.1,94.5c-1.7,32.4-20,100.7-5.5,148.2%0A%09%09%09%09c14.5,47.6-3.4,102-3.4,102l85.3,21.2c4.2-67.5,4.5-134.6,44.5-197.1C3350.7,1903.8,3348,1890.5,3350.7,1877.1z" class="st16"></path>%0A%09%09%09<path d="M3420.1,1711.9c2.4,61.2-50.8,106.6-69.5,165.2c-2.7,13.4,0,26.7-8,37.4%0A%09%09%09%09c-40,62.5-40.2,129.7-44.5,197.1l22.9,5.7c0,0-3.5-115.8,17.2-141.3c20.7-25.5,15.2-80,25.3-108.9c10.1-29,71.3-117.9,72-137.2%0A%09%09%09%09C3436,1717.3,3427.9,1709.7,3420.1,1711.9z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09%09<path d="M3305.2,1839.7c-0.4,0.9,11-56.8,9-67.2c4.3,1.6,4.3,1.6,4.3,1.6S3312.8,1824.1,3305.2,1839.7z" class="st9"></path>%0A%09%09%09<g>%0A%09%09%09%09<polygon points="2369.1,2558.8 2880.5,2623.2 2325,2668.2 1891.1,2604.1" class="Graphic_x0020_Style_x0020_115"></polygon>%0A%09%09%09%09<polygon points="2264.3,2566.5 2626.8,2624.8 2334.4,2648.9 2170.4,2611.3" class="Graphic_x0020_Style_x0020_109"></polygon>%0A%09%09%09%09<path d="M2421.8,2452.1c-5.6-0.2-22.6,8.6-22.6,8.6s-13.8-44.1-80.7-43.4s-64.8,65.5-64.8,65.5s5.5,77.2,26.9,93.1%0A%09%09%09%09%09c21.4,15.9,99.3,4.1,102.4,0c3.1-4.1,45.3-6.9,66.9-30.3c21.6-23.4,33.5-24.4,33.5-24.4S2463.5,2453.5,2421.8,2452.1z" class="st16"></path>%0A%09%09%09%09<path d="M2319.3,2460c0,0-45.5,32.4-15.2,90.3c-6.8,0.6-6.8,0.6-6.8,0.6%0A%09%09%09%09%09S2262.7,2493.1,2319.3,2460z" class="Graphic_x0020_Style_x0020_104"></path>%0A%09%09%09%09<path d="M2376.8,2552.2c0,0-56.9-11.2-43.1-33.6c13.8-22.4,45.5-15.9,46.9-24.5%0A%09%09%09%09%09c1.4-8.6-15.9-23.8-21.7-14.5c-5.9,9.3-15.5,25.2-15.5,25.2s-24.1,6.2-17.9,23.1c6.2,16.9,33.8,15.5,6.2,16.9%0A%09%09%09%09%09c-27.6,1.4-39.6,0-39.6,0s-7.4,36.2,7.3,37.5c14.7,1.4,61.6,6.9,105-10.3c43.4-17.2,43.8-24.7,43.8-24.7%0A%09%09%09%09%09S2401.3,2559.2,2376.8,2552.2z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09%09%09<polygon points="2331,2682 2848.1,2642 2880.5,2623.2 2322,2668.2 1885.6,2604.1 %0A%09%09%09%09%091893.9,2613.5" class="Graphic_x0020_Style_x0020_109"></polygon>%0A%09%09%09%09<path d="M1784.9,2001.5l427.1,0.5l15.9,3c18.3,3.5,31.9,18.7,33.5,37.3c9.9,120.2,38.5,538.8,42.7,616.9%0A%09%09%09%09%09c0.3,6.5-11.2,15-17.7,14.2l-444.6-65.8L1784.9,2001.5z" class="st28"></path>%0A%09%09%09%09<path d="M1794.6,1993.3l411.5,8.2c15.8,0.3,28.8,12.5,30.1,28.3c10.4,126.7,52.8,644.5,49.2,643.3%0A%09%09%09%09%09c-3.6-1.2-348.6-51.6-443.5-65.4c-14.1-2.1-24.9-13.4-26.2-27.6l-52.4-553C1761.5,2008.7,1776.2,1992.9,1794.6,1993.3z" class="st29"></path>%0A%09%09%09</g>%0A%09%09%09<path d="M3465.5,2285.9c-5.8-29.1-28.6-54-57-68.5c9.3,57-21.2,85.5-21.2,85.5c-6.8,3.4-40.2,78.1-48.3,71.7%0A%09%09%09%09c-4.1-3.3-5.8-14.7-6.3-29.4c-17.3-67.3-4-136.5-11.5-203.5c-2.3-18.1-0.7-36.2-6.7-52.6c-6.5-5.5-15.7-10.3-27.9-14.4%0A%09%09%09%09c0.8,120.3-17.7,240.4,10.5,355.6c8,37.4,77.5,16,112.2-8C3452.2,2392.7,3478.9,2339.3,3465.5,2285.9z" class="st24"></path>%0A%09%09%09<path d="M3332.7,2345.1c-0.9-27.1,2.3-65.1,1.7-83.5c-0.9-28.4,4.6-84.2-6.4-147.7c-0.5-9.3-4.6-17.6-13.4-24.9%0A%09%09%09%09c5.9,16.5,4.4,34.5,6.7,52.6C3328.7,2208.5,3315.4,2277.8,3332.7,2345.1z" class="st27"></path>%0A%09%09%09<path d="M3591.6,2306.2l-189.3-113.8c2.9,8.8,4.9,17.1,6.2,24.9c28.4,14.5,51.2,39.4,57,68.5%0A%09%09%09%09c4.9,19.6,4.4,39.1-0.3,57.5c36.8,33.3,76.9,62.3,118.5,89.3C3596.9,2393.5,3597.6,2349.6,3591.6,2306.2z" class="st24"></path>%0A%09%09%09<path d="M3226.7,2062.8c-4.2-0.5-8.6-0.9-13.2-1.3c-89.6,102-96.5,485.4-63.4,524c10.1,11.8,36.5,17.9,71.6,18.6%0A%09%09%09%09c-2.7-1.6-5.1-3.5-7.3-5.6C3080,2450.9,3137.9,2222.8,3226.7,2062.8z" class="st23"></path>%0A%09%09%09<path d="M3465.3,2343.4c-8.1,31.8-28.7,60.1-55.8,78.8c-34.7,24-104.2,45.4-112.2,8%0A%09%09%09%09c-28.2-115.2-9.7-235.3-10.5-355.6c-15.1-5.1-34.8-9.1-60-11.8c-88.8,160-146.7,388.1-12.3,535.7c2.1,2.1,4.6,4,7.3,5.6%0A%09%09%09%09c79.8,1.5,205-25.2,288.3-77.9c38.4-24.3,61.5-56.9,73.7-93.5C3542.2,2405.6,3502.1,2376.6,3465.3,2343.4z" class="st25"></path>%0A%09%09</g>%0A%09%09<path d="M3123.6,1922.5c3.2,5.9-36.5,92.1-63.1,100.4c35,56.6,28,41.3,37.6,63.1c63.2-44,78.1-61.9,78.3-92.2%0A%09%09%09C3177.1,1914.4,3123.6,1922.5,3123.6,1922.5z" class="st30"></path>%0A%09</g>%0A%09<g>%0A%09%09<path d="M3972.8,2436.5c-19.3-100.6-1.9-197.3,30.9-292.1c1.9-7.7,9.7-13.5,11.6-23.2%0A%09%09%09c13.5-58,34.8-108.3,58-160.5c1.9-7.7,1.9-15.5,3.9-23.2c1.5-4.4,6.3-7.7,9.3-11.5c-108.6,18.8-247.9,49.9-313.3,64.9%0A%09%09%09c22.2,33.7,40.9,69.3,52.5,109.1c3.9,7.7,13.5,13.5,17.4,21.3c3.9,5.8,0,11.6,3.9,17.4c11.6,15.5,21.3,29,25.1,48.4%0A%09%09%09c1.9,3.9,7.7,5.8,7.7,9.7c0,94.8,7.7,189.6,0,284.3c-6.7,72.9-22.6,143.8-37.3,214.7c84.9-0.2,183-1.6,281.4-2.7%0A%09%09%09c-52.2-58.4-91.1-128-129.9-198.4C3984.4,2475.2,3976.6,2455.8,3972.8,2436.5z" class="Graphic_x0020_Style_x0020_114"></path>%0A%09%09<path d="M4194.9,2483.6c82.8-18.7,163-5.3,237.8,48.1c8,8,26.7,5.3,37.4,0%0A%09%09%09c58.6-34.6,128.4-61.3,198-68.7c-150.8-225.4-393-546.7-446.5-551.9c-23.2-2.2-74.3,4.4-135,14.8c-3.1,3.9-7.9,7.1-9.3,11.5%0A%09%09%09c-1.9,7.7-1.9,15.5-3.9,23.2c-23.2,52.2-44.5,102.5-58,160.5c-1.9,9.7-9.7,15.5-11.6,23.2c-32.9,94.8-50.3,191.5-30.9,292.1%0A%09%09%09c3.3,16.6,9.5,33.3,17.3,49.9C4050.6,2508.5,4130.6,2499.3,4194.9,2483.6z" class="Graphic_x0020_Style_x0020_105"></path>%0A%09%09<path d="M4470.1,2531.7c-10.7,5.3-29.4,8-37.4,0c-74.8-53.4-155-66.8-237.8-48.1%0A%09%09%09c-64.3,15.7-144.3,24.9-204.8,2.8c1.3,2.7,2.6,5.4,3.9,8.1c38.9,70.4,77.7,140.1,129.9,198.4c233-2.6,467.2-3.9,529.1,13.9%0A%09%09%09c110.3,31.7,131,20.7,137.9-30.3c2.3-16.7-49.5-103.7-123-213.5C4598.5,2470.4,4528.6,2497,4470.1,2531.7z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09%09<path d="M3879.9,2196.6c0-3.9-5.8-5.8-7.7-9.7c-3.9-19.3-13.5-32.9-25.1-48.4c-3.9-5.8,0-11.6-3.9-17.4%0A%09%09%09c-3.9-7.7-13.5-13.5-17.4-21.3c-11.6-39.8-30.4-75.4-52.5-109.1c-23.2,5.3-37.1,8.6-37.1,8.6s-76.6,50.8-73.5,108.1%0A%09%09%09c3.1,57.3,7.7,545.5-0.1,585.4c44.9,2.2,107.7,2.8,180,2.6c14.8-70.9,30.6-141.8,37.3-214.7%0A%09%09%09C3887.6,2386.2,3879.9,2291.4,3879.9,2196.6z" class="st31"></path>%0A%09%09<path d="M3622.6,2308.8c7.7-30.9,11.6-63.8,40.6-85.1c3.9-3.9,1.9-9.7,5.8-13.5c21.7-17.1,39.8-41.6,63-53.7%0A%09%09%09c-6.4-58.7-17.6-101.8-29.1-95c-30.3,17.9-474.3,322.7-497.1,369.5s-42.1,123.7,13.1,152.8c0,0-20.7-133.5,59.3-157%0A%09%09%09c80-23.4,155.8,45.5,157.2,51c0.7,2.8,16.3,25.9,31.7,46.8c24.5-12.2,48.8-24.7,72.3-41.8%0A%09%09%09C3593.6,2440.4,3609.1,2376.5,3622.6,2308.8z" class="st32"></path>%0A%09%09<path d="M3669.1,2210.2c-3.9,3.9-1.9,9.7-5.8,13.5c-29,21.3-32.9,54.2-40.6,85.1c-13.5,67.7-29,131.5-83.2,174.1%0A%09%09%09c-23.4,17.1-47.7,29.6-72.3,41.8c14.9,20.3,29.7,38.6,30.4,34.1c1.4-9.2,146.2-90.6,205.5-136.8c36.9-28.8,39.6-168.5,29.1-265.5%0A%09%09%09C3708.8,2168.5,3690.8,2193.1,3669.1,2210.2z" class="st31"></path>%0A%09%09<path d="M3252.8,2424.8c-14.7,6.4-25.2,15.5-32.7,25.8c33.5,31.1,84.8,42,119.8,22.2c22.9-10.4,45.8-17.6,64.9-32.9%0A%09%09%09c-0.9-0.6-1.9-1.3-3.1-2.1C3385.9,2421.4,3321.1,2395.2,3252.8,2424.8z" class="st16"></path>%0A%09%09<path d="M3220.1,2450.6c-5.4,7.5-9.3,15.6-11.9,23.8c11.3,29.8,34.2,55.9,59.6,75.9%0A%09%09%09c39.9,36.8,89.5,48.9,140.2,47.1l4-152.6c0,0,0,0-7.2-4.8c-19.1,15.3-42,22.5-64.9,32.9%0A%09%09%09C3304.9,2492.6,3253.6,2481.7,3220.1,2450.6z" class="Graphic_x0020_Style_x0020_113"></path>%0A%09%09<path d="M3267.8,2550.4c-25.4-20-48.3-46.1-59.6-75.9c-0.6,1.9-1.2,3.9-1.7,5.8%0A%09%09%09c-3.2,12.6-4,25-3.7,35.5c0.4,15.7,3.1,26.9,3.1,26.9s73.1,121.3,186.1,122.7c14.5-13.8,14.5-13.8,14.5-13.8l0.5-17.8l0.7-24.6%0A%09%09%09l0.3-11.9C3357.3,2599.3,3307.7,2587.2,3267.8,2550.4z" class="Graphic_x0020_Style_x0020_104"></path>%0A%09%09<path d="M3235.6,2602c0,0,20.6,1.7,15.5-3.8c-16.6-18-47.6-98.2-21.8-124.8c29.7-30.7,122.5-41.5,160.6-26.4%0A%09%09%09c-3.3-14.6-3.3-14.6-3.3-14.6s-76.5-31-120-13.1c-43.4,17.9-62.2,9.2-63.8,77c-1.7,67.8,9.5,101.6,23.2,107.8%0A%09%09%09C3239.7,2610.3,3235.6,2602,3235.6,2602z" class="st33"></path>%0A%09%09<path d="M3226,2604.1c0,0-34.8-98.6-3.2-143.2s183.6-37.2,209.7,22.5c15.9-4.6,15.9-4.6,15.9-4.6%0A%09%09%09s51.4-54.7-36.3-81.6c-87.8-26.9-216.5,9.7-228.4,92.5S3199.4,2597,3226,2604.1z" class="st20"></path>%0A%09%09<path d="M3340,2529c32.1-10.7,40.1-29.4,53.4-58.8c2.7-5.3,21.4,2.7,32.1-5.3%0A%09%09%09c34.7-32.1,80.1-48.1,120.2-32.1c9,3,17.6,7.1,26,11.5c-6.3-16.9-12.8-29.1-12.8-29.1s-3-1.5-7.6-3.6%0A%09%09%09c-11.7-5.4-33.9-14.8-44.8-14.3c-15.2,0.7-29.9,22.1-29.9,22.1s-32.8-9-49.4,0c-16.5,9-18.5,35.5-18.5,35.5s-15.9-1.7-33.9,7.3%0A%09%09%09s-6.2,37.2-6.2,37.2s-15.2-12.4-42.1,6.2c-20.5,12.6-13.4,51.1-1.3,85.4C3326.1,2565.1,3319.5,2533.5,3340,2529z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M3545.7,2432.8c-40.1-16-85.5,0-120.2,32.1c-10.7,8-29.4,0-32.1,5.3c-13.4,29.4-21.4,48.1-53.4,58.8%0A%09%09%09c-20.4,4.5-13.9,36.1-14.7,61.9c4.6,13,9.9,25.4,14.7,35.5c6.7,14.3,12.4,24,13.6,24.5c32.4,14.5,39.8-12.1,39.8-12.1%0A%09%09%09s7.4,27.2,34.4,26.6c27-0.6,13.8-43.4,13.8-43.4s36.8,33.1,54,29c17.2-4.1,4.1-42.1,4.1-42.1s23.4,27.6,48.3,21.4%0A%09%09%09c24.8-6.2-10.3-94-10.3-94s24.1,13.3,41.4-12.2c10.5-21.9,1.8-55.6-7.2-79.8C3563.2,2439.9,3554.7,2435.8,3545.7,2432.8z" class="st16"></path>%0A%09%09<path d="M3855.6,1746.2c-34.7-66.8-53.4-157.6-120.2-181.7c-70.3-26.7-149.3,8.2-227.2-3%0A%09%09%09c-21.3,43.8-31,95-34.5,140.3c-7.9,103.1,20.2,204.3,82.4,287.5c9.2,12.3,20.1,15.4,35.2,15.3c13.5-0.1,92.2-26.6,94.3-24.1%0A%09%09%09c0,0,89.2,104.8,138.8,155.4c3.9,4,7.6,7.6,11.1,10.9c41,38.7,55.1,33.2,55.1,33.2s66.2-16.5,80-60.7c13.8-44.1,68-261.3,68-261.3%0A%09%09%09s-2.5-6.5-5.6-15.8C3959.1,1845.2,3889.3,1813.7,3855.6,1746.2z" class="st16"></path>%0A%09%09<path d="M4022,1797.7c-2.8-24.8,81.8-357.6-168.2-366.8c-89.9-3.3-189,3.2-269.9,46.9%0A%09%09%09c-34.4,18.6-58.8,48.8-75.7,83.7c77.9,11.2,156.9-23.7,227.2,3c66.8,24,85.5,114.9,120.2,181.7c33.8,67.5,103.5,99,177.4,96.1%0A%09%09%09c-1.2-3.7-2.5-7.7-3.8-12.1C4026.1,1819.7,4023.1,1807.8,4022,1797.7z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M4069.8,1569.7c-23-40.4-27.6-96.5-46-109.4c-0.8-25.3-12.8-44.3-33.2-58.9%0A%09%09%09c-26.3-18.9-66.6-30.6-114.7-39.4c-85.5-15.6-326.4,68.3-388.9,41.2c-46.2-20-44.1,85.7-44.1,85.7s-0.6,8.6,2.7,18.9%0A%09%09%09c0.8,2.6,1.9,5.3,3.4,8c6.8,13.1,21.3,26,51.9,25.5c61.6-0.9,148-35.8,156.3-17.5c8.3,18.4,0.9,143.8,12.9,163.8%0A%09%09%09c4.5,0.7,8.3,1.3,11.5,1.8c16,2.6,16,2.6,16,2.6s1.8-85.5,55.2-84.1c18.2,0.5,37.2,5.3,55.1,14.9c34.5,18.6,64.6,55.2,75.4,113.4%0A%09%09%09c16.6,88.2,147.1,77.2,147.1,77.2s2.3-7.5,5.9-19.9c5.1-17.8,12.8-45.6,20-75.9C4070,1659,4082.1,1591.2,4069.8,1569.7z" class="Graphic_x0020_Style_x0020_108"></path>%0A%09%09<polygon points="3720.5,1573.4 3453,1652.4 3452.3,1641 3736.1,1563.3" class="Graphic_x0020_Style_x0020_110"></polygon>%0A%09%09<path d="M3661.3,2544.8c-2.7-1-5.3-2.4-7.9-4.1c4.4,48.9,8.2,80.7,8.2,80.7l146.2-7.8%0A%09%09%09c0,0,5.8-43,13.8-101.1c-7.6,1.5-15.3,3.9-23,7.2C3756.1,2539,3707.8,2556.4,3661.3,2544.8z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09%09<path d="M3847.5,2157.6c-42.9-65.3-126-117.2-122.4-138.8c-110.1-35.4-87.2,349.7-71.6,521.9%0A%09%09%09c2.6,1.7,5.2,3.1,7.9,4.1c46.4,11.6,94.8-5.8,137.3-25.1c7.7-3.3,15.3-5.7,23-7.2c11.1-80.9,26.4-191.1,35.8-255.6%0A%09%09%09C3859.9,2240.5,3857.5,2172.8,3847.5,2157.6z" class="st32"></path>%0A%09%09<path d="M4242.6,2242.6c0,0,36.8,108.5,119.5,116.7c-13.8,52.4,206.2,183.4,206.2,183.4l9.8-23.8l-239.8-248.8%0A%09%09%09L4242.6,2242.6z" class="st34"></path>%0A%09%09<path d="M3298.6,2799c-8.5,5.6-14.3,9.3-14.8,9.1c-2.1-0.7-22.1,19.3-22.1,19.3%0A%09%09%09s33.8,2.8,36.5,0c0.5-0.5,4.9-3.2,11.4-7C3308.5,2811.6,3304.6,2802.8,3298.6,2799z" class="Graphic_x0020_Style_x0020_108"></path>%0A%09%09<path d="M3379,2744c0,0-53.6,37.3-80.3,55c3.9,2.5,6.9,7,8.8,12.3l95.8-56.5%0A%09%09%09C3402.9,2747.5,3396.9,2742.8,3379,2744z" class="Graphic_x0020_Style_x0020_112"></path>%0A%09%09<path d="M3307.5,2811.4c1.1,2.9,1.8,6,2.3,9.1c26.5-15.5,89.9-50.9,89.9-50.9%0A%09%09%09c2.2-5.4,3.8-10.5,3.6-14.7L3307.5,2811.4z" class="Graphic_x0020_Style_x0020_110"></path>%0A%09%09<path d="M4750.6,2686.6c-104.2,18.7-203,5.3-304.6,0c-109.5-2.7-227.1-26.7-334,16%0A%09%09%09c-80.1,29.4-171-21.4-261.8-2.7c-64.6,14.9-126.9,34.4-189.1,52.1c1.8,0.1,3.8,0.2,6,0.2c37.2,0,155.8-45.5,257.9-29%0A%09%09%09s212.4,30.3,251-6.9c96.5,5.5,601.2,41.4,650.9,26.2c10.9-23.2,13.8-50.2,10.6-77.7C4808.9,2673.1,4780.3,2680.7,4750.6,2686.6z" class="Graphic_x0020_Style_x0020_111"></path>%0A%09%09<path d="M4112.1,2702.6c106.9-42.7,224.4-18.7,334-16c101.5,5.3,200.4,18.7,304.6,0c29.7-5.9,58.4-13.5,86.9-21.6%0A%09%09%09c-9.7-83.3-75.3-171.2-141.6-173.3c-45.6,12.2-90.4,22.8-134.1,31.9c-331.1,69.3-596.5,55.3-657.4,37%0A%09%09%09c-68.9-20.7-170.7,19.4-243.8,51.1c-73.1,31.7-122,56.6-95.8,74.6c-0.8,1.2-5,6.1-5.1,9.5c-0.1,3.5-5.8,5.5-8.7,8.7%0A%09%09%09c-8.6,9.5-7.7,26.2,7.4,27.1c1.8,0.1,3.6,0.3,5.3,0.6c20,3.4,31.7,17.6,60.9,4.9c30.3-4.1,30.3-4.1,30.3-4.1s-21.9,17.1,6.4,19.1%0A%09%09%09c62.2-17.7,124.5-37.2,189.1-52.1C3941.1,2681.3,4031.9,2732,4112.1,2702.6z" class="st16"></path>%0A%09%09<path d="M5017.7,2587.8c-2.7-5.3,2.7-13.4,0-18.7c-37.4-72.1-72.1-141.6-130.9-195%0A%09%09%09c-45.4-42.7-96.2-77.5-141.6-120.2c-64.1-53.4-101.5-125.6-173.7-165.6c-80.1-45.4-157.6-88.2-243.1-120.2%0A%09%09%09c-56.1-18.7-114.9-8-173.7-10.7c-8,0-13.4-8-18.7-8c-26.9-3.6-52.7-12-77.2-22.8l-4.1,6.3l-47.1,153.2l241.3,154.8%0A%09%09%09c0.7,4.9,2.5,10,5.3,15.1c70.7-21.4,153.8-12.5,210.4,35.3c58.8,50.8,77.5,133.6,138.9,176.3c50.8,37.4,117.6,48.1,155,101.5%0A%09%09%09c26.3,32.9,23.8,78.3-4.4,111.2c16.3,20,31.9,41.7,46.4,65.4c43.6,17.7,172.5,20.1,226.6-52.4%0A%09%09%09C5038.9,2660.1,5036.7,2621.8,5017.7,2587.8z" class="Graphic_x0020_Style_x0020_105"></path>%0A%09%09<path d="M4666.9,2134.6c-215.1-230.3-311.2-220.2-404.5-226.6%0A%09%09%09c-58.4-29.4-93.8-48.3-120.4-4.6c-12.4-21.6-57-17.5-57-17.5l-26.1,40.5c24.5,10.8,50.2,19.2,77.2,22.8c5.3,0,10.7,8,18.7,8%0A%09%09%09c58.8,2.7,117.6-8,173.7,10.7c85.5,32.1,163,74.8,243.1,120.2c72.1,40.1,109.5,112.2,173.7,165.6c45.4,42.7,96.2,77.5,141.6,120.2%0A%09%09%09c58.8,53.4,93.5,122.9,130.9,195c2.7,5.3-2.7,13.4,0,18.7c18.9,34.1,21.2,72.4,9.5,105.5c14.4-19.2,23.5-43.8,24.4-74.7%0A%09%09%09C5055.7,2471,4882,2364.8,4666.9,2134.6z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09%09<path d="M4758.6,2569.1c-37.4-53.4-104.2-64.1-155-101.5%0A%09%09%09c-61.4-42.7-80.1-125.6-138.9-176.3c-56.5-47.8-139.6-56.7-210.4-35.3c25.1,47.2,127.1,102.1,127.1,102.1s20.7,44.1,55.2,84.1%0A%09%09%09c30.5,35.4,193.5,85.8,317.6,238.2C4782.4,2647.3,4784.9,2601.9,4758.6,2569.1z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09%09<path d="M3715.8,2015.7l-33.4,5.8c0,0,86.9,194.9,81.4,227c99.3-46.4,98.4-56.1,98.4-56.1%0A%09%09%09l-7.4-38.1C3852.2,2113.2,3774.4,2063.6,3715.8,2015.7z" class="Graphic_x0020_Style_x0020_100"></path>%0A%09%09<path d="M4035.3,1825.7c0,0-127.3,345.2-108.9,400.3c60.7-14.7,108.9,4.6,108.9,4.6%0A%09%09%09s-11.5-222.5,55.6-345.6C4061.5,1845.5,4035.3,1825.7,4035.3,1825.7z" class="Graphic_x0020_Style_x0020_100"></path>%0A%09%09<path d="M3654.8,2733l130-51c-71.4,10.3-156.4,53.6-160.3,55.2C3633.4,2740.2,3654.8,2733,3654.8,2733z" class="st18"></path>%0A%09%09<path d="M3576.1,2735.8c0,0,55.9-47.6,182.8-76.5c-16.5-5.5-133.9,28.9-190.4,74.1%0A%09%09%09C3573.4,2738.5,3576.1,2735.8,3576.1,2735.8z" class="st18"></path>%0A%09%09<path d="M3558,2699.3c0,0,110.1-70.4,179-82.8c-35.9-12.4-176.2,71.6-176.2,71.6L3558,2699.3z" class="st18"></path>%0A%09%09<path d="M3834.5,1885.6c0,0-102,90.4-148.9,95c48.7,53.3,78.2,78.6,99.3,89.2%0A%09%09%09c0-99.3,91.9-168.2,83.7-237.2c-8.3-68.9-6.4-64.3-6.4-64.3S3863,1851.2,3834.5,1885.6z" class="Graphic_x0020_Style_x0020_104"></path>%0A%09%09<path d="M4897.2,2712.3c-24.8-45.5-111.6-233-210.3-220.6c0,0-65.2,9.2-99.4,20.8c-1.1,12.9,9.7,22,21.7,26.5%0A%09%09%09c104.1,32,201.6,111.9,214.5,216.4c41.8,6.1,86.6,20.3,88.3-2.4C4912.3,2747.3,4901.4,2720.1,4897.2,2712.3z" class="st20"></path>%0A%09%09<path d="M4609.1,2539c-12-4.5-22.8-13.6-21.7-26.5c-9.2,3.1-16.2,6.4-19,9.7c149.6,89.2,160.1,153.2,228.5,227.8%0A%09%09%09c9,2.3,18,4.1,26.7,5.4C4810.8,2650.9,4713.3,2571,4609.1,2539z" class="st35"></path>%0A%09%09<path d="M3389.9,2642.1c0,0-40.9-81.4-37.1-99.3c3.8-17.9-3.1-35.9,15.9-43.4c-6.2,13.8-11,29-10,45.5%0A%09%09%09c1,16.5,34.6,94,34.6,94L3389.9,2642.1z" class="st18"></path>%0A%09%09<path d="M3407,2460.9c0,0-9.2,34.9-1.9,66.6c7.4,31.7,30.8,93.9,37,97.1c6.2,3.2,6.2,3.2,6.2,3.2%0A%09%09%09S3398.3,2507.3,3407,2460.9z" class="st18"></path>%0A%09%09<path d="M3472.9,2418.4c0,0-17,55.4-15.2,76c1.8,20.7,41.7,120.8,41.7,120.8l2.9-3.5%0A%09%09%09c0,0-42.5-108.1-31.7-146c10.9-37.9,9.3-50.7,9.3-50.7L3472.9,2418.4z" class="Graphic_x0020_Style_x0020_104"></path>%0A%09%09<path d="M3537.6,2454.9c0,0-9.2,72.2,0,81.4s20.4,7.3,20.4,7.3S3539.9,2483.9,3537.6,2454.9z" class="st18"></path>%0A%09%09<path d="M3543.3,2484.1c0,0-7.6,38.4-5.8,52.2c0.7,5.4,2.5,11.2,5.6,16.5c7.7,6.5,16.6,9.4,25.4,1.7%0A%09%09%09c15.6-12.5,17.4-32.6,17.5-52.1c-0.7-2.3-1.4-4.6-2.2-7" class="st16"></path>%0A%09%09<g>%0A%09%09%09<polygon points="3466.8,1624.2 3466.8,1624.2 3466.8,1624.2" class="st9"></polygon>%0A%09%09%09<path d="M3516.4,1675.9c-7.1-21.6-14.1-34.6-21-42.6c-3.4-4-6.9-6.7-10.3-8.4%0A%09%09%09%09c-3.4-1.7-6.8-2.3-9.8-2.3c-3.4,0-6.3,0.8-8.6,1.5c-4.1,1.3-8,4.5-10.7,9.6c-2.7,5.1-4.4,12.1-4.4,21.5%0A%09%09%09%09c0,12.2,2.8,28.6,10.1,50.4c6.4,19,13.3,30.6,20.3,37.6c3.5,3.5,7.1,5.8,10.5,7.3c3.4,1.4,6.8,2,9.7,2c2.7,0,5.1-0.4,7.1-0.9%0A%09%09%09%09c2-0.5,3.5-1.1,4.4-1.4l0,0c2.9-0.9,6.2-3.2,8.5-7.4c2.3-4.2,3.8-10.1,3.8-18.4C3526.2,1713.3,3523.6,1697.9,3516.4,1675.9z%0A%09%09%09%09 M3515.7,1738.9c-1.5,2.6-3.1,3.5-4.1,3.8c-1.2,0.4-2.5,0.9-4,1.3c-1.5,0.4-3.3,0.7-5.1,0.7c-2,0-4.3-0.3-6.7-1.4%0A%09%09%09%09c-3.7-1.5-7.9-4.6-12.5-10.9c-4.6-6.2-9.4-15.6-14-29.3c-7.1-21.2-9.7-36.9-9.7-47.9c0-8.5,1.5-14.2,3.5-17.9%0A%09%09%09%09c2-3.6,4.2-5.2,6.2-5.8l0,0c2-0.6,4.1-1.1,6.3-1.1c2,0,4,0.4,6.3,1.5c3.5,1.7,7.7,5.3,12.4,12.6c4.7,7.2,9.7,18.1,14.9,33.8%0A%09%09%09%09c7.1,21.4,9.4,36.2,9.4,46C3518.5,1731.7,3517.1,1736.3,3515.7,1738.9z" class="Graphic_x0020_Style_x0020_110"></path>%0A%09%09</g>%0A%09</g>%0A%09<polygon points="4535.9,1753.6 4677.9,1982.4 4774.4,1982.4 4597.9,1697.5" class="Graphic_x0020_Style_x0020_109"></polygon>%0A%09<polygon points="4616.6,1659.7 4815.1,1982.4 4916.5,1982.4 4705.5,1586.9" class="Graphic_x0020_Style_x0020_105"></polygon>%0A%09<polygon points="4597.9,1697.5 4644.4,1704.9 4815.1,1982.4 4774.4,1982.4" class="Graphic_x0020_Style_x0020_108"></polygon>%0A%09<polygon points="4791.1,1650.6 4705.5,1586.9 4916.5,1982.4 4939.2,1982.4 4939.2,1925.9" class="Graphic_x0020_Style_x0020_107"></polygon>%0A%09<path d="M4590.7,1773.7c0,0,19.3-16,39,11c19.6,27-20.3,47.3-33.4,30.1%0A%09%09C4583.1,1797.4,4579.5,1778.2,4590.7,1773.7z" class="Graphic_x0020_Style_x0020_100"></path>%0A%09<path d="M4596.3,1780.1c0,0,13.5-11.2,27.3,7.7s-14.2,33.1-23.4,21.1%0A%09%09C4591,1796.7,4588.5,1783.2,4596.3,1780.1z" class="Graphic_x0020_Style_x0020_106"></path>%0A%09<polygon points="4609.5,1841.2 4648,1821.1 4757.4,1982.4 4699.5,1982.4" class="Graphic_x0020_Style_x0020_105"></polygon>%0A%09<ellipse ry="38.6" rx="31.7" cy="1701" cx="4703.2" class="Graphic_x0020_Style_x0020_104"></ellipse>%0A%09<polygon points="4705.5,1762.7 4757.4,1724.1 4766.2,1734.7 4712.4,1768.9" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09<polygon points="4718.4,1793 4770.3,1754.3 4779,1764.9 4725.3,1799.2" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09<polygon points="4731.2,1823.2 4783.2,1784.6 4791.9,1795.1 4738.1,1829.4" class="Graphic_x0020_Style_x0020_100"></polygon>%0A%09<g>%0A%09%09<path d="M973.4,2494.7c-1.1-7.7-1.9-15.4-2.3-22.9c9.5-13.4,26.8-31.8,52.9-40.2c23.1-6.1,15.4-16.7,6-14.3%0A%09%09%09c-6.8,1.7-40.3,15-58.6,22.4c6.9-84.5,62.6-145.2,175.4-122.9c0,0,168.2-115.8,215,66.2c-26.6-8.7-77.4-22.7-81.8-5%0A%09%09%09c-5.6,22.6,45.1-7,86.4,25.8c2.5,13.6,4.5,28.6,5.7,45.1c0.4,18.1-4.3,37.3-12.2,56.6c-19.6-23.9-69.9-81.6-86.6-63.7%0A%09%09%09c-19.3,20.6,50.3,7.3,76.9,84.6c-10.3,19.7-23.2,39-36.6,56.7c-13.9-23.9-42.7-67.9-60.7-56.8c-7.2,6.3,6.6,15.6,21,31%0A%09%09%09c9.1,9.8,20.1,29.2,27,42.1c-32.6,40-64,68.5-64,68.5s-40.6-10.2-90-29.6c-2.2-17-5.6-50,0.5-58c8.3-10.9-3.5-21.2-17.7-9.4%0A%09%09%09c-11,9.1-13.4,36.4-10.2,55.9c-20.3-9-41-19.4-60.3-31.1c3.7-24.8,13.8-80.3,30.3-90.6c10.5-9.2,2.3-22.4-22.7-3.4%0A%09%09%09c-19.2,14.5-25.3,60.3-27.2,81.1C1004.8,2558,978.2,2528.6,973.4,2494.7z" class="st10"></path>%0A%09%09<path d="M1225.4,2633.4c0,0-71-217.9-78.6-316.8" class="st11"></path>%0A%09%09<path d="M1129.2,2552.6c0,0,15.4-40.3,50.3-75.4" class="st11"></path>%0A%09%09<path d="M1261.1,2488.4c0,0-59.5-46.7-90-43.7" class="st11"></path>%0A%09%09<path d="M1052.5,2468.5c0,0,69.2-57,107.6-70.5" class="st11"></path>%0A%09%09<path d="M1243.7,2349.5c0,0-52.8-23.4-93.7-5.9" class="st11"></path>%0A%09</g>%0A%09<path d="M3360.2,3327.1c-71.4-58-182.9-129.1-345.1-184.1c-329.3-111.6-176.9-187.3-303.6-225.2%0A%09%09s-430.3-22.5-784.9-68.8s-643.1-33.1-556-162c60.4-89.4,145-152.7,191.1-183.1l-109.7,8.4c-108.3,81.3-312.5,270.2,66.8,308.2%0A%09%09c486.5,48.7,1181.1,101.9,1192.6,208.2c9.2,84.8,440.1,200.1,610.2,307.3C3334,3333.3,3346.8,3330.3,3360.2,3327.1z" class="st22"></path>%0A%09<linearGradient y2="608.8419" x2="3633.9429" y1="608.8419" x1="3431.6741" gradientUnits="userSpaceOnUse" id="SVGID_9_">%0A%09%09<stop style="stop-color:%234085F0" offset="0"></stop>%0A%09%09<stop style="stop-color:%23275DC9" offset="1"></stop>%0A%09</linearGradient>%0A%09<ellipse ry="101.1" rx="101.1" cy="608.8" cx="3532.8" class="st36"></ellipse>%0A%09<linearGradient y2="3174.8586" x2="1457.2415" y1="3174.8586" x1="1136.8959" gradientUnits="userSpaceOnUse" id="SVGID_10_">%0A%09%09<stop style="stop-color:%2368B2FC" offset="0"></stop>%0A%09%09<stop style="stop-color:%23529BF7" offset="1"></stop>%0A%09</linearGradient>%0A%09<ellipse ry="106.3" rx="160.2" cy="3174.9" cx="1297.1" class="st37"></ellipse>%0A%09<linearGradient y2="2968.6479" x2="1266.5088" y1="2968.6479" x1="1085.6805" gradientUnits="userSpaceOnUse" id="SVGID_11_">%0A%09%09<stop style="stop-color:%234085F0" offset="0"></stop>%0A%09%09<stop style="stop-color:%23275DC9" offset="1"></stop>%0A%09</linearGradient>%0A%09<ellipse ry="60" rx="90.4" cy="2968.6" cx="1176.1" class="st38"></ellipse>%0A%09<linearGradient y2="3078.0559" x2="5051.6841" y1="3078.0559" x1="4866.0625" gradientUnits="userSpaceOnUse" id="SVGID_12_">%0A%09%09<stop style="stop-color:%234085F0" offset="0"></stop>%0A%09%09<stop style="stop-color:%23275DC9" offset="1"></stop>%0A%09</linearGradient>%0A%09<ellipse ry="92.8" rx="92.8" cy="3078.1" cx="4958.9" class="st39"></ellipse>%0A%09<path d="M2285.6,3438c0,0,206.8,24.5,420.7-87.7c42.5-28.4,62.6,33.1,35.4,53.2%0A%09%09c-27.2,20.1-168.9,100.4-399.3,87.4C2216,3486.1,2239.4,3435.8,2285.6,3438z" class="Graphic_x0020_Style_x0020_100"></path>%0A</g>%0A</svg>%0A';var w2=e=>{let{title:t,successRedirectUrl:o}=e,s=useLocation(),r=new URLSearchParams(window.location.search),{token:n,setToken:i}=$(),{t:c}=b(),{localeDropdownMenu:a}=P(),g=encodeURIComponent(window.location.href),{isLoading:f}=U1(r.has("ticket")?`/api/usystem/user/login?ticket=${r.get("ticket")}`:null,m=>S(m),{onSuccess:m=>{i(m.data.token);}});if(f)return jsx("div",{className:"w-screen h-screen flex justify-center items-center",children:jsx(Spin,{})});if(n){let m=!!window.location.hash,u=o;return m?(window.location.href=`${window.location.origin}${window.location.pathname}#${u}`,null):jsx(Navigate,{replace:!0,to:u})}return jsxs("div",{className:"w-screen h-screen relative flex overflow-hidden",children:[a&&jsx("div",{className:"absolute top-16 right-16 z-10",children:a}),jsx("div",{className:"absolute left-14 top-6",children:jsxs(Space,{align:"center",children:[jsx(me,{width:48}),t]})}),jsx("div",{className:"flex-1 flex justify-center items-center bg-slate-50",children:jsx("img",{src:Fs,alt:"background",className:"w-10/12"})}),jsx("div",{className:"w-[650px] relative top-0 left-0 right-0 bottom-0",children:jsx("div",{className:"absolute top-1/2 -translate-y-1/2 left-0 right-0",children:jsx("div",{className:"-translate-y-10 px-36",children:jsxs("div",{className:"flex flex-col justify-center",children:[jsx("div",{className:"h-10",children:s.state?.[Pe]&&jsx(Alert,{banner:!0,closable:!0,message:c("SignIn.notRegistered"),type:"error"})}),jsx(Typography.Title,{level:2,children:c("SignIn.welcome")}),jsx("div",{className:"mt-4",children:jsxs(Form,{layout:"vertical",autoComplete:"off",children:[jsx(Form.Item,{label:c("global.username"),name:"username",rules:[{required:!0}],children:jsx(Input,{})}),jsx(Form.Item,{label:c("global.password"),name:"password",rules:[{required:!0}],children:jsx(Input.Password,{})}),jsx(Form.Item,{children:jsx(Button,{block:!0,type:"primary",shape:"round",htmlType:"submit",children:c("global.signIn")})})]})}),jsx(Divider,{plain:!0,dashed:!0,children:c("SignIn.thirdParty")}),jsx("div",{className:"flex justify-center items-center",children:jsxs(Button,{block:!0,shape:"round",href:`${bo}/login?service=${g}`,target:"_self",children:[jsx(me,{width:18}),c("SignIn.signInWithIDass")]})})]})})})})]})},P2=w2;W();wt();
2708
+ // src/index.ts
2709
+ init_request();
2710
+ init_storage();
23
2711
 
24
- export { oo as ContextProvider, n1 as DynamicTags, Ue as ExpandableParagraph, Ce as FilterFormWrapper, we as Highlight, Uo as InfiniteList, Vo as Layout, Pe as NOT_REGISTERED, We as NavMenu, ma as NotFound, ha as OperationLogList, q as PermissionButton, Gr as PermissionGuard, d2 as PermissionRoutes, Y as QueryList, Tt as QueryListAction, J as RequestError, P2 as SignIn, _t as UserWidget, _e as contextStore, Ct as mixedStorage, S as request, ke as useFormModal, H as useGameStore, It as useModal, Wo as useModalStore, A as usePermission, de as usePermissions, K as useQueryListStore, $ as useTokenStore, W1 as useTokenValidation, P as useToolkitsContext };
2712
+ export { Provider_default as ContextProvider, dynamicTags_default as DynamicTags, expandableParagraph_default as ExpandableParagraph, filterFormWrapper_default as FilterFormWrapper, highlight_default as Highlight, InfiniteList_default as InfiniteList, Layout_default as Layout, NOT_REGISTERED, NavMenu_default as NavMenu, notFound_default as NotFound, operationLogList_default as OperationLogList, PermissionButton_default as PermissionButton, permissionGuard_default as PermissionGuard, permission_default as PermissionRoutes, QueryList_default as QueryList, QueryListAction, RequestError, signIn_default as SignIn, userWidget_default as UserWidget, contextStore, mixedStorage, request, useFormModal, useGameStore, useModal, useModalStore, usePermission, usePermissions, useQueryListStore, useTokenStore, useTokenValidation, useToolkitsContext };
2713
+ //# sourceMappingURL=index.js.map
2714
+ //# sourceMappingURL=index.js.map