@argent/x-shared 1.48.3 → 1.49.1

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.
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const p=require("./_assert.cjs"),u=require("./utils.cjs");function a(o,t,s,i){if(typeof o.setBigUint64=="function")return o.setBigUint64(t,s,i);const n=BigInt(32),h=BigInt(4294967295),e=Number(s>>n&h),r=Number(s&h),c=i?4:0,l=i?0:4;o.setUint32(t+c,e,i),o.setUint32(t+l,r,i)}const d=(o,t,s)=>o&t^~o&s,b=(o,t,s)=>o&t^o&s^t&s;class w extends u.Hash{constructor(t,s,i,n){super(),this.blockLen=t,this.outputLen=s,this.padOffset=i,this.isLE=n,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(t),this.view=u.createView(this.buffer)}update(t){p.exists(this);const{view:s,buffer:i,blockLen:n}=this;t=u.toBytes(t);const h=t.length;for(let e=0;e<h;){const r=Math.min(n-this.pos,h-e);if(r===n){const c=u.createView(t);for(;n<=h-e;e+=n)this.process(c,e);continue}i.set(t.subarray(e,e+r),this.pos),this.pos+=r,e+=r,this.pos===n&&(this.process(s,0),this.pos=0)}return this.length+=t.length,this.roundClean(),this}digestInto(t){p.exists(this),p.output(t,this),this.finished=!0;const{buffer:s,view:i,blockLen:n,isLE:h}=this;let{pos:e}=this;s[e++]=128,this.buffer.subarray(e).fill(0),this.padOffset>n-e&&(this.process(i,0),e=0);for(let f=e;f<n;f++)s[f]=0;a(i,n-8,BigInt(this.length*8),h),this.process(i,0);const r=u.createView(t),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");const l=c/4,g=this.get();if(l>g.length)throw new Error("_sha2: outputLen bigger than state");for(let f=0;f<l;f++)r.setUint32(4*f,g[f],h)}digest(){const{buffer:t,outputLen:s}=this;this.digestInto(t);const i=t.slice(0,s);return this.destroy(),i}_cloneInto(t){t||(t=new this.constructor),t.set(...this.get());const{blockLen:s,buffer:i,length:n,finished:h,destroyed:e,pos:r}=this;return t.length=n,t.pos=r,t.finished=h,t.destroyed=e,n%s&&t.buffer.set(i),t}}exports.Chi=d;exports.HashMD=w;exports.Maj=b;
@@ -0,0 +1,64 @@
1
+ import { exists as g, output as d } from "./_assert.js";
2
+ import { Hash as b, createView as p, toBytes as a } from "./utils.js";
3
+ function w(o, t, s, i) {
4
+ if (typeof o.setBigUint64 == "function")
5
+ return o.setBigUint64(t, s, i);
6
+ const n = BigInt(32), h = BigInt(4294967295), e = Number(s >> n & h), r = Number(s & h), c = i ? 4 : 0, u = i ? 0 : 4;
7
+ o.setUint32(t + c, e, i), o.setUint32(t + u, r, i);
8
+ }
9
+ const B = (o, t, s) => o & t ^ ~o & s, L = (o, t, s) => o & t ^ o & s ^ t & s;
10
+ class U extends b {
11
+ constructor(t, s, i, n) {
12
+ super(), this.blockLen = t, this.outputLen = s, this.padOffset = i, this.isLE = n, this.finished = !1, this.length = 0, this.pos = 0, this.destroyed = !1, this.buffer = new Uint8Array(t), this.view = p(this.buffer);
13
+ }
14
+ update(t) {
15
+ g(this);
16
+ const { view: s, buffer: i, blockLen: n } = this;
17
+ t = a(t);
18
+ const h = t.length;
19
+ for (let e = 0; e < h; ) {
20
+ const r = Math.min(n - this.pos, h - e);
21
+ if (r === n) {
22
+ const c = p(t);
23
+ for (; n <= h - e; e += n)
24
+ this.process(c, e);
25
+ continue;
26
+ }
27
+ i.set(t.subarray(e, e + r), this.pos), this.pos += r, e += r, this.pos === n && (this.process(s, 0), this.pos = 0);
28
+ }
29
+ return this.length += t.length, this.roundClean(), this;
30
+ }
31
+ digestInto(t) {
32
+ g(this), d(t, this), this.finished = !0;
33
+ const { buffer: s, view: i, blockLen: n, isLE: h } = this;
34
+ let { pos: e } = this;
35
+ s[e++] = 128, this.buffer.subarray(e).fill(0), this.padOffset > n - e && (this.process(i, 0), e = 0);
36
+ for (let f = e; f < n; f++)
37
+ s[f] = 0;
38
+ w(i, n - 8, BigInt(this.length * 8), h), this.process(i, 0);
39
+ const r = p(t), c = this.outputLen;
40
+ if (c % 4)
41
+ throw new Error("_sha2: outputLen should be aligned to 32bit");
42
+ const u = c / 4, l = this.get();
43
+ if (u > l.length)
44
+ throw new Error("_sha2: outputLen bigger than state");
45
+ for (let f = 0; f < u; f++)
46
+ r.setUint32(4 * f, l[f], h);
47
+ }
48
+ digest() {
49
+ const { buffer: t, outputLen: s } = this;
50
+ this.digestInto(t);
51
+ const i = t.slice(0, s);
52
+ return this.destroy(), i;
53
+ }
54
+ _cloneInto(t) {
55
+ t || (t = new this.constructor()), t.set(...this.get());
56
+ const { blockLen: s, buffer: i, length: n, finished: h, destroyed: e, pos: r } = this;
57
+ return t.length = n, t.pos = r, t.finished = h, t.destroyed = e, n % s && t.buffer.set(i), t;
58
+ }
59
+ }
60
+ export {
61
+ B as Chi,
62
+ U as HashMD,
63
+ L as Maj
64
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const H=require("./_md.cjs"),s=require("./utils.cjs"),S=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),b=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),f=new Uint32Array(64);class g extends H.HashMD{constructor(){super(64,32,8,!1),this.A=b[0]|0,this.B=b[1]|0,this.C=b[2]|0,this.D=b[3]|0,this.E=b[4]|0,this.F=b[5]|0,this.G=b[6]|0,this.H=b[7]|0}get(){const{A:d,B:o,C:x,D:e,E:a,F:i,G:c,H:r}=this;return[d,o,x,e,a,i,c,r]}set(d,o,x,e,a,i,c,r){this.A=d|0,this.B=o|0,this.C=x|0,this.D=e|0,this.E=a|0,this.F=i|0,this.G=c|0,this.H=r|0}process(d,o){for(let t=0;t<16;t++,o+=4)f[t]=d.getUint32(o,!1);for(let t=16;t<64;t++){const A=f[t-15],n=f[t-2],C=s.rotr(A,7)^s.rotr(A,18)^A>>>3,u=s.rotr(n,17)^s.rotr(n,19)^n>>>10;f[t]=u+f[t-7]+C+f[t-16]|0}let{A:x,B:e,C:a,D:i,E:c,F:r,G:h,H:l}=this;for(let t=0;t<64;t++){const A=s.rotr(c,6)^s.rotr(c,11)^s.rotr(c,25),n=l+A+H.Chi(c,r,h)+S[t]+f[t]|0,u=(s.rotr(x,2)^s.rotr(x,13)^s.rotr(x,22))+H.Maj(x,e,a)|0;l=h,h=r,r=c,c=i+n|0,i=a,a=e,e=x,x=n+u|0}x=x+this.A|0,e=e+this.B|0,a=a+this.C|0,i=i+this.D|0,c=c+this.E|0,r=r+this.F|0,h=h+this.G|0,l=l+this.H|0,this.set(x,e,a,i,c,r,h,l)}roundClean(){f.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}}const y=s.wrapConstructor(()=>new g);exports.SHA256=g;exports.sha256=y;
@@ -0,0 +1,115 @@
1
+ import { HashMD as m, Chi as p, Maj as u } from "./_md.js";
2
+ import { wrapConstructor as D, rotr as i } from "./utils.js";
3
+ const g = /* @__PURE__ */ new Uint32Array([
4
+ 1116352408,
5
+ 1899447441,
6
+ 3049323471,
7
+ 3921009573,
8
+ 961987163,
9
+ 1508970993,
10
+ 2453635748,
11
+ 2870763221,
12
+ 3624381080,
13
+ 310598401,
14
+ 607225278,
15
+ 1426881987,
16
+ 1925078388,
17
+ 2162078206,
18
+ 2614888103,
19
+ 3248222580,
20
+ 3835390401,
21
+ 4022224774,
22
+ 264347078,
23
+ 604807628,
24
+ 770255983,
25
+ 1249150122,
26
+ 1555081692,
27
+ 1996064986,
28
+ 2554220882,
29
+ 2821834349,
30
+ 2952996808,
31
+ 3210313671,
32
+ 3336571891,
33
+ 3584528711,
34
+ 113926993,
35
+ 338241895,
36
+ 666307205,
37
+ 773529912,
38
+ 1294757372,
39
+ 1396182291,
40
+ 1695183700,
41
+ 1986661051,
42
+ 2177026350,
43
+ 2456956037,
44
+ 2730485921,
45
+ 2820302411,
46
+ 3259730800,
47
+ 3345764771,
48
+ 3516065817,
49
+ 3600352804,
50
+ 4094571909,
51
+ 275423344,
52
+ 430227734,
53
+ 506948616,
54
+ 659060556,
55
+ 883997877,
56
+ 958139571,
57
+ 1322822218,
58
+ 1537002063,
59
+ 1747873779,
60
+ 1955562222,
61
+ 2024104815,
62
+ 2227730452,
63
+ 2361852424,
64
+ 2428436474,
65
+ 2756734187,
66
+ 3204031479,
67
+ 3329325298
68
+ ]), b = /* @__PURE__ */ new Uint32Array([
69
+ 1779033703,
70
+ 3144134277,
71
+ 1013904242,
72
+ 2773480762,
73
+ 1359893119,
74
+ 2600822924,
75
+ 528734635,
76
+ 1541459225
77
+ ]), h = /* @__PURE__ */ new Uint32Array(64);
78
+ class w extends m {
79
+ constructor() {
80
+ super(64, 32, 8, !1), this.A = b[0] | 0, this.B = b[1] | 0, this.C = b[2] | 0, this.D = b[3] | 0, this.E = b[4] | 0, this.F = b[5] | 0, this.G = b[6] | 0, this.H = b[7] | 0;
81
+ }
82
+ get() {
83
+ const { A: d, B: o, C: t, D: s, E: a, F: f, G: c, H: e } = this;
84
+ return [d, o, t, s, a, f, c, e];
85
+ }
86
+ // prettier-ignore
87
+ set(d, o, t, s, a, f, c, e) {
88
+ this.A = d | 0, this.B = o | 0, this.C = t | 0, this.D = s | 0, this.E = a | 0, this.F = f | 0, this.G = c | 0, this.H = e | 0;
89
+ }
90
+ process(d, o) {
91
+ for (let x = 0; x < 16; x++, o += 4)
92
+ h[x] = d.getUint32(o, !1);
93
+ for (let x = 16; x < 64; x++) {
94
+ const A = h[x - 15], n = h[x - 2], C = i(A, 7) ^ i(A, 18) ^ A >>> 3, H = i(n, 17) ^ i(n, 19) ^ n >>> 10;
95
+ h[x] = H + h[x - 7] + C + h[x - 16] | 0;
96
+ }
97
+ let { A: t, B: s, C: a, D: f, E: c, F: e, G: r, H: l } = this;
98
+ for (let x = 0; x < 64; x++) {
99
+ const A = i(c, 6) ^ i(c, 11) ^ i(c, 25), n = l + A + p(c, e, r) + g[x] + h[x] | 0, H = (i(t, 2) ^ i(t, 13) ^ i(t, 22)) + u(t, s, a) | 0;
100
+ l = r, r = e, e = c, c = f + n | 0, f = a, a = s, s = t, t = n + H | 0;
101
+ }
102
+ t = t + this.A | 0, s = s + this.B | 0, a = a + this.C | 0, f = f + this.D | 0, c = c + this.E | 0, e = e + this.F | 0, r = r + this.G | 0, l = l + this.H | 0, this.set(t, s, a, f, c, e, r, l);
103
+ }
104
+ roundClean() {
105
+ h.fill(0);
106
+ }
107
+ destroy() {
108
+ this.set(0, 0, 0, 0, 0, 0, 0, 0), this.buffer.fill(0);
109
+ }
110
+ }
111
+ const G = /* @__PURE__ */ D(() => new w());
112
+ export {
113
+ w as SHA256,
114
+ G as sha256
115
+ };
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./_assert.cjs");/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */const c=t=>new Uint32Array(t.buffer,t.byteOffset,Math.floor(t.byteLength/4)),i=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68,r=t=>t<<24&4278190080|t<<8&16711680|t>>>8&65280|t>>>24&255;function y(t){for(let e=0;e<t.length;e++)t[e]=r(t[e])}const p=Array.from({length:256},(t,e)=>e.toString(16).padStart(2,"0"));function l(t){o.bytes(t);let e="";for(let n=0;n<t.length;n++)e+=p[t[n]];return e}function f(t){if(typeof t!="string")throw new Error(`utf8ToBytes expected string, got ${typeof t}`);return new Uint8Array(new TextEncoder().encode(t))}function s(t){return typeof t=="string"&&(t=f(t)),o.bytes(t),t}class b{clone(){return this._cloneInto()}}function g(t){const e=u=>t().update(s(u)).digest(),n=t();return e.outputLen=n.outputLen,e.blockLen=n.blockLen,e.create=()=>t(),e}exports.Hash=b;exports.byteSwap=r;exports.byteSwap32=y;exports.bytesToHex=l;exports.isLE=i;exports.toBytes=s;exports.u32=c;exports.utf8ToBytes=f;exports.wrapConstructor=g;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./_assert.cjs");/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */const u=t=>new Uint32Array(t.buffer,t.byteOffset,Math.floor(t.byteLength/4)),i=t=>new DataView(t.buffer,t.byteOffset,t.byteLength),y=(t,e)=>t<<32-e|t>>>e,b=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68,r=t=>t<<24&4278190080|t<<8&16711680|t>>>8&65280|t>>>24&255;function p(t){for(let e=0;e<t.length;e++)t[e]=r(t[e])}const l=Array.from({length:256},(t,e)=>e.toString(16).padStart(2,"0"));function g(t){o.bytes(t);let e="";for(let n=0;n<t.length;n++)e+=l[t[n]];return e}function f(t){if(typeof t!="string")throw new Error(`utf8ToBytes expected string, got ${typeof t}`);return new Uint8Array(new TextEncoder().encode(t))}function s(t){return typeof t=="string"&&(t=f(t)),o.bytes(t),t}class w{clone(){return this._cloneInto()}}function x(t){const e=c=>t().update(s(c)).digest(),n=t();return e.outputLen=n.outputLen,e.blockLen=n.blockLen,e.create=()=>t(),e}exports.Hash=w;exports.byteSwap=r;exports.byteSwap32=p;exports.bytesToHex=g;exports.createView=i;exports.isLE=b;exports.rotr=y;exports.toBytes=s;exports.u32=u;exports.utf8ToBytes=f;exports.wrapConstructor=x;
@@ -1,12 +1,12 @@
1
1
  import { bytes as o } from "./_assert.js";
2
2
  /*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
3
- const y = (t) => new Uint32Array(t.buffer, t.byteOffset, Math.floor(t.byteLength / 4)), p = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68, r = (t) => t << 24 & 4278190080 | t << 8 & 16711680 | t >>> 8 & 65280 | t >>> 24 & 255;
4
- function l(t) {
3
+ const y = (t) => new Uint32Array(t.buffer, t.byteOffset, Math.floor(t.byteLength / 4)), p = (t) => new DataView(t.buffer, t.byteOffset, t.byteLength), l = (t, e) => t << 32 - e | t >>> e, x = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68, r = (t) => t << 24 & 4278190080 | t << 8 & 16711680 | t >>> 8 & 65280 | t >>> 24 & 255;
4
+ function b(t) {
5
5
  for (let e = 0; e < t.length; e++)
6
6
  t[e] = r(t[e]);
7
7
  }
8
8
  const c = /* @__PURE__ */ Array.from({ length: 256 }, (t, e) => e.toString(16).padStart(2, "0"));
9
- function x(t) {
9
+ function g(t) {
10
10
  o(t);
11
11
  let e = "";
12
12
  for (let n = 0; n < t.length; n++)
@@ -21,24 +21,26 @@ function i(t) {
21
21
  function u(t) {
22
22
  return typeof t == "string" && (t = i(t)), o(t), t;
23
23
  }
24
- class g {
24
+ class w {
25
25
  // Safe version that clones internal state
26
26
  clone() {
27
27
  return this._cloneInto();
28
28
  }
29
29
  }
30
- function b(t) {
30
+ function h(t) {
31
31
  const e = (f) => t().update(u(f)).digest(), n = t();
32
32
  return e.outputLen = n.outputLen, e.blockLen = n.blockLen, e.create = () => t(), e;
33
33
  }
34
34
  export {
35
- g as Hash,
35
+ w as Hash,
36
36
  r as byteSwap,
37
- l as byteSwap32,
38
- x as bytesToHex,
39
- p as isLE,
37
+ b as byteSwap32,
38
+ g as bytesToHex,
39
+ p as createView,
40
+ x as isLE,
41
+ l as rotr,
40
42
  u as toBytes,
41
43
  y as u32,
42
44
  i as utf8ToBytes,
43
- b as wrapConstructor
45
+ h as wrapConstructor
44
46
  };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=[{token:"accent-sky-blue",hex:"#29C5FF"},{token:"accent-yellow",hex:"#FFBF3D"},{token:"accent-brand",hex:"#FF875B"},{token:"accent-green",hex:"#2CD3A9"},{token:"accent-hot-pink",hex:"#FF5B81"}];exports.nameDataColors=e;
@@ -0,0 +1,2 @@
1
+ import { NameColor } from './types';
2
+ export declare const nameDataColors: NameColor[];
@@ -0,0 +1,25 @@
1
+ const e = [
2
+ {
3
+ token: "accent-sky-blue",
4
+ hex: "#29C5FF"
5
+ },
6
+ {
7
+ token: "accent-yellow",
8
+ hex: "#FFBF3D"
9
+ },
10
+ {
11
+ token: "accent-brand",
12
+ hex: "#FF875B"
13
+ },
14
+ {
15
+ token: "accent-green",
16
+ hex: "#2CD3A9"
17
+ },
18
+ {
19
+ token: "accent-hot-pink",
20
+ hex: "#FF5B81"
21
+ }
22
+ ];
23
+ export {
24
+ e as nameDataColors
25
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("../../node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/sha256.cjs"),h=require("lodash-es"),d=require("./colors.cjs"),l=require("./x-names.json.cjs");class m{constructor(t,e){this.nameList=t||l.default,this.colorList=e||d.nameDataColors}generate(t){const e=this.hashSeed(t),n=e.getUint32(0)%this.nameList.items.length,s=this.nameList.items[n],o=e.getUint32(4)%s.adjectives.length,i=s.adjectives[o],r=e.getUint32(8)%this.colorList.length,c=this.colorList[r];return{name:`${h.upperFirst(i)} ${s.name}`,emoji:s.emoji,color:c}}hashSeed(t){const e=a.sha256(new TextEncoder().encode(t));return new DataView(e.buffer,e.byteOffset,e.byteLength)}}exports.AccountNameGenerator=m;
@@ -0,0 +1,9 @@
1
+ import { GeneratedNameData, NameColor, NameDataList } from './types';
2
+ export declare class AccountNameGenerator {
3
+ nameList: NameDataList;
4
+ colorList: NameColor[];
5
+ constructor(nameList?: NameDataList, colorList?: NameColor[]);
6
+ generate(seed: string): GeneratedNameData;
7
+ private hashSeed;
8
+ }
9
+ export type * from './types';
@@ -0,0 +1,24 @@
1
+ import { sha256 as c } from "../../node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/sha256.js";
2
+ import { upperFirst as m } from "lodash-es";
3
+ import { nameDataColors as h } from "./colors.js";
4
+ import d from "./x-names.json.js";
5
+ class j {
6
+ constructor(t, e) {
7
+ this.nameList = t || d, this.colorList = e || h;
8
+ }
9
+ generate(t) {
10
+ const e = this.hashSeed(t), s = e.getUint32(0) % this.nameList.items.length, o = this.nameList.items[s], n = e.getUint32(4) % o.adjectives.length, i = o.adjectives[n], r = e.getUint32(8) % this.colorList.length, a = this.colorList[r];
11
+ return {
12
+ name: `${m(i)} ${o.name}`,
13
+ emoji: o.emoji,
14
+ color: a
15
+ };
16
+ }
17
+ hashSeed(t) {
18
+ const e = c(new TextEncoder().encode(t));
19
+ return new DataView(e.buffer, e.byteOffset, e.byteLength);
20
+ }
21
+ }
22
+ export {
23
+ j as AccountNameGenerator
24
+ };
@@ -0,0 +1,18 @@
1
+ export interface NameData {
2
+ emoji: string;
3
+ name: string;
4
+ adjectives: string[];
5
+ category: string;
6
+ }
7
+ export interface NameDataList {
8
+ items: NameData[];
9
+ }
10
+ export interface NameColor {
11
+ token: string;
12
+ hex: string;
13
+ }
14
+ export interface GeneratedNameData {
15
+ name: string;
16
+ emoji: string;
17
+ color: NameColor;
18
+ }
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=[{emoji:"ðŸŒļ",name:"Blossom",category:"plants",adjectives:["Blissful","Black","Blanched","Blooming","Beloved","Benevolent"]},{emoji:"ðŸŒđ",name:"Rose",category:"plants",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"🌚",name:"Hibiscus",category:"plants",adjectives:["Happy","Heroic","Hardy","Heavenly","Humble","Hopeful","Healthy","Hearty"]},{emoji:"ðŸŒŧ",name:"Sunflower",category:"plants",adjectives:["Super","Surgical","Subatomic","Sublime","Subtle","Sumptuous","Sunny"]},{emoji:"🌞",name:"Daisy",category:"plants",adjectives:["Dapper","Droopy","Dangerous","Daft","Dashing","Dauntless","Defiant"]},{emoji:"🌷",name:"Tulip",category:"plants",adjectives:["Tactical","Talented","Tactile","Tangible","Tenacious","Talismanic","Timely"]},{emoji:"ðŸŠŧ",name:"Hyacinth",category:"plants",adjectives:["Healthy","Hearty","Helpful","Heroic","Humble","Hilarious"]},{emoji:"🍀",name:"Clover",category:"plants",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"🍁",name:"Leaf",category:"plants",adjectives:["Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"🍄",name:"Mushroom",category:"plants",adjectives:["Magic","Monstrous","Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest"]},{emoji:"ðŸŠĻ",name:"Rock",category:"plants",adjectives:["Robust","Real","Relative","Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"ðŸŠĩ",name:"Log",category:"plants",adjectives:["Loopy","Large","Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"🊷",name:"Lotus",category:"plants",adjectives:["Loopy","Large","Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"ðŸŒą",name:"Seedling",category:"plants",adjectives:["Stellar","Savvy","Sparing","Sensitive","Swift","Synergistic","Steady"]},{emoji:"ðŸŒē",name:"Pine",category:"plants",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"ðŸŒģ",name:"Oak",category:"plants",adjectives:["Optimistic","Opulent","Observant","Olympic","Omnipotent","Ontological"]},{emoji:"ðŸŒī",name:"Palm",category:"plants",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"ðŸŒĩ",name:"Cactus",category:"plants",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ðŸĩ",name:"Monkey",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest"]},{emoji:"ðŸķ",name:"Dog",category:"animals",adjectives:["Dapper","Droopy","Dangerous","Daft","Dashing","Dauntless","Defiant"]},{emoji:"🐚",name:"Wolf",category:"animals",adjectives:["Wealthy","Wary","Wacky","Watchful","Wild","Witty","Wise"]},{emoji:"ðŸĶŠ",name:"Fox",category:"animals",adjectives:["Fabulous","Fantastic","Friendly","Faithful","Fortunate","Famous","Fungible"]},{emoji:"ðŸą",name:"Cat",category:"animals",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ðŸĶ",name:"Lion",category:"animals",adjectives:["Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"ðŸŊ",name:"Tiger",category:"animals",adjectives:["Tactical","Talkative","Talismanic","Tough","Talented","Tasteful"]},{emoji:"ðŸī",name:"Horse",category:"animals",adjectives:["Healthy","Hearty","Helpful","Heroic","Humble","Hilarious"]},{emoji:"ðŸŦŽ",name:"Moose",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest"]},{emoji:"ðŸĶ„",name:"Unicorn",category:"animals",adjectives:["Unique","United","Unionised","Universal","Unstoppable","Ubiquitous"]},{emoji:"ðŸŪ",name:"Cow",category:"animals",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"🐷",name:"Pig",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"🐗",name:"Boar",category:"animals",adjectives:["Bubbly","Brilliant","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"🐭",name:"Mouse",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest","Massive"]},{emoji:"🐰",name:"Rabbit",category:"animals",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"ðŸŧ",name:"Bear",category:"animals",adjectives:["Bubbly","Brilliant","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ðŸŧ‍❄ïļ",name:"Polar Bear",category:"animals",adjectives:["Bubbly","Brilliant","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ðŸĻ",name:"Koala",category:"animals",adjectives:["Keen","Kempt","Kinetic","Kind","Kilted","Kantian"]},{emoji:"🐞",name:"Panda",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"🐔",name:"Chicken",category:"animals",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy","Chuffed"]},{emoji:"ðŸĪ",name:"Chick",category:"animals",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy","Chuffed"]},{emoji:"ðŸĶ",name:"Bird",category:"animals",adjectives:["Bubbly","Burly","Balanced","Benevolent","Baffled","Bashful","Bemused"]},{emoji:"🐧",name:"Penguin",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"ðŸļ",name:"Frog",category:"animals",adjectives:["Frank","Fractional","Freaky","Freckly","Frizzy","Frosty","Fruitful"]},{emoji:"ðŸē",name:"Dragon",category:"animals",adjectives:["Draped","Dramatic","Drastic","Drafty","Defiant","Divine"]},{emoji:"🐙",name:"Octopus",category:"animals",adjectives:["Optimistic","Opulent","Observant","Olympic","Omnipotent","Ontological"]},{emoji:"🊞",name:"Jellyfish",category:"animals",adjectives:["Jammy","Jaunty","Joyful","Just","Jeweled","Jagged","Jestful"]},{emoji:"ðŸĶ€",name:"Crab",category:"animals",adjectives:["Crazy","Craggy","Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ðŸĶ‹",name:"Butterfly",category:"animals",adjectives:["Bubbly","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"🐜",name:"Ant",category:"animals",adjectives:["Acrobatic","Actual","Adaptive","Adventurous","Admirable","Aerial","Affable","Affluent","Agile"]},{emoji:"🐝",name:"Bee",category:"animals",adjectives:["Bubbly","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ðŸŠē",name:"Beetle",category:"animals",adjectives:["Bubbly","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"🐞",name:"Ladybird",category:"animals",adjectives:["Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"🐟",name:"Fish",category:"animals",adjectives:["Fluid","Flexible","Flashy","Flawless","Flowing","Free","Fresh"]},{emoji:"ðŸĄ",name:"Pufferfish",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal"]},{emoji:"🐚",name:"Shell",category:"animals",adjectives:["Sharp","Super","Surgical","Shapely","Shimmering","Shiny","Shredded"]},{emoji:"ðŸĶ",name:"Shrimp",category:"animals",adjectives:["Sharp","Super","Surgical","Shapely","Shimmering","Shiny","Shredded"]},{emoji:"🐒",name:"Monkey",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest","Massive"]},{emoji:"ðŸĶ‚",name:"Scorpion",category:"animals",adjectives:["Silent","Steady","Swift","Strong","Stealthy","Strategic","Skilled"]},{emoji:"ðŸĶƒ",name:"Turkey",category:"animals",adjectives:["Talented","Tactful","Tenacious","Thorough","Thoughtful","Thriving","Trusted"]},{emoji:"ðŸĶ§",name:"Orangutan",category:"animals",adjectives:["Optimistic","Opulent","Observant","Olympic","Omnipotent","Ontological"]},{emoji:"🐁",name:"Mouse",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest","Massive","Mighty"]},{emoji:"🐀",name:"Rat",category:"animals",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"🐇",name:"Rabbit",category:"animals",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"ðŸŋïļ",name:"Squirrel",category:"animals",adjectives:["Smart","Swift","Sneaky","Skilled","Spirited","Spontaneous","Spry"]},{emoji:"ðŸĶŦ",name:"Beaver",category:"animals",adjectives:["Busy","Bold","Bright","Brave","Beneficial","Boundless","Brilliant"]},{emoji:"ðŸĶ”",name:"Hedgehog",category:"animals",adjectives:["Happy","Hasty","Helpful","Humble","Honest","Heroic","Harmonious"]},{emoji:"ðŸĶ‡",name:"Bat",category:"animals",adjectives:["Bubbly","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ðŸĶĨ",name:"Sloth",category:"animals",adjectives:["Serene","Slow","Steady","Subtle","Smooth","Sleepy","Sweet"]},{emoji:"ðŸĶĶ",name:"Otter",category:"animals",adjectives:["Optimistic","Outgoing","Observant","Orderly","Original","Outstanding","Overjoyed"]},{emoji:"🐓",name:"Rooster",category:"animals",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue","Royal"]},{emoji:"ðŸĢ",name:"Chick",category:"animals",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy","Chuffed"]},{emoji:"ðŸĶ†",name:"Duck",category:"animals",adjectives:["Dapper","Daring","Dangerous","Daft","Dashing","Dauntless","Defiant"]},{emoji:"ðŸĶ‰",name:"Owl",category:"animals",adjectives:["Observant","Orderly","Original","Orthodox","Otherworldly","Outstanding","Overachieving"]},{emoji:"ðŸĶĪ",name:"Dodo",category:"animals",adjectives:["Dapper","Daring","Dangerous","Daft","Dashing","Dauntless","Defiant"]},{emoji:"ðŸĶœ",name:"Parrot",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal"]},{emoji:"ðŸĶ‍⮛",name:"Blackbird",category:"animals",adjectives:["Bold","Bright","Brave","Balanced","Boundless","Brilliant","Beautiful"]},{emoji:"ðŸŠŋ",name:"Goose",category:"animals",adjectives:["Graceful","Grand","Gregarious","Grounded","Growing","Genuine","Gifted"]},{emoji:"ðŸĒ",name:"Tortoise",category:"animals",adjectives:["Timeless","Thoughtful","Thorough","Tranquil","Traditional","Treasured","True"]},{emoji:"ðŸĶŽ",name:"Lizard",category:"animals",adjectives:["Lively","Logical","Lasting","Limitless","Luminous","Lucky","Luxurious"]},{emoji:"🐍",name:"Snake",category:"animals",adjectives:["Silent","Smooth","Swift","Sleek","Skilled","Sublime","Subtle"]},{emoji:"ðŸģ",name:"Whale",category:"animals",adjectives:["Wise","Wonderful","Watchful","Welcoming","Wholesome","Willing","Worthy"]},{emoji:"ðŸŠļ",name:"Coral",category:"animals",adjectives:["Colorful","Calm","Complex","Creative","Curious","Cheerful","Charming"]},{emoji:"ðŸĶž",name:"Lobster",category:"animals",adjectives:["Loyal","Lively","Lavish","Logical","Lasting","Laudable","Learned"]},{emoji:"ðŸĶ‘",name:"Squid",category:"animals",adjectives:["Swift","Smart","Smooth","Skilled","Sophisticated","Sporty","Snappy"]},{emoji:"🐌",name:"Snail",category:"animals",adjectives:["Steady","Smooth","Simple","Serene","Sincere","Skilled","Sweet"]},{emoji:"🐛",name:"Caterpillar",category:"animals",adjectives:["Curious","Creative","Careful","Cheerful","Clever","Calm","Cute"]},{emoji:"ðŸĶ—",name:"Cricket",category:"animals",adjectives:["Crazy","Craggy","Creative","Cheerful","Clever","Calm","Coordinated"]},{emoji:"🕷ïļ",name:"Spider",category:"animals",adjectives:["Silent","Swift","Skilled","Smart","Strategic","Steady","Strong"]},{emoji:"🍏",name:"Green Apple",category:"food",adjectives:["Able","Ambitious","Adaptable","Affable","Abstract","Academic","Absolute","Accessible"]},{emoji:"🍎",name:"Red Apple",category:"food",adjectives:["Able","Ambitious","Adaptable","Affable","Abstract","Academic","Absolute","Accessible"]},{emoji:"🍐",name:"Pear",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Perfect"]},{emoji:"🍊",name:"Orange",category:"food",adjectives:["Optimistic","Opulent","Observant","Olympic","Omnipotent","Ontological","Outstanding"]},{emoji:"🍋",name:"Lemon",category:"food",adjectives:["Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"🍌",name:"Banana",category:"food",adjectives:["Bubbly","Burly","Balanced","Benevolent","Baffled","Bashful","Bemused"]},{emoji:"🍉",name:"Watermelon",category:"food",adjectives:["Wacky","Wealthy","Wakeful","Wonderful","Wild","Watchful","Witty","Winning"]},{emoji:"🍇",name:"Grape",category:"food",adjectives:["Great","Gradiated","Grand","Groovy","Gracious","Grounded","Gregarious"]},{emoji:"🍓",name:"Strawberry",category:"food",adjectives:["Steel","Stellar","Steady","Strategic","Strong","Stable","Stark","Stacked"]},{emoji:"ðŸŦ",name:"Blueberry",category:"food",adjectives:["Brave","Bright","Brilliant","Bold","Bouncy","Balanced","Beautiful"]},{emoji:"🍒",name:"Cherry",category:"food",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy","Chuffed"]},{emoji:"🍑",name:"Peach",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pristine","Pure","Perfect"]},{emoji:"ðŸĨ­",name:"Mango",category:"food",adjectives:["Magical","Majestic","Masterful","Maverick","Mellow","Mighty","Mindful"]},{emoji:"ðŸĨĨ",name:"Coconut",category:"food",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ðŸĨ",name:"Kiwi",category:"food",adjectives:["Kind","Keen","Knightly","Knowing","Kinetic","Kindred","Kingly"]},{emoji:"🍅",name:"Tomato",category:"food",adjectives:["Tender","Tasty","Tactful","Talented","Tangible","Thorough","Thoughtful"]},{emoji:"🍆",name:"Aubergine",category:"food",adjectives:["Artistic","Authentic","Automated","Assertive","Astute","Attractive","Animated"]},{emoji:"ðŸĨ‘",name:"Avocado",category:"food",adjectives:["Active","Adaptable","Adept","Admired","Advanced","Adventurous","Affable"]},{emoji:"ðŸĨĶ",name:"Broccoli",category:"food",adjectives:["Brave","Bright","Brilliant","Bold","Bouncy","Balanced","Beautiful"]},{emoji:"ðŸĨŽ",name:"Lettuce",category:"food",adjectives:["Lively","Light","Lasting","Logical","Lucid","Luminous","Lustrous"]},{emoji:"ðŸŒķïļ",name:"Chilli",category:"food",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy"]},{emoji:"ðŸŦ‘",name:"Pepper",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pristine","Pure","Perfect"]},{emoji:"ðŸŒ―",name:"Corn",category:"food",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating"]},{emoji:"ðŸĨ•",name:"Carrot",category:"food",adjectives:["Caring","Cheerful","Clever","Creative","Calm","Careful","Captivating"]},{emoji:"ðŸŦ’",name:"Olive",category:"food",adjectives:["Observant","Original","Optimistic","Orderly","Outstanding","Outgoing","Orthodox"]},{emoji:"ðŸĨ”",name:"Potato",category:"food",adjectives:["Peaceful","Patient","Perky","Playful","Pleasant","Plucky","Proper"]},{emoji:"ðŸĨ",name:"Croissant",category:"food",adjectives:["Crispy","Crafty","Creative","Cultured","Curious","Careful","Cordial"]},{emoji:"ðŸĨ–",name:"Bread",category:"food",adjectives:["Bright","Balanced","Beautiful","Beneficial","Benevolent","Brave","Brilliant"]},{emoji:"ðŸĨĻ",name:"Pretzel",category:"food",adjectives:["Peaceful","Perfect","Perky","Playful","Pleasant","Plucky","Proper"]},{emoji:"🧀",name:"Cheese",category:"food",adjectives:["Charming","Cheerful","Cheesy","Chatty","Cheeky","Choice","Chief"]},{emoji:"ðŸĨš",name:"Egg",category:"food",adjectives:["Earnest","Eager","Easygoing","Eccentric","Educated","Efficient","Elegant"]},{emoji:"ðŸĨĐ",name:"Steak",category:"food",adjectives:["Steel","Stellar","Steady","Strategic","Strong","Stable","Stark"]},{emoji:"🌭",name:"Hotdog",category:"food",adjectives:["Happy","Heroic","Honest","Helpful","Humble","Hearty","Harmonious"]},{emoji:"🍔",name:"Burger",category:"food",adjectives:["Bold","Bright","Brave","Balanced","Boundless","Brilliant","Beautiful"]},{emoji:"🍟",name:"Fries",category:"food",adjectives:["Friendly","Fresh","Free","Fancy","Fair","Famous","Fantastic"]},{emoji:"🍕",name:"Pizza",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pristine","Pure","Perfect"]},{emoji:"ðŸŒŪ",name:"Taco",category:"food",adjectives:["Tactical","Talented","Tasteful","Tenacious","Thoughtful","Thorough","Timely"]},{emoji:"ðŸŒŊ",name:"Wrap",category:"food",adjectives:["Wise","Willing","Witty","Wonderful","Worthy","Watchful","Warm"]},{emoji:"ðŸĢ",name:"Sushi",category:"food",adjectives:["Super","Surgical","Sublime","Subtle","Sumptuous","Sunny","Superb"]},{emoji:"ðŸĶ",name:"Ice Cream",category:"food",adjectives:["Iconic","Ideal","Idyllic","Imaginative","Immaculate","Imperial","Impressive"]},{emoji:"ðŸŋ",name:"Popcorn",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pristine","Pure","Perfect"]},{emoji:"ðŸĐ",name:"Donut",category:"food",adjectives:["Dapper","Daring","Dazzling","Decent","Dedicated","Definite","Delightful"]},{emoji:"🍊",name:"Cookie",category:"food",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating"]}],a={items:e};exports.default=a;exports.items=e;