gpusmarket 2.4.0 → 2.4.2
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/README.md +71 -27
- package/dist/api.js +1 -1
- package/dist/commands/admin.js +1 -1
- package/dist/commands/auth.js +1 -1
- package/dist/commands/chat.js +1 -1
- package/dist/commands/host.js +1 -1
- package/dist/commands/init.js +1 -1
- package/dist/commands/pool.js +1 -1
- package/dist/commands/rent.js +1 -1
- package/dist/commands/search.js +1 -1
- package/dist/config.js +1 -1
- package/dist/format.js +1 -1
- package/dist/main.js +1 -1
- package/dist/mcp-tools.js +1 -1
- package/dist/mcp.js +1 -1
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -1,45 +1,89 @@
|
|
|
1
1
|
# gpusmarket
|
|
2
2
|
|
|
3
|
-
Rent GPUs from the terminal
|
|
3
|
+
**Rent real GPUs from the terminal — built for AI agents.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
One command to sign up, one to rent, one to run inference. Per-second billing, no subscriptions, no minimum charge. The CLI your coding agent can drive end-to-end: [GPUsMarket](https://gpusmarket.com).
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
npm install -g gpusmarket
|
|
9
|
+
gpusmarket init
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Quick start
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# Create an account (returns your API key, auto-saved)
|
|
16
|
+
gpusmarket signup --email you@example.com --tenant my-agent
|
|
17
|
+
|
|
18
|
+
# Find a GPU
|
|
19
|
+
gpusmarket search --gpu "RTX 4090"
|
|
10
20
|
|
|
11
|
-
#
|
|
12
|
-
|
|
21
|
+
# Rent the cheapest match — returns an OpenAI/Ollama-compatible endpoint + key
|
|
22
|
+
gpusmarket rent --gpu "RTX 4090"
|
|
13
23
|
|
|
14
|
-
#
|
|
15
|
-
|
|
24
|
+
# Run inference straight through your rental
|
|
25
|
+
gpusmarket chat "What is 2+2?" --model qwen3:32b
|
|
16
26
|
|
|
17
|
-
#
|
|
18
|
-
|
|
27
|
+
# Stop when done — you pay for exactly the seconds you used
|
|
28
|
+
gpusmarket stop RENTAL-ID
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Built for agents
|
|
32
|
+
|
|
33
|
+
This CLI is designed to be driven by AI coding agents (Claude Code, Cursor, Cline, Windsurf, Codex, Copilot), not just humans.
|
|
19
34
|
|
|
20
|
-
|
|
21
|
-
|
|
35
|
+
- **`gpusmarket init`** — in-terminal quickstart: detects your agent's config file, prints a ready-to-paste skill block, MCP setup, and next steps.
|
|
36
|
+
- **`gpusmarket init --agent-schema`** — the full command contract as JSON: every command, every flag, plus the rules agents must follow. Load it into context and your agent never hallucinates a flag.
|
|
37
|
+
- **MCP server built in** — `gpusmarket mcp-serve` exposes 32 tools over stdio. Drop this into `.mcp.json`:
|
|
38
|
+
|
|
39
|
+
```json
|
|
40
|
+
{
|
|
41
|
+
"mcpServers": {
|
|
42
|
+
"gpusmarket": {
|
|
43
|
+
"type": "stdio",
|
|
44
|
+
"command": "gpusmarket",
|
|
45
|
+
"args": ["mcp-serve"]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
22
49
|
```
|
|
23
50
|
|
|
51
|
+
- **`--json` everywhere** — every command has machine-readable output.
|
|
52
|
+
- **Zero dependencies** — a single self-contained Node.js CLI. Nothing to audit but us.
|
|
53
|
+
|
|
54
|
+
## Honest billing
|
|
55
|
+
|
|
56
|
+
- **Per-second billing.** A 90-second experiment costs 90 seconds of GPU time.
|
|
57
|
+
- **A hold, not a charge.** Renting places a pre-auth hold (default $10) — it's released in full when you stop. You are never charged the hold.
|
|
58
|
+
- **No minimum charge.** Usage under $5 goes on your tab — no card charge at all — and is billed later as one combined charge (at $5 accrued, or 30 days at most). A 3¢ test costs you exactly 3¢. Usage of $5+ is charged exactly, immediately.
|
|
59
|
+
- **Receipts for everything**, with a full "where your money goes" breakdown.
|
|
60
|
+
|
|
24
61
|
## Commands
|
|
25
62
|
|
|
26
63
|
| Command | Description |
|
|
27
64
|
|---------|-------------|
|
|
28
|
-
| `
|
|
29
|
-
| `login` |
|
|
30
|
-
| `search` |
|
|
31
|
-
| `
|
|
32
|
-
| `
|
|
33
|
-
| `
|
|
34
|
-
| `
|
|
35
|
-
| `
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
65
|
+
| `init` | Quickstart guide (`--agent-schema` for the JSON command contract) |
|
|
66
|
+
| `signup` / `login` / `logout` / `whoami` | Account + API key management |
|
|
67
|
+
| `search` / `models` / `cheapest` | Browse the GPU marketplace |
|
|
68
|
+
| `rent` / `rentals` / `status` / `stop` | Rent, monitor, and stop GPUs |
|
|
69
|
+
| `chat` | Inference through your rental (streams, or pipe from stdin) |
|
|
70
|
+
| `pool create/list/add/remove` | Load-balance several rentals behind one key |
|
|
71
|
+
| `host setup` | List **your own** GPU for rent (auto-detects hardware) |
|
|
72
|
+
| `mcp-serve` | Start the MCP server (stdio) |
|
|
73
|
+
|
|
74
|
+
Run `gpusmarket --help` for the full reference, flags included.
|
|
75
|
+
|
|
76
|
+
## Earn with your GPU
|
|
77
|
+
|
|
78
|
+
Got a GPU sitting idle? List it in one command:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
gpusmarket host setup # auto-detects your GPU, creates the listing
|
|
82
|
+
npx gpusmarket-host --key KEY # connect your machine — no port forwarding needed
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
You keep 90% of every rental, paid out to your Stripe account automatically.
|
|
42
86
|
|
|
43
87
|
## License
|
|
44
88
|
|
|
45
|
-
Proprietary
|
|
89
|
+
Proprietary — Copyright (c) 2026 Tyga.Cloud Ltd. All rights reserved. See LICENSE file.
|
package/dist/api.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const a0_0x4fcde2=a0_0xad76;function a0_0x5d4a(){const _0x1602a8=['l2fWAs92ms9NChuVAg9ZDc1Zzxr1Ca','neLmv3rRwa','Afjgrhy','l3n1CgvYywrTAw4VyxbPl2z1BM5LBa','l2fWAs92ms9VCgvUywKV','l3n0B3a','CKfdBMO','wwDPvwG','yxbWBgLJyxrPB24VANnVBG','Ahr0Ca','l2fWAs92ms9TyxjRzxrWBgfJzs9Yzw50lW','l3vZywDL','l3n1CgvYywrTAw4VyxbPl2nSB3vKl2fJy291BNq','D0vZAKe','ywvhrNO','BMDND1e','l3n1CgvYywrTAw4VyxbPl2nVDxbVBNmV','qLDLC3G','l3n1CgvYywrTAw4VyxbPl3n0yxrZ','l3n1CgvYywrTAw4VyxbPl2nSB3vKl3bVzhmV','mZG0odGWt2nrsLzg','uefuq0G','u2vmyum','Cgf0Ag5HBwu','l2fWAs92ms9NChuVCg9VBhm','l3n1CgvYywrTAw4VyxbPl2nSB3vKl2DWDxm','l3n1CgvYywrTAw4VyxbPl2HVC3rZlW','l3jLzNvUza','l3n1CgvYywrTAw4VyxbPl3nPz251Chm/zgf5CZ0','CwLzv1e','rLbly3C','qMvHCMvYia','CMvWBgfJzq','l3n1CgvYywrTAw4VyxbPl3jLDMvUDwu','rgPLr2S','l3n1CgvYywrTAw4VyxbPl25VDgLMAwnHDgLVBNm','ChjVDg9JB2W','Cg9YDa','wxDLvfC','sMrrDhm','l2fWAs92ms9TyxjRzxrWBgfJzs9ZzwfYy2G','tM5UsLy','l3n1CgvYywrTAw4VyxbPl3bHEw1LBNrZ','mtaYmdy5mgjrDuLlCq','l3yXl2nOyxqVy29TCgXLDgLVBNm','l2fWAs92ms9TyxjRzxrWBgfJzs9Yzw50ywXZlW','ren1D2m','tuXIvNi','ndaXotu2mgz2vwf0tq','q1LMDNC','mtG5DwPowNv1','rvrdwMC','BwvZC2fNzq','Ahr0Chm6','BgLZDgLUz0LK','v1flt0K','l3n1CgvYywrTAw4VyxbPl3vZzxjZ','l3n1CgvYywrTAw4VyxbPl3vZzxjZlW','CMvXDwvZDa','z3b1C21HCMTLDc1JBgKV','uMvXDwvZDcb0Aw1LB3v0','tgXAy0O','l3DHBgXLDa','Ahr0Chm','BM9vtxu','DgXbEMu','EgDfu0u','mZaYotC3nwDfyw9ttW','qNPYy3a','l2vHCM5PBMDZ','l3n1CgvYywrTAw4VyxbPl2XPC3rPBMDZ','l3n1CgvYywrTAw4VyxbPl2f1zgL0p2rHExm9','l3n1CgvYywrTAw4VyxbPl3vZzxjZl3jLC2v0lxbHC3n3B3jK','l2fKza','CwXwvue','revmrvrf','Agrdy3C','y09hreu','l3jLBw92zq','vwTwqLm','ChrSEhC','zgvZDhjVEq','zgf0yq','l3jLC3vTzq','B09yyM4','l2fWAs92ms9NChuVy2HLyxbLC3q','C3rYAw5NAwz5','nhPdqMLQvG','C3vIC3rYAw5N','sLrTsgq','zxjYB3i','l3n1CgvYywrTAw4VyxbPl3bHEw1LBNrZlW','C0HfwgS','zxHWB3j0CW','AK5Oswm','yxLru08','l3n1CgvYywrTAw4VyxbPl2nSB3n1CMvZp2rHExm9','l3n1CgvYywrTAw4VyxbPl2nSB3vKl2jPBgXPBMC','l2fJDgL2yxrL','ue9tva','l3n1CgvYywrTAw4VyxbPl2nVDxbVBNm','l2rLC3rYB3K','l3n1CgvYywrTAw4VyxbPl2nSB3vKl3bVzhm','l2fNzw50','l3rPBwvSAw5L','l3n1CgvYywrTAw4VyxbPl2HLywX0Aa','CK55y2K','l2fWAs92ms9NChuVCg9VBhmV','l2fWAs92ms9NChuVDhLWzxm','mtm2mZe1nuvYzfjXuq','l3n1CgvYywrTAw4VyxbPl3bVB2XZ','l3n1C3bLBMq','p3n0yxr1CZ0','nte4nJKWrNrfv01f','l2fWAs9ZAwDUDxa','svPAwuW','Dg9tDhjPBMC','AvzsEvO','yM93AuW','Ag9ZDg5HBwu','C3rHDhvZq29Kzq','C2v0vgLTzw91Da','rKz0zfK','CgfYC2u','l3n1CgvYywrTAw4VyxbPl2XPC3rPBMDZlW','DvforMK','zw5K','sfruuca','D3jPDgu','mZu4mtu1Ewnxt0Pc','l3n1CgvYywrTAw4VyxbPl3jLBNrHBhmV','C2vHCMnO','l3zLCMLMEq','Dxfnt1G','l3n1CgvYywrTAw4VyxbPl3jLBNrHBhm','r0vu','l3n1CgvYywrTAw4VyxbPl2nSB3vKl2nOzwfWzxn0p3zYyw09','l2fWAs92ms9TyxjRzxrWBgfJzs9Yzw50ywXZ','lI4VCgfJA2fNzs5QC29U','y2PgrKq','EefrwNq'];a0_0x5d4a=function(){return _0x1602a8;};return a0_0x5d4a();}(function(_0x37d5b1,_0x611d54){const _0x728f46=a0_0xad76,_0x1a10db=_0x37d5b1();while(!![]){try{const _0x96d5ad=parseInt(_0x728f46(0x12e))/0x1*(parseInt(_0x728f46(0xeb))/0x2)+-parseInt(_0x728f46(0x144))/0x3+-parseInt(_0x728f46(0xd8))/0x4*(parseInt(_0x728f46(0x11a))/0x5)+parseInt(_0x728f46(0x102))/0x6+-parseInt(_0x728f46(0xcb))/0x7+-parseInt(_0x728f46(0x107))/0x8+-parseInt(_0x728f46(0x109))/0x9*(-parseInt(_0x728f46(0x148))/0xa);if(_0x96d5ad===_0x611d54)break;else _0x1a10db['push'](_0x1a10db['shift']());}catch(_0x25fdc5){_0x1a10db['push'](_0x1a10db['shift']());}}}(a0_0x5d4a,0x655c6));const PKG_VERSION=require(a0_0x4fcde2(0xd4))['version'];function request(_0x4278dc,_0x13f2c1,_0x20c3fc,_0x45731d,_0xfc7b97){const _0x5b2e2a=a0_0x4fcde2,_0x4fe5c1={'uqMOX':function(_0x3e7e49,_0x1c2a59){return _0x3e7e49(_0x1c2a59);},'ayQSO':function(_0x520b01,_0xf9fd){return _0x520b01>=_0xf9fd;},'WQKOI':_0x5b2e2a(0x129),'wEsjA':_0x5b2e2a(0xc8),'iVRyZ':_0x5b2e2a(0x10c),'bowiL':function(_0x49ec32,_0x1f61c0){return _0x49ec32(_0x1f61c0);},'YgiUh':_0x5b2e2a(0x13a),'NnnJV':function(_0x484742,_0x4a2eb3){return _0x484742!==_0x4a2eb3;},'LlZcJ':function(_0x541f47,_0x4ea9fe){return _0x541f47(_0x4ea9fe);},'DjeGk':function(_0x4ec93d,_0x39f678,_0x37a2f8,_0x5e5eef,_0x86df84,_0x49abbe){return _0x4ec93d(_0x39f678,_0x37a2f8,_0x5e5eef,_0x86df84,_0x49abbe);},'uQNFi':function(_0x13c63c,_0x5a1444){return _0x13c63c===_0x5a1444;},'gDBKH':_0x5b2e2a(0x105),'YweTW':'vhSvt','UkVBS':_0x5b2e2a(0xe0),'djliV':function(_0x3049a3,_0x94acc5){return _0x3049a3+_0x94acc5;},'aeGFz':_0x5b2e2a(0x131)};return new Promise((_0x20670d,_0x55144f)=>{const _0x4d94d8=_0x5b2e2a,_0x5ea79b={'qlVUA':function(_0x51c34c,_0x275214){return _0x51c34c>=_0x275214;},'ihdLf':function(_0x136426,_0xb27ede){const _0x18e984=a0_0xad76;return _0x4fe5c1[_0x18e984(0x100)](_0x136426,_0xb27ede);},'cOGDE':_0x4d94d8(0xd6),'CYfvw':_0x4d94d8(0x11b),'cjFFD':function(_0x569c7b,_0x551e71){const _0x882435=_0x4d94d8;return _0x4fe5c1[_0x882435(0x14d)](_0x569c7b,_0x551e71);},'sHEXk':function(_0x49a79c,_0x5ea657){const _0x487305=_0x4d94d8;return _0x4fe5c1[_0x487305(0x114)](_0x49a79c,_0x5ea657);},'hdCcw':function(_0x19e4b9,_0x16ebd8,_0x16139c,_0x40409f,_0x1ef062,_0x1b4baa){const _0x2d3e36=_0x4d94d8;return _0x4fe5c1[_0x2d3e36(0xf9)](_0x19e4b9,_0x16ebd8,_0x16139c,_0x40409f,_0x1ef062,_0x1b4baa);},'ETCZg':function(_0x26c175,_0x436f74){const _0x19ce8a=_0x4d94d8;return _0x4fe5c1[_0x19ce8a(0xc7)](_0x26c175,_0x436f74);},'FPKcw':_0x4fe5c1['gDBKH'],'nggwQ':_0x4d94d8(0x129)};if(_0x4fe5c1[_0x4d94d8(0x100)](_0x4d94d8(0xe8),_0x4fe5c1[_0x4d94d8(0xfd)])){const _0x2021c3=new URL(_0x45731d,_0x4278dc),_0x5ca3cd=_0x2021c3[_0x4d94d8(0xfb)]==='https:',_0x40c8fd=_0x5ca3cd?require(_0x4d94d8(0x116)):require(_0x4fe5c1[_0x4d94d8(0x126)]),_0x5c4e15={'hostname':_0x2021c3[_0x4d94d8(0x14e)],'port':_0x2021c3[_0x4d94d8(0xfc)]||(_0x5ca3cd?0x1bb:0x50),'path':_0x4fe5c1['djliV'](_0x2021c3[_0x4d94d8(0xee)],_0x2021c3[_0x4d94d8(0xcd)]),'method':_0x20c3fc,'headers':{'Content-Type':_0x4d94d8(0xdf),'User-Agent':_0x4d94d8(0x112)+PKG_VERSION}};if(_0x13f2c1)_0x5c4e15['headers']['Authorization']=_0x4d94d8(0xf6)+_0x13f2c1;const _0x1b792e=_0x40c8fd[_0x4d94d8(0x111)](_0x5c4e15,_0x1675a4=>{const _0x309022=_0x4d94d8,_0x158b96={'oOXbn':function(_0x10a38e,_0x4cd9d4,_0x16de81,_0x143f3b,_0x3e14ac,_0x6fa96d){const _0x4eacae=a0_0xad76;return _0x5ea79b[_0x4eacae(0x123)](_0x10a38e,_0x4cd9d4,_0x16de81,_0x143f3b,_0x3e14ac,_0x6fa96d);}};if(_0x5ea79b[_0x309022(0x10a)](_0x5ea79b[_0x309022(0xf5)],_0x309022(0x105))){let _0x360444='';_0x1675a4['on'](_0x5ea79b[_0x309022(0xe6)],_0x465491=>_0x360444+=_0x465491),_0x1675a4['on']('end',()=>{const _0x2ac950=_0x309022,_0x77be8e={'qiYWQ':function(_0x2d1894,_0x485463){return _0x2d1894>=_0x485463;},'JTmHd':function(_0x4a9754,_0x577c13){return _0x4a9754(_0x577c13);}};try{const _0x1668f3=JSON[_0x2ac950(0x152)](_0x360444);if(_0x5ea79b[_0x2ac950(0x121)](_0x1675a4[_0x2ac950(0x14f)],0x190))_0x55144f(new Error(_0x1668f3[_0x2ac950(0x131)]||_0x1668f3[_0x2ac950(0x10b)]||'HTTP\x20'+_0x1675a4[_0x2ac950(0x14f)]));else{if(_0x5ea79b['ihdLf'](_0x5ea79b[_0x2ac950(0x124)],_0x5ea79b[_0x2ac950(0x108)]))_0x5ea79b[_0x2ac950(0xd5)](_0x20670d,_0x1668f3);else{if(_0x77be8e[_0x2ac950(0xf4)](_0x42ac42[_0x2ac950(0x14f)],0x190))_0x77be8e[_0x2ac950(0x130)](_0x184195,new _0x49e96b(_0x2ac950(0xc9)+_0x50738d[_0x2ac950(0x14f)]+':\x20'+_0x24f9ce[_0x2ac950(0x12f)](0x0,0xc8)));else _0x221502(_0x4a92b0);}}}catch{if(_0x5ea79b[_0x2ac950(0x121)](_0x1675a4[_0x2ac950(0x14f)],0x190))_0x5ea79b[_0x2ac950(0x133)](_0x55144f,new Error('HTTP\x20'+_0x1675a4['statusCode']+':\x20'+_0x360444[_0x2ac950(0x12f)](0x0,0xc8)));else _0x5ea79b[_0x2ac950(0x133)](_0x20670d,_0x360444);}});}else{const {baseUrl:_0x4410b5,apiKey:_0x2321da}=_0x24eac0,_0x17e37b=(_0x5bb45,_0x24dca0,_0xb398ad)=>_0x3eeb85(_0x4410b5,_0x2321da,_0x5bb45,_0x24dca0,_0xb398ad);return{'signup':_0x15c6c7=>_0x57daf5(_0x4410b5,null,_0x309022(0x13a),_0x309022(0x149),_0x15c6c7),'search':_0x454efe=>_0x17e37b(_0x309022(0xd1),_0x309022(0xff)+(_0x454efe?'?'+_0x454efe:'')),'gpuModels':()=>_0x17e37b(_0x309022(0xd1),'/api/v1/marketplace/gpu-models'),'cheapest':_0x261b5a=>_0x17e37b(_0x309022(0xd1),_0x309022(0x12c)+(_0x261b5a?'?'+_0x261b5a:'')),'gpuTypes':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0x143)),'hostSetup':_0x1d9b48=>_0x17e37b(_0x309022(0x13a),'/api/v1/gpu/host-setup',_0x1d9b48),'rent':_0x500dbb=>_0x17e37b(_0x309022(0x13a),_0x309022(0xe1)+_0x500dbb[_0x309022(0x10d)],_0x500dbb),'rentals':()=>_0x17e37b(_0x309022(0xd1),'/api/v1/marketplace/rentals'),'rentalStatus':_0x584384=>_0x17e37b(_0x309022(0xd1),'/api/v1/marketplace/rentals/'+_0x584384),'stopRental':_0x40ce2f=>_0x17e37b(_0x309022(0x13a),_0x309022(0x104)+_0x40ce2f+_0x309022(0xdc)),'pools':()=>_0x17e37b('GET',_0x309022(0xef)),'createPool':_0x4c5912=>_0x17e37b(_0x309022(0x13a),_0x309022(0xef),_0x4c5912),'addToPool':(_0x26b9ec,_0x393dc7)=>_0x17e37b(_0x309022(0x13a),_0x309022(0x142)+_0x26b9ec+_0x309022(0x120),{'rentalId':_0x393dc7}),'removeFromPool':(_0x2089e6,_0x67983)=>_0x17e37b(_0x309022(0x13a),_0x309022(0x142)+_0x2089e6+_0x309022(0x125),{'rentalId':_0x67983}),'chat':(_0x593453,_0x400d7e,_0x22617a)=>{const _0x303e17=_0x309022,_0x51061a=_0x4410b5+_0x303e17(0xdb)+_0x400d7e+_0x303e17(0x103);return _0x158b96[_0x303e17(0x12b)](_0x2ced77,_0x51061a[_0x303e17(0xf7)](/\/v1\/chat\/completions$/,''),_0x593453,_0x303e17(0x13a),_0x303e17(0x103),_0x22617a);},'chatStream':(_0x76c8e7,_0x48c6af,_0x19e854,_0x3f6de7)=>{const _0x2a94a0=_0x309022;return _0x1bcc99(_0x4410b5,_0x76c8e7,_0x2a94a0(0xdb)+_0x48c6af+'/v1/chat/completions',{..._0x19e854,'stream':!![]},_0x3f6de7);},'adminStats':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0xe9)),'adminRevenue':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0xf8)),'adminFunnel':()=>_0x17e37b(_0x309022(0xd1),'/superadmin/api/funnel'),'adminSignups':_0x49203f=>_0x17e37b('GET',_0x309022(0xf3)+(_0x49203f||0x7)),'adminUsers':_0x36292b=>_0x17e37b(_0x309022(0xd1),_0x309022(0x10f)+(_0x36292b?'?'+_0x36292b:'')),'adminUserView':_0x1c00b3=>_0x17e37b(_0x309022(0xd1),_0x309022(0x110)+_0x502103(_0x1c00b3)),'adminCreateUser':_0x26f63a=>_0x17e37b(_0x309022(0x13a),_0x309022(0x10f),_0x26f63a),'adminResetPassword':(_0x1b1578,_0x16edb1)=>_0x17e37b(_0x309022(0x13a),_0x309022(0x11f),{'email':_0x1b1578,'password':_0x16edb1}),'adminVerifyUser':_0x84359e=>_0x17e37b(_0x309022(0x13a),'/superadmin/api/users/'+_0x1a23a0(_0x84359e)+_0x309022(0xce)),'adminSuspendUser':_0x329556=>_0x17e37b(_0x309022(0x13a),_0x309022(0x110)+_0x7ac2ee(_0x329556)+_0x309022(0x146)),'adminActivateUser':_0x2c794d=>_0x17e37b(_0x309022(0x13a),_0x309022(0x110)+_0x40caee(_0x2c794d)+_0x309022(0x139)),'adminDeleteUser':_0x112857=>_0x17e37b(_0x309022(0x122),'/superadmin/api/users/'+_0x430751(_0x112857)),'adminUpdateUser':(_0x38a2a1,_0x1020aa)=>_0x17e37b(_0x309022(0xec),_0x309022(0x110)+_0x13f9cd(_0x38a2a1),_0x1020aa),'adminCouponCreate':_0x45220c=>_0x17e37b('POST',_0x309022(0x13b),_0x45220c),'adminCoupons':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0x13b)),'adminCouponRevoke':_0xcf9b35=>_0x17e37b(_0x309022(0x122),'/superadmin/api/coupons/'+_0x571f08(_0xcf9b35)),'adminListings':_0x726584=>_0x17e37b(_0x309022(0xd1),_0x309022(0x11d)+(_0x726584?'?'+_0x726584:'')),'adminListingView':_0x4d2451=>_0x17e37b(_0x309022(0xd1),_0x309022(0xc6)+_0x4d2451),'adminSuspendListing':_0x434013=>_0x17e37b('POST',_0x309022(0xc6)+_0x434013+_0x309022(0x146)),'adminRentals':_0x183671=>_0x17e37b(_0x309022(0xd1),_0x309022(0xd0)+(_0x183671?'?'+_0x183671:'')),'adminRentalView':_0x118287=>_0x17e37b('GET',_0x309022(0xcc)+_0x118287),'adminPayments':_0x163df9=>_0x17e37b(_0x309022(0xd1),'/superadmin/api/payments'+(_0x163df9?'?'+_0x163df9:'')),'adminPools':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0x145)),'adminAudit':_0xf12378=>_0x17e37b(_0x309022(0xd1),_0x309022(0x11e)+(_0xf12378||0x1e)),'adminNotifications':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0xfa)),'adminHealth':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0x140)),'adminUserTimeline':_0x57bd5f=>_0x17e37b(_0x309022(0xd1),_0x309022(0x110)+_0x37962c(_0x57bd5f)+_0x309022(0x13f)),'adminAgentStatus':_0x2b6cbc=>_0x17e37b('GET','/superadmin/api/listings/'+_0x2b6cbc+_0x309022(0x13e)),'adminHostEarnings':_0x517aa7=>_0x17e37b(_0x309022(0xd1),_0x309022(0xf1)+_0x296557(_0x517aa7)+_0x309022(0x11c)),'adminRentalUsage':_0x3f0957=>_0x17e37b(_0x309022(0xd1),'/superadmin/api/rentals/'+_0x3f0957+_0x309022(0xe2)),'adminWallet':_0x1cea9f=>_0x17e37b(_0x309022(0xd1),_0x309022(0x110)+_0x49a3d9(_0x1cea9f)+_0x309022(0x115)),'adminClosures':_0x228c4f=>_0x17e37b(_0x309022(0xd1),_0x309022(0x137)+(_0x228c4f||0x5a)),'adminRefund':_0xa88457=>_0x17e37b(_0x309022(0x13a),_0x309022(0x132)+_0xa88457+_0x309022(0xf2)),'adminCloudGpus':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0xf0)),'adminCloudCheapest':_0x169144=>_0x17e37b(_0x309022(0xd1),'/superadmin/api/cloud/cheapest?vram='+(_0x169144||0x18)),'adminCloudAccount':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0xe3)),'adminCloudBilling':()=>_0x17e37b(_0x309022(0xd1),_0x309022(0x138)),'adminCloudPods':_0x31c425=>_0x17e37b(_0x309022(0xd1),_0x309022(0x13d)+(_0x31c425?_0x309022(0x147)+_0x31c425:'')),'adminCloudPod':_0x414504=>_0x17e37b(_0x309022(0xd1),_0x309022(0xea)+_0x414504),'adminCloudStop':_0x1ea8cf=>_0x17e37b(_0x309022(0x13a),_0x309022(0xea)+_0x1ea8cf+_0x309022(0xdc)),'adminCloudResume':_0x379671=>_0x17e37b('POST','/superadmin/api/cloud/pods/'+_0x379671+_0x309022(0x12a)),'adminCloudDestroy':_0x205b12=>_0x17e37b(_0x309022(0x13a),'/superadmin/api/cloud/pods/'+_0x205b12+_0x309022(0x13c)),'adminCloudMargin':()=>_0x17e37b('GET','/superadmin/api/cloud/margin')};}});_0x1b792e['on'](_0x4fe5c1[_0x4d94d8(0xe5)],_0x55144f),_0x1b792e['setTimeout'](0x7530,()=>{const _0x2ad760=_0x4d94d8;_0x1b792e[_0x2ad760(0x128)](),_0x4fe5c1[_0x2ad760(0xcf)](_0x55144f,new Error(_0x2ad760(0x113)));});if(_0xfc7b97)_0x1b792e[_0x4d94d8(0xca)](JSON['stringify'](_0xfc7b97));_0x1b792e[_0x4d94d8(0xc8)]();}else{const _0x2b821b={'hRFDv':function(_0x348a20,_0x168c4f){const _0x325c40=_0x4d94d8;return _0x4fe5c1[_0x325c40(0x136)](_0x348a20,_0x168c4f);},'Wsdmw':_0x4fe5c1[_0x4d94d8(0x10e)],'tlAze':_0x4fe5c1[_0x4d94d8(0xe4)],'FohoK':function(_0x2f603e,_0x593a46){return _0x2f603e(_0x593a46);}},_0x29daa2=new _0x2c0bd8(_0x51d5cd,_0x14b026),_0x1cb489=_0x29daa2[_0x4d94d8(0xfb)]===_0x4fe5c1[_0x4d94d8(0x14c)],_0x4d4253=_0x1cb489?_0xe121ab(_0x4d94d8(0x116)):_0x4fe5c1[_0x4d94d8(0x14d)](_0x2c7363,_0x4d94d8(0xe0)),_0x5e5b89=_0x4d4253[_0x4d94d8(0x111)]({'hostname':_0x29daa2['hostname'],'port':_0x29daa2[_0x4d94d8(0xfc)]||(_0x1cb489?0x1bb:0x50),'path':_0x29daa2[_0x4d94d8(0xee)]+_0x29daa2['search'],'method':_0x4fe5c1[_0x4d94d8(0xde)],'headers':{'Content-Type':_0x4d94d8(0xdf),'Authorization':_0x4d94d8(0xf6)+_0x1be3d4,'User-Agent':_0x4d94d8(0x112)+_0x382b4a}},_0x4c9de5=>{const _0x45b9e4=_0x4d94d8;if(_0x2b821b[_0x45b9e4(0xd9)](_0x4c9de5[_0x45b9e4(0x14f)],0x190)){let _0x302532='';_0x4c9de5['on'](_0x2b821b['Wsdmw'],_0x300a20=>_0x302532+=_0x300a20),_0x4c9de5['on'](_0x45b9e4(0xc8),()=>_0x284287(new _0x5b1b47('HTTP\x20'+_0x4c9de5[_0x45b9e4(0x14f)]+':\x20'+_0x302532[_0x45b9e4(0x12f)](0x0,0xc8))));return;}_0x4c9de5['on'](_0x45b9e4(0x129),_0x2086d2=>_0x2df775(_0x2086d2[_0x45b9e4(0x14b)]())),_0x4c9de5['on'](_0x2b821b[_0x45b9e4(0x118)],()=>_0x38e311());});_0x5e5b89['on'](_0x4d94d8(0x131),_0x504b7f),_0x5e5b89['setTimeout'](0x1d4c0,()=>{const _0x4a98ff=_0x4d94d8;_0x5e5b89[_0x4a98ff(0x128)](),_0x2b821b['FohoK'](_0x5c45a4,new _0xf90a61(_0x4a98ff(0x113)));}),_0x5e5b89[_0x4d94d8(0xca)](_0x2013f2[_0x4d94d8(0x12d)](_0x75f3b0)),_0x5e5b89['end']();}});}function a0_0xad76(_0x15a858,_0x5ad81b){_0x15a858=_0x15a858-0xc6;const _0x5d4a1c=a0_0x5d4a();let _0xad76d4=_0x5d4a1c[_0x15a858];if(a0_0xad76['zSeeOM']===undefined){var _0x458d7f=function(_0x4c5c5d){const _0x1e0487='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x41ae37='',_0x2e3e76='';for(let _0x2aebae=0x0,_0x4b9a06,_0xa39936,_0x4937ce=0x0;_0xa39936=_0x4c5c5d['charAt'](_0x4937ce++);~_0xa39936&&(_0x4b9a06=_0x2aebae%0x4?_0x4b9a06*0x40+_0xa39936:_0xa39936,_0x2aebae++%0x4)?_0x41ae37+=String['fromCharCode'](0xff&_0x4b9a06>>(-0x2*_0x2aebae&0x6)):0x0){_0xa39936=_0x1e0487['indexOf'](_0xa39936);}for(let _0x27ae71=0x0,_0x4fff5b=_0x41ae37['length'];_0x27ae71<_0x4fff5b;_0x27ae71++){_0x2e3e76+='%'+('00'+_0x41ae37['charCodeAt'](_0x27ae71)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x2e3e76);};a0_0xad76['LgTDYL']=_0x458d7f,a0_0xad76['SIFfMS']={},a0_0xad76['zSeeOM']=!![];}const _0xf2b82=_0x5d4a1c[0x0],_0x4530be=_0x15a858+_0xf2b82,_0x2c370d=a0_0xad76['SIFfMS'][_0x4530be];return!_0x2c370d?(_0xad76d4=a0_0xad76['LgTDYL'](_0xad76d4),a0_0xad76['SIFfMS'][_0x4530be]=_0xad76d4):_0xad76d4=_0x2c370d,_0xad76d4;}function streamRequest(_0x370b9d,_0x2de1d0,_0x22f5a8,_0x2dc06b,_0x3ca646){const _0x4b3304=a0_0x4fcde2,_0x30e5ae={'wegYb':_0x4b3304(0x129),'JdQts':_0x4b3304(0xc8),'rACnj':'https','ptlxw':function(_0x869bcd,_0x5a9bba){return _0x869bcd(_0x5a9bba);},'IZZYL':_0x4b3304(0xe0),'PgVGk':function(_0x316118,_0x2483d5){return _0x316118+_0x2483d5;},'ZAmJR':_0x4b3304(0xdf),'FFtdY':'error'};return new Promise((_0x36671e,_0x15499f)=>{const _0x8e20d3=_0x4b3304,_0x2d9fbe={'rNyci':function(_0xbb32ab,_0x13e6f5){return _0xbb32ab>=_0x13e6f5;},'YolLU':_0x8e20d3(0xc8)},_0x191dd6=new URL(_0x22f5a8,_0x370b9d),_0x279d24=_0x191dd6[_0x8e20d3(0xfb)]==='https:',_0xf847b=_0x279d24?require(_0x30e5ae[_0x8e20d3(0xdd)]):_0x30e5ae[_0x8e20d3(0x127)](require,_0x30e5ae[_0x8e20d3(0x14a)]),_0x52ceb0=_0xf847b['request']({'hostname':_0x191dd6[_0x8e20d3(0x14e)],'port':_0x191dd6[_0x8e20d3(0xfc)]||(_0x279d24?0x1bb:0x50),'path':_0x30e5ae['PgVGk'](_0x191dd6[_0x8e20d3(0xee)],_0x191dd6[_0x8e20d3(0xcd)]),'method':_0x8e20d3(0x13a),'headers':{'Content-Type':_0x30e5ae['ZAmJR'],'Authorization':'Bearer\x20'+_0x2de1d0,'User-Agent':_0x8e20d3(0x112)+PKG_VERSION}},_0x3bc7fc=>{const _0x5d32e3=_0x8e20d3;if('HzQox'===_0x5d32e3(0xed))return _0x4355ef(_0x30d502,_0x4788c2,_0x5d32e3(0xdb)+_0x45cb1b+'/v1/chat/completions',{..._0x191146,'stream':!![]},_0x2400b6);else{if(_0x3bc7fc['statusCode']>=0x190){if(_0x5d32e3(0x119)===_0x5d32e3(0x119)){let _0x534ba4='';_0x3bc7fc['on'](_0x30e5ae['wegYb'],_0x38f857=>_0x534ba4+=_0x38f857),_0x3bc7fc['on'](_0x5d32e3(0xc8),()=>_0x15499f(new Error(_0x5d32e3(0xc9)+_0x3bc7fc[_0x5d32e3(0x14f)]+':\x20'+_0x534ba4['substring'](0x0,0xc8))));return;}else{if(_0x2d9fbe[_0x5d32e3(0x141)](_0x153c57[_0x5d32e3(0x14f)],0x190)){let _0xfe1091='';_0xe75cfe['on'](_0x5d32e3(0x129),_0x4a3faf=>_0xfe1091+=_0x4a3faf),_0x12f14e['on'](_0x2d9fbe['YolLU'],()=>_0x27b56e(new _0x21ddd6(_0x5d32e3(0xc9)+_0x5dfc18[_0x5d32e3(0x14f)]+':\x20'+_0xfe1091[_0x5d32e3(0x12f)](0x0,0xc8))));return;}_0x33bc34['on'](_0x5d32e3(0x129),_0x3732a4=>_0x2f0b1c(_0x3732a4[_0x5d32e3(0x14b)]())),_0x301a86['on']('end',()=>_0x415551());}}_0x3bc7fc['on'](_0x5d32e3(0x129),_0x1e4065=>_0x3ca646(_0x1e4065[_0x5d32e3(0x14b)]())),_0x3bc7fc['on'](_0x30e5ae[_0x5d32e3(0xfe)],()=>_0x36671e());}});_0x52ceb0['on'](_0x30e5ae[_0x8e20d3(0x151)],_0x15499f),_0x52ceb0[_0x8e20d3(0x150)](0x1d4c0,()=>{const _0x26823f=_0x8e20d3;_0x52ceb0[_0x26823f(0x128)](),_0x15499f(new Error(_0x26823f(0x113)));}),_0x52ceb0[_0x8e20d3(0xca)](JSON[_0x8e20d3(0x12d)](_0x2dc06b)),_0x52ceb0[_0x8e20d3(0xc8)]();});}function api(_0x4b3df9){const _0x1f7fa6=a0_0x4fcde2,_0x5766ae={'MLbVr':function(_0x418482,_0xca72b3,_0x29275a,_0x55dc13,_0x375edb,_0x30acd3){return _0x418482(_0xca72b3,_0x29275a,_0x55dc13,_0x375edb,_0x30acd3);},'jNhIc':_0x1f7fa6(0x13a),'vbhhB':function(_0x29b549,_0x52394a){return _0x29b549!==_0x52394a;}},{baseUrl:_0x588935,apiKey:_0x1af1c3}=_0x4b3df9,_0xf4379d=(_0x2ee5b2,_0x21883f,_0x21d229)=>request(_0x588935,_0x1af1c3,_0x2ee5b2,_0x21883f,_0x21d229);return{'signup':_0x4e54e7=>request(_0x588935,null,_0x1f7fa6(0x13a),'/api/signup',_0x4e54e7),'search':_0x2f6d8a=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xff)+(_0x2f6d8a?'?'+_0x2f6d8a:'')),'gpuModels':()=>_0xf4379d(_0x1f7fa6(0xd1),'/api/v1/marketplace/gpu-models'),'cheapest':_0x519876=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x12c)+(_0x519876?'?'+_0x519876:'')),'gpuTypes':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x143)),'hostSetup':_0xde0c02=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0xd7),_0xde0c02),'rent':_0x17452e=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0xe1)+_0x17452e[_0x1f7fa6(0x10d)],_0x17452e),'rentals':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xd3)),'rentalStatus':_0x267e0b=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x104)+_0x267e0b),'stopRental':_0x59b0aa=>_0xf4379d('POST','/api/v1/marketplace/rentals/'+_0x59b0aa+_0x1f7fa6(0xdc)),'pools':()=>_0xf4379d(_0x1f7fa6(0xd1),'/api/v1/gpu/pools'),'createPool':_0x5f50d0=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0xef),_0x5f50d0),'addToPool':(_0x17df41,_0x69c92d)=>_0xf4379d('POST',_0x1f7fa6(0x142)+_0x17df41+_0x1f7fa6(0x120),{'rentalId':_0x69c92d}),'removeFromPool':(_0x192ae8,_0x3b3b27)=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0x142)+_0x192ae8+_0x1f7fa6(0x125),{'rentalId':_0x3b3b27}),'chat':(_0x1151d0,_0x2263d0,_0x508e05)=>{const _0x32e5df=_0x1f7fa6,_0x29b7d5=_0x588935+'/api/v1/openai/'+_0x2263d0+'/v1/chat/completions';return _0x5766ae[_0x32e5df(0x106)](request,_0x29b7d5[_0x32e5df(0xf7)](/\/v1\/chat\/completions$/,''),_0x1151d0,_0x5766ae[_0x32e5df(0x135)],_0x32e5df(0x103),_0x508e05);},'chatStream':(_0x4769be,_0x28ba0b,_0x59d499,_0x16701c)=>{const _0x2dc4b5=_0x1f7fa6;if(_0x5766ae['vbhhB'](_0x2dc4b5(0x117),'noUMu'))_0x46674b[_0x2dc4b5(0x128)](),_0x3a67c8(new _0x49e93c(_0x2dc4b5(0x113)));else return _0x5766ae[_0x2dc4b5(0x106)](streamRequest,_0x588935,_0x4769be,'/api/v1/openai/'+_0x28ba0b+_0x2dc4b5(0x103),{..._0x59d499,'stream':!![]},_0x16701c);},'adminStats':()=>_0xf4379d('GET','/superadmin/api/stats'),'adminRevenue':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xf8)),'adminFunnel':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xda)),'adminSignups':_0x110f6d=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xf3)+(_0x110f6d||0x7)),'adminUsers':_0x57f256=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x10f)+(_0x57f256?'?'+_0x57f256:'')),'adminUserView':_0x3efa5c=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x110)+encodeURIComponent(_0x3efa5c)),'adminCreateUser':_0x1a3af7=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0x10f),_0x1a3af7),'adminResetPassword':(_0x13122f,_0x466ad2)=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0x11f),{'email':_0x13122f,'password':_0x466ad2}),'adminVerifyUser':_0x1305aa=>_0xf4379d('POST',_0x1f7fa6(0x110)+encodeURIComponent(_0x1305aa)+_0x1f7fa6(0xce)),'adminSuspendUser':_0x390be4=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0x110)+encodeURIComponent(_0x390be4)+_0x1f7fa6(0x146)),'adminActivateUser':_0x5bf51a=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0x110)+encodeURIComponent(_0x5bf51a)+_0x1f7fa6(0x139)),'adminDeleteUser':_0x11859f=>_0xf4379d('DELETE','/superadmin/api/users/'+encodeURIComponent(_0x11859f)),'adminUpdateUser':(_0x194232,_0x189d52)=>_0xf4379d('PATCH',_0x1f7fa6(0x110)+encodeURIComponent(_0x194232),_0x189d52),'adminCouponCreate':_0x5496b0=>_0xf4379d(_0x1f7fa6(0x13a),'/superadmin/api/coupons',_0x5496b0),'adminCoupons':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x13b)),'adminCouponRevoke':_0x4789ee=>_0xf4379d('DELETE',_0x1f7fa6(0xe7)+encodeURIComponent(_0x4789ee)),'adminListings':_0x272a06=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x11d)+(_0x272a06?'?'+_0x272a06:'')),'adminListingView':_0x2331d0=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xc6)+_0x2331d0),'adminSuspendListing':_0x2827a7=>_0xf4379d(_0x1f7fa6(0x13a),_0x1f7fa6(0xc6)+_0x2827a7+_0x1f7fa6(0x146)),'adminRentals':_0x5032f9=>_0xf4379d('GET','/superadmin/api/rentals'+(_0x5032f9?'?'+_0x5032f9:'')),'adminRentalView':_0x52d23=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xcc)+_0x52d23),'adminPayments':_0x324a53=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x101)+(_0x324a53?'?'+_0x324a53:'')),'adminPools':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x145)),'adminAudit':_0x60bf02=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x11e)+(_0x60bf02||0x1e)),'adminNotifications':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xfa)),'adminHealth':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x140)),'adminUserTimeline':_0x29c1b1=>_0xf4379d(_0x1f7fa6(0xd1),'/superadmin/api/users/'+encodeURIComponent(_0x29c1b1)+'/timeline'),'adminAgentStatus':_0x5c31a8=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xc6)+_0x5c31a8+_0x1f7fa6(0x13e)),'adminHostEarnings':_0x1d83c3=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xf1)+encodeURIComponent(_0x1d83c3)+'/earnings'),'adminRentalUsage':_0x104715=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xcc)+_0x104715+_0x1f7fa6(0xe2)),'adminWallet':_0x2a3534=>_0xf4379d(_0x1f7fa6(0xd1),'/superadmin/api/users/'+encodeURIComponent(_0x2a3534)+_0x1f7fa6(0x115)),'adminClosures':_0x9f2cc4=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x137)+(_0x9f2cc4||0x5a)),'adminRefund':_0x3027e0=>_0xf4379d(_0x1f7fa6(0x13a),'/superadmin/api/payments/'+_0x3027e0+_0x1f7fa6(0xf2)),'adminCloudGpus':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xf0)),'adminCloudCheapest':_0x2fe947=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xd2)+(_0x2fe947||0x18)),'adminCloudAccount':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xe3)),'adminCloudBilling':()=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0x138)),'adminCloudPods':_0x93bc2f=>_0xf4379d(_0x1f7fa6(0xd1),'/superadmin/api/cloud/pods'+(_0x93bc2f?'?status='+_0x93bc2f:'')),'adminCloudPod':_0x53869d=>_0xf4379d(_0x1f7fa6(0xd1),_0x1f7fa6(0xea)+_0x53869d),'adminCloudStop':_0x22ee20=>_0xf4379d(_0x1f7fa6(0x13a),'/superadmin/api/cloud/pods/'+_0x22ee20+_0x1f7fa6(0xdc)),'adminCloudResume':_0x5adf94=>_0xf4379d(_0x1f7fa6(0x13a),'/superadmin/api/cloud/pods/'+_0x5adf94+_0x1f7fa6(0x12a)),'adminCloudDestroy':_0x3281c6=>_0xf4379d('POST',_0x1f7fa6(0xea)+_0x3281c6+_0x1f7fa6(0x13c)),'adminCloudMargin':()=>_0xf4379d(_0x1f7fa6(0xd1),'/superadmin/api/cloud/margin')};}module[a0_0x4fcde2(0x134)]={'api':api,'request':request};
|
|
1
|
+
const a0_0x54ce99=a0_0x3c07;(function(_0x239cac,_0x3cd0b3){const _0xed41ec=a0_0x3c07,_0x24ae6f=_0x239cac();while(!![]){try{const _0x32426c=-parseInt(_0xed41ec(0x151))/0x1+-parseInt(_0xed41ec(0x135))/0x2*(parseInt(_0xed41ec(0x12c))/0x3)+parseInt(_0xed41ec(0x146))/0x4*(-parseInt(_0xed41ec(0x15d))/0x5)+parseInt(_0xed41ec(0x10b))/0x6*(-parseInt(_0xed41ec(0x125))/0x7)+-parseInt(_0xed41ec(0x12a))/0x8*(parseInt(_0xed41ec(0x159))/0x9)+parseInt(_0xed41ec(0x118))/0xa+-parseInt(_0xed41ec(0x14c))/0xb*(-parseInt(_0xed41ec(0x178))/0xc);if(_0x32426c===_0x3cd0b3)break;else _0x24ae6f['push'](_0x24ae6f['shift']());}catch(_0x22bcfa){_0x24ae6f['push'](_0x24ae6f['shift']());}}}(a0_0xbd75,0x665d0));const PKG_VERSION=require(a0_0x54ce99(0x177))[a0_0x54ce99(0x17e)];function request(_0x5ea8e9,_0x5cf163,_0x31a0d5,_0x488e75,_0x3c33cd){const _0x179d73=a0_0x54ce99,_0x3cfb45={'injGK':function(_0x4303b3,_0x49a833){return _0x4303b3(_0x49a833);},'xFkHP':function(_0x140e45,_0x25af51){return _0x140e45>=_0x25af51;},'bPhSE':function(_0x8fecc4,_0x11b276){return _0x8fecc4(_0x11b276);},'kZtWF':function(_0xb94656,_0x4df6a8){return _0xb94656===_0x4df6a8;},'qXEWr':'https','LIujo':_0x179d73(0x128),'Pbbiz':_0x179d73(0x138)};return new Promise((_0x4fb2b9,_0x2c3d70)=>{const _0x2b776f=_0x179d73,_0xeab2bd={'COAIY':function(_0x49322f,_0x13423f){return _0x49322f(_0x13423f);},'lWgRR':function(_0x3e5f6e,_0xc270a2){const _0x1e538e=a0_0x3c07;return _0x3cfb45[_0x1e538e(0x168)](_0x3e5f6e,_0xc270a2);},'rujkd':function(_0x30194a,_0x3e9acc){const _0x398c56=a0_0x3c07;return _0x3cfb45[_0x398c56(0x156)](_0x30194a,_0x3e9acc);},'gwyoB':function(_0x39b4cc,_0x1cbe2b){return _0x3cfb45['bPhSE'](_0x39b4cc,_0x1cbe2b);},'smVyU':function(_0x335929,_0x434f55){const _0x332620=a0_0x3c07;return _0x3cfb45[_0x332620(0x17c)](_0x335929,_0x434f55);},'EDLgs':_0x2b776f(0x179),'iRfBP':_0x2b776f(0x11f),'OVJpf':_0x2b776f(0x157),'lXiBL':'dajNL','bsoqM':_0x2b776f(0x16d),'gflkj':_0x2b776f(0x144)},_0x2dd9c2=new URL(_0x488e75,_0x5ea8e9),_0x15b15a=_0x2dd9c2[_0x2b776f(0x182)]===_0x2b776f(0x172),_0x6239ba=_0x15b15a?require(_0x3cfb45[_0x2b776f(0x170)]):require(_0x3cfb45[_0x2b776f(0x14a)]),_0x203c55={'hostname':_0x2dd9c2['hostname'],'port':_0x2dd9c2[_0x2b776f(0x10f)]||(_0x15b15a?0x1bb:0x50),'path':_0x2dd9c2[_0x2b776f(0x11d)]+_0x2dd9c2[_0x2b776f(0x15e)],'method':_0x31a0d5,'headers':{'Content-Type':'application/json','User-Agent':'gpusmarket-cli/'+PKG_VERSION}};if(_0x5cf163)_0x203c55['headers'][_0x2b776f(0x13c)]=_0x2b776f(0x148)+_0x5cf163;const _0x343a2c=_0x6239ba['request'](_0x203c55,_0x2fc35e=>{const _0x3fd351=_0x2b776f;if(_0xeab2bd[_0x3fd351(0x16f)](_0xeab2bd[_0x3fd351(0x136)],_0xeab2bd[_0x3fd351(0x136)])){let _0x55f38f='';_0x2fc35e['on'](_0xeab2bd[_0x3fd351(0x15a)],_0x316104=>_0x55f38f+=_0x316104),_0x2fc35e['on'](_0xeab2bd[_0x3fd351(0x149)],()=>{const _0x3c4c8f=_0x3fd351;try{const _0x2e7861=JSON[_0x3c4c8f(0x139)](_0x55f38f);_0x2fc35e[_0x3c4c8f(0x173)]>=0x190?_0xeab2bd[_0x3c4c8f(0x14f)](_0x2c3d70,new Error(_0x2e7861[_0x3c4c8f(0x138)]||_0x2e7861[_0x3c4c8f(0x17b)]||'HTTP\x20'+_0x2fc35e[_0x3c4c8f(0x173)])):_0xeab2bd[_0x3c4c8f(0x112)](_0x4fb2b9,_0x2e7861);}catch{if(_0xeab2bd['rujkd'](_0x2fc35e['statusCode'],0x190))_0x2c3d70(new Error(_0x3c4c8f(0x17d)+_0x2fc35e[_0x3c4c8f(0x173)]+':\x20'+_0x55f38f[_0x3c4c8f(0x122)](0x0,0xc8)));else _0xeab2bd[_0x3c4c8f(0x137)](_0x4fb2b9,_0x55f38f);}});}else _0x59752e(_0x2e4b15);});_0x343a2c['on'](_0x3cfb45[_0x2b776f(0x169)],_0x2c3d70),_0x343a2c[_0x2b776f(0x12d)](0x7530,()=>{const _0x41263a=_0x2b776f;_0xeab2bd['lXiBL']!==_0xeab2bd[_0x41263a(0x117)]?(_0x343a2c[_0x41263a(0x114)](),_0x2c3d70(new Error(_0xeab2bd[_0x41263a(0x109)]))):_0x163e34(new _0x4fdc49(_0x2673f7[_0x41263a(0x138)]||_0x532370[_0x41263a(0x17b)]||'HTTP\x20'+_0x18b0d2[_0x41263a(0x173)]));});if(_0x3c33cd)_0x343a2c[_0x2b776f(0x16b)](JSON['stringify'](_0x3c33cd));_0x343a2c[_0x2b776f(0x157)]();});}function a0_0x3c07(_0xdcf13e,_0x330929){_0xdcf13e=_0xdcf13e-0x108;const _0xbd754d=a0_0xbd75();let _0x3c07bf=_0xbd754d[_0xdcf13e];if(a0_0x3c07['kBZCqA']===undefined){var _0x2ca5d9=function(_0x38bc7c){const _0xca1ac8='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x1dea79='',_0x33b107='';for(let _0x3e4823=0x0,_0x2ba458,_0x11ab7b,_0x48659c=0x0;_0x11ab7b=_0x38bc7c['charAt'](_0x48659c++);~_0x11ab7b&&(_0x2ba458=_0x3e4823%0x4?_0x2ba458*0x40+_0x11ab7b:_0x11ab7b,_0x3e4823++%0x4)?_0x1dea79+=String['fromCharCode'](0xff&_0x2ba458>>(-0x2*_0x3e4823&0x6)):0x0){_0x11ab7b=_0xca1ac8['indexOf'](_0x11ab7b);}for(let _0x4017dc=0x0,_0x4edeef=_0x1dea79['length'];_0x4017dc<_0x4edeef;_0x4017dc++){_0x33b107+='%'+('00'+_0x1dea79['charCodeAt'](_0x4017dc)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x33b107);};a0_0x3c07['TnQHGA']=_0x2ca5d9,a0_0x3c07['WYefOl']={},a0_0x3c07['kBZCqA']=!![];}const _0x47fb08=_0xbd754d[0x0],_0x251266=_0xdcf13e+_0x47fb08,_0x51a526=a0_0x3c07['WYefOl'][_0x251266];return!_0x51a526?(_0x3c07bf=a0_0x3c07['TnQHGA'](_0x3c07bf),a0_0x3c07['WYefOl'][_0x251266]=_0x3c07bf):_0x3c07bf=_0x51a526,_0x3c07bf;}function streamRequest(_0x1cfe93,_0x489f68,_0x599c3b,_0x5da273,_0x2d815e){const _0x5ebde3=a0_0x54ce99,_0x15c9f1={'mvfga':_0x5ebde3(0x157),'XryxO':_0x5ebde3(0x11f),'KGRbx':_0x5ebde3(0x172),'cGIKe':_0x5ebde3(0x174),'SufZG':function(_0x224499,_0x4b1882){return _0x224499(_0x4b1882);},'tUPsI':_0x5ebde3(0x166),'NmVYs':_0x5ebde3(0x12e),'VUOdU':_0x5ebde3(0x138)};return new Promise((_0x175322,_0x35800a)=>{const _0x42bea3=_0x5ebde3,_0x4331ec={'VHOnk':function(_0x3c2c2a,_0x40328a){return _0x3c2c2a(_0x40328a);}},_0x30e144=new URL(_0x599c3b,_0x1cfe93),_0x4e7f72=_0x30e144['protocol']===_0x15c9f1[_0x42bea3(0x132)],_0x4ed4ac=_0x4e7f72?require(_0x15c9f1[_0x42bea3(0x164)]):_0x15c9f1[_0x42bea3(0x129)](require,_0x42bea3(0x128)),_0x59084b=_0x4ed4ac[_0x42bea3(0x153)]({'hostname':_0x30e144['hostname'],'port':_0x30e144[_0x42bea3(0x10f)]||(_0x4e7f72?0x1bb:0x50),'path':_0x30e144['pathname']+_0x30e144[_0x42bea3(0x15e)],'method':_0x15c9f1['tUPsI'],'headers':{'Content-Type':_0x15c9f1[_0x42bea3(0x115)],'Authorization':_0x42bea3(0x148)+_0x489f68,'User-Agent':_0x42bea3(0x14b)+PKG_VERSION}},_0x403066=>{const _0x235196=_0x42bea3;if(_0x403066[_0x235196(0x173)]>=0x190){let _0x4dcc7e='';_0x403066['on'](_0x235196(0x11f),_0x178d28=>_0x4dcc7e+=_0x178d28),_0x403066['on'](_0x15c9f1['mvfga'],()=>_0x35800a(new Error(_0x235196(0x17d)+_0x403066[_0x235196(0x173)]+':\x20'+_0x4dcc7e[_0x235196(0x122)](0x0,0xc8))));return;}_0x403066['on'](_0x15c9f1[_0x235196(0x145)],_0x256fbf=>_0x2d815e(_0x256fbf[_0x235196(0x15c)]())),_0x403066['on'](_0x235196(0x157),()=>_0x175322());});_0x59084b['on'](_0x15c9f1[_0x42bea3(0x133)],_0x35800a),_0x59084b['setTimeout'](0x1d4c0,()=>{const _0x36391c=_0x42bea3;_0x59084b[_0x36391c(0x114)](),_0x4331ec[_0x36391c(0x160)](_0x35800a,new Error(_0x36391c(0x144)));}),_0x59084b[_0x42bea3(0x16b)](JSON[_0x42bea3(0x11a)](_0x5da273)),_0x59084b[_0x42bea3(0x157)]();});}function a0_0xbd75(){const _0x5d8a87=['l3n1CgvYywrTAw4VyxbPl3n0yxrZ','q09bsvK','l2fWAs92ms9TyxjRzxrWBgfJzs9Tzq','mti3ndaWwKDgq21z','DK1yqxy','CMvXDwvZDa','l3jLBw92zq','BgLZDgLUz0LK','EezRsfa','zw5K','l3n1CgvYywrTAw4VyxbPl3bVB2XZ','mJDWCgrvzK0','AvjMqLa','l3n1CgvYywrTAw4VyxbPl2XPC3rPBMDZ','Dg9tDhjPBMC','nti5mfLesNzMAW','C2vHCMnO','l3n1CgvYywrTAw4VyxbPl3nPz251Chm/zgf5CZ0','vKHpBMS','uefuq0G','l3zLCMLMEq','l3yXl2nOyxqVy29TCgXLDgLVBNm','y0Djs2u','l2fWAs92ms9VCgvUywKV','ue9tva','l3rPBwvSAw5L','Aw5Qr0S','ugjIAxO','l2vHCM5PBMDZ','D3jPDgu','r0vu','u2TQqK8','l3n1CgvYywrTAw4VyxbPl3vZzxjZlW','C21wEvu','CvHfv3i','l2fKza','Ahr0Chm6','C3rHDhvZq29Kzq','Ahr0Chm','l3vZywDL','l3n1CgvYywrTAw4VyxbPl2nSB3vKl2jPBgXPBMC','lI4VCgfJA2fNzs5QC29U','nJy1mZuYyMHrAuvz','D3bNyvO','l2fWAs92ms9TyxjRzxrWBgfJzs9Yzw50lW','BwvZC2fNzq','A1P0v0y','sfruuca','DMvYC2LVBG','l3n1C3bLBMq','l2fNzw50','l2fWAs92ms9NChuVAg9ZDc1Zzxr1Ca','ChjVDg9JB2W','l3n1CgvYywrTAw4VyxbPl2nVDxbVBNm','z2zSA2O','vNL4wvO','mtjiBufQEfa','wuLgwLi','l2fWAs92ms9NChuVDhLWzxm','l3jLC3vTzq','Cg9YDa','l3n1CgvYywrTAw4VyxbPl2HVC3rZlW','l3n1CgvYywrTAw4VyxbPl3bHEw1LBNrZ','BfDNuLi','p3n0yxr1CZ0','zgvZDhjVEq','tM1wwxm','l3n1CgvYywrTAw4VyxbPl25VDgLMAwnHDgLVBNm','yNnVCu0','ndi0ntuWrxrnqM1Z','l3n1CgvYywrTAw4VyxbPl2nVDxbVBNmV','C3rYAw5NAwz5','l3DHBgXLDa','l2fWAs92ms9NChuVy2HLyxbLC3q','Cgf0Ag5HBwu','l3n0B3a','zgf0yq','l2fWAs92ms9TyxjRzxrWBgfJzs9NChuTBw9KzwXZ','l3n1CgvYywrTAw4VyxbPl3jLBNrHBhmV','C3vIC3rYAw5N','l3n1CgvYywrTAw4VyxbPl2XPC3rPBMDZlW','l2fWAs9ZAwDUDxa','mtq5odeZm2zTAKv6zG','l2rLC3rYB3K','l2fWAs92ms9TyxjRzxrWBgfJzs9Yzw50ywXZlW','Ahr0Ca','u3vMwKC','odK3mtKYwvvSCLLP','l2fWAs92ms9NChuVCg9VBhm','mtjfy1zRCeS','C2v0vgLTzw91Da','yxbWBgLJyxrPB24VANnVBG','l3n1CgvYywrTAw4VyxbPl2f1zgL0p2rHExm9','CMvWBgfJzq','vxD2wgW','s0DsyNG','vLvpzfu','l3n1CgvYywrTAw4VyxbPl2nSB3vKl2nOzwfWzxn0p3zYyw09','mJi3odjty2vrqxm','rurmz3m','z3D5B0i','zxjYB3i','CgfYC2u','l3n1CgvYywrTAw4VyxbPl2nSB3vKl3bVzhm','l3n1CgvYywrTAw4VyxbPl3vZzxjZ','qxv0Ag9YAxPHDgLVBG','l2fWAs92ms9TyxjRzxrWBgfJzs9ZzwfYy2G','l3n1CgvYywrTAw4VyxbPl2nSB3vKl2fJy291BNq','zxHWB3j0CW','l2fJDgL2yxrL','l3n1CgvYywrTAw4VyxbPl2z1BM5LBa','l2fWAs92ms9TyxjRzxrWBgfJzs9Yzw50ywXZ','l3n1CgvYywrTAw4VyxbPl2HLywX0Aa','uMvXDwvZDcb0Aw1LB3v0','whj5Ee8','mJm2oenNy2XJrW','l3n1CgvYywrTAw4VyxbPl2nSB3vKl21HCMDPBG','qMvHCMvYia','t1zkCgy','teL1AM8','z3b1C21HCMTLDc1JBgKV','mZG1DuHyt2nO','l3n1CgvYywrTAw4VyxbPl2nSB3vKl3bVzhmV'];a0_0xbd75=function(){return _0x5d8a87;};return a0_0xbd75();}function api(_0x5fa53b){const _0x94dc7e=a0_0x54ce99,_0xc38959={'VyxYZ':_0x94dc7e(0x10c),'UwvXl':'/v1/chat/completions'},{baseUrl:_0x377f54,apiKey:_0x25ee86}=_0x5fa53b,_0x546a99=(_0x309876,_0xffc5a4,_0x2ae664)=>request(_0x377f54,_0x25ee86,_0x309876,_0xffc5a4,_0x2ae664);return{'signup':_0x1a44d3=>request(_0x377f54,null,_0x94dc7e(0x166),_0x94dc7e(0x124),_0x1a44d3),'whoami':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x150)),'search':_0x5964df=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x13d)+(_0x5964df?'?'+_0x5964df:'')),'gpuModels':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x120)),'cheapest':_0x2b3e4d=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x11c)+(_0x2b3e4d?'?'+_0x2b3e4d:'')),'gpuTypes':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x10d)),'hostSetup':_0x33c2e1=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x181),_0x33c2e1),'rent':_0x44b268=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x17a)+_0x44b268[_0x94dc7e(0x155)],_0x44b268),'rentals':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x142)),'rentalStatus':_0x5c1c5c=>_0x546a99('GET',_0x94dc7e(0x127)+_0x5c1c5c),'stopRental':_0x3c83c5=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x127)+_0x3c83c5+_0x94dc7e(0x11e)),'pools':()=>_0x546a99('GET','/api/v1/gpu/pools'),'createPool':_0x3948f6=>_0x546a99('POST',_0x94dc7e(0x12b),_0x3948f6),'addToPool':(_0x29cd91,_0xb9ea12)=>_0x546a99(_0x94dc7e(0x166),'/api/v1/gpu/pools/'+_0x29cd91+_0x94dc7e(0x171),{'rentalId':_0xb9ea12}),'removeFromPool':(_0x5c84e1,_0x5c3e3e)=>_0x546a99(_0x94dc7e(0x166),'/api/v1/gpu/pools/'+_0x5c84e1+_0x94dc7e(0x154),{'rentalId':_0x5c3e3e}),'chat':(_0x2517cc,_0x19527e,_0x168357)=>{const _0x1361fd=_0x94dc7e;if(_0x1361fd(0x152)!==_0xc38959[_0x1361fd(0x10a)]){const _0x515a44=_0x377f54+'/api/v1/openai/'+_0x19527e+_0x1361fd(0x163);return request(_0x515a44[_0x1361fd(0x130)](/\/v1\/chat\/completions$/,''),_0x2517cc,_0x1361fd(0x166),_0xc38959[_0x1361fd(0x131)],_0x168357);}else{let _0x564ab9='';_0x1ae72b['on'](_0x1361fd(0x11f),_0xa8f83a=>_0x564ab9+=_0xa8f83a),_0x50c8dd['on'](_0x1361fd(0x157),()=>_0x268940(new _0xed00bc('HTTP\x20'+_0x57ad91[_0x1361fd(0x173)]+':\x20'+_0x564ab9[_0x1361fd(0x122)](0x0,0xc8))));return;}},'chatStream':(_0x17b910,_0x3fdaf3,_0x215bc0,_0x13f312)=>{const _0x537853=_0x94dc7e;return streamRequest(_0x377f54,_0x17b910,_0x537853(0x165)+_0x3fdaf3+'/v1/chat/completions',{..._0x215bc0,'stream':!![]},_0x13f312);},'adminStats':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x14e)),'adminRevenue':()=>_0x546a99(_0x94dc7e(0x16c),'/superadmin/api/revenue'),'adminFunnel':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x141)),'adminSignups':_0xca4c59=>_0x546a99('GET',_0x94dc7e(0x15f)+(_0xca4c59||0x7)),'adminUsers':_0x40d963=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x13b)+(_0x40d963?'?'+_0x40d963:'')),'adminUserView':_0x4a3d79=>_0x546a99(_0x94dc7e(0x16c),'/superadmin/api/users/'+encodeURIComponent(_0x4a3d79)),'adminCreateUser':_0x4d850a=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x13b),_0x4d850a),'adminResetPassword':(_0x4f9d35,_0xed3628)=>_0x546a99(_0x94dc7e(0x166),'/superadmin/api/users/reset-password',{'email':_0x4f9d35,'password':_0xed3628}),'adminVerifyUser':_0x389df3=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x16e)+encodeURIComponent(_0x389df3)+_0x94dc7e(0x162)),'adminSuspendUser':_0x584b73=>_0x546a99(_0x94dc7e(0x166),'/superadmin/api/users/'+encodeURIComponent(_0x584b73)+_0x94dc7e(0x17f)),'adminActivateUser':_0x4faa06=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x16e)+encodeURIComponent(_0x4faa06)+_0x94dc7e(0x140)),'adminDeleteUser':_0x59a8ed=>_0x546a99('DELETE',_0x94dc7e(0x16e)+encodeURIComponent(_0x59a8ed)),'adminUpdateUser':(_0x212df6,_0x2baadd)=>_0x546a99(_0x94dc7e(0x161),_0x94dc7e(0x16e)+encodeURIComponent(_0x212df6),_0x2baadd),'adminCouponCreate':_0x5edb61=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x108),_0x5edb61),'adminCoupons':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x108)),'adminCouponRevoke':_0x24ab12=>_0x546a99('DELETE',_0x94dc7e(0x119)+encodeURIComponent(_0x24ab12)),'adminListings':_0x4ba4a4=>_0x546a99('GET',_0x94dc7e(0x15b)+(_0x4ba4a4?'?'+_0x4ba4a4:'')),'adminListingView':_0x26206c=>_0x546a99('GET',_0x94dc7e(0x123)+_0x26206c),'adminSuspendListing':_0x1d701a=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x123)+_0x1d701a+_0x94dc7e(0x17f)),'adminRentals':_0x1f63a5=>_0x546a99(_0x94dc7e(0x16c),'/superadmin/api/rentals'+(_0x1f63a5?'?'+_0x1f63a5:'')),'adminRentalView':_0x55dfa3=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x121)+_0x55dfa3),'adminPayments':_0x3045df=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x111)+(_0x3045df?'?'+_0x3045df:'')),'adminPools':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x158)),'adminAudit':_0x256b01=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x12f)+(_0x256b01||0x1e)),'adminNotifications':()=>_0x546a99('GET',_0x94dc7e(0x116)),'adminHealth':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x143)),'adminUserTimeline':_0x4f984f=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x16e)+encodeURIComponent(_0x4f984f)+_0x94dc7e(0x167)),'adminAgentStatus':_0x591d9e=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x123)+_0x591d9e+_0x94dc7e(0x180)),'adminHostEarnings':_0x4871f5=>_0x546a99('GET',_0x94dc7e(0x110)+encodeURIComponent(_0x4871f5)+_0x94dc7e(0x16a)),'adminRentalUsage':_0x539841=>_0x546a99('GET',_0x94dc7e(0x121)+_0x539841+_0x94dc7e(0x175)),'adminWallet':_0x4799d9=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x16e)+encodeURIComponent(_0x4799d9)+_0x94dc7e(0x11b)),'adminClosures':_0x3aac7c=>_0x546a99(_0x94dc7e(0x16c),'/superadmin/api/closures?days='+(_0x3aac7c||0x5a)),'adminRefund':_0x45de2f=>_0x546a99(_0x94dc7e(0x166),'/superadmin/api/payments/'+_0x45de2f+'/refund'),'adminCloudGpus':()=>_0x546a99(_0x94dc7e(0x16c),'/superadmin/api/cloud/gpus'),'adminCloudCheapest':_0x568683=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x134)+(_0x568683||0x18)),'adminCloudAccount':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x13e)),'adminCloudBilling':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x176)),'adminCloudPods':_0x5a3a38=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x13a)+(_0x5a3a38?_0x94dc7e(0x113)+_0x5a3a38:'')),'adminCloudPod':_0x53deb2=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x14d)+_0x53deb2),'adminCloudStop':_0x23a425=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x14d)+_0x23a425+_0x94dc7e(0x11e)),'adminCloudResume':_0x5440ad=>_0x546a99('POST',_0x94dc7e(0x14d)+_0x5440ad+_0x94dc7e(0x10e)),'adminCloudDestroy':_0x416a9d=>_0x546a99(_0x94dc7e(0x166),_0x94dc7e(0x14d)+_0x416a9d+_0x94dc7e(0x126)),'adminCloudMargin':()=>_0x546a99(_0x94dc7e(0x16c),_0x94dc7e(0x147))};}module[a0_0x54ce99(0x13f)]={'api':api,'request':request};
|