-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSPECIAL.js
More file actions
54 lines (53 loc) · 2.18 KB
/
SPECIAL.js
File metadata and controls
54 lines (53 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const recommendedpuzzles = [{author: "intro_puzzle_bot", emoji: "🤖", puzzles: ['1234', '4211', '1111', '6072', '0612', '5095', '3004', '8432']},
{author: "fluff", emoji: "⭐", puzzles: ['0003', '0004', '0300', '1254', '2253', '2551', '3451', '3565', '2542', '3332', '4367', '4658', '4851', '5988', '7585', '8235', '8456', '8699', '5788']},
{author: "phenomist", emoji: "🌁", puzzles: ['9598', '9958', '3495', '8656', '2868', '7537', '7556', '4898', '4394', '8951', '5694', '4955', '3955', '6869', '8519']},
{author: "abiteofdata", emoji: "🦎", puzzles: ['1196', '7800', '7333', '5257', '7588']},
{author: "n3rl", emoji: "🦐", puzzles: ['9387']},
{author: "elara", emoji: "⛰️", puzzles: ['5998', '4908']},
{author: "MTFlowCzq", emoji: "♥️", puzzles: ['6768', '7995', '5769']}
]
const challenge = [{puz: '1254', restrictions: '+-'},
{puz: '3332', restrictions: '+-'},
{puz: '8235', restrictions: '+-'},
{puz: '8432', restrictions: '+-'},
{puz: '3495', restrictions: '+-'},
{puz: '9598', restrictions: '+-'},
{puz: '7585', restrictions: '-'},
{puz: '8951', restrictions: '^!'},
{puz: '5998', restrictions: '/'},
{puz: '7333', restrictions: '+-'},
{puz: '8519', restrictions: '^'},
{puz: '5988', restrictions: '^'},
{puz: '5788', restrictions: '()'},
{puz: '7995', restrictions: '+-'},
{puz: '5769', restrictions: '+-'}
]
const DEFAULT_SETTINGS = "00000000" // unsolved, completed, recommended, random, has-challenge, includerandom, multisolve, openinsandbox
const LEADERBOARD = [
["phenomist;6/17/2025"],
[
"phenomist;6/10/2025",
"elara;6/15/2025",
"abiteofdata;6/15/2025",
"MTFlowCzq;7/16/2025",
"SeptaCube;9/19/2025"
],
[
"elara;6/8/2025",
"phenomist;6/9/2025",
"abiteofdata;6/15/2025",
"mlemth;6/17/2025",
"MTFlowCzq;7/8/2025",
"SeptaCube;7/22/2025"
],
[
"elara;6/6/2025",
"phenomist;6/6/2025",
"mlemth;6/11/2025",
"abiteofdata;6/12/2025",
"fluff;6/12/2025",
"MTFlowCzq;6/21/2025",
"cl0vis403;7/14/2025",
"SeptaCube;7/16/2025"
]
]