@central-icons-react/round-outlined-radius-2-stroke-1 1.1.305 → 1.1.306
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconBanknote2/index.js +2 -2
- package/IconBanknote2/index.js.map +3 -3
- package/IconBanknote2/index.mjs +2 -2
- package/IconBanknote2/index.mjs.map +3 -3
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react/SKILL.md +1 -1
package/IconBanknote2/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var y=Object.create;var{getPrototypeOf:B,defineProperty:
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:I}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var b,j,C=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var l=o?b??=new WeakMap:j??=new WeakMap,d=l.get(r);if(d)return d}e=r!=null?y(B(r)):{};let a=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let i of m(r))if(!c.call(a,i))p(a,i,{get:h.bind(r,i),enumerable:!0});if(n)l.set(r,a);return a},f=(r)=>{var o=(k??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of m(r))if(!c.call(o,n))p(o,n,{get:h.bind(r,n),enumerable:!(e=I(r,n))||e.enumerable})}return k.set(r,o),o},k;var P=(r)=>r;function S(r,o){this[r]=P.bind(null,o)}var g=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var v={};g(v,{CentralIconBase:()=>u});module.exports=f(v);var t=C(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:n,ariaHidden:l=!0,style:d,mode:a="masked",maskId:i,...L})=>{let w=a!=="raw"&&!!i;return t.default.createElement("svg",{...L,"aria-hidden":l,role:l?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...d}},e&&!l&&t.default.createElement("title",null,e),w?t.default.createElement(t.default.Fragment,null,t.default.createElement("mask",{id:i,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},t.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),t.default.createElement("g",{fill:"none",style:{color:"#fff"}},r)),t.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${i})`})):r)};var G={};g(G,{default:()=>M,IconBanknote2:()=>x});module.exports=f(G);var s=C(require("react"));var x=s.default.memo((r)=>{return s.default.createElement(u,{...r,ariaLabel:"banknote-2,money, bill",maskId:"round-outlined-radius-2-stroke-1-IconBanknote2"},s.default.createElement("circle",{cx:"12",cy:"12",r:"2.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("rect",{x:"2",y:"5",width:"20",height:"14",rx:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),M=x;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=9196B68A8C51BDBB64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconBanknote2/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {masked ? (\n <>\n <mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <rect width=\"24\" height=\"24\" fill=\"#000\" />\n <g fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </g>\n </mask>\n <rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBanknote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"banknote-2,money, bill\" maskId=\"round-outlined-radius-2-stroke-1-IconBanknote2\"><
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBanknote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"banknote-2,money, bill\" maskId=\"round-outlined-radius-2-stroke-1-IconBanknote2\"><circle cx=\"12\" cy=\"12\" r=\"2.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"2\" y=\"5\" width=\"20\" height=\"14\" rx=\"2\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBanknote2;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,yEC9DY,IAAlB,sBAGO,IAAM,EAAkE,UAAM,KAAK,CAAC,IAAU,CACnG,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,yEC9DY,IAAlB,sBAGO,IAAM,EAAkE,UAAM,KAAK,CAAC,IAAU,CACnG,OAAO,wBAAs0B,EAAt0B,IAAqB,EAAO,UAAU,yBAAyB,OAAO,kDAAiD,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,6CAA6C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qDAAqD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,GAAG,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC90B,EAEc",
|
|
9
|
+
"debugId": "9196B68A8C51BDBB64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconBanknote2/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import r from"react";var l=({children:n,size:e=24,ariaLabel:i,color:a,ariaHidden:t=!0,style:p,mode:d="masked",maskId:s,...u})=>{let k=d!=="raw"&&!!s;return r.createElement("svg",{...u,"aria-hidden":t,role:t?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...p}},i&&!t&&r.createElement("title",null,i),k?r.createElement(r.Fragment,null,r.createElement("mask",{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement("rect",{width:"24",height:"24",fill:"#000"}),r.createElement("g",{fill:"none",style:{color:"#fff"}},n)),r.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):n)};import o from"react";var m=o.memo((n)=>{return o.createElement(l,{...n,ariaLabel:"banknote-2,money, bill",maskId:"round-outlined-radius-2-stroke-1-IconBanknote2"},o.createElement("circle",{cx:"12",cy:"12",r:"2.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("rect",{x:"2",y:"5",width:"20",height:"14",rx:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),x=m;export{x as default,m as IconBanknote2};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=585D9361BE94798A64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconBanknote2/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {masked ? (\n <>\n <mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <rect width=\"24\" height=\"24\" fill=\"#000\" />\n <g fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </g>\n </mask>\n <rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBanknote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"banknote-2,money, bill\" maskId=\"round-outlined-radius-2-stroke-1-IconBanknote2\"><
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBanknote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"banknote-2,money, bill\" maskId=\"round-outlined-radius-2-stroke-1-IconBanknote2\"><circle cx=\"12\" cy=\"12\" r=\"2.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"2\" y=\"5\" width=\"20\" height=\"14\" rx=\"2\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBanknote2;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAs0B,EAAt0B,IAAqB,EAAO,UAAU,yBAAyB,OAAO,kDAAiD,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,6CAA6C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qDAAqD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,GAAG,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC90B,EAEc",
|
|
9
|
+
"debugId": "585D9361BE94798A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|