django-cfg 1.4.84__py3-none-any.whl → 1.4.85__py3-none-any.whl

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.

Potentially problematic release.


This version of django-cfg might be problematic. Click here for more details.

Files changed (86) hide show
  1. django_cfg/__init__.py +1 -1
  2. django_cfg/apps/dashboard/serializers/__init__.py +55 -0
  3. django_cfg/apps/dashboard/serializers/activity.py +38 -0
  4. django_cfg/apps/dashboard/serializers/apizones.py +26 -0
  5. django_cfg/apps/dashboard/serializers/base.py +16 -0
  6. django_cfg/apps/dashboard/serializers/charts.py +44 -0
  7. django_cfg/apps/dashboard/serializers/commands.py +26 -0
  8. django_cfg/apps/dashboard/serializers/overview.py +34 -0
  9. django_cfg/apps/dashboard/serializers/statistics.py +46 -0
  10. django_cfg/apps/dashboard/serializers/system.py +58 -0
  11. django_cfg/apps/dashboard/services/__init__.py +10 -1
  12. django_cfg/apps/dashboard/services/apizones_service.py +119 -0
  13. django_cfg/apps/dashboard/services/charts_service.py +266 -0
  14. django_cfg/apps/dashboard/services/commands_service.py +142 -0
  15. django_cfg/apps/dashboard/services/statistics_service.py +262 -104
  16. django_cfg/apps/dashboard/urls.py +25 -6
  17. django_cfg/apps/dashboard/views/__init__.py +23 -0
  18. django_cfg/apps/dashboard/views/activity_views.py +83 -0
  19. django_cfg/apps/dashboard/views/apizones_views.py +73 -0
  20. django_cfg/apps/dashboard/views/charts_views.py +159 -0
  21. django_cfg/apps/dashboard/views/commands_views.py +73 -0
  22. django_cfg/apps/dashboard/views/overview_views.py +92 -0
  23. django_cfg/apps/dashboard/views/statistics_views.py +105 -0
  24. django_cfg/apps/dashboard/views/system_views.py +73 -0
  25. django_cfg/modules/django_unfold/callbacks/main.py +7 -6
  26. django_cfg/modules/django_unfold/dashboard.py +1 -36
  27. django_cfg/modules/django_unfold/models/config.py +102 -73
  28. django_cfg/modules/django_unfold/tailwind.py +31 -79
  29. django_cfg/pyproject.toml +1 -1
  30. django_cfg/static/frontend/admin/404.html +1 -1
  31. django_cfg/static/frontend/admin/500.html +1 -1
  32. django_cfg/static/frontend/admin/_next/static/BembwiEtlu4eFl3OX7n1k/_buildManifest.js +1 -0
  33. django_cfg/static/frontend/admin/_next/static/chunks/23004-faae121bbfecc163.js +1 -0
  34. django_cfg/static/frontend/admin/_next/static/chunks/{20695.a7d37b6c40ad3f58.js → 43076.55dd23b6cd68edb0.js} +1 -1
  35. django_cfg/static/frontend/admin/_next/static/chunks/50314-3b9d15242191c8bc.js +1 -0
  36. django_cfg/static/frontend/admin/_next/static/chunks/{64330.2ef79bccd7d4e363.js → 64330.41858e98c0e5173b.js} +1 -1
  37. django_cfg/static/frontend/admin/_next/static/chunks/6766.8d01e44e83070e83.js +1 -0
  38. django_cfg/static/frontend/admin/_next/static/chunks/{96168.eb7fdb721b9cdb00.js → 96168.b7197f890097df6e.js} +1 -1
  39. django_cfg/static/frontend/admin/_next/static/chunks/pages/{404-c283223d1afd02a2.js → 404-cf71cd7b3cb005e5.js} +1 -1
  40. django_cfg/static/frontend/admin/_next/static/chunks/pages/{500-389d6d3e1f2f7fda.js → 500-ff19c7842e3df415.js} +1 -1
  41. django_cfg/static/frontend/admin/_next/static/chunks/pages/_app-f62e5528fbcbb6b3.js +272 -0
  42. django_cfg/static/frontend/admin/_next/static/chunks/pages/{_error-5291033275c26d09.js → _error-87f3fdc2aa131e77.js} +1 -1
  43. django_cfg/static/frontend/admin/_next/static/chunks/pages/{index-d7bc30185f52cbca.js → index-69f737d4802cc5b7.js} +1 -1
  44. django_cfg/static/frontend/admin/_next/static/chunks/pages/private/centrifugo-f24beb6ed3955aa8.js +1 -0
  45. django_cfg/static/frontend/admin/_next/static/chunks/pages/private/{profile-e93a65e8e7d9022b.js → profile-b8045f993287f1a7.js} +1 -1
  46. django_cfg/static/frontend/admin/_next/static/chunks/pages/private/{ui-669e8f2a785beba2.js → ui-373fff8b42878e64.js} +1 -1
  47. django_cfg/static/frontend/admin/_next/static/chunks/pages/private-fe9faa86ecdb0ce6.js +1 -0
  48. django_cfg/static/frontend/admin/_next/static/chunks/{webpack-92add5f95c66e349.js → webpack-7c456a65e96eb97e.js} +1 -1
  49. django_cfg/static/frontend/admin/_next/static/css/5f9a37b6e6a72303.css +3 -0
  50. django_cfg/static/frontend/admin/auth.html +1 -1
  51. django_cfg/static/frontend/admin/index.html +1 -1
  52. django_cfg/static/frontend/admin/legal/cookies.html +1 -1
  53. django_cfg/static/frontend/admin/legal/privacy.html +1 -1
  54. django_cfg/static/frontend/admin/legal/security.html +1 -1
  55. django_cfg/static/frontend/admin/legal/terms.html +1 -1
  56. django_cfg/static/frontend/admin/private/centrifugo.html +1 -1
  57. django_cfg/static/frontend/admin/private/profile.html +1 -1
  58. django_cfg/static/frontend/admin/private/ui.html +1 -1
  59. django_cfg/static/frontend/admin/private.html +1 -1
  60. django_cfg/templates/admin/index.html +237 -5
  61. django_cfg/templates/admin/sections/commands_section.html +5 -0
  62. django_cfg/templates/admin/sections/documentation_section.html +5 -0
  63. django_cfg/templates/admin/sections/overview_section.html +5 -0
  64. django_cfg/templates/admin/sections/stats_section.html +5 -0
  65. django_cfg/templates/admin/sections/system_section.html +5 -0
  66. django_cfg/templates/admin/sections/widgets_section.html +11 -0
  67. django_cfg/templates/unfold/layouts/skeleton.html +27 -0
  68. django_cfg/templatetags/django_cfg.py +53 -0
  69. {django_cfg-1.4.84.dist-info → django_cfg-1.4.85.dist-info}/METADATA +1 -1
  70. {django_cfg-1.4.84.dist-info → django_cfg-1.4.85.dist-info}/RECORD +74 -51
  71. django_cfg/apps/dashboard/api/__init__.py +0 -27
  72. django_cfg/apps/dashboard/api/serializers.py +0 -165
  73. django_cfg/apps/dashboard/api/viewsets.py +0 -257
  74. django_cfg/static/frontend/admin/_next/static/-Zk0eDB7OJOEFrFyR5BwZ/_buildManifest.js +0 -1
  75. django_cfg/static/frontend/admin/_next/static/chunks/43076-4be6a9794e9c3e8b.js +0 -1
  76. django_cfg/static/frontend/admin/_next/static/chunks/50314-79c02212788f1ec7.js +0 -1
  77. django_cfg/static/frontend/admin/_next/static/chunks/6766.d62fed7cd4761148.js +0 -1
  78. django_cfg/static/frontend/admin/_next/static/chunks/82296-a2c8d38f62224be5.js +0 -1
  79. django_cfg/static/frontend/admin/_next/static/chunks/pages/_app-f25bec36bbdc9625.js +0 -272
  80. django_cfg/static/frontend/admin/_next/static/chunks/pages/private/centrifugo-22532c65971225eb.js +0 -1
  81. django_cfg/static/frontend/admin/_next/static/chunks/pages/private-a8a9ba76f2c75354.js +0 -1
  82. django_cfg/static/frontend/admin/_next/static/css/78d677ac1677c210.css +0 -3
  83. /django_cfg/static/frontend/admin/_next/static/{-Zk0eDB7OJOEFrFyR5BwZ → BembwiEtlu4eFl3OX7n1k}/_ssgManifest.js +0 -0
  84. {django_cfg-1.4.84.dist-info → django_cfg-1.4.85.dist-info}/WHEEL +0 -0
  85. {django_cfg-1.4.84.dist-info → django_cfg-1.4.85.dist-info}/entry_points.txt +0 -0
  86. {django_cfg-1.4.84.dist-info → django_cfg-1.4.85.dist-info}/licenses/LICENSE +0 -0
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[6766],{6766:(s,t,o)=>{o.r(t),o.d(t,{default:()=>p});var l=o(34226),e=o(94285),r=o(94513),i=(0,e.forwardRef)(({variant:s="branded",fallback:t,...o},e)=>(0,r.jsx)(l.h_,{fallback:t,...o,ref:e,children:"branded"===s&&(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)("path",{fill:"#374CE8",d:"m11.14 5.578-.08-1.6 1.3.905z"}),(0,r.jsx)("path",{fill:"#B96FD7",d:"m11.665 8.825-1.535-1.29 1.515.16z"}),(0,r.jsx)("path",{fill:"#CE7EDD",d:"m11.665 8.824-.025-1.12.81 1.285z"}),(0,r.jsx)("path",{fill:"#AF69DC",d:"m13.634 7.874-2-.17.81 1.285z"}),(0,r.jsx)("path",{fill:"url(#MIX__a)",d:"m12.899 6.41-1.265 1.3 1.995.165-.725-1.465z"}),(0,r.jsx)("path",{fill:"#8354C3",d:"m11.185 6.781-1.06.76 1.515.16z"}),(0,r.jsx)("path",{fill:"url(#MIX__b)",d:"m11.065 3.965-.935 3.57 1.08-.76-.15-2.81z"}),(0,r.jsx)("path",{fill:"#365AF7",d:"m12.339 4.883-1.285-.9 1.285-.98z"}),(0,r.jsx)("path",{fill:"#2D4EF2",d:"M11.455 3.19 11.08 4l1.27-.98-.895.175z"}),(0,r.jsx)("path",{fill:"#3865FF",d:"m13.834 4.5-1.5-1.5v1.92z"}),(0,r.jsx)("path",{fill:"url(#MIX__c)",d:"M11.145 5.575 11.18 6.8l.465.91 1.26-1.3-.565-1.54-1.2.7z"}),(0,r.jsx)("path",{fill:"url(#MIX__d)",d:"m13.834 4.485-1.515.39.585 1.55z"}),(0,r.jsx)("path",{fill:"url(#MIX__e)",d:"m13.815 4.485-.92 1.934.735 1.46.185-3.4z"}),(0,r.jsx)("path",{fill:"#F6609A",d:"M9.37 13 6 11.9l2.585 3.13z"}),(0,r.jsx)("path",{fill:"url(#MIX__f)",d:"M6 15.734v-3.845l.8 2.695z"}),(0,r.jsx)("path",{fill:"url(#MIX__g)",d:"M6.8 14.615 6 11.9 8.575 15l-1.78-.38z"}),(0,r.jsx)("path",{fill:"url(#MIX__h)",d:"m7.505 17.16-1.5-1.43.78-1.155z"}),(0,r.jsx)("path",{fill:"#FD627F",d:"m8.625 15-1.85-.4.725 2.556z"}),(0,r.jsx)("path",{fill:"url(#MIX__i)",d:"m9.284 15.735-1.785 1.42 1.08-2.17z"}),(0,r.jsx)("path",{fill:"url(#MIX__j)",d:"m9.36 12.995-.78 2.01.725.765.864-.38L9.36 13z"}),(0,r.jsx)("path",{fill:"#E14B55",d:"m9.324 17.999-.05-2.255.89-.36z"}),(0,r.jsx)("path",{fill:"#FFD574",d:"m11.999 21-2.685-3.01 1.57-.4z"}),(0,r.jsx)("path",{fill:"url(#MIX__k)",d:"m10.91 17.605-.75-2.23L9.32 18l1.59-.39z"}),(0,r.jsx)("path",{fill:"#F4B356",d:"m11.985 18.374-1.1-.775 1.115 3.4 1.125-3.37z"}),(0,r.jsx)("path",{fill:"url(#MIX__l)",d:"m14.498 18.04-2.5 2.959 1.126-3.38z"}),(0,r.jsx)("path",{fill:"url(#MIX__m)",d:"M11.96 15.005 10.885 17.6l1.1.785 1.15-.755L11.96 15z"}),(0,r.jsx)("path",{fill:"url(#MIX__n)",d:"m11.954 15.03-1.06 2.57-1.54-4.6z"}),(0,r.jsx)("path",{fill:"url(#MIX__o)",d:"M14.534 13h-5.18l2.615 2.06z"}),(0,r.jsx)("path",{fill:"url(#MIX__p)",d:"M8.925 10.5 6 11.9 9.355 13h5.27L18 11.89l-2.985-1.39z"}),(0,r.jsx)("path",{fill:"url(#MIX__q)",d:"M12.075 11.943c1.055 0 1.91-.165 1.91-.37 0-.204-.855-.37-1.91-.37s-1.91.166-1.91.37.855.37 1.91.37"}),(0,r.jsx)("path",{fill:"url(#MIX__r)",d:"m14.5 15.74-.68-.395.7-2.35.834 1.99-.85.75z"}),(0,r.jsx)("path",{fill:"url(#MIX__s)",d:"m14.534 12.995-1.4 4.635-1.165-2.595L14.534 13z"}),(0,r.jsx)("path",{fill:"url(#MIX__t)",d:"m14.5 18.049-1.375-.425.7-2.29.675.39z"}),(0,r.jsx)("path",{fill:"url(#MIX__u)",d:"m16.48 17.25-1.981-1.53.86-.76 1.12 2.28z"}),(0,r.jsx)("path",{fill:"url(#MIX__v)",d:"M17.99 11.9 14.523 13l.825 2.01 2.64-3.115z"}),(0,r.jsx)("path",{fill:"url(#MIX__w)",d:"m17.22 14.574-1.87.435L18 11.884z"}),(0,r.jsx)("path",{fill:"url(#MIX__x)",d:"m17.998 15.709-.814-1.115.814-2.71z"}),(0,r.jsx)("path",{fill:"url(#MIX__y)",d:"m17.19 14.57-1.84.434 1.135 2.25.7-2.685z"}),(0,r.jsx)("path",{fill:"url(#MIX__z)",d:"m17.989 15.685-.805-1.11-.71 2.66z"}),(0,r.jsxs)("defs",{children:[(0,r.jsxs)("linearGradient",{id:"MIX__a",x1:"11.984",x2:"11.984",y1:"3",y2:"21",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#7187FE"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#8862E1"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__b",x1:"-.055",x2:"2.709",y1:"4.235",y2:"22.265",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#435DF9"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#4C42D3"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__c",x1:"16.028",x2:"7.235",y1:"7.468",y2:"13.512",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#2E42DE"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#6C42C4"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__d",x1:"15.742",x2:"7.307",y1:"5.042",y2:"13.65",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#3E78FD"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#4A70F7"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__e",x1:"7.044",x2:"15.686",y1:"12.529",y2:"9.849",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#8359E3"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#7562F3"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__f",x1:"4.35",x2:"5.477",y1:"6.252",y2:"19.753",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{offset:".43",stopColor:"#D13462"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#FF7073"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__g",x1:"7.328",x2:"16.762",y1:"5.73",y2:"17.905",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#AD214A"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#F67B72"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__h",x1:"8.48",x2:"11.293",y1:"5.02",y2:"21.358",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#FA7B62"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#FFCC6D"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__i",x1:"15.579",x2:"6.227",y1:"4.95",y2:"15.561",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#FF6088"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#FEC46C"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__j",x1:"11.886",x2:"11.886",y1:"3.973",y2:"21",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#830E36"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#EC4679"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__k",x1:"12",x2:"12",y1:"3.103",y2:"20.863",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#F15979"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#ED9748"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__l",x1:"17.038",x2:"4.929",y1:"5.822",y2:"18.285",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#FF5C8C"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#F1984C"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__m",x1:"11.947",x2:"11.947",y1:"3.027",y2:"21",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{offset:".27",stopColor:"#DB4B82"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#EF8F58"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__n",x1:"7.8",x2:"15.557",y1:"9.359",y2:"8.276",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#E67C8E"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#D55674"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__o",x1:"12.868",x2:"4.392",y1:"3.524",y2:"14.675",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#591560"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#C55070"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__p",x1:"8.74",x2:"16.676",y1:"19.236",y2:"17.653",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#C84083"}),(0,r.jsx)("stop",{offset:".43",stopColor:"#A53B98"}),(0,r.jsx)("stop",{offset:".53",stopColor:"#BB55B6"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#744FD7"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__q",x1:"8.435",x2:"19.607",y1:"22.944",y2:"20.494",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#220633"}),(0,r.jsx)("stop",{offset:".46",stopColor:"#3E0E55"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#370E65"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__r",x1:"12.058",x2:"12.058",y1:"3.918",y2:"21.164",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#C058BB"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#B63781"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__s",x1:"15.73",x2:"13.156",y1:"4.767",y2:"21.176",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#8C3078"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#E17269"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__t",x1:"12.24",x2:"12.24",y1:"3.165",y2:"20.833",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#EE919B"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#FBBF84"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__u",x1:"9.06",x2:"14.215",y1:"4.023",y2:"20.338",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#DB62B6"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#C03F89"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__v",x1:"7.835",x2:"10.563",y1:"17.59",y2:"7.143",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#9E408C"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#230E79"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__w",x1:"11.773",x2:"11.773",y1:"3.517",y2:"20.97",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{offset:".64",stopColor:"#260E76"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#9E408C"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__x",x1:"12.035",x2:"12.035",y1:"3.422",y2:"20.999",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#230D75"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#A04F93"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__y",x1:"12.815",x2:"11.954",y1:"3.1",y2:"20.997",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#57156D"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#DB7391"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__z",x1:"17.788",x2:"17.224",y1:"15.081",y2:"17.231",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#914089"}),(0,r.jsx)("stop",{offset:".96",stopColor:"#D78E83"})]})]})]})||"background"===s&&(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)("g",{clipPath:"url(#MIX__a)",children:[(0,r.jsx)("path",{fill:"#fff",d:"M24 0H0v24h24z"}),(0,r.jsx)("path",{fill:"#374CE8",d:"m11.235 6.292-.07-1.422 1.155.805z"}),(0,r.jsx)("path",{fill:"#B96FD7",d:"M11.702 9.178 10.338 8.03l1.347.142z"}),(0,r.jsx)("path",{fill:"#CE7EDD",d:"m11.702 9.177-.022-.995.72 1.142z"}),(0,r.jsx)("path",{fill:"#AF69DC",d:"m13.452 8.333-1.778-.151.72 1.142z"}),(0,r.jsx)("path",{fill:"url(#MIX__b)",d:"m12.799 7.031-1.125 1.156 1.774.146-.645-1.302z"}),(0,r.jsx)("path",{fill:"#8354C3",d:"m11.275 7.361-.942.676 1.347.142z"}),(0,r.jsx)("path",{fill:"url(#MIX__c)",d:"m11.17 4.857-.832 3.174.96-.676-.133-2.498z"}),(0,r.jsx)("path",{fill:"#365AF7",d:"m12.301 5.674-1.142-.8 1.142-.871z"}),(0,r.jsx)("path",{fill:"#2D4EF2",d:"m11.516 4.169-.333.72 1.129-.871-.796.155z"}),(0,r.jsx)("path",{fill:"#3865FF",d:"M13.63 5.333 12.298 4v1.707z"}),(0,r.jsx)("path",{fill:"url(#MIX__d)",d:"m11.24 6.289.031 1.089.413.809 1.12-1.156-.502-1.369-1.067.622z"}),(0,r.jsx)("path",{fill:"url(#MIX__e)",d:"m13.63 5.32-1.346.347.52 1.378z"}),(0,r.jsx)("path",{fill:"url(#MIX__f)",d:"m13.613 5.32-.818 1.72.654 1.298.164-3.023z"}),(0,r.jsx)("path",{fill:"#F6609A",d:"m9.662 12.889-2.995-.978 2.298 2.782z"}),(0,r.jsx)("path",{fill:"url(#MIX__g)",d:"M6.667 15.32V11.9l.711 2.396z"}),(0,r.jsx)("path",{fill:"url(#MIX__h)",d:"m7.378 14.324-.711-2.413 2.289 2.756-1.582-.338z"}),(0,r.jsx)("path",{fill:"url(#MIX__i)",d:"m8.004 16.587-1.333-1.271.693-1.027z"}),(0,r.jsx)("path",{fill:"#FD627F",d:"m9 14.666-1.645-.356.644 2.272z"}),(0,r.jsx)("path",{fill:"url(#MIX__j)",d:"m9.586 15.32-1.587 1.262.96-1.929z"}),(0,r.jsx)("path",{fill:"url(#MIX__k)",d:"M9.653 12.885 8.96 14.67l.644.68.77-.338-.72-2.124z"}),(0,r.jsx)("path",{fill:"#E14B55",d:"m9.622 17.332-.045-2.004.791-.32z"}),(0,r.jsx)("path",{fill:"#FFD574",d:"m11.999 20-2.387-2.676 1.396-.355z"}),(0,r.jsx)("path",{fill:"url(#MIX__l)",d:"M11.03 16.982 10.365 15l-.746 2.333 1.413-.346z"}),(0,r.jsx)("path",{fill:"#F4B356",d:"m11.987 17.665-.978-.688.99 3.022 1-2.996z"}),(0,r.jsx)("path",{fill:"url(#MIX__m)",d:"m14.22 17.369-2.222 2.63 1-3.004z"}),(0,r.jsx)("path",{fill:"url(#MIX__n)",d:"m11.964 14.672-.955 2.306.977.698 1.023-.671-1.045-2.338z"}),(0,r.jsx)("path",{fill:"url(#MIX__o)",d:"m11.959 14.693-.942 2.284-1.369-4.088z"}),(0,r.jsx)("path",{fill:"url(#MIX__p)",d:"M14.252 12.889H9.648l2.324 1.83z"}),(0,r.jsx)("path",{fill:"url(#MIX__q)",d:"m9.267 10.667-2.6 1.244 2.982.978h4.685l3-.987-2.654-1.235z"}),(0,r.jsx)("path",{fill:"url(#MIX__r)",d:"M12.067 11.95c.938 0 1.698-.147 1.698-.33 0-.18-.76-.328-1.698-.328s-1.698.147-1.698.329c0 .181.76.329 1.698.329"}),(0,r.jsx)("path",{fill:"url(#MIX__s)",d:"m14.222 15.325-.605-.351.622-2.09.743 1.77-.756.666z"}),(0,r.jsx)("path",{fill:"url(#MIX__t)",d:"m14.253 12.885-1.245 4.12-1.035-2.307 2.28-1.809z"}),(0,r.jsx)("path",{fill:"url(#MIX__u)",d:"M14.222 17.377 13 17l.622-2.035.6.346z"}),(0,r.jsx)("path",{fill:"url(#MIX__v)",d:"m15.981 16.667-1.76-1.36.765-.675.995 2.026z"}),(0,r.jsx)("path",{fill:"url(#MIX__w)",d:"m17.324 11.91-3.08.979.733 1.786 2.347-2.769z"}),(0,r.jsx)("path",{fill:"url(#MIX__x)",d:"m16.64 14.289-1.663.386 2.356-2.777z"}),(0,r.jsx)("path",{fill:"url(#MIX__y)",d:"m17.332 15.297-.724-.99.724-2.41z"}),(0,r.jsx)("path",{fill:"url(#MIX__z)",d:"m16.613 14.284-1.636.387 1.01 2 .622-2.387z"}),(0,r.jsx)("path",{fill:"url(#MIX__A)",d:"m17.323 15.276-.715-.987-.631 2.365z"})]}),(0,r.jsxs)("defs",{children:[(0,r.jsxs)("linearGradient",{id:"MIX__b",x1:"11.985",x2:"11.985",y1:"4",y2:"20",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#7187FE"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#8862E1"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__c",x1:"1.284",x2:"3.742",y1:"5.098",y2:"21.124",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#435DF9"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#4C42D3"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__d",x1:"15.58",x2:"7.765",y1:"7.972",y2:"13.344",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#2E42DE"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#6C42C4"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__e",x1:"15.326",x2:"7.828",y1:"5.815",y2:"13.467",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#3E78FD"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#4A70F7"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__f",x1:"7.594",x2:"15.276",y1:"12.47",y2:"10.088",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#8359E3"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#7562F3"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__g",x1:"5.2",x2:"6.202",y1:"6.891",y2:"18.892",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{offset:".43",stopColor:"#D13462"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#FF7073"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__h",x1:"7.848",x2:"16.234",y1:"6.426",y2:"17.249",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#AD214A"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#F67B72"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__i",x1:"8.871",x2:"11.372",y1:"5.795",y2:"20.318",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#FA7B62"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#FFCC6D"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__j",x1:"15.181",x2:"6.868",y1:"5.733",y2:"15.165",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#FF6088"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#FEC46C"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__k",x1:"11.899",x2:"11.899",y1:"4.865",y2:"20",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#830E36"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#EC4679"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__l",x1:"12",x2:"12",y1:"4.092",y2:"19.878",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#F15979"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#ED9748"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__m",x1:"16.479",x2:"5.714",y1:"6.509",y2:"17.587",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#FF5C8C"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#F1984C"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__n",x1:"11.953",x2:"11.953",y1:"4.024",y2:"20",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{offset:".27",stopColor:"#DB4B82"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#EF8F58"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__o",x1:"8.266",x2:"15.162",y1:"9.652",y2:"8.689",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#E67C8E"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#D55674"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__p",x1:"12.771",x2:"5.236",y1:"4.466",y2:"14.377",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#591560"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#C55070"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__q",x1:"9.102",x2:"16.157",y1:"18.432",y2:"17.025",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#C84083"}),(0,r.jsx)("stop",{offset:".43",stopColor:"#A53B98"}),(0,r.jsx)("stop",{offset:".53",stopColor:"#BB55B6"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#744FD7"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__r",x1:"8.831",x2:"18.762",y1:"21.728",y2:"19.551",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#220633"}),(0,r.jsx)("stop",{offset:".46",stopColor:"#3E0E55"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#370E65"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__s",x1:"12.052",x2:"12.052",y1:"4.816",y2:"20.146",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#C058BB"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#B63781"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__t",x1:"15.316",x2:"13.027",y1:"5.571",y2:"20.157",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#8C3078"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#E17269"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__u",x1:"12.213",x2:"12.213",y1:"4.147",y2:"19.852",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#EE919B"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#FBBF84"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__v",x1:"9.386",x2:"13.969",y1:"4.909",y2:"19.411",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#DB62B6"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#C03F89"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__w",x1:"8.298",x2:"10.723",y1:"16.969",y2:"7.683",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#9E408C"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#230E79"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__x",x1:"11.799",x2:"11.799",y1:"4.461",y2:"19.974",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{offset:".64",stopColor:"#260E76"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#9E408C"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__y",x1:"12.032",x2:"12.032",y1:"4.376",y2:"20",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#230D75"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#A04F93"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__z",x1:"12.724",x2:"11.959",y1:"4.089",y2:"19.998",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#57156D"}),(0,r.jsx)("stop",{offset:"1",stopColor:"#DB7391"})]}),(0,r.jsxs)("linearGradient",{id:"MIX__A",x1:"17.145",x2:"16.643",y1:"14.738",y2:"16.649",gradientUnits:"userSpaceOnUse",children:[(0,r.jsx)("stop",{stopColor:"#914089"}),(0,r.jsx)("stop",{offset:".96",stopColor:"#D78E83"})]}),(0,r.jsx)("clipPath",{id:"MIX__a",children:(0,r.jsx)("path",{fill:"#fff",d:"M0 0h24v24H0z"})})]})]})}));i.displayName="TokenMIX";var p=i}}]);