@api3/logos 0.2.12 → 0.2.14

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 (43) hide show
  1. package/dist/cjs/ApiProviderLogo.js +8 -5
  2. package/dist/cjs/SymbolLogo.js +4 -4
  3. package/dist/cjs/SymbolLogoMissing.json +1 -1
  4. package/dist/cjs/index.d.ts +2 -2
  5. package/dist/cjs/index.js +2 -2
  6. package/dist/esm/ApiProviderLogo.js +8 -5
  7. package/dist/esm/SymbolLogo.js +4 -4
  8. package/dist/esm/SymbolLogoMissing.json +1 -1
  9. package/dist/esm/index.d.ts +2 -2
  10. package/dist/esm/index.js +2 -2
  11. package/dist/logos/api-provider/Alchemy.svg +28 -0
  12. package/dist/logos/api-provider/{BlastApi.svg → Blastapi.svg} +2 -2
  13. package/dist/logos/api-provider/{CoinMetrics.svg → Coinmetrics.svg} +2 -2
  14. package/dist/logos/api-provider/Shiftmarkets.svg +15 -0
  15. package/dist/logos/symbol/Ape.svg +58 -51
  16. package/dist/logos/symbol/Astr.svg +109 -106
  17. package/dist/logos/symbol/Blast.svg +2 -3
  18. package/dist/logos/symbol/Blur.svg +12 -5
  19. package/dist/logos/symbol/Brett.svg +345 -0
  20. package/dist/logos/symbol/Cbbtc.svg +5 -0
  21. package/dist/logos/symbol/Cbeth.svg +18 -13
  22. package/dist/logos/symbol/Eure.svg +9 -4
  23. package/dist/logos/symbol/Gho.svg +17 -12
  24. package/dist/logos/symbol/Gns.svg +31 -26
  25. package/dist/logos/symbol/Kava.svg +10 -3
  26. package/dist/logos/symbol/Merl.svg +2 -3
  27. package/dist/logos/symbol/Meth.svg +16 -19
  28. package/dist/logos/symbol/Mnt.svg +10 -3
  29. package/dist/logos/symbol/Pyth.svg +16 -7
  30. package/dist/logos/symbol/Rdnt.svg +10 -5
  31. package/dist/logos/symbol/Render.svg +11 -4
  32. package/dist/logos/symbol/Reth.svg +48 -43
  33. package/dist/logos/symbol/Rseth.svg +22 -18
  34. package/dist/logos/symbol/Steth.svg +15 -10
  35. package/dist/logos/symbol/Sweth.svg +10 -5
  36. package/dist/logos/symbol/Tusd.svg +3 -3
  37. package/dist/logos/symbol/{UniEth.svg → Unieth.svg} +2 -2
  38. package/dist/logos/symbol/Usde.svg +5 -5
  39. package/dist/logos/symbol/{WeEth.svg → Weeth.svg} +4 -4
  40. package/dist/logos/symbol/Wusdm.svg +8 -7
  41. package/dist/logos/symbol/Xvs.svg +10 -15
  42. package/package.json +6 -5
  43. package/dist/logos/api-provider/ShiftMarkets.svg +0 -15
@@ -1,18 +1,19 @@
1
1
  const camelcase = require('camelcase');
2
2
  const ApiProviderNodary = require('../logos/api-provider/Nodary.svg');
3
- const ApiProviderCoinmetrics = require('../logos/api-provider/CoinMetrics.svg');
3
+ const ApiProviderCoinmetrics = require('../logos/api-provider/Coinmetrics.svg');
4
4
  const ApiProviderDxfeed = require('../logos/api-provider/Dxfeed.svg');
5
5
  const ApiProviderFinage = require('../logos/api-provider/Finage.svg');
6
6
  const ApiProviderKaiko = require('../logos/api-provider/Kaiko.svg');
7
7
  const ApiProviderNcfx = require('../logos/api-provider/Ncfx.svg');
8
8
  const ApiProviderTwelvedata = require('../logos/api-provider/Twelvedata.svg');
9
9
  const ApiProviderCoingecko = require('../logos/api-provider/Coingecko.svg');
10
+ const ApiProviderAlchemy = require('../logos/api-provider/Alchemy.svg');
10
11
  const ApiProviderAnkr = require('../logos/api-provider/Ankr.svg');
12
+ const ApiProviderBlastapi = require('../logos/api-provider/Blastapi.svg');
11
13
  const ApiProviderDrpc = require('../logos/api-provider/Drpc.svg');
12
14
  const ApiProviderCoinpaprika = require('../logos/api-provider/Coinpaprika.svg');
13
15
  const ApiProviderBlocksize = require('../logos/api-provider/Blocksize.svg');
14
- const ApiProviderBlastapi = require('../logos/api-provider/BlastApi.svg');
15
- const ApiProviderShiftmarkets = require('../logos/api-provider/ShiftMarkets.svg');
16
+ const ApiProviderShiftmarkets = require('../logos/api-provider/Shiftmarkets.svg');
16
17
  const ApiProviderPlaceholder = require('../logos/api-provider/Placeholder.svg');
17
18
  function sanitizeName(id) {
18
19
  return camelcase(id, {
@@ -40,16 +41,18 @@ function ApiProviderLogo(id, light = false) {
40
41
  return ApiProviderTwelvedata;
41
42
  case "coingecko":
42
43
  return ApiProviderCoingecko;
44
+ case "alchemy":
45
+ return ApiProviderAlchemy;
43
46
  case "ankr":
44
47
  return ApiProviderAnkr;
48
+ case "blastapi":
49
+ return ApiProviderBlastapi;
45
50
  case "drpc":
46
51
  return ApiProviderDrpc;
47
52
  case "coinpaprika":
48
53
  return ApiProviderCoinpaprika;
49
54
  case "blocksize":
50
55
  return ApiProviderBlocksize;
51
- case "blastapi":
52
- return ApiProviderBlastapi;
53
56
  case "shiftmarkets":
54
57
  return ApiProviderShiftmarkets;
55
58
  default:
@@ -32,10 +32,10 @@ const SymbolBlast = require('../logos/symbol/Blast.svg');
32
32
  const SymbolBlur = require('../logos/symbol/Blur.svg');
33
33
  const SymbolBnb = require('../logos/symbol/Bnb.svg');
34
34
  const SymbolBnBx = require('../logos/symbol/Bnbx.svg');
35
- const SymbolBrett = require('../logos/symbol/Placeholder.svg');
35
+ const SymbolBrett = require('../logos/symbol/Brett.svg');
36
36
  const SymbolBtc = require('../logos/symbol/Btc.svg');
37
37
  const SymbolCake = require('../logos/symbol/Cake.svg');
38
- const SymbolCbBtc = require('../logos/symbol/Placeholder.svg');
38
+ const SymbolCbBtc = require('../logos/symbol/Cbbtc.svg');
39
39
  const SymbolCbEth = require('../logos/symbol/Cbeth.svg');
40
40
  const SymbolCelo = require('../logos/symbol/Celo.svg');
41
41
  const SymbolCfx = require('../logos/symbol/Cfx.svg');
@@ -173,7 +173,7 @@ const SymbolUltraEtHs = require('../logos/symbol/UltraEtHs.svg');
173
173
  const SymbolWstEth = require('../logos/symbol/Wsteth.svg');
174
174
  const SymbolUma = require('../logos/symbol/Uma.svg');
175
175
  const SymbolUni = require('../logos/symbol/Uni.svg');
176
- const SymbolUniEth = require('../logos/symbol/UniEth.svg');
176
+ const SymbolUniEth = require('../logos/symbol/Unieth.svg');
177
177
  const SymbolUsdb = require('../logos/symbol/Usdb.svg');
178
178
  const SymbolUsdc = require('../logos/symbol/Usdc.svg');
179
179
  const SymbolUsdp = require('../logos/symbol/Usdp.svg');
@@ -181,7 +181,7 @@ const SymbolUsdt = require('../logos/symbol/Usdt.svg');
181
181
  const SymbolUsdy = require('../logos/symbol/Usdy.svg');
182
182
  const SymbolW = require('../logos/symbol/W.svg');
183
183
  const SymbolWBeth = require('../logos/symbol/Wbeth.svg');
184
- const SymbolWeEth = require('../logos/symbol/WeEth.svg');
184
+ const SymbolWeEth = require('../logos/symbol/Weeth.svg');
185
185
  const SymbolWeEtHs = require('../logos/symbol/Weeths.svg');
186
186
  const SymbolWld = require('../logos/symbol/Wld.svg');
187
187
  const SymbolWoo = require('../logos/symbol/Woo.svg');
@@ -1 +1 @@
1
- ["BRETT","cbBTC"]
1
+ []
@@ -1,6 +1,6 @@
1
- export { default as ChainLogo } from './ChainLogo.js';
2
- export { default as ChainLogoMissing } from './ChainLogoMissing.json';
3
1
  export { default as SymbolLogo } from './SymbolLogo.js';
4
2
  export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
3
+ export { default as ChainLogo } from './ChainLogo.js';
4
+ export { default as ChainLogoMissing } from './ChainLogoMissing.json';
5
5
  export { default as ApiProviderLogo } from './ApiProviderLogo.js';
6
6
  export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
package/dist/cjs/index.js CHANGED
@@ -1,6 +1,6 @@
1
- module.exports.ChainLogo = require('./ChainLogo.js');
2
- module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
3
1
  module.exports.SymbolLogo = require('./SymbolLogo.js');
4
2
  module.exports.SymbolLogoMissing = require('./SymbolLogoMissing.json');
3
+ module.exports.ChainLogo = require('./ChainLogo.js');
4
+ module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
5
5
  module.exports.ApiProviderLogo = require('./ApiProviderLogo.js');
6
6
  module.exports.ApiProviderLogoMissing = require('./ApiProviderLogoMissing.json');
@@ -1,18 +1,19 @@
1
1
  import camelcase from 'camelcase';
2
2
  import ApiProviderNodary from '../logos/api-provider/Nodary.svg';
3
- import ApiProviderCoinmetrics from '../logos/api-provider/CoinMetrics.svg';
3
+ import ApiProviderCoinmetrics from '../logos/api-provider/Coinmetrics.svg';
4
4
  import ApiProviderDxfeed from '../logos/api-provider/Dxfeed.svg';
5
5
  import ApiProviderFinage from '../logos/api-provider/Finage.svg';
6
6
  import ApiProviderKaiko from '../logos/api-provider/Kaiko.svg';
7
7
  import ApiProviderNcfx from '../logos/api-provider/Ncfx.svg';
8
8
  import ApiProviderTwelvedata from '../logos/api-provider/Twelvedata.svg';
9
9
  import ApiProviderCoingecko from '../logos/api-provider/Coingecko.svg';
10
+ import ApiProviderAlchemy from '../logos/api-provider/Alchemy.svg';
10
11
  import ApiProviderAnkr from '../logos/api-provider/Ankr.svg';
12
+ import ApiProviderBlastapi from '../logos/api-provider/Blastapi.svg';
11
13
  import ApiProviderDrpc from '../logos/api-provider/Drpc.svg';
12
14
  import ApiProviderCoinpaprika from '../logos/api-provider/Coinpaprika.svg';
13
15
  import ApiProviderBlocksize from '../logos/api-provider/Blocksize.svg';
14
- import ApiProviderBlastapi from '../logos/api-provider/BlastApi.svg';
15
- import ApiProviderShiftmarkets from '../logos/api-provider/ShiftMarkets.svg';
16
+ import ApiProviderShiftmarkets from '../logos/api-provider/Shiftmarkets.svg';
16
17
  import ApiProviderPlaceholder from '../logos/api-provider/Placeholder.svg';
17
18
  function sanitizeName(id) {
18
19
  return camelcase(id, {
@@ -40,16 +41,18 @@ function ApiProviderLogo(id, light = false) {
40
41
  return ApiProviderTwelvedata;
41
42
  case "coingecko":
42
43
  return ApiProviderCoingecko;
44
+ case "alchemy":
45
+ return ApiProviderAlchemy;
43
46
  case "ankr":
44
47
  return ApiProviderAnkr;
48
+ case "blastapi":
49
+ return ApiProviderBlastapi;
45
50
  case "drpc":
46
51
  return ApiProviderDrpc;
47
52
  case "coinpaprika":
48
53
  return ApiProviderCoinpaprika;
49
54
  case "blocksize":
50
55
  return ApiProviderBlocksize;
51
- case "blastapi":
52
- return ApiProviderBlastapi;
53
56
  case "shiftmarkets":
54
57
  return ApiProviderShiftmarkets;
55
58
  default:
@@ -32,10 +32,10 @@ import SymbolBlast from '../logos/symbol/Blast.svg';
32
32
  import SymbolBlur from '../logos/symbol/Blur.svg';
33
33
  import SymbolBnb from '../logos/symbol/Bnb.svg';
34
34
  import SymbolBnBx from '../logos/symbol/Bnbx.svg';
35
- import SymbolBrett from '../logos/symbol/Placeholder.svg';
35
+ import SymbolBrett from '../logos/symbol/Brett.svg';
36
36
  import SymbolBtc from '../logos/symbol/Btc.svg';
37
37
  import SymbolCake from '../logos/symbol/Cake.svg';
38
- import SymbolCbBtc from '../logos/symbol/Placeholder.svg';
38
+ import SymbolCbBtc from '../logos/symbol/Cbbtc.svg';
39
39
  import SymbolCbEth from '../logos/symbol/Cbeth.svg';
40
40
  import SymbolCelo from '../logos/symbol/Celo.svg';
41
41
  import SymbolCfx from '../logos/symbol/Cfx.svg';
@@ -173,7 +173,7 @@ import SymbolUltraEtHs from '../logos/symbol/UltraEtHs.svg';
173
173
  import SymbolWstEth from '../logos/symbol/Wsteth.svg';
174
174
  import SymbolUma from '../logos/symbol/Uma.svg';
175
175
  import SymbolUni from '../logos/symbol/Uni.svg';
176
- import SymbolUniEth from '../logos/symbol/UniEth.svg';
176
+ import SymbolUniEth from '../logos/symbol/Unieth.svg';
177
177
  import SymbolUsdb from '../logos/symbol/Usdb.svg';
178
178
  import SymbolUsdc from '../logos/symbol/Usdc.svg';
179
179
  import SymbolUsdp from '../logos/symbol/Usdp.svg';
@@ -181,7 +181,7 @@ import SymbolUsdt from '../logos/symbol/Usdt.svg';
181
181
  import SymbolUsdy from '../logos/symbol/Usdy.svg';
182
182
  import SymbolW from '../logos/symbol/W.svg';
183
183
  import SymbolWBeth from '../logos/symbol/Wbeth.svg';
184
- import SymbolWeEth from '../logos/symbol/WeEth.svg';
184
+ import SymbolWeEth from '../logos/symbol/Weeth.svg';
185
185
  import SymbolWeEtHs from '../logos/symbol/Weeths.svg';
186
186
  import SymbolWld from '../logos/symbol/Wld.svg';
187
187
  import SymbolWoo from '../logos/symbol/Woo.svg';
@@ -1 +1 @@
1
- ["BRETT","cbBTC"]
1
+ []
@@ -1,6 +1,6 @@
1
+ export { default as SymbolLogo } from './SymbolLogo.js';
2
+ export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
1
3
  export { default as ApiProviderLogo } from './ApiProviderLogo.js';
2
4
  export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
3
5
  export { default as ChainLogo } from './ChainLogo.js';
4
6
  export { default as ChainLogoMissing } from './ChainLogoMissing.json';
5
- export { default as SymbolLogo } from './SymbolLogo.js';
6
- export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
package/dist/esm/index.js CHANGED
@@ -1,6 +1,6 @@
1
+ export { default as SymbolLogo } from './SymbolLogo.js';
2
+ export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
1
3
  export { default as ApiProviderLogo } from './ApiProviderLogo.js';
2
4
  export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
3
5
  export { default as ChainLogo } from './ChainLogo.js';
4
6
  export { default as ChainLogoMissing } from './ChainLogoMissing.json';
5
- export { default as SymbolLogo } from './SymbolLogo.js';
6
- export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
@@ -0,0 +1,28 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
2
+ <g clip-path="url(#alchemy_svg__clip0_5441_41561)">
3
+ <rect width="32" height="32" fill="white" rx="16"/>
4
+ <path fill="url(#alchemy_svg__paint0_radial_5441_41561)" d="M22.4754 17.0825L16.3019 6.60148C16.272 6.54972 16.2287 6.50661 16.1764 6.47649C16.1241 6.44638 16.0646 6.43032 16.0039 6.42994C15.9433 6.42956 15.8836 6.44487 15.8309 6.47433C15.7782 6.50379 15.7343 6.54635 15.7038 6.59773L13.8549 9.7383C13.7943 9.8411 13.7625 9.95772 13.7625 10.0764C13.7625 10.1951 13.7943 10.3117 13.8549 10.4145L17.8804 17.2521C17.941 17.355 18.0282 17.4404 18.1332 17.4998C18.2382 17.5591 18.3573 17.5903 18.4785 17.5902H22.1763C22.2368 17.59 22.2963 17.5743 22.3486 17.5445C22.401 17.5148 22.4445 17.4721 22.4748 17.4207C22.505 17.3693 22.5211 17.311 22.5212 17.2517C22.5212 17.1923 22.5055 17.134 22.4754 17.0825Z"/>
5
+ <path fill="url(#alchemy_svg__paint1_radial_5441_41561)" d="M6.29309 22.5605L12.4665 12.0795C12.4968 12.0281 12.5404 11.9855 12.5928 11.9559C12.6452 11.9262 12.7046 11.9106 12.7651 11.9106C12.8256 11.9106 12.8851 11.9262 12.9375 11.9559C12.9899 11.9855 13.0334 12.0281 13.0637 12.0795L14.9136 15.2172C14.9741 15.3202 15.006 15.437 15.006 15.5558C15.006 15.6747 14.9741 15.7915 14.9136 15.8944L10.8881 22.732C10.8277 22.8348 10.7407 22.9203 10.6358 22.9796C10.531 23.039 10.412 23.0702 10.2909 23.0701H6.59216C6.53123 23.0704 6.47131 23.0548 6.41848 23.0251C6.36566 22.9953 6.32183 22.9523 6.29144 22.9006C6.26106 22.8488 6.2452 22.7901 6.24549 22.7304C6.24578 22.6706 6.2622 22.6121 6.29309 22.5605Z"/>
6
+ <path fill="url(#alchemy_svg__paint2_radial_5441_41561)" d="M13.063 23.0676H25.4099C25.4705 23.0676 25.5299 23.0519 25.5824 23.0221C25.6348 22.9924 25.6783 22.9496 25.7085 22.8982C25.7387 22.8468 25.7546 22.7884 25.7545 22.7291C25.7544 22.6696 25.7384 22.6113 25.708 22.56L23.861 19.4204C23.8004 19.3174 23.7132 19.232 23.6082 19.1727C23.5032 19.1133 23.3841 19.0822 23.2629 19.0823H15.2119C15.0907 19.0822 14.9716 19.1133 14.8666 19.1727C14.7616 19.232 14.6744 19.3174 14.6138 19.4204L12.7649 22.56C12.7345 22.6113 12.7185 22.6696 12.7184 22.7291C12.7183 22.7884 12.7342 22.8468 12.7644 22.8982C12.7946 22.9496 12.8381 22.9924 12.8905 23.0221C12.9429 23.0519 13.0024 23.0676 13.063 23.0676Z"/>
7
+ </g>
8
+ <defs>
9
+ <radialGradient id="alchemy_svg__paint0_radial_5441_41561" cx="0" cy="0" r="1" gradientTransform="translate(16.5814 6.42993) rotate(95.3323) scale(16.0651 21.6908)" gradientUnits="userSpaceOnUse">
10
+ <stop stop-color="#05D5FF"/>
11
+ <stop offset="0.770833" stop-color="#363FF9"/>
12
+ <stop offset="1" stop-color="#5533FF"/>
13
+ </radialGradient>
14
+ <radialGradient id="alchemy_svg__paint1_radial_5441_41561" cx="0" cy="0" r="1" gradientTransform="translate(16.5813 6.43016) rotate(95.3323) scale(16.0651 21.6908)" gradientUnits="userSpaceOnUse">
15
+ <stop stop-color="#05D5FF"/>
16
+ <stop offset="0.770833" stop-color="#363FF9"/>
17
+ <stop offset="1" stop-color="#5533FF"/>
18
+ </radialGradient>
19
+ <radialGradient id="alchemy_svg__paint2_radial_5441_41561" cx="0" cy="0" r="1" gradientTransform="translate(16.5815 6.42997) rotate(95.3323) scale(16.0651 21.6908)" gradientUnits="userSpaceOnUse">
20
+ <stop stop-color="#05D5FF"/>
21
+ <stop offset="0.770833" stop-color="#363FF9"/>
22
+ <stop offset="1" stop-color="#5533FF"/>
23
+ </radialGradient>
24
+ <clipPath id="alchemy_svg__clip0_5441_41561">
25
+ <rect width="32" height="32" fill="white" rx="16"/>
26
+ </clipPath>
27
+ </defs>
28
+ </svg>
@@ -1,12 +1,12 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
2
- <g clip-path="url(#blast_api_svg__clip0_8596_191465)">
2
+ <g clip-path="url(#blastapi_svg__clip0_8596_191465)">
3
3
  <rect width="32" height="32" fill="white" rx="16"/>
4
4
  <path fill="black" d="M26.1162 19.1084C26.0382 21.4463 25.0949 23.672 23.4689 25.3538C21.843 27.0356 19.6504 28.0536 17.3164 28.2104C14.9825 28.3672 12.6734 27.6516 10.8372 26.2023C9.00092 24.7532 7.76832 22.6736 7.37842 20.3671H9.85247C10.0552 20.3664 10.2534 20.427 10.4209 20.5412C10.5884 20.6553 10.7174 20.8175 10.7909 21.0064C11.16 21.9921 11.7704 22.8695 12.5664 23.5581C13.3624 24.2468 14.3184 24.7248 15.3469 24.9482C16.3754 25.1717 17.4435 25.1336 18.4535 24.8373C19.4635 24.5412 20.383 23.9963 21.1279 23.2526C21.8726 22.509 22.419 21.5903 22.7168 20.5808C23.0148 19.5714 23.0546 18.5032 22.8327 17.4743C22.6108 16.4455 22.1344 15.4888 21.447 14.6917C20.7596 13.8946 19.8832 13.2828 18.8981 12.9121C18.7071 12.8383 18.543 12.7081 18.4278 12.5388C18.3126 12.3695 18.2515 12.1691 18.2529 11.9643V9.48438C20.5065 9.86505 22.5454 11.0503 23.9915 12.8201C25.4375 14.5899 26.1924 16.8242 26.1162 19.1084Z"/>
5
5
  <path fill="#574B90" d="M16.6875 22.5332C18.7575 22.5332 20.4355 20.8551 20.4355 18.7852C20.4355 16.7152 18.7575 15.0371 16.6875 15.0371C14.6175 15.0371 12.9395 16.7152 12.9395 18.7852C12.9395 20.8551 14.6175 22.5332 16.6875 22.5332Z"/>
6
6
  <path fill="#574B90" d="M7.37842 17.0725V6.88422C7.37873 6.32243 7.60204 5.78374 7.99928 5.38649C8.39653 4.98924 8.93523 4.76594 9.49702 4.76562C9.76325 4.76624 10.0184 4.8722 10.2068 5.06035C10.3952 5.2485 10.5014 5.50355 10.5024 5.76979V11.661C11.809 10.525 13.404 9.772 15.1114 9.48496V11.9613C15.1098 12.1686 15.0453 12.3705 14.9263 12.5402C14.8072 12.7099 14.6394 12.8394 14.4451 12.9116C13.6368 13.2201 12.9008 13.6918 12.2828 14.2973C11.6648 14.9028 11.1781 15.6291 10.8531 16.4308C10.781 16.611 10.6589 16.7669 10.5012 16.8801C10.3311 17.0052 10.1257 17.0729 9.91463 17.0736L7.37842 17.0725Z"/>
7
7
  </g>
8
8
  <defs>
9
- <clipPath id="blast_api_svg__clip0_8596_191465">
9
+ <clipPath id="blastapi_svg__clip0_8596_191465">
10
10
  <rect width="32" height="32" fill="white" rx="16"/>
11
11
  </clipPath>
12
12
  </defs>
@@ -1,12 +1,12 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
2
- <g clip-path="url(#coin-metrics_svg__clip0_8596_191369)">
2
+ <g clip-path="url(#coinmetrics_svg__clip0_8596_191369)">
3
3
  <rect width="32" height="32" fill="white" rx="16"/>
4
4
  <path fill="#292D3E" d="M7.07158 20.0394C5.89653 18.9578 5.30901 17.6125 5.30901 16.0036C5.30901 14.4228 5.88245 13.0839 7.03062 12.0023C8.17815 10.9136 9.59576 10.3658 11.2687 10.3658C12.0227 10.3658 12.8175 10.4976 13.647 10.7472L14.1654 8.77088C13.1491 8.47263 12.1539 8.32031 11.1785 8.32031C8.98008 8.32031 7.09974 9.06912 5.53685 10.5674C3.98164 12.072 3.2002 13.8749 3.2002 15.9767C3.2002 18.1194 3.99508 19.9498 5.57845 21.4686C6.91286 22.7447 8.47511 23.4724 10.2658 23.6804L10.8054 21.6279C9.33208 21.5025 8.08791 20.9751 7.07158 20.0394Z"/>
5
5
  <path fill="#292D3E" d="M24.9006 8.77734H24.7764L20.3591 19.3873L17.8977 13.507L17.1162 16.4888L20.1306 23.6798H20.601L24.4795 14.4638L26.8712 23.6798H27.611H28.8001L24.9006 8.77734Z"/>
6
6
  <path fill="#757CA1" d="M11.8906 23.6798H13.7921L17.0132 11.3918L15.9143 8.77734H15.7966L11.8906 23.6798Z"/>
7
7
  </g>
8
8
  <defs>
9
- <clipPath id="coin-metrics_svg__clip0_8596_191369">
9
+ <clipPath id="coinmetrics_svg__clip0_8596_191369">
10
10
  <rect width="32" height="32" fill="white" rx="16"/>
11
11
  </clipPath>
12
12
  </defs>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32">
2
+ <g clip-path="url(#shiftmarkets_svg__clip0_5216_27892)">
3
+ <rect width="32" height="32" fill="white" rx="16"/>
4
+ <path fill="url(#shiftmarkets_svg__paint0_linear_5216_27892)" d="M29.1366 11.1277L24.8362 21.1653C24.7463 21.3753 24.5967 21.5542 24.406 21.6799C24.2153 21.8056 23.9918 21.8726 23.7634 21.8725H17.3574L21.9054 11.1277H29.1366ZM14.6166 11.1277L10.0698 21.8725H15.3806L19.9282 11.1277H14.6166ZM8.6102 11.8405L4.3634 21.8725H7.979L12.527 11.1277H9.6834C9.45395 11.1276 9.22958 11.1952 9.03834 11.322C8.8471 11.4488 8.69748 11.6291 8.6082 11.8405H8.6102Z"/>
5
+ </g>
6
+ <defs>
7
+ <linearGradient id="shiftmarkets_svg__paint0_linear_5216_27892" x1="16.75" x2="16.75" y1="16.5001" y2="20.9699" gradientUnits="userSpaceOnUse">
8
+ <stop stop-color="#3DEFB2"/>
9
+ <stop offset="1" stop-color="#6BB0FF"/>
10
+ </linearGradient>
11
+ <clipPath id="shiftmarkets_svg__clip0_5216_27892">
12
+ <rect width="32" height="32" fill="white" rx="16"/>
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
@@ -1,64 +1,71 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 36 36">
2
- <g clip-path="url(#ape_svg__a)">
3
- <g clip-path="url(#ape_svg__b)">
4
- <path fill="url(#ape_svg__c)" d="M36 18c0-9.95-8.069-18-18-18C8.05 0 0 8.05 0 18c0 9.931 8.05 18 18 18 9.931 0 18-8.069 18-18Z"/>
5
- <path fill="#F3F3F3" d="M30.326 12.976c-.077.447-.155.66-.271.893-.117.271-.233.562-.35 1.183-.038.233-.077.427-.096.582v.02c-.04.251-.059.426-.156.717-.077.252-.213.66-.543 1.086-.271.35-.717.95-1.319 1.028-.058 0-.155 0-.213-.02-1.707-.872-3.162-1.512-3.666-1.648-.582-.175-.504-1.455-.446-2.58.039-.504.058-.989.039-1.396-.078-1.436-.33-2.987-1.572-3.744-.736-.446-1.706-.582-2.618-.582.175-.077.35-.194.563-.31.543-.31 1.202-.698 1.881-.776.213-.02.427-.039.64-.078 1.338-.155 2.502-.29 3.724.136.563.194 1.688.815 1.979 1.416.213.408.562.737 1.241 1.377.369.33.601.524.776.68.252.193.29.251.368.387.233.466.156.95.04 1.63ZM24.146 18.86c.077.02.116.117.058.194-.175.272-.388.66-.64 1.106-.116.213-.233.427-.33.582-.33.562-.349 1.047-.368 1.416-.02.407-.04.581-.291.737-.194.136-.408.174-1.804.388-.252.038-.35.077-.446.135-.02.02-.058.02-.078.04-.078.038-.155-.04-.155-.117.02-.194.02-.446.02-.776v-.058c0-.272 0-.505-.02-.68-.02-.348-.02-.503.078-.659.116-.194.213-.252.349-.349.213-.136.504-.31.911-.892.233-.31.272-.485.31-.62.02-.059.02-.078.195-.214.174-.136.737-.563 1.454-.446.233.039.485.116.757.213ZM18.571 25.308c-.038.039-.058.058-.116.058-.155 0-.252-.039-.31-.116-.136-.175-.117-.524-.097-.737l.6-.156c.04.33.06.776-.077.95ZM18.614 23.163c-.02.077-.02.174-.02.29v.447c-.193.058-.349.058-.543.058v-.505c0-.116 0-.29.02-.349.058 0 .116-.019.174-.038.117-.02.291-.059.388-.04 0 .04 0 .098-.019.137ZM17.53 25.13c-.02.311-.117.68-.408.738-.136.02-.194-.02-.233-.058-.194-.175-.213-.718-.194-1.106.136 0 .291-.02.485-.058.116-.02.233-.058.33-.078.02.155.039.35.02.563ZM17.39 24.035l-.64.233c.04-.252.078-.602.098-.834.02-.155.058-.214.077-.233 0 0 .02-.02.04-.02h.038l.407-.019c-.02.194-.02.62-.02.873ZM16.342 23.843c-.039.096-.077.368-.097.562l-.795-.02c.039-.252.116-.504.175-.698.077-.194.135-.349.213-.388.078-.038.252-.058.368.04.175.116.214.29.136.504ZM16.056 26.285c-.058.078-.135.136-.213.136-.097.02-.155-.02-.213-.058-.252-.233-.233-.99-.214-1.358.33-.078.699-.136.873-.155 0 .29.02 1.086-.233 1.435ZM15.004 24.344a1.7 1.7 0 0 0-.097.29c-.097.04-.388 0-.679-.058l.194-1.26c.33-.097.718-.117.795-.02.136.136-.116.776-.213 1.048ZM14.638 26.481c-.155.194-.388.291-.718.272-.232 0-.31-.097-.349-.155-.175-.291 0-.97.175-1.397l1.086.058c.02.078.02.175.02.272.019.33-.02.718-.214.95Z"/>
6
- <path fill="#F3F3F3" d="M23.633 17.319c-.989-.272-.892-1.707-.814-3.104.019-.485.058-.95.038-1.338-.077-1.3-.29-2.715-1.338-3.356-1.125-.678-2.968-.523-4.093-.387-.407.116-.795.213-1.105.194-.66-.04-1.184-.31-1.649-.563-.35-.194-.66-.369-.97-.369h-.039c-.873.059-1.28.272-1.648.602-.097.077-.214.31-.582 1.377-.194.543-.214.834-.252 1.105-.04.253-.059.524-.194.932a7.852 7.852 0 0 0-.233.737c-.175.6-.33 1.086-.757 1.668-.058.058-.116.174-.194.271-.097.155-.213.35-.388.563-.116.155-.368.737-.349.911.02.291.117.466.214.66.097.194.232.427.252.756v.059c.039.504-.039.756-.99 1.61A10.425 10.425 0 0 0 7.205 21.1c-.02.039 0 .078.058.078h.194c.233.02.466.116.621.29.02.04.078.04.117.02.155-.058.33-.058.484-.039.194.02.408.078.544.214a.15.15 0 0 0 .155.038.828.828 0 0 1 .485.02.69.69 0 0 1 .31.213.206.206 0 0 0 .233.04c.039-.02.097-.06.155-.079.213-.077.446-.038.64.04.097.038.194.058.29.135a.932.932 0 0 1 .33.446c.04.097.175.136.253.058.155-.116.271-.135.388-.097.058.02.097.059.136.117.058.077.155.155.232.116.33-.097.718-.039 1.009.117.097.058.213.135.272.252v-.058c0-.02.019-.04.038-.059l.059-.02c.155-.057.97-.29 1.28.04.019.02.038.02.058 0 .039-.04.077-.078.097-.078.213-.116.562-.136.795.078.039.038.116.02.155-.02a.151.151 0 0 1 .078-.077c.077-.078.194-.097.31-.097l.446-.02c.117 0 .466-.038.563-.058h.02c.038 0 .096-.02.154-.039.214-.038.466-.097.66 0s.174.31.155.505c0 .077-.02.155-.02.232v.117c0 .174 0 .33-.019.446l.02.097v.02c.019.077.116.135.174.077.155-.097.31-.213.369-.291v-.02c0-.019.02-.058.039-.135.019-.175.058-.505.058-1.183v-.078c0-.252 0-.465-.02-.64-.02-.369-.038-.66.155-.95.175-.291.35-.389.524-.505.194-.116.408-.252.776-.756.175-.253.194-.35.213-.427.04-.194.097-.31.388-.504.233-.175.912-.699 1.843-.543.31.058.795.213 1.3.407.019 0 .038.02.058.02h.02c.445.174.853.368 1.144.523.058.039.135.02.194-.039.097-.116.194-.174.29-.252.04-.02.078-.039.097-.058.02 0 .02-.02.02-.02.077-.058.077-.213-.02-.252a19.018 19.018 0 0 0-2.948-1.144Zm-9.349.29c-.31 1.32-2.366 2.794-3.297 2.794h-.059c-.019 0-.038 0-.058-.02h-.038a1.55 1.55 0 0 1-.582-.349 1.017 1.017 0 0 1-.253-.407c0-.02-.019-.058-.019-.078-.058-.232-.116-.504.078-.97.019-.058.058-.116.077-.174 0-.02.02-.039.02-.058.019-.058.038-.097.058-.136.02-.077.058-.136.077-.174 0-.02.02-.04.02-.059.058-.155.058-.213.077-.271 0-.039.02-.117.04-.194.057-.252.096-.466.115-.64.04-.33.098-.62.272-.893.039-.038.058-.077.097-.116l.039-.039.039-.038c.038-.04.097-.059.135-.078.02 0 .04-.02.059-.02.038-.019.077-.019.116-.038a2.01 2.01 0 0 1 .601-.02c.252.02.485.059.68.117.174.039.329.097.445.155.02 0 .02.02.04.02.018.019.038.019.077.038.038.02.058.02.097.039l.116.058.039.02c.136.058.271.135.368.213.059.039.097.078.136.116.02.02.039.02.039.04.02.018.02.018.039.038.407.349.388.834.31 1.125Zm.97-5.023-.039.233c-.097.543-.31 1.28-1.086 1.474-.757.175-.931.213-1.455.252h-.039c-.388 0-1.144-.252-1.28-.853-.077-.388.097-.68.369-1.145.038-.077.097-.155.155-.252.388-.64.524-1.105.64-1.474.116-.368.213-.66.466-.912.058-.058.116-.116.193-.155.04-.039.097-.058.156-.097.077-.039.155-.058.232-.097.175-.058.369-.077.543-.077.369 0 .738.097.99.31.116.097.29.272.388.834.038.291-.04.815-.233 1.96Zm5.567 1.552c-.272.465-.408.717-.64.912-.466.387-.99.465-1.436.465-.31 0-.582-.058-.756-.078-.466-.077-1.3-.232-1.59-.911-.059-.136-.059-.214-.059-.33 0-.097 0-.29-.058-.698v-.02a2.631 2.631 0 0 1 0-.678v-.04c.155-.814.213-.93.233-1.008a.32.32 0 0 1 .446-.136c.155.078.213.272.155.427-.02.039-.058.213-.194.854v.038c-.039.175-.02.31 0 .485v.02c.058.465.058.66.058.775v.078c.058.136.175.213.31.291.098.039.195-.039.175-.136-.136-.718-.136-1.552.136-2.075.097-.175.252-.446.407-.718a.147.147 0 0 0 .039-.077c.02-.02.02-.04.039-.059.077-.116.136-.213.194-.31 0-.02.02-.02.02-.039l.018-.02c.02-.019.02-.038.04-.057 0 0 0-.02.019-.02l.02-.02c0-.019.019-.019.019-.038.058-.078.116-.155.155-.233.077-.097-.02-.213-.117-.174-.271.116-.446.252-.485.271a.32.32 0 0 1-.465-.058.32.32 0 0 1 .058-.466c.175-.135 1.067-.775 2.134-.484.775.213 1.163.814 1.319 1.028.116.174.504.717.485 1.493 0 .563-.233.99-.68 1.746Z"/>
7
- <path fill="#F3F3F3" d="M13.884 10.154c-.058.136-.117.291-.194.466-.155.407-.35.873-.446 1.047a5.786 5.786 0 0 1-.369.62c-.116.175-.194.311-.271.505-.117.33-.136.699-.059 1.106-.213-.02-.543-.155-.582-.35-.019-.135.059-.27.292-.678.038-.078.096-.175.155-.252a6.972 6.972 0 0 0 .698-1.61c.136-.408.194-.582.407-.737.136-.059.252-.097.369-.117ZM13.476 24.802c-.233.466-.504.893-.679 1.106-.155-.388-.407-1.3-.33-2.017v-.058c.02-.233.078-.427.194-.602.078-.116.272-.174.485-.174.155 0 .33.038.485.116.078.039.194.136.194.388.039.35-.136.815-.349 1.241Z"/>
8
- <path fill="#F3F3F3" d="M25.886 19.62c.02.02.02.04.02.059-.059.136-.156.233-.253.349-.116.136-.252.29-.368.543-.175.35-.233.66-.253 1.474-.038.95 0 1.474.04 1.862.019.369.038.602-.02.97-.136.737-.446 1.222-.854 1.843-.504.776-1.008 1.57-1.862 1.823-.077.02-.077.02-.31.02-.194 0-.524 0-1.125.019-1.125.039-1.688.058-2.153.155-.504.097-.757.213-1.028.31a4.966 4.966 0 0 1-.854.272c-.252.058-.62.097-1.881.116-1.319 0-2.114 0-3.142-.116-1.435-.155-2.153-.252-2.638-.504-1.125-.602-1.61-1.688-2.386-3.472 0-.02.02-.04.039-.04l.116.059a.21.21 0 0 0 .097.02c.078.019.155.019.233 0 .02 0 .02 0 .039-.02.02 0 .039 0 .039.02a.646.646 0 0 0 .271.33c.136.077.291.077.427.077.155 0 .31-.02.465-.04.078 0 .156.04.194.098.136.349.31.582.582.62h.058c.059 0 .156-.019.272-.096.097-.078.252-.02.33.077a.742.742 0 0 0 .213.213c.272.272.931.408 1.474.408.291 0 .563-.039.718-.116.233-.117.233-.272.213-.35-.02-.116-.039-.252-.058-.368 0-.02.02-.02.02 0 .038.077.077.155.174.174h.039c.155 0 .388.059.427.194.019.078.058.136.096.214.098.136.272.31.64.33h.02c.427 0 .756-.136.97-.408.02-.02.02-.039.039-.058.077-.116.31-.116.407-.02a.626.626 0 0 0 .407.156h.078c.194-.02.349-.117.485-.291.077-.117.136-.252.174-.408.02-.038.078-.058.117-.019a.567.567 0 0 0 .407.155c.039 0 .097 0 .155-.02.369-.077.563-.387.64-.717 0-.02.02-.02.02 0a.703.703 0 0 0 .562.252h.039a.506.506 0 0 0 .388-.194c.116-.155.155-.388.175-.601 0-.058.038-.116.116-.155.31-.136.698-.427.815-.62 0 0 0-.02.019-.02.02-.058.078-.097.116-.097.253-.039.35-.097.447-.136.077-.039.135-.058.33-.097 1.415-.213 1.687-.271 1.997-.465.466-.31.485-.738.504-1.145.02-.349.04-.737.31-1.203.098-.174.214-.368.33-.6.214-.389.505-.932.718-1.223a.126.126 0 0 1 .175-.039c.485.175.911.369.989.447Z"/>
9
- <path fill="#F3F3F3" d="M12.116 23.854a9.393 9.393 0 0 0-.02 1.998c.02.233.059.485.098.737-.058.039-.272.097-.62.078-.505-.02-1.01-.136-1.165-.31l-.02-.02c-.115-.097-.212-.174-.212-.35 0-.057.019-.115.077-.212a.677.677 0 0 0 .117-.175c.077-.116.193-.252.31-.446.33-.543.446-.718.601-.931.02-.02.02-.039.039-.058.097-.117.194-.272.368-.524.117-.175.214-.33.31-.446.137-.194.233-.291.292-.35 0 .078-.02.195-.04.311a2.79 2.79 0 0 0-.135.698ZM11.865 16.205c0 .02 0 .02 0 0a2.176 2.176 0 0 0-.253.407c-.252.543-.252.854-.252 1.106 0 .136 0 .233-.038.349-.02.078-.059.174-.117.271-.136.33-.33.757-.252 1.339a1.214 1.214 0 0 1-.33-.252c0-.04-.02-.059-.02-.097-.038-.175-.057-.291.04-.563.31-.698.349-.873.368-1.067 0-.038.02-.077.02-.135.058-.272.096-.505.116-.699.039-.29.078-.485.175-.62.038-.059.135-.078.271-.078.058 0 .116 0 .194.02h.02l.058.019ZM11.476 23.149a1.584 1.584 0 0 0-.117-.505s-.019-.038-.019-.058c-.02-.02-.02-.038-.039-.058l-.02-.02c-.019-.019-.019-.019-.038-.019l-.02-.02c-.019 0-.019-.018-.038-.018h-.02a1.451 1.451 0 0 0-.31-.098h-.097c-.02 0-.039.02-.077.02-.02 0-.02.02-.04.02l-.019.019-.038.039-.02.019v.02l-.116.174c-.097.136-.194.29-.291.427-.097.135-.175.252-.272.387-.058.078-.097.136-.155.214 0 .02-.02.02-.02.039.059.02.117.02.175.038.136.02.272.04.388.059.272.038.563.058.834.038h.039c.058-.096.155-.213.252-.368.058-.078.117-.155.155-.233-.058-.02-.077-.077-.077-.116ZM10.49 24.293c-.02.213-.252.757-.621 1.28-.31.427-.504.543-.543.543-.155-.019-.291-.387-.408-.756-.038-.155-.096-.291-.116-.427a2.88 2.88 0 0 1-.077-.892c.31.175.853.213 1.629.213.039.02.097.02.136.04ZM9.946 22.55c-.136.213-.272.407-.408.601-.077.097-.136.194-.213.291-.039.058-.097.116-.136.175-.116-.02-.213-.059-.33-.078-.097-.02-.174-.058-.271-.097-.02 0-.039-.02-.058-.02-.02-.019-.04-.057-.059-.077.04-.058.059-.136.097-.194.059-.116.117-.233.194-.349.117-.194.253-.407.466-.543.02 0 .02-.02.039-.02.077-.038.155-.077.252-.096h.155c.02 0 .039.019.078.019 0 0 .019 0 .019.02.02.019.039.019.058.038-.039-.02.039.058.039.039.039.116.058.174.078.29ZM8.898 21.967c-.253.194-.427.466-.563.757l-.233.465c0 .02-.02.04-.02.04a3.181 3.181 0 0 1-.212-.059c-.078-.02-.156-.058-.233-.078-.039-.019-.058-.038-.097-.058a4.64 4.64 0 0 1 .252-.407c.116-.175.252-.369.388-.524.058-.058.116-.136.174-.174a.369.369 0 0 1 .253-.02c.097 0 .194 0 .271.039-.02 0 0 .02.02.02ZM8.507 25.257l-.04.039h-.019c-.058 0-.116.02-.174.02-.117 0-.233.018-.35 0a.22.22 0 0 1-.154-.06c-.04-.057-.059-.174-.078-.251a4.722 4.722 0 0 1-.039-1.28c.214.077.446.135.68.174-.06.388.038.95.077 1.106.058.077.077.174.097.252ZM7.809 21.853a5.237 5.237 0 0 0-.524.756c-.058.097-.136.214-.194.33a.717.717 0 0 1-.213-.097c-.058-.039-.116-.077-.155-.116-.02-.02-.058-.039-.078-.058 0 0-.02 0-.02-.02.02-.058.059-.097.059-.136.039-.096.078-.174.136-.252.097-.155.194-.31.31-.465.039-.058.078-.117.155-.136.058-.02.136 0 .194 0a.65.65 0 0 1 .33.194ZM6.316 22.86c.02-.02 0-.02 0 0 .078.078.136.136.213.194.04.02.059.058.097.078v.02c-.077.329-.135.678-.135 1.027 0 .02-.02.02-.02 0-.097-.407-.213-1.067-.155-1.319ZM7.27 23.599a4.389 4.389 0 0 0-.039.872c0 .155.02.31.04.485h-.156l-.078-.038c-.038-.02-.077-.078-.116-.136a.884.884 0 0 1-.097-.446c-.02-.291.02-.602.078-.893.039.02.097.04.155.058.077.04.136.078.213.098Z"/>
10
- <mask id="ape_svg__d" width="36" height="36" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:luminance">
11
- <path fill="#fff" d="M36 18c0-9.95-8.069-18-18-18C8.05 0 0 8.05 0 18c0 9.931 8.05 18 18 18 9.931 0 18-8.069 18-18Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
2
+ <g clip-path="url(#ape_svg__clip0_4532_195444)">
3
+ <mask id="ape_svg__mask0_4532_195444" width="42" height="42" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:luminance">
4
+ <path fill="white" d="M0 0H42V42H0V0Z"/>
5
+ </mask>
6
+ <g mask="url(#ape_svg__mask0_4532_195444)">
7
+ <mask id="ape_svg__mask1_4532_195444" width="42" height="42" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:luminance">
8
+ <path fill="white" d="M0 0H42V42H0V0Z"/>
12
9
  </mask>
13
- <g stroke-miterlimit="10" mask="url(#ape_svg__d)" opacity=".8">
14
- <path stroke="url(#ape_svg__e)" stroke-width=".205" d="M14.817 36.74c-1.261 0-2.483-.078-3.492-.156l-.232-.02-.233-.038c-.155-.02-.33-.039-.504-.058-.99-.097-2.619-.291-4.442-1.145l-.272-.135-.252-.136c-3.55-1.96-4.85-4.888-5.625-6.634-.058-.116-.116-.271-.194-.407-.368-.737-.601-1.435-.795-2.056l-.039-.136-.039-.116c-.504-1.843-.64-3.395-.407-4.927.233-1.513.815-2.929 1.823-4.403l.757-1.222c.135-.213.232-.465.271-.717.369-2.095 1.358-3.57 1.804-4.248l.058-.078.02-.039c0-.02.02-.039.02-.058.018-.097.057-.175.077-.252.116-.854.33-1.707.62-2.522l.04-.116.038-.116c.02-.04.02-.078.058-.194.213-.64.66-1.979 1.823-3.414l.427-.504.427-.388a10.108 10.108 0 0 1 3.995-2.25 10.731 10.731 0 0 1 2.6-.447h.194c.155 0 .29-.019.426-.019.64 0 1.261-.175 1.882-.058.485.097.97.039 1.416-.155.834-.369 1.959-.505 3.239-.68.097-.019.175-.019.233-.038.174-.02.446-.058.756-.078a24.348 24.348 0 0 1 2.386-.116c1.784 0 3.297.233 4.636.679l.116.039.097.039c2.948 1.125 4.403 2.599 5.548 4.053.058.078.135.156.155.194l.02.02.212.194.02.039c.99.756 1.823 1.687 2.463 2.734l.194.31.155.33c1.397 2.852.97 5.47.776 6.576l-.02.058a12.56 12.56 0 0 1-.64 2.367 11.786 11.786 0 0 1-.503 2.172 12.454 12.454 0 0 1-1.669 3.278 11.282 11.282 0 0 1-1.687 1.9c-.291.272-.485.621-.524 1.029l-.116.853a12.076 12.076 0 0 1-1.862 4.52l-1.125 1.629c-1.494 1.92-3.259 3.162-5.392 3.821l-.486.155-.523.097c-.62.117-1.26.175-1.882.155h-.872c-.291.02-.582.059-.873.156-1.416.465-3.065.678-5.082.678Z" opacity=".8"/>
15
- <path stroke="url(#ape_svg__f)" stroke-width=".192" d="M14.822 35.137c-1.203 0-2.386-.078-3.375-.155l-.194-.02-.194-.02c-.175-.019-.369-.038-.563-.057-.93-.097-2.347-.252-3.937-1.009l-.214-.097-.194-.116c-3.045-1.707-4.17-4.229-4.907-5.897-.058-.136-.136-.31-.194-.446a11.35 11.35 0 0 1-.718-1.862l-.038-.097-.02-.097c-.446-1.59-.562-2.948-.368-4.228.194-1.3.717-2.522 1.61-3.822l.116-.155.116-.155c.078-.097.136-.194.214-.271l.446-.834c.155-.272.252-.563.29-.873.292-1.862 1.184-3.2 1.591-3.822.02-.038.059-.077.078-.096l.097-.136a2.26 2.26 0 0 0 .116-.291c.04-.117.097-.291.136-.446.097-.796.291-1.571.563-2.328l.038-.097.04-.097c.019-.077.057-.136.096-.271.194-.602.563-1.707 1.552-2.91l.33-.407.349-.31a8.817 8.817 0 0 1 3.394-1.92 9.76 9.76 0 0 1 2.25-.389h.524c.66 0 1.3.078 1.94.252a2.37 2.37 0 0 0 1.629-.174c.814-.388 1.9-.815 3.162-.97.077-.02.155-.02.213-.039.155-.02.407-.058.718-.077a21.518 21.518 0 0 1 2.23-.117c1.59 0 2.929.194 4.112.602l.078.038.077.04c2.716 1.027 3.919 2.366 4.85 3.549.213.252.232.29.368.426l.175.156.058.077a8.592 8.592 0 0 1 2.153 2.367l.155.252.136.252c1.183 2.386.814 4.558.64 5.606l-.02.058a9.146 9.146 0 0 1-.64 2.23v.059a9.935 9.935 0 0 1-.446 1.997 9.907 9.907 0 0 1-1.454 2.852 9.768 9.768 0 0 1-1.882 2.017c-.174.136-.31.31-.407.504a1.749 1.749 0 0 0-.175.62c-.02.428-.077.854-.155 1.281-.369 1.96-1.222 3.317-1.649 3.996l-.873 1.28c-1.3 1.746-2.85 2.87-4.732 3.453l-.388.116-.427.077a8.87 8.87 0 0 1-1.61.136h-.718l-.446.02c-.31.019-.62.058-.911.174-1.339.427-2.871.62-4.791.62Z" opacity=".8"/>
16
- <path stroke="url(#ape_svg__g)" stroke-width=".179" d="M14.816 33.511c-1.144 0-2.289-.077-3.24-.155l-.135-.02-.136-.019c-.194-.02-.407-.058-.6-.077-.874-.097-2.076-.233-3.434-.854l-.155-.077-.155-.078c-2.58-1.455-3.53-3.588-4.229-5.14a5.271 5.271 0 0 1-.213-.485 12.307 12.307 0 0 1-.64-1.649l-.02-.077-.058-.058c-.756-2.677-.465-4.559 1.009-6.712l.077-.116.078-.116c.097-.117.194-.253.29-.369.137-.175.272-.369.428-.543.096-.117.174-.252.232-.388l.175-.427c.077-.194.116-.388.136-.582.155-1.726.989-2.967 1.396-3.588.039-.039.078-.116.097-.136l.097-.155.039-.039c.058-.097.155-.33.233-.562.038-.155.116-.408.194-.62v-.02a8.84 8.84 0 0 1 .504-2.115l.02-.058.019-.058c.039-.116.077-.213.116-.35.175-.523.466-1.415 1.26-2.404l.253-.31.252-.233c1.882-1.707 3.976-1.843 4.675-1.901h.407c.834 0 1.649.174 2.425.504.135.058.29.078.426.078a.83.83 0 0 0 .427-.117c.718-.407 2.017-1.163 3.686-1.357.077-.02.155-.02.213-.02.155-.02.388-.039.66-.077a26.7 26.7 0 0 1 2.075-.097c1.416 0 2.58.174 3.569.504l.058.02.058.019c2.328.873 3.317 1.978 4.15 3.026.214.29.33.407.563.64l.136.116.097.116.078.059c.388.31 1.125.872 1.784 1.94l.117.193.097.194c.95 1.94.64 3.686.485 4.617v.058a9.065 9.065 0 0 1-.582 1.998l-.02.058c0 .02 0 .02-.02.058-.019.058-.019.116-.019.175l-.019.077a7.112 7.112 0 0 1-.388 1.688 8.69 8.69 0 0 1-1.241 2.424 7.8 7.8 0 0 1-1.785 1.862 2.369 2.369 0 0 0-.698.815c-.175.33-.252.679-.252 1.047 0 .446-.058.912-.136 1.358-.31 1.668-1.009 2.793-1.455 3.472l-.64.95c-1.125 1.572-2.463 2.58-4.073 3.085l-.078.019c-.135.039-.271.078-.407.097l-.097.02a7.797 7.797 0 0 1-1.338.116H20.887c-.213 0-.485.02-.717.02-.33.019-.64.077-.95.193-1.165.35-2.58.543-4.404.543Z" opacity=".8"/>
17
- <path stroke="url(#ape_svg__h)" stroke-width=".166" d="M14.817 31.893c-1.106 0-2.192-.078-3.123-.155h-.097l-.097-.02c-.213-.039-.446-.058-.66-.077-.814-.097-1.823-.194-2.909-.718l-.116-.058-.097-.058c-2.115-1.184-2.91-2.968-3.53-4.403-.078-.175-.156-.35-.233-.544a9.885 9.885 0 0 1-.563-1.435l-.02-.058-.019-.058c-.62-2.212-.407-3.608.796-5.354l.058-.077.058-.078c.097-.136.194-.252.291-.388.31-.407.62-.814 1.067-1.3a.712.712 0 0 0 .174-.387l.02-.446-.02-.175v-.175c.04-1.435.757-2.502 1.145-3.084.039-.058.097-.135.116-.174l.058-.097.059-.078c.077-.116.252-.524.407-.892.058-.155.136-.465.233-.718.02-.077.02-.097.038-.271a7.783 7.783 0 0 1 .408-1.765l.02-.04.019-.038c.058-.155.097-.271.155-.427.155-.465.388-1.144.989-1.9l.175-.214.174-.155c1.32-1.183 2.735-1.416 3.705-1.474h.291c.815 0 1.804.388 2.327.64a.883.883 0 0 0 .388.097c.136 0 .272-.02.408-.058.33-.117.64-.252.93-.408.66-.388 1.746-1.008 3.104-1.163.078-.02.136-.02.194-.02.136-.02.35-.039.62-.077a22.782 22.782 0 0 1 1.921-.097c1.222 0 2.23.135 3.045.426l.04.02.038.02c1.94.736 2.715 1.57 3.453 2.52a4.9 4.9 0 0 0 .756.835l.077.077.078.078c.078.077.155.136.233.194.33.252.892.698 1.377 1.513l.078.116.058.136c.718 1.455.485 2.832.349 3.646v.059a6.847 6.847 0 0 1-.485 1.629 2.76 2.76 0 0 0-.136.427c-.02.097-.039.194-.039.271l-.019.078a6.735 6.735 0 0 1-.31 1.377 7.442 7.442 0 0 1-1.009 1.998c-.66.93-1.416 1.59-2.328 2.017a1.255 1.255 0 0 0-.543.466 1.423 1.423 0 0 0-.232.678v.233c.039.699.097 1.494-.058 2.328-.253 1.358-.835 2.27-1.261 2.948 0 0-1.979 2.754-3.783 3.317l-.194.058-.213.039c-.35.058-.698.097-1.067.097h-.368c-.078 0-.194 0-.369.02h-.077c-.699.019-1.339.038-1.533.077-.097.02-.194.039-.29.078-.951.407-2.29.6-4.132.6Z" opacity=".8"/>
18
- <path stroke="url(#ape_svg__i)" stroke-width=".166" d="M14.82 30.325c-1.047 0-2.095-.077-2.987-.136h-.078c-.252-.038-.484-.058-.698-.077-.756-.078-1.551-.175-2.405-.563l-.058-.019-.058-.02c-1.649-.93-2.27-2.308-2.852-3.646-.077-.194-.174-.388-.271-.582a7.192 7.192 0 0 1-.466-1.222v-.039c-.504-1.765-.368-2.657.563-4.015l.02-.038.019-.04c.116-.135.213-.27.31-.387.446-.582.834-1.086 1.707-1.901a.466.466 0 0 0 .136-.233.378.378 0 0 0-.02-.252l-.155-.446a1.616 1.616 0 0 1-.058-.427V16.07c.039-.97.543-1.726.873-2.23.058-.078.097-.156.136-.214l.038-.058.04-.059c.174-.232.465-.911.62-1.318a9.6 9.6 0 0 1 .233-.718c.058-.194.097-.388.116-.582a5.79 5.79 0 0 1 .33-1.416v-.039c.077-.194.135-.349.174-.504.136-.407.291-.873.718-1.397l.078-.097.077-.077c.931-.854 1.96-1.009 2.735-1.067H13.812c.775 0 1.357.31 1.745.524l.097.038h.02c.116.059.194.117.29.156.233.116.524.155.776.077a8.86 8.86 0 0 0 1.92-.776h.02c.582-.349 1.474-.853 2.522-.97.058-.019.135-.019.194-.019a8.7 8.7 0 0 1 .562-.058 19.603 19.603 0 0 1 1.765-.097c1.048 0 1.882.116 2.522.33h.038c1.552.582 2.134 1.202 2.755 2.017.252.33.504.64.97 1.047l.039.04.038.038c.117.116.252.233.408.35.271.212.66.503.989 1.066l.039.058.038.058c.485 1.009.33 1.96.214 2.677v.058a5.26 5.26 0 0 1-.388 1.3 3.218 3.218 0 0 0-.213.737c-.02.155-.04.271-.059.368l-.02.078a4.987 4.987 0 0 1-.232 1.067 5.452 5.452 0 0 1-.795 1.57c-.582.854-1.241 1.378-2.114 1.65a1.84 1.84 0 0 0-1.009.776l-.078.096-.077.097c-.213.253-.155 1.222-.116 1.804.038.64.077 1.3-.04 1.92-.193 1.067-.659 1.785-1.066 2.406 0 0-1.513 2.192-2.89 2.599l-.097.039-.097.02a5.273 5.273 0 0 1-.795.077h-.388c-.097 0-.233 0-.466.019h-.039c-.911.039-1.474.058-1.784.116a3.072 3.072 0 0 0-.602.175c-.834.33-1.959.504-3.588.504Z" opacity=".8"/>
10
+ <g mask="url(#ape_svg__mask1_4532_195444)">
11
+ <path fill="url(#ape_svg__paint0_radial_4532_195444)" d="M42 21C42 9.39167 32.5862 0 21 0C9.39167 0 0 9.39167 0 21C0 32.5862 9.39167 42 21 42C32.5862 42 42 32.5862 42 21Z"/>
12
+ <path fill="#F3F3F3" d="M35.3821 15.1045C35.2922 15.626 35.2012 15.8745 35.0659 16.1464C34.9294 16.4625 34.7941 16.802 34.6576 17.5265C34.6132 17.7984 34.5677 18.0247 34.5456 18.2055V18.2289C34.4989 18.5217 34.4767 18.7259 34.3636 19.0654C34.2737 19.3594 34.1151 19.8354 33.7301 20.3324C33.4139 20.7407 32.8936 21.4407 32.1912 21.5317C32.1236 21.5317 32.0104 21.5317 31.9427 21.5084C29.9512 20.491 28.2537 19.7444 27.6657 19.5857C26.9867 19.3815 27.0777 17.8882 27.1454 16.5757C27.1909 15.9877 27.2131 15.4219 27.1909 14.947C27.0999 13.2717 26.8059 11.4622 25.3569 10.579C24.4982 10.0587 23.3666 9.90004 22.3026 9.90004C22.5067 9.81021 22.7109 9.67371 22.9594 9.53838C23.5929 9.17671 24.3617 8.72404 25.1539 8.63304C25.4024 8.60971 25.6521 8.58754 25.9006 8.54204C27.4616 8.36121 28.8196 8.20371 30.2452 8.70071C30.9021 8.92704 32.2146 9.65154 32.5541 10.3527C32.8026 10.8287 33.2097 11.2125 34.0019 11.9592C34.4324 12.3442 34.7031 12.5705 34.9072 12.7525C35.2012 12.9777 35.2456 13.0454 35.3366 13.204C35.6084 13.7477 35.5186 14.3124 35.3832 15.1057L35.3821 15.1045ZM28.1721 21.9692C28.2619 21.9925 28.3074 22.1057 28.2397 22.1955C28.0356 22.5129 27.7871 22.9655 27.4931 23.4859C27.3577 23.7344 27.2212 23.984 27.1081 24.1649C26.7231 24.8205 26.7009 25.3864 26.6787 25.8169C26.6554 26.2917 26.6321 26.4947 26.3392 26.6767C26.1129 26.8354 25.8632 26.8797 24.2346 27.1294C23.9406 27.1737 23.8262 27.2192 23.7142 27.2869C23.6909 27.3102 23.6466 27.3102 23.6232 27.3335C23.5322 27.3779 23.4424 27.2869 23.4424 27.197C23.4657 26.9707 23.4657 26.6767 23.4657 26.2917V26.224C23.4657 25.9067 23.4657 25.6349 23.4424 25.4307C23.4191 25.0247 23.4191 24.8439 23.5334 24.6619C23.6687 24.4355 23.7819 24.3679 23.9406 24.2547C24.1891 24.096 24.5286 23.893 25.0034 23.214C25.2752 22.8524 25.3207 22.6482 25.3651 22.4907C25.3884 22.4219 25.3884 22.3997 25.5926 22.241C25.7956 22.0824 26.4524 21.5842 27.2889 21.7207C27.5607 21.7662 27.8547 21.856 28.1721 21.9692ZM21.6679 29.4919C21.6236 29.5374 21.6002 29.5595 21.5326 29.5595C21.3517 29.5595 21.2386 29.514 21.1709 29.4242C21.0122 29.22 21.0344 28.8129 21.0577 28.5644L21.7577 28.3824C21.8044 28.7674 21.8277 29.2877 21.6679 29.4907V29.4919ZM21.7181 26.9894C21.6947 27.0792 21.6947 27.1924 21.6947 27.3277V27.8492C21.4696 27.9169 21.2876 27.9169 21.0612 27.9169V27.3277C21.0612 27.1924 21.0612 26.9894 21.0846 26.9205C21.1522 26.9205 21.2199 26.8984 21.2876 26.8762C21.4241 26.8529 21.6271 26.8074 21.7402 26.8295C21.7402 26.8762 21.7402 26.9439 21.7181 26.9894ZM20.4534 29.2842C20.4301 29.647 20.3169 30.0775 19.9774 30.1452C19.8187 30.1685 19.7511 30.1219 19.7056 30.0775C19.4792 29.8734 19.4571 29.2399 19.4792 28.7872C19.6379 28.7872 19.8187 28.7639 20.0451 28.7195C20.1804 28.6962 20.3169 28.6519 20.4301 28.6285C20.4534 28.8094 20.4756 29.0369 20.4534 29.2854V29.2842ZM20.2901 28.0067L19.5434 28.2785C19.5901 27.9845 19.6344 27.5762 19.6577 27.3055C19.6811 27.1247 19.7254 27.0559 19.7476 27.0337C19.7476 27.0337 19.7709 27.0104 19.7942 27.0104H19.8386L20.3134 26.9882C20.2901 27.2145 20.2901 27.7115 20.2901 28.0067ZM19.0674 27.7827C19.0219 27.8947 18.9776 28.212 18.9542 28.4384L18.0267 28.415C18.0722 28.121 18.1621 27.827 18.2309 27.6007C18.3207 27.3744 18.3884 27.1935 18.4794 27.148C18.5704 27.1037 18.7734 27.0804 18.9087 27.1947C19.1129 27.33 19.1584 27.533 19.0674 27.7827ZM18.7337 30.6317C18.6661 30.7227 18.5762 30.7904 18.4852 30.7904C18.3721 30.8137 18.3044 30.767 18.2367 30.7227C17.9427 30.4509 17.9649 29.5677 17.9871 29.1384C18.3721 29.0474 18.8026 28.9797 19.0056 28.9575C19.0056 29.2959 19.0289 30.2245 18.7337 30.6317ZM17.5064 28.3672C17.4586 28.4764 17.4207 28.5896 17.3932 28.7055C17.2801 28.7522 16.9406 28.7055 16.6011 28.6379L16.8274 27.1679C17.2124 27.0547 17.6651 27.0314 17.7549 27.1445C17.9136 27.3032 17.6196 28.0499 17.5064 28.3672ZM17.0794 30.8604C16.8986 31.0867 16.6267 31.1999 16.2417 31.1777C15.9711 31.1777 15.8801 31.0645 15.8346 30.9969C15.6304 30.6574 15.8346 29.8652 16.0387 29.367L17.3057 29.4347C17.3291 29.5257 17.3291 29.6389 17.3291 29.752C17.3512 30.137 17.3057 30.5897 17.0794 30.8604Z"/>
13
+ <path fill="#F3F3F3" d="M27.542 20.1758C26.3881 19.8585 26.5013 18.1843 26.5923 16.5545C26.6145 15.9886 26.66 15.4461 26.6366 14.9935C26.5468 13.4768 26.2983 11.826 25.0756 11.0781C23.7631 10.2871 21.613 10.468 20.3005 10.6266C19.8256 10.762 19.373 10.8751 19.0113 10.853C18.2413 10.8063 17.63 10.4913 17.0875 10.1961C16.6791 9.96979 16.3175 9.76562 15.9558 9.76562H15.9103C14.8918 9.83446 14.417 10.083 13.9876 10.468C13.8745 10.5578 13.738 10.8296 13.3086 12.0745C13.0823 12.708 13.059 13.0475 13.0146 13.3636C12.968 13.6588 12.9458 13.975 12.7883 14.451C12.6836 14.7329 12.5929 15.0199 12.5165 15.3108C12.3123 16.0108 12.1315 16.5778 11.6333 17.2568C11.5656 17.3245 11.498 17.4598 11.407 17.573C11.2938 17.7538 11.1585 17.9813 10.9543 18.2298C10.819 18.4106 10.525 19.0896 10.5471 19.2926C10.5705 19.6321 10.6836 19.8363 10.7968 20.0626C10.91 20.289 11.0675 20.5608 11.0908 20.9446V21.0135C11.1363 21.6015 11.0453 21.8955 9.93581 22.8918C9.3634 23.4062 8.84112 23.9738 8.37597 24.587C8.35264 24.6325 8.37597 24.678 8.44364 24.678H8.66997C8.94181 24.7013 9.21364 24.8133 9.39447 25.0163C9.41781 25.063 9.48547 25.063 9.53097 25.0396C9.71181 24.972 9.91597 24.972 10.0956 24.9941C10.322 25.0175 10.5716 25.0851 10.7303 25.2438C10.7532 25.2675 10.7823 25.2842 10.8143 25.292C10.8463 25.2998 10.8799 25.2985 10.9111 25.2881C11.0978 25.2392 11.2949 25.2473 11.477 25.3115C11.6182 25.3592 11.7434 25.4452 11.8386 25.56C11.8737 25.5947 11.9186 25.6178 11.9672 25.6262C12.0158 25.6345 12.0659 25.6277 12.1105 25.6066C12.156 25.5833 12.2236 25.5366 12.2913 25.5145C12.5398 25.4246 12.8116 25.4701 13.038 25.5611C13.1511 25.6055 13.2643 25.6288 13.3763 25.7186C13.5545 25.849 13.6888 26.0305 13.7613 26.239C13.808 26.3521 13.9655 26.3976 14.0565 26.3066C14.2373 26.1713 14.3726 26.1491 14.5091 26.1935C14.5768 26.2168 14.6223 26.2623 14.6678 26.33C14.7355 26.4198 14.8486 26.5108 14.9385 26.4653C15.3235 26.3521 15.7761 26.4198 16.1156 26.6018C16.2288 26.6695 16.3641 26.7593 16.433 26.8958V26.8281C16.433 26.8048 16.4551 26.7815 16.4773 26.7593L16.5461 26.736C16.727 26.6695 17.6778 26.3976 18.0395 26.7826C18.0616 26.806 18.0838 26.806 18.1071 26.7826C18.1526 26.736 18.197 26.6916 18.2203 26.6916C18.4688 26.5563 18.876 26.533 19.1478 26.7826C19.1933 26.827 19.2831 26.806 19.3286 26.7593C19.3467 26.719 19.3791 26.687 19.4196 26.6695C19.5095 26.5785 19.646 26.5563 19.7813 26.5563L20.3016 26.533C20.4381 26.533 20.8453 26.4886 20.9585 26.4653H20.9818C21.0261 26.4653 21.0938 26.442 21.1615 26.4198C21.4111 26.3755 21.7051 26.3066 21.9315 26.4198C22.1578 26.533 22.1345 26.7815 22.1123 27.009C22.1123 27.0988 22.089 27.1898 22.089 27.2796V27.4161C22.089 27.6191 22.089 27.8011 22.0668 27.9365L22.0901 28.0496V28.073C22.1123 28.1628 22.2255 28.2305 22.2931 28.1628C22.474 28.0496 22.6548 27.9143 22.7236 27.8233V27.8C22.7236 27.7778 22.747 27.7323 22.7691 27.6425C22.7913 27.4383 22.8368 27.0533 22.8368 26.2623V26.1713C22.8368 25.8773 22.8368 25.6288 22.8135 25.4246C22.7901 24.9941 22.7691 24.6546 22.9943 24.3163C23.1985 23.9768 23.4026 23.8625 23.6056 23.7271C23.832 23.5918 24.0816 23.4331 24.511 22.8451C24.7151 22.55 24.7373 22.4368 24.7595 22.347C24.8061 22.1206 24.8726 21.9853 25.2121 21.759C25.484 21.5548 26.2761 20.9435 27.3623 21.1255C27.724 21.1931 28.2898 21.374 28.879 21.6003C28.9011 21.6003 28.9233 21.6236 28.9466 21.6236H28.97C29.4891 21.8266 29.9651 22.053 30.3046 22.2338C30.3723 22.2793 30.4621 22.2571 30.531 22.1883C30.6441 22.053 30.7573 21.9853 30.8693 21.8943C30.916 21.871 30.9603 21.8488 30.9825 21.8266C31.0058 21.8266 31.0058 21.8033 31.0058 21.8033C31.0956 21.7356 31.0956 21.5548 30.9825 21.5093C29.8751 20.9697 28.7247 20.5233 27.5431 20.1746L27.542 20.1758ZM16.6348 20.5141C16.2731 22.0541 13.8745 23.7738 12.7883 23.7738H12.7195C12.6973 23.7738 12.6751 23.7738 12.6518 23.7505H12.6075C12.3538 23.6666 12.122 23.5275 11.9285 23.3433C11.7937 23.2108 11.6925 23.048 11.6333 22.8685C11.6333 22.8451 11.6111 22.8008 11.6111 22.7775C11.5435 22.5068 11.4758 22.1895 11.7021 21.6458C11.7243 21.5781 11.7698 21.5105 11.792 21.4428C11.792 21.4195 11.8153 21.3973 11.8153 21.3751C11.8375 21.3075 11.8596 21.262 11.883 21.2165C11.9063 21.1266 11.9506 21.0578 11.9728 21.0135C11.9728 20.9901 11.9961 20.9668 11.9961 20.9446C12.0638 20.7638 12.0638 20.6961 12.086 20.6285C12.086 20.583 12.1093 20.492 12.1326 20.4021C12.1991 20.1081 12.2446 19.8585 12.2668 19.6555C12.3135 19.2705 12.3811 18.9321 12.5841 18.6136C12.6296 18.5693 12.6518 18.5238 12.6973 18.4783L12.7428 18.4328L12.7883 18.3885C12.8326 18.3418 12.9015 18.3196 12.9458 18.2975C12.9691 18.2975 12.9925 18.2741 13.0146 18.2741C13.059 18.252 13.1045 18.252 13.15 18.2298C13.3812 18.1869 13.6176 18.179 13.8511 18.2065C14.1451 18.2298 14.417 18.2753 14.6445 18.343C14.8475 18.3885 15.0283 18.4561 15.1636 18.5238C15.187 18.5238 15.187 18.5471 15.2103 18.5471C15.2313 18.5693 15.2546 18.5693 15.3001 18.5915C15.3445 18.6148 15.3678 18.6148 15.4133 18.637L15.5486 18.7046L15.5941 18.728C15.7528 18.7956 15.9103 18.8855 16.0235 18.9765C16.0923 19.022 16.1366 19.0675 16.1821 19.1118C16.2055 19.1351 16.2276 19.1351 16.2276 19.1585C16.251 19.1795 16.251 19.1795 16.2731 19.2028C16.748 19.61 16.7258 20.1758 16.6348 20.5153V20.5141ZM17.7665 14.654L17.721 14.9258C17.6078 15.5593 17.3593 16.4191 16.454 16.6455C15.5708 16.8496 15.3678 16.894 14.7565 16.9395H14.711C14.2583 16.9395 13.3763 16.6455 13.2176 15.9443C13.1278 15.4916 13.3308 15.151 13.6481 14.6085C13.6925 14.5186 13.7613 14.4276 13.829 14.3145C14.2816 13.5678 14.4403 13.0253 14.5756 12.5948C14.711 12.1655 14.8241 11.8248 15.1193 11.5308C15.187 11.4631 15.2546 11.3955 15.3445 11.35C15.3911 11.3045 15.4576 11.2823 15.5265 11.2368C15.6163 11.1913 15.7073 11.1691 15.7971 11.1236C16.0013 11.056 16.2276 11.0338 16.4306 11.0338C16.8611 11.0338 17.2916 11.147 17.5856 11.3955C17.721 11.5086 17.924 11.7128 18.0383 12.3685C18.0826 12.708 17.9916 13.3181 17.7665 14.654ZM24.2613 16.4646C23.944 17.0071 23.7853 17.3011 23.5146 17.5286C22.971 17.9801 22.3596 18.0711 21.8393 18.0711C21.4776 18.0711 21.1603 18.0035 20.9573 17.9801C20.4136 17.8903 19.4406 17.7095 19.1023 16.9173C19.0335 16.7586 19.0335 16.6676 19.0335 16.5323C19.0335 16.4191 19.0335 16.194 18.9658 15.718V15.6946C18.9317 15.4321 18.9317 15.1662 18.9658 14.9036V14.857C19.1466 13.9073 19.2143 13.772 19.2376 13.681C19.2602 13.6353 19.2919 13.5947 19.3307 13.5617C19.3696 13.5287 19.4148 13.504 19.4635 13.4891C19.5123 13.4743 19.5635 13.4695 19.6142 13.4752C19.6648 13.4809 19.7138 13.497 19.758 13.5223C19.9388 13.6133 20.0065 13.8396 19.9388 14.0205C19.9155 14.066 19.8711 14.269 19.7125 15.0168V15.0611C19.667 15.2653 19.6891 15.4228 19.7125 15.627V15.6503C19.7801 16.1928 19.7801 16.4203 19.7801 16.5545V16.6455C19.8478 16.8041 19.9843 16.894 20.1418 16.985C20.2561 17.0305 20.3693 16.9395 20.346 16.8263C20.1873 15.9886 20.1873 15.0156 20.5046 14.4055C20.6178 14.2013 20.7986 13.8851 20.9795 13.5678C21.0033 13.5431 21.0191 13.5118 21.025 13.478C21.0483 13.4546 21.0483 13.4313 21.0705 13.4091C21.1603 13.2738 21.2291 13.1606 21.2968 13.0475C21.2968 13.0241 21.3201 13.0241 21.3201 13.002L21.3411 12.9786C21.3645 12.9565 21.3645 12.9343 21.3878 12.9121C21.3878 12.9121 21.3878 12.8888 21.41 12.8888L21.4333 12.8655C21.4333 12.8433 21.4555 12.8433 21.4555 12.8211C21.5231 12.7301 21.5908 12.6403 21.6363 12.5493C21.7261 12.4361 21.613 12.3008 21.4998 12.3463C21.1836 12.4816 20.9795 12.6403 20.934 12.6625C20.8947 12.6954 20.849 12.7199 20.7998 12.7344C20.7506 12.7489 20.6989 12.7531 20.648 12.7468C20.5971 12.7404 20.548 12.7236 20.5039 12.6975C20.4598 12.6714 20.4215 12.6364 20.3915 12.5948C20.3583 12.5554 20.3337 12.5097 20.3191 12.4604C20.3045 12.411 20.3002 12.3592 20.3065 12.3082C20.3129 12.2571 20.3297 12.2079 20.356 12.1637C20.3823 12.1195 20.4174 12.0811 20.4591 12.0511C20.6633 11.8936 21.704 11.147 22.9488 11.4865C23.853 11.735 24.3056 12.4361 24.4876 12.6858C24.623 12.8888 25.0756 13.5223 25.0535 14.4276C25.0535 15.0845 24.7828 15.5826 24.2613 16.4646Z"/>
14
+ <path fill="#F3F3F3" d="M16.1897 11.8125C16.122 11.9712 16.0532 12.152 15.9633 12.3562C15.7825 12.831 15.555 13.3747 15.443 13.5777C15.3147 13.8275 15.1709 14.0691 15.0125 14.301C14.8772 14.5052 14.7862 14.6638 14.6963 14.8902C14.5598 15.2752 14.5377 15.7057 14.6275 16.1805C14.379 16.1572 13.994 15.9997 13.9485 15.7722C13.9263 15.6147 14.0173 15.4572 14.2892 14.9812C14.3335 14.8902 14.4012 14.777 14.47 14.6872C14.8195 14.0979 15.0931 13.4667 15.2843 12.8088C15.443 12.3328 15.5107 12.1298 15.7592 11.949C15.9178 11.8802 16.0532 11.8358 16.1897 11.8125ZM15.7137 28.9018C15.4418 29.4455 15.1257 29.9437 14.9215 30.1922C14.7407 29.7395 14.4467 28.6755 14.5365 27.839V27.7713C14.5598 27.4995 14.6275 27.2732 14.7628 27.069C14.8538 26.9337 15.0802 26.866 15.3287 26.866C15.5095 26.866 15.7137 26.9103 15.8945 27.0013C15.9855 27.0468 16.1208 27.16 16.1208 27.454C16.1663 27.8623 15.9622 28.4048 15.7137 28.9018Z"/>
15
+ <path fill="#F3F3F3" d="M30.198 22.8563C30.2213 22.8796 30.2213 22.9029 30.2213 22.9251C30.1525 23.0838 30.0393 23.1969 29.9261 23.3323C29.7908 23.4909 29.6321 23.6706 29.4968 23.9658C29.2926 24.3741 29.225 24.7358 29.2016 25.6854C29.1573 26.7938 29.2016 27.4051 29.2483 27.8578C29.2705 28.2883 29.2926 28.5601 29.225 28.9894C29.0663 29.8493 28.7046 30.4151 28.2286 31.1396C27.6406 32.0449 27.0526 32.9713 26.0563 33.2664C25.9665 33.2898 25.9665 33.2898 25.6946 33.2898C25.4683 33.2898 25.0833 33.2898 24.3821 33.3119C23.0696 33.3574 22.4128 33.3796 21.8703 33.4928C21.2823 33.6059 20.9871 33.7413 20.671 33.8544C20.3491 33.99 20.0156 34.0962 19.6746 34.1718C19.3806 34.2394 18.9513 34.2849 17.4801 34.3071C15.9413 34.3071 15.0138 34.3071 13.8145 34.1718C12.1403 33.9909 11.3026 33.8778 10.7368 33.5838C9.42429 32.8814 8.85846 31.6144 7.95312 29.5331C7.95312 29.5098 7.97646 29.4864 7.99863 29.4864L8.13396 29.5553C8.16928 29.5719 8.20808 29.5799 8.24713 29.5786C8.33813 29.6008 8.42796 29.6008 8.51896 29.5786C8.54229 29.5786 8.54229 29.5786 8.56446 29.5553C8.58779 29.5553 8.60996 29.5553 8.60996 29.5786C8.66866 29.7391 8.78014 29.8748 8.92613 29.9636C9.08479 30.0534 9.26563 30.0534 9.42429 30.0534C9.60513 30.0534 9.78596 30.0301 9.96679 30.0068C10.0578 30.0068 10.1488 30.0534 10.1931 30.1211C10.3518 30.5283 10.5548 30.8001 10.8721 30.8444H10.9398C11.0086 30.8444 11.1218 30.8223 11.2571 30.7324C11.3703 30.6414 11.5511 30.7091 11.6421 30.8223C11.7071 30.9212 11.7917 31.0058 11.8906 31.0708C12.208 31.3881 12.9768 31.5468 13.6103 31.5468C13.9498 31.5468 14.2671 31.5013 14.448 31.4114C14.7198 31.2749 14.7198 31.0941 14.6965 31.0031C14.6731 30.8678 14.651 30.7091 14.6288 30.5738C14.6288 30.5504 14.6521 30.5504 14.6521 30.5738C14.6965 30.6636 14.742 30.7546 14.8551 30.7768H14.9006C15.0815 30.7768 15.3533 30.8456 15.3988 31.0031C15.421 31.0941 15.4665 31.1618 15.5108 31.2528C15.6251 31.4114 15.8281 31.6144 16.2575 31.6378H16.2808C16.779 31.6378 17.1628 31.4791 17.4125 31.1618C17.4358 31.1384 17.4358 31.1163 17.458 31.0941C17.5478 30.9588 17.8196 30.9588 17.9328 31.0708C18.0642 31.1863 18.2327 31.2509 18.4076 31.2528H18.4986C18.725 31.2294 18.9058 31.1163 19.0645 30.9133C19.1543 30.7768 19.2231 30.6193 19.2675 30.4373C19.2908 30.3929 19.3585 30.3696 19.404 30.4151C19.4673 30.475 19.5418 30.5219 19.6233 30.5529C19.7048 30.584 19.7916 30.5986 19.8788 30.5959C19.9243 30.5959 19.992 30.5959 20.0596 30.5726C20.4901 30.4828 20.7165 30.1211 20.8063 29.7361C20.8063 29.7128 20.8296 29.7128 20.8296 29.7361C20.9094 29.8316 21.0099 29.9078 21.1235 29.9587C21.2371 30.0097 21.3609 30.0341 21.4853 30.0301H21.5308C21.6183 30.0283 21.7043 30.007 21.7826 29.9679C21.8609 29.9288 21.9295 29.8727 21.9835 29.8038C22.1188 29.6229 22.1643 29.3511 22.1876 29.1026C22.1876 29.0349 22.232 28.9673 22.323 28.9218C22.6846 28.7631 23.1373 28.4236 23.2738 28.1984C23.2738 28.1984 23.2738 28.1751 23.296 28.1751C23.3193 28.1074 23.387 28.0619 23.4313 28.0619C23.7265 28.0164 23.8396 27.9488 23.9528 27.9033C24.0426 27.8578 24.1103 27.8356 24.3378 27.7901C25.9886 27.5416 26.306 27.4739 26.6676 27.2476C27.2113 26.8859 27.2335 26.3866 27.2556 25.9118C27.279 25.5046 27.3023 25.0519 27.6173 24.5083C27.7316 24.3053 27.867 24.0789 28.0023 23.8083C28.252 23.3544 28.5915 22.7209 28.84 22.3814C28.8503 22.3649 28.8638 22.3507 28.8797 22.3394C28.8956 22.3282 28.9135 22.3203 28.9325 22.316C28.9515 22.3118 28.9712 22.3114 28.9903 22.3148C29.0095 22.3182 29.0278 22.3254 29.0441 22.3359C29.61 22.5401 30.107 22.7653 30.198 22.8563Z"/>
16
+ <path fill="#F3F3F3" d="M14.1676 27.8365C14.077 28.6105 14.0692 29.3919 14.1443 30.1675C14.1676 30.4394 14.2131 30.7334 14.2586 31.0274C14.191 31.0729 13.9413 31.1405 13.5353 31.1184C12.9461 31.095 12.357 30.9597 12.1761 30.7567L12.1528 30.7334C12.0186 30.6202 11.9055 30.5304 11.9055 30.325C11.9055 30.2585 11.9276 30.1909 11.9953 30.0777C12.0512 30.0172 12.0972 29.9483 12.1318 29.8735C12.2216 29.7382 12.3569 29.5795 12.4934 29.3532C12.8784 28.7197 13.0138 28.5155 13.1946 28.267C13.2179 28.2437 13.218 28.2215 13.2401 28.1994C13.3533 28.0629 13.4665 27.882 13.6695 27.588C13.806 27.3839 13.9191 27.203 14.0311 27.0677C14.1909 26.8414 14.303 26.7282 14.3718 26.6594C14.3718 26.7504 14.3485 26.8869 14.3251 27.0222C14.2381 27.2858 14.1852 27.5595 14.1676 27.8365ZM13.8748 18.9127C13.8748 18.936 13.8748 18.936 13.8748 18.9127C13.7592 19.0596 13.6602 19.2189 13.5796 19.3875C13.2856 20.021 13.2856 20.3839 13.2856 20.6779C13.2856 20.8365 13.2856 20.9497 13.2413 21.085C13.2179 21.176 13.1725 21.288 13.1048 21.4012C12.9461 21.7862 12.7198 22.2844 12.8108 22.9634C12.6665 22.8882 12.5363 22.7887 12.4258 22.6694C12.4258 22.6227 12.4024 22.6005 12.4024 22.5562C12.3581 22.352 12.3359 22.2167 12.4491 21.8994C12.8108 21.085 12.8563 20.8809 12.8784 20.6545C12.8784 20.6102 12.9018 20.5647 12.9018 20.497C12.9695 20.1797 13.0138 19.9079 13.0371 19.6815C13.0826 19.3432 13.1281 19.1157 13.2413 18.9582C13.2856 18.8894 13.3988 18.8672 13.5575 18.8672C13.6251 18.8672 13.6928 18.8672 13.7838 18.8905H13.8071L13.8748 18.9127ZM13.421 27.014C13.4081 26.8115 13.362 26.6124 13.2845 26.4249C13.2845 26.4249 13.2623 26.3805 13.2623 26.3572C13.239 26.3339 13.2389 26.3129 13.2168 26.2895L13.1935 26.2662C13.1713 26.244 13.1713 26.244 13.1491 26.244L13.1258 26.2207C13.1036 26.2207 13.1036 26.1997 13.0815 26.1997H13.0581C12.9422 26.1481 12.8209 26.1098 12.6964 26.0854H12.5833C12.56 26.0854 12.5378 26.1087 12.4934 26.1087C12.4701 26.1087 12.4701 26.132 12.4468 26.132L12.4246 26.1542L12.3803 26.1997L12.357 26.2219V26.2452L12.2216 26.4482C12.1085 26.6069 11.9953 26.7865 11.8821 26.9464C11.7689 27.1039 11.678 27.2404 11.5648 27.3979C11.4971 27.4889 11.4516 27.5565 11.3839 27.6475C11.3839 27.6709 11.3606 27.6709 11.3606 27.693C11.4295 27.7164 11.4971 27.7164 11.5648 27.7374C11.7235 27.7607 11.8821 27.784 12.0175 27.8062C12.3348 27.8505 12.6743 27.8739 12.9905 27.8505H13.036C13.1036 27.7385 13.2168 27.602 13.3299 27.4212C13.3976 27.3302 13.4665 27.2404 13.5108 27.1494C13.4431 27.126 13.421 27.0595 13.421 27.014ZM12.2706 28.3487C12.2473 28.5972 11.9766 29.2319 11.5461 29.842C11.1845 30.3402 10.9581 30.4755 10.9126 30.4755C10.7318 30.4534 10.5731 30.024 10.4366 29.5935C10.3923 29.4127 10.3246 29.254 10.3013 29.0954C10.2173 28.7553 10.187 28.4041 10.2115 28.0547C10.5731 28.2589 11.2066 28.3032 12.112 28.3032C12.1575 28.3265 12.2251 28.3265 12.2706 28.3499V28.3487ZM11.636 26.3152C11.4773 26.5637 11.3186 26.79 11.16 27.0164C11.0701 27.1295 11.0013 27.2427 10.9115 27.3559C10.866 27.4235 10.7983 27.4912 10.7528 27.56C10.6175 27.5367 10.5043 27.4912 10.3678 27.469C10.2546 27.4457 10.1648 27.4014 10.0516 27.3559C10.0283 27.3559 10.0061 27.3325 9.98395 27.3325C9.96062 27.3104 9.93728 27.266 9.91512 27.2427C9.96178 27.175 9.98395 27.084 10.0283 27.0164C10.0971 26.881 10.1648 26.7445 10.2546 26.6092C10.3911 26.3829 10.5498 26.1344 10.7983 25.9757C10.8216 25.9757 10.8216 25.9524 10.8438 25.9524C10.9336 25.908 11.0246 25.8625 11.1378 25.8404H11.3186C11.342 25.8404 11.3641 25.8625 11.4096 25.8625C11.4096 25.8625 11.4318 25.8625 11.4318 25.8859C11.4551 25.908 11.4773 25.908 11.4995 25.9302C11.454 25.9069 11.545 25.9979 11.545 25.9757C11.5905 26.111 11.6126 26.1799 11.636 26.3152ZM10.4133 25.635C10.1181 25.8614 9.91512 26.1787 9.75645 26.5182L9.48462 27.0607C9.48462 27.084 9.46128 27.1074 9.46128 27.1074C9.37807 27.0873 9.29558 27.0643 9.21395 27.0385C9.12295 27.0152 9.03195 26.9709 8.94212 26.9475C8.89662 26.9254 8.87445 26.9032 8.82895 26.8799C8.91872 26.7166 9.01685 26.5581 9.12295 26.405C9.25828 26.2009 9.41695 25.9745 9.57562 25.7937C9.64328 25.726 9.71095 25.635 9.77862 25.5907C9.87115 25.5483 9.97573 25.54 10.0738 25.5674C10.187 25.5674 10.3001 25.5674 10.39 25.6129C10.3666 25.6129 10.39 25.6362 10.4133 25.6362V25.635ZM9.95712 29.4734L9.91045 29.5189H9.88828C9.82062 29.5189 9.75295 29.5422 9.68528 29.5422C9.54878 29.5422 9.41345 29.5632 9.27695 29.5422C9.21024 29.5431 9.1458 29.518 9.09728 29.4722C9.05062 29.4057 9.02845 29.2692 9.00628 29.1794C8.92338 28.686 8.90807 28.1836 8.96078 27.686C9.21045 27.7759 9.48112 27.8435 9.75412 27.889C9.68412 28.3417 9.79845 28.9974 9.84395 29.1794C9.91162 29.2692 9.93378 29.3824 9.95712 29.4734ZM9.14278 25.502C8.91353 25.7775 8.70896 26.0727 8.53145 26.384C8.46378 26.4972 8.37278 26.6337 8.30512 26.769C8.21664 26.7452 8.13269 26.7069 8.05662 26.6559C7.98895 26.6104 7.92128 26.566 7.87578 26.5205C7.85245 26.4972 7.80812 26.475 7.78478 26.4529C7.78478 26.4529 7.76145 26.4529 7.76145 26.4295C7.78478 26.3619 7.83028 26.3164 7.83028 26.2709C7.87578 26.1589 7.92128 26.0679 7.98895 25.9769C8.10212 25.796 8.21528 25.6152 8.35062 25.4344C8.39612 25.3667 8.44162 25.2979 8.53145 25.2757C8.59912 25.2524 8.69012 25.2757 8.75778 25.2757C8.90593 25.3108 9.04008 25.3896 9.14278 25.502ZM7.40095 26.6769C7.42428 26.6535 7.40095 26.6535 7.40095 26.6769C7.49195 26.7679 7.55962 26.8355 7.64945 26.9032C7.69612 26.9265 7.71828 26.9709 7.76262 26.9942V27.0175C7.67278 27.4014 7.60512 27.8085 7.60512 28.2157C7.60512 28.239 7.58178 28.239 7.58178 28.2157C7.46862 27.7409 7.33328 26.9709 7.40095 26.6769ZM8.51395 27.539C8.46502 27.8758 8.44977 28.2166 8.46845 28.5564C8.46845 28.7372 8.49178 28.918 8.51512 29.1222H8.33312L8.24212 29.0779C8.19778 29.0545 8.15228 28.9869 8.10678 28.9192C8.02416 28.7586 7.98514 28.5792 7.99362 28.3989C7.97028 28.0594 8.01695 27.6965 8.08462 27.357C8.13012 27.3804 8.19778 27.4037 8.26545 27.4247C8.35528 27.4714 8.42412 27.5157 8.51395 27.539Z"/>
17
+ <mask id="ape_svg__mask2_4532_195444" width="42" height="42" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:luminance">
18
+ <path fill="white" d="M42 21C42 9.39167 32.5862 0 21 0C9.39167 0 0 9.39167 0 21C0 32.5862 9.39167 42 21 42C32.5862 42 42 32.5862 42 21Z"/>
19
+ </mask>
20
+ <g mask="url(#ape_svg__mask2_4532_195444)">
21
+ <g opacity="0.8">
22
+ <path stroke="url(#ape_svg__paint1_linear_4532_195444)" stroke-miterlimit="10" stroke-width="0.239167" d="M17.2763 42.8673C15.8051 42.8673 14.3795 42.7763 13.2023 42.6853L12.9316 42.662L12.6598 42.6176C12.479 42.5943 12.2748 42.5721 12.0718 42.55C10.9168 42.4368 9.01629 42.2105 6.88946 41.2141L6.57213 41.0566L6.27813 40.898C2.13646 38.6113 0.619792 35.1953 -0.284375 33.1583C-0.352042 33.023 -0.419708 32.8421 -0.510708 32.6835C-0.940042 31.8236 -1.21187 31.0093 -1.43821 30.2848L-1.48371 30.1261L-1.52921 29.9908C-2.11721 27.8406 -2.27588 26.03 -2.00404 24.2426C-1.73221 22.4775 -1.05321 20.8255 0.122792 19.1058L1.00596 17.6801C1.16346 17.4316 1.27663 17.1376 1.32213 16.8436C1.75263 14.3995 2.90646 12.6786 3.42679 11.8876L3.49446 11.7966L3.51779 11.7511C3.51779 11.7278 3.54113 11.7056 3.54113 11.6835C3.56213 11.5703 3.60763 11.4793 3.63096 11.3895C3.76629 10.3931 4.01596 9.39798 4.35429 8.44715L4.40096 8.31182L4.44529 8.17648C4.46863 8.12982 4.46863 8.08548 4.51296 7.95015C4.76146 7.20348 5.28296 5.64132 6.63979 3.96715L7.13796 3.37915L7.63613 2.92648C8.96815 1.70602 10.5628 0.807917 12.297 0.301483C13.2828 0.00355033 14.3016 -0.171606 15.3303 -0.220017H15.5566C15.7375 -0.220017 15.895 -0.242184 16.0536 -0.242184C16.8003 -0.242184 17.5248 -0.446351 18.2493 -0.309851C18.8151 -0.196684 19.381 -0.264351 19.9013 -0.490684C20.8743 -0.921184 22.1868 -1.07985 23.6801 -1.28402C23.7933 -1.30618 23.8843 -1.30618 23.952 -1.32835C24.155 -1.35168 24.4723 -1.39602 24.834 -1.41935C25.7591 -1.50998 26.6881 -1.55515 27.6176 -1.55468C29.699 -1.55468 31.4641 -1.28285 33.0263 -0.762517L33.1616 -0.717017L33.2748 -0.671517C36.7141 0.640983 38.4116 2.36065 39.7475 4.05698C39.8151 4.14798 39.905 4.23898 39.9283 4.28332L39.9516 4.30665L40.199 4.53298L40.2223 4.57848C41.3773 5.46048 42.3491 6.54665 43.0958 7.76815L43.3221 8.12982L43.503 8.51482C45.1328 11.8421 44.6346 14.8965 44.4083 16.1868L44.385 16.2545C44.2267 17.1971 43.9767 18.122 43.6383 19.016C43.5232 19.8773 43.3267 20.7258 43.0515 21.55C42.5953 22.9141 41.9391 24.2029 41.1043 25.3743C40.5338 26.185 39.8736 26.9286 39.1361 27.591C38.7966 27.9083 38.5703 28.3155 38.5248 28.7915L38.3895 29.7866C38.0324 31.6741 37.2932 33.4687 36.2171 35.06L34.9046 36.9605C33.1616 39.2005 31.1025 40.6495 28.614 41.4183L28.047 41.5991L27.4368 41.7123C26.7135 41.8488 25.9668 41.9165 25.2411 41.8931H24.2238C23.8843 41.9165 23.5448 41.962 23.2053 42.0751C21.5533 42.6176 19.6295 42.8661 17.2763 42.8661V42.8673Z" opacity="0.8"/>
23
+ <path stroke="url(#ape_svg__paint2_linear_4532_195444)" stroke-miterlimit="10" stroke-width="0.224" d="M17.2575 40.9935C15.854 40.9935 14.4739 40.9025 13.32 40.8126L13.0937 40.7893L12.8674 40.766C12.6632 40.7438 12.4369 40.7216 12.2105 40.6995C11.1255 40.5863 9.47236 40.4055 7.61736 39.5223L7.36769 39.4091L7.14136 39.2738C3.58886 37.2823 2.27636 34.34 1.41653 32.394C1.34886 32.2353 1.25786 32.0323 1.19019 31.8736C0.84773 31.1755 0.567424 30.4486 0.352526 29.7013L0.308193 29.5881L0.28486 29.475C-0.235474 27.62 -0.370807 26.0356 -0.144474 24.5423C0.0818598 23.0256 0.692026 21.6 1.73386 20.0833L1.86919 19.9025L2.00453 19.7216C2.09553 19.6085 2.16319 19.4953 2.25419 19.4055L2.77453 18.4325C2.95536 18.1151 3.06853 17.7756 3.11286 17.414C3.45353 15.2416 4.49419 13.6806 4.96903 12.955C4.99236 12.9106 5.03786 12.8651 5.06003 12.843L5.17319 12.6843C5.2261 12.5744 5.27132 12.461 5.30853 12.3448C5.35519 12.2083 5.42169 12.0053 5.46719 11.8245C5.58036 10.8958 5.80669 9.99162 6.12403 9.10846L6.16836 8.99529L6.21503 8.88212C6.23719 8.79229 6.28153 8.72346 6.32703 8.56596C6.55336 7.86362 6.98386 6.57446 8.13769 5.17096L8.52269 4.69613L8.92986 4.33446C10.066 3.30162 11.419 2.53624 12.8895 2.09446C13.7438 1.84099 14.6248 1.68867 15.5145 1.64062H16.1259C16.8959 1.64062 17.6425 1.73162 18.3892 1.93462C19.0267 2.09502 19.7005 2.02306 20.2897 1.73162C21.2394 1.27896 22.5064 0.780792 23.9787 0.599958C24.0685 0.576625 24.1595 0.576625 24.2272 0.554458C24.408 0.531125 24.702 0.486792 25.0649 0.464625C25.9291 0.374127 26.7975 0.328565 27.6665 0.328125C29.5215 0.328125 31.0837 0.554458 32.4639 1.03046L32.5549 1.07479L32.6447 1.12146C35.8134 2.31962 37.2169 3.88179 38.303 5.26196C38.5515 5.55596 38.5737 5.60029 38.7324 5.75896L38.9365 5.94096L39.0042 6.03079C40.007 6.78589 40.859 7.72263 41.516 8.79229L41.6969 9.08629L41.8555 9.38029C43.2357 12.164 42.8052 14.698 42.6022 15.9206L42.5789 15.9883C42.4414 16.8837 42.1905 17.7579 41.8322 18.59V18.6588C41.7394 19.4512 41.565 20.232 41.3119 20.9886C40.9305 22.1824 40.3576 23.3061 39.6155 24.316C38.9986 25.2003 38.2594 25.9926 37.4199 26.6691C37.2169 26.8278 37.0582 27.0308 36.945 27.2571C36.8328 27.4835 36.7635 27.7288 36.7409 27.9805C36.7175 28.4798 36.651 28.9768 36.56 29.475C36.1295 31.7616 35.1344 33.3448 34.6362 34.137L33.6177 35.6303C32.101 37.6673 30.2927 38.9786 28.097 39.6588L27.6444 39.7941L27.1462 39.884C26.5262 39.9939 25.8975 40.047 25.2679 40.0426H24.4302L23.9099 40.066C23.5482 40.0881 23.1865 40.1336 22.847 40.269C21.2849 40.7671 19.4975 40.9935 17.2575 40.9935Z" opacity="0.8"/>
24
+ <path stroke="url(#ape_svg__paint3_linear_4532_195444)" stroke-miterlimit="10" stroke-width="0.208833" d="M17.2952 39.1367C15.9606 39.1367 14.6247 39.0469 13.5152 38.9559L13.3577 38.9325L13.1991 38.9104C12.9727 38.887 12.7242 38.8427 12.4991 38.8205C11.4794 38.7074 10.0771 38.5487 8.49272 37.8242L8.31189 37.7344L8.13105 37.6434C5.12105 35.9459 4.01272 33.4574 3.19722 31.6467C3.10496 31.4624 3.02202 31.2735 2.94872 31.0809C2.65401 30.4583 2.40448 29.8154 2.20205 29.157L2.17872 29.0672L2.11105 28.9995C1.22905 25.8764 1.56855 23.6807 3.28822 21.1689L3.37805 21.0335L3.46905 20.8982C3.58222 20.7617 3.69539 20.603 3.80739 20.4677C3.96722 20.2635 4.12472 20.0372 4.30672 19.8342C4.41872 19.6977 4.50972 19.5402 4.57739 19.3815L4.78155 18.8834C4.87139 18.657 4.91689 18.4307 4.94022 18.2044C5.12105 16.1907 6.09405 14.7429 6.56889 14.0184C6.61439 13.9729 6.65989 13.883 6.68205 13.8597L6.79522 13.6789L6.84072 13.6334C6.90839 13.5202 7.02155 13.2484 7.11255 12.9777C7.15689 12.7969 7.24789 12.5017 7.33889 12.2544V12.231C7.43261 11.3875 7.6301 10.5587 7.92689 9.76354L7.95022 9.69588L7.97239 9.62821C8.01789 9.49288 8.06222 9.37971 8.10772 9.21988C8.31189 8.60971 8.65139 7.56904 9.57772 6.41521L9.87289 6.05354L10.1669 5.78171C12.3626 3.79021 14.8056 3.63154 15.6211 3.56388H16.0959C17.0689 3.56388 18.0197 3.76687 18.9251 4.15188C19.0826 4.21954 19.2634 4.24288 19.4221 4.24288C19.5974 4.24332 19.7696 4.19614 19.9202 4.10637C20.7579 3.63154 22.2734 2.74954 24.2206 2.52321C24.3104 2.49988 24.4014 2.49988 24.4691 2.49988C24.6499 2.47654 24.9217 2.45437 25.2391 2.41004C26.0442 2.34093 26.8518 2.30318 27.6599 2.29688C29.3119 2.29688 30.6699 2.49987 31.8237 2.88487L31.8914 2.90821L31.9591 2.93038C34.6751 3.94888 35.8289 5.23804 36.8007 6.46071C37.0504 6.79904 37.1857 6.93554 37.4576 7.20738L37.6162 7.34271L37.7294 7.47804L37.8204 7.54688C38.2731 7.90854 39.1329 8.56421 39.9017 9.81021L40.0382 10.0354L40.1514 10.2617C41.2597 12.525 40.8981 14.562 40.7172 15.6482V15.7159C40.5811 16.5164 40.3533 17.2985 40.0382 18.0469L40.0149 18.1145C40.0149 18.1379 40.0149 18.1379 39.9916 18.1822C39.9694 18.2499 39.9694 18.3175 39.9694 18.3864L39.9472 18.4762C39.8771 19.1486 39.7251 19.81 39.4946 20.4455C39.1636 21.4584 38.675 22.4128 38.0467 23.2735C37.4779 24.1082 36.7741 24.8424 35.9642 25.4459C35.6236 25.6964 35.345 26.0217 35.1499 26.3967C34.9457 26.7817 34.8559 27.1889 34.8559 27.6182C34.8559 28.1385 34.7882 28.6822 34.6972 29.2025C34.3356 31.1485 33.5201 32.461 32.9997 33.2532L32.2531 34.3615C30.9406 36.1955 29.3796 37.3715 27.5012 37.9607L27.4102 37.9829C27.2527 38.0284 27.0941 38.0739 26.9354 38.096L26.8222 38.1194C26.3067 38.2093 25.7845 38.2546 25.2612 38.2547H24.3781C24.1296 38.2547 23.8122 38.278 23.5416 38.278C23.1566 38.3002 22.7949 38.3679 22.4332 38.5032C21.0741 38.9115 19.4232 39.1367 17.2952 39.1367Z" opacity="0.8"/>
25
+ <path stroke="url(#ape_svg__paint4_linear_4532_195444)" stroke-miterlimit="10" stroke-width="0.193667" d="M17.3007 37.2159C16.0104 37.2159 14.7434 37.1249 13.6572 37.035H13.5441L13.4309 37.0117C13.1824 36.9662 12.9106 36.944 12.6609 36.9219C11.7112 36.8087 10.5341 36.6955 9.26706 36.0842L9.13172 36.0165L9.01856 35.9489C6.55106 34.5675 5.62356 32.4862 4.90022 30.812C4.80922 30.6079 4.71822 30.4037 4.62839 30.1774C4.3662 29.6373 4.14659 29.0775 3.97156 28.5032L3.94822 28.4355L3.92606 28.3679C3.20272 25.7872 3.45122 24.1585 4.85472 22.1215L4.92239 22.0317L4.99006 21.9407C5.10322 21.782 5.21639 21.6467 5.32956 21.488C5.69122 21.0132 6.05289 20.5384 6.57439 19.9714C6.68637 19.845 6.75718 19.6875 6.77739 19.5199L6.80072 18.9995L6.77739 18.7954V18.5912C6.82406 16.917 7.66056 15.6722 8.11322 14.9932C8.15872 14.9255 8.22639 14.8357 8.24856 14.7902L8.31622 14.677L8.38506 14.586C8.47489 14.4507 8.67906 13.9747 8.85989 13.5454C8.92756 13.3645 9.01856 13.0029 9.13172 12.7077C9.15506 12.6179 9.15506 12.5945 9.17606 12.3915C9.25403 11.689 9.41378 10.9979 9.65206 10.3324L9.67539 10.2857L9.69756 10.2414C9.76522 10.0605 9.81072 9.92521 9.87839 9.74321C10.0592 9.20071 10.3311 8.40854 11.0322 7.52654L11.2364 7.27687L11.4394 7.09604C12.9794 5.71588 14.6302 5.44404 15.7619 5.37638H16.1014C17.0522 5.37638 18.2061 5.82904 18.8162 6.12304C18.9565 6.19489 19.1113 6.2336 19.2689 6.23621C19.4276 6.23621 19.5862 6.21288 19.7449 6.16854C20.1299 6.03204 20.4916 5.87454 20.8299 5.69254C21.5999 5.23988 22.8669 4.51654 24.4512 4.33571C24.5422 4.31238 24.6099 4.31238 24.6776 4.31238C24.8362 4.28904 25.0859 4.26687 25.4009 4.22254C26.146 4.15329 26.8937 4.11553 27.6421 4.10938C29.0677 4.10938 30.2437 4.26687 31.1946 4.60637L31.2412 4.62971L31.2856 4.65304C33.5489 5.51171 34.4531 6.48471 35.3141 7.59304C35.5696 7.95059 35.8656 8.27747 36.1961 8.56721L36.2859 8.65704L36.3769 8.74804C36.4679 8.83787 36.5577 8.90671 36.6487 8.97437C37.0337 9.26837 37.6894 9.78871 38.2552 10.7395L38.3462 10.8749L38.4139 11.0335C39.2516 12.731 38.9797 14.3375 38.8211 15.2872V15.356C38.7121 16.0106 38.522 16.649 38.2552 17.2565C38.1889 17.418 38.1359 17.5846 38.0966 17.7547C38.0732 17.8679 38.0511 17.981 38.0511 18.0709L38.0289 18.1619C37.9649 18.7086 37.8437 19.247 37.6672 19.7684C37.3946 20.6003 36.9977 21.3862 36.4901 22.0994C35.7201 23.1844 34.8381 23.9544 33.7741 24.4525C33.5146 24.5684 33.2945 24.7574 33.1406 24.9962C32.9843 25.2325 32.8912 25.5048 32.8699 25.7872V26.059C32.9154 26.8745 32.9831 27.802 32.8022 28.775C32.5071 30.3594 31.8281 31.4234 31.3311 32.2144C31.3311 32.2144 29.0222 35.4274 26.9176 36.0842L26.6912 36.1519L26.4427 36.1974C26.0344 36.265 25.6284 36.3105 25.1979 36.3105H24.7686C24.6776 36.3105 24.5422 36.3105 24.3381 36.3339H24.2482C23.4327 36.356 22.6861 36.3782 22.4597 36.4237C22.3466 36.447 22.2334 36.4692 22.1214 36.5147C21.0119 36.9895 19.4497 37.2159 17.3007 37.2159Z" opacity="0.8"/>
26
+ <path stroke="url(#ape_svg__paint5_linear_4532_195444)" stroke-miterlimit="10" stroke-width="0.193667" d="M17.2695 35.4268C16.048 35.4268 14.8254 35.337 13.7847 35.2681H13.6937C13.3997 35.2238 13.129 35.2005 12.8794 35.1783C11.9974 35.0873 11.0699 34.9741 10.0735 34.5215L10.0059 34.4993L9.9382 34.476C8.01437 33.391 7.28987 31.7833 6.61087 30.2223C6.52103 29.996 6.40787 29.7696 6.2947 29.5433C6.07055 29.0856 5.88858 28.6084 5.75103 28.1176V28.0721C5.16303 26.013 5.3217 24.9723 6.40787 23.388L6.4312 23.3436L6.45337 23.297C6.5887 23.1395 6.70187 22.982 6.81503 22.8455C7.33537 22.1665 7.78803 21.5785 8.80653 20.6276C8.88507 20.5546 8.94027 20.4601 8.9652 20.3558C8.99139 20.258 8.98315 20.1542 8.94187 20.0618L8.76103 19.5415C8.71634 19.3792 8.69358 19.2116 8.69337 19.0433V18.796C8.73887 17.6643 9.32687 16.7823 9.71187 16.1943C9.77953 16.1033 9.82503 16.0123 9.87053 15.9446L9.91487 15.877L9.96153 15.8081C10.1645 15.5375 10.504 14.7453 10.6849 14.2705C10.7645 13.9878 10.8551 13.7083 10.9567 13.4328C11.0244 13.2065 11.0699 12.9801 11.092 12.7538C11.1504 12.1891 11.2798 11.6341 11.477 11.1018V11.0563C11.5669 10.83 11.6345 10.6491 11.68 10.4683C11.8387 9.99346 12.0195 9.44979 12.5177 8.83846L12.6087 8.72529L12.6985 8.63546C13.7847 7.63913 14.9852 7.45829 15.8894 7.39063H16.0935C16.9977 7.39063 17.6767 7.75229 18.1294 8.00196L18.2425 8.04629H18.2659C18.4012 8.11512 18.4922 8.18279 18.6042 8.22829C18.876 8.36363 19.2155 8.40913 19.5095 8.31813C20.289 8.10495 21.0408 7.80109 21.7495 7.41279H21.7729C22.4519 7.00563 23.4925 6.41762 24.7152 6.28112C24.7829 6.25896 24.8727 6.25896 24.9415 6.25896C25.1593 6.22931 25.378 6.20674 25.5972 6.19129C26.2815 6.12263 26.9686 6.08487 27.6564 6.07812C28.879 6.07812 29.852 6.21346 30.5987 6.46312H30.643C32.4537 7.14213 33.1327 7.86546 33.8572 8.81629C34.1512 9.20129 34.4452 9.56296 34.9889 10.0378L35.0344 10.0845L35.0787 10.1288C35.2152 10.2641 35.3727 10.4006 35.5547 10.5371C35.8709 10.7845 36.3247 11.124 36.7085 11.7808L36.754 11.8485L36.7984 11.9161C37.3642 13.0933 37.1834 14.2028 37.048 15.0393V15.107C36.9632 15.6299 36.8111 16.1397 36.5954 16.6236C36.4785 16.8993 36.3951 17.188 36.3469 17.4835C36.3235 17.6643 36.3002 17.7996 36.278 17.9128L36.2547 18.0038C36.2103 18.4274 36.1195 18.8448 35.984 19.2486C35.7761 19.9054 35.4628 20.524 35.0565 21.0803C34.3775 22.0766 33.6087 22.688 32.5902 23.0053C32.1026 23.1574 31.6852 23.4784 31.413 23.9106L31.322 24.0226L31.2322 24.1358C30.9837 24.431 31.0514 25.5615 31.0969 26.2405C31.1412 26.9871 31.1867 27.7571 31.0502 28.4805C30.825 29.7253 30.2814 30.563 29.8065 31.2875C29.8065 31.2875 28.0414 33.8448 26.4349 34.3196L26.3217 34.3651L26.2085 34.3885C25.9021 34.4418 25.592 34.4718 25.281 34.4783H24.8284C24.7152 34.4783 24.5565 34.4783 24.2847 34.5005H24.2392C23.1764 34.546 22.5195 34.5681 22.1579 34.6358C21.9174 34.6797 21.6821 34.7481 21.4555 34.84C20.4825 35.225 19.17 35.4268 17.2695 35.4268Z" opacity="0.8"/>
27
+ </g>
28
+ </g>
19
29
  </g>
20
30
  </g>
21
31
  </g>
22
32
  <defs>
23
- <linearGradient id="ape_svg__e" x1="-.924" x2="37.097" y1="-2.182" y2="37.886" gradientUnits="userSpaceOnUse">
24
- <stop offset=".206" stop-color="#89D0FF"/>
25
- <stop offset=".398" stop-color="#EBBF9A"/>
26
- <stop offset=".602" stop-color="#EB80DA"/>
27
- <stop offset=".841" stop-color="#A281FF"/>
33
+ <radialGradient id="ape_svg__paint0_radial_4532_195444" cx="0" cy="0" r="1" gradientTransform="translate(21 23.1933) rotate(90) scale(23.59)" gradientUnits="userSpaceOnUse">
34
+ <stop offset="0.167" stop-color="#073183"/>
35
+ <stop offset="1" stop-color="#0054F9"/>
36
+ </radialGradient>
37
+ <linearGradient id="ape_svg__paint1_linear_4532_195444" x1="-1.08821" x2="43.2696" y1="-2.54168" y2="44.2043" gradientUnits="userSpaceOnUse">
38
+ <stop offset="0.206" stop-color="#89D0FF"/>
39
+ <stop offset="0.398" stop-color="#EBBF9A"/>
40
+ <stop offset="0.602" stop-color="#EB80DA"/>
41
+ <stop offset="0.841" stop-color="#A281FF"/>
28
42
  </linearGradient>
29
- <linearGradient id="ape_svg__f" x1=".696" x2="35.495" y1="-.565" y2="36.285" gradientUnits="userSpaceOnUse">
30
- <stop offset=".206" stop-color="#89D0FF"/>
31
- <stop offset=".398" stop-color="#EBBF9A"/>
32
- <stop offset=".602" stop-color="#EB8280"/>
33
- <stop offset=".841" stop-color="#A281FF"/>
43
+ <linearGradient id="ape_svg__paint2_linear_4532_195444" x1="0.777194" x2="41.376" y1="-0.658876" y2="42.3328" gradientUnits="userSpaceOnUse">
44
+ <stop offset="0.206" stop-color="#89D0FF"/>
45
+ <stop offset="0.398" stop-color="#EBBF9A"/>
46
+ <stop offset="0.602" stop-color="#EB8280"/>
47
+ <stop offset="0.841" stop-color="#A281FF"/>
34
48
  </linearGradient>
35
- <linearGradient id="ape_svg__g" x1="2.304" x2="33.873" y1="1.036" y2="34.657" gradientUnits="userSpaceOnUse">
36
- <stop offset=".206" stop-color="#89D0FF"/>
37
- <stop offset=".398" stop-color="#EBBF9A"/>
38
- <stop offset=".602" stop-color="#EB80E7"/>
39
- <stop offset=".841" stop-color="#A281FF"/>
49
+ <linearGradient id="ape_svg__paint3_linear_4532_195444" x1="2.69789" x2="39.5284" y1="1.24921" y2="40.4737" gradientUnits="userSpaceOnUse">
50
+ <stop offset="0.206" stop-color="#89D0FF"/>
51
+ <stop offset="0.398" stop-color="#EBBF9A"/>
52
+ <stop offset="0.602" stop-color="#EB80E7"/>
53
+ <stop offset="0.841" stop-color="#A281FF"/>
40
54
  </linearGradient>
41
- <linearGradient id="ape_svg__h" x1="3.908" x2="32.255" y1="2.646" y2="33.036" gradientUnits="userSpaceOnUse">
42
- <stop offset=".206" stop-color="#89D0FF"/>
43
- <stop offset=".398" stop-color="#EBBF9A"/>
44
- <stop offset=".602" stop-color="#EB80D3"/>
45
- <stop offset=".841" stop-color="#A281FF"/>
55
+ <linearGradient id="ape_svg__paint4_linear_4532_195444" x1="4.57356" x2="37.6451" y1="3.09437" y2="38.5494" gradientUnits="userSpaceOnUse">
56
+ <stop offset="0.206" stop-color="#89D0FF"/>
57
+ <stop offset="0.398" stop-color="#EBBF9A"/>
58
+ <stop offset="0.602" stop-color="#EB80D3"/>
59
+ <stop offset="0.841" stop-color="#A281FF"/>
46
60
  </linearGradient>
47
- <linearGradient id="ape_svg__i" x1="5.536" x2="30.657" y1="4.269" y2="31.44" gradientUnits="userSpaceOnUse">
48
- <stop offset=".206" stop-color="#89D0FF"/>
49
- <stop offset=".398" stop-color="#EBBF9A"/>
50
- <stop offset=".602" stop-color="#A280EB"/>
51
- <stop offset=".841" stop-color="#A281FF"/>
61
+ <linearGradient id="ape_svg__paint5_linear_4532_195444" x1="6.4382" x2="35.746" y1="5.02812" y2="36.7276" gradientUnits="userSpaceOnUse">
62
+ <stop offset="0.206" stop-color="#89D0FF"/>
63
+ <stop offset="0.398" stop-color="#EBBF9A"/>
64
+ <stop offset="0.602" stop-color="#A280EB"/>
65
+ <stop offset="0.841" stop-color="#A281FF"/>
52
66
  </linearGradient>
53
- <clipPath id="ape_svg__a">
54
- <path fill="#fff" d="M0 0h36v36H0z"/>
55
- </clipPath>
56
- <clipPath id="ape_svg__b">
57
- <path fill="#fff" d="M0 0h36v36H0z"/>
67
+ <clipPath id="ape_svg__clip0_4532_195444">
68
+ <rect width="42" height="42" fill="white"/>
58
69
  </clipPath>
59
- <radialGradient id="ape_svg__c" cx="0" cy="0" r="1" gradientTransform="matrix(0 20.22 -20.22 0 18 19.88)" gradientUnits="userSpaceOnUse">
60
- <stop offset=".167" stop-color="#073183"/>
61
- <stop offset="1" stop-color="#0054F9"/>
62
- </radialGradient>
63
70
  </defs>
64
71
  </svg>