@bitkyc08/opencodex 2.37.0 → 2.39.0-preview.20260901

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.
Files changed (131) hide show
  1. package/bin/ocx.mjs +127 -16
  2. package/gui/dist/assets/index-6HZDkIpX.js +112 -0
  3. package/gui/dist/assets/index-uvENYLin.css +1 -0
  4. package/gui/dist/index.html +2 -2
  5. package/gui/dist/provider-icons/aside.svg +3 -0
  6. package/gui/dist/provider-icons/baseten.svg +13 -0
  7. package/gui/dist/provider-icons/bizrouter.svg +41 -0
  8. package/gui/dist/provider-icons/cerebras.svg +26 -0
  9. package/gui/dist/provider-icons/deepinfra.svg +75 -0
  10. package/gui/dist/provider-icons/deepseek-harness.svg +3 -0
  11. package/gui/dist/provider-icons/digitalocean.svg +10 -0
  12. package/gui/dist/provider-icons/featherless.svg +4 -0
  13. package/gui/dist/provider-icons/gajae-code.svg +410 -0
  14. package/gui/dist/provider-icons/hermes-agent.svg +207 -0
  15. package/gui/dist/provider-icons/hyperbolic.svg +18 -0
  16. package/gui/dist/provider-icons/kilo.svg +13 -0
  17. package/gui/dist/provider-icons/litellm.svg +1 -0
  18. package/gui/dist/provider-icons/minimax.svg +1 -0
  19. package/gui/dist/provider-icons/nanogpt.svg +74 -0
  20. package/gui/dist/provider-icons/nebius.svg +1 -0
  21. package/gui/dist/provider-icons/neuralwatt.svg +27 -0
  22. package/gui/dist/provider-icons/nous.svg +149 -0
  23. package/gui/dist/provider-icons/novita.svg +32 -0
  24. package/gui/dist/provider-icons/oh-my-pi.svg +11 -0
  25. package/gui/dist/provider-icons/openclaw.svg +54 -0
  26. package/gui/dist/provider-icons/orcarouter.svg +175 -0
  27. package/gui/dist/provider-icons/parallel.svg +13 -0
  28. package/gui/dist/provider-icons/prime-agent.svg +21 -0
  29. package/gui/dist/provider-icons/sambanova.svg +276 -0
  30. package/gui/dist/provider-icons/scaleway.svg +11 -0
  31. package/gui/dist/provider-icons/siliconflow.svg +18 -0
  32. package/gui/dist/provider-icons/synthetic.svg +12 -0
  33. package/gui/dist/provider-icons/together.svg +18 -0
  34. package/gui/dist/provider-icons/umans.svg +30 -0
  35. package/gui/dist/provider-icons/venice.svg +165 -0
  36. package/gui/dist/provider-icons/vultr.svg +15 -0
  37. package/gui/dist/provider-icons/zai.svg +218 -0
  38. package/gui/dist/provider-icons/zcode.svg +219 -0
  39. package/gui/dist/provider-icons/zenmux.svg +1 -0
  40. package/package.json +1 -1
  41. package/src/adapters/cursor/live-models.ts +1 -0
  42. package/src/adapters/cursor/protobuf-request.ts +4 -1
  43. package/src/adapters/cursor/tool-definitions.ts +36 -4
  44. package/src/adapters/openai-responses.ts +72 -10
  45. package/src/bridge.ts +15 -15
  46. package/src/cli/capabilities.ts +14 -0
  47. package/src/cli/codex-cli-update.ts +96 -0
  48. package/src/cli/codex-shim-autorestore.ts +3 -0
  49. package/src/cli/dispatch.ts +54 -18
  50. package/src/cli/export-command.ts +18 -17
  51. package/src/cli/help.ts +2 -2
  52. package/src/cli/index.ts +423 -32
  53. package/src/cli/integrations.ts +24 -2
  54. package/src/cli/launcher-context.ts +53 -2
  55. package/src/cli/opencode.ts +126 -33
  56. package/src/cli/registry.ts +16 -10
  57. package/src/cli/system-command.ts +6 -1
  58. package/src/cli/uninstall-plan.ts +86 -0
  59. package/src/clients/config-export.ts +293 -28
  60. package/src/codex/account-store.ts +131 -12
  61. package/src/codex/auth-api.ts +202 -33
  62. package/src/codex/autostart-health.ts +3 -3
  63. package/src/codex/catalog/provider-fetch.ts +96 -10
  64. package/src/codex/catalog/sync.ts +4 -3
  65. package/src/codex/cli-install-provenance.ts +795 -0
  66. package/src/codex/convergence.ts +4 -3
  67. package/src/codex/credential-mutation-epoch.ts +11 -0
  68. package/src/codex/history-job.ts +10 -0
  69. package/src/codex/history-manifest.ts +35 -2
  70. package/src/codex/history-provider.ts +196 -19
  71. package/src/codex/history-worker.ts +3 -0
  72. package/src/codex/main-account.ts +2 -0
  73. package/src/codex/model-entitlements.ts +430 -27
  74. package/src/codex/native-profile-manager.ts +4 -0
  75. package/src/codex/quota-401-recovery.ts +190 -0
  76. package/src/codex/quota-recovery-timing.ts +28 -0
  77. package/src/codex/quota.ts +6 -0
  78. package/src/codex/reset-credit-operation-ledger.ts +1411 -0
  79. package/src/codex/reset-credit-recovery.ts +20 -2
  80. package/src/codex/routing.ts +68 -16
  81. package/src/codex/shim.ts +204 -18
  82. package/src/codex/subagent-model-fallback.ts +4 -1
  83. package/src/codex/user-identity.ts +2 -1
  84. package/src/config/paths.ts +18 -3
  85. package/src/config/pending-teardown-names.d.mts +8 -0
  86. package/src/config/pending-teardown-names.mjs +69 -0
  87. package/src/config/pending-teardown.ts +286 -0
  88. package/src/config.ts +23 -0
  89. package/src/generated/compatibility-version.json +155 -67
  90. package/src/integrations/journal.ts +12 -1
  91. package/src/integrations/registry.ts +112 -0
  92. package/src/integrations/state.ts +67 -5
  93. package/src/integrations/writer.ts +107 -16
  94. package/src/lib/bounded-subprocess.ts +36 -0
  95. package/src/lib/process-control.ts +30 -5
  96. package/src/lib/state-store-registrations.ts +8 -0
  97. package/src/lib/strict-semver.ts +47 -0
  98. package/src/lib/windows-elevation.ts +32 -1
  99. package/src/lib/windows-secret-acl.ts +47 -25
  100. package/src/lib/windows-service-mutation-lock.ts +133 -0
  101. package/src/lib/windows-user-principal.ts +15 -17
  102. package/src/oauth/index.ts +220 -13
  103. package/src/oauth/store.ts +220 -18
  104. package/src/responses/spill-store.ts +354 -29
  105. package/src/responses/state.ts +775 -8
  106. package/src/server/index.ts +4 -3
  107. package/src/server/lifecycle.ts +5 -1
  108. package/src/server/management/integration-routes.ts +36 -5
  109. package/src/server/management/model-rows.ts +11 -2
  110. package/src/server/management/provider-routes.ts +4 -0
  111. package/src/server/management/system-restart.ts +5 -5
  112. package/src/server/management-api.ts +72 -13
  113. package/src/server/responses/encrypted-payload.ts +18 -1
  114. package/src/server/startup-action-control.ts +3 -2
  115. package/src/server/stop-teardown.ts +84 -0
  116. package/src/service.ts +749 -53
  117. package/src/sidecar/candidates.ts +1 -1
  118. package/src/update/codex-cli-update-launch-policy.d.mts +18 -0
  119. package/src/update/codex-cli-update-launch-policy.mjs +30 -0
  120. package/src/update/index.ts +39 -6
  121. package/src/update/job.ts +10 -11
  122. package/src/update/proxy-liveness-probe.d.mts +6 -0
  123. package/src/update/proxy-liveness-probe.mjs +84 -0
  124. package/src/update/stop-contract.d.mts +2 -0
  125. package/src/update/stop-contract.mjs +15 -0
  126. package/src/update/stop-decision.d.mts +10 -0
  127. package/src/update/stop-decision.mjs +34 -0
  128. package/src/vision/eligibility.ts +19 -1
  129. package/src/vision/index.ts +4 -18
  130. package/gui/dist/assets/index-CowztZdo.js +0 -112
  131. package/gui/dist/assets/index-jqE_VOKI.css +0 -1
@@ -0,0 +1,18 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 484.98 452.5">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: #ef2cc1;
6
+ }
7
+ .cls-2 {
8
+ fill: #caaef5;
9
+ }
10
+ .cls-3 {
11
+ fill: #fc4c02;
12
+ }
13
+ </style>
14
+ </defs>
15
+ <path class="cls-1" d="M468.72,60.67C435.25,2.69,361.11-17.18,303.12,16.3c-37.3,21.54-58.82,59.62-60.52,99.69l121.15.16v10.39h-121.15c.78,18.94,6.02,37.81,16.15,55.36,33.48,57.98,107.62,77.85,165.6,44.37,57.98-33.48,77.85-107.62,44.37-165.6Z"/>
16
+ <path class="cls-2" d="M16.26,60.63C-17.21,118.61,2.65,192.76,60.63,226.23c37.3,21.54,81.04,21.13,116.59,2.57l-60.44-105,9-5.18,60.57,104.91c16.01-10.14,29.74-24.12,39.87-41.67,33.48-57.98,13.61-132.12-44.37-165.6C123.88-17.21,49.74,2.65,16.26,60.63Z"/>
17
+ <path class="cls-3" d="M242.46,452.5c66.95,0,121.23-54.27,121.23-121.23,0-43.07-22.22-80.75-56.07-102.25l-60.71,104.84-8.99-5.21,60.57-104.91c-16.79-8.79-35.75-13.7-56.02-13.7-66.95,0-121.23,54.27-121.23,121.23,0,66.95,54.27,121.23,121.23,121.23Z"/>
18
+ </svg>
@@ -0,0 +1,30 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160.000000 160.000000"><g transform="translate(0.000000,160.000000) scale(0.100000,-0.100000)"
2
+ fill="#000000" stroke="none"><path fill="#f4f4f4" d="M400 1015 l0 -265 75 0 75 0 -2 263 -3 262 -72 3 -73 3 0 -266z
3
+ M1080 1015 l0 -265 70 0 70 0 0 265 0 265 -70 0 -70 0 0 -265z M813 723 l-243
4
+ -3 0 -65 0 -65 239 0 239 0 4 70 c2 39 3 69 3 68 0 -2 -109 -4 -242 -5z"/><path fill="#f372a5" d="M402 413 l3 -158 70 0 70 0 3 158 3 157 -76 0 -76 0 3 -157z M1072
5
+ 413 l3 -158 66 -3 c48 -2 69 1 78 11 8 10 11 59 9 158 l-3 144 -78 3 -78 3 3
6
+ -158z"/><path fill="#7e7e7e" d="M394 1015 c0 -154 2 -216 3 -137 2 79 2 205 0 280 -1 75 -3 11 -3
7
+ -143z M552 1024 c-1 -199 1 -273 10 -282 9 -9 76 -11 253 -10 l240 2 -245 6
8
+ -245 5 -5 275 -5 275 -3 -271z M1065 1277 c-3 -7 -4 -129 -3 -272 l3 -260 5
9
+ 273 c3 149 4 272 2 272 -1 0 -5 -6 -7 -13z M1145 740 l-80 -6 77 -2 c43 -1 80
10
+ 2 83 8 3 6 5 9 3 8 -2 -1 -39 -5 -83 -8z M477 733 l72 -4 3 -77 3 -77 255 0
11
+ 255 0 1 75 1 75 -4 -72 -4 -73 -249 0 -249 0 -3 78 -3 77 -75 1 -75 1 72 -4z"/><path fill="#d0d0d0" d="M420 1284 c60 -8 130 -8 130 -1 0 4 -35 6 -77 6 -43 -1 -67 -3 -53
12
+ -5z M1077 1284 c-4 -4 -7 -125 -7 -269 0 -190 -3 -264 -12 -273 -15 -15 -484
13
+ -17 -493 -2 -3 6 -42 9 -88 8 l-82 -2 80 -5 80 -6 3 -77 3 -78 249 0 250 0 0
14
+ 68 c0 37 4 72 8 79 4 7 38 13 82 15 l75 3 0 270 0 270 -70 3 c-39 1 -74 0 -78
15
+ -4z m143 -269 l0 -265 -70 0 -70 0 0 265 0 265 70 0 70 0 0 -265z m-168 -355
16
+ l-4 -70 -239 0 -239 0 0 65 0 65 243 3 c133 1 242 3 242 5 0 1 -1 -29 -3 -68z"/><path fill="#382b30" d="M433 1293 c26 -2 67 -2 90 0 23 2 2 3 -48 3 -49 0 -68 -1 -42 -3z
17
+ M1067 1293 c-3 -4 33 -7 79 -5 l85 3 -3 -280 c-2 -154 0 -277 5 -272 4 4 6
18
+ 131 5 282 l-3 274 -82 3 c-45 1 -84 -1 -86 -5z M562 1018 c-1 -147 1 -269 6
19
+ -271 4 -3 6 74 4 171 -4 334 -8 367 -10 100z M1052 880 c0 -14 2 -19 5 -12 2
20
+ 6 2 18 0 25 -3 6 -5 1 -5 -13z M1046 755 c-3 -8 -1 -15 4 -15 6 0 10 7 10 15
21
+ 0 8 -2 15 -4 15 -2 0 -6 -7 -10 -15z M528 723 c7 -3 16 -2 19 1 4 3 -2 6 -13
22
+ 5 -11 0 -14 -3 -6 -6z M1074 716 c-3 -7 -3 -42 -1 -77 l3 -64 2 72 c1 46 6 73
23
+ 15 76 9 4 9 6 -1 6 -7 1 -15 -5 -18 -13z M1230 417 l5 -162 3 154 c1 85 -1
24
+ 158 -5 162 -5 5 -6 -65 -3 -154z M564 415 c0 -88 2 -123 3 -77 2 46 2 118 0
25
+ 160 -1 42 -3 5 -3 -83z M1069 247 c4 -4 43 -7 87 -5 l79 3 -87 5 c-48 3 -83 1
26
+ -79 -3z M433 243 c26 -2 67 -2 90 0 23 2 2 3 -48 3 -49 0 -68 -1 -42 -3z"/><path fill="#89425e" d="M397 573 c-10 -9 -9 -323 1 -323 4 0 6 72 4 160 l-3 160 76 0 76 0
27
+ -3 -160 c-2 -88 0 -160 5 -160 4 0 7 74 7 165 l0 165 -78 0 c-43 0 -82 -3 -85
28
+ -7z M1060 421 c0 -88 3 -162 8 -164 4 -3 6 67 4 155 l-3 160 80 -4 c43 -2 77
29
+ 0 74 5 -2 4 -40 7 -84 7 l-79 0 0 -159z M1215 260 c-3 -5 -1 -10 4 -10 6 0 11
30
+ 5 11 10 0 6 -2 10 -4 10 -3 0 -8 -4 -11 -10z"/></g></svg>
@@ -0,0 +1,165 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160.000000 160.000000"><g transform="translate(0.000000,160.000000) scale(0.100000,-0.100000)"
2
+ fill="#000000" stroke="none"><path fill="#102b43" d="M637 1382 c-26 -27 -27 -32 -27 -137 l0 -110 87 -87 c48 -49 95 -88
3
+ 103 -88 8 0 55 39 103 88 l87 87 0 111 c0 108 -1 111 -28 137 l-28 27 -59 -60
4
+ c-33 -33 -66 -60 -74 -60 -9 0 -43 27 -76 60 l-61 60 -27 -28z m95 -59 l58
5
+ -57 0 -113 c0 -62 -3 -113 -7 -113 -4 0 -33 26 -65 57 l-58 57 0 113 c0 62 3
6
+ 113 7 113 4 0 33 -26 65 -57z m208 -56 l0 -113 -58 -57 c-32 -31 -61 -57 -65
7
+ -57 -4 0 -7 50 -7 112 l0 112 57 58 c32 32 61 58 65 58 4 0 8 -51 8 -113z
8
+ M263 1264 c-4 -10 13 -35 53 -75 l58 -59 -48 -49 -49 -50 44 -3 44 -3 3 -47
9
+ c2 -27 6 -48 10 -48 3 0 28 21 54 47 l48 48 143 -143 142 -142 -32 -32 c-31
10
+ -31 -33 -31 -52 -14 -21 19 -51 16 -51 -5 0 -7 8 -21 17 -31 15 -17 15 -20
11
+ -11 -47 l-28 -29 -41 19 c-88 40 -191 18 -254 -55 -41 -46 -57 -97 -50 -163 7
12
+ -68 38 -118 95 -154 92 -58 186 -47 263 30 74 73 84 146 38 259 -13 32 -13 35
13
+ 15 58 28 25 29 25 50 6 37 -34 65 0 31 38 -14 15 -13 20 6 43 26 34 49 34 79
14
+ 2 22 -23 22 -26 7 -43 -36 -39 -9 -75 29 -40 21 19 22 19 50 -6 28 -23 28 -26
15
+ 15 -58 -46 -113 -36 -186 38 -259 77 -77 171 -88 263 -30 57 36 88 86 95 154
16
+ 7 66 -9 117 -50 163 -63 73 -166 95 -254 55 l-41 -19 -28 29 c-27 28 -27 29
17
+ -9 48 18 21 15 51 -6 51 -7 0 -21 -8 -31 -17 -18 -16 -20 -15 -51 15 l-32 32
18
+ 142 142 143 143 48 -48 c26 -26 51 -47 54 -47 4 0 8 21 10 48 l3 47 44 3 44 3
19
+ -49 50 -48 49 57 58 c59 60 68 78 41 89 -11 4 -87 -66 -270 -248 l-254 -254
20
+ -253 253 c-138 138 -258 252 -265 252 -7 0 -15 -7 -19 -16z m275 -690 c12 -14
21
+ 22 -36 22 -48 0 -19 7 -25 35 -30 106 -20 94 -176 -14 -176 -16 0 -21 -6 -21
22
+ -29 0 -59 -76 -100 -132 -70 -22 12 -52 74 -43 89 4 6 -6 10 -20 10 -90 0
23
+ -123 125 -44 165 15 8 37 15 49 15 12 0 19 4 16 9 -3 5 -1 23 5 40 22 63 102
24
+ 76 147 25z m631 21 c28 -14 56 -68 45 -86 -3 -5 4 -9 16 -9 12 0 34 -7 49 -15
25
+ 79 -40 46 -165 -44 -165 -14 0 -24 -4 -20 -10 9 -15 -21 -77 -43 -89 -56 -30
26
+ -132 11 -132 70 0 25 -4 29 -29 29 -40 0 -81 43 -81 85 0 43 33 83 75 91 27 5
27
+ 35 11 35 28 0 40 44 83 88 85 7 1 26 -6 41 -14z"/><path fill="#c7cdd1" d="M624 1388 l-29 -33 33 29 c17 17 32 31 32 33 0 8 -8 1 -36 -29z M940
28
+ 1417 c0 -2 15 -16 33 -33 l32 -29 -29 33 c-28 30 -36 37 -36 29z M548 1040
29
+ l252 -255 253 255 252 255 -252 -250 -253 -250 -252 250 -253 250 253 -255z
30
+ M685 1040 c49 -49 92 -90 95 -90 2 0 -36 41 -85 90 -49 50 -92 90 -95 90 -2 0
31
+ 36 -40 85 -90z M905 1038 l-90 -93 93 90 c85 83 97 95 89 95 -1 0 -43 -42 -92
32
+ -92z M250 1018 c0 -5 26 -7 58 -7 61 1 55 6 -15 11 -24 2 -43 0 -43 -4z M1290
33
+ 1020 l-55 -7 58 -1 c32 -1 57 2 57 8 0 6 -1 9 -2 8 -2 -1 -28 -4 -58 -8z M418
34
+ 955 c-31 -30 -53 -55 -49 -55 4 0 31 25 61 55 70 71 62 71 -12 0z M1172 955
35
+ c32 -32 59 -57 61 -55 1 3 -24 30 -58 60 l-60 54 57 -59z M723 718 c-19 -19
36
+ -24 -20 -40 -8 -17 13 -17 13 0 -5 17 -19 18 -19 44 8 15 15 25 27 22 27 -2 0
37
+ -14 -10 -26 -22z M872 715 c27 -29 28 -29 45 -10 17 18 17 18 0 5 -15 -11 -21
38
+ -10 -45 11 l-27 23 27 -29z M620 705 c-6 -8 -10 -19 -8 -24 1 -6 8 1 15 14 13
39
+ 28 11 31 -7 10z M972 698 c7 -15 15 -23 17 -17 2 6 -4 18 -13 27 -15 15 -15
40
+ 15 -4 -10z M448 633 c12 -2 32 -2 45 0 12 2 2 4 -23 4 -25 0 -35 -2 -22 -4z
41
+ M624 618 l-19 -23 23 19 c12 11 22 21 22 23 0 8 -8 2 -26 -19z M965 620 c10
42
+ -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z
43
+ M1108 633 c12 -2 30 -2 40 0 9 3 -1 5 -23 4 -22 0 -30 -2 -17 -4z M760 626 c0
44
+ -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M819 613 c-13 -16
45
+ -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z M468 593 c7 -3 16 -2 19 1 4
46
+ 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z M1118 593 c7 -3 16 -2 19 1 4 3 -2 6 -13 5
47
+ -11 0 -14 -3 -6 -6z M414 568 l-19 -23 23 19 c12 11 22 21 22 23 0 8 -8 2 -26
48
+ -19z M1175 570 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20
49
+ -3 0 3 -9 13 -20z M675 560 c-10 -11 -16 -22 -14 -24 2 -2 12 7 22 20 22 29
50
+ 17 32 -8 4z M769 563 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8
51
+ -17 -17z M810 576 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z
52
+ M916 558 c10 -14 21 -24 23 -22 3 3 -6 15 -18 27 l-24 22 19 -27z M358 483 c7
53
+ -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z M578 483 c7 -3 16 -2 19 1
54
+ 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z M1008 483 c7 -3 16 -2 19 1 4 3 -2 6 -13
55
+ 5 -11 0 -14 -3 -6 -6z M1228 483 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14
56
+ -3 -6 -6z M304 458 l-19 -23 23 19 c12 11 22 21 22 23 0 8 -8 2 -26 -19z
57
+ M1285 460 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3
58
+ -9 13 -20z M242 410 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z
59
+ M1352 410 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z M629 353 c-13
60
+ -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z M950 366 c0 -2 8
61
+ -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M545 330 c-3 -6 1 -7 9
62
+ -4 18 7 21 14 7 14 -6 0 -13 -4 -16 -10z M1030 336 c0 -2 7 -7 16 -10 8 -3 12
63
+ -2 9 4 -6 10 -25 14 -25 6z M310 245 c13 -14 26 -25 28 -25 3 0 -5 11 -18 25
64
+ -13 14 -26 25 -28 25 -3 0 5 -11 18 -25z M1279 243 l-24 -28 28 24 c15 14 27
65
+ 26 27 28 0 8 -8 1 -31 -24z M519 243 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21
66
+ -2 0 -10 -8 -17 -17z M1060 256 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16
67
+ -21 21 -21 13z"/><path fill="#2d4459" d="M670 1409 c0 -2 27 -31 60 -64 33 -33 60 -57 60 -54 0 2 -27 31 -60
68
+ 64 -33 33 -60 57 -60 54z M865 1348 l-60 -63 63 60 c34 33 62 61 62 62 0 8
69
+ -10 -1 -65 -59z M661 1378 c3 -2 34 -30 69 -63 l65 -60 -60 63 c-33 34 -64 62
70
+ -69 62 -5 0 -7 -1 -5 -2z M865 1318 l-60 -63 65 60 c35 33 66 61 69 63 2 1 0
71
+ 2 -5 2 -5 0 -36 -28 -69 -62z M310 1188 l54 -58 -47 -48 c-26 -26 -47 -51 -47
72
+ -55 0 -4 21 -6 48 -5 l47 1 -44 4 -44 4 49 50 49 49 -60 58 -60 57 55 -57z
73
+ M1280 1185 l-54 -55 48 -49 49 -50 -44 -4 -44 -4 48 -1 c26 -1 47 1 47 5 0 4
74
+ -21 29 -47 55 l-47 48 54 55 c30 30 52 55 49 55 -2 0 -29 -25 -59 -55z M717
75
+ 1100 c34 -35 64 -62 65 -60 2 3 -26 32 -62 65 l-65 59 62 -64z M873 1100 c-33
76
+ -33 -58 -60 -54 -60 4 0 33 27 66 60 77 78 68 78 -12 0z M615 878 c77 -79 142
77
+ -142 145 -140 5 3 -272 282 -280 282 -3 0 57 -64 135 -142z M975 880 c-76 -76
78
+ -137 -141 -135 -142 3 -2 68 61 145 140 78 78 138 142 135 142 -3 0 -68 -63
79
+ -145 -140z M620 683 c0 -5 10 -18 23 -29 l22 -19 -20 25 c-11 14 -21 27 -22
80
+ 29 -2 2 -3 0 -3 -6z M764 668 l-19 -23 23 19 c21 18 27 26 19 26 -2 0 -12 -10
81
+ -23 -22z M831 664 c13 -17 26 -30 28 -27 3 2 -8 16 -24 31 l-28 27 24 -31z
82
+ M956 662 l-19 -27 24 22 c12 12 21 24 18 27 -2 2 -13 -8 -23 -22z M458 623
83
+ c12 -2 30 -2 40 0 9 3 -1 5 -23 4 -22 0 -30 -2 -17 -4z M1108 623 c12 -2 30
84
+ -2 40 0 9 3 -1 5 -23 4 -22 0 -30 -2 -17 -4z M458 603 c6 -2 18 -2 25 0 6 3 1
85
+ 5 -13 5 -14 0 -19 -2 -12 -5z M1118 603 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0
86
+ -19 -2 -12 -5z M700 596 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21
87
+ -21 13z M879 583 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17
88
+ -17z M314 558 l-29 -33 33 29 c30 28 37 36 29 36 -2 0 -16 -15 -33 -32z M664
89
+ 568 l-19 -23 23 19 c21 18 27 26 19 26 -2 0 -12 -10 -23 -22z M925 570 c10
90
+ -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z
91
+ M1250 587 c0 -2 15 -16 33 -33 l32 -29 -29 33 c-28 30 -36 37 -36 29z M353
92
+ 493 c9 -2 23 -2 30 0 6 3 -1 5 -18 5 -16 0 -22 -2 -12 -5z M568 493 c6 -2 18
93
+ -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z M1008 493 c6 -2 18 -2 25 0 6 3 1
94
+ 5 -13 5 -14 0 -19 -2 -12 -5z M1223 493 c9 -2 23 -2 30 0 6 3 -1 5 -18 5 -16
95
+ 0 -22 -2 -12 -5z M251 404 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5
96
+ -13z M1341 404 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z M290 356
97
+ c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M1289 343 c-13
98
+ -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z M619 253 l-24 -28
99
+ 28 24 c15 14 27 26 27 28 0 8 -8 1 -31 -24z M970 255 c13 -14 26 -25 28 -25 3
100
+ 0 -5 11 -18 25 -13 14 -26 25 -28 25 -3 0 5 -11 18 -25z M400 246 c0 -2 8 -10
101
+ 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M1179 233 c-13 -16 -12 -17 4
102
+ -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z"/><path fill="#556878" d="M629 1383 l-24 -28 28 24 c25 23 32 31 24 31 -2 0 -14 -12 -28 -27z
103
+ M960 1385 c13 -14 26 -25 28 -25 3 0 -5 11 -18 25 -13 14 -26 25 -28 25 -3 0
104
+ 5 -11 18 -25z M664 1265 c0 -60 1 -84 3 -52 2 32 2 81 0 110 -2 29 -3 3 -3
105
+ -58z M934 1265 c0 -60 1 -84 3 -52 2 32 2 81 0 110 -2 29 -3 3 -3 -58z M604
106
+ 1245 c0 -60 1 -84 3 -52 2 32 2 81 0 110 -2 29 -3 3 -3 -58z M994 1245 c0 -60
107
+ 1 -84 3 -52 2 32 2 81 0 110 -2 29 -3 3 -3 -58z M281 1288 c3 -2 113 -109 244
108
+ -238 l240 -235 -235 238 c-129 130 -239 237 -244 237 -5 0 -7 -1 -5 -2z M1070
109
+ 1053 l-235 -238 240 235 c131 129 241 236 244 238 2 1 0 2 -5 2 -5 0 -115
110
+ -107 -244 -237z M690 1045 c47 -47 87 -85 90 -85 2 0 -33 38 -80 85 -47 47
111
+ -87 85 -90 85 -2 0 33 -38 80 -85z M870 1013 l-55 -58 58 55 c31 30 57 56 57
112
+ 57 0 8 -10 -1 -60 -54z M415 958 l-50 -53 53 50 c48 46 57 55 49 55 -1 0 -25
113
+ -24 -52 -52z M1175 960 c27 -27 51 -50 54 -50 3 0 -17 23 -44 50 -27 28 -51
114
+ 50 -54 50 -3 0 17 -22 44 -50z M629 703 c-13 -16 -12 -17 4 -4 9 7 17 15 17
115
+ 17 0 8 -8 3 -21 -13z M677 699 c12 -12 24 -21 27 -18 2 2 -8 13 -22 23 l-27
116
+ 19 22 -24z M911 700 c-13 -11 -19 -20 -14 -20 6 0 18 9 28 20 23 25 17 25 -14
117
+ 0z M950 716 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M750
118
+ 626 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M829 613
119
+ c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z M348 323 c6 -2
120
+ 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z M550 321 c0 -4 11 -6 25 -3 14
121
+ 2 25 6 25 8 0 2 -11 4 -25 4 -14 0 -25 -4 -25 -9z M1000 326 c0 -2 11 -6 25
122
+ -8 14 -3 25 -1 25 3 0 5 -11 9 -25 9 -14 0 -25 -2 -25 -4z M1228 323 c6 -2 18
123
+ -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z M315 250 c10 -11 20 -20 23 -20 3
124
+ 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z M1274 248 l-19 -23 23
125
+ 19 c12 11 22 21 22 23 0 8 -8 2 -26 -19z"/><path fill="#96a1ab" d="M732 1355 l68 -70 52 55 53 55 -53 -50 -52 -49 -68 64 -67 65 67 -70z
126
+ M720 1315 c30 -30 57 -55 59 -55 3 0 -19 25 -49 55 -30 30 -57 55 -59 55 -3 0
127
+ 19 -25 49 -55z M870 1313 l-55 -58 58 55 c53 50 62 60 54 60 -1 0 -27 -26 -57
128
+ -57z M300 1188 l54 -58 -49 -52 -50 -53 55 53 55 52 -60 58 -60 57 55 -57z
129
+ M1290 1185 l-55 -55 55 -53 55 -52 -50 53 -49 52 54 55 c30 30 52 55 49 55 -2
130
+ 0 -29 -25 -59 -55z M720 1105 c30 -30 57 -55 59 -55 3 0 -19 25 -49 55 -30 30
131
+ -57 55 -59 55 -3 0 19 -25 49 -55z M875 1108 l-50 -53 53 50 c48 46 57 55 49
132
+ 55 -1 0 -25 -24 -52 -52z M363 960 c0 -30 2 -43 4 -27 2 15 2 39 0 55 -2 15
133
+ -4 2 -4 -28z M610 878 c125 -128 140 -143 140 -135 0 1 -62 63 -137 137 l-138
134
+ 135 135 -137z M980 873 l-135 -138 138 135 c75 74 137 136 137 137 0 8 -15 -7
135
+ -140 -134z M1233 960 c0 -30 2 -43 4 -27 2 15 2 39 0 55 -2 15 -4 2 -4 -28z
136
+ M769 663 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z M810 676
137
+ c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M620 666 c0 -2 8
138
+ -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M959 653 c-13 -16 -12
139
+ -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z M700 586 c0 -2 8 -10 18 -17 15
140
+ -13 16 -12 3 4 -13 16 -21 21 -21 13z M879 573 c-13 -16 -12 -17 4 -4 16 13
141
+ 21 21 13 21 -2 0 -10 -8 -17 -17z M392 520 c0 -14 2 -19 5 -12 2 6 2 18 0 25
142
+ -3 6 -5 1 -5 -13z M1202 520 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5
143
+ -13z M282 410 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z M1312 410
144
+ c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z M392 300 c0 -14 2 -19 5
145
+ -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z M1202 300 c0 -14 2 -19 5 -12 2 6 2 18 0
146
+ 25 -3 6 -5 1 -5 -13z M400 256 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16
147
+ -21 21 -21 13z M1179 243 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10
148
+ -8 -17 -17z"/><path fill="#707f8d" d="M812 1163 c-1 -56 1 -104 6 -106 4 -3 6 27 4 66 -5 129 -9 144 -10
149
+ 40z M784 1155 c0 -55 1 -76 3 -47 2 29 2 74 0 100 -2 26 -3 2 -3 -53z M959
150
+ 1103 l-34 -38 38 34 c34 33 42 41 34 41 -2 0 -19 -17 -38 -37z M760 816 c0 -2
151
+ 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z M819 803 c-13 -16 -12
152
+ -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z M724 708 l-19 -23 23 19 c21 18
153
+ 27 26 19 26 -2 0 -12 -10 -23 -22z M865 710 c10 -11 20 -20 23 -20 3 0 -3 9
154
+ -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z M624 608 l-19 -23 23 19 c21
155
+ 18 27 26 19 26 -2 0 -12 -10 -23 -22z M965 610 c10 -11 20 -20 23 -20 3 0 -3
156
+ 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z M409 573 c-13 -16 -12 -17 4
157
+ -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z M670 565 c-13 -14 -22 -27 -19 -29
158
+ 2 -2 14 10 27 25 29 36 24 38 -8 4z M921 564 c13 -17 26 -30 28 -27 3 2 -8 16
159
+ -24 31 l-28 27 24 -31z M1170 586 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13
160
+ 16 -21 21 -21 13z M309 563 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3
161
+ -21 -13z M1270 576 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21
162
+ 13z M692 410 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z M902 410 c0
163
+ -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z M458 183 c6 -2 18 -2 25 0 6
164
+ 3 1 5 -13 5 -14 0 -19 -2 -12 -5z M1118 183 c6 -2 18 -2 25 0 6 3 1 5 -13 5
165
+ -14 0 -19 -2 -12 -5z"/></g></svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160.000000 160.000000"><g transform="translate(0.000000,160.000000) scale(0.100000,-0.100000)"
2
+ fill="#000000" stroke="none"><path fill="#007cfb" d="M956 1459 c-17 -13 -26 -30 -26 -48 0 -39 307 -528 350 -558 54 -38
3
+ 80 -16 185 156 28 45 69 111 93 147 43 68 52 103 28 123 -7 6 -37 50 -67 97
4
+ -31 51 -63 90 -77 95 -13 5 -121 9 -241 9 -206 0 -220 -1 -245 -21z M235 1145
5
+ c-14 -13 -25 -35 -25 -49 0 -14 47 -98 110 -199 61 -96 110 -179 110 -185 0
6
+ -6 4 -12 8 -14 8 -3 112 -155 112 -163 0 -9 234 -372 253 -392 27 -30 77 -30
7
+ 104 0 21 24 191 292 217 344 16 31 15 34 -12 80 -25 41 -231 371 -331 528 -17
8
+ 27 -41 55 -54 62 -16 9 -87 12 -245 13 l-223 0 -24 -25z"/><path fill="#0079f5" d="M1490 1420 c6 -11 13 -20 16 -20 2 0 0 9 -6 20 -6 11 -13 20 -16 20
9
+ -2 0 0 -9 6 -20z M1570 1180 c-6 -11 -8 -20 -6 -20 3 0 10 9 16 20 6 11 8 20
10
+ 6 20 -3 0 -10 -9 -16 -20z M531 553 c7 -12 15 -20 18 -17 3 2 -3 12 -13 22
11
+ -17 16 -18 16 -5 -5z M1120 550 c6 -11 13 -20 16 -20 2 0 0 9 -6 20 -6 11 -13
12
+ 20 -16 20 -2 0 0 -9 6 -20z M1116 473 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3
13
+ 3 -9 -2 -12 -12z M838 113 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12
14
+ -5z"/><path fill="#006ad8" d="M1103 1483 c59 -2 155 -2 215 0 59 1 10 3 -108 3 -118 0 -167 -2
15
+ -107 -3z"/></g></svg>
@@ -0,0 +1,218 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
+ viewBox="0 0 30 30" style="enable-background:new 0 0 30 30;" xml:space="preserve">
4
+ <style type="text/css">
5
+ .st0{opacity:0.3;fill:#E2E4E7;}
6
+ .st1{opacity:0.8;fill:#E2E4E7;stroke:#FFFFFF;stroke-width:5;stroke-miterlimit:10;}
7
+ .st2{fill:url(#SVGID_1_);}
8
+ .st3{fill:none;stroke:#E0E4E9;stroke-width:0.25;stroke-miterlimit:10;}
9
+ .st4{fill:none;}
10
+ .st5{fill:#9DA1A5;}
11
+ .st6{fill-rule:evenodd;clip-rule:evenodd;fill:none;}
12
+ .st7{fill-rule:evenodd;clip-rule:evenodd;fill:#DFE2E7;}
13
+ .st8{fill-rule:evenodd;clip-rule:evenodd;fill:#CDD4DA;}
14
+ .st9{fill-rule:evenodd;clip-rule:evenodd;fill:#B3BCC7;}
15
+ .st10{fill-rule:evenodd;clip-rule:evenodd;fill:#9DAAB7;}
16
+ .st11{fill-rule:evenodd;clip-rule:evenodd;fill:#8698A8;}
17
+ .st12{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_2_);}
18
+ .st13{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_3_);}
19
+ .st14{fill:#1F63EC;}
20
+ .st15{fill:#2D2D2D;}
21
+ .st16{fill:none;stroke:#E0E4E9;stroke-width:0.5;stroke-miterlimit:10;}
22
+ .st17{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_4_);}
23
+ .st18{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_5_);}
24
+ .st19{fill:none;stroke:#677380;stroke-width:0.5;stroke-miterlimit:10;}
25
+ .st20{fill:none;stroke:url(#SVGID_6_);stroke-width:2;stroke-miterlimit:10;}
26
+ .st21{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_7_);}
27
+ .st22{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_8_);}
28
+ .st23{fill:#FFFFFF;}
29
+ .st24{fill-rule:evenodd;clip-rule:evenodd;fill:#2D2D2D;}
30
+ .st25{clip-path:url(#SVGID_10_);}
31
+ .st26{clip-path:url(#SVGID_12_);}
32
+ .st27{fill:url(#SVGID_13_);}
33
+ .st28{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_14_);}
34
+ .st29{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_15_);}
35
+ .st30{clip-path:url(#SVGID_17_);}
36
+ .st31{clip-path:url(#SVGID_19_);}
37
+ .st32{fill:url(#SVGID_20_);}
38
+ .st33{fill:none;stroke:url(#SVGID_21_);stroke-width:2;stroke-miterlimit:10;}
39
+ .st34{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_22_);}
40
+ .st35{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_23_);}
41
+ .st36{clip-path:url(#SVGID_25_);}
42
+ .st37{clip-path:url(#SVGID_27_);}
43
+ .st38{fill:url(#SVGID_28_);}
44
+ .st39{clip-path:url(#SVGID_30_);}
45
+ .st40{clip-path:url(#SVGID_32_);}
46
+ .st41{fill:url(#SVGID_33_);}
47
+ .st42{fill-rule:evenodd;clip-rule:evenodd;fill:#126EF6;}
48
+ .st43{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
49
+ .st44{clip-path:url(#SVGID_35_);}
50
+ .st45{clip-path:url(#SVGID_37_);}
51
+ .st46{fill:url(#SVGID_38_);}
52
+ .st47{fill-rule:evenodd;clip-rule:evenodd;fill:#9DA1A5;}
53
+ .st48{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_39_);}
54
+ .st49{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_40_);}
55
+ .st50{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_41_);}
56
+ .st51{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_42_);}
57
+ .st52{fill:none;stroke:url(#SVGID_43_);stroke-width:2;stroke-miterlimit:10;}
58
+ .st53{fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#E0E4E9;stroke-width:0.5;stroke-miterlimit:10;}
59
+ .st54{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_44_);}
60
+ .st55{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_45_);}
61
+ .st56{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_46_);}
62
+ .st57{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_47_);}
63
+ .st58{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_48_);}
64
+ .st59{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_49_);}
65
+ .st60{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_50_);}
66
+ .st61{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_51_);}
67
+ .st62{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_52_);}
68
+ .st63{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_53_);}
69
+ .st64{clip-path:url(#SVGID_55_);}
70
+ .st65{clip-path:url(#SVGID_57_);}
71
+ .st66{fill:url(#SVGID_58_);}
72
+ .st67{clip-path:url(#SVGID_60_);}
73
+ .st68{clip-path:url(#SVGID_62_);}
74
+ .st69{fill:url(#SVGID_63_);}
75
+ .st70{fill:none;stroke:url(#SVGID_64_);stroke-width:2;stroke-miterlimit:10;}
76
+ .st71{clip-path:url(#SVGID_66_);}
77
+ .st72{clip-path:url(#SVGID_68_);}
78
+ .st73{fill:url(#SVGID_69_);}
79
+ .st74{clip-path:url(#SVGID_71_);}
80
+ .st75{clip-path:url(#SVGID_73_);}
81
+ .st76{fill:url(#SVGID_74_);}
82
+ .st77{clip-path:url(#SVGID_76_);}
83
+ .st78{clip-path:url(#SVGID_78_);}
84
+ .st79{fill:url(#SVGID_79_);}
85
+ .st80{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_80_);}
86
+ .st81{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_81_);}
87
+ .st82{clip-path:url(#SVGID_83_);}
88
+ .st83{clip-path:url(#SVGID_85_);}
89
+ .st84{fill:url(#SVGID_86_);}
90
+ .st85{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_87_);}
91
+ .st86{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_88_);}
92
+ .st87{clip-path:url(#SVGID_90_);}
93
+ .st88{clip-path:url(#SVGID_92_);}
94
+ .st89{fill:url(#SVGID_93_);}
95
+ .st90{fill:none;stroke:url(#SVGID_94_);stroke-width:2;stroke-miterlimit:10;}
96
+ .st91{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_95_);}
97
+ .st92{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_96_);}
98
+ .st93{clip-path:url(#SVGID_98_);}
99
+ .st94{clip-path:url(#SVGID_100_);}
100
+ .st95{fill:url(#SVGID_101_);}
101
+ .st96{clip-path:url(#SVGID_103_);}
102
+ .st97{clip-path:url(#SVGID_105_);}
103
+ .st98{fill:url(#SVGID_106_);}
104
+ .st99{clip-path:url(#SVGID_108_);}
105
+ .st100{clip-path:url(#SVGID_110_);}
106
+ .st101{fill:url(#SVGID_111_);}
107
+ .st102{fill:#FFFFFF;stroke:#B3BCC7;stroke-width:0.275;stroke-miterlimit:10;}
108
+ .st103{clip-path:url(#SVGID_113_);}
109
+ .st104{fill:#FDD138;}
110
+ .st105{fill:#FCA62F;}
111
+ .st106{fill:#FB7927;}
112
+ .st107{fill:#F44B22;}
113
+ .st108{fill:#D81915;}
114
+ .st109{fill:#2D2D2D;stroke:#FFFFFF;stroke-width:0.3354;stroke-miterlimit:10;}
115
+ .st110{fill:none;stroke:#65727F;stroke-width:2;stroke-miterlimit:10;}
116
+ .st111{fill:none;stroke:#65727F;stroke-width:0.75;stroke-miterlimit:10;}
117
+ .st112{fill:url(#SVGID_114_);}
118
+ .st113{fill:#D06C50;}
119
+ .st114{fill:#2D2D2D;stroke:#B3BCC7;stroke-width:0.275;stroke-miterlimit:10;}
120
+ .st115{opacity:0.2;}
121
+ .st116{fill:none;stroke:#677380;stroke-width:0.3564;stroke-miterlimit:10;}
122
+ .st117{fill:none;stroke:#677380;stroke-width:0.3564;stroke-miterlimit:10;stroke-dasharray:1.0212,1.0212;}
123
+ .st118{fill:none;stroke:#677380;stroke-width:0.3564;stroke-miterlimit:10;stroke-dasharray:1.0205,1.0205;}
124
+ .st119{opacity:0.2;fill:none;}
125
+ .st120{fill:none;stroke:#677380;stroke-width:0.3689;stroke-miterlimit:10;}
126
+ .st121{fill:none;stroke:#677380;stroke-width:0.3689;stroke-miterlimit:10;stroke-dasharray:1.0509,1.0509;}
127
+ .st122{opacity:0.3;fill:#1F63EC;}
128
+ .st123{fill:#2D2D2D;stroke:#FFFFFF;stroke-width:0.3162;stroke-miterlimit:10;}
129
+ .st124{fill:#FFFFFF;stroke:#B3BCC7;stroke-width:0.3162;stroke-miterlimit:10;}
130
+ .st125{clip-path:url(#SVGID_118_);}
131
+ .st126{fill:url(#SVGID_119_);}
132
+ .st127{fill:none;stroke:#DFE2E7;stroke-width:0.75;stroke-miterlimit:10;}
133
+ .st128{fill:#9DA1A5;stroke:#FFFFFF;stroke-miterlimit:10;}
134
+ .st129{fill:url(#SVGID_120_);}
135
+ .st130{fill:none;stroke:#677380;stroke-width:0.75;stroke-miterlimit:10;}
136
+ .st131{opacity:0.4;}
137
+ .st132{clip-path:url(#SVGID_122_);}
138
+ .st133{clip-path:url(#SVGID_124_);}
139
+ .st134{fill:url(#SVGID_125_);}
140
+ .st135{fill:none;stroke:#8392A3;stroke-width:0.35;stroke-miterlimit:10;}
141
+ .st136{fill:none;stroke:#8392A3;stroke-width:0.35;stroke-miterlimit:10;stroke-dasharray:0.9951,0.9951;}
142
+ .st137{fill:none;stroke:#8392A3;stroke-width:0.35;stroke-miterlimit:10;stroke-dasharray:1.004,1.004;}
143
+ .st138{fill:none;stroke:url(#SVGID_126_);stroke-width:1.5;stroke-miterlimit:10;}
144
+ .st139{fill:url(#SVGID_127_);}
145
+ .st140{fill:none;stroke:#DDE0E4;stroke-width:0.35;stroke-miterlimit:10;}
146
+ .st141{fill:#2D2D2D;stroke:#A9B3BE;stroke-width:0.275;stroke-miterlimit:10;}
147
+ .st142{fill-rule:evenodd;clip-rule:evenodd;fill:#126EF4;}
148
+ .st143{fill:#FFFFFF;stroke:#B1BAC4;stroke-width:0.275;stroke-miterlimit:10;}
149
+ .st144{fill:#CE6C50;}
150
+ .st145{fill:#5B5B5B;}
151
+ .st146{fill:#8392A3;}
152
+ .st147{fill:none;stroke:url(#SVGID_128_);stroke-width:1.5;stroke-miterlimit:10;}
153
+ .st148{fill:url(#SVGID_129_);}
154
+ .st149{fill:none;stroke:#B5BDC4;stroke-width:0.7;stroke-miterlimit:10;}
155
+ .st150{opacity:0.6;fill:none;stroke:#78838E;stroke-width:0.35;stroke-miterlimit:10;}
156
+ .st151{opacity:0.2;fill:none;stroke:#8392A3;stroke-width:0.35;stroke-miterlimit:10;stroke-dasharray:1,1;}
157
+ .st152{fill:none;stroke:#DDE0E4;stroke-width:0.75;stroke-miterlimit:10;}
158
+ .st153{fill:none;stroke:#8392A3;stroke-width:0.5;stroke-miterlimit:10;}
159
+ .st154{opacity:0.2;fill:none;stroke:#677380;stroke-width:0.3564;stroke-miterlimit:10;stroke-dasharray:1.0182,1.0182;}
160
+ .st155{fill:none;stroke:#DDE0E4;stroke-width:0.765;stroke-miterlimit:10;}
161
+ .st156{fill:url(#SVGID_130_);}
162
+ .st157{fill:url(#SVGID_131_);}
163
+ .st158{fill:#B1BAC4;}
164
+ .st159{fill:#CBD1D8;}
165
+ .st160{fill:#0B1B2B;}
166
+ .st161{fill:#91D119;}
167
+ .st162{opacity:0.7;}
168
+ .st163{fill:#FFFFFF;stroke:#000000;stroke-width:0.4418;stroke-miterlimit:10;}
169
+ .st164{fill:none;stroke:#939CAA;stroke-width:0.2209;stroke-miterlimit:10;}
170
+ .st165{fill:none;stroke:#FFFFFF;stroke-width:3.0924;stroke-miterlimit:10;}
171
+ .st166{fill:url(#SVGID_132_);}
172
+ .st167{fill:none;stroke:url(#SVGID_133_);stroke-width:1.714;stroke-miterlimit:10;}
173
+ .st168{fill:url(#SVGID_134_);}
174
+ .st169{fill:url(#SVGID_135_);}
175
+ .st170{fill:url(#SVGID_136_);}
176
+ .st171{fill:url(#SVGID_137_);}
177
+ .st172{fill:url(#SVGID_138_);}
178
+ .st173{fill:url(#SVGID_139_);}
179
+ .st174{fill:url(#SVGID_140_);}
180
+ .st175{fill:url(#SVGID_141_);}
181
+ .st176{fill:url(#SVGID_142_);}
182
+ .st177{fill:url(#SVGID_143_);}
183
+ .st178{fill:url(#SVGID_144_);}
184
+ .st179{fill:none;stroke:#1F63EC;stroke-width:4;stroke-miterlimit:10;}
185
+ .st180{fill:none;stroke:#0B1B2B;stroke-width:4;stroke-miterlimit:10;}
186
+ .st181{fill:none;stroke:#677380;stroke-width:0.3989;stroke-miterlimit:10;}
187
+ .st182{fill:none;stroke:#677380;stroke-width:0.3989;stroke-miterlimit:10;stroke-dasharray:1.14,1.14;}
188
+ .st183{fill:#257AF1;}
189
+ .st184{opacity:0.3;fill:#FFFFFF;}
190
+ .st185{fill:none;stroke:#98A5B2;stroke-width:4;stroke-miterlimit:10;}
191
+ .st186{fill:none;stroke:#65727F;stroke-width:0.3989;stroke-miterlimit:10;}
192
+ .st187{fill:none;stroke:#65727F;stroke-width:0.3989;stroke-miterlimit:10;stroke-dasharray:1.14,1.14;}
193
+ .st188{fill:none;stroke:#DDDFE4;stroke-width:0.75;stroke-miterlimit:10;}
194
+ .st189{fill:#9A9EA2;}
195
+ .st190{fill-rule:evenodd;clip-rule:evenodd;fill:#3267AC;}
196
+ .st191{fill:#FFFFFF;stroke:#AFB8C3;stroke-width:0.275;stroke-miterlimit:10;}
197
+ .st192{fill:#C5694E;}
198
+ .st193{fill:#8192A2;}
199
+ .st194{fill:#2D2D2D;stroke:#FFFFFF;stroke-width:0.6317;stroke-miterlimit:10;}
200
+ </style>
201
+ <g id="图层_2">
202
+ </g>
203
+ <g id="图层_1">
204
+ <path class="st194" d="M24.51,28.51H5.49c-2.21,0-4-1.79-4-4V5.49c0-2.21,1.79-4,4-4h19.03c2.21,0,4,1.79,4,4v19.03
205
+ C28.51,26.72,26.72,28.51,24.51,28.51z"/>
206
+ <g>
207
+ <g>
208
+ <g>
209
+ <g>
210
+ <path class="st23" d="M15.47,7.1l-1.3,1.85c-0.2,0.29-0.54,0.47-0.9,0.47h-7.1V7.09C6.16,7.1,15.47,7.1,15.47,7.1z"/>
211
+ <polygon class="st23" points="24.3,7.1 13.14,22.91 5.7,22.91 16.86,7.1 "/>
212
+ <path class="st23" d="M14.53,22.91l1.31-1.86c0.2-0.29,0.54-0.47,0.9-0.47h7.09v2.33H14.53z"/>
213
+ </g>
214
+ </g>
215
+ </g>
216
+ </g>
217
+ </g>
218
+ </svg>