Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .eslintrc.js +23 -0
- .gitignore +24 -0
- .replit +6 -0
- Dockerfile +19 -0
- LICENSE +674 -0
- Procfile +1 -0
- README.md +77 -0
- Res.webp +0 -0
- ahegao.json +41 -0
- app.json +7 -0
- ass.json +181 -0
- bdsm.json +147 -0
- blowjob.json +61 -0
- config.js +247 -0
- creator.js +19 -0
- creds.json +84 -0
- cuckold.json +49 -0
- cum.json +192 -0
- database.json +0 -0
- eba.json +102 -0
- ero.json +127 -0
- femdom.json +47 -0
- foot.json +17 -0
- gangbang.json +63 -0
- gifs.json +30 -0
- glasses.json +59 -0
- gpthistory.json +1 -0
- handler.js +1408 -0
- handlers.js +1085 -0
- hentai.json +158 -0
- index.js +80 -0
- jahy.json +16 -0
- json.sqlite +0 -0
- json/tebakgambar.json +0 -0
- json/tebaklagu.json +207 -0
- lib/DB_Adapters/cloudDBAdapter.js +58 -0
- lib/DB_Adapters/index.js +8 -0
- lib/DB_Adapters/mongoDB.js +180 -0
- lib/DB_Adapters/stores.js +0 -0
- lib/MediaFire.js +30 -0
- lib/ai.js +105 -0
- lib/animedl.js +118 -0
- lib/animesearch.js +30 -0
- lib/anunya.js +40 -0
- lib/bahasa-indo.js +564 -0
- lib/canvas.js +65 -0
- lib/capcut.js +47 -0
- lib/clearTmp.js +39 -0
- lib/cloudDBAdapter.js +58 -0
- lib/convert.js +106 -0
.eslintrc.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
module.exports = {
|
| 2 |
+
"env": {
|
| 3 |
+
"browser": true,
|
| 4 |
+
"es6": true
|
| 5 |
+
},
|
| 6 |
+
"extends": "eslint:recommended",
|
| 7 |
+
"globals": {
|
| 8 |
+
"Atomics": "readonly",
|
| 9 |
+
"SharedArrayBuffer": "readonly"
|
| 10 |
+
},
|
| 11 |
+
"parserOptions": {
|
| 12 |
+
"ecmaFeatures": {
|
| 13 |
+
"jsx": true
|
| 14 |
+
},
|
| 15 |
+
"ecmaVersion": 2018,
|
| 16 |
+
"sourceType": "module"
|
| 17 |
+
},
|
| 18 |
+
"plugins": [
|
| 19 |
+
"react"
|
| 20 |
+
],
|
| 21 |
+
"rules": {
|
| 22 |
+
}
|
| 23 |
+
};
|
.gitignore
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Compiled class file
|
| 2 |
+
*.class
|
| 3 |
+
|
| 4 |
+
# Log file
|
| 5 |
+
*.log
|
| 6 |
+
|
| 7 |
+
# BlueJ files
|
| 8 |
+
*.ctxt
|
| 9 |
+
|
| 10 |
+
# Mobile Tools for Java (J2ME)
|
| 11 |
+
.mtj.tmp/
|
| 12 |
+
|
| 13 |
+
# Package Files #
|
| 14 |
+
*.jar
|
| 15 |
+
*.war
|
| 16 |
+
*.nar
|
| 17 |
+
*.ear
|
| 18 |
+
*.zip
|
| 19 |
+
*.tar.gz
|
| 20 |
+
*.rar
|
| 21 |
+
|
| 22 |
+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
| 23 |
+
hs_err_pid*
|
| 24 |
+
node_modules
|
.replit
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
language = "nix"
|
| 2 |
+
run = "npm start"
|
| 3 |
+
entrypoint = "main.sh"
|
| 4 |
+
|
| 5 |
+
[nix]
|
| 6 |
+
channel = "stable-22_11"
|
Dockerfile
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM node:lts-buster
|
| 2 |
+
|
| 3 |
+
RUN apt-get update && \
|
| 4 |
+
apt-get install -y \
|
| 5 |
+
ffmpeg \
|
| 6 |
+
imagemagick \
|
| 7 |
+
webp && \
|
| 8 |
+
apt-get upgrade -y && \
|
| 9 |
+
rm -rf /var/lib/apt/lists/*
|
| 10 |
+
|
| 11 |
+
COPY package.json .
|
| 12 |
+
|
| 13 |
+
RUN npm install
|
| 14 |
+
|
| 15 |
+
COPY . .
|
| 16 |
+
|
| 17 |
+
EXPOSE 5000
|
| 18 |
+
|
| 19 |
+
CMD ["node", "index.js"]
|
LICENSE
ADDED
|
@@ -0,0 +1,674 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
GNU GENERAL PUBLIC LICENSE
|
| 2 |
+
Version 3, 29 June 2007
|
| 3 |
+
|
| 4 |
+
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
| 5 |
+
Everyone is permitted to copy and distribute verbatim copies
|
| 6 |
+
of this license document, but changing it is not allowed.
|
| 7 |
+
|
| 8 |
+
Preamble
|
| 9 |
+
|
| 10 |
+
The GNU General Public License is a free, copyleft license for
|
| 11 |
+
software and other kinds of works.
|
| 12 |
+
|
| 13 |
+
The licenses for most software and other practical works are designed
|
| 14 |
+
to take away your freedom to share and change the works. By contrast,
|
| 15 |
+
the GNU General Public License is intended to guarantee your freedom to
|
| 16 |
+
share and change all versions of a program--to make sure it remains free
|
| 17 |
+
software for all its users. We, the Free Software Foundation, use the
|
| 18 |
+
GNU General Public License for most of our software; it applies also to
|
| 19 |
+
any other work released this way by its authors. You can apply it to
|
| 20 |
+
your programs, too.
|
| 21 |
+
|
| 22 |
+
When we speak of free software, we are referring to freedom, not
|
| 23 |
+
price. Our General Public Licenses are designed to make sure that you
|
| 24 |
+
have the freedom to distribute copies of free software (and charge for
|
| 25 |
+
them if you wish), that you receive source code or can get it if you
|
| 26 |
+
want it, that you can change the software or use pieces of it in new
|
| 27 |
+
free programs, and that you know you can do these things.
|
| 28 |
+
|
| 29 |
+
To protect your rights, we need to prevent others from denying you
|
| 30 |
+
these rights or asking you to surrender the rights. Therefore, you have
|
| 31 |
+
certain responsibilities if you distribute copies of the software, or if
|
| 32 |
+
you modify it: responsibilities to respect the freedom of others.
|
| 33 |
+
|
| 34 |
+
For example, if you distribute copies of such a program, whether
|
| 35 |
+
gratis or for a fee, you must pass on to the recipients the same
|
| 36 |
+
freedoms that you received. You must make sure that they, too, receive
|
| 37 |
+
or can get the source code. And you must show them these terms so they
|
| 38 |
+
know their rights.
|
| 39 |
+
|
| 40 |
+
Developers that use the GNU GPL protect your rights with two steps:
|
| 41 |
+
(1) assert copyright on the software, and (2) offer you this License
|
| 42 |
+
giving you legal permission to copy, distribute and/or modify it.
|
| 43 |
+
|
| 44 |
+
For the developers' and authors' protection, the GPL clearly explains
|
| 45 |
+
that there is no warranty for this free software. For both users' and
|
| 46 |
+
authors' sake, the GPL requires that modified versions be marked as
|
| 47 |
+
changed, so that their problems will not be attributed erroneously to
|
| 48 |
+
authors of previous versions.
|
| 49 |
+
|
| 50 |
+
Some devices are designed to deny users access to install or run
|
| 51 |
+
modified versions of the software inside them, although the manufacturer
|
| 52 |
+
can do so. This is fundamentally incompatible with the aim of
|
| 53 |
+
protecting users' freedom to change the software. The systematic
|
| 54 |
+
pattern of such abuse occurs in the area of products for individuals to
|
| 55 |
+
use, which is precisely where it is most unacceptable. Therefore, we
|
| 56 |
+
have designed this version of the GPL to prohibit the practice for those
|
| 57 |
+
products. If such problems arise substantially in other domains, we
|
| 58 |
+
stand ready to extend this provision to those domains in future versions
|
| 59 |
+
of the GPL, as needed to protect the freedom of users.
|
| 60 |
+
|
| 61 |
+
Finally, every program is threatened constantly by software patents.
|
| 62 |
+
States should not allow patents to restrict development and use of
|
| 63 |
+
software on general-purpose computers, but in those that do, we wish to
|
| 64 |
+
avoid the special danger that patents applied to a free program could
|
| 65 |
+
make it effectively proprietary. To prevent this, the GPL assures that
|
| 66 |
+
patents cannot be used to render the program non-free.
|
| 67 |
+
|
| 68 |
+
The precise terms and conditions for copying, distribution and
|
| 69 |
+
modification follow.
|
| 70 |
+
|
| 71 |
+
TERMS AND CONDITIONS
|
| 72 |
+
|
| 73 |
+
0. Definitions.
|
| 74 |
+
|
| 75 |
+
"This License" refers to version 3 of the GNU General Public License.
|
| 76 |
+
|
| 77 |
+
"Copyright" also means copyright-like laws that apply to other kinds of
|
| 78 |
+
works, such as semiconductor masks.
|
| 79 |
+
|
| 80 |
+
"The Program" refers to any copyrightable work licensed under this
|
| 81 |
+
License. Each licensee is addressed as "you". "Licensees" and
|
| 82 |
+
"recipients" may be individuals or organizations.
|
| 83 |
+
|
| 84 |
+
To "modify" a work means to copy from or adapt all or part of the work
|
| 85 |
+
in a fashion requiring copyright permission, other than the making of an
|
| 86 |
+
exact copy. The resulting work is called a "modified version" of the
|
| 87 |
+
earlier work or a work "based on" the earlier work.
|
| 88 |
+
|
| 89 |
+
A "covered work" means either the unmodified Program or a work based
|
| 90 |
+
on the Program.
|
| 91 |
+
|
| 92 |
+
To "propagate" a work means to do anything with it that, without
|
| 93 |
+
permission, would make you directly or secondarily liable for
|
| 94 |
+
infringement under applicable copyright law, except executing it on a
|
| 95 |
+
computer or modifying a private copy. Propagation includes copying,
|
| 96 |
+
distribution (with or without modification), making available to the
|
| 97 |
+
public, and in some countries other activities as well.
|
| 98 |
+
|
| 99 |
+
To "convey" a work means any kind of propagation that enables other
|
| 100 |
+
parties to make or receive copies. Mere interaction with a user through
|
| 101 |
+
a computer network, with no transfer of a copy, is not conveying.
|
| 102 |
+
|
| 103 |
+
An interactive user interface displays "Appropriate Legal Notices"
|
| 104 |
+
to the extent that it includes a convenient and prominently visible
|
| 105 |
+
feature that (1) displays an appropriate copyright notice, and (2)
|
| 106 |
+
tells the user that there is no warranty for the work (except to the
|
| 107 |
+
extent that warranties are provided), that licensees may convey the
|
| 108 |
+
work under this License, and how to view a copy of this License. If
|
| 109 |
+
the interface presents a list of user commands or options, such as a
|
| 110 |
+
menu, a prominent item in the list meets this criterion.
|
| 111 |
+
|
| 112 |
+
1. Source Code.
|
| 113 |
+
|
| 114 |
+
The "source code" for a work means the preferred form of the work
|
| 115 |
+
for making modifications to it. "Object code" means any non-source
|
| 116 |
+
form of a work.
|
| 117 |
+
|
| 118 |
+
A "Standard Interface" means an interface that either is an official
|
| 119 |
+
standard defined by a recognized standards body, or, in the case of
|
| 120 |
+
interfaces specified for a particular programming language, one that
|
| 121 |
+
is widely used among developers working in that language.
|
| 122 |
+
|
| 123 |
+
The "System Libraries" of an executable work include anything, other
|
| 124 |
+
than the work as a whole, that (a) is included in the normal form of
|
| 125 |
+
packaging a Major Component, but which is not part of that Major
|
| 126 |
+
Component, and (b) serves only to enable use of the work with that
|
| 127 |
+
Major Component, or to implement a Standard Interface for which an
|
| 128 |
+
implementation is available to the public in source code form. A
|
| 129 |
+
"Major Component", in this context, means a major essential component
|
| 130 |
+
(kernel, window system, and so on) of the specific operating system
|
| 131 |
+
(if any) on which the executable work runs, or a compiler used to
|
| 132 |
+
produce the work, or an object code interpreter used to run it.
|
| 133 |
+
|
| 134 |
+
The "Corresponding Source" for a work in object code form means all
|
| 135 |
+
the source code needed to generate, install, and (for an executable
|
| 136 |
+
work) run the object code and to modify the work, including scripts to
|
| 137 |
+
control those activities. However, it does not include the work's
|
| 138 |
+
System Libraries, or general-purpose tools or generally available free
|
| 139 |
+
programs which are used unmodified in performing those activities but
|
| 140 |
+
which are not part of the work. For example, Corresponding Source
|
| 141 |
+
includes interface definition files associated with source files for
|
| 142 |
+
the work, and the source code for shared libraries and dynamically
|
| 143 |
+
linked subprograms that the work is specifically designed to require,
|
| 144 |
+
such as by intimate data communication or control flow between those
|
| 145 |
+
subprograms and other parts of the work.
|
| 146 |
+
|
| 147 |
+
The Corresponding Source need not include anything that users
|
| 148 |
+
can regenerate automatically from other parts of the Corresponding
|
| 149 |
+
Source.
|
| 150 |
+
|
| 151 |
+
The Corresponding Source for a work in source code form is that
|
| 152 |
+
same work.
|
| 153 |
+
|
| 154 |
+
2. Basic Permissions.
|
| 155 |
+
|
| 156 |
+
All rights granted under this License are granted for the term of
|
| 157 |
+
copyright on the Program, and are irrevocable provided the stated
|
| 158 |
+
conditions are met. This License explicitly affirms your unlimited
|
| 159 |
+
permission to run the unmodified Program. The output from running a
|
| 160 |
+
covered work is covered by this License only if the output, given its
|
| 161 |
+
content, constitutes a covered work. This License acknowledges your
|
| 162 |
+
rights of fair use or other equivalent, as provided by copyright law.
|
| 163 |
+
|
| 164 |
+
You may make, run and propagate covered works that you do not
|
| 165 |
+
convey, without conditions so long as your license otherwise remains
|
| 166 |
+
in force. You may convey covered works to others for the sole purpose
|
| 167 |
+
of having them make modifications exclusively for you, or provide you
|
| 168 |
+
with facilities for running those works, provided that you comply with
|
| 169 |
+
the terms of this License in conveying all material for which you do
|
| 170 |
+
not control copyright. Those thus making or running the covered works
|
| 171 |
+
for you must do so exclusively on your behalf, under your direction
|
| 172 |
+
and control, on terms that prohibit them from making any copies of
|
| 173 |
+
your copyrighted material outside their relationship with you.
|
| 174 |
+
|
| 175 |
+
Conveying under any other circumstances is permitted solely under
|
| 176 |
+
the conditions stated below. Sublicensing is not allowed; section 10
|
| 177 |
+
makes it unnecessary.
|
| 178 |
+
|
| 179 |
+
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
| 180 |
+
|
| 181 |
+
No covered work shall be deemed part of an effective technological
|
| 182 |
+
measure under any applicable law fulfilling obligations under article
|
| 183 |
+
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
| 184 |
+
similar laws prohibiting or restricting circumvention of such
|
| 185 |
+
measures.
|
| 186 |
+
|
| 187 |
+
When you convey a covered work, you waive any legal power to forbid
|
| 188 |
+
circumvention of technological measures to the extent such circumvention
|
| 189 |
+
is effected by exercising rights under this License with respect to
|
| 190 |
+
the covered work, and you disclaim any intention to limit operation or
|
| 191 |
+
modification of the work as a means of enforcing, against the work's
|
| 192 |
+
users, your or third parties' legal rights to forbid circumvention of
|
| 193 |
+
technological measures.
|
| 194 |
+
|
| 195 |
+
4. Conveying Verbatim Copies.
|
| 196 |
+
|
| 197 |
+
You may convey verbatim copies of the Program's source code as you
|
| 198 |
+
receive it, in any medium, provided that you conspicuously and
|
| 199 |
+
appropriately publish on each copy an appropriate copyright notice;
|
| 200 |
+
keep intact all notices stating that this License and any
|
| 201 |
+
non-permissive terms added in accord with section 7 apply to the code;
|
| 202 |
+
keep intact all notices of the absence of any warranty; and give all
|
| 203 |
+
recipients a copy of this License along with the Program.
|
| 204 |
+
|
| 205 |
+
You may charge any price or no price for each copy that you convey,
|
| 206 |
+
and you may offer support or warranty protection for a fee.
|
| 207 |
+
|
| 208 |
+
5. Conveying Modified Source Versions.
|
| 209 |
+
|
| 210 |
+
You may convey a work based on the Program, or the modifications to
|
| 211 |
+
produce it from the Program, in the form of source code under the
|
| 212 |
+
terms of section 4, provided that you also meet all of these conditions:
|
| 213 |
+
|
| 214 |
+
a) The work must carry prominent notices stating that you modified
|
| 215 |
+
it, and giving a relevant date.
|
| 216 |
+
|
| 217 |
+
b) The work must carry prominent notices stating that it is
|
| 218 |
+
released under this License and any conditions added under section
|
| 219 |
+
7. This requirement modifies the requirement in section 4 to
|
| 220 |
+
"keep intact all notices".
|
| 221 |
+
|
| 222 |
+
c) You must license the entire work, as a whole, under this
|
| 223 |
+
License to anyone who comes into possession of a copy. This
|
| 224 |
+
License will therefore apply, along with any applicable section 7
|
| 225 |
+
additional terms, to the whole of the work, and all its parts,
|
| 226 |
+
regardless of how they are packaged. This License gives no
|
| 227 |
+
permission to license the work in any other way, but it does not
|
| 228 |
+
invalidate such permission if you have separately received it.
|
| 229 |
+
|
| 230 |
+
d) If the work has interactive user interfaces, each must display
|
| 231 |
+
Appropriate Legal Notices; however, if the Program has interactive
|
| 232 |
+
interfaces that do not display Appropriate Legal Notices, your
|
| 233 |
+
work need not make them do so.
|
| 234 |
+
|
| 235 |
+
A compilation of a covered work with other separate and independent
|
| 236 |
+
works, which are not by their nature extensions of the covered work,
|
| 237 |
+
and which are not combined with it such as to form a larger program,
|
| 238 |
+
in or on a volume of a storage or distribution medium, is called an
|
| 239 |
+
"aggregate" if the compilation and its resulting copyright are not
|
| 240 |
+
used to limit the access or legal rights of the compilation's users
|
| 241 |
+
beyond what the individual works permit. Inclusion of a covered work
|
| 242 |
+
in an aggregate does not cause this License to apply to the other
|
| 243 |
+
parts of the aggregate.
|
| 244 |
+
|
| 245 |
+
6. Conveying Non-Source Forms.
|
| 246 |
+
|
| 247 |
+
You may convey a covered work in object code form under the terms
|
| 248 |
+
of sections 4 and 5, provided that you also convey the
|
| 249 |
+
machine-readable Corresponding Source under the terms of this License,
|
| 250 |
+
in one of these ways:
|
| 251 |
+
|
| 252 |
+
a) Convey the object code in, or embodied in, a physical product
|
| 253 |
+
(including a physical distribution medium), accompanied by the
|
| 254 |
+
Corresponding Source fixed on a durable physical medium
|
| 255 |
+
customarily used for software interchange.
|
| 256 |
+
|
| 257 |
+
b) Convey the object code in, or embodied in, a physical product
|
| 258 |
+
(including a physical distribution medium), accompanied by a
|
| 259 |
+
written offer, valid for at least three years and valid for as
|
| 260 |
+
long as you offer spare parts or customer support for that product
|
| 261 |
+
model, to give anyone who possesses the object code either (1) a
|
| 262 |
+
copy of the Corresponding Source for all the software in the
|
| 263 |
+
product that is covered by this License, on a durable physical
|
| 264 |
+
medium customarily used for software interchange, for a price no
|
| 265 |
+
more than your reasonable cost of physically performing this
|
| 266 |
+
conveying of source, or (2) access to copy the
|
| 267 |
+
Corresponding Source from a network server at no charge.
|
| 268 |
+
|
| 269 |
+
c) Convey individual copies of the object code with a copy of the
|
| 270 |
+
written offer to provide the Corresponding Source. This
|
| 271 |
+
alternative is allowed only occasionally and noncommercially, and
|
| 272 |
+
only if you received the object code with such an offer, in accord
|
| 273 |
+
with subsection 6b.
|
| 274 |
+
|
| 275 |
+
d) Convey the object code by offering access from a designated
|
| 276 |
+
place (gratis or for a charge), and offer equivalent access to the
|
| 277 |
+
Corresponding Source in the same way through the same place at no
|
| 278 |
+
further charge. You need not require recipients to copy the
|
| 279 |
+
Corresponding Source along with the object code. If the place to
|
| 280 |
+
copy the object code is a network server, the Corresponding Source
|
| 281 |
+
may be on a different server (operated by you or a third party)
|
| 282 |
+
that supports equivalent copying facilities, provided you maintain
|
| 283 |
+
clear directions next to the object code saying where to find the
|
| 284 |
+
Corresponding Source. Regardless of what server hosts the
|
| 285 |
+
Corresponding Source, you remain obligated to ensure that it is
|
| 286 |
+
available for as long as needed to satisfy these requirements.
|
| 287 |
+
|
| 288 |
+
e) Convey the object code using peer-to-peer transmission, provided
|
| 289 |
+
you inform other peers where the object code and Corresponding
|
| 290 |
+
Source of the work are being offered to the general public at no
|
| 291 |
+
charge under subsection 6d.
|
| 292 |
+
|
| 293 |
+
A separable portion of the object code, whose source code is excluded
|
| 294 |
+
from the Corresponding Source as a System Library, need not be
|
| 295 |
+
included in conveying the object code work.
|
| 296 |
+
|
| 297 |
+
A "User Product" is either (1) a "consumer product", which means any
|
| 298 |
+
tangible personal property which is normally used for personal, family,
|
| 299 |
+
or household purposes, or (2) anything designed or sold for incorporation
|
| 300 |
+
into a dwelling. In determining whether a product is a consumer product,
|
| 301 |
+
doubtful cases shall be resolved in favor of coverage. For a particular
|
| 302 |
+
product received by a particular user, "normally used" refers to a
|
| 303 |
+
typical or common use of that class of product, regardless of the status
|
| 304 |
+
of the particular user or of the way in which the particular user
|
| 305 |
+
actually uses, or expects or is expected to use, the product. A product
|
| 306 |
+
is a consumer product regardless of whether the product has substantial
|
| 307 |
+
commercial, industrial or non-consumer uses, unless such uses represent
|
| 308 |
+
the only significant mode of use of the product.
|
| 309 |
+
|
| 310 |
+
"Installation Information" for a User Product means any methods,
|
| 311 |
+
procedures, authorization keys, or other information required to install
|
| 312 |
+
and execute modified versions of a covered work in that User Product from
|
| 313 |
+
a modified version of its Corresponding Source. The information must
|
| 314 |
+
suffice to ensure that the continued functioning of the modified object
|
| 315 |
+
code is in no case prevented or interfered with solely because
|
| 316 |
+
modification has been made.
|
| 317 |
+
|
| 318 |
+
If you convey an object code work under this section in, or with, or
|
| 319 |
+
specifically for use in, a User Product, and the conveying occurs as
|
| 320 |
+
part of a transaction in which the right of possession and use of the
|
| 321 |
+
User Product is transferred to the recipient in perpetuity or for a
|
| 322 |
+
fixed term (regardless of how the transaction is characterized), the
|
| 323 |
+
Corresponding Source conveyed under this section must be accompanied
|
| 324 |
+
by the Installation Information. But this requirement does not apply
|
| 325 |
+
if neither you nor any third party retains the ability to install
|
| 326 |
+
modified object code on the User Product (for example, the work has
|
| 327 |
+
been installed in ROM).
|
| 328 |
+
|
| 329 |
+
The requirement to provide Installation Information does not include a
|
| 330 |
+
requirement to continue to provide support service, warranty, or updates
|
| 331 |
+
for a work that has been modified or installed by the recipient, or for
|
| 332 |
+
the User Product in which it has been modified or installed. Access to a
|
| 333 |
+
network may be denied when the modification itself materially and
|
| 334 |
+
adversely affects the operation of the network or violates the rules and
|
| 335 |
+
protocols for communication across the network.
|
| 336 |
+
|
| 337 |
+
Corresponding Source conveyed, and Installation Information provided,
|
| 338 |
+
in accord with this section must be in a format that is publicly
|
| 339 |
+
documented (and with an implementation available to the public in
|
| 340 |
+
source code form), and must require no special password or key for
|
| 341 |
+
unpacking, reading or copying.
|
| 342 |
+
|
| 343 |
+
7. Additional Terms.
|
| 344 |
+
|
| 345 |
+
"Additional permissions" are terms that supplement the terms of this
|
| 346 |
+
License by making exceptions from one or more of its conditions.
|
| 347 |
+
Additional permissions that are applicable to the entire Program shall
|
| 348 |
+
be treated as though they were included in this License, to the extent
|
| 349 |
+
that they are valid under applicable law. If additional permissions
|
| 350 |
+
apply only to part of the Program, that part may be used separately
|
| 351 |
+
under those permissions, but the entire Program remains governed by
|
| 352 |
+
this License without regard to the additional permissions.
|
| 353 |
+
|
| 354 |
+
When you convey a copy of a covered work, you may at your option
|
| 355 |
+
remove any additional permissions from that copy, or from any part of
|
| 356 |
+
it. (Additional permissions may be written to require their own
|
| 357 |
+
removal in certain cases when you modify the work.) You may place
|
| 358 |
+
additional permissions on material, added by you to a covered work,
|
| 359 |
+
for which you have or can give appropriate copyright permission.
|
| 360 |
+
|
| 361 |
+
Notwithstanding any other provision of this License, for material you
|
| 362 |
+
add to a covered work, you may (if authorized by the copyright holders of
|
| 363 |
+
that material) supplement the terms of this License with terms:
|
| 364 |
+
|
| 365 |
+
a) Disclaiming warranty or limiting liability differently from the
|
| 366 |
+
terms of sections 15 and 16 of this License; or
|
| 367 |
+
|
| 368 |
+
b) Requiring preservation of specified reasonable legal notices or
|
| 369 |
+
author attributions in that material or in the Appropriate Legal
|
| 370 |
+
Notices displayed by works containing it; or
|
| 371 |
+
|
| 372 |
+
c) Prohibiting misrepresentation of the origin of that material, or
|
| 373 |
+
requiring that modified versions of such material be marked in
|
| 374 |
+
reasonable ways as different from the original version; or
|
| 375 |
+
|
| 376 |
+
d) Limiting the use for publicity purposes of names of licensors or
|
| 377 |
+
authors of the material; or
|
| 378 |
+
|
| 379 |
+
e) Declining to grant rights under trademark law for use of some
|
| 380 |
+
trade names, trademarks, or service marks; or
|
| 381 |
+
|
| 382 |
+
f) Requiring indemnification of licensors and authors of that
|
| 383 |
+
material by anyone who conveys the material (or modified versions of
|
| 384 |
+
it) with contractual assumptions of liability to the recipient, for
|
| 385 |
+
any liability that these contractual assumptions directly impose on
|
| 386 |
+
those licensors and authors.
|
| 387 |
+
|
| 388 |
+
All other non-permissive additional terms are considered "further
|
| 389 |
+
restrictions" within the meaning of section 10. If the Program as you
|
| 390 |
+
received it, or any part of it, contains a notice stating that it is
|
| 391 |
+
governed by this License along with a term that is a further
|
| 392 |
+
restriction, you may remove that term. If a license document contains
|
| 393 |
+
a further restriction but permits relicensing or conveying under this
|
| 394 |
+
License, you may add to a covered work material governed by the terms
|
| 395 |
+
of that license document, provided that the further restriction does
|
| 396 |
+
not survive such relicensing or conveying.
|
| 397 |
+
|
| 398 |
+
If you add terms to a covered work in accord with this section, you
|
| 399 |
+
must place, in the relevant source files, a statement of the
|
| 400 |
+
additional terms that apply to those files, or a notice indicating
|
| 401 |
+
where to find the applicable terms.
|
| 402 |
+
|
| 403 |
+
Additional terms, permissive or non-permissive, may be stated in the
|
| 404 |
+
form of a separately written license, or stated as exceptions;
|
| 405 |
+
the above requirements apply either way.
|
| 406 |
+
|
| 407 |
+
8. Termination.
|
| 408 |
+
|
| 409 |
+
You may not propagate or modify a covered work except as expressly
|
| 410 |
+
provided under this License. Any attempt otherwise to propagate or
|
| 411 |
+
modify it is void, and will automatically terminate your rights under
|
| 412 |
+
this License (including any patent licenses granted under the third
|
| 413 |
+
paragraph of section 11).
|
| 414 |
+
|
| 415 |
+
However, if you cease all violation of this License, then your
|
| 416 |
+
license from a particular copyright holder is reinstated (a)
|
| 417 |
+
provisionally, unless and until the copyright holder explicitly and
|
| 418 |
+
finally terminates your license, and (b) permanently, if the copyright
|
| 419 |
+
holder fails to notify you of the violation by some reasonable means
|
| 420 |
+
prior to 60 days after the cessation.
|
| 421 |
+
|
| 422 |
+
Moreover, your license from a particular copyright holder is
|
| 423 |
+
reinstated permanently if the copyright holder notifies you of the
|
| 424 |
+
violation by some reasonable means, this is the first time you have
|
| 425 |
+
received notice of violation of this License (for any work) from that
|
| 426 |
+
copyright holder, and you cure the violation prior to 30 days after
|
| 427 |
+
your receipt of the notice.
|
| 428 |
+
|
| 429 |
+
Termination of your rights under this section does not terminate the
|
| 430 |
+
licenses of parties who have received copies or rights from you under
|
| 431 |
+
this License. If your rights have been terminated and not permanently
|
| 432 |
+
reinstated, you do not qualify to receive new licenses for the same
|
| 433 |
+
material under section 10.
|
| 434 |
+
|
| 435 |
+
9. Acceptance Not Required for Having Copies.
|
| 436 |
+
|
| 437 |
+
You are not required to accept this License in order to receive or
|
| 438 |
+
run a copy of the Program. Ancillary propagation of a covered work
|
| 439 |
+
occurring solely as a consequence of using peer-to-peer transmission
|
| 440 |
+
to receive a copy likewise does not require acceptance. However,
|
| 441 |
+
nothing other than this License grants you permission to propagate or
|
| 442 |
+
modify any covered work. These actions infringe copyright if you do
|
| 443 |
+
not accept this License. Therefore, by modifying or propagating a
|
| 444 |
+
covered work, you indicate your acceptance of this License to do so.
|
| 445 |
+
|
| 446 |
+
10. Automatic Licensing of Downstream Recipients.
|
| 447 |
+
|
| 448 |
+
Each time you convey a covered work, the recipient automatically
|
| 449 |
+
receives a license from the original licensors, to run, modify and
|
| 450 |
+
propagate that work, subject to this License. You are not responsible
|
| 451 |
+
for enforcing compliance by third parties with this License.
|
| 452 |
+
|
| 453 |
+
An "entity transaction" is a transaction transferring control of an
|
| 454 |
+
organization, or substantially all assets of one, or subdividing an
|
| 455 |
+
organization, or merging organizations. If propagation of a covered
|
| 456 |
+
work results from an entity transaction, each party to that
|
| 457 |
+
transaction who receives a copy of the work also receives whatever
|
| 458 |
+
licenses to the work the party's predecessor in interest had or could
|
| 459 |
+
give under the previous paragraph, plus a right to possession of the
|
| 460 |
+
Corresponding Source of the work from the predecessor in interest, if
|
| 461 |
+
the predecessor has it or can get it with reasonable efforts.
|
| 462 |
+
|
| 463 |
+
You may not impose any further restrictions on the exercise of the
|
| 464 |
+
rights granted or affirmed under this License. For example, you may
|
| 465 |
+
not impose a license fee, royalty, or other charge for exercise of
|
| 466 |
+
rights granted under this License, and you may not initiate litigation
|
| 467 |
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
| 468 |
+
any patent claim is infringed by making, using, selling, offering for
|
| 469 |
+
sale, or importing the Program or any portion of it.
|
| 470 |
+
|
| 471 |
+
11. Patents.
|
| 472 |
+
|
| 473 |
+
A "contributor" is a copyright holder who authorizes use under this
|
| 474 |
+
License of the Program or a work on which the Program is based. The
|
| 475 |
+
work thus licensed is called the contributor's "contributor version".
|
| 476 |
+
|
| 477 |
+
A contributor's "essential patent claims" are all patent claims
|
| 478 |
+
owned or controlled by the contributor, whether already acquired or
|
| 479 |
+
hereafter acquired, that would be infringed by some manner, permitted
|
| 480 |
+
by this License, of making, using, or selling its contributor version,
|
| 481 |
+
but do not include claims that would be infringed only as a
|
| 482 |
+
consequence of further modification of the contributor version. For
|
| 483 |
+
purposes of this definition, "control" includes the right to grant
|
| 484 |
+
patent sublicenses in a manner consistent with the requirements of
|
| 485 |
+
this License.
|
| 486 |
+
|
| 487 |
+
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
| 488 |
+
patent license under the contributor's essential patent claims, to
|
| 489 |
+
make, use, sell, offer for sale, import and otherwise run, modify and
|
| 490 |
+
propagate the contents of its contributor version.
|
| 491 |
+
|
| 492 |
+
In the following three paragraphs, a "patent license" is any express
|
| 493 |
+
agreement or commitment, however denominated, not to enforce a patent
|
| 494 |
+
(such as an express permission to practice a patent or covenant not to
|
| 495 |
+
sue for patent infringement). To "grant" such a patent license to a
|
| 496 |
+
party means to make such an agreement or commitment not to enforce a
|
| 497 |
+
patent against the party.
|
| 498 |
+
|
| 499 |
+
If you convey a covered work, knowingly relying on a patent license,
|
| 500 |
+
and the Corresponding Source of the work is not available for anyone
|
| 501 |
+
to copy, free of charge and under the terms of this License, through a
|
| 502 |
+
publicly available network server or other readily accessible means,
|
| 503 |
+
then you must either (1) cause the Corresponding Source to be so
|
| 504 |
+
available, or (2) arrange to deprive yourself of the benefit of the
|
| 505 |
+
patent license for this particular work, or (3) arrange, in a manner
|
| 506 |
+
consistent with the requirements of this License, to extend the patent
|
| 507 |
+
license to downstream recipients. "Knowingly relying" means you have
|
| 508 |
+
actual knowledge that, but for the patent license, your conveying the
|
| 509 |
+
covered work in a country, or your recipient's use of the covered work
|
| 510 |
+
in a country, would infringe one or more identifiable patents in that
|
| 511 |
+
country that you have reason to believe are valid.
|
| 512 |
+
|
| 513 |
+
If, pursuant to or in connection with a single transaction or
|
| 514 |
+
arrangement, you convey, or propagate by procuring conveyance of, a
|
| 515 |
+
covered work, and grant a patent license to some of the parties
|
| 516 |
+
receiving the covered work authorizing them to use, propagate, modify
|
| 517 |
+
or convey a specific copy of the covered work, then the patent license
|
| 518 |
+
you grant is automatically extended to all recipients of the covered
|
| 519 |
+
work and works based on it.
|
| 520 |
+
|
| 521 |
+
A patent license is "discriminatory" if it does not include within
|
| 522 |
+
the scope of its coverage, prohibits the exercise of, or is
|
| 523 |
+
conditioned on the non-exercise of one or more of the rights that are
|
| 524 |
+
specifically granted under this License. You may not convey a covered
|
| 525 |
+
work if you are a party to an arrangement with a third party that is
|
| 526 |
+
in the business of distributing software, under which you make payment
|
| 527 |
+
to the third party based on the extent of your activity of conveying
|
| 528 |
+
the work, and under which the third party grants, to any of the
|
| 529 |
+
parties who would receive the covered work from you, a discriminatory
|
| 530 |
+
patent license (a) in connection with copies of the covered work
|
| 531 |
+
conveyed by you (or copies made from those copies), or (b) primarily
|
| 532 |
+
for and in connection with specific products or compilations that
|
| 533 |
+
contain the covered work, unless you entered into that arrangement,
|
| 534 |
+
or that patent license was granted, prior to 28 March 2007.
|
| 535 |
+
|
| 536 |
+
Nothing in this License shall be construed as excluding or limiting
|
| 537 |
+
any implied license or other defenses to infringement that may
|
| 538 |
+
otherwise be available to you under applicable patent law.
|
| 539 |
+
|
| 540 |
+
12. No Surrender of Others' Freedom.
|
| 541 |
+
|
| 542 |
+
If conditions are imposed on you (whether by court order, agreement or
|
| 543 |
+
otherwise) that contradict the conditions of this License, they do not
|
| 544 |
+
excuse you from the conditions of this License. If you cannot convey a
|
| 545 |
+
covered work so as to satisfy simultaneously your obligations under this
|
| 546 |
+
License and any other pertinent obligations, then as a consequence you may
|
| 547 |
+
not convey it at all. For example, if you agree to terms that obligate you
|
| 548 |
+
to collect a royalty for further conveying from those to whom you convey
|
| 549 |
+
the Program, the only way you could satisfy both those terms and this
|
| 550 |
+
License would be to refrain entirely from conveying the Program.
|
| 551 |
+
|
| 552 |
+
13. Use with the GNU Affero General Public License.
|
| 553 |
+
|
| 554 |
+
Notwithstanding any other provision of this License, you have
|
| 555 |
+
permission to link or combine any covered work with a work licensed
|
| 556 |
+
under version 3 of the GNU Affero General Public License into a single
|
| 557 |
+
combined work, and to convey the resulting work. The terms of this
|
| 558 |
+
License will continue to apply to the part which is the covered work,
|
| 559 |
+
but the special requirements of the GNU Affero General Public License,
|
| 560 |
+
section 13, concerning interaction through a network will apply to the
|
| 561 |
+
combination as such.
|
| 562 |
+
|
| 563 |
+
14. Revised Versions of this License.
|
| 564 |
+
|
| 565 |
+
The Free Software Foundation may publish revised and/or new versions of
|
| 566 |
+
the GNU General Public License from time to time. Such new versions will
|
| 567 |
+
be similar in spirit to the present version, but may differ in detail to
|
| 568 |
+
address new problems or concerns.
|
| 569 |
+
|
| 570 |
+
Each version is given a distinguishing version number. If the
|
| 571 |
+
Program specifies that a certain numbered version of the GNU General
|
| 572 |
+
Public License "or any later version" applies to it, you have the
|
| 573 |
+
option of following the terms and conditions either of that numbered
|
| 574 |
+
version or of any later version published by the Free Software
|
| 575 |
+
Foundation. If the Program does not specify a version number of the
|
| 576 |
+
GNU General Public License, you may choose any version ever published
|
| 577 |
+
by the Free Software Foundation.
|
| 578 |
+
|
| 579 |
+
If the Program specifies that a proxy can decide which future
|
| 580 |
+
versions of the GNU General Public License can be used, that proxy's
|
| 581 |
+
public statement of acceptance of a version permanently authorizes you
|
| 582 |
+
to choose that version for the Program.
|
| 583 |
+
|
| 584 |
+
Later license versions may give you additional or different
|
| 585 |
+
permissions. However, no additional obligations are imposed on any
|
| 586 |
+
author or copyright holder as a result of your choosing to follow a
|
| 587 |
+
later version.
|
| 588 |
+
|
| 589 |
+
15. Disclaimer of Warranty.
|
| 590 |
+
|
| 591 |
+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
| 592 |
+
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
| 593 |
+
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
| 594 |
+
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
| 595 |
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
| 596 |
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
| 597 |
+
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
| 598 |
+
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
| 599 |
+
|
| 600 |
+
16. Limitation of Liability.
|
| 601 |
+
|
| 602 |
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
| 603 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
| 604 |
+
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
| 605 |
+
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
| 606 |
+
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
| 607 |
+
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
| 608 |
+
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
| 609 |
+
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
| 610 |
+
SUCH DAMAGES.
|
| 611 |
+
|
| 612 |
+
17. Interpretation of Sections 15 and 16.
|
| 613 |
+
|
| 614 |
+
If the disclaimer of warranty and limitation of liability provided
|
| 615 |
+
above cannot be given local legal effect according to their terms,
|
| 616 |
+
reviewing courts shall apply local law that most closely approximates
|
| 617 |
+
an absolute waiver of all civil liability in connection with the
|
| 618 |
+
Program, unless a warranty or assumption of liability accompanies a
|
| 619 |
+
copy of the Program in return for a fee.
|
| 620 |
+
|
| 621 |
+
END OF TERMS AND CONDITIONS
|
| 622 |
+
|
| 623 |
+
How to Apply These Terms to Your New Programs
|
| 624 |
+
|
| 625 |
+
If you develop a new program, and you want it to be of the greatest
|
| 626 |
+
possible use to the public, the best way to achieve this is to make it
|
| 627 |
+
free software which everyone can redistribute and change under these terms.
|
| 628 |
+
|
| 629 |
+
To do so, attach the following notices to the program. It is safest
|
| 630 |
+
to attach them to the start of each source file to most effectively
|
| 631 |
+
state the exclusion of warranty; and each file should have at least
|
| 632 |
+
the "copyright" line and a pointer to where the full notice is found.
|
| 633 |
+
|
| 634 |
+
<one line to give the program's name and a brief idea of what it does.>
|
| 635 |
+
Copyright (C) <year> <name of author>
|
| 636 |
+
|
| 637 |
+
This program is free software: you can redistribute it and/or modify
|
| 638 |
+
it under the terms of the GNU General Public License as published by
|
| 639 |
+
the Free Software Foundation, either version 3 of the License, or
|
| 640 |
+
(at your option) any later version.
|
| 641 |
+
|
| 642 |
+
This program is distributed in the hope that it will be useful,
|
| 643 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 644 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 645 |
+
GNU General Public License for more details.
|
| 646 |
+
|
| 647 |
+
You should have received a copy of the GNU General Public License
|
| 648 |
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
| 649 |
+
|
| 650 |
+
Also add information on how to contact you by electronic and paper mail.
|
| 651 |
+
|
| 652 |
+
If the program does terminal interaction, make it output a short
|
| 653 |
+
notice like this when it starts in an interactive mode:
|
| 654 |
+
|
| 655 |
+
<program> Copyright (C) <year> <name of author>
|
| 656 |
+
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
| 657 |
+
This is free software, and you are welcome to redistribute it
|
| 658 |
+
under certain conditions; type `show c' for details.
|
| 659 |
+
|
| 660 |
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
| 661 |
+
parts of the General Public License. Of course, your program's commands
|
| 662 |
+
might be different; for a GUI interface, you would use an "about box".
|
| 663 |
+
|
| 664 |
+
You should also get your employer (if you work as a programmer) or school,
|
| 665 |
+
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
| 666 |
+
For more information on this, and how to apply and follow the GNU GPL, see
|
| 667 |
+
<https://www.gnu.org/licenses/>.
|
| 668 |
+
|
| 669 |
+
The GNU General Public License does not permit incorporating your program
|
| 670 |
+
into proprietary programs. If your program is a subroutine library, you
|
| 671 |
+
may consider it more useful to permit linking proprietary applications with
|
| 672 |
+
the library. If this is what you want to do, use the GNU Lesser General
|
| 673 |
+
Public License instead of this License. But first, please read
|
| 674 |
+
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
Procfile
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
web: node . --server
|
README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Best Regards. Re7pntx
|
| 2 |
+
|
| 3 |
+
# R-BOT
|
| 4 |
+
Script WhatsApp Bot Simple Multi Device
|
| 5 |
+
|
| 6 |
+
## NOTE
|
| 7 |
+
This Script is for everyone, not for Sale. Jika dijual neraka menunggumu brother !
|
| 8 |
+
|
| 9 |
+
<p align="center">
|
| 10 |
+
<img src="https://telegra.ph/file/f1f6418d1940b80a90e01.jpg" width="35%" style="margin-left: auto;margin-right: auto;display: block;">
|
| 11 |
+
</p>
|
| 12 |
+
<h1 align="center">R-BOT</h1>
|
| 13 |
+
|
| 14 |
+
## UNTUK PENGGUNA WINDOWS/RDP
|
| 15 |
+
|
| 16 |
+
* Unduh & Instal Git [`Klik Disini`](https://git-scm.com/downloads)
|
| 17 |
+
* Unduh & Instal NodeJS [`Klik Disini`](https://nodejs.org/en/download)
|
| 18 |
+
* Unduh & Instal FFmpeg [`Klik Disini`](https://ffmpeg.org/download.html) (**Jangan Lupa Tambahkan FFmpeg ke variabel lingkungan PATH**)
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
git clone https://github.com/rasssya76/R-BOT-SIMPLE
|
| 23 |
+
cd R-BOT-SIMPLE
|
| 24 |
+
npm install
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## HOW TO CONNECT TO MONGODB WHEN RUN IN HEROKU
|
| 28 |
+
|
| 29 |
+
* Create account and database in mongodb atlas [`watch here`](https://youtu.be/rPqRyYJmx2g)
|
| 30 |
+
* when you already have a database, you just need to take mongourl
|
| 31 |
+
* Put mongourl in Procfile `web: node . --db 'mongourl'`
|
| 32 |
+
* Example `web: node . -- db 'Your Mongo URI'`
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
## FOR TERMUX/UBUNTU/SSH USER
|
| 37 |
+
|
| 38 |
+
```bash
|
| 39 |
+
apt update && apt upgrade
|
| 40 |
+
apt install yarn -y
|
| 41 |
+
apt install nodejs -y
|
| 42 |
+
apt install ffmpeg -y
|
| 43 |
+
git clone https://github.com/rasssya76/R-BOT-SIMPLE
|
| 44 |
+
cd R-BOT-SIMPLE
|
| 45 |
+
yarn install
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
## RECOMMENDED INSTALL ON TERMUX
|
| 49 |
+
|
| 50 |
+
```bash
|
| 51 |
+
pkg install yarn
|
| 52 |
+
yarn install
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## Installing
|
| 56 |
+
```bash
|
| 57 |
+
$ node .
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
## ❗ Warning
|
| 61 |
+
Don't put bots in multiple groups or your bot will 💀
|
| 62 |
+
|
| 63 |
+
Editing Number Owner & session name in [`config.js`](https://github.com/rasssya76/R-BOT-SIMPLE/blob/main/config.js)
|
| 64 |
+
|
| 65 |
+
## Thanks To
|
| 66 |
+
* [`@adiwajshing/baileys`](https://github.com/adiwajshing/baileys)
|
| 67 |
+
* [`Nurutomo`](https://github.com/Nurutomo)
|
| 68 |
+
* [`Mhankbarbar`](https://github.com/MhankBarBar)
|
| 69 |
+
* [`Faiz`](https://github.com/FaizBastomi)
|
| 70 |
+
* [`Gimenz`](https://github.com/Gimenz)
|
| 71 |
+
* [`rayy`](https://github.com/rayyreall)
|
| 72 |
+
* [`Fatih Arridho`](https://github.com/FatihArridho)
|
| 73 |
+
* [`zhwzein`](https://github.com/zhwzein)
|
| 74 |
+
* [`CAF-ID`](https://github.com/CAF-ID)
|
| 75 |
+
* [`bintang`](https://github.com/Bintangp02)
|
| 76 |
+
|
| 77 |
+
```Thanks to all who have participated in the development of this script```
|
Res.webp
ADDED
|
ahegao.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770950434180956160/004-7FVbFKsy0Z0.jpg"},
|
| 3 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770950436122525716/3d763900d18610184bdf6cc30102150f.jpg"},
|
| 4 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770950437880856586/3ec23da409a88cbf4bc7daaaf9f50a3d.jpg"},
|
| 5 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770950439759380520/3f5a759d1dc69dd4ba188ec91c13bf15.jpg"},
|
| 6 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374076270215168/mogami_yoshiaki_sengoku_collection_drawn_by_r44__sample-8869386742f18651f27b9844edbf8487.jpg"},
|
| 7 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374106959544328/0d8f82d2190ab34a58dfdf70379d48bd.jpg"},
|
| 8 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374111305629696/0a35ad05c6d3d2dcce8ee41eafc1c1da.jpg"},
|
| 9 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374110911234088/00ceb0c2-a234-4489-aaf3-fd92d702dec4.gif"},
|
| 10 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374114480455750/0a748ce5-fa8d-4893-ac86-21100d4d8111.jpg"},
|
| 11 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374115902717952/0a823293ae6d73a5a551ed96d395c085.jpg"},
|
| 12 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374115902717952/0a823293ae6d73a5a551ed96d395c085.jpg"},
|
| 13 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374197708554250/01737-B-z634ccruw.jpg"},
|
| 14 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374561265713192/435-RqgSoMmr39U.jpg"},
|
| 15 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374616014225458/446-tm6e2RNhOTM.jpg"},
|
| 16 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374643557695509/443-K2Hxy9c9FA.jpg"},
|
| 17 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374649732104212/444-BpA5g5jM_hQ.jpg"},
|
| 18 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374712139415622/431-372ilODZtDw.jpg"},
|
| 19 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374715062452224/00432-I0z-TRhK0dA.jpg"},
|
| 20 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374715691860008/432-99ejYgB_8EI.jpg"},
|
| 21 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374719425445918/00433-D5MhVncwM40.jpg"},
|
| 22 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374725652938812/434-O2p1kFgcJXM.jpg"},
|
| 23 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374729382723594/435-RqgSoMmr39U.jpg"},
|
| 24 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374735849816074/436-WNx39AwbeQ4.jpg"},
|
| 25 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374742380609636/437-7jsAQbZCDMQ.jpg"},
|
| 26 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374854036783124/429-FiCsrief79Q.jpg"},
|
| 27 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374855333085194/418-WVRNSuH_xb0.jpg"},
|
| 28 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374859187257424/419-PE_QlfkmVUQ.jpg"},
|
| 29 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374863348662282/420-VAmqHHHKDo.jpg"},
|
| 30 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374867966590996/421-Rwe6_Vfq3DM.jpg"},
|
| 31 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374871719837746/422_BIuU9h5cfI.jpg"},
|
| 32 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374878115889152/423-JIgerUfCsa4.jpg"},
|
| 33 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374906642399252/423-U9pYBn6WlKQ.jpg"},
|
| 34 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374914166587392/424-Pj94NODjZoE.jpg"},
|
| 35 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374917651267624/424-qdfkiW-FP8.jpg"},
|
| 36 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374927751807016/425-FqG0DXNCF_I.jpg"},
|
| 37 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374935717052476/426-5x4J4OuuFDQ.jpg"},
|
| 38 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374940171665446/426-drQcdvVsNnQ.jpg"},
|
| 39 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374948978524161/427-YLirbUpKQeY.jpg"},
|
| 40 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374956008833045/428-AAiKa5S2XDM.jpg"}
|
| 41 |
+
]
|
app.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "games-wabot",
|
| 3 |
+
"description": "Customizable WhatsApp Bot",
|
| 4 |
+
"repository": "https://github.com/BochilGaming/games-wabot",
|
| 5 |
+
"logo": "https://node-js-sample.herokuapp.com/node.png",
|
| 6 |
+
"keywords": ["bot", "whatsapp", "whatsapp-bot", "rpg", "games-wabot", "epic rpg"]
|
| 7 |
+
}
|
ass.json
ADDED
|
@@ -0,0 +1,181 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/683209653261303808/yande.re_613351_sample_ass_azur_lane_cameltoe_damao_yu_feet_pantsu_stockings_taihou_azur_lane_thighh.jpg"},
|
| 3 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/683209648664215585/yande.re_612976_sample_4min_ass_azur_lane_cameltoe_dido_azur_lane_erect_nipples_maid_no_bra_pantsu_s.jpg"},
|
| 4 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/683209646592360448/yande.re_612245_sample_animal_ears_ass_chita_ketchup_dress_nekomimi_pantsu_skirt_lift_tail_thighhigh.jpg"},
|
| 5 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/683209641865510953/yande.re_609551_sample_ass_breasts_censored_cosplay_cum_dress_kagami_masara_kkkk12103_nipples_no_bra.jpg"},
|
| 6 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/683076919494836254/021bcgzcnqj41.jpg"},
|
| 7 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/683049635052257371/uhuw5wk9koj41.jpg"},
|
| 8 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/682664131551166516/sample_2a3583974d06d7cdb2879b3704483e49afca1e04.jpg"},
|
| 9 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/682376635600863297/I6KHKiN_d.jpg"},
|
| 10 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/682376627853852729/czUyMXO_d.jpg"},
|
| 11 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/682376348500623390/xivk9in35hh41.jpg"},
|
| 12 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/682011009254424656/o86kietucri41.jpg"},
|
| 13 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/681926896254058761/1rf2m.png"},
|
| 14 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/681790372628004874/ec32416771771cea8a46f077c62fe174.png"},
|
| 15 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/681718857714368585/NV0K3vI_d.jpg"},
|
| 16 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/681501982216814617/w14gz2qk8vi41.jpg"},
|
| 17 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/680513877083160606/se17yezz5ci41.jpg"},
|
| 18 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/680164098704670787/a50311b.jpg"},
|
| 19 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/680058123117002762/z1zzuncdhyh41.jpg"},
|
| 20 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/679872747211587584/9cb04e3.jpg"},
|
| 21 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/679408491005214750/K0aqful_d.jpg"},
|
| 22 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/679408490799955973/SVF1RCC_d.jpg"},
|
| 23 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/678945529714966528/image0.jpg"},
|
| 24 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/678944005433720835/4cwyar9q9ch41.png"},
|
| 25 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/678731683771711519/7a720f4.png"},
|
| 26 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/678731683494756352/427c8bd.jpg"},
|
| 27 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/678731683104555039/a21043d.png"},
|
| 28 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/678731682257436682/7e5de87.jpg"},
|
| 29 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/674661587642220554/image0.jpg"},
|
| 30 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/674531741607788544/3bad222.jpg"},
|
| 31 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/670305766011306014/image0.jpg"},
|
| 32 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/669517376601194506/147263102711.jpg"},
|
| 33 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/668921119612600320/8c59c403a79d7a93c43dde5420ee2f32-1.jpg"},
|
| 34 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/668534985493315593/71265348_p0_master1200.jpg"},
|
| 35 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/668492258626109450/tfb6JtD.png"},
|
| 36 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/668074277848875025/75054880_p0_master1200.png"},
|
| 37 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/667324677143789571/51828042_p0_master1200.png"},
|
| 38 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/666773669393203204/image3.jpg"},
|
| 39 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/666773668940087324/image1.jpg"},
|
| 40 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/666677930122018816/image0.jpg"},
|
| 41 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/666442962393235476/8b3edf6.jpg"},
|
| 42 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/666063929889390592/image1.jpg"},
|
| 43 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/665995519398772747/image0.jpg"},
|
| 44 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/665989868773441558/image0.jpg"},
|
| 45 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/665966830917255229/image1.jpg"},
|
| 46 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/665656877966819363/image0.jpg"},
|
| 47 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/665555056480878592/77179757_p0_master1200.png"},
|
| 48 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/664651543630446602/Ass_Hentai_2.jpg"},
|
| 49 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/664651508843020337/Ass_Hentai_4.jpg"},
|
| 50 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/664611487800885297/image3.jpg"},
|
| 51 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/664611487335186453/image2.jpg"},
|
| 52 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/664611487335186452/image1.jpg"},
|
| 53 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/664504965666045964/63621044_p0_master1200.png"},
|
| 54 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/664495931634352128/78472811_p0_master1200.png"},
|
| 55 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/664470296979570688/78414823_p0_master1200.png"},
|
| 56 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/662609030912540682/IMG_20200103_115007.jpg"},
|
| 57 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/660970365584932869/image0.jpg"},
|
| 58 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/659410834728026122/bb84ff3.jpg"},
|
| 59 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/658968417923235842/image0.jpg"},
|
| 60 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/657016709387124747/509a7f2.png"},
|
| 61 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/656535440756834337/image0.jpg"},
|
| 62 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/656245127186087949/image2.jpg"},
|
| 63 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/656245126162808865/image1.jpg"},
|
| 64 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/656242667180785704/image0.jpg"},
|
| 65 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/656014775070883850/image0.jpg"},
|
| 66 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655967462113673226/9673dff.jpg"},
|
| 67 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655960073234808852/image1.jpg"},
|
| 68 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655614002189303839/image4.jpg"},
|
| 69 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655614001006247943/image2.jpg"},
|
| 70 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655459338437001236/image3.jpg"},
|
| 71 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655459337699065856/image1.jpg"},
|
| 72 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655459337271115776/image0.jpg"},
|
| 73 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655334662763446272/image8.jpg"},
|
| 74 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655334662037700608/image6.jpg"},
|
| 75 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655334661458755584/image4.jpg"},
|
| 76 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655334660947312650/image2.jpg"},
|
| 77 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/655334660410310667/image1.jpg"},
|
| 78 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/654371061193768996/7701640.jpg"},
|
| 79 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/651117615397339181/image0.jpg"},
|
| 80 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/651107236386701315/image0.jpg"},
|
| 81 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/651103042778955780/image0.jpg"},
|
| 82 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/650210253048381481/Anime-Musashi-28Kantai-Collection29-Kantai-Collection-Damao-YU-5583661.png"},
|
| 83 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/645976442668187659/image0.jpg"},
|
| 84 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/645976353878966278/image0.jpg"},
|
| 85 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/644296052991721502/3ed2192.jpg"},
|
| 86 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/643475925073264640/image0.jpg"},
|
| 87 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/643475746387394570/image0.jpg"},
|
| 88 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/643415157304983574/oGNHa20g.jpg"},
|
| 89 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641680793017778177/image0.jpg"},
|
| 90 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641680709198807042/image0.jpg"},
|
| 91 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641679582327734272/image0.jpg"},
|
| 92 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641163798648061972/image0.jpg"},
|
| 93 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641153902733164574/image0.jpg"},
|
| 94 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641149253854429194/image0.png"},
|
| 95 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641146964981055500/image0.jpg"},
|
| 96 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641146910295588905/image0.jpg"},
|
| 97 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/641146900942422017/image0.jpg"},
|
| 98 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/640706885242191872/54f4c1f.jpg"},
|
| 99 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/639759248938631188/thicc-test-1524027_01DRJN1D71Z2V661MCAZHG9815.640x0.jpg"},
|
| 100 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/639267405431832576/image0.jpg"},
|
| 101 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/639260355465445387/image0.jpg"},
|
| 102 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/639246684098134037/image0.jpg"},
|
| 103 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/639101408892813332/ab481d843e8c8970d89e6aef990a48796202596d.png"},
|
| 104 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/638470198764109837/image0.jpg"},
|
| 105 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/638430850064842762/image0.jpg"},
|
| 106 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/638429542205358081/image0.jpg"},
|
| 107 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/638429508327702528/image0.jpg"},
|
| 108 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/638182368858996776/3c2583.png"},
|
| 109 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/638103647015927809/image0.jpg"},
|
| 110 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/638103575129620530/image0.jpg"},
|
| 111 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/637878174000087045/image0.jpg"},
|
| 112 |
+
{"url":"https://media.discordapp.net/attachments/530635618003451904/637295053307641886/image0.jpg"},
|
| 113 |
+
{"url":"https://konachan.com/sample/1155676c3d40044e9e68cc8c5a8a70e1/Konachan.com%20-%20316708%20sample.jpg"},
|
| 114 |
+
{"url":"https://konachan.com/sample/d7b1e0f18c3dd52e5698f09ff088255c/Konachan.com%20-%20316687%20sample.jpg"},
|
| 115 |
+
{"url":"https://konachan.com/sample/5cd6c58baa80681607bd5ae43071f6d2/Konachan.com%20-%20316669%20sample.jpg"},
|
| 116 |
+
{"url":"https://konachan.com/sample/09fbd31d111262526f98cdd691bc14e1/Konachan.com%20-%20316638%20sample.jpg"},
|
| 117 |
+
{"url":"https://konachan.com/sample/52730995ccd5136bb6c8524ab7363396/Konachan.com%20-%20316634%20sample.jpg"},
|
| 118 |
+
{"url":"https://konachan.com/sample/747b76bfb23f7903019da58fb09bea9b/Konachan.com%20-%20316633%20sample.jpg"},
|
| 119 |
+
{"url":"https://konachan.com/sample/f42af31763ede31e6ed3a5e2b40436e9/Konachan.com%20-%20316632%20sample.jpg"},
|
| 120 |
+
{"url":"https://konachan.com/sample/b069dbe72d0b4c459ff4ba4aa754f213/Konachan.com%20-%20316618%20sample.jpg"},
|
| 121 |
+
{"url":"https://konachan.com/sample/0f76bc626106913a8082450826a63a94/Konachan.com%20-%20316609%20sample.jpg"},
|
| 122 |
+
{"url":"https://konachan.com/sample/3a01a6e8a99193e777cfe76663707f67/Konachan.com%20-%20316606%20sample.jpg"},
|
| 123 |
+
{"url":"https://konachan.com/sample/143c3a759456379a818b87c4deb22b44/Konachan.com%20-%20316604%20sample.jpg"},
|
| 124 |
+
{"url":"https://konachan.com/image/acd0838908ceb16928c02c52819f3c1a/Konachan.com%20-%20316588%20anthropomorphism%20anus%20ass%20ayanami_%28azur_lane%29%20azur_lane%20brown_eyes%20cropped%20dark%20gray_hair%20ponytail%20pussy%20rodriguez_%28kamwing%29%20skirt%20uncensored.jpg"},
|
| 125 |
+
{"url":"https://konachan.com/sample/2c98a66d2999c0b3e3febc2fadb73263/Konachan.com%20-%20316587%20sample.jpg"},
|
| 126 |
+
{"url":"https://konachan.com/jpeg/07f957a15776d3a2b62f66fd26035e35/Konachan.com%20-%20316583%20anthropomorphism%20ass%20brown_hair%20etsunami_kumita%20gun%20headband%20kantai_collection%20long_hair%20mechagirl%20panties%20transparent%20underwear%20weapon%20wink.jpg"},
|
| 127 |
+
{"url":"https://konachan.com/sample/a5dd5a7a56b957a0491d4c518d4a3b1a/Konachan.com%20-%20316544%20sample.jpg"},
|
| 128 |
+
{"url":"https://konachan.com/sample/efc2db82a388ecaed8e3214ec2fcf065/Konachan.com%20-%20316542%20sample.jpg"},
|
| 129 |
+
{"url":"https://konachan.com/sample/96a183940796ce317b45ed57d786a13a/Konachan.com%20-%20316533%20sample.jpg"},
|
| 130 |
+
{"url":"https://konachan.com/sample/497b4caea912c0868a6de407a65c641c/Konachan.com%20-%20316520%20sample.jpg"},
|
| 131 |
+
{"url":"https://konachan.com/sample/b2067db7f9abf73c0e16e13dce67d0d4/Konachan.com%20-%20316504%20sample.jpg"},
|
| 132 |
+
{"url":"https://konachan.com/sample/9e6e9ca1debb5e67f9d6274b53d66532/Konachan.com%20-%20316458%20sample.jpg"},
|
| 133 |
+
{"url":"https://konachan.com/sample/79580dfece36d208c76d55fe22ca21ec/Konachan.com%20-%20316451%20sample.jpg"},
|
| 134 |
+
{"url":"https://konachan.com/sample/a8c586e7b3f863f618e0d2e40a6737ca/Konachan.com%20-%20316426%20sample.jpg"},
|
| 135 |
+
{"url":"https://konachan.com/sample/daa405a61c6a932bdc277eef0408ebc9/Konachan.com%20-%20316419%20sample.jpg"},
|
| 136 |
+
{"url":"https://konachan.com/sample/d040e4bd54a8c20081f4688608e7f39e/Konachan.com%20-%20316393%20sample.jpg"},
|
| 137 |
+
{"url":"https://konachan.com/jpeg/a5d86d85f88ff5bdf94c92977cf1c7db/Konachan.com%20-%20316371%202girls%20aliasing%20ass%20azur_lane%20blue_eyes%20blush%20brown_hair%20clouds%20dress%20gloves%20gray_hair%20long_hair%20no_bra%20nopan%20rei_kun%20signed%20skirt_lift%20sky%20watermark.jpg"},
|
| 138 |
+
{"url":"https://konachan.com/sample/9ba81775f516614ad9def6417be655cb/Konachan.com%20-%20316369%20sample.jpg"},
|
| 139 |
+
{"url":"https://konachan.com/sample/08b6ee4c4c1e20199440c12548455b8f/Konachan.com%20-%20316332%20sample.jpg"},
|
| 140 |
+
{"url":"https://konachan.com/sample/f3f6ea463f111501fc8cc2b9b51e5c46/Konachan.com%20-%20316327%20sample.jpg"},
|
| 141 |
+
{"url":"https://konachan.com/sample/2897b42d557af1972c6dba4e48c3d3a0/Konachan.com%20-%20316311%20sample.jpg"},
|
| 142 |
+
{"url":"https://konachan.com/sample/d3c7f65c3ba1deda7c12d02982661994/Konachan.com%20-%20316300%20sample.jpg"},
|
| 143 |
+
{"url":"https://konachan.com/sample/8024a9645ca1f617e47a5517a9877be4/Konachan.com%20-%20316199%20sample.jpg"},
|
| 144 |
+
{"url":"https://konachan.com/sample/737a707688c52fdfdd74797e76d67ee2/Konachan.com%20-%20316192%20sample.jpg"},
|
| 145 |
+
{"url":"https://konachan.com/sample/ceb60e71af03f2a43958ef254619c537/Konachan.com%20-%20316191%20sample.jpg"},
|
| 146 |
+
{"url":"https://konachan.com/sample/99c4d8b8972dc3c2bf9c7ea2788a8fdc/Konachan.com%20-%20316189%20sample.jpg"},
|
| 147 |
+
{"url":"https://konachan.com/jpeg/60c4f47203e1b09a085058c7fb12c9b6/Konachan.com%20-%20316185%20ass%20blush%20braids%20kanojo_okarishimasu%20miazi%20panties%20purple_eyes%20red_hair%20sakurasawa_sumi%20school_uniform%20skirt%20thighhighs%20underwear%20waifu2x.jpg"},
|
| 148 |
+
{"url":"https://konachan.com/jpeg/a0863dacd6d8ad422e50aeb423d80111/Konachan.com%20-%20316184%20anus%20ass%20blush%20braids%20censored%20kanojo_okarishimasu%20miazi%20nopan%20purple_eyes%20pussy%20red_hair%20sakurasawa_sumi%20school_uniform%20skirt%20thighhighs%20waifu2x%20wet.jpg"},
|
| 149 |
+
{"url":"https://konachan.com/sample/47d6969795731490979501abb28176b2/Konachan.com%20-%20316173%20sample.jpg"},
|
| 150 |
+
{"url":"https://konachan.com/sample/09db6cfe17cb284dd18a06b2ede6632e/Konachan.com%20-%20316126%20sample.jpg"},
|
| 151 |
+
{"url":"https://konachan.com/sample/9300481457d1856a38433de5716d9c89/Konachan.com%20-%20316108%20sample.jpg"},
|
| 152 |
+
{"url":"https://konachan.com/sample/0bba0d6536375fe5565b7ac51ed7db88/Konachan.com%20-%20316089%20sample.jpg"},
|
| 153 |
+
{"url":"https://konachan.com/sample/dcaf0a2ad0b79ff1717a18359ec44996/Konachan.com%20-%20316088%20sample.jpg"},
|
| 154 |
+
{"url":"https://konachan.com/sample/24dd2b888c41ee50381c826de335705b/Konachan.com%20-%20316011%20sample.jpg"},
|
| 155 |
+
{"url":"https://konachan.com/sample/139b396b35f3dfcd24ee77952170b1b5/Konachan.com%20-%20316002%20sample.jpg"},
|
| 156 |
+
{"url":"https://konachan.com/sample/d274dae687e5755fa73dfe709de90b47/Konachan.com%20-%20316017%20sample.jpg"},
|
| 157 |
+
{"url":"https://konachan.com/sample/6b56f616636dee37b9cd7a3f4286bb9c/Konachan.com%20-%20316447%20sample.jpg"},
|
| 158 |
+
{"url":"https://konachan.com/sample/96f609d7d44c728efc56981706925b31/Konachan.com%20-%20315247%20sample.jpg"},
|
| 159 |
+
{"url":"https://konachan.com/sample/f9fa53d9c84cb91e888ffebbaadb60dd/Konachan.com%20-%20314894%20sample.jpg"},
|
| 160 |
+
{"url":"https://konachan.com/sample/6e240863e0243abfe6bb8d959464fa7c/Konachan.com%20-%20314481%20sample.jpg"},
|
| 161 |
+
{"url":"https://konachan.com/sample/72faaad5c52e32d951f30c92954bee2e/Konachan.com%20-%20314326%20sample.jpg"},
|
| 162 |
+
{"url":"https://konachan.com/sample/d85db565ce195e5fbc3fcc4045f80fe0/Konachan.com%20-%20313418%20sample.jpg"},
|
| 163 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770952689529126943/59355205_p2_-_Collection_Vol_1.png"},
|
| 164 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989028895621151/Hentai_nation_1.jpeg"},
|
| 165 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989034469195777/Hentai_nation_1.jpg"},
|
| 166 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989081248268345/Hentai_nation_3.png"},
|
| 167 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989204455948298/Hentai_nation_11.jpg"},
|
| 168 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989363567788063/Hentai_nation_12.jpg"},
|
| 169 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989367719624764/Hentai_nation_4.jpeg"},
|
| 170 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989378264629268/Hentai_nation_5.jpeg"},
|
| 171 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989382194167888/Hentai_nation_8.jpg"},
|
| 172 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989384530657300/Hentai_nation_9.jpg"},
|
| 173 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989386887725086/Hentai_nation_10.jpg"},
|
| 174 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989398380118056/Hentai_nation_8.jpeg"},
|
| 175 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000750528397312/496-iKzmSR7QPV4.jpg"},
|
| 176 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016314759413850/1648-AYOTgvqxtLw.jpg"},
|
| 177 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016668159803422/1694-22uvMW0T09I.jpg"},
|
| 178 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771373670655852575/RJ290927_img_smp1.png"},
|
| 179 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771377721699074048/947c1173cccc094affd65ba4d1c817b5.png"},
|
| 180 |
+
{"url":"https://i.imgur.com/1JJpaxX.jpg"}
|
| 181 |
+
]
|
bdsm.json
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/682642520060330037/fdbiq6ovshj41.jpg"},
|
| 3 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/682430717652893754/62brFYV_d.jpg"},
|
| 4 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/682747340041224248/4Gg9Cp2_d.jpg"},
|
| 5 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/682403179966759034/TmOtKZi_d.jpg"},
|
| 6 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/682217495519690759/3j4PMzx_d.jpg"},
|
| 7 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/682097348377444353/6dr1sjocd6j41.png"},
|
| 8 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681944451509256256/s5olejpbogi41.jpg"},
|
| 9 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681880153022136427/lw6pzke4m2j41.jpg"},
|
| 10 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681855096870797342/ijj5qvoyc2j41.jpg"},
|
| 11 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681855083830706188/boe5obvha2j41.jpg"},
|
| 12 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681855060774617121/yda6zvj7a2j41.jpg"},
|
| 13 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681633595336425528/1rah2.png"},
|
| 14 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681617579437326337/wqecde5s0xi41.jpg"},
|
| 15 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681223233403486208/fCNMdAp_d.jpg"},
|
| 16 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/681072466344411293/6ACB9EE.jpg"},
|
| 17 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680816567189110803/yTj4mnP_d.jpg"},
|
| 18 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680487709894115333/ZrnsiEE_d.jpg"},
|
| 19 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680187310377009192/m9dfn0cte4h41.jpg"},
|
| 20 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680187145519890496/3B0Qg2t_d.jpg"},
|
| 21 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680187145209905189/ohbefszcy4i41.jpg"},
|
| 22 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680164120334565408/2270b80.jpg"},
|
| 23 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680058208118636562/zlqc3z4b80i41.jpg"},
|
| 24 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680051413883289726/f68c85c.png"},
|
| 25 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/680051413312864299/6ae2e79.jpg"},
|
| 26 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/679341436411445256/IUHUn9u_d.jpg"},
|
| 27 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/678711958500802560/484738f.png"},
|
| 28 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/678711958048079882/346a200.jpg"},
|
| 29 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/678711957800484884/ddfe48b.jpg"},
|
| 30 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/678711957028864052/a1dc7ca.png"},
|
| 31 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677683354623148033/DevilHS-775781-MR.png"},
|
| 32 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677362365116841984/erzzz151lkg41.png"},
|
| 33 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028522652467231/image1.jpg"},
|
| 34 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028522501341194/image0.jpg"},
|
| 35 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028518609027102/image9.jpg"},
|
| 36 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028518248579103/image8.jpg"},
|
| 37 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028518021955604/image7.jpg"},
|
| 38 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028517564645376/image6.jpg"},
|
| 39 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028517325701139/image5.jpg"},
|
| 40 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028516713463808/image3.jpg"},
|
| 41 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028516285513738/image2.jpg"},
|
| 42 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028516092706816/image1.jpg"},
|
| 43 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/677028515836723220/image0.jpg"},
|
| 44 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/676127612002631694/image0.jpg"},
|
| 45 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/674469521481793536/lj2edPZ5AD0lLyKJu4JVuBBBOk6ly_EHuFxNx7xqWkQ.png"},
|
| 46 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/674469495309336578/Ff8oAs5Q1lab8g9AwvYRsN3WE980M1638KJTiicbbqo.png"},
|
| 47 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/674469461415297034/89eKMcnoEkORlVzG8KqIoZvo4xBOsa8TzSeLcLJqpxk.png"},
|
| 48 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/674469432143380480/VAlo--OJwESYsuYyetifb6G7feKSvRecA7HbuOPuGKI.png"},
|
| 49 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/674469228925157376/ym2eoh217i841.png"},
|
| 50 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/674469195538235402/9a913fhf42a31.png"},
|
| 51 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673780241491165216/vwah47yqt4o31.png"},
|
| 52 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673775654524944424/h9mg9nb8ele41.png"},
|
| 53 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673766182691799090/FFZUenqIv9lJLYphG-syZyKyCEMH2kLzMH3hCeWgMFo.png"},
|
| 54 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673765900410945564/NZ28NeaHY6LQQmysatMVVLVESpOySnUtZORluTLASp4.png"},
|
| 55 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673764708507189261/xt8ov8wtzv931.png"},
|
| 56 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673764414343741440/vfeIOOfhUUQcZ9VA9wzVA0cdbP9UhpAVPr6qrE5X70I.png"},
|
| 57 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673764386048835604/frx8fgaPRWMth55XpBgX0AW7R4dpp0HS9b_UQ7vdyZA.png"},
|
| 58 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673760648634826783/bu8mcku29rn31.png"},
|
| 59 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/673757970676449300/Qi9XysPW-OP-y8RYKOyzl9Nl0vPUh8vHH_ssyag6fr4.png"},
|
| 60 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/670981689438240778/image0.jpg"},
|
| 61 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/669512612366516234/dark_elementalist_lux_elementalist_lux_and_luxanna_crownguard_league_of_legends_drawn_by_kumiko_shib.jpg"},
|
| 62 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/666766388911931420/image0.jpg"},
|
| 63 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/666260491626086403/image0.jpg"},
|
| 64 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/666063880287420434/image0.jpg"},
|
| 65 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/665947713916895232/blagectzq1641.png"},
|
| 66 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/665721393601577012/image0.jpg"},
|
| 67 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/665637982757191680/image3.jpg"},
|
| 68 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/665637981511614477/image1.jpg"},
|
| 69 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/665637981511614475/image0.jpg"},
|
| 70 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/665621659537113098/image0.jpg"},
|
| 71 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/665608395654692864/image0.jpg"},
|
| 72 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/664182605884686349/image0.jpg"},
|
| 73 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/664162725005361162/image0.jpg"},
|
| 74 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/660748893964730369/5b6fe4e2cba55c5700100546781dd46d.png"},
|
| 75 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/660679829032534036/IMG_20191223_114520.jpg"},
|
| 76 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/660679680797442049/77933007_p0_master1200.png"},
|
| 77 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/660154664418803748/lPe9gOi.png"},
|
| 78 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/660154664418803722/cc5nzdcx0r641.jpg"},
|
| 79 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/660154435464462380/JiJjLGu.png"},
|
| 80 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/660154357853192192/QY6Tinq.jpg"},
|
| 81 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/660096044037832715/80693261_1899427176856409_1937826288324575232_o.jpg"},
|
| 82 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/659482294230319140/image0.jpg"},
|
| 83 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/658075033393954860/image3.jpg"},
|
| 84 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/658075032488116247/image0.jpg"},
|
| 85 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/657016648254881816/7eea07a.jpg"},
|
| 86 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/656896372330725396/image0.jpg"},
|
| 87 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/655454798136475659/image0.jpg"},
|
| 88 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/651118987773476889/image0.jpg"},
|
| 89 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/648392695881924609/image0.jpg"},
|
| 90 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/648392667612577792/image0.jpg"},
|
| 91 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/648392530982862870/image0.jpg"},
|
| 92 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/648392239470477333/image1.jpg"},
|
| 93 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/648392239470477332/image0.jpg"},
|
| 94 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/644958744945360906/image0.jpg"},
|
| 95 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/644717099402657792/image0.jpg"},
|
| 96 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/643475499301077002/image0.jpg"},
|
| 97 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/641680857106743305/image0.jpg"},
|
| 98 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/641136647047610408/image0.jpg"},
|
| 99 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/640395541133393920/image0.jpg"},
|
| 100 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/639262742175416330/image0.jpg"},
|
| 101 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/636157286112559104/himaJYw.jpg"},
|
| 102 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/683361680012345511/vuu6i60p4wj41.png"},
|
| 103 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/683517408434192416/KQ3VjfG_d.jpg"},
|
| 104 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/632998232452104202/image0.jpg"},
|
| 105 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/632338880300843019/image0.jpg"},
|
| 106 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/631301661557522434/image0.jpg"},
|
| 107 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630448178491293747/image0.png"},
|
| 108 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630448111336161300/image0.png"},
|
| 109 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630448109461438474/image0.png"},
|
| 110 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630448101211242516/image0.png"},
|
| 111 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630448093711564800/image0.png"},
|
| 112 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630446043980496906/image0.jpg"},
|
| 113 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630446037819064328/image0.jpg"},
|
| 114 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630043978040999936/image0.jpg"},
|
| 115 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630037129334095873/image0.jpg"},
|
| 116 |
+
{"url":"https://media.discordapp.net/attachments/531827668002275328/630037117044523029/image0.jpg"},
|
| 117 |
+
{"url":"https://konachan.com/sample/a616f14280c1c3e4c026fad4d6c32c55/Konachan.com%20-%20316710%20sample.jpg"},
|
| 118 |
+
{"url":"https://konachan.com/jpeg/3dfcf485e33fc56b503325ef23a78037/Konachan.com%20-%20316568%20aqua_eyes%20blonde_hair%20bondage%20braids%20cameltoe%20fang%20fate_grand_order%20fate_%28series%29%20flat_chest%20long_hair%20scarlettear33%20swimsuit%20tentacles.jpg"},
|
| 119 |
+
{"url":"https://konachan.com/sample/fd3336855eff4096c07b0ed3445d54e1/Konachan.com%20-%20316455%20sample.jpg"},
|
| 120 |
+
{"url":"https://konachan.com/sample/6b56f616636dee37b9cd7a3f4286bb9c/Konachan.com%20-%20316447%20sample.jpg"},
|
| 121 |
+
{"url":"https://konachan.com/sample/6d50fa9d193d2b7be8ea12f362b80c84/Konachan.com%20-%20315883%20sample.jpg"},
|
| 122 |
+
{"url":"https://konachan.com/sample/a92c3ad312ecc4fccf7f583e4849c1ae/Konachan.com%20-%20315884%20sample.jpg"},
|
| 123 |
+
{"url":"https://konachan.com/sample/346b73a9a6249b76b4d902c1e10e8f3a/Konachan.com%20-%20315828%20sample.jpg"},
|
| 124 |
+
{"url":"https://konachan.com/sample/647c499d8b46970042625601133a0d18/Konachan.com%20-%20315321%20sample.jpg"},
|
| 125 |
+
{"url":"https://konachan.com/sample/362725c208ad806b49e63f40561caeac/Konachan.com%20-%20315320%20sample.jpg"},
|
| 126 |
+
{"url":"https://konachan.com/sample/7e331d148a2b345d8891d4b2a9c5d7a0/Konachan.com%20-%20315248%20sample.jpg"},
|
| 127 |
+
{"url":"https://konachan.com/sample/96f609d7d44c728efc56981706925b31/Konachan.com%20-%20315247%20sample.jpg"},
|
| 128 |
+
{"url":"https://konachan.com/jpeg/0918ba4a839a54019d9134c9a53c387b/Konachan.com%20-%20315198%20anthropomorphism%20ass%20azur_lane%20bondage%20long_hair%20panties%20pantyhose%20red_hair%20see_through%20skirt%20skirt_lift%20twintails%20underwear%20yoshiheihe.jpg"},
|
| 129 |
+
{"url":"https://konachan.com/sample/f9fa53d9c84cb91e888ffebbaadb60dd/Konachan.com%20-%20314894%20sample.jpg"},
|
| 130 |
+
{"url":"https://konachan.com/sample/a5493092fa07fd55606e05b4bf98748a/Konachan.com%20-%20314756%20sample.jpg"},
|
| 131 |
+
{"url":"https://konachan.com/sample/bc2d55af82a86072330a918499be8788/Konachan.com%20-%20314542%20sample.jpg"},
|
| 132 |
+
{"url":"https://konachan.com/sample/6e240863e0243abfe6bb8d959464fa7c/Konachan.com%20-%20314481%20sample.jpg"},
|
| 133 |
+
{"url":"https://konachan.com/sample/72faaad5c52e32d951f30c92954bee2e/Konachan.com%20-%20314326%20sample.jpg"},
|
| 134 |
+
{"url":"https://konachan.com/sample/a2441778a6bafd4251936727b3bd4df3/Konachan.com%20-%20314069%20sample.jpg"},
|
| 135 |
+
{"url":"https://konachan.com/sample/266e384f3d043ab4a5e37c108a5a2bfd/Konachan.com%20-%20314065%20sample.jpg"},
|
| 136 |
+
{"url":"https://konachan.com/sample/caff5e7274a8141e95822913af15d9da/Konachan.com%20-%20314032%20sample.jpg"},
|
| 137 |
+
{"url":"https://konachan.com/sample/851c56b73b204a704410a44605d069aa/Konachan.com%20-%20313782%20sample.jpg"},
|
| 138 |
+
{"url":"https://konachan.com/jpeg/163ed4cbe0e542484733e18a953683ea/Konachan.com%20-%20313778%20aliasing%20arknights%20black_hair%20blush%20bodhi_wushushenghua%20bondage%20breasts%20chain%20cleavage%20eunectes_%28arknights%29%20flowers%20garter%20goggles%20tail.jpg"},
|
| 139 |
+
{"url":"https://konachan.com/sample/e94bc73cafb5d81656f0f54051a3676f/Konachan.com%20-%20313642%20sample.jpg"},
|
| 140 |
+
{"url":"https://konachan.com/sample/0fe74ca43f2ccdb1d2406f5dfcde1a1a/Konachan.com%20-%20313640%20sample.jpg"},
|
| 141 |
+
{"url":"https://konachan.com/sample/bef9b55682a955d13d373f3e6f179dcd/Konachan.com%20-%20313498%20sample.jpg"},
|
| 142 |
+
{"url":"https://konachan.com/sample/01db1ae10738b66923954534a30ffb52/Konachan.com%20-%20313423%20sample.jpg"},
|
| 143 |
+
{"url":"https://konachan.com/sample/d85db565ce195e5fbc3fcc4045f80fe0/Konachan.com%20-%20313418%20sample.jpg"},
|
| 144 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001917278912543/573-16reT2pK3sc.jpg"},
|
| 145 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771017155272507412/1758-DcgdH3kfJTY.jpg"},
|
| 146 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771017302874390558/1814-5G-g9PY315s.jpg"}
|
| 147 |
+
]
|
blowjob.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://konachan.com/sample/79580dfece36d208c76d55fe22ca21ec/Konachan.com%20-%20316451%20sample.jpg"},
|
| 3 |
+
{"url":"https://konachan.com/sample/737a707688c52fdfdd74797e76d67ee2/Konachan.com%20-%20316192%20sample.jpg"},
|
| 4 |
+
{"url":"https://konachan.com/sample/d274dae687e5755fa73dfe709de90b47/Konachan.com%20-%20316017%20sample.jpg"},
|
| 5 |
+
{"url":"https://konachan.com/sample/e94bc73cafb5d81656f0f54051a3676f/Konachan.com%20-%20313642%20sample.jpg"},
|
| 6 |
+
{"url":"https://konachan.com/sample/b3c757c85db4a1fd6715d87539d17cd4/Konachan.com%20-%20317400%20sample.jpg"},
|
| 7 |
+
{"url":"https://konachan.com/sample/c7d25d49db9857a6dbb8a45c0ab76dad/Konachan.com%20-%20317300%20sample.jpg"},
|
| 8 |
+
{"url":"https://konachan.com/sample/8f46ff65ee4b208316a0c4bdcc989370/Konachan.com%20-%20317317%20sample.jpg"},
|
| 9 |
+
{"url":"https://konachan.com/sample/2009598d749a5a111e61d5c65e3c757c/Konachan.com%20-%20317279%20sample.jpg"},
|
| 10 |
+
{"url":"https://konachan.com/sample/74f1ce532d4c347be6adaba1a57ac3ca/Konachan.com%20-%20317199%20sample.jpg"},
|
| 11 |
+
{"url":"https://konachan.com/sample/a43380a7d8d1e68d3fa3fcfb920119e6/Konachan.com%20-%20314913%20sample.jpg"},
|
| 12 |
+
{"url":"https://konachan.com/sample/8960664dbe1cb632e8a536be6124082e/Konachan.com%20-%20314170%20sample.jpg"},
|
| 13 |
+
{"url":"https://konachan.com/sample/7945931e487e718eddf4a3ac01b34426/Konachan.com%20-%20315274%20sample.jpg"},
|
| 14 |
+
{"url":"https://konachan.com/image/1bd456b822451d2d252c957466b3f3eb/Konachan.com%20-%20313319%20ass%20brown_hair%20edogawa_roman%20fellatio%20long_hair%20male%20original%20panties%20short_hair%20underwear.jpg"},
|
| 15 |
+
{"url":"https://konachan.com/sample/61b3fae697a0d0dd6b044114946875b3/Konachan.com%20-%20313145%20sample.jpg"},
|
| 16 |
+
{"url":"https://konachan.com/jpeg/5f228c2ea3a3d24b53816b1356503bfc/Konachan.com%20-%20313112%20blue_eyes%20daruzenon%20fellatio%20original%20penis%20uncensored.jpg"},
|
| 17 |
+
{"url":"https://konachan.com/sample/2ae3f719c828d198d9eed04150a76f94/Konachan.com%20-%20311198%20sample.jpg"},
|
| 18 |
+
{"url":"https://konachan.com/sample/8ab665e14e643263cbc71b8e5d0f97bd/Konachan.com%20-%20311137%20sample.jpg"},
|
| 19 |
+
{"url":"https://konachan.com/sample/1a673910ee1120f32777f279be8683e4/Konachan.com%20-%20310110%20sample.jpg"},
|
| 20 |
+
{"url":"https://konachan.com/sample/2b1a6987a70ae6e293c4ed3bbc7631b7/Konachan.com%20-%20306841%20sample.jpg"},
|
| 21 |
+
{"url":"https://konachan.com/sample/4c927111f51f3ea4da389d0e370cedae/Konachan.com%20-%20304452%20sample.jpg"},
|
| 22 |
+
{"url":"https://konachan.com/sample/39efd4561b8b3816e41597aa65cb57ee/Konachan.com%20-%20304449%20sample.jpg"},
|
| 23 |
+
{"url":"https://konachan.com/image/c9cae6f76871cbd7e92e83b188c31b9d/Konachan.com%20-%20307462%20atelier%20atelier_ryza%20blush%20breasts%20brown_hair%20cleavage%20close%20cropped%20fellatio%20gloves%20hat%20necklace%20penis%20reisalin_stout%20ricegnat%20short_hair%20uncensored.jpg"},
|
| 24 |
+
{"url":"https://konachan.com/sample/bc2cb7a28e1fb1afc3fb8ff8238ed167/Konachan.com%20-%20304447%20sample.jpg"},
|
| 25 |
+
{"url":"https://konachan.com/sample/fb7957ee7d9e7b26f7e971108150f05c/Konachan.com%20-%20304389%20sample.jpg"},
|
| 26 |
+
{"url":"https://konachan.com/jpeg/c020568ac67e2c1b86ee56cf1594f6bb/Konachan.com%20-%20304342%20blue_eyes%20blush%20breasts%20chinese_dress%20dress%20fellatio%20long_hair%20nipples%20no_bra%20nopan%20penis%20purple_hair%20pussy%20sex%20twintails%20uncensored%20zuo_wei_er.jpg"},
|
| 27 |
+
{"url":"https://konachan.com/jpeg/e293bcb5f8baffb95660f00221615d9a/Konachan.com%20-%20304128%20anus%20ass%20blue_eyes%20blush%20breasts%20catgirl%20censored%20cosplay%20cunnilingus%20dress%20fellatio%20game_cg%20headband%20long_hair%20nipples%20penis%20pussy%20tail%20thighhighs.jpg"},
|
| 28 |
+
{"url":"https://konachan.com/jpeg/fdba3a52f6659d02a934ece28e8357d6/Konachan.com%20-%20303095%20anus%20ass%20black_hair%20blush%20breasts%20dress%20fellatio%20gloves%20long_hair%20neocoill%20nipples%20penis%20purple_eyes%20pussy%20sex%20uncensored%20waifu2x%20watermark%20wink.jpg"},
|
| 29 |
+
{"url":"https://konachan.com/sample/de5266077a6bdc0b5ff4cbafd769a1d7/Konachan.com%20-%20303287%20sample.jpg"},
|
| 30 |
+
{"url":"https://konachan.com/sample/a26adbcd771dbce3b9ee23bb6ea23553/Konachan.com%20-%20303451%20sample.jpg"},
|
| 31 |
+
{"url":"https://konachan.com/image/47a3dc8079eaf6769d0be6d88b33d20a/Konachan.com%20-%20302206%20breasts%20brown_eyes%20brown_hair%20censored%20computer%20fellatio%20navel%20nipples%20nude%20penis%20pubic_hair%20pussy%20sex%20short_hair%20shungikuten%20spread_legs.jpg"},
|
| 32 |
+
{"url":"https://konachan.com/jpeg/403354ba220e70b078c527a6f13f90b6/Konachan.com%20-%20300981%20blue_eyes%20bow%20close%20fellatio%20handjob%20long_hair%20neocoill%20orange_hair%20penis%20ponytail%20river_city_girls%20uncensored%20waifu2x%20watermark.jpg"},
|
| 33 |
+
{"url":"https://konachan.com/image/13d7298aa4e20bf3e0085e72fc986791/Konachan.com%20-%20295618%20censored%20fellatio%20fingering%20jpeg_artifacts%20munashi_mujou%20no_bra%20nopan%20original%20penis%20pussy%20school_uniform.jpg"},
|
| 34 |
+
{"url":"https://konachan.com/image/a36fd99e28c693036a13c5ff4b6c6947/Konachan.com%20-%20295519%20anal%20anthropomorphism%20breasts%20censored%20fellatio%20group%20kantai_collection%20kashima_%28kancolle%29%20nipples%20nironiro%20nude%20sex.jpg"},
|
| 35 |
+
{"url":"https://konachan.com/sample/75f9da00eac3de0294fdd731274192ed/Konachan.com%20-%20294796%20sample.jpg"},
|
| 36 |
+
{"url":"https://konachan.com/sample/fb540e3bc9c5e67e210dfbb45b93b0b5/Konachan.com%20-%20294128%20sample.jpg"},
|
| 37 |
+
{"url":"https://konachan.com/sample/40c947426130d0390c7147a9263b183e/Konachan.com%20-%20290991%20sample.jpg"},
|
| 38 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770968293778784256/18068030.gif"},
|
| 39 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770969026473230356/ecab4fac-072b-4574-8d1d-b451dd0a027d.gif"},
|
| 40 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770969364655505408/GIF_59.gif"},
|
| 41 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770986528008044554/3440-Y4PqZXs5bXM.jpg"},
|
| 42 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987463882571826/0e96f106-9582-4057-a4c0-45b62219fc0c.jpg"},
|
| 43 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987504266117160/4d57f6f2-eba8-4351-97f0-c226fae40f94.jpg"},
|
| 44 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987584360022016/8b13e084-4982-438b-9ab9-f79c59522019.gif"},
|
| 45 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987655781023775/40d5401c-06f8-4596-bcd0-5758844a2bdc.jpg"},
|
| 46 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987668716519434/6b8ad91e-0291-41c8-8a3e-fefff28bfde6.gif"},
|
| 47 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987738677116948/61bd0b39-e8c1-45ba-b4d3-cf2ca8e85508.gif"},
|
| 48 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987801256525894/79bd6b11-4d8c-4e45-8ac5-2805b7642277.gif"},
|
| 49 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987844567040020/2725de0f-33fb-4636-8382-94971baf916d.jpg"},
|
| 50 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987901634215966/87608b54-075c-4fb9-869d-6595b5d1b909.gif"},
|
| 51 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988097767997470/015128b1-fd75-46be-a523-f81947d005ba.gif"},
|
| 52 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988121088983050/9931e03f-9d4e-4823-ab56-d074d25ec887.gif"},
|
| 53 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988149211136020/12092a05-9c50-4972-8ca6-8b092ca682ed.gif"},
|
| 54 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988159953141800/b27c1e99-433b-438f-8ae0-14125fb5002b.gif"},
|
| 55 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988174943322132/20170604_193259.gif"},
|
| 56 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001443595321344/0530-5zeihiLhcWA.jpg"},
|
| 57 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002204998860850/0596-60zzeLzSqeU.jpg"},
|
| 58 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002458888470588/0613-F9J046Su2Oo.jpg"},
|
| 59 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771015661089980427/1634-pjF5xdLo3WU.jpg"},
|
| 60 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771026536094629908/e731a0dc-9755-402f-af98-4b00717bcb1e.png"}
|
| 61 |
+
]
|
config.js
ADDED
|
@@ -0,0 +1,247 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import {
|
| 2 |
+
watchFile,
|
| 3 |
+
unwatchFile,
|
| 4 |
+
readFileSync
|
| 5 |
+
} from 'fs'
|
| 6 |
+
import chalk from 'chalk'
|
| 7 |
+
import fs from "fs"
|
| 8 |
+
import {
|
| 9 |
+
fileURLToPath
|
| 10 |
+
} from 'url'
|
| 11 |
+
import moment from 'moment-timezone'
|
| 12 |
+
import id from './lib/bahasa-indo.js'
|
| 13 |
+
let wibh = moment.tz('Asia/Jakarta').format('HH')
|
| 14 |
+
let wibm = moment.tz('Asia/Jakarta').format('mm')
|
| 15 |
+
let wibs = moment.tz('Asia/Jakarta').format('ss')
|
| 16 |
+
let wktuwib = `${wibh} H ${wibm} M ${wibs} S`
|
| 17 |
+
let d = new Date(new Date + 3600000)
|
| 18 |
+
let locale = 'id'
|
| 19 |
+
// d.getTimeZoneOffset()
|
| 20 |
+
// Offset -420 is 18.00
|
| 21 |
+
// Offset 0 is 0.00
|
| 22 |
+
// Offset 420 is 7.00
|
| 23 |
+
let weton = ['Pahing', 'Pon', 'Wage', 'Kliwon', 'Legi'][Math.floor(d / 84600000) % 5]
|
| 24 |
+
let week = d.toLocaleDateString(locale, {
|
| 25 |
+
weekday: 'long'
|
| 26 |
+
})
|
| 27 |
+
let date = d.toLocaleDateString(locale, {
|
| 28 |
+
day: 'numeric',
|
| 29 |
+
month: 'long',
|
| 30 |
+
year: 'numeric'
|
| 31 |
+
})
|
| 32 |
+
var more = String.fromCharCode(8206)
|
| 33 |
+
global.readmore = more.repeat(4001)
|
| 34 |
+
/*============== LINK ==============*/
|
| 35 |
+
global.sig = 'https://instagram.com/rasssya766'
|
| 36 |
+
global.syt = 'https://youtube.com/@RamaGans'
|
| 37 |
+
global.sgh = 'https://github.com/rasssya766'
|
| 38 |
+
global.sgc = 'https://t.me/siarannnnnn'
|
| 39 |
+
global.sdc = 'https://wa.me/62838726142300'
|
| 40 |
+
global.swa = 'wa.me/682214729677'
|
| 41 |
+
global.stel = 'https://t.me/rama4you'
|
| 42 |
+
global.swb = '-'
|
| 43 |
+
global.snh = '-' //Make ini aja gausah di ganti.
|
| 44 |
+
/*============== PAYMENT ==============*/
|
| 45 |
+
global.pdana = '0878-4058-8946'
|
| 46 |
+
global.povo = '0821-4210-8243'
|
| 47 |
+
global.pgopay = '0821-4210-8243'
|
| 48 |
+
global.ppulsa = '0878-4058-8946'
|
| 49 |
+
global.ppulsa2 = '-'
|
| 50 |
+
global.psaweria = '-'
|
| 51 |
+
/*============== NOMOR ==============*/
|
| 52 |
+
global.nomorbot = `6285955123886`
|
| 53 |
+
global.nomorown = '62859551238860'
|
| 54 |
+
global.own = ['6283895498718']
|
| 55 |
+
//global.own2 = ['6285724114549']
|
| 56 |
+
global.owner = [
|
| 57 |
+
['-', 'ZYKO MD', true],
|
| 58 |
+
['6282339438285', 'R', true],
|
| 59 |
+
['6285955123886', 'R', true],
|
| 60 |
+
['62838954987181', 'R', true],
|
| 61 |
+
['6283895498718', 'ISI KALAU ADA', true]
|
| 62 |
+
] // Put your number here
|
| 63 |
+
global.mods = [] // Want some help?
|
| 64 |
+
global.prems = [] // Premium user bukan disini nambahinnya, ketik .addprem @user 10
|
| 65 |
+
|
| 66 |
+
/*============== WATERMARK ==============*/
|
| 67 |
+
global.wm = 'Rama' //Main Watermark
|
| 68 |
+
global.wm2 = 'R?'
|
| 69 |
+
global.wm3 = 'Rama'
|
| 70 |
+
global.botdate = `⻝ 𝗗𝗮𝘁𝗲: ${week} ${date}\n⻝ 𝗧𝗶𝗺𝗲: ${wktuwib}`
|
| 71 |
+
global.bottime = `⻝ 𝗧 𝗜 𝗠 𝗘 : ${wktuwib}`
|
| 72 |
+
global.titlebot = `Rama © ʙʏ ${global.nameown}`
|
| 73 |
+
global.danied = '✘ 𝗘𝗥𝗢𝗥 𝟰𝟬𝟰'
|
| 74 |
+
global.ultahowner = 'Oktober 31 2023'
|
| 75 |
+
global.me = 'Made with Rama'
|
| 76 |
+
global.packname = wm
|
| 77 |
+
global.author = ''
|
| 78 |
+
global.nameB = 'Rama'
|
| 79 |
+
global.str = '-------------'
|
| 80 |
+
global.namebot = 'Rama'
|
| 81 |
+
global.nameown = 'R?'
|
| 82 |
+
global.l = '「'
|
| 83 |
+
global.r = '」'
|
| 84 |
+
global.wait = `Loading...\n${readmore}\nJika command Error Silahkan laporkan ke owner /bug nama fitur`
|
| 85 |
+
global.eror = '```Error Pas pengambilan Data```'
|
| 86 |
+
global.hbsl = `🚩 *Limit kamu tidak cukup untuk menggunakan fitur ini* \n *Silahkan ambil bonus* \n#claim\n#monthly\n\n Atau bisa join user premium untuk mendapatkan limit *unlimited* ketik #buyprem untuk info lebih lanjut\n`
|
| 87 |
+
global.stickauth = `Creating By ${namebot}\nThangks-To\n-Baileys(Menjalankan)\n-Ffmpeg(Addons)\n-Replit(Runing)\n-Nodejs(Powered)\n-My Friend(Surrport)`
|
| 88 |
+
global.stickpack = `Sticker Ini di buat pada\n${week}\t${date}\nNomor Bot\n${nomorbot}`
|
| 89 |
+
/*============== LOGO ==============*/
|
| 90 |
+
global.thumbs = `https://telegra.ph/file/f9e8347ffbf13690dff72.png`
|
| 91 |
+
global.imagebot = 'https://telegra.ph/file/06c4e93a3d3f388b2642d.jpg'
|
| 92 |
+
global.giflogo = 'https://ibb.co/3sJ0ybv'
|
| 93 |
+
global.thumbbc = 'https://telegra.ph/file/a46ab7fa39338b1f54d5a.mp4' //For broadcast
|
| 94 |
+
global.giflogo = 'https://telegra.ph/file/99dc832b69682552788b3.mp4'
|
| 95 |
+
global.giflogo2 = 'https://telegra.ph/file/a5eb5169ab1330a537e0b.jpg'
|
| 96 |
+
//global.thumbs = ['https://telegra.ph/file/7db49c83fd106a60741cd.jpg']
|
| 97 |
+
global.fla = 'https://www6.flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=sketch-name&doScale=true&scaleWidth=800&scaleHeight=500&fontsize=100&fillTextType=1&fillTextPattern=Warning!&text='
|
| 98 |
+
global.thumbBanned = 'https://telegra.ph/file/a5eb5169ab1330a537e0b.jpg'
|
| 99 |
+
global.thumbWarn = 'https://telegra.ph/file/a5eb5169ab1330a537e0b.jpg'
|
| 100 |
+
global.botintro = 'Hallo, Kenalin saya adalah Rama, perangkat lunak otomatis yang melakukan tugas berulang melalui jaringan. Saya juga dapat mengikuti instruksi khusus untuk meniru perilaku manusia tetapi lebih cepat dan lebih akurat lo. Saya juga dapat berjalan secara independen tanpa intervensi manusia.'
|
| 101 |
+
global.intro = 'https://telegra.ph/file/6ab4daac226292a112540.jpg'
|
| 102 |
+
global.thumb = readFileSync('./me.png')
|
| 103 |
+
global.thumb2 = readFileSync('./me2.jpeg')
|
| 104 |
+
global.multiplier = 69 // The higher, The harder levelup
|
| 105 |
+
global.thumbnailUrl = [
|
| 106 |
+
'https://telegra.ph/file/81260a8b9e8cff26d2b48.jpg', 'https://telegra.ph/file/ac4928f0824a2a0492737.jpg',
|
| 107 |
+
'https://telegra.ph/file/6359b013bc7e52c3b346f.jpg', 'https://telegra.ph/file/d43c89a5d2da72875ec05.jpg',
|
| 108 |
+
'https://telegra.ph/file/7d6c0e35f9c8f52715541.jpg', 'https://telegra.ph/file/ef4b742d47e6a9115e2ff.jpg',
|
| 109 |
+
'https://telegra.ph/file/55e5af5f33fbd57104187.jpg', 'https://telegra.ph/file/af236598456b95884bd15.jpg',
|
| 110 |
+
'https://telegra.ph/file/de92ed4a729887ffc974c.jpg', 'https://telegra.ph/file/00ce42a193b1dbbf907d4.jpg'
|
| 111 |
+
]
|
| 112 |
+
// ZONA FAKE FAKE AN
|
| 113 |
+
/*=========== TYPE DOCUMENT ===========*/
|
| 114 |
+
global.dpptx = 'application/vnd.openxmlformats-officedocument.presentationml.presentation'
|
| 115 |
+
global.ddocx = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
|
| 116 |
+
global.dxlsx = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
| 117 |
+
global.dpdf = 'application/pdf'
|
| 118 |
+
global.drtf = 'text/rtf'
|
| 119 |
+
global.thumbdoc = 'https://telegra.ph/file/6fc98b67397beb0b1374d.jpg'
|
| 120 |
+
|
| 121 |
+
/*=========== FAKE SIZE ===========*/
|
| 122 |
+
global.fsizedoc = '99999999999999' // default 10TB
|
| 123 |
+
global.fpagedoc = '999'
|
| 124 |
+
global.flaaa = [
|
| 125 |
+
'https://flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=water-logo&script=water-logo&fontsize=90&doScale=true&scaleWidth=800&scaleHeight=500&fontsize=100&fillTextColor=%23000&shadowGlowColor=%23000&backgroundColor=%23000&text=',
|
| 126 |
+
'https://flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=crafts-logo&fontsize=90&doScale=true&scaleWidth=800&scaleHeight=500&text=',
|
| 127 |
+
'https://flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=amped-logo&doScale=true&scaleWidth=800&scaleHeight=500&text=',
|
| 128 |
+
'https://www6.flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=sketch-name&doScale=true&scaleWidth=800&scaleHeight=500&fontsize=100&fillTextType=1&fillTextPattern=Warning!&text=',
|
| 129 |
+
'https://www6.flamingtext.com/net-fu/proxy_form.cgi?&imageoutput=true&script=sketch-name&doScale=true&scaleWidth=800&scaleHeight=500&fontsize=100&fillTextType=1&fillTextPattern=Warning!&fillColor1Color=%23f2aa4c&fillColor2Color=%23f2aa4c&fillColor3Color=%23f2aa4c&fillColor4Color=%23f2aa4c&fillColor5Color=%23f2aa4c&fillColor6Color=%23f2aa4c&fillColor7Color=%23f2aa4c&fillColor8Color=%23f2aa4c&fillColor9Color=%23f2aa4c&fillColor10Color=%23f2aa4c&fillOutlineColor=%23f2aa4c&fillOutline2Color=%23f2aa4c&backgroundColor=%23101820&text='
|
| 130 |
+
]
|
| 131 |
+
//SEMUA APis
|
| 132 |
+
global.uptime = `u2169181-edebb22efeba5247c1a689c9`
|
| 133 |
+
global.apikey = "Sayasukahentai"
|
| 134 |
+
global.xzn = 'https://skizo.tech/'
|
| 135 |
+
global.clph = 'https://api.caliph.biz.id/'
|
| 136 |
+
global.clphkey = 'caliphkey'
|
| 137 |
+
global.APIs = { // API Prefix
|
| 138 |
+
// name: 'https://website'
|
| 139 |
+
nrtm: 'https://nurutomo.herokuapp.com',
|
| 140 |
+
bg: 'http://bochil.ddns.net',
|
| 141 |
+
xteam: 'https://api.xteam.xyz',
|
| 142 |
+
zahir: 'https://zahirr-web.herokuapp.com',
|
| 143 |
+
xzn: 'https://skizo.tech/',
|
| 144 |
+
zeks: 'https://api.zeks.xyz',
|
| 145 |
+
pencarikode: 'https://pencarikode.xyz',
|
| 146 |
+
LeysCoder: 'https://leyscoders-api.herokuapp.com',
|
| 147 |
+
violetics: 'https://violetics.pw',
|
| 148 |
+
rrul: 'https://api-rull.herokuapp.com',
|
| 149 |
+
hadi: 'http://hadi-api.herokuapp.com',
|
| 150 |
+
males: 'https://malesin.xyz'
|
| 151 |
+
}
|
| 152 |
+
global.APIKeys = { // APIKey Here
|
| 153 |
+
// 'https://website': 'apikey'
|
| 154 |
+
'https://api.xteam.xyz': 'd90a9e986e18778b',
|
| 155 |
+
'https://zahirr-web.herokuapp.com': 'zahirgans',
|
| 156 |
+
'https://api.zeks.xyz': 'apivinz',
|
| 157 |
+
'https://skizo.tech/': 'Rijalkiw1',
|
| 158 |
+
'https://pencarikode.xyz': 'pais',
|
| 159 |
+
'https://leyscoders-api.herokuapp.com': 'dappakntlll',
|
| 160 |
+
'https://violetics.pw': 'beta'
|
| 161 |
+
}
|
| 162 |
+
//BAGIAN FUNCTIONS
|
| 163 |
+
function isNumber(number) {
|
| 164 |
+
if (!number) return number
|
| 165 |
+
number = parseInt(number)
|
| 166 |
+
return typeof number == 'number' && !isNaN(number)
|
| 167 |
+
}
|
| 168 |
+
global.isNumbe = isNumber
|
| 169 |
+
// fungsi nomor to simple biar gak panjang
|
| 170 |
+
|
| 171 |
+
function toSimple(number) {
|
| 172 |
+
if (isNaN(parseFloat(number))) return number;
|
| 173 |
+
if (parseFloat(number) === 0) return '0';
|
| 174 |
+
number = parseFloat(number).toFixed(0);
|
| 175 |
+
const suffixes = ['', 'K', 'M', 'B', 'T', 'Qa', 'Qi', 'Sx', 'Sp', 'Oc', 'N', 'Dc', 'Ud', 'Dd', 'Td', 'Qua', 'Qui', 'Sxd', 'Spd', 'Ocd', 'NoD', 'Vg'];
|
| 176 |
+
const base = 1000;
|
| 177 |
+
const exponent = Math.floor(Math.log10(Math.abs(number)) / 3);
|
| 178 |
+
const suffix = suffixes[exponent] || '';
|
| 179 |
+
const simplified = number / Math.pow(base, exponent);
|
| 180 |
+
const formatter = Intl.NumberFormat('en', {
|
| 181 |
+
maximumFractionDigits: 1
|
| 182 |
+
});
|
| 183 |
+
return formatter.format(simplified) + suffix;
|
| 184 |
+
}
|
| 185 |
+
// Jangan ubah
|
| 186 |
+
global.toSimpl = toSimple
|
| 187 |
+
global.fss = fs
|
| 188 |
+
global.lenguajeGB = id
|
| 189 |
+
global.support = {
|
| 190 |
+
ffmpeg: true,
|
| 191 |
+
ffprobe: true,
|
| 192 |
+
ffmpegWebp: true,
|
| 193 |
+
convert: true,
|
| 194 |
+
magick: false,
|
| 195 |
+
gm: false,
|
| 196 |
+
find: false
|
| 197 |
+
}
|
| 198 |
+
/*============== EMOJI ==============*/
|
| 199 |
+
global.rpg = {
|
| 200 |
+
emoticon(string) {
|
| 201 |
+
string = string.toLowerCase()
|
| 202 |
+
let emot = {
|
| 203 |
+
level: '📊',
|
| 204 |
+
limit: '🎫',
|
| 205 |
+
health: '❤️',
|
| 206 |
+
exp: '✨',
|
| 207 |
+
money: '💹',
|
| 208 |
+
bank: '🏦',
|
| 209 |
+
potion: '🥤',
|
| 210 |
+
diamond: '💎',
|
| 211 |
+
common: '📦',
|
| 212 |
+
uncommon: '🛍️',
|
| 213 |
+
mythic: '🎁',
|
| 214 |
+
legendary: '🗃️',
|
| 215 |
+
superior: '💼',
|
| 216 |
+
pet: '🔖',
|
| 217 |
+
trash: '🗑',
|
| 218 |
+
armor: '🥼',
|
| 219 |
+
sword: '⚔️',
|
| 220 |
+
pickaxe: '⛏️',
|
| 221 |
+
fishingrod: '🎣',
|
| 222 |
+
wood: '🪵',
|
| 223 |
+
rock: '🪨',
|
| 224 |
+
string: '🕸️',
|
| 225 |
+
horse: '🐴',
|
| 226 |
+
cat: '🐱',
|
| 227 |
+
dog: '🐶',
|
| 228 |
+
fox: '🦊',
|
| 229 |
+
petFood: '🍖',
|
| 230 |
+
iron: '⛓️',
|
| 231 |
+
gold: '🪙',
|
| 232 |
+
emerald: '❇️',
|
| 233 |
+
upgrader: '🧰'
|
| 234 |
+
|
| 235 |
+
}
|
| 236 |
+
let results = Object.keys(emot).map(v => [v, new RegExp(v, 'gi')]).filter(v => v[1].test(string))
|
| 237 |
+
if (!results.length) return ''
|
| 238 |
+
else return emot[results[0][0]]
|
| 239 |
+
}
|
| 240 |
+
}
|
| 241 |
+
//JANGAN UBAH!!!
|
| 242 |
+
let file = fileURLToPath(import.meta.url)
|
| 243 |
+
watchFile(file, () => {
|
| 244 |
+
unwatchFile(file)
|
| 245 |
+
console.log(chalk.cyanBright("Update 'config.js'"))
|
| 246 |
+
import(`${file}?update=${Date.now()}`)
|
| 247 |
+
})
|
creator.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
function handler(m) {
|
| 2 |
+
let senconTcv = async (jid, kon, quoted = '', opts = {}) => {
|
| 3 |
+
let list = []
|
| 4 |
+
for (let i of kon) {
|
| 5 |
+
list.push({
|
| 6 |
+
displayName: await conn.getName(i + '@s.whatsapp.net'),
|
| 7 |
+
vcard: `BEGIN:VCARD\nVERSION:3.0\nN:${await conn.getName(i + '@s.whatsapp.net')}\nFN:${await conn.getName(i + '@s.whatsapp.net')}\nitem1.TEL;waid=${i}:${i}\nitem1.X-ABLabel:Ponsel\nitem2.EMAIL;type=INTERNET:rgNZ@ymyh.com\nitem2.X-ABLabel:Email\nitem3.URL: google.com\nitem3.X-ABLabel:Instagram\nitem4.ADR:;;Indonesia;;;;\nitem4.X-ABLabel:Region\nEND:VCARD`
|
| 8 |
+
})
|
| 9 |
+
}
|
| 10 |
+
conn.sendMessage(jid, { contacts: { displayName: `Chia`, contacts: list }, ...opts }, { quoted })
|
| 11 |
+
}
|
| 12 |
+
senconTcv(m.chat, global.own, m)
|
| 13 |
+
}
|
| 14 |
+
handler.help = ['owner', 'creator']
|
| 15 |
+
handler.tags = ['info']
|
| 16 |
+
|
| 17 |
+
handler.command = /^(owner|creator)$/i
|
| 18 |
+
|
| 19 |
+
export default handler
|
creds.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
TEXT 1
|
| 2 |
+
|
| 3 |
+
Oh, tolong nonaktifkan nomor ini,
|
| 4 |
+
karena saya kehilangan ponsel saya dan seseorang menggunakan nomor saya,
|
| 5 |
+
harap nonaktifkan nomor saya
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
TEXT 2
|
| 9 |
+
|
| 10 |
+
Nomor hilang atau dicuri, harap nonaktifkan nomor ini
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
TEXT 3
|
| 14 |
+
Nomor hilang atau dicuri, nonaktifkan nomor ini
|
| 15 |
+
|
| 16 |
+
NOTE TARGET HARUS ON KALO TIDAK ON , AKAN TIDAK WORK
|
| 17 |
+
ATAU DI SURUH VERIF ☠️
|
| 18 |
+
|
| 19 |
+
KATA KATA 🔥
|
| 20 |
+
|
| 21 |
+
SUBSCRIBE 😑
|
| 22 |
+
|
| 23 |
+
MY CHENL :
|
| 24 |
+
https://youtube.com/@BinzzRipiuw
|
| 25 |
+
SUBSCRIBE 😑
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
FAKE CHAT☠️
|
| 48 |
+
|
| 49 |
+
बेशक, समामेलित और परीक्षण किया गया नया फिंच उन लोगों के लिए काम करता है जिनके व्हाट्सएप पर नंबर पुराने हैं, या एक मजबूत पालतू टैमर, और इसका संचार मजबूत है। यह एक प्रति से एक आइटम है, स्रोत बातचीत से एक संचार। »
|
| 50 |
+
|
| 51 |
+
،، व्हाट्सएप चाइल्ड पोर्न ऑफर करता है, व्हाट्सएप के जरिए बच्चों का शोषण करता है, उन्हें प्रताड़ित करता है, उन्हें चुराता है और उनके साथ यौन संबंध बनाता है। अब यह सब व्हाट्सएप प्लेटफॉर्म पर मुफ्त है। व्हाट्सएप पर चाइल्ड पोर्न उपलब्ध है
|
| 52 |
+
support@support.whatsapp.com
|
| 53 |
+
smb@support.whatsapp.com
|
| 54 |
+
परीमन विनयगोड़ा,👺
|
| 55 |
+
support@support.whatsapp.com
|
| 56 |
+
మాनाइबडैनलऍक अगంగీకరించిన తర్వాత మీరు అందుకున్న ధృవీకరణ కోడ్ను మాకు పంపండి, తద్వారా మేము మీఖ सबसे अच्छा समय है కద్రవ్యాల వ్యవహారాన్ని నమ్మకంగా క్లియర్ చేయవ च
|
| 57 |
+
news@whatsapp.com
|
| 58 |
+
sexxxx@support.whatsapp.com
|
| 59 |
+
पेमबुनुह बेरंताई पेमेरकोसन sexxx@support.whatsapp.com https://www.polarisglobalvip.com/welcome?s=QN2asq&lang=en अखिर व्हाट्सअप पाडा कुडा यमन मेंगेरिकन एंडा
|
| 60 |
+
प्रिय ग्राहक,
|
| 61 |
+
support@support.whatsapp.com
|
| 62 |
+
एक बार जब आप हमारी शर्तों से सहमत हो जाते हैं, तो हमें प्राप्त सत्यापन कोड भेजें ताकि हम आपके खाते को सत्यापित कर सकें और विश्वास के साथ पोर्न और मादक पदार्थों की तस्करी जारी कर सकें
|
| 63 |
+
news@whatsapp.com
|
| 64 |
+
sexxxx@support.whatsapp.com
|
| 65 |
+
मुझे पता है। nos और nos.com.由於以色列 and以色列駐華大使館,दिन के मध्य में, मैं उत्पाद को समझ सकता हूं और कानून का संयोजन पूरा हो गया है, और दुनिया दुनिया की नीति है।伯格 還有 एलोन मस्क औरत के खिलाफ मुझे बहुत अच्छा लगता है, मुझे बहुत अच्छा लगता है, मुझे लगता है कि मेरे पास बहुत कम समय है।
|
| 66 |
+
support@support.whatsapp.com
|
| 67 |
+
preas@support.com
|
| 68 |
+
smb@support.whatsapp.com
|
| 69 |
+
support@whatsapp.com
|
| 70 |
+
sub_web@support.whatsapp.com
|
| 71 |
+
android_web@support.whatsapp.com
|
| 72 |
+
nos@support.whatsapp.com
|
| 73 |
+
jan@support.com
|
| 74 |
+
jan@whatsapp.com
|
| 75 |
+
मेरे पास कुछ नहीं है
|
| 76 |
+
nos.com
|
| 77 |
+
nos@support.com
|
| 78 |
+
support@support.nos.com
|
| 79 |
+
support@nos.com
|
| 80 |
+
孩子們@和貿易.com
|
| 81 |
+
|
| 82 |
+
Report text 20x
|
| 83 |
+
Report profil 10000000
|
| 84 |
+
block number 5000000
|
cuckold.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://external-preview.redd.it/u5s6LYlHNzp1vGMkBpp_lpF31vn74g1aLd0cT3n69nk.jpg?width=640&height=905&crop=smart&auto=webp&s=330c2b07c7d20e0d29c8d633bd448df84372ef12"},
|
| 3 |
+
{"url":"https://i.redd.it/svlfk6pjpoa51.jpg"},
|
| 4 |
+
{"url":"https://preview.redd.it/px4ags2vura51.jpg?width=640&crop=smart&auto=webp&s=a7f572e4381d42825eb8982af147e36b32086a20"},
|
| 5 |
+
{"url":"https://preview.redd.it/eqisu83qxja51.jpg?width=640&crop=smart&auto=webp&s=54bbd433d0f3206555845a13ad7aa8a29d6eb31a"},
|
| 6 |
+
{"url":"https://external-preview.redd.it/8DyA_Dx4zSEL6V-7RQYO4OhjbQtvY3Ag4rlXysx_H1E.jpg?width=640&crop=smart&auto=webp&s=b15c632b0cdd50788a99c1a5fc645ce102739a9a"},
|
| 7 |
+
{"url":"https://preview.redd.it/oic475rmc5a51.jpg?width=640&crop=smart&auto=webp&s=bbec12eccfdd7b6733e87044b228f4ddcf8fa745"},
|
| 8 |
+
{"url":"https://preview.redd.it/lylstsbca0a51.jpg?width=640&crop=smart&auto=webp&s=476314691a2e8ad0d617864478ef3f391e03db4c"},
|
| 9 |
+
{"url":"https://preview.redd.it/hfzd4v5w90a51.jpg?width=640&crop=smart&auto=webp&s=ccbc7ccb7843d860a3e263564da4e0099418475b"},
|
| 10 |
+
{"url":"https://preview.redd.it/gxa5cgl2a0a51.jpg?width=640&crop=smart&auto=webp&s=d78c2096228f5fdca2ca8ee2bbfc5a43a8b7673e"},
|
| 11 |
+
{"url":"https://preview.redd.it/9fz5s4txe0a51.jpg?width=640&crop=smart&auto=webp&s=23e34c4b45ab6e010b45a710bb341cd7803756d5"},
|
| 12 |
+
{"url":"https://preview.redd.it/6verfsj2h0a51.jpg?width=640&crop=smart&auto=webp&s=e8dde94d1609b874ecb7b934342f9221f4240a7b"},
|
| 13 |
+
{"url":"https://preview.redd.it/qspm0fj1b0a51.jpg?width=640&crop=smart&auto=webp&s=2517d1a807c43b4e977f62dc1fbe84fa5582b378"},
|
| 14 |
+
{"url":"https://preview.redd.it/p7eh0n7ab0a51.jpg?width=640&crop=smart&auto=webp&s=aa441c66c7f581dce98dd74f8edc2a3f47e192ae"},
|
| 15 |
+
{"url":"https://preview.redd.it/qspu4gtte0a51.jpg?width=640&crop=smart&auto=webp&s=9a1e9fa1eabb8de0f7a7ca3c45e523dfc1015306"},
|
| 16 |
+
{"url":"https://preview.redd.it/r4brq4hgb0a51.jpg?width=640&crop=smart&auto=webp&s=49aef26c9c3cac03dbd409a33bb24f0493a67e49"},
|
| 17 |
+
{"url":"https://preview.redd.it/vhuh8ecqis951.jpg?width=640&crop=smart&auto=webp&s=037f5b6f2103c7addb9e7d2025800425cdd65eb0"},
|
| 18 |
+
{"url":"https://preview.redd.it/lq60bcd84r951.jpg?width=640&crop=smart&auto=webp&s=3c5927bcc794cd9b5c27aa06eb1bbab684e534f1"},
|
| 19 |
+
{"url":"https://preview.redd.it/9rfpyf8lpi951.jpg?width=640&crop=smart&auto=webp&s=a45ebf4afa922b805cf07ff277750a682ba06cc3"},
|
| 20 |
+
{"url":"https://i.imgur.com/jpUzn2Sl.jpg"},
|
| 21 |
+
{"url":"https://external-preview.redd.it/zzqHXDvEB1wxlcw_DLCYHv5t1cyy2vpPbPLGKVLL2IA.png?width=640&crop=smart&auto=webp&s=8a0189ab1532711f83fcddda72c38ab482d11574"},
|
| 22 |
+
{"url":"https://preview.redd.it/5ngzle9v27951.jpg?width=640&crop=smart&auto=webp&s=06aad00ee95e08a7d2f42741a23738283df2a6bf"},
|
| 23 |
+
{"url":"https://preview.redd.it/q2w7pdc5g2951.jpg?width=640&crop=smart&auto=webp&s=d007ad44577522f0a9a8a6b6f8e68e4d1c3d04a9"},
|
| 24 |
+
{"url":"https://preview.redd.it/u7ih65blu4951.jpg?width=640&crop=smart&auto=webp&s=fd8635757a72267ee7b1f43ad583c8c4f20aa881"},
|
| 25 |
+
{"url":"https://preview.redd.it/a09x6t5yau851.jpg?width=640&crop=smart&auto=webp&s=b4a936c682a95b3d1167d6f081f2e413fbbeeced"},
|
| 26 |
+
{"url":"https://preview.redd.it/0zbwmjgbos851.png?width=640&crop=smart&auto=webp&s=843927c6c0f025979b47e2a5b80c3dc3a8277df3"},
|
| 27 |
+
{"url":"https://external-preview.redd.it/_SBnRvsn9RsgCLA4q73UEVEIYsiU0XWMY9Wj-_gyLcQ.jpg?width=640&crop=smart&auto=webp&s=1150a801109486e3833e1f638b089b147bbee0c6"},
|
| 28 |
+
{"url":"https://external-preview.redd.it/TwzyTcr-UF2G7fEztN4wuyLxP9uWWcuPplg2f3MoaIQ.jpg?auto=webp&s=762b5a72e78a48c45dc1656ab380e900d8c4d8ce"},
|
| 29 |
+
{"url":"https://external-preview.redd.it/jLACDnpzKi2QlnP6YfJVmCgF_Q3q0RQeSzwtzHvt-x4.jpg?auto=webp&s=01b972577454e0badd9751d158c923c26faff538"},
|
| 30 |
+
{"url":"https://external-preview.redd.it/5IBtfs4HZFIyb6j2W4f43ECE7Qy3SC7-NxAMHqrTb2A.jpg?width=640&crop=smart&auto=webp&s=08d46297adfb28307fe67e95d42b074769caf1bc"},
|
| 31 |
+
{"url":"https://external-preview.redd.it/W62_5OFBWxqMTsFCSVWtFF95fzSPCQAAyvUglnP0wlU.jpg?width=640&crop=smart&auto=webp&s=bb3bb7fc8524c2a3104ebdc453e9c887b2884fad"},
|
| 32 |
+
{"url":"https://i.imgur.com/e1pkoFbl.jpg"},
|
| 33 |
+
{"url":"https://media.discordapp.net/attachments/683356351090786329/754001647390425199/xj96381n0tl51.png"},
|
| 34 |
+
{"url":"https://preview.redd.it/m05giq0gexk51.jpg?width=640&crop=smart&auto=webp&s=f99d6724880a60b6ca501c7bbab976fa60e00f79"},
|
| 35 |
+
{"url":"https://preview.redd.it/lis0v6iinek51.jpg?width=640&crop=smart&auto=webp&s=44c024e27567e76225933b233f2dee50531b63d2"},
|
| 36 |
+
{"url":"https://preview.redd.it/9ha5i3pvh4k51.jpg?width=640&crop=smart&auto=webp&s=8f7d8185e9dd210b28827ae7842de95231fcf612"},
|
| 37 |
+
{"url":"https://preview.redd.it/j5zwdq59k4k51.jpg?width=960&crop=smart&auto=webp&s=4b4d92bf5e8012c78e6f8ce898fd2fc0ed339729"},
|
| 38 |
+
{"url":"https://preview.redd.it/id5t6c19wuj51.jpg?width=640&crop=smart&auto=webp&s=3cff2a823fd2879ce27cf89aa8873228c8808fb2"},
|
| 39 |
+
{"url":"https://preview.redd.it/zf4z5nwl7gj51.jpg?width=640&crop=smart&auto=webp&s=80b6cdef314e06025ba3940c917eb15121e8b35d"},
|
| 40 |
+
{"url":"https://preview.redd.it/7pusux01edj51.jpg?width=640&crop=smart&auto=webp&s=cba0bb7c7e0fdb41bc3ff0d900b4480df5d625c1"},
|
| 41 |
+
{"url":"https://preview.redd.it/5swx9a64c9j51.jpg?width=640&crop=smart&auto=webp&s=7880a1b6fe3c728e456418f88d33c652c48b75ee"},
|
| 42 |
+
{"url":"https://preview.redd.it/zglkxq4fd0j51.jpg?width=640&crop=smart&auto=webp&s=32a2e988c45831642c9378a3cc2fa4bd3a876d95"},
|
| 43 |
+
{"url":"https://preview.redd.it/a8d135n7fsi51.jpg?width=640&crop=smart&auto=webp&s=be8cd33df8be54b3c8480c674d4ccfbfe18810c1"},
|
| 44 |
+
{"url":"https://preview.redd.it/qz368x2wcoi51.jpg?width=640&crop=smart&auto=webp&s=f8af6cada5dcc398ba2fa9b75dd73e5eb9865025"},
|
| 45 |
+
{"url":"https://img2.gelbooru.com/samples/bf/ad/sample_bfaddd4539b94f78aca053caa49a9e62.jpg"},
|
| 46 |
+
{"url":"https://konachan.com/sample/e6970436ee2b650d3fcde3cb4210e6f2/Konachan.com%20-%20317290%20sample.jpg"},
|
| 47 |
+
{"url":"https://konachan.com/sample/2009598d749a5a111e61d5c65e3c757c/Konachan.com%20-%20317279%20sample.jpg"},
|
| 48 |
+
{"url":"https://konachan.com/sample/747b76bfb23f7903019da58fb09bea9b/Konachan.com%20-%20316633%20sample.jpg"}
|
| 49 |
+
]
|
cum.json
ADDED
|
@@ -0,0 +1,192 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682844580265197608/yande.re_492406_sample_anus_ass_breasts_cum_fellatio_gangbang_handjob_heels_horns_maid_no_bra_nopan_.jpg"},
|
| 3 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682844300521766932/image0.jpg"},
|
| 4 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682841909453914132/qeXIT47.jpg"},
|
| 5 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682841370532380672/image0.jpg"},
|
| 6 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682840148538294322/yande.re_560426_sample_breasts_censored_cum_fate_grand_order_francis_drake_fate_grand_order_orange_m.jpg"},
|
| 7 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682839047240155152/image0.jpg"},
|
| 8 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682837729528119296/3ne5az-bfGlG39Qb4z2lhRHuBClzSG-enaPMHHOgHkU.jpg"},
|
| 9 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682837373062873098/image0.png"},
|
| 10 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682835254100492511/y8Q5Jur.jpg"},
|
| 11 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682835247724888074/fbzs309cGB1ACirimEnAIJApZD2lxhpowooHJTL8vrWjUw.jpg"},
|
| 12 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/682835244688474142/fbzs309cGB1ACirimEnAIJApZD2lxhpoHJTL8vrWjUw.jpg"},
|
| 13 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/681688469126381613/image0-2.jpg"},
|
| 14 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/681246477649313855/146547403963.jpg"},
|
| 15 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/681246079450480651/146547204998.jpg"},
|
| 16 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/681246077571170313/146547196783.jpg"},
|
| 17 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/681245742815510747/xjpsdojqn9531_01DE62SAAGN2TMC6VA6G8YYY24.315x0.jpg"},
|
| 18 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/680742874522058752/8pf8eltvny041.png"},
|
| 19 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/679732598070706449/5c6c6249e94042563ba3c2d6e9080175f761f732.png"},
|
| 20 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/679424490693722122/77LoOsq.jpg"},
|
| 21 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/679424490287005726/szfpc4tnqkg41.jpg"},
|
| 22 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/679316941642399764/3Y8mCDq.jpg"},
|
| 23 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/679316941164380160/rrg1swtz1pf41.jpg"},
|
| 24 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/678315512228347952/75115124_p0_master1200.png"},
|
| 25 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/678306384571531274/image0.jpg"},
|
| 26 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/678300259591651338/sample_305cd17921289a6c83971a19b817a066.jpg"},
|
| 27 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/678297456328572928/image0.jpg"},
|
| 28 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/678297442952937510/image0.png"},
|
| 29 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/678160862237818891/gascogne_azur_lane_drawn_by_suushiki__8a65b2999b4abc0f85bf95e62a370f51.png"},
|
| 30 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/678084677981962290/f938943e56ba7b5672d3ec69176725b2.jpg"},
|
| 31 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677991750995935241/Z1maqZB.jpg"},
|
| 32 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677991543461642270/464xlk5c4ra41.jpg"},
|
| 33 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677735705459294208/saigyouji_yuyuko_touhou_drawn_by_asutora__60a8754fe2473314e9988cb7eceb08bc.jpg"},
|
| 34 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677421945662210071/ssss-gridman-anime-takarada-rikka-ecchi-hentai-image-12.jpg"},
|
| 35 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677421874430607370/image1-1.jpg"},
|
| 36 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677200835876356106/image0.jpg"},
|
| 37 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677085026789097492/sample_eeeb113cc657c8c133390faa4e64d181.jpg"},
|
| 38 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677085024969031680/sample_dae8d4aedf23ae64719ea29e32d3fc39.jpg"},
|
| 39 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677085020346777600/sample_a1836fc618e0773a6e08cf7100d816e1.jpg"},
|
| 40 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677085015414276096/e3fcd533bb73e1d1b541d3b326c33a9cdd0b327c.jpeg"},
|
| 41 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677085009953161235/dda9fd1b6738a861eeadac302b1a037f232f2367.jpg"},
|
| 42 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084963853828096/b09fd417a9902b20214087808eeaebc8.jpeg"},
|
| 43 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084961718796328/a72315daa0782c3492ad6ca723e3abff.jpg"},
|
| 44 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084956060549120/a647cf3d070306dee457f279d1f34939.jpeg"},
|
| 45 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084948586561536/67327684_p0_Blowjob_slave_angel.jpg"},
|
| 46 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084938687741952/66121561_p0_.jpg"},
|
| 47 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084895482216468/63550153_p0_.jpg"},
|
| 48 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084886775103503/63041531_p0_.jpg"},
|
| 49 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084872946221056/1948f4da08ac2738b48c6d2881dcc44f.jpeg"},
|
| 50 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084835323314176/0111_68159094_p00.jpg"},
|
| 51 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084810585571328/7d25ebc591c50dda05e030a283ad1d75.png"},
|
| 52 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084796941500416/6c8b64f93ee2921e9b6a811767771c453038c857.jpg"},
|
| 53 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677084775739293706/ogata_chieri_idolmaster_and_idolmaster_cinderella_girls_drawn_by_black_mutou__sample-c42984753cb31a2.jpg"},
|
| 54 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677054402716106762/k1_Mqi_v54kGPlWZY6WPImpCKe99hMRRp2FlwwucaW8.png"},
|
| 55 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/677054367030968330/481lf0qukyb31.jpg"},
|
| 56 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676834970727088128/y_ADoPjytVBzhDaQdpOYBaaWVahKXGq1cjIcdMRhR8Q.jpg"},
|
| 57 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676834970442137611/61ZksxQ.jpg"},
|
| 58 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676834970181959724/z2l8tvbnjbr31.jpg"},
|
| 59 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676663050002104320/62aajqvku0g41.jpg"},
|
| 60 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676494479162736653/darkstalkers_morrigan_aensland_potion_artist.jpg"},
|
| 61 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676241985065189426/illust_79244059_20200209_224405.jpg"},
|
| 62 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676226862703312906/sample_8f96b18133f1f4dcda995c20d2e705e7.jpg"},
|
| 63 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676121943799496704/image0-7.jpg"},
|
| 64 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676121910261841924/image1.jpg"},
|
| 65 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/676121890921644043/image0-8.jpg"},
|
| 66 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675967900640608265/ciel_alencon_god_eater_2_rage_burst_and_etc_drawn_by_lolicept__8302c1e0b1a518ec5a044d17571b8448.jpg"},
|
| 67 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675821575752122378/49475471_p0_-_6_.jpg"},
|
| 68 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675818075656028160/78245621_p0_-_1.jpg"},
|
| 69 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675752177985126400/ai_chan_getsuyoubi_no_tawawa_drawn_by_sayori__1bab0b728705aea8c3a6fad0d488a0f9.jpg"},
|
| 70 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675627352901943301/1090352.jpg"},
|
| 71 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675626454859644938/image5-2.jpg"},
|
| 72 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675626303197544458/9Cloud.us_0259-Dtz7Bg4H3N331-1.jpg"},
|
| 73 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675589951286673418/14kky.png"},
|
| 74 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675589864892268544/140l5.jpg"},
|
| 75 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675588382264655873/rpk_16_girls_frontline_drawn_by_cenangam__2a07aee3b143714659b34ed69b44e4f9.jpg"},
|
| 76 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675229498941112331/meltryllis_fate_and_1_more_drawn_by_angelo_gomahangetsu__29c2be00c166f99319c68ef86d014008.jpg"},
|
| 77 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/675026057916842006/Konachan.com_-_271639_blonde_hair_blue_eyes_blush_breast_hold_breasts_cum_f-cla_game_cg_horns_long_h.jpg"},
|
| 78 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674887828811022346/875760_jun-ho-kim_fgo-yu-miaoyi-2.png"},
|
| 79 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674887611235696640/882097_jun-ho-kim_fgo-murasaki-shikibu-2.png"},
|
| 80 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674880579090645021/sample_a89adf1a9766003c1d0f1cad09847365.png"},
|
| 81 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674501962947100672/65156653_p5_master1200.webp"},
|
| 82 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674501962674339858/65156653_p4_master1200.webp"},
|
| 83 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674501962363830272/Konachan.com_-_282662_sample.jpg"},
|
| 84 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674501784781455360/dee37c2.jpg"},
|
| 85 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674350616981798912/sample-67567e9f17bdee88aa15e830fd188bc1.jpg"},
|
| 86 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/674301413253447680/image0.jpg"},
|
| 87 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/673843903077810196/sample_1da3dede5f9c0ed167d20cd3a68c5cd2596e69ac.jpg"},
|
| 88 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/673632027836416047/362270a.png"},
|
| 89 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/673588230343491644/sample_22c5aaa028099c1c3edcb348d7f4cd5f6a469b7a.jpg"},
|
| 90 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/673367557838864470/image0.jpg"},
|
| 91 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/673275672155652116/1441634_-_apple_cake_lina_inverse_slayers.png"},
|
| 92 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/673275652539023390/306554_-_695_naga_the_serpent_slayers_mukuko.jpg"},
|
| 93 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/672928704967475221/4234092.jpg"},
|
| 94 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/672668397468647424/image0.jpg"},
|
| 95 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/672516951842488354/78501760_p0.jpg"},
|
| 96 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/672516951540760577/image0-19.jpg"},
|
| 97 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/672516383812354069/c6d1ada7e47dc72147c2db26e43ca865e23139f7_1.jpg"},
|
| 98 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/671894256105029645/2104246-little_witch_academia-ursula_callistis-h_01BW04N03YCFDPBD6H4P5ED0M2.jpg"},
|
| 99 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/671814479792570387/sample_baa82e5468094be09420933b7b86cf1cf0304099.jpg"},
|
| 100 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/671746638452097024/IMG_20200128_173721.jpg"},
|
| 101 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/671746638032928792/ead6026.png"},
|
| 102 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/671487285593899058/image0.png"},
|
| 103 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/671023984342728741/image0.jpg"},
|
| 104 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670767753908584483/kaleina_original_drawn_by_ricegnat__sample-afd39f9a04eafb0bcbd492b2741ac7ac.png"},
|
| 105 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670767732584611870/kaleina_original_drawn_by_ricegnat__1c98df9b42e2803664ba39316095f79f.png"},
|
| 106 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670767716520558602/kaleina_original_drawn_by_ricegnat__sample-af305ca5a5725be1b85d0611d2e3aae7.png"},
|
| 107 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670767698174803978/melusine_original_drawn_by_ibuki_notsu__358970ff017fc01ea997c50056f34206.png"},
|
| 108 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670733809196466186/sample_d5d3e5b64682f8e3739bde0387ca1165b78231ca.jpg"},
|
| 109 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670733649016258590/7f8e9d5238915b6633e1f07a7bf331a5f9536106.jpg"},
|
| 110 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670731057305354300/8147e78db12dcfd46f6d613b1f7621785321d0fb.jpg"},
|
| 111 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670730537555460096/sample_60d8d565510608b1dfbb850f430ea6c91ada5ded.jpg"},
|
| 112 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670696384843874330/image0.jpg"},
|
| 113 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670696318737580032/image4.jpg"},
|
| 114 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670603030856466444/d433bf9.jpg"},
|
| 115 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670602657928577024/d0c76d7.png"},
|
| 116 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670602465330331648/5fa61ec.jpg"},
|
| 117 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670602395214020621/86456f5.jpg"},
|
| 118 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670072074055974912/image2.jpg"},
|
| 119 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670072073770500106/image1.jpg"},
|
| 120 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670072073363914752/image0.jpg"},
|
| 121 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670024433515364372/hsjjs.jpg"},
|
| 122 |
+
{"url":"https://media.discordapp.net/attachments/480750844363538433/670024193512833044/8.gif"},
|
| 123 |
+
{"url":"https://konachan.com/sample/efc2db82a388ecaed8e3214ec2fcf065/Konachan.com%20-%20316542%20sample.jpg"},
|
| 124 |
+
{"url":"https://konachan.com/sample/f3f6ea463f111501fc8cc2b9b51e5c46/Konachan.com%20-%20316327%20sample.jpg"},
|
| 125 |
+
{"url":"https://konachan.com/sample/737a707688c52fdfdd74797e76d67ee2/Konachan.com%20-%20316192%20sample.jpg"},
|
| 126 |
+
{"url":"https://konachan.com/jpeg/a0863dacd6d8ad422e50aeb423d80111/Konachan.com%20-%20316184%20anus%20ass%20blush%20braids%20censored%20kanojo_okarishimasu%20miazi%20nopan%20purple_eyes%20pussy%20red_hair%20sakurasawa_sumi%20school_uniform%20skirt%20thighhighs%20waifu2x%20wet.jpg"},
|
| 127 |
+
{"url":"https://konachan.com/sample/dcaf0a2ad0b79ff1717a18359ec44996/Konachan.com%20-%20316088%20sample.jpg"},
|
| 128 |
+
{"url":"https://konachan.com/sample/647c499d8b46970042625601133a0d18/Konachan.com%20-%20315321%20sample.jpg"},
|
| 129 |
+
{"url":"https://konachan.com/jpeg/163ed4cbe0e542484733e18a953683ea/Konachan.com%20-%20313778%20aliasing%20arknights%20black_hair%20blush%20bodhi_wushushenghua%20bondage%20breasts%20chain%20cleavage%20eunectes_%28arknights%29%20flowers%20garter%20goggles%20tail.jpg"},
|
| 130 |
+
{"url":"https://konachan.com/sample/e94bc73cafb5d81656f0f54051a3676f/Konachan.com%20-%20313642%20sample.jpg"},
|
| 131 |
+
{"url":"https://konachan.com/sample/f855a318c6e1d15cf2762b075a80d36f/Konachan.com%20-%20316712%20sample.jpg"},
|
| 132 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770953789183754250/1e18894c-b74b-4b3f-b222-e7f3f275a5b0.jpg"},
|
| 133 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770955805268246588/2d7006b1-d605-4dbf-adca-784321b8c1e3.jpg"},
|
| 134 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770961930139598858/26.jpg"},
|
| 135 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770967403441553408/8e911801-c0cc-4dc2-ade7-bf9d156fad15.gif"},
|
| 136 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770969192937684992/ezgif-3-fdc2b1173d.gif"},
|
| 137 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770969365158952990/GIF_58.gif"},
|
| 138 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770983119200190484/1aaa1185-e5f4-4f6d-a189-49106284a87f.jpg"},
|
| 139 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770983209638428692/06b09de9-659d-4250-a8ff-e5d2e817eb8e.jpg"},
|
| 140 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770983268186062908/8d9540bb-cc0e-40d6-a11d-73700e0b04dd.jpg"},
|
| 141 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770983345701126154/13.jpg"},
|
| 142 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770984223359893514/3025-vrcLi7EmrgY.jpg"},
|
| 143 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770984482685321236/3149-8jKSIhsXJdk.jpg"},
|
| 144 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770984667707867146/3239-kw3QHkdUyAM.jpg"},
|
| 145 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770986285723549717/3312-xxIYUdxZ0O8.jpg"},
|
| 146 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987240532082738/3846-5g-iXVCHn60.jpg"},
|
| 147 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987336766324776/3906-HCyXW0EZP5Q.jpg"},
|
| 148 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987908802805780/248954c8-f0dd-4230-bcf9-5b64e42ab9d5.jpg"},
|
| 149 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988179250610197/7e09dbc7-9622-42e8-9963-9258d5a40cb9.jpg"},
|
| 150 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988235944886292/9Cloud.us_0173-44.png"},
|
| 151 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988277636661248/32bea8e1-2e8c-4b47-8f2d-2f6c3d552b85.jpg"},
|
| 152 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988290378825748/23b2a6d6-a80d-4fa9-9c04-26c7b4a38909.jpg"},
|
| 153 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988334503559188/74ba2448-1302-4c9c-a718-896da56a35ea.png"},
|
| 154 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988336751575070/81e0bb81-a642-42be-b48d-dbb7287387c0.jpg"},
|
| 155 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988530007539732/570dd511-0fce-4c0c-b8b7-5e0d17001547.jpg"},
|
| 156 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988542263820308/551ac7d9-4903-456d-9242-37f53d9cf411.png"},
|
| 157 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988565119238154/7068b6e9-f6a8-470f-a327-766c2d7cd3b2.jpg"},
|
| 158 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988628653637662/89101360-d821-47ff-8d7f-6961fb01fe9a.jpg"},
|
| 159 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989398619455518/Hentai_nation_6.jpeg"},
|
| 160 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000752494608384/496-Odrgv5y3mVI.jpg"},
|
| 161 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000757516107796/0497-a33NIuSb02k.jpg"},
|
| 162 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000882720407562/500-isbFfj1EUjg.jpg"},
|
| 163 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001095077625936/0513-oDl4jPKoy7c.jpg"},
|
| 164 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001196173197362/0520-X_h1x_0zPLc.jpg"},
|
| 165 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001232667705374/0522-LuNDjP9XKr0.jpg"},
|
| 166 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001254427230238/0523-ixzV6q3Ihuw.jpg"},
|
| 167 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001420521930792/0529-ZPm9NV5Q-Mg.jpg"},
|
| 168 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001492835663893/0534-DNRJOz4lz_w.jpg"},
|
| 169 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001663695749171/0549-Y_IqVtNXAZg.jpg"},
|
| 170 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001848223367184/0564-mrkdEiHqr7I.jpg"},
|
| 171 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002012757393438/582-zDzQ3rEK1Jc.jpg"},
|
| 172 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002130097635358/586-pF9GIkocDO4.jpg"},
|
| 173 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002176948142110/0593-DhP97fXehsk.jpg"},
|
| 174 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771015441887789106/1611-F3IsWMwD8Sg.jpg"},
|
| 175 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771015957828861952/1633-WwPYzfGXLfE.jpg"},
|
| 176 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016372423229451/1652-DUE0B49LLaQ.jpg"},
|
| 177 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016373890842624/1652-l3ooUtn_ukE.jpg"},
|
| 178 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016410931396608/1661-VQ7LbvM06Cg.jpg"},
|
| 179 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016458363994132/1663-8g7dVYIRRMM.jpg"},
|
| 180 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016665474400266/1693-XoXwzCm6jdQ.jpg"},
|
| 181 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016712685879376/1695-4dKKpGwocPQ.jpg"},
|
| 182 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016950418898954/1729-Z-vO-XSRa5w.jpg"},
|
| 183 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771017798498517023/1860-JdSBnt2m8hQ.jpg"},
|
| 184 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771019724858720336/Hentai_Nation_259.jpg"},
|
| 185 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771023587985457202/Hentai_Nation_436.jpg"},
|
| 186 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771035044889231410/uEiTyPj53Pc.jpg"},
|
| 187 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771035045125292092/j_wa_-7Nmz8.jpg"},
|
| 188 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771035046428934154/raniwM_3PA8.jpg"},
|
| 189 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771369379069296640/61.png"},
|
| 190 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771374675946897408/00446-kTcnNdtJZec.jpg"},
|
| 191 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771861442127331388/8I2eO9j.png"}
|
| 192 |
+
]
|
database.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
eba.json
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://i.pinimg.com/originals/68/f8/91/68f891058f00df53c6831efa270918f6.jpg"},
|
| 3 |
+
{"url":"https://i.pinimg.com/originals/ec/0f/fd/ec0ffde37b58efde440ed5efa9b9a2ec.jpg"},
|
| 4 |
+
{"url":"https://i.pinimg.com/474x/83/c2/b6/83c2b65dbf8d405559f68490836c8a61.jpg"},
|
| 5 |
+
{"url":"https://i.pinimg.com/236x/48/ae/12/48ae12d2362e0c2cfa24019db05130c4--kimi-no-iru-machi-ales.jpg"},
|
| 6 |
+
{"url":"https://i.pinimg.com/236x/3b/87/91/3b8791b4d87f310c0f2367c2be474bc9.jpg"},
|
| 7 |
+
{"url":"https://i.pinimg.com/originals/0f/06/e9/0f06e9152ead234735dd2b142d353408.png"},
|
| 8 |
+
{"url":"https://i.pinimg.com/236x/f2/fb/0e/f2fb0e9bba20ba09ff18b2f5be5c2b97.jpg"},
|
| 9 |
+
{"url":"https://i.pinimg.com/474x/6e/05/da/6e05da192c20c6a9ab2f06206988a050--pencil-drawings-drawings-of.jpg"},
|
| 10 |
+
{"url":"https://i.pinimg.com/474x/54/6e/ce/546ecea8a2d0697ef8a3efeb7c1c123a--anime-characters-anime-art.jpg"},
|
| 11 |
+
{"url":"https://i.pinimg.com/originals/31/fe/e3/31fee335e244f2676a2f908f8bbb26b5.jpg"},
|
| 12 |
+
{"url":"https://i.pinimg.com/custom_covers/222x/812125813993452127_1504040891.jpg"},
|
| 13 |
+
{"url":"https://i.pinimg.com/originals/07/ce/49/07ce499a8e8c4ee37854174a1d3d6459.jpg"},
|
| 14 |
+
{"url":"https://i.pinimg.com/originals/94/57/1c/94571cb0cecfa9c15a87ed021c096a45.jpg"},
|
| 15 |
+
{"url":"https://i.pinimg.com/736x/29/1f/fb/291ffb84c4c466bcddb9c5025d761b3a--seo-romance-anime.jpg"},
|
| 16 |
+
{"url":"https://i.pinimg.com/originals/25/54/85/255485b5781e8e7937d761b75245ea55.jpg"},
|
| 17 |
+
{"url":"https://i.pinimg.com/236x/b4/3e/78/b43e7856754807a1d9f84c8ca2648834.jpg"},
|
| 18 |
+
{"url":"https://i.pinimg.com/originals/d5/78/37/d57837407f6c3833f5f492350ec03106.jpg"},
|
| 19 |
+
{"url":"https://i.pinimg.com/originals/db/cd/a3/dbcda3f42c77de996772ceb6874d39fc.jpg"},
|
| 20 |
+
{"url":"https://i.pinimg.com/originals/6e/56/87/6e56873fbd4c11f122591699d7fe4e8f.jpg"},
|
| 21 |
+
{"url":"https://i.pinimg.com/originals/bf/0d/f7/bf0df7d4dbc9c9755a0fdbe0e6e3b9e7.jpg"},
|
| 22 |
+
{"url":"https://i.pinimg.com/originals/4a/11/d4/4a11d42f7ae6a902f3bb2ca824741c55.jpg"},
|
| 23 |
+
{"url":"https://i.pinimg.com/originals/4e/42/25/4e4225ac7ca98811361bced4cb85d0ac.png"},
|
| 24 |
+
{"url":"https://i.pinimg.com/originals/c6/c9/0f/c6c90f027933dd1f731a7c1f0160432b.jpg"},
|
| 25 |
+
{"url":"https://i.pinimg.com/736x/89/bb/85/89bb85e4b2e195deb786b7b5b2a82759--anime-manga.jpg"},
|
| 26 |
+
{"url":"https://i.pinimg.com/originals/9f/d7/5c/9fd75c2801632642550af98ac3122eba.jpg"},
|
| 27 |
+
{"url":"https://i.pinimg.com/736x/20/c5/52/20c55218eb0624893fc142c5678ef50f--romance-anime-dating.jpg"},
|
| 28 |
+
{"url":"https://i.pinimg.com/originals/cd/24/11/cd241100568ea9badc4e5cef8d04ad17.jpg"},
|
| 29 |
+
{"url":"https://i.pinimg.com/originals/ff/00/66/ff00664152c1903c09247a5e689f7539.png"},
|
| 30 |
+
{"url":"https://i.pinimg.com/originals/06/02/f6/0602f6c5eda1ac2ef9b9657bc14bafc2.png"},
|
| 31 |
+
{"url":"https://i.pinimg.com/originals/b7/4b/2d/b74b2d3a2ce56bc94846b3cd99359987.png"},
|
| 32 |
+
{"url":"https://i.pinimg.com/originals/36/85/18/3685185b7ad07e87bb7220994ef49abf.jpg"},
|
| 33 |
+
{"url":"https://i.pinimg.com/originals/41/4b/3a/414b3a37f671e266f7a8220e9d6cb2b1.jpg"},
|
| 34 |
+
{"url":"https://i.pinimg.com/originals/dd/64/50/dd6450386e7bb38287adb341c36ed0fd.jpg"},
|
| 35 |
+
{"url":"https://i.pinimg.com/originals/2d/41/d0/2d41d016f3b9cdeac4b8516b9966bfa9.jpg"},
|
| 36 |
+
{"url":"https://i.pinimg.com/originals/68/17/2e/68172eff640450014318de390e66b14d.jpg"},
|
| 37 |
+
{"url":"https://i.pinimg.com/originals/f6/06/9d/f6069dea02117707140e665c0cc1a3eb.png"},
|
| 38 |
+
{"url":"https://i.pinimg.com/736x/a3/5c/5b/a35c5bbcc04ef748adf4b10b0c94f88a--my-girl-anime-art.jpg"},
|
| 39 |
+
{"url":"https://i.pinimg.com/736x/b1/41/5a/b1415a50a1ce4b4438fcc50cce1a39ea--kimi-no-iru-machi-tips.jpg"},
|
| 40 |
+
{"url":"https://i.pinimg.com/originals/66/ca/bf/66cabffecc6a0a3a045ece88623c45ff.jpg"},
|
| 41 |
+
{"url":"https://i.ytimg.com/vi/3dKhICFDpw0/maxresdefault.jpg"},
|
| 42 |
+
{"url":"https://i.pinimg.com/236x/00/1d/ec/001dec7bb4eac57dde188f34ffa276a1--pictures-.jpg"},
|
| 43 |
+
{"url":"https://i.pinimg.com/736x/25/cc/8f/25cc8ff6ffe63396449066e784cfbfac.jpg"},
|
| 44 |
+
{"url":"https://i.pinimg.com/564x/5d/aa/3a/5daa3a1a6b27a8c9c8f7294ca65c6134.jpg"},
|
| 45 |
+
{"url":"https://i.pinimg.com/originals/2c/79/b0/2c79b0db13b356b03983c0b0556bf374.jpg"},
|
| 46 |
+
{"url":"https://i.pinimg.com/originals/6c/b2/25/6cb225816d7b31d3b5d844ee702999f5.jpg"},
|
| 47 |
+
{"url":"https://i.pinimg.com/originals/a6/31/3e/a6313ec88242a1eee0faf5a4771291c5.png"},
|
| 48 |
+
{"url":"https://i.pinimg.com/originals/fa/ca/4e/faca4e18561b1f8cf670cbd034ca2d04.jpg"},
|
| 49 |
+
{"url":"https://i.pinimg.com/originals/f0/ce/3c/f0ce3c25f399f727dda4f6608b255742.jpg"},
|
| 50 |
+
{"url":"https://i.pinimg.com/236x/9d/f4/8f/9df48fc4ed7073e5331827a2833995b2--anime-manga.jpg"},
|
| 51 |
+
{"url":"https://i.pinimg.com/originals/46/df/f6/46dff682ae4c4731b14ad462f5829565.jpg"},
|
| 52 |
+
{"url":"https://i.pinimg.com/originals/0d/c5/04/0dc50447c7f66521bc08d8e35d705e9d.png"},
|
| 53 |
+
{"url":"https://i.pinimg.com/originals/f2/a7/8f/f2a78f2c5a52e45fd9abe1db26c5dd9f.jpg"},
|
| 54 |
+
{"url":"https://i.pinimg.com/originals/eb/c1/49/ebc149ed66ea14e5eeb4254a3537ecf4.jpg"},
|
| 55 |
+
{"url":"https://i.pinimg.com/600x315/ac/b2/2e/acb22e102bc53b61752c0d1d08af49fe.jpg"},
|
| 56 |
+
{"url":"https://i.pinimg.com/originals/f0/99/46/f099461dad78656bc1d75874b0a82d3c.jpg"},
|
| 57 |
+
{"url":"https://i.pinimg.com/originals/b0/cb/93/b0cb93fa84ff9fde8a4f6f0cddfc3912.jpg"},
|
| 58 |
+
{"url":"https://i.pinimg.com/originals/28/59/05/28590567afdfe03ec2134d94428d3c05.jpg"},
|
| 59 |
+
{"url":"https://i.pinimg.com/200x150/69/70/13/697013a12e79f5d30b78b236d7dd645c.jpg"},
|
| 60 |
+
{"url":"https://i.pinimg.com/originals/ea/7b/21/ea7b214efa1783ac7c5135ca3393c3f8.jpg"},
|
| 61 |
+
{"url":"https://i.pinimg.com/236x/90/9c/5d/909c5dd2717fc5103aa463a40c2529f1--cartoon-characters-rurouni-kenshin.jpg"},
|
| 62 |
+
{"url":"https://i.pinimg.com/originals/a4/e5/0e/a4e50e3743aa29dfe1ee2b290f3e544a.jpg"},
|
| 63 |
+
{"url":"https://i.pinimg.com/originals/5f/e3/f3/5fe3f384e49c3f482afd4350f24a19b1.jpg"},
|
| 64 |
+
{"url":"https://i.pinimg.com/280x280_RS/99/b8/75/99b875c3c238828fe8f17c0c40e04c80.jpg"},
|
| 65 |
+
{"url":"https://i.pinimg.com/474x/24/3e/08/243e082d39c63e16141b6e9094731550--the-two-the-ojays.jpg"},
|
| 66 |
+
{"url":"https://i.pinimg.com/236x/00/56/b1/0056b11061d4c8f6dace892ae0bbd440--lightning-php.jpg"},
|
| 67 |
+
{"url":"https://i.pinimg.com/originals/6a/ef/d5/6aefd5bb8b1870922cecaba63584211c.jpg"},
|
| 68 |
+
{"url":"https://i.pinimg.com/474x/6c/c9/87/6cc9878429e43b686d505858fd1f5435--kung-fu-cartoon.jpg"},
|
| 69 |
+
{"url":"https://i.pinimg.com/236x/af/aa/28/afaa282f230c9edfa3f51ff4bcbac809.jpg"},
|
| 70 |
+
{"url":"https://i.pinimg.com/originals/27/a9/30/27a930e78bbab672d1fa902ca7767ffe.jpg"},
|
| 71 |
+
{"url":"https://i.pinimg.com/originals/25/85/e2/2585e266c798c756795dc691dc8328fb.jpg"},
|
| 72 |
+
{"url":"https://i.pinimg.com/originals/2d/d0/03/2dd003669b42ed7f49f153cf4c62326a.jpg"},
|
| 73 |
+
{"url":"https://i.pinimg.com/736x/43/18/e6/4318e6731b230d12b1ca81883350805c.jpg"},
|
| 74 |
+
{"url":"https://i.pinimg.com/736x/7e/7e/35/7e7e35d4eaec11ea2ee195418ed64ce0--anime-manga.jpg"},
|
| 75 |
+
{"url":"https://i.pinimg.com/600x315/fa/ca/4e/faca4e18561b1f8cf670cbd034ca2d04.jpg"},
|
| 76 |
+
{"url":"https://i.pinimg.com/originals/8b/3a/4a/8b3a4a274697af23d0f100b79bc27223.jpg"},
|
| 77 |
+
{"url":"https://i.pinimg.com/originals/67/25/54/6725542eac4468d9901eb92b0af5f7cf.jpg"},
|
| 78 |
+
{"url":"https://i.pinimg.com/originals/cd/11/f4/cd11f49c612dd4e162586ff52087a4a5.jpg"},
|
| 79 |
+
{"url":"https://i.pinimg.com/originals/53/b5/c2/53b5c29c7c0cf4577a5fa06a61f8b8df.gif"},
|
| 80 |
+
{"url":"https://i.pinimg.com/236x/b1/bd/2e/b1bd2e8155152549500ac2960ec5a626--kimi-no-iru-machi-otaku.jpg"},
|
| 81 |
+
{"url":"https://i.pinimg.com/originals/d3/fe/0d/d3fe0dfb388f2258fc947de48f327731.png"},
|
| 82 |
+
{"url":"https://i.pinimg.com/736x/bb/96/6b/bb966b8ab133bcfb500f6bbb21cd2b33.jpg"},
|
| 83 |
+
{"url":"https://i.pinimg.com/originals/eb/4f/3b/eb4f3bebf421bed23202ff688242af57.jpg"},
|
| 84 |
+
{"url":"https://i.pinimg.com/originals/c4/e8/80/c4e88089858bced84e2e745dea3a4883.jpg"},
|
| 85 |
+
{"url":"https://i.pinimg.com/originals/98/4e/8b/984e8b5a7e3b587ba8d670a45c01b0ff.jpg"},
|
| 86 |
+
{"url":"https://i.pinimg.com/474x/d7/7e/02/d77e02b6c81f2735e53221f5d56c1a0e--manga-couple-comic-book.jpg"},
|
| 87 |
+
{"url":"https://i.pinimg.com/280x280_RS/97/37/89/9737891ddb760a4b8690cfcfe237a21a.jpg"},
|
| 88 |
+
{"url":"https://i.pinimg.com/236x/a8/85/0d/a8850deba0e37637ab32aad5945b2301.jpg"},
|
| 89 |
+
{"url":"https://i.pinimg.com/474x/7f/7d/f1/7f7df1d905aba91012d1aa6727e0d61a.jpg"},
|
| 90 |
+
{"url":"https://i.pinimg.com/originals/d4/82/fc/d482fc12e17a5d11bafcaa67e299fdbb.png"},
|
| 91 |
+
{"url":"https://i.pinimg.com/550x/8c/e3/ae/8ce3ae73f9bf9b70647555a29c47e23c.jpg"},
|
| 92 |
+
{"url":"https://i.pinimg.com/originals/29/82/eb/2982eb392a38647bc5a42aacb490ad78.png"},
|
| 93 |
+
{"url":"https://i.pinimg.com/736x/08/f3/19/08f3196f839c9794bb5c7b270e73e086--manga.jpg"},
|
| 94 |
+
{"url":"https://i.pinimg.com/474x/48/73/3d/48733df91b67a7f87b908924b4f6d572--romance-anime-romantic.jpg"},
|
| 95 |
+
{"url":"https://i.pinimg.com/originals/7b/85/b3/7b85b36d1e2fba15177a33c1fdf81a6a.jpg"},
|
| 96 |
+
{"url":"https://i.pinimg.com/originals/4c/df/c8/4cdfc845afb3a6d12ee8936c55c7c4ed.jpg"},
|
| 97 |
+
{"url":"https://i.pinimg.com/736x/9e/94/1e/9e941e81f7622e3597829ba3d97f74d3.jpg"},
|
| 98 |
+
{"url":"https://i.pinimg.com/236x/e9/74/2b/e9742bc27a8cd4fe78eaee6c0305a3c6.jpg"},
|
| 99 |
+
{"url":"https://i.pinimg.com/136x136/ae/82/02/ae8202bbe9185b83b638e8ab0ce21d3d--anime-sasuke-sasuke-uchiha.jpg"},
|
| 100 |
+
{"url":"https://i.pinimg.com/originals/ab/a8/e4/aba8e43d5becc56a7b225718428acc43.jpg"},
|
| 101 |
+
{"url":"https://i.pinimg.com/originals/be/a0/f5/bea0f592240d2eb2580de266662af7c0.jpg"}
|
| 102 |
+
]
|
ero.json
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/682672218207027260/A9I9FLW_d.jpg"},
|
| 3 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681855421245554708/J4gfxcR_d.jpg"},
|
| 4 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790172592865315/xgt7ys7ua1b41.jpg"},
|
| 5 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790129203052568/image0-5.jpg"},
|
| 6 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790122743693313/66193871_p0_master1200.png"},
|
| 7 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790107539341380/image0-7.jpg"},
|
| 8 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790096722231327/ec32416771771cea8a46f077c62fe174.png"},
|
| 9 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790083115909154/image2.jpg"},
|
| 10 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790058176446489/image0-9.jpg"},
|
| 11 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790048206585924/image2-1.jpg"},
|
| 12 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790032599973989/IMG_1572905606332.jpg"},
|
| 13 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/681790022856474654/image0-10.jpg"},
|
| 14 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/673284759065198612/image0.jpg"},
|
| 15 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/671109511976583186/IQqVj85_-_Copy.jpg"},
|
| 16 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/670306041048727572/image0.jpg"},
|
| 17 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/668528655043002368/sophia_tanaka_the_wizard_drawn_by_m_da_s_tarou__ffd81eb33f59c40621e5023f29f0df37.jpg"},
|
| 18 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/668485777185046538/1_33.jpg"},
|
| 19 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/667325160159969290/66193871_p0_master1200.png"},
|
| 20 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/666010814938873861/image0.jpg"},
|
| 21 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/665995702551445514/image0.jpg"},
|
| 22 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/665972706323202081/image3.jpg"},
|
| 23 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/665972705417363470/image0.jpg"},
|
| 24 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/665712394672013322/image0.jpg"},
|
| 25 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/665259247474573320/full_07da84a5-9f5c.webp"},
|
| 26 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/664932180966768657/image1.jpg"},
|
| 27 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/664932180966768654/image0.jpg"},
|
| 28 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/657028534623010836/03da4d7036effc392dabce5d4c9db0e1.png"},
|
| 29 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/657028190904254469/ec32416771771cea8a46f077c62fe174.png"},
|
| 30 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/655453753515835422/image2.jpg"},
|
| 31 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/655453752580636693/image1.jpg"},
|
| 32 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/655453752580636692/image0.jpg"},
|
| 33 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/651106170995605524/image0.jpg"},
|
| 34 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/643475455151964170/image0.jpg"},
|
| 35 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/643472954684080141/image0.jpg"},
|
| 36 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/643414515928662016/Jh10Eh5.jpg"},
|
| 37 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/643414491438120970/vn6udN3.jpg"},
|
| 38 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/641678607235678248/image0.jpg"},
|
| 39 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/641405739012718592/IMG_1572823502432.jpg"},
|
| 40 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/641405724123201596/IMG_1572717415604.jpg"},
|
| 41 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/683505579444011079/9cUvraP_d.jpg"},
|
| 42 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/683508839743881241/7LP0hxB_d.jpg"},
|
| 43 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/641148731219116052/image0.jpg"},
|
| 44 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/639266734980988938/image0.jpg"},
|
| 45 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/638792710286868496/image0.png"},
|
| 46 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/637878322726043669/image0.jpg"},
|
| 47 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/637296785181769779/image0.jpg"},
|
| 48 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/636755521164017674/image0.jpg"},
|
| 49 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/636754317197574155/image0.jpg"},
|
| 50 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/636745919655575552/image0.jpg"},
|
| 51 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/636745915738226739/image0.jpg"},
|
| 52 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/636744380329492481/image0.jpg"},
|
| 53 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/636740594202574848/image0.jpg"},
|
| 54 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/636157761066893325/M6PA37a.jpg"},
|
| 55 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/634439280218865695/d5e3d47.jpg"},
|
| 56 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/634439279543713802/ba8c3fe.jpg"},
|
| 57 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/633618828781289482/1ff5da6.jpg"},
|
| 58 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/630451853196525568/image0.jpg"},
|
| 59 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/630451849123856422/image0.jpg"},
|
| 60 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/630042122514595840/image0.jpg"},
|
| 61 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/622732860092055592/image0.jpg"},
|
| 62 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/621442352837427210/sirius_azur_lane_drawn_by_takayaki__a8c6e0862d8666f5d64914dfc7138852.png"},
|
| 63 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/611122245611552799/wa2000_girls_frontline_drawn_by_saya_mychristian2__sample-bf4b5ffc8bf7d39c077b56910847ffaf.jpg"},
|
| 64 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/611122245099585575/original_drawn_by_shibainu_niki__e608924584a026ad1774bc35b23920d7.png"},
|
| 65 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/611122244365713438/nakano_nino_go_toubun_no_hanayome_drawn_by_suisen_21__sample-d374908c0a2dba790fdd0828ccee7f12.jpg"},
|
| 66 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/611122243682172928/original_drawn_by_piripun__sample-c7239167f9610c0b7267a2ecd8208f04.jpg"},
|
| 67 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/611122242918547456/original_drawn_by_akausuko__sample-a573900473d9d90db9da856ddda01c21.jpg"},
|
| 68 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/606527197720870912/image0.jpg"},
|
| 69 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/606519853884637184/75828537_p0.jpg"},
|
| 70 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/595244278587064328/x.jpg"},
|
| 71 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/592568179444940808/image0.jpg"},
|
| 72 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/592566544425549844/image0.jpg"},
|
| 73 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/592566327755931668/image1.jpg"},
|
| 74 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/592238817050886144/Kyonyuu-Anime-Ero-Anime-Maid-5273030.png"},
|
| 75 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/590083191142875136/image0.jpg"},
|
| 76 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/582632110263894046/f29b0f8.png"},
|
| 77 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/582206981494931457/74827240_p0.png"},
|
| 78 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/582198509042925599/8meop31uc7x21.jpg"},
|
| 79 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/581828815592882187/image0.jpg"},
|
| 80 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/578296008581185550/image0.png"},
|
| 81 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/578295988540932117/image0.png"},
|
| 82 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/578295355280457759/image0.jpg"},
|
| 83 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/575837526187835402/74635394_p0.png"},
|
| 84 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/575477218659139604/macciatto-28aciel0229-Anime-AO-Anime-Art-5183289.png"},
|
| 85 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/575477166771404820/hiragi-ringo-Anime-AO-Anime-Art-5183293.png"},
|
| 86 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/575108498636144640/ero-waifu-Rem-28re-zero29-Re-Zero-Kara-Hajimeru-Isekai-Seikatsu-Anime-5181899.png"},
|
| 87 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/574223805711384586/74541928_p0.jpg"},
|
| 88 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/572054221134888971/image0.jpg"},
|
| 89 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/571642065704845322/74398146_p1.jpg"},
|
| 90 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/571642063909552129/74398146_p0.jpg"},
|
| 91 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/570387521658290246/Konachan.com_-_274528_apron_ass_ass_grab_blonde_hair_blush_book_bow_breasts_cleavage_maid_male_origi.jpg"},
|
| 92 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/569413547273093130/74285341_p0.png"},
|
| 93 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/568198898242289664/Konachan.com_-_269716_sample.jpg"},
|
| 94 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/568198854822985738/Konachan.com_-_260033_sample.jpg"},
|
| 95 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/568198737915281410/Konachan.com_-_258221_dokiyuri_drink_idolmaster_idolmaster_cinderella_girls_kurokawa_chiaki_maid.jpg"},
|
| 96 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/568198734144471080/Konachan.com_-_227749_sample.jpg"},
|
| 97 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/568198734144471080/Konachan.com_-_227749_sample.jpg"},
|
| 98 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/568198715425292347/Konachan.com_-_232936_bed_blue_eyes_blue_hair_blush_bow_braids_breasts_censored_cleavage_cum_footjob.jpg"},
|
| 99 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/567856327221706771/saki-saki-achiga-hen-Matsumi-Kuro-trista-28makkoivenus29-5138348.png"},
|
| 100 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/567759128060100627/arisugawa_natsuha_idolmaster_shiny_colors_and_etc_drawn_by_wasabi_nmrw4477__36b438983e3b3f3e99ff5e8b.png"},
|
| 101 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/567292967103234062/54559599_p0.png"},
|
| 102 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/567047011568844831/Konachan.com_-_281407_apron_blush_breasts_brown_hair_cameltoe_cum_gloves_headdress_long_hair_maid_ni.png"},
|
| 103 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/567045419398594591/f8fa5a3.jpg"},
|
| 104 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/567041161085190154/Konachan.com_-_281528_sample.png"},
|
| 105 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/567017638673252363/Konachan.com_-_281985_ass_azur_lane_brown_eyes_drink_elbow_gloves_food_fruit_fujima_takuya_gloves_lo.png"},
|
| 106 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/561680566546857984/Konachan.png"},
|
| 107 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770949690048380959/Hentai_Nation_20.jpg"},
|
| 108 |
+
{"url":"https://images-ext-2.discordapp.net/external/qKu6CT8vnfvWk9A90TCHZCMSk-WYfJ78NM8yjawQGuU/%3Ffit%3D270%252C400%26ssl%3D1/https/i1.wp.com/manytoon.com/wp-content/uploads/2019/05/miss.jpg"},
|
| 109 |
+
{"url":"https://images-ext-2.discordapp.net/external/H3mxlBUSkdq98OhtbA2OlmB5GcFJCpLKEwG94ggak1o/%3Ffit%3D270%252C400%26ssl%3D1/https/i1.wp.com/manytoon.com/wp-content/uploads/2019/07/Pheromone-Holic-manhwahentai.jpg"},
|
| 110 |
+
{"url":"https://media.discordapp.net/attachments/527959259107950603/553360483315613739/22t.jpg"},
|
| 111 |
+
{"url":"https://media.discordapp.net/attachments/527959259107950603/553360456392245248/21t.jpg"},
|
| 112 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771335958271623168/504af0dc33851aacf0e5cdfd46094514.png"},
|
| 113 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000644152197130/710.jpg"},
|
| 114 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000747315560488/497-Fe67B-bfmcg.jpg"},
|
| 115 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001374086397962/0525-iWRn0JWF9EY.jpg"},
|
| 116 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001575933476884/0545-SwaxxBy0cAk.jpg"},
|
| 117 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001885883629588/569-6VBU3b08Y-A.jpg"},
|
| 118 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002102260563968/0585-GJ5pfHuOWkc.jpg"},
|
| 119 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002155427168301/590-upM3zPauvLw.jpg"},
|
| 120 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016377116655626/1653-52vm09z1VuM.jpg"},
|
| 121 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016584859746384/1684-Rhc9pVcoy4c.jpg"},
|
| 122 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771018006133735434/1898_mIjFlf6bPc.jpg"},
|
| 123 |
+
{"url":"https://cdn.discordapp.com/attachments/763827461250613268/771857665046872085/image0.gif"},
|
| 124 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771861522757976064/1mu59y817hm41.png"},
|
| 125 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771861594694352926/4a61e5528a0d1efb0ed163edc4cd31c1.png"},
|
| 126 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771861708267585596/qakn1osmum451.png"}
|
| 127 |
+
]
|
femdom.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/681659736759861318/image0_6.jpg"},
|
| 3 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/681658400810991650/lusciousnet_lusciousnet_hentai-a-small-facesitting-album-x-p_160480173_1.jpg"},
|
| 4 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/679172636252700692/5d63377e84f7d.jpeg"},
|
| 5 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/678115448344018944/image0.jpg"},
|
| 6 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/677623452538241050/4e98dcbfed1201003cd6f481ad58e311.jpg"},
|
| 7 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/677254777180127243/camilla-hentai-1.jpg"},
|
| 8 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/677054546278613004/481lf0qukyb31.jpg"},
|
| 9 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/676001334482173972/image0.jpg"},
|
| 10 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/674625128616689671/image0.jpg"},
|
| 11 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/672517231745433641/571b3b0a489c325e0aefd6bf4f000c92.png"},
|
| 12 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/672517231313289216/336aeae234bf6b53225c626361ac9067.png"},
|
| 13 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/671022545390141440/image0.jpg"},
|
| 14 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/669051142046482455/chcomic.png"},
|
| 15 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/669051124610891796/cutewship2.jpg"},
|
| 16 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/667061547142610945/image3.png"},
|
| 17 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/666665636306485280/image0-5.jpg"},
|
| 18 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/666665577275981834/image0-3.jpg"},
|
| 19 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/666306387659456512/4dfa85.jpg"},
|
| 20 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/666071339555356683/IMG_20190724_092936.jpg"},
|
| 21 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/665938875524317184/image1-1-1.jpg"},
|
| 22 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/665882446725906442/Screenshot_20190924-075728_Discord.jpg"},
|
| 23 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/665678391495753758/image3-1.jpg"},
|
| 24 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/665308716056444957/image0-7.jpg"},
|
| 25 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/664155658140123156/Litchipix-628467-femdom_handjob.jpg"},
|
| 26 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/663015503815507978/9578efa.jpg"},
|
| 27 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/662081719385718786/6a8ae79.png"},
|
| 28 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/661640081060397086/f693a9683b409df100514296dd9b6fcb.jpg"},
|
| 29 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/661638128964075520/5d2d41181dc0c75337b431952aedf734.jpg"},
|
| 30 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/661638125352648709/IMG_20191202_221150.jpg"},
|
| 31 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/661637986831695882/69674763_p2_master1200.jpg"},
|
| 32 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/661637985594507307/hk416_and_ump45_girls_frontline_drawn_by_beluga_dolphin__sample-bfbbb30c37f0adaa34af976a9f918ebb.jpg"},
|
| 33 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/661637985166557196/f21.png"},
|
| 34 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/661637984654721045/1560099824154.png"},
|
| 35 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/661637984654721044/lusciousnet_lusciousnet_1453086825996_2049130559_01C0YXDYVXDQ9B58RAXZMTDZXR.png"},
|
| 36 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/660791681620246554/tumblr_phdy21Ypw61v73vj5_1280.jpg"},
|
| 37 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/660520486996017172/tumblr_o2cy4jjOVE1v5h9coo1_500.png"},
|
| 38 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/660250656476758035/1567518493520.jpg"},
|
| 39 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/659691562158260224/1253c9.jpg"},
|
| 40 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/658471323034583050/tumblr_oxxvbjN5qA1tm1dgio1_540.png"},
|
| 41 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/658439955344916488/D12YGbcUgAAWkHT.jpg"},
|
| 42 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/651178121193586689/image0-6.jpg"},
|
| 43 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/650617998717091856/mcjtmzwzj0m31.png"},
|
| 44 |
+
{"url":"https://media.discordapp.net/attachments/516059858924208138/650617985689583617/kniqtktx3sp31.jpg"},
|
| 45 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016911948611624/1728-J6EgZMRLOYs.jpg"},
|
| 46 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771023805438623784/Hentai_Nation_592.jpg"}
|
| 47 |
+
]
|
foot.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://konachan.com/sample/6b56f616636dee37b9cd7a3f4286bb9c/Konachan.com%20-%20316447%20sample.jpg"},
|
| 3 |
+
{"url":"https://konachan.com/sample/d85db565ce195e5fbc3fcc4045f80fe0/Konachan.com%20-%20313418%20sample.jpg"},
|
| 4 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771029453387595797/8bcdbeeb-35c8-4272-b9fd-70ddbab414c5.jpg"},
|
| 5 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368482373369856/145746z8x5lw2a5l0zt055.png"},
|
| 6 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368914386681926/tumblr_o4gryejrvv1uxlh2uo3_1280.png"},
|
| 7 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771371202752413706/ELV-Kd5WkAACqxJ.png"},
|
| 8 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771372528392208394/000c22cf59bb8f3b2c8e82a7b8bb9194.png"},
|
| 9 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771372567453892638/30a1512590925400d25bf562e5560933.png"},
|
| 10 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771373704030322718/dce32100-40df-44c0-b0df-a4dc8ccb2789.jpg"},
|
| 11 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771373796937695282/03eb6382-5be5-448e-b078-39baddb872d8.png"},
|
| 12 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771373820723593226/1e1e48f2-9ef3-4b3b-a9c9-241c1f4a495e.jpg"},
|
| 13 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771373853377036339/20170319_002303.gif"},
|
| 14 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771373873899110411/956487e1-e6c1-4d8d-9145-a20c30bc3a41.jpg"},
|
| 15 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771374024001454090/yande.png"},
|
| 16 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771376251931590747/Q0Vc8.png"}
|
| 17 |
+
]
|
gangbang.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://img2.gelbooru.com/samples/34/45/sample_34459111cb632e38a8c40ee942ddf843.jpg"},
|
| 3 |
+
{"url":"https://img2.gelbooru.com/images/31/e7/31e7c44931e7448f4181031594182ed9.jpg"},
|
| 4 |
+
{"url":"https://gelbooru.com/index.php?page=post&s=view&id=5596970&tags=multiple_penises"},
|
| 5 |
+
{"url":"https://img2.gelbooru.com/samples/13/6b/sample_136bed9dc6974c934f568bee7c441cc5.jpg"},
|
| 6 |
+
{"url":"https://img2.gelbooru.com/samples/4b/49/sample_4b493bd0e14ddc012799a72c41ebc1ec.jpg"},
|
| 7 |
+
{"url":"https://img2.gelbooru.com/samples/46/c7/sample_46c7279d81794bc2293fb8dcf1120ac6.jpg"},
|
| 8 |
+
{"url":"https://img2.gelbooru.com/images/1a/5f/1a5f18396a948fb86108de83967f29cb.jpg"},
|
| 9 |
+
{"url":"https://img2.gelbooru.com/images/d7/f9/d7f9aceb5c4250f689c5fca077726541.jpg"},
|
| 10 |
+
{"url":"https://img2.gelbooru.com/samples/a3/07/sample_a307112f00bcc7fa3596ffe2e54b8f42.jpg"},
|
| 11 |
+
{"url":"https://img2.gelbooru.com/images/62/f6/62f600e5ea118bdf1d1681e1e71bd852.jpg"},
|
| 12 |
+
{"url":"https://img2.gelbooru.com/images/62/f6/62f600e5ea118bdf1d1681e1e71bd852.jpg"},
|
| 13 |
+
{"url":"https://img2.gelbooru.com/images/9e/3a/9e3a87763750b8ebbbec5916da579656.jpg"},
|
| 14 |
+
{"url":"https://img2.gelbooru.com/images/6d/9f/6d9f279b25996efbaddb6416dc8235c6.jpg"},
|
| 15 |
+
{"url":"https://img2.gelbooru.com/images/c1/8b/c18bc5cb557d2c63662337bcff56db31.jpg"},
|
| 16 |
+
{"url":"https://img2.gelbooru.com/samples/0f/04/sample_0f04a7ee3ed4ca6885d079aeceeac64c.jpg"},
|
| 17 |
+
{"url":"https://img2.gelbooru.com/images/68/6f/686fc564acdda2858f0f4a032797ef4d.jpg"},
|
| 18 |
+
{"url":"https://img2.gelbooru.com/samples/8a/21/sample_8a21fe7e8c5327bf754e1182fd732095.jpg"},
|
| 19 |
+
{"url":"https://img2.gelbooru.com/samples/b9/66/sample_b9667235ff2c49c75d8cabdb2707785f.jpg"},
|
| 20 |
+
{"url":"https://img2.gelbooru.com/samples/bd/b3/sample_bdb3c0b983a300b78867aaa9b93f63de.jpg"},
|
| 21 |
+
{"url":"https://img2.gelbooru.com/samples/e6/ce/sample_e6ceaa105dea5fe9081cb52fdef92513.jpg"},
|
| 22 |
+
{"url":"https://img2.gelbooru.com/images/37/e8/37e882cbc065a8a1874bc99928cc14ea.jpg"},
|
| 23 |
+
{"url":"https://img2.gelbooru.com/samples/f1/c5/sample_f1c539235686301e85f943665d88fbdc.jpg"},
|
| 24 |
+
{"url":"https://img2.gelbooru.com/samples/32/69/sample_326944dacf4e9b71928280f7066aa253.jpg"},
|
| 25 |
+
{"url":"https://img2.gelbooru.com/samples/6a/0e/sample_6a0e8a07c06dfde5bd1fb5c633bbb59c.jpg"},
|
| 26 |
+
{"url":"https://img2.gelbooru.com/samples/fc/b8/sample_fcb8850246c8aef78eb4e3708eeaab88.jpg"},
|
| 27 |
+
{"url":"https://img2.gelbooru.com/samples/9d/4b/sample_9d4bfd4c996be28a7e54c12678a8c5e2.jpg"},
|
| 28 |
+
{"url":"https://img2.gelbooru.com/samples/e7/6e/sample_e76ee790a06401e7dc6809f3c9c7fc3b.jpg"},
|
| 29 |
+
{"url":"https://img2.gelbooru.com/samples/15/f7/sample_15f7245377fe7189dd7442990215bfea.jpg"},
|
| 30 |
+
{"url":"https://img2.gelbooru.com/images/b2/d0/b2d012e396290bdb4a8c11572cefe9bd.png"},
|
| 31 |
+
{"url":"https://img2.gelbooru.com/images/66/8d/668d9b9c2f30ec0146b53d9fbde021a5.jpg"},
|
| 32 |
+
{"url":"https://img2.gelbooru.com/images/64/83/64833a1ce79e5dc94f7328354ab0a2d7.jpg"},
|
| 33 |
+
{"url":"https://img2.gelbooru.com/samples/88/86/sample_8886c84620e6bf410323c83844556025.jpg"},
|
| 34 |
+
{"url":"https://img2.gelbooru.com/samples/6f/db/sample_6fdb557c345722bbd119a3961328079e.jpg"},
|
| 35 |
+
{"url":"https://img2.gelbooru.com/samples/17/e2/sample_17e217960c692674d0dc74f879c089af.jpg"},
|
| 36 |
+
{"url":"https://img2.gelbooru.com/samples/f4/13/sample_f413ad61e0ae6c07e36754781c06e646.jpg"},
|
| 37 |
+
{"url":"https://img2.gelbooru.com/samples/09/ac/sample_09ac8638fe88834bf6dbabc2ce550aee.jpg"},
|
| 38 |
+
{"url":"https://img2.gelbooru.com/samples/72/8d/sample_728dc0b49e5f051557ede4f47df9326c.jpg"},
|
| 39 |
+
{"url":"https://img2.gelbooru.com/images/4d/a1/4da1613bb4bd119e52e08bc38dd85fe0.jpg"},
|
| 40 |
+
{"url":"https://img2.gelbooru.com/samples/31/dc/sample_31dce5b51052cb58015bfcd645f45c8e.jpg"},
|
| 41 |
+
{"url":"https://img2.gelbooru.com/samples/f1/98/sample_f198f9f3e2d99eaa1bb034205369f2ae.jpg"},
|
| 42 |
+
{"url":"https://img2.gelbooru.com/samples/d5/75/sample_d575c6b47af35d91755c3cb6eb423d3f.jpg"},
|
| 43 |
+
{"url":"https://konachan.com/sample/8f46ff65ee4b208316a0c4bdcc989370/Konachan.com%20-%20317317%20sample.jpg"},
|
| 44 |
+
{"url":"https://konachan.com/sample/2b26ab530b7c6f015873004040e4ae60/Konachan.com%20-%20317285%20sample.jpg"},
|
| 45 |
+
{"url":"https://konachan.com/sample/2009598d749a5a111e61d5c65e3c757c/Konachan.com%20-%20317279%20sample.jpg"},
|
| 46 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770953743255470140/49feaec0-0192-449a-82b7-44b717d9d849.jpg"},
|
| 47 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770969329357160498/GIF_52.gif"},
|
| 48 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770983088888610826/1c6dc9b8-6e04-45fb-b78f-1aa741e98d2d.gif"},
|
| 49 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770986448329506846/3360-xWcGyI07i_A.jpg"},
|
| 50 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770986610749603861/3471-9vvJccyONJk.jpg"},
|
| 51 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987549363535902/16c691dc-bbbc-4c1c-b7e9-d1bc9f4c3d50.jpg"},
|
| 52 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988869780635688/3cfbdf1c-d533-4ba9-ab3d-ca49d2ac0b0a.gif"},
|
| 53 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770988991394611230/3a7d63407f9f5143517202feea7111fc.jpeg"},
|
| 54 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770989484657344512/lusciousnet_swimsuit_slave_949905045.jpg"},
|
| 55 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000856518721536/0500-JoBwW6kA3kk.jpg"},
|
| 56 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000963888316456/0503-yDlwnTv6si4.jpg"},
|
| 57 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001745924816896/0555-it84pW6ebn4.jpg"},
|
| 58 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002263976017940/603-mq77h7AVEfA.jpg"},
|
| 59 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002980522655755/0663-d87YM3v4VjE.jpg"},
|
| 60 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016785435688960/1721-Thyo_5A5g9I.jpg"},
|
| 61 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016825914916894/1725-XhHmtbknnmQ.jpg"},
|
| 62 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771030693425053726/382f3175-dcff-439c-89fb-309ed04d52fd.jpg"}
|
| 63 |
+
]
|
gifs.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://media.discordapp.net/attachments/531827568966631425/637014480550756373/image0.gif"},
|
| 3 |
+
{"url":"https://media.discordapp.net/attachments/531827568966631425/616189280141967360/lusciousnet_lusciousnet_bondage-girls-in-shackles_pervifycom_2034258317.gif"},
|
| 4 |
+
{"url":"https://media.discordapp.net/attachments/531827568966631425/581689350186860556/MMfgQRb.gif"},
|
| 5 |
+
{"url":"https://media.discordapp.net/attachments/531827568966631425/581689349398069269/Stuff_celestine-lucullus-x-kuroinu-kedakaki-seijo-wa-hakudaku-ni-somaru.gif"},
|
| 6 |
+
{"url":"https://media.discordapp.net/attachments/531827568966631425/581689348421058562/Celestine_Lucullus_1.gif"},
|
| 7 |
+
{"url":"https://media.discordapp.net/attachments/531827568966631425/548738271677644810/Random_hentai_gifNB_0149.gif"},
|
| 8 |
+
{"url":"https://media.discordapp.net/attachments/531827568966631425/540141232861478922/3079f0822bbb2c9e081cff22f3758363.gif"},
|
| 9 |
+
{"url":"https://media.discordapp.net/attachments/531827568966631425/539913500722724864/cf2646eee9d96c3a1ae8d46bd064da82.png"},
|
| 10 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/570389741057474574/96239a44f0f892d8157534ad7e6600bf.gif"},
|
| 11 |
+
{"url":"https://media.discordapp.net/attachments/527959391446761473/569504025247088672/7660786.gif"},
|
| 12 |
+
{"url":"https://img2.gelbooru.com/images/58/84/5884712c96853976f412f41ce0f12bb8.gif"},
|
| 13 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770966727809957888/kiryuuin_satsuki_and_matoi_ryuuko_kill_la_kill_drawn_by_bard_bot__489699ca07075ac0c56963fc3e28990d.gif"},
|
| 14 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770967592713060392/71ada0ef-dc37-4367-8253-1454dab2fa4a.gif"},
|
| 15 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770967946528161822/18165929.gif"},
|
| 16 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770968720154951680/animeblog.ru___155.gif"},
|
| 17 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770969248158711848/f292a76d28577acf284a8c834b008105.gif"},
|
| 18 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771015267542237184/672ca21e0596157bbbbb0f69a3614750.gif"},
|
| 19 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771024612367532082/37dab8ee-32fb-4430-b546-e78cef14ba41.gif"},
|
| 20 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771796761131352064/WhichAbleCoyote-mobile.gif"},
|
| 21 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771796813165494292/TestyIgnorantGalapagosmockingbird-mobile.gif"},
|
| 22 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771800866159722499/RevolvingForcefulAddax-mobile.gif"},
|
| 23 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771800877047873556/ReasonableLegitimateBuzzard-mobile.gif"},
|
| 24 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771800894765006859/ImmaculateFlawlessBlesbok-mobile.gif"},
|
| 25 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771800904756101180/IdleLittleArieltoucan-mobile.gif"},
|
| 26 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771800911446147072/HomelyAntiqueEmperorpenguin-mobile.gif"},
|
| 27 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771800923998781440/FirmFlawedCentipede-mobile.gif"},
|
| 28 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771800934144933958/DelayedSlowDamselfly-mobile.gif"},
|
| 29 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771800955855044668/CoordinatedSlipperyAcornwoodpecker-mobile.gif"}
|
| 30 |
+
]
|
glasses.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/694944530285199440/image0-2.jpg"},
|
| 3 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/704130759199293580/image0.png"},
|
| 4 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/603283581002842155/image0.jpg"},
|
| 5 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/634877730416099336/image0.jpg"},
|
| 6 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/589496991852265532/D34mtWJUYAAg70m_large.jpg"},
|
| 7 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/603283662460682243/image0.png"},
|
| 8 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/603283591161446402/image0.jpg"},
|
| 9 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/627289213662003200/70287451_p0_master1200.jpg"},
|
| 10 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/589497115353546752/DzodToGUUAUpHlS_large.jpg"},
|
| 11 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/590654270936711179/hitsujigaoka_nemu_gankutsu_sou_no_fuyajou_san_drawn_by_nitro_mugityaoisii__sample-50086066f2632d8de6.jpg"},
|
| 12 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/737046330647773294/illust_83251610_20200726_133858.png"},
|
| 13 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/707412081095344138/image0.jpg"},
|
| 14 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/631301414542639116/image0.jpg"},
|
| 15 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/669270831016443924/76563936_p0_master1200.png"},
|
| 16 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/704805820256485523/image0.jpg"},
|
| 17 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/589498132828520468/Dzse-h9VAAAzELR_large.jpg"},
|
| 18 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/589497137658724362/DznW-CgUYAAk5Vg_large.jpg"},
|
| 19 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/718175932602515557/illust_82084629_20200604_115318.jpg"},
|
| 20 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/636752505388400670/image0.jpg"},
|
| 21 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/603283674477363280/image0.jpg"},
|
| 22 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/603283604054868001/image0.png"},
|
| 23 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/668468590181089280/155_mar_e04_03.png"},
|
| 24 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/606821723668611083/image0.jpg"},
|
| 25 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/652578306658533376/8455b06ca3b211bf821c741eb502ed5e.jpg"},
|
| 26 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/626878949992955929/3068bce1548e2f9de29d37afc6ba6571_01C9VVDA5ZJA2K41XT5G8ZQ55Z.640x0.jpg"},
|
| 27 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/637296463709208586/image0.jpg"},
|
| 28 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/638471226087440393/image0.jpg"},
|
| 29 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/594866567788101654/illust_70464839_20190626_225617.png"},
|
| 30 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/652578219794497547/8eef3837087c9944f37ad27b7e0115ba.jpeg"},
|
| 31 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/719469938154143785/illust_74759514_20200608_011759.png"},
|
| 32 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/636750057076686871/image0.png"},
|
| 33 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/590654250468507707/mash_kyrielight_fate_grand_order_and_etc_drawn_by_uguisu_kagura__edf776eb552730b0c936c7ee51a14225.jpg"},
|
| 34 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/590654280076230704/thompson_submachine_gun_girls_frontline_drawn_by_take_trude1945oneetyan__sample-01fb97622066360dd20a.jpg"},
|
| 35 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/603283587982164009/image0.jpg"},
|
| 36 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/631678867932839936/girls-with-guns-01112018-06.jpg"},
|
| 37 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/706540746651729980/I9ywLzxfXcagS_2t4X10EHg1KxjrErStzgu3-doVIJ4.png"},
|
| 38 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/669270727232323584/78249151_p0_master1200.png"},
|
| 39 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/590654263324180520/bb_and_bb_fate_grand_order_and_etc_drawn_by_michael_r__sample-ea83c48d614d56429b02987f500924cb.jpg"},
|
| 40 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/617774863549202479/image0.jpg"},
|
| 41 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/668489652646182988/78507501_p0_master1200.png"},
|
| 42 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/634877731720658956/image8.jpg"},
|
| 43 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/737871875048472576/illust_83289281_20200728_201909.png"},
|
| 44 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/627289247933661184/70802989_p0_master1200.jpg"},
|
| 45 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/634877729803862041/image6.jpg"},
|
| 46 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/627289251981033473/53806164_p0_master1200.jpg"},
|
| 47 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/669270455169056778/78238187_p0_master1200.png"},
|
| 48 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/636750060356370433/image0.jpg"},
|
| 49 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/707407235609002054/image0.jpg"},
|
| 50 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/634877729283506186/image7.jpg"},
|
| 51 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/771269079029776394/illust_84539103_20201029_000743.png"},
|
| 52 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/769038451717701662/image0.jpg"},
|
| 53 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/589498132438712330/DzqqfOMVAAA76W3_large.jpg"},
|
| 54 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/636746176993165323/image0.jpg"},
|
| 55 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/615581457733124096/image0.jpg"},
|
| 56 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/627289233572233217/68282091_p0_master1200.jpg"},
|
| 57 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/603283626225827900/image0.jpg"},
|
| 58 |
+
{"url":"https://media.discordapp.net/attachments/556959468252954634/706739518522523658/image0.jpg"}
|
| 59 |
+
]
|
gpthistory.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{}
|
handler.js
ADDED
|
@@ -0,0 +1,1408 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import chalk from 'chalk'
|
| 2 |
+
import { format } from 'util'
|
| 3 |
+
import path, { join } from 'path'
|
| 4 |
+
import { fileURLToPath } from 'url'
|
| 5 |
+
import fetch from 'node-fetch'
|
| 6 |
+
import { smsg } from './lib/simple.js'
|
| 7 |
+
import { unwatchFile, watchFile } from 'fs'
|
| 8 |
+
|
| 9 |
+
const { proto } = (await import('@adiwajshing/baileys')).default
|
| 10 |
+
const isNumber = x => typeof x === 'number' && !isNaN(x)
|
| 11 |
+
const delay = ms => isNumber(ms) && new Promise(resolve => setTimeout(function () {
|
| 12 |
+
clearTimeout(this)
|
| 13 |
+
resolve()
|
| 14 |
+
}, ms))
|
| 15 |
+
|
| 16 |
+
export async function handler(chatUpdate) {
|
| 17 |
+
this.msgqueue = this.msgqueue || []
|
| 18 |
+
if (!chatUpdate) return
|
| 19 |
+
this.pushMessage(chatUpdate.messages).catch(console.error)
|
| 20 |
+
let m = chatUpdate.messages[chatUpdate.messages.length - 1]
|
| 21 |
+
if (!m)
|
| 22 |
+
return
|
| 23 |
+
if (global.db.data == null)
|
| 24 |
+
await global.loadDatabase()
|
| 25 |
+
try {
|
| 26 |
+
m = smsg(this, m) || m
|
| 27 |
+
if (!m)
|
| 28 |
+
return
|
| 29 |
+
m.exp = 0
|
| 30 |
+
m.limit = false
|
| 31 |
+
try {
|
| 32 |
+
let user = global.db.data.users[m.sender]
|
| 33 |
+
if (typeof user !== "object")
|
| 34 |
+
global.db.data.users[m.sender] = {}
|
| 35 |
+
if (user) {
|
| 36 |
+
if (!("BannedReason" in user)) user.BannedReason = ""
|
| 37 |
+
if (!("Banneduser" in user)) user.Banneduser = false
|
| 38 |
+
if (!("afkReason" in user)) user.afkReason = ""
|
| 39 |
+
if (!("autolevelup" in user)) user.autolevelup = true
|
| 40 |
+
if (!("banned" in user)) user.banned = false
|
| 41 |
+
//if (!('stiker' in chat)) chat.stiker = false
|
| 42 |
+
if (!("catatan" in user)) user.catatan = ""
|
| 43 |
+
if (!("job" in user)) user.job = ""
|
| 44 |
+
if (!("kingdom" in user)) user.kingdom = true
|
| 45 |
+
if (!("misi" in user)) user.misi = ""
|
| 46 |
+
if (!("pasangan" in user)) user.pasangan = ""
|
| 47 |
+
if (!("premium" in user)) user.premium = false
|
| 48 |
+
if (!("registered" in user)) user.registered = false
|
| 49 |
+
if (!("role" in user)) user.role = "Beginner"
|
| 50 |
+
if (!("sewa" in user)) user.sewa = false
|
| 51 |
+
if (!("skill" in user)) user.skill = ""
|
| 52 |
+
if (!("title" in user)) user.title = ""
|
| 53 |
+
|
| 54 |
+
if (!user.registered) {
|
| 55 |
+
if (!("name" in user)) user.name = m.name
|
| 56 |
+
if (!isNumber(user.age)) user.age = -1
|
| 57 |
+
if (!isNumber(user.anggur)) user.anggur = 0
|
| 58 |
+
if (!isNumber(user.apel)) user.apel = 0
|
| 59 |
+
if (!isNumber(user.bibitanggur)) user.bibitanggur = 0
|
| 60 |
+
if (!isNumber(user.bibitapel)) user.bibitapel = 0
|
| 61 |
+
if (!isNumber(user.bibitjeruk)) user.bibitjeruk = 0
|
| 62 |
+
if (!isNumber(user.bibitmangga)) user.bibitmangga = 0
|
| 63 |
+
if (!isNumber(user.bibitpisang)) user.bibitpisang = 0
|
| 64 |
+
if (!isNumber(user.emas)) user.emas = 0
|
| 65 |
+
if (!isNumber(user.jeruk)) user.jeruk = 0
|
| 66 |
+
if (!isNumber(user.kayu)) user.kayu = 0
|
| 67 |
+
if (!isNumber(user.makanan)) user.makanan = 0
|
| 68 |
+
if (!isNumber(user.mangga)) user.mangga = 0
|
| 69 |
+
if (!isNumber(user.pisang)) user.pisang = 0
|
| 70 |
+
if (!isNumber(user.premiumDate)) user.premiumDate = -1
|
| 71 |
+
if (!isNumber(user.regTime)) user.regTime = -1
|
| 72 |
+
if (!isNumber(user.semangka)) user.semangka = 0
|
| 73 |
+
if (!isNumber(user.stroberi)) user.stroberi = 0
|
| 74 |
+
}
|
| 75 |
+
if (!isNumber(user.counterPrivate)) user.counterPrivate = 0
|
| 76 |
+
|
| 77 |
+
if (!isNumber(user.afk)) user.afk = -1
|
| 78 |
+
if (!isNumber(user.agility)) user.agility = 0
|
| 79 |
+
if (!isNumber(user.anakanjing)) user.anakanjing = 0
|
| 80 |
+
if (!isNumber(user.anakcentaur)) user.anakcentaur = 0
|
| 81 |
+
if (!isNumber(user.anakgriffin)) user.anakgriffin = 0
|
| 82 |
+
if (!isNumber(user.balance)) user.balance = 0
|
| 83 |
+
if (!isNumber(user.anakkucing)) user.anakkucing = 0
|
| 84 |
+
if (!isNumber(user.anakkuda)) user.anakkuda = 0
|
| 85 |
+
if (!isNumber(user.anakkyubi)) user.anakkyubi = 0
|
| 86 |
+
if (!isNumber(user.anaknaga)) user.anaknaga = 0
|
| 87 |
+
if (!isNumber(user.anakpancingan)) user.anakpancingan = 0
|
| 88 |
+
if (!isNumber(user.anakphonix)) user.anakphonix = 0
|
| 89 |
+
if (!isNumber(user.anakrubah)) user.anakrubah = 0
|
| 90 |
+
if (!isNumber(user.anakserigala)) user.anakserigala = 0
|
| 91 |
+
if (!isNumber(user.anggur)) user.anggur = 0
|
| 92 |
+
if (!isNumber(user.anjing)) user.anjing = 0
|
| 93 |
+
if (!isNumber(user.anjinglastclaim)) user.anjinglastclaim = 0
|
| 94 |
+
if (!isNumber(user.antispam)) user.antispam = 0
|
| 95 |
+
if (!isNumber(user.antispamlastclaim)) user.antispamlastclaim = 0
|
| 96 |
+
if (!isNumber(user.apel)) user.apel = 0
|
| 97 |
+
if (!isNumber(user.aqua)) user.aqua = 0
|
| 98 |
+
if (!isNumber(user.arc)) user.arc = 0
|
| 99 |
+
if (!isNumber(user.arcdurability)) user.arcdurability = 0
|
| 100 |
+
if (!isNumber(user.arlok)) user.arlok = 0
|
| 101 |
+
if (!isNumber(user.armor)) user.armor = 0
|
| 102 |
+
if (!isNumber(user.armordurability)) user.armordurability = 0
|
| 103 |
+
if (!isNumber(user.armormonster)) user.armormonster = 0
|
| 104 |
+
if (!isNumber(user.as)) user.as = 0
|
| 105 |
+
if (!isNumber(user.atm)) user.atm = 0
|
| 106 |
+
if (!isNumber(user.axe)) user.axe = 0
|
| 107 |
+
if (!isNumber(user.axedurability)) user.axedurability = 0
|
| 108 |
+
if (!isNumber(user.ayam)) user.ayam = 0
|
| 109 |
+
if (!isNumber(user.ayamb)) user.ayamb = 0
|
| 110 |
+
if (!isNumber(user.ayambakar)) user.ayambakar = 0
|
| 111 |
+
if (!isNumber(user.ayamg)) user.ayamg = 0
|
| 112 |
+
if (!isNumber(user.ayamgoreng)) user.ayamgoreng = 0
|
| 113 |
+
if (!isNumber(user.babi)) user.babi = 0
|
| 114 |
+
if (!isNumber(user.babihutan)) user.babihutan = 0
|
| 115 |
+
if (!isNumber(user.babipanggang)) user.babipanggang = 0
|
| 116 |
+
if (!isNumber(user.bandage)) user.bandage = 0
|
| 117 |
+
if (!isNumber(user.bank)) user.bank = 0
|
| 118 |
+
if (!isNumber(user.banteng)) user.banteng = 0
|
| 119 |
+
if (!isNumber(user.batu)) user.batu = 0
|
| 120 |
+
if (!isNumber(user.bawal)) user.bawal = 0
|
| 121 |
+
if (!isNumber(user.bawalbakar)) user.bawalbakar = 0
|
| 122 |
+
if (!isNumber(user.bayam)) user.bayam = 0
|
| 123 |
+
if (!isNumber(user.berlian)) user.berlian = 10
|
| 124 |
+
if (!isNumber(user.bibitanggur)) user.bibitanggur = 0
|
| 125 |
+
if (!isNumber(user.bibitapel)) user.bibitapel = 0
|
| 126 |
+
if (!isNumber(user.bibitjeruk)) user.bibitjeruk = 0
|
| 127 |
+
if (!isNumber(user.bibitmangga)) user.bibitmangga = 0
|
| 128 |
+
if (!isNumber(user.bibitpisang)) user.bibitpisang = 0
|
| 129 |
+
if (!isNumber(user.botol)) user.botol = 0
|
| 130 |
+
if (!isNumber(user.bow)) user.bow = 0
|
| 131 |
+
if (!isNumber(user.bowdurability)) user.bowdurability = 0
|
| 132 |
+
if (!isNumber(user.boxs)) user.boxs = 0
|
| 133 |
+
if (!isNumber(user.brick)) user.brick = 0
|
| 134 |
+
if (!isNumber(user.brokoli)) user.brokoli = 0
|
| 135 |
+
if (!isNumber(user.buaya)) user.buaya = 0
|
| 136 |
+
if (!isNumber(user.buntal)) user.buntal = 0
|
| 137 |
+
if (!isNumber(user.cat)) user.cat = 0
|
| 138 |
+
if (!isNumber(user.catexp)) user.catexp = 0
|
| 139 |
+
if (!isNumber(user.catlastfeed)) user.catlastfeed = 0
|
| 140 |
+
if (!isNumber(user.centaur)) user.centaur = 0
|
| 141 |
+
if (!isNumber(user.centaurexp)) user.centaurexp = 0
|
| 142 |
+
if (!isNumber(user.centaurlastclaim)) user.centaurlastclaim = 0
|
| 143 |
+
if (!isNumber(user.centaurlastfeed)) user.centaurlastfeed = 0
|
| 144 |
+
if (!isNumber(user.clay)) user.clay = 0
|
| 145 |
+
if (!isNumber(user.coal)) user.coal = 0
|
| 146 |
+
if (!isNumber(user.coin)) user.coin = 0
|
| 147 |
+
if (!isNumber(user.common)) user.common = 0
|
| 148 |
+
if (!isNumber(user.crystal)) user.crystal = 0
|
| 149 |
+
if (!isNumber(user.cumi)) user.cumi = 0
|
| 150 |
+
if (!isNumber(user.cupon)) user.cupon = 0
|
| 151 |
+
if (!isNumber(user.diamond)) user.diamond = 0
|
| 152 |
+
if (!isNumber(user.dog)) user.dog = 0
|
| 153 |
+
if (!isNumber(user.dogexp)) user.dogexp = 0
|
| 154 |
+
if (!isNumber(user.doglastfeed)) user.doglastfeed = 0
|
| 155 |
+
if (!isNumber(user.dory)) user.dory = 0
|
| 156 |
+
if (!isNumber(user.dragon)) user.dragon = 0
|
| 157 |
+
if (!isNumber(user.dragonexp)) user.dragonexp = 0
|
| 158 |
+
if (!isNumber(user.dragonlastfeed)) user.dragonlastfeed = 0
|
| 159 |
+
if (!isNumber(user.emas)) user.emas = 0
|
| 160 |
+
if (!isNumber(user.emerald)) user.emerald = 0
|
| 161 |
+
if (!isNumber(user.enchant)) user.enchant = 0
|
| 162 |
+
if (!isNumber(user.esteh)) user.esteh = 0
|
| 163 |
+
if (!isNumber(user.exp)) user.exp = 0
|
| 164 |
+
if (!isNumber(user.expg)) user.expg = 0
|
| 165 |
+
if (!isNumber(user.exphero)) user.exphero = 0
|
| 166 |
+
if (!isNumber(user.fishingrod)) user.fishingrod = 0
|
| 167 |
+
if (!isNumber(user.fishingroddurability)) user.fishingroddurability = 0
|
| 168 |
+
if (!isNumber(user.fortress)) user.fortress = 0
|
| 169 |
+
if (!isNumber(user.fox)) user.fox = 0
|
| 170 |
+
if (!isNumber(user.foxexp)) user.foxexp = 0
|
| 171 |
+
if (!isNumber(user.foxlastfeed)) user.foxlastfeed = 0
|
| 172 |
+
if (!isNumber(user.fullatm)) user.fullatm = Infinity
|
| 173 |
+
if (!isNumber(user.gadodado)) user.gadodado = 0
|
| 174 |
+
if (!isNumber(user.gajah)) user.gajah = 0
|
| 175 |
+
if (!isNumber(user.gamemines)) user.gamemines = false
|
| 176 |
+
if (!isNumber(user.ganja)) user.ganja = 0
|
| 177 |
+
if (!isNumber(user.gardenboxs)) user.gardenboxs = 0
|
| 178 |
+
if (!isNumber(user.gems)) user.gems = 0
|
| 179 |
+
if (!isNumber(user.glass)) user.glass = 0
|
| 180 |
+
if (!isNumber(user.glimit)) user.glimit = 20
|
| 181 |
+
if (!isNumber(user.glory)) user.glory = 0
|
| 182 |
+
if (!isNumber(user.gold)) user.gold = 0
|
| 183 |
+
if (!isNumber(user.griffin)) user.griffin = 0
|
| 184 |
+
if (!isNumber(user.griffinexp)) user.griffinexp = 0
|
| 185 |
+
if (!isNumber(user.griffinlastclaim)) user.griffinlastclaim = 0
|
| 186 |
+
if (!isNumber(user.griffinlastfeed)) user.griffinlastfeed = 0
|
| 187 |
+
if (!isNumber(user.gulai)) user.gulai = 0
|
| 188 |
+
if (!isNumber(user.gurita)) user.gurita = 0
|
| 189 |
+
if (!isNumber(user.harimau)) user.harimau = 0
|
| 190 |
+
if (!isNumber(user.haus)) user.haus = 100
|
| 191 |
+
if (!isNumber(user.healt)) user.healt = 100
|
| 192 |
+
if (!isNumber(user.health)) user.health = 100
|
| 193 |
+
if (!isNumber(user.healthmonster)) user.healthmonster = 0
|
| 194 |
+
if (!isNumber(user.healtmonster)) user.healtmonster = 0
|
| 195 |
+
if (!isNumber(user.hero)) user.hero = 1
|
| 196 |
+
if (!isNumber(user.herolastclaim)) user.herolastclaim = 0
|
| 197 |
+
if (!isNumber(user.hiu)) user.hiu = 0
|
| 198 |
+
if (!isNumber(user.horse)) user.horse = 0
|
| 199 |
+
if (!isNumber(user.horseexp)) user.horseexp = 0
|
| 200 |
+
if (!isNumber(user.horselastfeed)) user.horselastfeed = 0
|
| 201 |
+
if (!isNumber(user.ikan)) user.ikan = 0
|
| 202 |
+
if (!isNumber(user.ikanbakar)) user.ikanbakar = 0
|
| 203 |
+
if (!isNumber(user.intelligence)) user.intelligence = 0
|
| 204 |
+
if (!isNumber(user.iron)) user.iron = 0
|
| 205 |
+
if (!isNumber(user.jagung)) user.jagung = 0
|
| 206 |
+
if (!isNumber(user.jagungbakar)) user.jagungbakar = 0
|
| 207 |
+
if (!isNumber(user.jeruk)) user.jeruk = 0
|
| 208 |
+
if (!isNumber(user.joinlimit)) user.joinlimit = 1
|
| 209 |
+
if (!isNumber(user.judilast)) user.judilast = 0
|
| 210 |
+
if (!isNumber(user.kaleng)) user.kaleng = 0
|
| 211 |
+
if (!isNumber(user.kambing)) user.kambing = 0
|
| 212 |
+
if (!isNumber(user.kangkung)) user.kangkung = 0
|
| 213 |
+
if (!isNumber(user.kapak)) user.kapak = 0
|
| 214 |
+
if (!isNumber(user.kardus)) user.kardus = 0
|
| 215 |
+
if (!isNumber(user.katana)) user.katana = 0
|
| 216 |
+
if (!isNumber(user.katanadurability)) user.katanadurability = 0
|
| 217 |
+
if (!isNumber(user.kayu)) user.kayu = 0
|
| 218 |
+
if (!isNumber(user.kentang)) user.kentang = 0
|
| 219 |
+
if (!isNumber(user.kentanggoreng)) user.kentanggoreng = 0
|
| 220 |
+
if (!isNumber(user.kepiting)) user.kepiting = 0
|
| 221 |
+
if (!isNumber(user.kepitingbakar)) user.kepitingbakar = 0
|
| 222 |
+
if (!isNumber(user.kerbau)) user.kerbau = 0
|
| 223 |
+
if (!isNumber(user.kerjadelapan)) user.kerjadelapan = 0
|
| 224 |
+
if (!isNumber(user.kerjadelapanbelas)) user.kerjadelapanbelas = 0
|
| 225 |
+
if (!isNumber(user.kerjadua)) user.kerjadua = 0
|
| 226 |
+
if (!isNumber(user.kerjaduabelas)) user.kerjaduabelas = 0
|
| 227 |
+
if (!isNumber(user.kerjaduadelapan)) user.kerjaduadelapan = 0
|
| 228 |
+
if (!isNumber(user.kerjaduadua)) user.kerjaduadua = 0
|
| 229 |
+
if (!isNumber(user.kerjaduaempat)) user.kerjaduaempat = 0
|
| 230 |
+
if (!isNumber(user.kerjaduaenam)) user.kerjaduaenam = 0
|
| 231 |
+
if (!isNumber(user.kerjadualima)) user.kerjadualima = 0
|
| 232 |
+
if (!isNumber(user.kerjaduapuluh)) user.kerjaduapuluh = 0
|
| 233 |
+
if (!isNumber(user.kerjaduasatu)) user.kerjaduasatu = 0
|
| 234 |
+
if (!isNumber(user.kerjaduasembilan)) user.kerjaduasembilan = 0
|
| 235 |
+
if (!isNumber(user.kerjaduatiga)) user.kerjaduatiga = 0
|
| 236 |
+
if (!isNumber(user.kerjaduatujuh)) user.kerjaduatujuh = 0
|
| 237 |
+
if (!isNumber(user.kerjaempat)) user.kerjaempat = 0
|
| 238 |
+
if (!isNumber(user.kerjaempatbelas)) user.kerjaempatbelas = 0
|
| 239 |
+
if (!isNumber(user.kerjaenam)) user.kerjaenam = 0
|
| 240 |
+
if (!isNumber(user.kerjaenambelas)) user.kerjaenambelas = 0
|
| 241 |
+
if (!isNumber(user.kerjalima)) user.kerjalima = 0
|
| 242 |
+
if (!isNumber(user.kerjalimabelas)) user.kerjalimabelas = 0
|
| 243 |
+
if (!isNumber(user.kerjasatu)) user.kerjasatu = 0
|
| 244 |
+
if (!isNumber(user.kerjasebelas)) user.kerjasebelas = 0
|
| 245 |
+
if (!isNumber(user.kerjasembilan)) user.kerjasembilan = 0
|
| 246 |
+
if (!isNumber(user.kerjasembilanbelas)) user.kerjasembilanbelas = 0
|
| 247 |
+
if (!isNumber(user.kerjasepuluh)) user.kerjasepuluh = 0
|
| 248 |
+
if (!isNumber(user.kerjatiga)) user.kerjatiga = 0
|
| 249 |
+
if (!isNumber(user.kerjatigabelas)) user.kerjatigabelas = 0
|
| 250 |
+
if (!isNumber(user.kerjatigapuluh)) user.kerjatigapuluh = 0
|
| 251 |
+
if (!isNumber(user.kerjatujuh)) user.kerjatujuh = 0
|
| 252 |
+
if (!isNumber(user.kerjatujuhbelas)) user.kerjatujuhbelas = 0
|
| 253 |
+
if (!isNumber(user.korbanngocok)) user.korbanngocok = 0
|
| 254 |
+
if (!isNumber(user.kubis)) user.kubis = 0
|
| 255 |
+
if (!isNumber(user.kucing)) user.kucing = 0
|
| 256 |
+
if (!isNumber(user.kucinglastclaim)) user.kucinglastclaim = 0
|
| 257 |
+
if (!isNumber(user.kuda)) user.kuda = 0
|
| 258 |
+
if (!isNumber(user.kudalastclaim)) user.kudalastclaim = 0
|
| 259 |
+
if (!isNumber(user.kyubi)) user.kyubi = 0
|
| 260 |
+
if (!isNumber(user.kyubiexp)) user.kyubiexp = 0
|
| 261 |
+
if (!isNumber(user.kyubilastclaim)) user.kyubilastclaim = 0
|
| 262 |
+
if (!isNumber(user.kyubilastfeed)) user.kyubilastfeed = 0
|
| 263 |
+
if (!isNumber(user.labu)) user.labu = 0
|
| 264 |
+
if (!isNumber(user.laper)) user.laper = 100
|
| 265 |
+
if (!isNumber(user.lastadventure)) user.lastadventure = 0
|
| 266 |
+
if (!isNumber(user.lastbansos)) user.lastbansos = 0
|
| 267 |
+
if (!isNumber(user.lastberbru)) user.lastberbru = 0
|
| 268 |
+
if (!isNumber(user.lastberkebon)) user.lastberkebon = 0
|
| 269 |
+
if (!isNumber(user.lastbunga)) user.lastbunga = 0
|
| 270 |
+
if (!isNumber(user.lastbunuhi)) user.lastbunuhi = 0
|
| 271 |
+
if (!isNumber(user.lastclaim)) user.lastclaim = 0
|
| 272 |
+
if (!isNumber(user.lastcode)) user.lastcode = 0
|
| 273 |
+
if (!isNumber(user.lastcodereg)) user.lastcodereg = 0
|
| 274 |
+
if (!isNumber(user.lastcrusade)) user.lastcrusade = 0
|
| 275 |
+
if (!isNumber(user.lastdagang)) user.lastdagang = 0
|
| 276 |
+
if (!isNumber(user.lastduel)) user.lastduel = 0
|
| 277 |
+
if (!isNumber(user.lastdungeon)) user.lastdungeon = 0
|
| 278 |
+
if (!isNumber(user.lasteasy)) user.lasteasy = 0
|
| 279 |
+
if (!isNumber(user.lastfight)) user.lastfight = 0
|
| 280 |
+
if (!isNumber(user.lastfishing)) user.lastfishing = 0
|
| 281 |
+
if (!isNumber(user.lastgift)) user.lastgift = 0
|
| 282 |
+
if (!isNumber(user.lastgojek)) user.lastgojek = 0
|
| 283 |
+
if (!isNumber(user.lastgrab)) user.lastgrab = 0
|
| 284 |
+
if (!isNumber(user.lasthourly)) user.lasthourly = 0
|
| 285 |
+
if (!isNumber(user.lasthunt)) user.lasthunt = 0
|
| 286 |
+
if (!isNumber(user.lastIstigfar)) user.lastIstigfar = 0
|
| 287 |
+
if (!isNumber(user.lastjb)) user.lastjb = 0
|
| 288 |
+
if (!isNumber(user.lastkill)) user.lastkill = 0
|
| 289 |
+
if (!isNumber(user.lastlink)) user.lastlink = 0
|
| 290 |
+
if (!isNumber(user.lastlumber)) user.lastlumber = 0
|
| 291 |
+
if (!isNumber(user.lastmancingeasy)) user.lastmancingeasy = 0
|
| 292 |
+
if (!isNumber(user.lastmancingextreme)) user.lastmancingextreme = 0
|
| 293 |
+
if (!isNumber(user.lastmancinghard)) user.lastmancinghard = 0
|
| 294 |
+
if (!isNumber(user.lastmancingnormal)) user.lastmancingnormal = 0
|
| 295 |
+
if (!isNumber(user.lastmining)) user.lastmining = 0
|
| 296 |
+
if (!isNumber(user.lastmisi)) user.lastmisi = 0
|
| 297 |
+
if (!isNumber(user.lastmonthly)) user.lastmonthly = 0
|
| 298 |
+
if (!isNumber(user.lastmulung)) user.lastmulung = 0
|
| 299 |
+
if (!isNumber(user.lastnambang)) user.lastnambang = 0
|
| 300 |
+
if (!isNumber(user.lastnebang)) user.lastnebang = 0
|
| 301 |
+
if (!isNumber(user.lastngocok)) user.lastngocok = 0
|
| 302 |
+
if (!isNumber(user.lastngojek)) user.lastngojek = 0
|
| 303 |
+
if (!isNumber(user.lastopen)) user.lastopen = 0
|
| 304 |
+
if (!isNumber(user.lastpekerjaan)) user.lastpekerjaan = 0
|
| 305 |
+
if (!isNumber(user.lastpotionclaim)) user.lastpotionclaim = 0
|
| 306 |
+
if (!isNumber(user.lastrampok)) user.lastrampok = 0
|
| 307 |
+
if (!isNumber(user.lastramuanclaim)) user.lastramuanclaim = 0
|
| 308 |
+
if (!isNumber(user.lastrob)) user.lastrob = 0
|
| 309 |
+
if (!isNumber(user.lastroket)) user.lastroket = 0
|
| 310 |
+
if (!isNumber(user.lastsda)) user.lastsda = 0
|
| 311 |
+
if (!isNumber(user.lastseen)) user.lastseen = 0
|
| 312 |
+
if (!isNumber(user.lastSetStatus)) user.lastSetStatus = 0
|
| 313 |
+
if (!isNumber(user.lastsironclaim)) user.lastsironclaim = 0
|
| 314 |
+
if (!isNumber(user.lastsmancingclaim)) user.lastsmancingclaim = 0
|
| 315 |
+
if (!isNumber(user.laststringclaim)) user.laststringclaim = 0
|
| 316 |
+
if (!isNumber(user.lastswordclaim)) user.lastswordclaim = 0
|
| 317 |
+
if (!isNumber(user.lastturu)) user.lastturu = 0
|
| 318 |
+
if (!isNumber(user.lastwar)) user.lastwar = 0
|
| 319 |
+
if (!isNumber(user.lastwarpet)) user.lastwarpet = 0
|
| 320 |
+
if (!isNumber(user.lastweaponclaim)) user.lastweaponclaim = 0
|
| 321 |
+
if (!isNumber(user.lastweekly)) user.lastweekly = 0
|
| 322 |
+
if (!isNumber(user.lastwork)) user.lastwork = 0
|
| 323 |
+
if (!isNumber(user.legendary)) user.legendary = 0
|
| 324 |
+
if (!isNumber(user.lele)) user.lele = 0
|
| 325 |
+
if (!isNumber(user.leleb)) user.leleb = 0
|
| 326 |
+
if (!isNumber(user.lelebakar)) user.lelebakar = 0
|
| 327 |
+
if (!isNumber(user.leleg)) user.leleg = 0
|
| 328 |
+
if (!isNumber(user.level)) user.level = 0
|
| 329 |
+
if (!isNumber(user.limit)) user.limit = 10
|
| 330 |
+
if (!isNumber(user.limitjoinfree)) user.limitjoinfree = 1
|
| 331 |
+
if (!isNumber(user.lion)) user.lion = 0
|
| 332 |
+
if (!isNumber(user.lionexp)) user.lionexp = 0
|
| 333 |
+
if (!isNumber(user.lionlastfeed)) user.lionlastfeed = 0
|
| 334 |
+
if (!isNumber(user.lobster)) user.lobster = 0
|
| 335 |
+
if (!isNumber(user.lumba)) user.lumba = 0
|
| 336 |
+
if (!isNumber(user.magicwand)) user.magicwand = 0
|
| 337 |
+
if (!isNumber(user.magicwanddurability)) user.magicwanddurability = 0
|
| 338 |
+
if (!isNumber(user.makanancentaur)) user.makanancentaur = 0
|
| 339 |
+
if (!isNumber(user.makanangriffin)) user.makanangriffin = 0
|
| 340 |
+
if (!isNumber(user.makanankyubi)) user.makanankyubi = 0
|
| 341 |
+
if (!isNumber(user.makanannaga)) user.makanannaga = 0
|
| 342 |
+
if (!isNumber(user.makananpet)) user.makananpet = 0
|
| 343 |
+
if (!isNumber(user.makananphonix)) user.makananphonix = 0
|
| 344 |
+
if (!isNumber(user.makananserigala)) user.makananserigala = 0
|
| 345 |
+
if (!isNumber(user.mana)) user.mana = 0
|
| 346 |
+
if (!isNumber(user.mangga)) user.mangga = 0
|
| 347 |
+
if (!isNumber(user.money)) user.money = 0
|
| 348 |
+
if (!isNumber(user.monyet)) user.monyet = 0
|
| 349 |
+
if (!isNumber(user.mythic)) user.mythic = 0
|
| 350 |
+
if (!isNumber(user.naga)) user.naga = 0
|
| 351 |
+
if (!isNumber(user.nagalastclaim)) user.nagalastclaim = 0
|
| 352 |
+
if (!isNumber(user.net)) user.net = 0
|
| 353 |
+
if (!isNumber(user.nila)) user.nila = 0
|
| 354 |
+
if (!isNumber(user.nilabakar)) user.nilabakar = 0
|
| 355 |
+
if (!isNumber(user.ojekk)) user.ojekk = 0
|
| 356 |
+
if (!isNumber(user.oporayam)) user.oporayam = 0
|
| 357 |
+
if (!isNumber(user.orca)) user.orca = 0
|
| 358 |
+
if (!isNumber(user.pancing)) user.pancing = 0
|
| 359 |
+
if (!isNumber(user.pancingan)) user.pancingan = 1
|
| 360 |
+
if (!isNumber(user.panda)) user.panda = 0
|
| 361 |
+
if (!isNumber(user.paus)) user.paus = 0
|
| 362 |
+
if (!isNumber(user.pausbakar)) user.pausbakar = 0
|
| 363 |
+
if (!isNumber(user.pc)) user.pc = 0
|
| 364 |
+
if (!isNumber(user.pepesikan)) user.pepesikan = 0
|
| 365 |
+
if (!isNumber(user.pertambangan)) user.pertambangan = 0
|
| 366 |
+
if (!isNumber(user.pertanian)) user.pertanian = 0
|
| 367 |
+
if (!isNumber(user.pet)) user.pet = 0
|
| 368 |
+
if (!isNumber(user.petFood)) user.petFood = 0
|
| 369 |
+
if (!isNumber(user.phonix)) user.phonix = 0
|
| 370 |
+
if (!isNumber(user.phonixexp)) user.phonixexp = 0
|
| 371 |
+
if (!isNumber(user.phonixlastclaim)) user.phonixlastclaim = 0
|
| 372 |
+
if (!isNumber(user.phonixlastfeed)) user.phonixlastfeed = 0
|
| 373 |
+
if (!isNumber(user.pickaxe)) user.pickaxe = 0
|
| 374 |
+
if (!isNumber(user.pickaxedurability)) user.pickaxedurability = 0
|
| 375 |
+
if (!isNumber(user.pillhero)) user.pillhero= 0
|
| 376 |
+
if (!isNumber(user.pisang)) user.pisang = 0
|
| 377 |
+
if (!isNumber(user.pointxp)) user.pointxp = 0
|
| 378 |
+
if (!isNumber(user.potion)) user.potion = 0
|
| 379 |
+
if (!isNumber(user.psenjata)) user.psenjata = 0
|
| 380 |
+
if (!isNumber(user.psepick)) user.psepick = 0
|
| 381 |
+
if (!isNumber(user.ramuan)) user.ramuan = 0
|
| 382 |
+
if (!isNumber(user.ramuancentaurlast)) user.ramuancentaurlast = 0
|
| 383 |
+
if (!isNumber(user.ramuangriffinlast)) user.ramuangriffinlast = 0
|
| 384 |
+
if (!isNumber(user.ramuanherolast)) user.ramuanherolast = 0
|
| 385 |
+
if (!isNumber(user.ramuankucinglast)) user.ramuankucinglast = 0
|
| 386 |
+
if (!isNumber(user.ramuankudalast)) user.ramuankudalast = 0
|
| 387 |
+
if (!isNumber(user.ramuankyubilast)) user.ramuankyubilast = 0
|
| 388 |
+
if (!isNumber(user.ramuannagalast)) user.ramuannagalast = 0
|
| 389 |
+
if (!isNumber(user.ramuanphonixlast)) user.ramuanphonixlast = 0
|
| 390 |
+
if (!isNumber(user.ramuanrubahlast)) user.ramuanrubahlast = 0
|
| 391 |
+
if (!isNumber(user.ramuanserigalalast)) user.ramuanserigalalast = 0
|
| 392 |
+
if (!isNumber(user.reglast)) user.reglast = 0
|
| 393 |
+
if (!isNumber(user.rendang)) user.rendang = 0
|
| 394 |
+
if (!isNumber(user.rhinoceros)) user.rhinoceros = 0
|
| 395 |
+
if (!isNumber(user.rhinocerosexp)) user.rhinocerosexp = 0
|
| 396 |
+
if (!isNumber(user.rhinoceroslastfeed)) user.rhinoceroslastfeed = 0
|
| 397 |
+
if (!isNumber(user.robo)) user.robo = 0
|
| 398 |
+
if (!isNumber(user.roboxp)) user.roboxp = 0
|
| 399 |
+
if (!isNumber(user.rock)) user.rock = 0
|
| 400 |
+
if (!isNumber(user.roket)) user.roket = 0
|
| 401 |
+
if (!isNumber(user.roti)) user.roti = 0
|
| 402 |
+
if (!isNumber(user.rubah)) user.rubah = 0
|
| 403 |
+
if (!isNumber(user.rubahlastclaim)) user.rubahlastclaim = 0
|
| 404 |
+
if (!isNumber(user.rumahsakit)) user.rumahsakit = 0
|
| 405 |
+
if (!isNumber(user.sampah)) user.sampah = 0
|
| 406 |
+
if (!isNumber(user.sand)) user.sand = 0
|
| 407 |
+
if (!isNumber(user.sapi)) user.sapi = 0
|
| 408 |
+
if (!isNumber(user.sapir)) user.sapir = 0
|
| 409 |
+
if (!isNumber(user.seedbayam)) user.seedbayam = 0
|
| 410 |
+
if (!isNumber(user.seedbrokoli)) user.seedbrokoli = 0
|
| 411 |
+
if (!isNumber(user.seedjagung)) user.seedjagung = 0
|
| 412 |
+
if (!isNumber(user.seedkangkung)) user.seedkangkung = 0
|
| 413 |
+
if (!isNumber(user.seedkentang)) user.seedkentang = 0
|
| 414 |
+
if (!isNumber(user.seedkubis)) user.seedkubis = 0
|
| 415 |
+
if (!isNumber(user.seedlabu)) user.seedlabu = 0
|
| 416 |
+
if (!isNumber(user.seedtomat)) user.seedtomat = 0
|
| 417 |
+
if (!isNumber(user.seedwortel)) user.seedwortel = 0
|
| 418 |
+
if (!isNumber(user.serigala)) user.serigala = 0
|
| 419 |
+
if (!isNumber(user.serigalalastclaim)) user.serigalalastclaim = 0
|
| 420 |
+
if (!isNumber(user.shield)) user.shield = false
|
| 421 |
+
if (!isNumber(user.skillexp)) user.skillexp = 0
|
| 422 |
+
if (!isNumber(user.snlast)) user.snlast = 0
|
| 423 |
+
if (!isNumber(user.soda)) user.soda = 0
|
| 424 |
+
if (!isNumber(user.sop)) user.sop = 0
|
| 425 |
+
if (!isNumber(user.spammer)) user.spammer = 0
|
| 426 |
+
if (!isNumber(user.spinlast)) user.spinlast = 0
|
| 427 |
+
if (!isNumber(user.ssapi)) user.ssapi = 0
|
| 428 |
+
if (!isNumber(user.stamina)) user.stamina = 100
|
| 429 |
+
if (!isNumber(user.steak)) user.steak = 0
|
| 430 |
+
if (!isNumber(user.stick)) user.stick = 0
|
| 431 |
+
if (!isNumber(user.strength)) user.strength = 0
|
| 432 |
+
if (!isNumber(user.string)) user.string = 0
|
| 433 |
+
if (!isNumber(user.superior)) user.superior = 0
|
| 434 |
+
if (!isNumber(user.suplabu)) user.suplabu = 0
|
| 435 |
+
if (!isNumber(user.sushi)) user.sushi = 0
|
| 436 |
+
if (!isNumber(user.sword)) user.sword = 0
|
| 437 |
+
if (!isNumber(user.sworddurability)) user.sworddurability = 0
|
| 438 |
+
if (!isNumber(user.tigame)) user.tigame = 50
|
| 439 |
+
if (!isNumber(user.tiketcoin)) user.tiketcoin = 0
|
| 440 |
+
if (!isNumber(user.title)) user.title = 0
|
| 441 |
+
if (!isNumber(user.tomat)) user.tomat = 0
|
| 442 |
+
if (!isNumber(user.tprem)) user.tprem = 0
|
| 443 |
+
if (!isNumber(user.trash)) user.trash = 0
|
| 444 |
+
if (!isNumber(user.trofi)) user.trofi = 0
|
| 445 |
+
if (!isNumber(user.troopcamp)) user.troopcamp = 0
|
| 446 |
+
if (!isNumber(user.tumiskangkung)) user.tumiskangkung = 0
|
| 447 |
+
if (!isNumber(user.udang)) user.udang = 0
|
| 448 |
+
if (!isNumber(user.udangbakar)) user.udangbakar = 0
|
| 449 |
+
if (!isNumber(user.umpan)) user.umpan = 0
|
| 450 |
+
if (!isNumber(user.uncommon)) user.uncommon = 0
|
| 451 |
+
if (!isNumber(user.unreglast)) user.unreglast = 0
|
| 452 |
+
if (!isNumber(user.upgrader)) user.upgrader = 0
|
| 453 |
+
if (!isNumber(user.vodka)) user.vodka = 0
|
| 454 |
+
if (!isNumber(user.wallet)) user.wallet = 0
|
| 455 |
+
if (!isNumber(user.warn)) user.warn = 0
|
| 456 |
+
if (!isNumber(user.weapon)) user.weapon = 0
|
| 457 |
+
if (!isNumber(user.weapondurability)) user.weapondurability = 0
|
| 458 |
+
if (!isNumber(user.wolf)) user.wolf = 0
|
| 459 |
+
if (!isNumber(user.wolfexp)) user.wolfexp = 0
|
| 460 |
+
if (!isNumber(user.wolflastfeed)) user.wolflastfeed = 0
|
| 461 |
+
if (!isNumber(user.wood)) user.wood = 0
|
| 462 |
+
if (!isNumber(user.wortel)) user.wortel = 0
|
| 463 |
+
|
| 464 |
+
if (!user.lbars) user.lbars = "[▒▒▒▒▒▒▒▒▒]"
|
| 465 |
+
if (!user.job) user.job = "Pengangguran"
|
| 466 |
+
if (!user.premium) user.premium = false
|
| 467 |
+
if (!user.premium) user.premiumTime = 0
|
| 468 |
+
if (!user.rtrofi) user.rtrofi = "Perunggu"
|
| 469 |
+
if (!isNumber(user.limitjoin)) user.limitjoin = 0
|
| 470 |
+
} else
|
| 471 |
+
global.db.data.users[m.sender] = {
|
| 472 |
+
counterPrivate: 0,
|
| 473 |
+
afk: -1,
|
| 474 |
+
afkReason: "",
|
| 475 |
+
age: -1,
|
| 476 |
+
agility: 16,
|
| 477 |
+
anakanjing: 0,
|
| 478 |
+
anakcentaur: 0,
|
| 479 |
+
anakgriffin: 0,
|
| 480 |
+
anakkucing: 0,
|
| 481 |
+
anakkuda: 0,
|
| 482 |
+
anakkyubi: 0,
|
| 483 |
+
anaknaga: 0,
|
| 484 |
+
anakpancingan: 0,
|
| 485 |
+
anakphonix: 0,
|
| 486 |
+
anakrubah: 0,
|
| 487 |
+
anakserigala: 0,
|
| 488 |
+
anggur: 0,
|
| 489 |
+
anjing: 0,
|
| 490 |
+
anjinglastclaim: 0,
|
| 491 |
+
antispam: 0,
|
| 492 |
+
antispamlastclaim: 0,
|
| 493 |
+
apel: 0,
|
| 494 |
+
aqua: 0,
|
| 495 |
+
arc: 0,
|
| 496 |
+
arcdurability: 0,
|
| 497 |
+
arlok: 0,
|
| 498 |
+
armor: 0,
|
| 499 |
+
armordurability: 0,
|
| 500 |
+
armormonster: 0,
|
| 501 |
+
as: 0,
|
| 502 |
+
atm: 0,
|
| 503 |
+
autolevelup: true,
|
| 504 |
+
axe: 0,
|
| 505 |
+
axedurability: 0,
|
| 506 |
+
ayam: 0,
|
| 507 |
+
ayamb: 0,
|
| 508 |
+
ayambakar: 0,
|
| 509 |
+
ayamg: 0,
|
| 510 |
+
ayamgoreng: 0,
|
| 511 |
+
babi: 0,
|
| 512 |
+
babihutan: 0,
|
| 513 |
+
babipanggang: 0,
|
| 514 |
+
bandage: 0,
|
| 515 |
+
bank: 0,
|
| 516 |
+
banned: false,
|
| 517 |
+
BannedReason: "",
|
| 518 |
+
Banneduser: false,
|
| 519 |
+
banteng: 0,
|
| 520 |
+
batu: 0,
|
| 521 |
+
bawal: 0,
|
| 522 |
+
bawalbakar: 0,
|
| 523 |
+
bayam: 0,
|
| 524 |
+
berlian: 100,
|
| 525 |
+
bibitanggur: 0,
|
| 526 |
+
bibitapel: 0,
|
| 527 |
+
bibitjeruk: 0,
|
| 528 |
+
bibitmangga: 0,
|
| 529 |
+
bibitpisang: 0,
|
| 530 |
+
botol: 0,
|
| 531 |
+
bow: 0,
|
| 532 |
+
bowdurability: 0,
|
| 533 |
+
boxs: 0,
|
| 534 |
+
brick: 0,
|
| 535 |
+
brokoli: 0,
|
| 536 |
+
buaya: 0,
|
| 537 |
+
buntal: 0,
|
| 538 |
+
cat: 0,
|
| 539 |
+
catlastfeed: 0,
|
| 540 |
+
catngexp: 0,
|
| 541 |
+
centaur: 0,
|
| 542 |
+
centaurexp: 0,
|
| 543 |
+
centaurlastclaim: 0,
|
| 544 |
+
centaurlastfeed: 0,
|
| 545 |
+
clay: 0,
|
| 546 |
+
coal: 0,
|
| 547 |
+
coin: 0,
|
| 548 |
+
common: 0,
|
| 549 |
+
crystal: 0,
|
| 550 |
+
cumi: 0,
|
| 551 |
+
cupon: 0,
|
| 552 |
+
diamond: 0,
|
| 553 |
+
dog: 0,
|
| 554 |
+
dogexp: 0,
|
| 555 |
+
doglastfeed: 0,
|
| 556 |
+
dory: 0,
|
| 557 |
+
dragon: 0,
|
| 558 |
+
dragonexp: 0,
|
| 559 |
+
dragonlastfeed: 0,
|
| 560 |
+
emas: 0,
|
| 561 |
+
emerald: 0,
|
| 562 |
+
esteh: 0,
|
| 563 |
+
exp: 0,
|
| 564 |
+
expg: 0,
|
| 565 |
+
exphero: 0,
|
| 566 |
+
expired: 0,
|
| 567 |
+
fishingrod: 0,
|
| 568 |
+
fishingroddurability: 0,
|
| 569 |
+
fortress: 0,
|
| 570 |
+
fox: 0,
|
| 571 |
+
foxexp: 0,
|
| 572 |
+
foxlastfeed: 0,
|
| 573 |
+
fullatm: Infinity,
|
| 574 |
+
gadodado: 0,
|
| 575 |
+
gajah: 0,
|
| 576 |
+
gamemines: false,
|
| 577 |
+
ganja: 0,
|
| 578 |
+
gardenboxs: 0,
|
| 579 |
+
gems: 0,
|
| 580 |
+
glass: 0,
|
| 581 |
+
gold: 0,
|
| 582 |
+
griffin: 0,
|
| 583 |
+
griffinexp: 0,
|
| 584 |
+
griffinlastclaim: 0,
|
| 585 |
+
griffinlastfeed: 0,
|
| 586 |
+
gulai: 0,
|
| 587 |
+
gurita: 0,
|
| 588 |
+
harimau: 0,
|
| 589 |
+
haus: 100,
|
| 590 |
+
healt: 100,
|
| 591 |
+
health: 100,
|
| 592 |
+
healtmonster: 100,
|
| 593 |
+
hero: 1,
|
| 594 |
+
herolastclaim: 0,
|
| 595 |
+
hiu: 0,
|
| 596 |
+
horse: 0,
|
| 597 |
+
horseexp: 0,
|
| 598 |
+
horselastfeed: 0,
|
| 599 |
+
ikan: 0,
|
| 600 |
+
ikanbakar: 0,
|
| 601 |
+
intelligence: 10,
|
| 602 |
+
iron: 0,
|
| 603 |
+
jagung: 0,
|
| 604 |
+
jagungbakar: 0,
|
| 605 |
+
jeruk: 0,
|
| 606 |
+
job: "Pengangguran",
|
| 607 |
+
joinlimit: 1,
|
| 608 |
+
judilast: 0,
|
| 609 |
+
kaleng: 0,
|
| 610 |
+
kambing: 0,
|
| 611 |
+
kangkung: 0,
|
| 612 |
+
kapak: 0,
|
| 613 |
+
kardus: 0,
|
| 614 |
+
katana: 0,
|
| 615 |
+
katanadurability: 0,
|
| 616 |
+
kayu: 0,
|
| 617 |
+
kentang: 0,
|
| 618 |
+
kentanggoreng: 0,
|
| 619 |
+
kepiting: 0,
|
| 620 |
+
kepitingbakar: 0,
|
| 621 |
+
kerbau: 0,
|
| 622 |
+
kerjadelapan: 0,
|
| 623 |
+
kerjadelapanbelas: 0,
|
| 624 |
+
kerjadua: 0,
|
| 625 |
+
kerjaduabelas: 0,
|
| 626 |
+
kerjaduadelapan: 0,
|
| 627 |
+
kerjaduadua: 0,
|
| 628 |
+
kerjaduaempat: 0,
|
| 629 |
+
kerjaduaenam: 0,
|
| 630 |
+
kerjadualima: 0,
|
| 631 |
+
kerjaduapuluh: 0,
|
| 632 |
+
kerjaduasatu: 0,
|
| 633 |
+
kerjaduasembilan: 0,
|
| 634 |
+
kerjaduatiga: 0,
|
| 635 |
+
kerjaduatujuh: 0,
|
| 636 |
+
kerjaempat: 0,
|
| 637 |
+
kerjaempatbelas: 0,
|
| 638 |
+
kerjaenam: 0,
|
| 639 |
+
kerjaenambelas: 0,
|
| 640 |
+
kerjalima: 0,
|
| 641 |
+
kerjalimabelas: 0,
|
| 642 |
+
kerjasatu: 0,
|
| 643 |
+
kerjasebelas: 0,
|
| 644 |
+
kerjasembilan: 0,
|
| 645 |
+
kerjasembilanbelas: 0,
|
| 646 |
+
kerjasepuluh: 0,
|
| 647 |
+
kerjatiga: 0,
|
| 648 |
+
kerjatigabelas: 0,
|
| 649 |
+
kerjatigapuluh: 0,
|
| 650 |
+
kerjatujuh: 0,
|
| 651 |
+
kerjatujuhbelas: 0,
|
| 652 |
+
korbanngocok: 0,
|
| 653 |
+
kubis: 0,
|
| 654 |
+
kucing: 0,
|
| 655 |
+
kucinglastclaim: 0,
|
| 656 |
+
kuda: 0,
|
| 657 |
+
kudalastclaim: 0,
|
| 658 |
+
kumba: 0,
|
| 659 |
+
kyubi: 0,
|
| 660 |
+
kyubilastclaim: 0,
|
| 661 |
+
labu: 0,
|
| 662 |
+
laper: 100,
|
| 663 |
+
lastadventure: 0,
|
| 664 |
+
lastberbru: 0,
|
| 665 |
+
lastberkebon: 0,
|
| 666 |
+
lastbunga: 0,
|
| 667 |
+
lastbunuhi: 0,
|
| 668 |
+
lastclaim: 0,
|
| 669 |
+
lastcode: 0,
|
| 670 |
+
lastcrusade: 0,
|
| 671 |
+
lastdagang: 0,
|
| 672 |
+
lastduel: 0,
|
| 673 |
+
lastdungeon: 0,
|
| 674 |
+
lasteasy: 0,
|
| 675 |
+
lastfight: 0,
|
| 676 |
+
lastfishing: 0,
|
| 677 |
+
lastgojek: 0,
|
| 678 |
+
lastgrab: 0,
|
| 679 |
+
lasthourly: 0,
|
| 680 |
+
lasthunt: 0,
|
| 681 |
+
lastjb: 0,
|
| 682 |
+
lastkill: 0,
|
| 683 |
+
lastlink: 0,
|
| 684 |
+
lastlumber: 0,
|
| 685 |
+
lastmancingeasy: 0,
|
| 686 |
+
lastmancingextreme: 0,
|
| 687 |
+
lastmancinghard: 0,
|
| 688 |
+
lastmancingnormal: 0,
|
| 689 |
+
lastmining: 0,
|
| 690 |
+
lastmisi: 0,
|
| 691 |
+
lastmonthly: 0,
|
| 692 |
+
lastmulung: 0,
|
| 693 |
+
lastnambang: 0,
|
| 694 |
+
lastnebang: 0,
|
| 695 |
+
lastngocok: 0,
|
| 696 |
+
lastngojek: 0,
|
| 697 |
+
lastopen: 0,
|
| 698 |
+
lastpekerjaan: 0,
|
| 699 |
+
lastpotionclaim: 0,
|
| 700 |
+
lastramuanclaim: 0,
|
| 701 |
+
lastrob: 0,
|
| 702 |
+
lastroket: 0,
|
| 703 |
+
lastseen: 0,
|
| 704 |
+
lastSetStatus: 0,
|
| 705 |
+
lastsironclaim: 0,
|
| 706 |
+
lastsmancingclaim: 0,
|
| 707 |
+
laststringclaim: 0,
|
| 708 |
+
lastswordclaim: 0,
|
| 709 |
+
lastturu: 0,
|
| 710 |
+
lastwarpet: 0,
|
| 711 |
+
lastweaponclaim: 0,
|
| 712 |
+
lastweekly: 0,
|
| 713 |
+
lastwork: 0,
|
| 714 |
+
lbars: "[▒▒▒▒▒▒▒▒▒]",
|
| 715 |
+
legendary: 0,
|
| 716 |
+
lele: 0,
|
| 717 |
+
leleb: 0,
|
| 718 |
+
lelebakar: 0,
|
| 719 |
+
leleg: 0,
|
| 720 |
+
level: 0,
|
| 721 |
+
limit: 25,
|
| 722 |
+
limitjoinfree: 1,
|
| 723 |
+
lion: 0,
|
| 724 |
+
lionexp: 0,
|
| 725 |
+
lionlastfeed: 0,
|
| 726 |
+
lobster: 0,
|
| 727 |
+
lumba: 0,
|
| 728 |
+
magicwand: 0,
|
| 729 |
+
magicwanddurability: 0,
|
| 730 |
+
makanan: 0,
|
| 731 |
+
makanancentaur: 0,
|
| 732 |
+
makanangriffin: 0,
|
| 733 |
+
makanankyubi: 0,
|
| 734 |
+
makanannaga: 0,
|
| 735 |
+
makananpet: 0,
|
| 736 |
+
makananphonix: 0,
|
| 737 |
+
makananserigala: 0,
|
| 738 |
+
mana: 20,
|
| 739 |
+
mangga: 0,
|
| 740 |
+
misi: "",
|
| 741 |
+
money: 0,
|
| 742 |
+
monyet: 0,
|
| 743 |
+
mythic: 0,
|
| 744 |
+
naga: 0,
|
| 745 |
+
nagalastclaim: 0,
|
| 746 |
+
name: m.name,
|
| 747 |
+
net: 0,
|
| 748 |
+
nila: 0,
|
| 749 |
+
nilabakar: 0,
|
| 750 |
+
catatan: "",
|
| 751 |
+
ojekk: 0,
|
| 752 |
+
oporayam: 0,
|
| 753 |
+
orca: 0,
|
| 754 |
+
pancingan: 1,
|
| 755 |
+
panda: 0,
|
| 756 |
+
pasangan: "",
|
| 757 |
+
paus: 0,
|
| 758 |
+
pausbakar: 0,
|
| 759 |
+
pc: 0,
|
| 760 |
+
pepesikan: 0,
|
| 761 |
+
pet: 0,
|
| 762 |
+
phonix: 0,
|
| 763 |
+
phonixexp: 0,
|
| 764 |
+
phonixlastclaim: 0,
|
| 765 |
+
phonixlastfeed: 0,
|
| 766 |
+
pickaxe: 0,
|
| 767 |
+
pickaxedurability: 0,
|
| 768 |
+
pillhero: 0,
|
| 769 |
+
pisang: 0,
|
| 770 |
+
pointxp: 0,
|
| 771 |
+
potion: 10,
|
| 772 |
+
premium: false,
|
| 773 |
+
premiumTime: 0,
|
| 774 |
+
ramuan: 0,
|
| 775 |
+
ramuancentaurlast: 0,
|
| 776 |
+
ramuangriffinlast: 0,
|
| 777 |
+
ramuanherolast: 0,
|
| 778 |
+
ramuankucinglast: 0,
|
| 779 |
+
ramuankudalast: 0,
|
| 780 |
+
ramuankyubilast: 0,
|
| 781 |
+
ramuannagalast: 0,
|
| 782 |
+
ramuanphonixlast: 0,
|
| 783 |
+
ramuanrubahlast: 0,
|
| 784 |
+
ramuanserigalalast: 0,
|
| 785 |
+
registered: false,
|
| 786 |
+
reglast: 0,
|
| 787 |
+
regTime: -1,
|
| 788 |
+
rendang: 0,
|
| 789 |
+
rhinoceros: 0,
|
| 790 |
+
rhinocerosexp: 0,
|
| 791 |
+
rhinoceroslastfeed: 0,
|
| 792 |
+
rock: 0,
|
| 793 |
+
roket: 0,
|
| 794 |
+
role: "Newbie ㋡",
|
| 795 |
+
roti: 0,
|
| 796 |
+
rtrofi: "perunggu",
|
| 797 |
+
rubah: 0,
|
| 798 |
+
rubahlastclaim: 0,
|
| 799 |
+
rumahsakit: 0,
|
| 800 |
+
sampah: 0,
|
| 801 |
+
sand: 0,
|
| 802 |
+
sapi: 0,
|
| 803 |
+
sapir: 0,
|
| 804 |
+
seedbayam: 0,
|
| 805 |
+
seedbrokoli: 0,
|
| 806 |
+
seedjagung: 0,
|
| 807 |
+
seedkangkung: 0,
|
| 808 |
+
seedkentang: 0,
|
| 809 |
+
seedkubis: 0,
|
| 810 |
+
seedlabu: 0,
|
| 811 |
+
seedtomat: 0,
|
| 812 |
+
seedwortel: 0,
|
| 813 |
+
semangka: 0,
|
| 814 |
+
serigala: 0,
|
| 815 |
+
serigalalastclaim: 0,
|
| 816 |
+
sewa: false,
|
| 817 |
+
shield: 0,
|
| 818 |
+
skill: "",
|
| 819 |
+
skillexp: 0,
|
| 820 |
+
snlast: 0,
|
| 821 |
+
soda: 0,
|
| 822 |
+
sop: 0,
|
| 823 |
+
spammer: 0,
|
| 824 |
+
spinlast: 0,
|
| 825 |
+
ssapi: 0,
|
| 826 |
+
stamina: 100,
|
| 827 |
+
steak: 0,
|
| 828 |
+
stick: 0,
|
| 829 |
+
strength: 30,
|
| 830 |
+
string: 0,
|
| 831 |
+
stroberi: 0,
|
| 832 |
+
superior: 0,
|
| 833 |
+
suplabu: 0,
|
| 834 |
+
sushi: 0,
|
| 835 |
+
sword: 0,
|
| 836 |
+
sworddurability: 0,
|
| 837 |
+
tigame: 50,
|
| 838 |
+
tiketcoin: 0,
|
| 839 |
+
title: "",
|
| 840 |
+
tomat: 0,
|
| 841 |
+
tprem: 0,
|
| 842 |
+
trash: 0,
|
| 843 |
+
trofi: 0,
|
| 844 |
+
troopcamp: 0,
|
| 845 |
+
tumiskangkung: 0,
|
| 846 |
+
udang: 0,
|
| 847 |
+
udangbakar: 0,
|
| 848 |
+
umpan: 0,
|
| 849 |
+
uncommon: 0,
|
| 850 |
+
unreglast: 0,
|
| 851 |
+
upgrader: 0,
|
| 852 |
+
vodka: 0,
|
| 853 |
+
wallet: 0,
|
| 854 |
+
warn: 0,
|
| 855 |
+
weapon: 0,
|
| 856 |
+
weapondurability: 0,
|
| 857 |
+
wolf: 0,
|
| 858 |
+
wolfexp: 0,
|
| 859 |
+
wolflastfeed: 0,
|
| 860 |
+
wood: 0,
|
| 861 |
+
wortel: 0,
|
| 862 |
+
limitjoin: 0,
|
| 863 |
+
}
|
| 864 |
+
let chat = global.db.data.chats[m.chat]
|
| 865 |
+
if (typeof chat !== "object")
|
| 866 |
+
global.db.data.chats[m.chat] = {}
|
| 867 |
+
if (chat) {
|
| 868 |
+
if (!('isBanned' in chat))
|
| 869 |
+
chat.isBanned = false
|
| 870 |
+
if (!('antiwame' in chat))
|
| 871 |
+
chat.antiwame = false
|
| 872 |
+
if (!('antiLink' in chat))
|
| 873 |
+
chat.antiLink = false
|
| 874 |
+
if (!('stiker' in chat))
|
| 875 |
+
chat.stiker = false
|
| 876 |
+
if (!('antiLinkGc' in chat))
|
| 877 |
+
chat.antiLinkGc = false
|
| 878 |
+
if (!('antiLinkYt' in chat))
|
| 879 |
+
chat.antiLinkYt = false
|
| 880 |
+
if (!('antiLinkTik' in chat))
|
| 881 |
+
chat.antiLinkTik = false
|
| 882 |
+
if (!('antiLinkIg' in chat))
|
| 883 |
+
chat.antiLinkIg = false
|
| 884 |
+
if (!('antiLinkTel' in chat))
|
| 885 |
+
chat.antiLinkTel = false
|
| 886 |
+
if (!('antiLinkFb' in chat))
|
| 887 |
+
chat.antiLinkFb = false
|
| 888 |
+
if (!('antiLinkHttp' in chat))
|
| 889 |
+
chat.antiLinkHttp = false
|
| 890 |
+
if (!('antiSpam' in chat))
|
| 891 |
+
chat.antiSpam = false
|
| 892 |
+
if (!('antiVirtex' in chat))
|
| 893 |
+
chat.antiVirtex = false
|
| 894 |
+
if (!('antiStiker' in chat))
|
| 895 |
+
chat.antiSticker = false
|
| 896 |
+
if (!('virtex' in chat ))
|
| 897 |
+
chat.virtex = false
|
| 898 |
+
if (!('antiToxic' in chat))
|
| 899 |
+
chat.antiToxic = false
|
| 900 |
+
if (!('anticall' in chat))
|
| 901 |
+
chat.anticall = false
|
| 902 |
+
if (!('welcome' in chat))
|
| 903 |
+
chat.welcome = true
|
| 904 |
+
if (!('autoJoin' in chat))
|
| 905 |
+
chat.autoJoin = false
|
| 906 |
+
if (!('detect' in chat))
|
| 907 |
+
chat.detect = false
|
| 908 |
+
if (!('sWelcome' in chat))
|
| 909 |
+
chat.sWelcome = ''
|
| 910 |
+
if (!('sBye' in chat))
|
| 911 |
+
chat.sBye = ''
|
| 912 |
+
if (!('sPromote' in chat))
|
| 913 |
+
chat.sPromote = ''
|
| 914 |
+
if (!('sDemote' in chat))
|
| 915 |
+
chat.sDemote = ''
|
| 916 |
+
if (!('delete' in chat))
|
| 917 |
+
chat.delete = true
|
| 918 |
+
if (!('viewonce' in chat))
|
| 919 |
+
chat.viewonce = false
|
| 920 |
+
if (!('simi' in chat))
|
| 921 |
+
chat.simi = false
|
| 922 |
+
if (!('autoread' in chat))
|
| 923 |
+
chat.autoread = true
|
| 924 |
+
if (!('nsfw' in chat))
|
| 925 |
+
chat.nsfw = false
|
| 926 |
+
if (!('premnsfw' in chat))
|
| 927 |
+
chat.premnsfw = false
|
| 928 |
+
if (!isNumber(chat.expired))
|
| 929 |
+
chat.expired = 0
|
| 930 |
+
} else
|
| 931 |
+
global.db.data.chats[m.chat] = {
|
| 932 |
+
isBanned: false,
|
| 933 |
+
stiker: false,
|
| 934 |
+
antiwame: false,
|
| 935 |
+
antiLink: false,
|
| 936 |
+
antiLinkGc: false,
|
| 937 |
+
antiLinkTik: false,
|
| 938 |
+
antiLinkTel: false,
|
| 939 |
+
antiLinkIg: false,
|
| 940 |
+
antiLinkFb: false,
|
| 941 |
+
antiLinkHttp: false,
|
| 942 |
+
antiLinkYt: false,
|
| 943 |
+
antiSpam: false,
|
| 944 |
+
antiStiker: false,
|
| 945 |
+
antiVirtex: false,
|
| 946 |
+
virtex: false,
|
| 947 |
+
autoJoin: false,
|
| 948 |
+
antiToxic: false,
|
| 949 |
+
anticall: false,
|
| 950 |
+
welcome: true,
|
| 951 |
+
autoread: true,
|
| 952 |
+
detect: false,
|
| 953 |
+
sWelcome: '',
|
| 954 |
+
sBye: '',
|
| 955 |
+
sPromote: '',
|
| 956 |
+
sDemote: '',
|
| 957 |
+
delete: true,
|
| 958 |
+
viewonce: false,
|
| 959 |
+
simi: false,
|
| 960 |
+
expired: 0,
|
| 961 |
+
nsfw: false,
|
| 962 |
+
premnsfw: false,
|
| 963 |
+
}
|
| 964 |
+
let akinator = global.db.data.users[m.sender].akinator
|
| 965 |
+
if (typeof akinator !== 'object')
|
| 966 |
+
global.db.data.users[m.sender].akinator = {}
|
| 967 |
+
if (akinator) {
|
| 968 |
+
if (!('sesi' in akinator))
|
| 969 |
+
akinator.sesi = false
|
| 970 |
+
if (!('server' in akinator))
|
| 971 |
+
akinator.server = null
|
| 972 |
+
if (!('frontaddr' in akinator))
|
| 973 |
+
akinator.frontaddr = null
|
| 974 |
+
if (!('session' in akinator))
|
| 975 |
+
akinator.session = null
|
| 976 |
+
if (!('signature' in akinator))
|
| 977 |
+
akinator.signature = null
|
| 978 |
+
if (!('question' in akinator))
|
| 979 |
+
akinator.question = null
|
| 980 |
+
if (!('progression' in akinator))
|
| 981 |
+
akinator.progression = null
|
| 982 |
+
if (!('step' in akinator))
|
| 983 |
+
akinator.step = null
|
| 984 |
+
if (!('soal' in akinator))
|
| 985 |
+
akinator.soal = null
|
| 986 |
+
} else
|
| 987 |
+
global.db.data.users[m.sender].akinator = {
|
| 988 |
+
sesi: false,
|
| 989 |
+
server: null,
|
| 990 |
+
frontaddr: null,
|
| 991 |
+
session: null,
|
| 992 |
+
signature: null,
|
| 993 |
+
question: null,
|
| 994 |
+
progression: null,
|
| 995 |
+
step: null,
|
| 996 |
+
soal: null
|
| 997 |
+
}
|
| 998 |
+
let settings = global.db.data.settings[this.user.jid]
|
| 999 |
+
if (typeof settings !== 'object') global.db.data.settings[this.user.jid] = {}
|
| 1000 |
+
if (settings) {
|
| 1001 |
+
if (!('self' in settings)) settings.self = false
|
| 1002 |
+
if (!('autoread' in settings)) settings.autoread = true
|
| 1003 |
+
if (!('restrict' in settings)) settings.restrict = false
|
| 1004 |
+
if (!('antiPrivate' in settings)) settings.antiPrivate = true
|
| 1005 |
+
} else global.db.data.settings[this.user.jid] = {
|
| 1006 |
+
self: false,
|
| 1007 |
+
autoread: true,
|
| 1008 |
+
restrict: false
|
| 1009 |
+
}
|
| 1010 |
+
} catch (e) {
|
| 1011 |
+
console.error(e)
|
| 1012 |
+
}
|
| 1013 |
+
//opts.autoread = true
|
| 1014 |
+
//opts.gconly = true
|
| 1015 |
+
//opts.off = true
|
| 1016 |
+
if (opts['off']) await this.sendPresenceUpdate('unavailable', m.chat)
|
| 1017 |
+
if (opts['autoread']) await this.readMessages([m.key])
|
| 1018 |
+
if (opts['nyimak']) return
|
| 1019 |
+
if (opts['pconly'] && m.chat.endsWith('g.us')) return
|
| 1020 |
+
if (opts['gconly'] && !m.chat.endsWith('g.us')) return
|
| 1021 |
+
if (opts['swonly'] && m.chat !== 'status@broadcast') return
|
| 1022 |
+
if (typeof m.text !== 'string') m.text = ''
|
| 1023 |
+
|
| 1024 |
+
const isROwner = [conn.decodeJid(global.conn.user.id), ...global.owner.map(([number]) => number)].map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)
|
| 1025 |
+
const isOwner = isROwner || m.fromMe
|
| 1026 |
+
const isMods = isOwner || global.mods.map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)
|
| 1027 |
+
const isPrems = isROwner || db.data.users[m.sender].premiumTime > 0
|
| 1028 |
+
|
| 1029 |
+
|
| 1030 |
+
if (!isOwner && opts['self']) return
|
| 1031 |
+
// if (opts['queque'] && m.text && !(isMods || isPrems))
|
| 1032 |
+
if (m.text && !(isMods || isPrems)) {
|
| 1033 |
+
let queque = this.msgqueue, time = 1000 * 5
|
| 1034 |
+
const previousID = queque[queque.length - 1]
|
| 1035 |
+
queque.push(m.id || m.key.id)
|
| 1036 |
+
setInterval(async function () {
|
| 1037 |
+
if (queque.indexOf(previousID) === -1) clearInterval(this)
|
| 1038 |
+
await delay(time)
|
| 1039 |
+
}, time)
|
| 1040 |
+
}
|
| 1041 |
+
|
| 1042 |
+
if (m.isBaileys || m.chat === 'status@broadcast') return
|
| 1043 |
+
m.exp += Math.ceil(Math.random() * 10)
|
| 1044 |
+
let usedPrefix
|
| 1045 |
+
let _user = global.db.data && global.db.data.users && global.db.data.users[m.sender]
|
| 1046 |
+
|
| 1047 |
+
const groupMetadata = (m.isGroup ? ((conn.chats[m.chat] || {}).metadata || await this.groupMetadata(m.chat).catch(_ => null)) : {}) || {}
|
| 1048 |
+
const participants = (m.isGroup ? groupMetadata.participants : []) || []
|
| 1049 |
+
const user = (m.isGroup ? participants.find(u => conn.decodeJid(u.id) === m.sender) : {}) || {} // User Data
|
| 1050 |
+
const bot = (m.isGroup ? participants.find(u => conn.decodeJid(u.id) == this.user.jid) : {}) || {} // Your Data
|
| 1051 |
+
const isRAdmin = user?.admin == 'superadmin' || false
|
| 1052 |
+
const isAdmin = isRAdmin || user?.admin == 'admin' || false // Is User Admin?
|
| 1053 |
+
const isBotAdmin = bot?.admin || false // Are you Admin?
|
| 1054 |
+
|
| 1055 |
+
const ___dirname = path.join(path.dirname(fileURLToPath(import.meta.url)), './plugins')
|
| 1056 |
+
for (let name in global.plugins) {
|
| 1057 |
+
let plugin = global.plugins[name]
|
| 1058 |
+
if (!plugin) continue
|
| 1059 |
+
if (plugin.disabled) continue
|
| 1060 |
+
const __filename = join(___dirname, name)
|
| 1061 |
+
if (typeof plugin.all === 'function') {
|
| 1062 |
+
try {
|
| 1063 |
+
await plugin.all.call(this, m, {
|
| 1064 |
+
chatUpdate,
|
| 1065 |
+
__dirname: ___dirname,
|
| 1066 |
+
__filename
|
| 1067 |
+
})
|
| 1068 |
+
} catch (e) {
|
| 1069 |
+
// if (typeof e === 'string') continue
|
| 1070 |
+
console.error(e)
|
| 1071 |
+
for (let [jid] of global.owner.filter(([number, _, isDeveloper]) => isDeveloper && number)) {
|
| 1072 |
+
let data = (await conn.onWhatsApp(jid))[0] || {}
|
| 1073 |
+
if (data.exists) m.reply(`*Plugin:* ${name}\n*Sender:* wa.me/${m.sender.split`@`[0]}\n*Chat:* ${m.chat}\n*Command:* ${m.text}\n\n\`\`\`${format(e)}\`\`\``.trim(), data.jid)
|
| 1074 |
+
}
|
| 1075 |
+
}
|
| 1076 |
+
}
|
| 1077 |
+
|
| 1078 |
+
if (!opts['restrict']) {
|
| 1079 |
+
if (plugin.tags && plugin.tags.includes('admin')) {
|
| 1080 |
+
// global.dfail('restrict', m, this)
|
| 1081 |
+
continue
|
| 1082 |
+
}
|
| 1083 |
+
}
|
| 1084 |
+
|
| 1085 |
+
const str2Regex = str => str.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&')
|
| 1086 |
+
let _prefix = plugin.customPrefix ? plugin.customPrefix : conn.prefix ? conn.prefix : global.prefix
|
| 1087 |
+
let match = (_prefix instanceof RegExp ? // RegExp Mode?
|
| 1088 |
+
[[_prefix.exec(m.text), _prefix]] : Array.isArray(_prefix) ? // Array?
|
| 1089 |
+
_prefix.map(p => {
|
| 1090 |
+
let re = p instanceof RegExp ? // RegExp in Array?
|
| 1091 |
+
p : new RegExp(str2Regex(p))
|
| 1092 |
+
return [re.exec(m.text), re]
|
| 1093 |
+
}) : typeof _prefix === 'string' ? // String?
|
| 1094 |
+
[[new RegExp(str2Regex(_prefix)).exec(m.text), new RegExp(str2Regex(_prefix))]] : [[[], new RegExp]]
|
| 1095 |
+
).find(p => p[1])
|
| 1096 |
+
if (typeof plugin.before === 'function')
|
| 1097 |
+
if (await plugin.before.call(this, m, {
|
| 1098 |
+
match,
|
| 1099 |
+
conn: this,
|
| 1100 |
+
participants,
|
| 1101 |
+
groupMetadata,
|
| 1102 |
+
user,
|
| 1103 |
+
bot,
|
| 1104 |
+
isROwner,
|
| 1105 |
+
isOwner,
|
| 1106 |
+
isRAdmin,
|
| 1107 |
+
isAdmin,
|
| 1108 |
+
isBotAdmin,
|
| 1109 |
+
isPrems,
|
| 1110 |
+
chatUpdate,
|
| 1111 |
+
__dirname: ___dirname,
|
| 1112 |
+
__filename
|
| 1113 |
+
})) continue
|
| 1114 |
+
if (typeof plugin !== 'function') continue
|
| 1115 |
+
if ((usedPrefix = (match[0] || '')[0])) {
|
| 1116 |
+
let noPrefix = m.text.replace(usedPrefix, '')
|
| 1117 |
+
let [command, ...args] = noPrefix.trim().split` `.filter(v => v)
|
| 1118 |
+
args = args || []
|
| 1119 |
+
let _args = noPrefix.trim().split` `.slice(1)
|
| 1120 |
+
let text = _args.join` `
|
| 1121 |
+
command = (command || '').toLowerCase()
|
| 1122 |
+
let fail = plugin.fail || global.dfail // When failed
|
| 1123 |
+
let isAccept = plugin.command instanceof RegExp ? // RegExp Mode?
|
| 1124 |
+
plugin.command.test(command) : Array.isArray(plugin.command) ? // Array?
|
| 1125 |
+
plugin.command.some(cmd => cmd instanceof RegExp ? // RegExp in Array?
|
| 1126 |
+
cmd.test(command) : cmd === command) : typeof plugin.command === 'string' ? // String?
|
| 1127 |
+
plugin.command === command : false
|
| 1128 |
+
|
| 1129 |
+
if (!isAccept) continue
|
| 1130 |
+
m.plugin = name
|
| 1131 |
+
if (m.chat in global.db.data.chats || m.sender in global.db.data.users) {
|
| 1132 |
+
let chat = global.db.data.chats[m.chat]
|
| 1133 |
+
let user = global.db.data.users[m.sender]
|
| 1134 |
+
if (name != 'group-mute.js' && chat?.isBanned) return // Except this
|
| 1135 |
+
if (name != 'owner-unbanuser.js' && user?.banned) return
|
| 1136 |
+
}
|
| 1137 |
+
if (plugin.rowner && plugin.owner && !(isROwner || isOwner)) { // Both Owner
|
| 1138 |
+
fail('owner', m, this)
|
| 1139 |
+
continue
|
| 1140 |
+
}
|
| 1141 |
+
if (plugin.rowner && !isROwner) { // Real Owner
|
| 1142 |
+
fail('rowner', m, this)
|
| 1143 |
+
continue
|
| 1144 |
+
}
|
| 1145 |
+
if (plugin.owner && !isOwner) { // Number Owner
|
| 1146 |
+
fail('owner', m, this)
|
| 1147 |
+
continue
|
| 1148 |
+
}
|
| 1149 |
+
if (plugin.mods && !isMods) { // Moderator
|
| 1150 |
+
fail('mods', m, this)
|
| 1151 |
+
continue
|
| 1152 |
+
}
|
| 1153 |
+
if (plugin.premium && !isPrems) { // Premium
|
| 1154 |
+
fail('premium', m, this)
|
| 1155 |
+
continue
|
| 1156 |
+
}
|
| 1157 |
+
if (plugin.group && !m.isGroup) { // Group Only
|
| 1158 |
+
fail('group', m, this)
|
| 1159 |
+
continue
|
| 1160 |
+
} else if (plugin.botAdmin && !isBotAdmin) { // You Admin
|
| 1161 |
+
fail('botAdmin', m, this)
|
| 1162 |
+
continue
|
| 1163 |
+
} else if (plugin.admin && !isAdmin) { // User Admin
|
| 1164 |
+
fail('admin', m, this)
|
| 1165 |
+
continue
|
| 1166 |
+
}
|
| 1167 |
+
if (plugin.private && m.isGroup) { // Private Chat Only
|
| 1168 |
+
fail('private', m, this)
|
| 1169 |
+
continue
|
| 1170 |
+
}
|
| 1171 |
+
if (plugin.register == true && _user.registered == false) { // Butuh daftar?
|
| 1172 |
+
fail('unreg', m, this)
|
| 1173 |
+
continue
|
| 1174 |
+
}
|
| 1175 |
+
m.isCommand = true
|
| 1176 |
+
let xp = 'exp' in plugin ? parseInt(plugin.exp) : 17 // XP Earning per command
|
| 1177 |
+
// if (xp > 200) m.reply('Ngecit -_-') // Hehehe
|
| 1178 |
+
// else m.exp += xp
|
| 1179 |
+
if (xp) m.exp += xp
|
| 1180 |
+
if (!isPrems && plugin.limit && global.db.data.users[m.sender].limit < plugin.limit * 1) {
|
| 1181 |
+
//this.replyV2(m.chat, global.hbsl, m)
|
| 1182 |
+
conn.sendMessage(m.chat, {text: hbsl, thumbnailUrl: thumbs, contextInfo:{ mentionedJid: [m.sender] , externalAdReply: { showAdAttribution: true,
|
| 1183 |
+
mediaType: 2,
|
| 1184 |
+
mediaUrl: 'https://www.instagram.com/tv/Cab9X6xB6S0/?igshid=MzRlODBiNWFlZA==',
|
| 1185 |
+
title: me,
|
| 1186 |
+
body: wm,
|
| 1187 |
+
sourceUrl: sgc,
|
| 1188 |
+
thumbnailUrl: thumbs,
|
| 1189 |
+
}
|
| 1190 |
+
}},{quoted:m})
|
| 1191 |
+
|
| 1192 |
+
continue // Limit habis
|
| 1193 |
+
}
|
| 1194 |
+
let extra = {
|
| 1195 |
+
match,
|
| 1196 |
+
usedPrefix,
|
| 1197 |
+
noPrefix,
|
| 1198 |
+
_args,
|
| 1199 |
+
args,
|
| 1200 |
+
command,
|
| 1201 |
+
text,
|
| 1202 |
+
conn: this,
|
| 1203 |
+
participants,
|
| 1204 |
+
groupMetadata,
|
| 1205 |
+
user,
|
| 1206 |
+
bot,
|
| 1207 |
+
isROwner,
|
| 1208 |
+
isOwner,
|
| 1209 |
+
isRAdmin,
|
| 1210 |
+
isAdmin,
|
| 1211 |
+
isBotAdmin,
|
| 1212 |
+
isPrems,
|
| 1213 |
+
chatUpdate,
|
| 1214 |
+
__dirname: ___dirname,
|
| 1215 |
+
__filename
|
| 1216 |
+
}
|
| 1217 |
+
try {
|
| 1218 |
+
await plugin.call(this, m, extra)
|
| 1219 |
+
if (!isPrems) m.limit = m.limit || plugin.limit || false
|
| 1220 |
+
} catch (e) {
|
| 1221 |
+
// Error occured
|
| 1222 |
+
m.error = e
|
| 1223 |
+
console.error(e)
|
| 1224 |
+
if (e) {
|
| 1225 |
+
let text = format(e)
|
| 1226 |
+
for (let key of Object.values(global.APIKeys)) text = text.replace(new RegExp(key, 'g'), '#HIDDEN#')
|
| 1227 |
+
if (e.name) {
|
| 1228 |
+
for (let [jid] of global.owner.filter(([number, _, isDeveloper]) => isDeveloper && number)) {
|
| 1229 |
+
let data = (await conn.onWhatsApp(jid))[0] || {}
|
| 1230 |
+
if (data.exists) m.reply(`*Plugin:* ${m.plugin}\n*Sender:* wa.me/${m.sender.split`@`[0]}\n*Chat:* ${m.chat}\n*Command:* ${usedPrefix}${command} ${args.join(' ')}\n\n\`\`\`${text}\`\`\``.trim(), data.jid)
|
| 1231 |
+
}
|
| 1232 |
+
}
|
| 1233 |
+
m.reply(String(e))
|
| 1234 |
+
}
|
| 1235 |
+
} finally {
|
| 1236 |
+
// m.reply(util.format(_user))
|
| 1237 |
+
if (typeof plugin.after === 'function') {
|
| 1238 |
+
try {
|
| 1239 |
+
await plugin.after.call(this, m, extra)
|
| 1240 |
+
} catch (e) {
|
| 1241 |
+
console.error(e)
|
| 1242 |
+
}
|
| 1243 |
+
}
|
| 1244 |
+
if (m.limit) m.reply(+m.limit + ` Limit terpakai\n`+readmore+`Sisa Limit mu: ${toSimpl(global.db.data.users[m.sender].limit)}`)
|
| 1245 |
+
}
|
| 1246 |
+
break
|
| 1247 |
+
}
|
| 1248 |
+
}
|
| 1249 |
+
} catch (e) {
|
| 1250 |
+
console.error(e)
|
| 1251 |
+
} finally {
|
| 1252 |
+
// if (opts['queque'] && m.text)
|
| 1253 |
+
if (m.text) {
|
| 1254 |
+
const quequeIndex = this.msgqueue.indexOf(m.id || m.key.id)
|
| 1255 |
+
if (quequeIndex !== -1) this.msgqueue.splice(quequeIndex, 1)
|
| 1256 |
+
}
|
| 1257 |
+
// console.log(global.db.data.users[m.sender])
|
| 1258 |
+
let user, stats = global.db.data.stats
|
| 1259 |
+
if (m) {
|
| 1260 |
+
if (m.sender && (user = global.db.data.users[m.sender])) {
|
| 1261 |
+
user.exp += m.exp
|
| 1262 |
+
user.limit -= m.limit * 2
|
| 1263 |
+
}
|
| 1264 |
+
let stat
|
| 1265 |
+
if (m.plugin) {
|
| 1266 |
+
let now = +new Date
|
| 1267 |
+
if (m.plugin in stats) {
|
| 1268 |
+
stat = stats[m.plugin]
|
| 1269 |
+
if (!isNumber(stat.total)) stat.total = 1
|
| 1270 |
+
if (!isNumber(stat.success)) stat.success = m.error != null ? 0 : 1
|
| 1271 |
+
if (!isNumber(stat.last)) stat.last = now
|
| 1272 |
+
if (!isNumber(stat.lastSuccess)) stat.lastSuccess = m.error != null ? 0 : now
|
| 1273 |
+
} else stat = stats[m.plugin] = {
|
| 1274 |
+
total: 1,
|
| 1275 |
+
success: m.error != null ? 0 : 1,
|
| 1276 |
+
last: now,
|
| 1277 |
+
lastSuccess: m.error != null ? 0 : now
|
| 1278 |
+
}
|
| 1279 |
+
stat.total += 1
|
| 1280 |
+
stat.last = now
|
| 1281 |
+
if (m.error == null) {
|
| 1282 |
+
stat.success += 1
|
| 1283 |
+
stat.lastSuccess = now
|
| 1284 |
+
}
|
| 1285 |
+
}
|
| 1286 |
+
}
|
| 1287 |
+
|
| 1288 |
+
try {
|
| 1289 |
+
if (!opts['noprint']) await (await import(`./lib/print.js?update=${Date.now()}`)).default(m, this)
|
| 1290 |
+
} catch (e) {
|
| 1291 |
+
console.log(m, m.quoted, e)
|
| 1292 |
+
}
|
| 1293 |
+
await this.sendPresenceUpdate('available', m.chat)
|
| 1294 |
+
if (opts['autoread']) await this.readMessages([m.key])
|
| 1295 |
+
}
|
| 1296 |
+
}
|
| 1297 |
+
|
| 1298 |
+
export async function participantsUpdate({ id, participants, action }) {
|
| 1299 |
+
if (opts['self']) return
|
| 1300 |
+
// if (id in conn.chats) return // First login will spam
|
| 1301 |
+
if (this.isInit) return
|
| 1302 |
+
if (global.db.data == null) await loadDatabase()
|
| 1303 |
+
let chat = global.db.data.chats[id] || {}
|
| 1304 |
+
let text = ''
|
| 1305 |
+
switch (action) {
|
| 1306 |
+
case 'add':
|
| 1307 |
+
case 'remove':
|
| 1308 |
+
if (chat.welcome) {
|
| 1309 |
+
let groupMetadata = await this.groupMetadata(id) || (conn.chats[id] || {}).metadata
|
| 1310 |
+
for (let user of participants) {
|
| 1311 |
+
let pp = 'https://telegra.ph/file/24fa902ead26340f3df2c.png'
|
| 1312 |
+
try {
|
| 1313 |
+
pp = await( await conn.profilePictureUrl(user, 'image').catch(() => 'https://telegra.ph/file/24fa902ead26340f3df2c.png'))
|
| 1314 |
+
} catch (e) {
|
| 1315 |
+
} finally {
|
| 1316 |
+
text = (action === 'add' ? (chat.sWelcome || this.welcome || conn.welcome || 'Welcome, @user!').replace('@subject', await this.getName(id)).replace('@desc', groupMetadata.desc?.toString() || '') :
|
| 1317 |
+
(chat.sBye || this.bye || conn.bye || 'Bye, @user!')).replace('@user', '@' + user.split('@')[0])
|
| 1318 |
+
//this.sendFile(id, pp, 'pp.jpg', text, null, false, { mentions: [user] })
|
| 1319 |
+
//const sender = id.participants[0];
|
| 1320 |
+
|
| 1321 |
+
const contextInfo = {
|
| 1322 |
+
forwardingScore: 50,
|
| 1323 |
+
isForwarded: true,
|
| 1324 |
+
mentionedJid: [user],
|
| 1325 |
+
externalAdReply:{
|
| 1326 |
+
title: me,
|
| 1327 |
+
mediaType: 1,
|
| 1328 |
+
renderLargerThumbnail : true,
|
| 1329 |
+
thumbnailUrl: pp,
|
| 1330 |
+
sourceUrl:sgc,
|
| 1331 |
+
}
|
| 1332 |
+
}
|
| 1333 |
+
|
| 1334 |
+
this.sendMessage(id, {contextInfo, text: text})
|
| 1335 |
+
|
| 1336 |
+
/*this.sendMessage(id, {text: text, thumbnail: await( await this.getFile(pp)).data , contextInfo:{ mentionedJid: [user] , externalAdReply: { showAdAttribution: true,
|
| 1337 |
+
mediaType: 1,
|
| 1338 |
+
renderLargerThumbnail : true,
|
| 1339 |
+
mediaUrl: 'https://chat.whatsapp.com/Bd2mN13f4QV7Mu1vtZ0NuP',
|
| 1340 |
+
title: ' 「 Welcome Message 」 ',
|
| 1341 |
+
body: me,
|
| 1342 |
+
sourceUrl: 'https://chat.whatsapp.com/Bd2mN13f4QV7Mu1vtZ0NuP', thumbnail: await( await this.getFile(pp)).data
|
| 1343 |
+
}
|
| 1344 |
+
}})*/
|
| 1345 |
+
}
|
| 1346 |
+
}
|
| 1347 |
+
}
|
| 1348 |
+
break
|
| 1349 |
+
case 'promote':
|
| 1350 |
+
text = (chat.sPromote || this.spromote || conn.spromote || '@user ```is now Admin```')
|
| 1351 |
+
case 'demote':
|
| 1352 |
+
if (!text) text = (chat.sDemote || this.sdemote || conn.sdemote || '@user ```is no longer Admin```')
|
| 1353 |
+
text = text.replace('@user', '@' + participants[0].split('@')[0])
|
| 1354 |
+
if (chat.detect) this.sendMessage(id, { text, mentions: this.parseMention(text) })
|
| 1355 |
+
break
|
| 1356 |
+
}
|
| 1357 |
+
}
|
| 1358 |
+
|
| 1359 |
+
export async function deleteUpdate(message) {
|
| 1360 |
+
try {
|
| 1361 |
+
const { fromMe, id, participant } = message
|
| 1362 |
+
if (fromMe) return
|
| 1363 |
+
let msg = this.serializeM(this.loadMessage(id))
|
| 1364 |
+
if (!msg) return
|
| 1365 |
+
let chat = global.db.data.chats[msg.chat] || {}
|
| 1366 |
+
if (!chat.antiDelete) return
|
| 1367 |
+
await this.reply(msg.chat, `
|
| 1368 |
+
Terdeteksi @${participant.split`@`[0]} telah menghapus pesan
|
| 1369 |
+
Untuk mematikan fitur ini, ketik
|
| 1370 |
+
*.enable delete*
|
| 1371 |
+
`.trim(), msg, { mentions: [participant] })
|
| 1372 |
+
this.copyNForward(msg.chat, msg).catch(e => console.log(e, msg))
|
| 1373 |
+
} catch (e) {
|
| 1374 |
+
console.error(e)
|
| 1375 |
+
}
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
global.dfail = (type, m, conn) => {
|
| 1379 |
+
let msg = {
|
| 1380 |
+
rowner: 'Perintah ini hanya dapat digunakan oleh _*OWWNER!1!1!*_',
|
| 1381 |
+
owner: 'Perintah ini hanya dapat digunakan oleh _*Owner Bot*_!',
|
| 1382 |
+
mods: 'Perintah ini hanya dapat digunakan oleh _*Moderator*_ !',
|
| 1383 |
+
premium: `Perintah ini hanya untuk member _*Premium*_ !\n\nketik .buyprem untuk membeli premium\nTotal user premium saat ini ${Object.values(global.db.data.users).filter(user => user.premium == true).length}`,
|
| 1384 |
+
group: 'Perintah ini hanya dapat digunakan di grup!',
|
| 1385 |
+
private: 'Perintah ini hanya dapat digunakan di Chat Pribadi!',
|
| 1386 |
+
admin: 'Perintah ini hanya untuk *Admin* grup!',
|
| 1387 |
+
botAdmin: 'Jadikan bot sebagai *Admin* untuk menggunakan perintah ini!',
|
| 1388 |
+
unreg: 'Silahkan daftar untuk menggunakan fitur ini dengan cara mengetik:\n\n*#daftar nama.umur*\n\nContoh: *#daftar Manusia.16*',
|
| 1389 |
+
restrict: 'Fitur ini di *disable*!'
|
| 1390 |
+
}[type]
|
| 1391 |
+
if (msg) return conn.sendMessage(m.chat, {
|
| 1392 |
+
text: msg,
|
| 1393 |
+
contextInfo: {
|
| 1394 |
+
externalAdReply: {
|
| 1395 |
+
title: wm,
|
| 1396 |
+
thumbnailUrl: thumbs,
|
| 1397 |
+
sourceUrl: `0`,
|
| 1398 |
+
mediaType: 1,
|
| 1399 |
+
renderLargerThumbnail: true
|
| 1400 |
+
}}}, { quoted: m})
|
| 1401 |
+
}
|
| 1402 |
+
|
| 1403 |
+
let file = global.__filename(import.meta.url, true)
|
| 1404 |
+
watchFile(file, async () => {
|
| 1405 |
+
unwatchFile(file)
|
| 1406 |
+
console.log(chalk.redBright("Update 'handler.js'"))
|
| 1407 |
+
if (global.reloadHandler) console.log(await global.reloadHandler())
|
| 1408 |
+
})
|
handlers.js
ADDED
|
@@ -0,0 +1,1085 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
const simple = require('./lib/simple')
|
| 2 |
+
const util = require('util')
|
| 3 |
+
const { color } = require('./lib/color')
|
| 4 |
+
const moment = require("moment-timezone")
|
| 5 |
+
const fetch = require("node-fetch")
|
| 6 |
+
|
| 7 |
+
const isNumber = x => typeof x === 'number' && !isNaN(x)
|
| 8 |
+
const delay = ms => isNumber(ms) && new Promise(resolve => setTimeout(resolve, ms))
|
| 9 |
+
|
| 10 |
+
module.exports = {
|
| 11 |
+
async handler(chatUpdate) {
|
| 12 |
+
if (global.db.data == null) await loadDatabase()
|
| 13 |
+
this.msgqueque = this.msgqueque || []
|
| 14 |
+
// console.log(chatUpdate)
|
| 15 |
+
if (!chatUpdate) return
|
| 16 |
+
this.pushMessage(chatUpdate.messages).catch(console.error)
|
| 17 |
+
// if (!(chatUpdate.type === 'notify' || chatUpdate.type === 'append')) return
|
| 18 |
+
let m = chatUpdate.messages[chatUpdate.messages.length - 1]
|
| 19 |
+
global.settings = global.db.data.settings
|
| 20 |
+
global.fkontak = global.fkontak
|
| 21 |
+
if (!m) return
|
| 22 |
+
// console.log(m)
|
| 23 |
+
try {
|
| 24 |
+
m = simple.smsg(this, m) || m
|
| 25 |
+
if (!m) return
|
| 26 |
+
// console.log(m)
|
| 27 |
+
m.exp = 0
|
| 28 |
+
m.limit = false
|
| 29 |
+
try {
|
| 30 |
+
let user = global.db.data.users[m.sender]
|
| 31 |
+
if (typeof user !== 'object') global.db.data.users[m.sender] = {}
|
| 32 |
+
if (user) {
|
| 33 |
+
if (!isNumber(user.exp)) user.exp = 0
|
| 34 |
+
if (!isNumber(user.limit)) user.limit = 700
|
| 35 |
+
if (!isNumber(user.joinlimit)) user.joinlimit = 1
|
| 36 |
+
if (!isNumber(user.money)) user.money = 100000
|
| 37 |
+
if (!isNumber(user.bank)) user.bank = 100000
|
| 38 |
+
if (!isNumber(user.lastclaim)) user.lastclaim = 0
|
| 39 |
+
if (!('registered' in user)) user.registered = false
|
| 40 |
+
if (!user.registered) {
|
| 41 |
+
if (!('name' in user)) user.name = m.name
|
| 42 |
+
if (!isNumber(user.age)) user.age = -1
|
| 43 |
+
if (!isNumber(user.regTime)) user.regTime = -1
|
| 44 |
+
}
|
| 45 |
+
if (!isNumber(user.afk)) user.afk = -1
|
| 46 |
+
if (!('afkReason' in user)) user.afkReason = ''
|
| 47 |
+
if (!('pasangan' in user)) user.pasangan = ''
|
| 48 |
+
if (!('sahabat' in user)) user.sahabat = ''
|
| 49 |
+
if (!('banned' in user)) user.banned = false
|
| 50 |
+
if (!('premium' in user)) user.premium = false
|
| 51 |
+
if (!user.acc) user.acc = false
|
| 52 |
+
if (!user.acc) user.end = false
|
| 53 |
+
if (!isNumber(user.premiumDate)) user.premiumDate = 0
|
| 54 |
+
if (!isNumber(user.bannedDate)) user.bannedDate = 0
|
| 55 |
+
if (!isNumber(user.warn)) user.warn = 0
|
| 56 |
+
if (!isNumber(user.count)) user.count = 0
|
| 57 |
+
if (!isNumber(user.level)) user.level = 0
|
| 58 |
+
if (!('role' in user)) user.role = 'Beginner'
|
| 59 |
+
if (!('autolevelup' in user)) user.autolevelup = true
|
| 60 |
+
|
| 61 |
+
if (!isNumber(user.health)) user.health = 100
|
| 62 |
+
if (!isNumber(user.healtmonster)) user.healtmonster = 100
|
| 63 |
+
if (!isNumber(user.armormonster)) user.armormonster = 0
|
| 64 |
+
if (!isNumber(user.potion)) user.potion = 0
|
| 65 |
+
if (!isNumber(user.tiketcoin)) user.tiketcoin = 0
|
| 66 |
+
if (!isNumber(user.healtmonster)) user.healtmonster = 0
|
| 67 |
+
if (!isNumber(user.pc)) user.pc = 0
|
| 68 |
+
if (!isNumber(user.spammer)) user.spammer = 0
|
| 69 |
+
if (!isNumber(user.expg)) user.expg = 0
|
| 70 |
+
if (!isNumber(user.trash)) user.trash = 0
|
| 71 |
+
if (!isNumber(user.sampah)) user.sampah = 0
|
| 72 |
+
if (!isNumber(user.wood)) user.wood = 0
|
| 73 |
+
if (!isNumber(user.rock)) user.rock = 0
|
| 74 |
+
if (!isNumber(user.string)) user.string = 0
|
| 75 |
+
if (!isNumber(user.petFood)) user.petFood = 0
|
| 76 |
+
|
| 77 |
+
if (!isNumber(user.emerald)) user.emerald = 0
|
| 78 |
+
if (!isNumber(user.diamond)) user.diamond = 0
|
| 79 |
+
if (!isNumber(user.berlian)) user.berlian = 0
|
| 80 |
+
if (!isNumber(user.emas)) user.emas = 0
|
| 81 |
+
if (!isNumber(user.gold)) user.gold = 0
|
| 82 |
+
if (!isNumber(user.iron)) user.iron = 0
|
| 83 |
+
if (!isNumber(user.string)) user.string = 0
|
| 84 |
+
|
| 85 |
+
if (!isNumber(user.anggur)) user.anggur = 0
|
| 86 |
+
if (!isNumber(user.jeruk)) user.jeruk = 0
|
| 87 |
+
if (!isNumber(user.mangga)) user.mangga = 0
|
| 88 |
+
if (!isNumber(user.apel)) user.apel = 0
|
| 89 |
+
if (!isNumber(user.pisang)) user.pisang = 0
|
| 90 |
+
if (!isNumber(user.bibitanggur)) user.bibitanggur = 0
|
| 91 |
+
if (!isNumber(user.bibitjeruk)) user.bibitjeruk = 0
|
| 92 |
+
if (!isNumber(user.bibitmangga)) user.bibitmangga = 0
|
| 93 |
+
if (!isNumber(user.bibitapel)) user.bibitapel = 0
|
| 94 |
+
if (!isNumber(user.bibitpisang)) user.bibitpisang = 0
|
| 95 |
+
if (!isNumber(user.gardenboxs)) user.gardenboxs = 0
|
| 96 |
+
if (!isNumber(user.spagety)) user.spagety = 0
|
| 97 |
+
if (!isNumber(user.stamina)) user.stamina = 0
|
| 98 |
+
if (!isNumber(user.bensin)) user.bensin = 0
|
| 99 |
+
|
| 100 |
+
if (!isNumber(user.botol)) user.botol = 0
|
| 101 |
+
if (!isNumber(user.kardus)) user.kardus = 0
|
| 102 |
+
if (!isNumber(user.kaleng)) user.kaleng = 0
|
| 103 |
+
if (!isNumber(user.aqua)) user.aqua = 0
|
| 104 |
+
if (!isNumber(user.kayu)) user.kayu = 0
|
| 105 |
+
if (!isNumber(user.batu)) user.batu = 0
|
| 106 |
+
if (!isNumber(user.kapak)) user.kapak = 0
|
| 107 |
+
if (!isNumber(user.obat)) user.obat = 0
|
| 108 |
+
if (!isNumber(user.clan)) user.clan = 0
|
| 109 |
+
if (!isNumber(user.pickaxe)) user.pickaxe = 0
|
| 110 |
+
|
| 111 |
+
if (!isNumber(user.common)) user.common = 0
|
| 112 |
+
if (!isNumber(user.cupon)) user.cupon = 0
|
| 113 |
+
if (!isNumber(user.gems)) user.gems = 0
|
| 114 |
+
if (!isNumber(user.boxs)) user.boxs = 0
|
| 115 |
+
if (!isNumber(user.uncommon)) user.uncommon = 0
|
| 116 |
+
if (!isNumber(user.mythic)) user.mythic = 0
|
| 117 |
+
if (!isNumber(user.legendary)) user.legendary = 0
|
| 118 |
+
if (!isNumber(user.pet)) user.pet = 0
|
| 119 |
+
if (!isNumber(user.ramuan)) user.ramuan = 0
|
| 120 |
+
|
| 121 |
+
if (!isNumber(user.lastramuanclaim)) user.lastramuanclaim = 0
|
| 122 |
+
if (!isNumber(user.lastpotionclaim)) user.lastpotionclaim = 0
|
| 123 |
+
if (!isNumber(user.laststringclaim)) user.laststringclaim = 0
|
| 124 |
+
if (!isNumber(user.lastswordclaim)) user.lastswordclaim = 0
|
| 125 |
+
if (!isNumber(user.lastsironclaim)) user.lastsironclaim = 0
|
| 126 |
+
if (!isNumber(user.lastweaponclaim)) user.lastweaponclaim = 0
|
| 127 |
+
if (!isNumber(user.lastsmancingclaim)) user.lastsmancingclaim = 0
|
| 128 |
+
|
| 129 |
+
if (!isNumber(user.ramuannagalast)) user.ramuannagalast = 0
|
| 130 |
+
if (!isNumber(user.ramuanrubahlast)) user.ramuanrubahlast = 0
|
| 131 |
+
if (!isNumber(user.ramuankucinglast)) user.ramuankucinglast = 0
|
| 132 |
+
if (!isNumber(user.ramuanserigalalast)) user.ramuanserigalalast = 0
|
| 133 |
+
if (!isNumber(user.ramuangriffinlast)) user.ramuangriffinlast = 0
|
| 134 |
+
if (!isNumber(user.ramuanphonixlast)) user.ramuanphonixlast = 0
|
| 135 |
+
if (!isNumber(user.ramuancentaurlast)) user.ramuancentaurlast = 0
|
| 136 |
+
if (!isNumber(user.ramuankudalast)) user.ramuankudalast = 0
|
| 137 |
+
if (!isNumber(user.ramuankyubilast)) user.ramuankyubilast = 0
|
| 138 |
+
if (!isNumber(user.ramuanherolast)) user.ramuanherolast = 0
|
| 139 |
+
|
| 140 |
+
if (!isNumber(user.hero)) user.hero = 1
|
| 141 |
+
if (!isNumber(user.exphero)) user.exphero = 0
|
| 142 |
+
if (!isNumber(user.pillhero)) user.pillhero= 0
|
| 143 |
+
if (!isNumber(user.herolastclaim)) user.herolastclaim = 0
|
| 144 |
+
|
| 145 |
+
if (!isNumber(user.paus)) user.paus = 0
|
| 146 |
+
if (!isNumber(user.kepiting)) user.kepiting = 0
|
| 147 |
+
if (!isNumber(user.cumi)) user.cumi = 0
|
| 148 |
+
if (!isNumber(user.gurita)) user.gurita = 0
|
| 149 |
+
if (!isNumber(user.buntal)) user.buntal = 0
|
| 150 |
+
if (!isNumber(user.dory)) user.dory = 0
|
| 151 |
+
if (!isNumber(user.lobster)) user.lobster = 0
|
| 152 |
+
if (!isNumber(user.lumba)) user.lumba = 0
|
| 153 |
+
if (!isNumber(user.hiu)) user.hiu = 0
|
| 154 |
+
if (!isNumber(user.ikan)) user.ikan = 0
|
| 155 |
+
if (!isNumber(user.udang)) user.udang = 0
|
| 156 |
+
if (!isNumber(user.orca)) user.orca = 0
|
| 157 |
+
if (!isNumber(user.umpan)) user.umpan = 0
|
| 158 |
+
if (!isNumber(user.pancingan)) user.pancingan = 1
|
| 159 |
+
if (!isNumber(user.anakpancingan)) user.anakpancingan = 0
|
| 160 |
+
if (!isNumber(user.lastmancingeasy)) user.lastmancingeasy = 0
|
| 161 |
+
if (!isNumber(user.lastmancingnormal)) user.lastmancingnormal = 0
|
| 162 |
+
if (!isNumber(user.lastmancinghard)) user.lastmancinghard = 0
|
| 163 |
+
if (!isNumber(user.lastmancingextreme)) user.lastmancingextreme = 0
|
| 164 |
+
|
| 165 |
+
if (!isNumber(user.kucing)) user.kucing = 0
|
| 166 |
+
if (!isNumber(user.kucinglastclaim)) user.kucinglastclaim = 0
|
| 167 |
+
if (!isNumber(user.kuda)) user.kuda = 0
|
| 168 |
+
if (!isNumber(user.kudalastclaim)) user.kudalastclaim = 0
|
| 169 |
+
if (!isNumber(user.rubah)) user.rubah = 0
|
| 170 |
+
if (!isNumber(user.rubahlastclaim)) user.rubahlastclaim = 0
|
| 171 |
+
if (!isNumber(user.anjing)) user.anjing = 0
|
| 172 |
+
if (!isNumber(user.anjinglastclaim)) user.anjinglastclaim = 0
|
| 173 |
+
if (!isNumber(user.serigala)) user.serigala = 0
|
| 174 |
+
if (!isNumber(user.serigalalastclaim)) user.serigalalastclaim = 0
|
| 175 |
+
if (!isNumber(user.naga)) user.naga = 0
|
| 176 |
+
if (!isNumber(user.nagalastclaim)) user.nagalastclaim = 0
|
| 177 |
+
if (!isNumber(user.phonix)) user.phonix = 0
|
| 178 |
+
if (!isNumber(user.phonixlastclaim)) user.phonixlastclaim = 0
|
| 179 |
+
if (!isNumber(user.kyubi)) user.kyubi = 0
|
| 180 |
+
if (!isNumber(user.kyubilastclaim)) user.kyubilastclaim = 0
|
| 181 |
+
if (!isNumber(user.griffin)) user.griffin = 0
|
| 182 |
+
if (!isNumber(user.griffinlastclaim)) user.griffinlastclaim = 0
|
| 183 |
+
if (!isNumber(user.centaur)) user.centaur = 0
|
| 184 |
+
if (!isNumber(user.centaurlastclaim)) user.centaurlastclaim = 0
|
| 185 |
+
|
| 186 |
+
if (!isNumber(user.anakkucing)) user.anakkucing = 0
|
| 187 |
+
if (!isNumber(user.anakkuda)) user.anakkuda = 0
|
| 188 |
+
if (!isNumber(user.anakrubah)) user.anakrubah = 0
|
| 189 |
+
if (!isNumber(user.anakanjing)) user.anakanjing = 0
|
| 190 |
+
if (!isNumber(user.anakserigala)) user.anakserigala = 0
|
| 191 |
+
if (!isNumber(user.anaknaga)) user.anaknaga = 0
|
| 192 |
+
if (!isNumber(user.anakphonix)) user.anakphonix = 0
|
| 193 |
+
if (!isNumber(user.anakkyubi)) user.anakkyubi = 0
|
| 194 |
+
if (!isNumber(user.anakgriffin)) user.anakgriffin = 0
|
| 195 |
+
if (!isNumber(user.anakcentaur)) user.anakcentaur = 0
|
| 196 |
+
|
| 197 |
+
if (!isNumber(user.makananpet)) user.makananpet = 0
|
| 198 |
+
if (!isNumber(user.makanannaga)) user.makanannaga = 0
|
| 199 |
+
if (!isNumber(user.makananphonix)) user.makananphonix = 0
|
| 200 |
+
if (!isNumber(user.makanangriffin)) user.makanangriffin = 0
|
| 201 |
+
if (!isNumber(user.makanankyubi)) user.makanankyubi = 0
|
| 202 |
+
if (!isNumber(user.makanancentaur)) user.makanancentaur = 0
|
| 203 |
+
|
| 204 |
+
if (!isNumber(user.horse)) user.horse = 0
|
| 205 |
+
if (!isNumber(user.horseexp)) user.horseexp = 0
|
| 206 |
+
if (!isNumber(user.cat)) user.cat = 0
|
| 207 |
+
if (!isNumber(user.catexp)) user.catexp = 0
|
| 208 |
+
if (!isNumber(user.fox)) user.fox = 0
|
| 209 |
+
if (!isNumber(user.foxhexp)) user.foxexp = 0
|
| 210 |
+
if (!isNumber(user.dog)) user.dog = 0
|
| 211 |
+
if (!isNumber(user.dogexp)) user.dogexp = 0
|
| 212 |
+
|
| 213 |
+
if (!isNumber(user.horselastfeed)) user.horselastfeed = 0
|
| 214 |
+
if (!isNumber(user.catlastfeed)) user.catlastfeed = 0
|
| 215 |
+
if (!isNumber(user.foxlastfeed)) user.foxlastfeed = 0
|
| 216 |
+
if (!isNumber(user.doglastfeed)) user.doglastfeed = 0
|
| 217 |
+
|
| 218 |
+
if (!isNumber(user.armor)) user.armor = 0
|
| 219 |
+
if (!isNumber(user.armordurability)) user.armordurability = 0
|
| 220 |
+
if (!isNumber(user.weapon)) user.weapon = 0
|
| 221 |
+
if (!isNumber(user.weapondurability)) user.weapondurability = 0
|
| 222 |
+
if (!isNumber(user.sword)) user.sword = 0
|
| 223 |
+
if (!isNumber(user.sworddurability)) user.sworddurability = 0
|
| 224 |
+
if (!isNumber(user.pickaxe)) user.pickaxe = 0
|
| 225 |
+
if (!isNumber(user.pickaxedurability)) user.pickaxedurability = 0
|
| 226 |
+
if (!isNumber(user.fishingrod)) user.fishingrod = 0
|
| 227 |
+
if (!isNumber(user.fishingroddurability)) user.fishingroddurability = 0
|
| 228 |
+
|
| 229 |
+
if (!isNumber(user.kerjasatu)) user.kerjasatu = 0
|
| 230 |
+
if (!isNumber(user.kerjadua)) user.kerjadua = 0
|
| 231 |
+
if (!isNumber(user.kerjatiga)) user.kerjatiga = 0
|
| 232 |
+
if (!isNumber(user.kerjaempat)) user.kerjaempat = 0
|
| 233 |
+
if (!isNumber(user.kerjalima)) user.kerjalima = 0
|
| 234 |
+
if (!isNumber(user.kerjaenam)) user.kerjaenam = 0
|
| 235 |
+
if (!isNumber(user.kerjatujuh)) user.kerjatujuh = 0
|
| 236 |
+
if (!isNumber(user.kerjadelapan)) user.kerjadelapan = 0
|
| 237 |
+
if (!isNumber(user.kerjasembilan)) user.kerjasembilan = 0
|
| 238 |
+
if (!isNumber(user.kerjasepuluh)) user.kerjasepuluh = 0
|
| 239 |
+
if (!isNumber(user.kerjasebelas)) user.kerjasebelas = 0
|
| 240 |
+
if (!isNumber(user.kerjaduabelas)) user.kerjaduabelas = 0
|
| 241 |
+
if (!isNumber(user.kerjatigabelas)) user.kerjatigabelas = 0
|
| 242 |
+
if (!isNumber(user.kerjaempatbelas)) user.kerjaempatbelas = 0
|
| 243 |
+
if (!isNumber(user.kerjalimabelas)) user.kerjalimabelas = 0
|
| 244 |
+
if (!isNumber(user.kerjaenambelas)) user.kerjaenambelas = 0
|
| 245 |
+
if (!isNumber(user.kerjatujuhbelas)) user.kerjatujuhbelas = 0
|
| 246 |
+
if (!isNumber(user.kerjadelapanbelas)) user.kerjadelapanbelas = 0
|
| 247 |
+
if (!isNumber(user.kerjasembilanbelas)) user.kerjasembilanbelas = 0
|
| 248 |
+
if (!isNumber(user.kerjaduapuluh)) user.kerjaduapuluh = 0
|
| 249 |
+
if (!isNumber(user.kerjaduasatu)) user.kerjaduasatu = 0
|
| 250 |
+
if (!isNumber(user.kerjaduadua)) user.kerjaduadua = 0
|
| 251 |
+
if (!isNumber(user.kerjaduatiga)) user.kerjaduatiga = 0
|
| 252 |
+
if (!isNumber(user.kerjaduaempat)) user.kerjaduaempat = 0
|
| 253 |
+
if (!isNumber(user.kerjadualima)) user.kerjadualima = 0
|
| 254 |
+
if (!isNumber(user.kerjaduaenam)) user.kerjaduaenam = 0
|
| 255 |
+
if (!isNumber(user.kerjaduatujuh)) user.kerjaduatujuh = 0
|
| 256 |
+
if (!isNumber(user.kerjaduadelapan)) user.kerjaduadelapan = 0
|
| 257 |
+
if (!isNumber(user.kerjaduasembilan)) user.kerjaduasembilan = 0
|
| 258 |
+
if (!isNumber(user.kerjatigapuluh)) user.kerjatigapuluh = 0
|
| 259 |
+
|
| 260 |
+
if (!isNumber(user.judilast)) user.judilast = 0
|
| 261 |
+
if (!isNumber(user.reglast)) user.reglast = 0
|
| 262 |
+
if (!isNumber(user.unreglast)) user.unreglast = 0
|
| 263 |
+
if (!isNumber(user.snlast)) user.snlast = 0
|
| 264 |
+
if (!isNumber(user.spinlast)) user.spinlast = 0
|
| 265 |
+
|
| 266 |
+
if (!isNumber(user.lastwarpet)) user.lastwarpet = 0
|
| 267 |
+
if (!isNumber(user.lastspam)) user.lastspam = 0
|
| 268 |
+
if (!isNumber(user.lastpekerjaan)) user.lastpekerjaan = 0
|
| 269 |
+
if (!isNumber(user.lastclaim)) user.lastclaim = 0
|
| 270 |
+
if (!isNumber(user.lastadventure)) user.lastadventure = 0
|
| 271 |
+
if (!isNumber(user.lastfishing)) user.lastfishing = 0
|
| 272 |
+
if (!isNumber(user.lastdungeon)) user.lastdungeon = 0
|
| 273 |
+
if (!isNumber(user.lastcrusade)) user.lastcrusade = 0
|
| 274 |
+
if (!isNumber(user.lastduel)) user.lastduel = 0
|
| 275 |
+
if (!isNumber(user.lastcode)) user.lastcode = 0
|
| 276 |
+
if (!isNumber(user.lastlink)) user.lastlink = 0
|
| 277 |
+
if (!isNumber(user.lastrob)) user.lastrob = 0
|
| 278 |
+
if (!isNumber(user.lastopen)) user.lastopen = 0
|
| 279 |
+
if (!isNumber(user.lasteasy)) user.lasteasy = 0
|
| 280 |
+
if (!isNumber(user.lastnambang)) user.lastnambang = 0
|
| 281 |
+
if (!isNumber(user.lastbunuhi)) user.lastbunuhi = 0
|
| 282 |
+
if (!isNumber(user.lastmining)) user.lastmining = 0
|
| 283 |
+
if (!isNumber(user.lasthunt)) user.lasthunt = 0
|
| 284 |
+
if (!isNumber(user.lastweekly)) user.lastweekly = 0
|
| 285 |
+
if (!isNumber(user.lastmonthly)) user.lastmonthly = 0
|
| 286 |
+
if (!isNumber(user.lastmulung)) user.lastmulung = 0
|
| 287 |
+
if (!isNumber(user.lastdagang)) user.lastdagang = 0
|
| 288 |
+
if (!isNumber(user.lastnebang)) user.lastnebang = 0
|
| 289 |
+
if (!isNumber(user.lastberkebon))user.lastberkebon = 0
|
| 290 |
+
if (!isNumber(user.lastadventure)) user.lastadventure = 0
|
| 291 |
+
if (!isNumber(user.lastberburu)) user.lastberburu = 0
|
| 292 |
+
if (!isNumber(user.lastngojek)) user.lastngojek = 0
|
| 293 |
+
} else global.db.data.users[m.sender] = {
|
| 294 |
+
exp: 0,
|
| 295 |
+
limit: 700,
|
| 296 |
+
joinlimit: 1,
|
| 297 |
+
spammer: 0,
|
| 298 |
+
money: 10000,
|
| 299 |
+
bank: 10000,
|
| 300 |
+
health: 100,
|
| 301 |
+
tiketcoin: 0,
|
| 302 |
+
healtmonster: 100,
|
| 303 |
+
armormonster: 0,
|
| 304 |
+
lastclaim: 0,
|
| 305 |
+
registered: false,
|
| 306 |
+
name: m.name,
|
| 307 |
+
age: -1,
|
| 308 |
+
regTime: -1,
|
| 309 |
+
afk: -1,
|
| 310 |
+
afkReason: '',
|
| 311 |
+
pasangan: '',
|
| 312 |
+
sahabat: '',
|
| 313 |
+
banned: false,
|
| 314 |
+
premium: false,
|
| 315 |
+
acc: 0,
|
| 316 |
+
end: 0,
|
| 317 |
+
warn: 0,
|
| 318 |
+
count: 0,
|
| 319 |
+
pc: 0,
|
| 320 |
+
expg: 0,
|
| 321 |
+
level: 0,
|
| 322 |
+
role: 'Beginner',
|
| 323 |
+
autolevelup: true,
|
| 324 |
+
|
| 325 |
+
potion: 10,
|
| 326 |
+
trash: 0,
|
| 327 |
+
sampah: 0,
|
| 328 |
+
wood: 0,
|
| 329 |
+
rock: 0,
|
| 330 |
+
string: 0,
|
| 331 |
+
|
| 332 |
+
emerald: 0,
|
| 333 |
+
diamond: 0,
|
| 334 |
+
berlian: 0,
|
| 335 |
+
emas: 0,
|
| 336 |
+
gold: 0,
|
| 337 |
+
iron: 0,
|
| 338 |
+
|
| 339 |
+
pisang: 0,
|
| 340 |
+
anggur: 0,
|
| 341 |
+
mangga: 0,
|
| 342 |
+
jeruk: 0,
|
| 343 |
+
apel: 0,
|
| 344 |
+
bibitpisang: 0,
|
| 345 |
+
bibitanggur: 0,
|
| 346 |
+
bibitmangga: 0,
|
| 347 |
+
bibitjeruk: 0,
|
| 348 |
+
bibitapel: 0,
|
| 349 |
+
gardenboxs: 0,
|
| 350 |
+
spagety: 0,
|
| 351 |
+
stamina: 0,
|
| 352 |
+
bensin: 0,
|
| 353 |
+
|
| 354 |
+
botol: 0,
|
| 355 |
+
kardus: 0,
|
| 356 |
+
kaleng: 0,
|
| 357 |
+
aqua: 0,
|
| 358 |
+
kayu: 0,
|
| 359 |
+
batu: 0,
|
| 360 |
+
kapak: 0,
|
| 361 |
+
obat: 0,
|
| 362 |
+
clan: 0,
|
| 363 |
+
pickaxe: 0,
|
| 364 |
+
|
| 365 |
+
cupon: 0,
|
| 366 |
+
gems: 0,
|
| 367 |
+
boxs: 0,
|
| 368 |
+
common: 0,
|
| 369 |
+
uncommon: 0,
|
| 370 |
+
mythic: 0,
|
| 371 |
+
legendary: 0,
|
| 372 |
+
pet: 0,
|
| 373 |
+
ramuan: 0,
|
| 374 |
+
|
| 375 |
+
ramuannagalast: 0,
|
| 376 |
+
ramuankyubilast: 0,
|
| 377 |
+
ramuanphonixlast: 0,
|
| 378 |
+
ramuanserigalalast: 0,
|
| 379 |
+
ramuancentaurlast: 0,
|
| 380 |
+
ramuankudalast: 0,
|
| 381 |
+
ramuankucinglast: 0,
|
| 382 |
+
ramuanrubahlast: 0,
|
| 383 |
+
ramuangriffinlast: 0,
|
| 384 |
+
ramuanherolast: 0,
|
| 385 |
+
|
| 386 |
+
horse: 0,
|
| 387 |
+
horseexp: 0,
|
| 388 |
+
cat: 0,
|
| 389 |
+
catngexp: 0,
|
| 390 |
+
fox: 0,
|
| 391 |
+
foxexp: 0,
|
| 392 |
+
dog: 0,
|
| 393 |
+
dogexp: 0,
|
| 394 |
+
|
| 395 |
+
hero: 1,
|
| 396 |
+
exphero: 0,
|
| 397 |
+
pillhero: 0,
|
| 398 |
+
herolastclaim: 0,
|
| 399 |
+
|
| 400 |
+
udang: 0,
|
| 401 |
+
hiu: 0,
|
| 402 |
+
lobster: 0,
|
| 403 |
+
kumba: 0,
|
| 404 |
+
ikan: 0,
|
| 405 |
+
buntal: 0,
|
| 406 |
+
gurita: 0,
|
| 407 |
+
dory: 0,
|
| 408 |
+
cumi: 0,
|
| 409 |
+
kepiting: 0,
|
| 410 |
+
paus: 0,
|
| 411 |
+
orca: 0,
|
| 412 |
+
umpan: 0,
|
| 413 |
+
pancingan: 1,
|
| 414 |
+
anakpancingan: 0,
|
| 415 |
+
|
| 416 |
+
anakkucing: 0,
|
| 417 |
+
anakkuda: 0,
|
| 418 |
+
anakrubah: 0,
|
| 419 |
+
anakanjing: 0,
|
| 420 |
+
anakserigala: 0,
|
| 421 |
+
anaknaga: 0,
|
| 422 |
+
anakphonix: 0,
|
| 423 |
+
anakkyubi: 0,
|
| 424 |
+
anakgriffin: 0,
|
| 425 |
+
anakcentaur: 0,
|
| 426 |
+
|
| 427 |
+
kucing: 0,
|
| 428 |
+
kucinglastclaim: 0,
|
| 429 |
+
kuda: 0,
|
| 430 |
+
kudalastclaim: 0,
|
| 431 |
+
rubah: 0,
|
| 432 |
+
rubahlastclaim: 0,
|
| 433 |
+
serigala: 0,
|
| 434 |
+
serigalalastclaim: 0,
|
| 435 |
+
naga: 0,
|
| 436 |
+
nagalastclaim: 0,
|
| 437 |
+
phonix: 0,
|
| 438 |
+
phonixlastclaim: 0,
|
| 439 |
+
anjing: 0,
|
| 440 |
+
anjinglastclaim: 0,
|
| 441 |
+
kyubi: 0,
|
| 442 |
+
kyubilastclaim: 0,
|
| 443 |
+
griffin: 0,
|
| 444 |
+
griffinlastclaim: 0,
|
| 445 |
+
centaur: 0,
|
| 446 |
+
centaurlastclaim: 0,
|
| 447 |
+
|
| 448 |
+
makananpet: 0,
|
| 449 |
+
makananphonix: 0,
|
| 450 |
+
makanannaga: 0,
|
| 451 |
+
makanangriffin: 0,
|
| 452 |
+
makanankyubi: 0,
|
| 453 |
+
makanancentaur: 0,
|
| 454 |
+
|
| 455 |
+
horselastfeed: 0,
|
| 456 |
+
catlastfeed: 0,
|
| 457 |
+
foxlastfeed: 0,
|
| 458 |
+
doglastfeed: 0,
|
| 459 |
+
|
| 460 |
+
armor: 0,
|
| 461 |
+
armordurability: 0,
|
| 462 |
+
weapon: 0,
|
| 463 |
+
weapondurability: 0,
|
| 464 |
+
sword: 0,
|
| 465 |
+
sworddurability: 0,
|
| 466 |
+
pickaxe: 0,
|
| 467 |
+
pickaxedurability: 0,
|
| 468 |
+
fishingrod: 0,
|
| 469 |
+
fishingroddurability: 0,
|
| 470 |
+
|
| 471 |
+
judilast: 0,
|
| 472 |
+
reglast: 0,
|
| 473 |
+
unreglast: 0,
|
| 474 |
+
snlast: 0,
|
| 475 |
+
spinlast: 0,
|
| 476 |
+
|
| 477 |
+
kerjasatu: 0,
|
| 478 |
+
kerjadua: 0,
|
| 479 |
+
kerjatiga: 0,
|
| 480 |
+
kerjaempat: 0,
|
| 481 |
+
kerjalima: 0,
|
| 482 |
+
kerjaenam: 0,
|
| 483 |
+
kerjatujuh: 0,
|
| 484 |
+
kerjadelapan: 0,
|
| 485 |
+
kerjasembilan: 0,
|
| 486 |
+
kerjasepuluh: 0,
|
| 487 |
+
kerjasebelas: 0,
|
| 488 |
+
kerjaduabelas: 0,
|
| 489 |
+
kerjatigabelas: 0,
|
| 490 |
+
kerjaempatbelas: 0,
|
| 491 |
+
kerjalimabelas: 0,
|
| 492 |
+
kerjaenambelas: 0,
|
| 493 |
+
kerjatujuhbelas: 0,
|
| 494 |
+
kerjadelapanbelas: 0,
|
| 495 |
+
kerjasembilanbelas: 0,
|
| 496 |
+
kerjaduapuluh: 0,
|
| 497 |
+
kerjaduasatu: 0,
|
| 498 |
+
kerjaduadua: 0,
|
| 499 |
+
kerjaduatiga: 0,
|
| 500 |
+
kerjaduaempat: 0,
|
| 501 |
+
kerjadualima: 0,
|
| 502 |
+
kerjaduaenam: 0,
|
| 503 |
+
kerjaduatujuh: 0,
|
| 504 |
+
kerjaduadelapan: 0,
|
| 505 |
+
kerjaduasembilan: 0,
|
| 506 |
+
kerjatigapuluh: 0,
|
| 507 |
+
|
| 508 |
+
lastramuanclaim: 0,
|
| 509 |
+
lastpotionclaim: 0,
|
| 510 |
+
laststringclaim: 0,
|
| 511 |
+
lastswordclaim: 0,
|
| 512 |
+
lastweaponclaim: 0,
|
| 513 |
+
lastsironclaim: 0,
|
| 514 |
+
lastsmancingclaim: 0,
|
| 515 |
+
|
| 516 |
+
lastmancingeasy: 0,
|
| 517 |
+
lastmancingnormal: 0,
|
| 518 |
+
lastmancinghard: 0,
|
| 519 |
+
lastmancingextreme: 0,
|
| 520 |
+
lastwarpet: 0,
|
| 521 |
+
lastspam: 0,
|
| 522 |
+
lastpekerjaan: 0,
|
| 523 |
+
lastclaim: 0,
|
| 524 |
+
lastadventure: 0,
|
| 525 |
+
lastfishing: 0,
|
| 526 |
+
lastdungeon: 0,
|
| 527 |
+
lastcrusade: 0,
|
| 528 |
+
lastduel: 0,
|
| 529 |
+
lastcode: 0,
|
| 530 |
+
lastlink: 0,
|
| 531 |
+
lastnambang: 0,
|
| 532 |
+
lastmining: 0,
|
| 533 |
+
lasthunt: 0,
|
| 534 |
+
lastweekly: 0,
|
| 535 |
+
lastmonthly: 0,
|
| 536 |
+
lastrob: 0,
|
| 537 |
+
lastbunuhi: 0,
|
| 538 |
+
lastopen: 0,
|
| 539 |
+
lasteasy: 0,
|
| 540 |
+
lastmulung: 0,
|
| 541 |
+
lastdagang: 0,
|
| 542 |
+
lastnebang: 0,
|
| 543 |
+
lastberkebon: 0,
|
| 544 |
+
lastadventure: 0,
|
| 545 |
+
lastberburu: 0,
|
| 546 |
+
lastngojek: 0,
|
| 547 |
+
}
|
| 548 |
+
let chat = global.db.data.chats[m.chat]
|
| 549 |
+
if (typeof chat !== 'object') global.db.data.chats[m.chat] = {}
|
| 550 |
+
if (chat) {
|
| 551 |
+
if (!('isBanned' in chat)) chat.isBanned = false
|
| 552 |
+
if (!('welcome' in chat)) chat.welcome = false
|
| 553 |
+
if (!('autoread' in chat)) chat.autoread = true
|
| 554 |
+
if (!('detect' in chat)) chat.detect = false
|
| 555 |
+
if (!('sWelcome' in chat)) chat.sWelcome = 'Selamat datang @user!'
|
| 556 |
+
if (!('sBye' in chat)) chat.sBye = ''
|
| 557 |
+
if (!('sPromote' in chat)) chat.sPromote = '@user telah di promote'
|
| 558 |
+
if (!('sDemote' in chat)) chat.sDemote = '@user telah di demote'
|
| 559 |
+
if (!('delete' in chat)) chat.delete = true
|
| 560 |
+
if (!('antiVirtex' in chat)) chat.antiVirtex = false
|
| 561 |
+
if (!('antiLink' in chat)) chat.antiLink = false
|
| 562 |
+
if (!('badword' in chat)) chat.badword = false
|
| 563 |
+
if (!('antiSpam' in chat)) chat.antiSpam = false
|
| 564 |
+
if (!('freply' in chat)) chat.freply = false
|
| 565 |
+
if (!('antiSticker' in chat)) chat.antiSticker = false
|
| 566 |
+
if (!('stiker' in chat)) chat.stiker = false
|
| 567 |
+
if (!('viewonce' in chat)) chat.viewonce = false
|
| 568 |
+
if (!('useDocument' in chat)) chat.useDocument = false
|
| 569 |
+
if (!('antiToxic' in chat)) chat.antiToxic = false
|
| 570 |
+
if (!isNumber(chat.expired)) chat.expired = 0
|
| 571 |
+
} else global.db.data.chats[m.chat] = {
|
| 572 |
+
isBanned: false,
|
| 573 |
+
welcome: false,
|
| 574 |
+
autoread: true,
|
| 575 |
+
detect: false,
|
| 576 |
+
sWelcome: '',
|
| 577 |
+
sBye: '',
|
| 578 |
+
sPromote: '@user telah di promote!',
|
| 579 |
+
sDemote: '@user telah di demote',
|
| 580 |
+
delete: true,
|
| 581 |
+
antiLink: false,
|
| 582 |
+
stiker: false,
|
| 583 |
+
antiSticker: false,
|
| 584 |
+
antiSpam: false,
|
| 585 |
+
freply: false,
|
| 586 |
+
viewonce: false,
|
| 587 |
+
useDocument: false,
|
| 588 |
+
antiToxic: false,
|
| 589 |
+
expired: 0,
|
| 590 |
+
}
|
| 591 |
+
let akinator = global.db.data.users[m.sender].akinator
|
| 592 |
+
if (typeof akinator !== 'object')
|
| 593 |
+
global.db.data.users[m.sender].akinator = {}
|
| 594 |
+
if (akinator) {
|
| 595 |
+
if (!('sesi' in akinator))
|
| 596 |
+
akinator.sesi = false
|
| 597 |
+
if (!('server' in akinator))
|
| 598 |
+
akinator.server = null
|
| 599 |
+
if (!('frontaddr' in akinator))
|
| 600 |
+
akinator.frontaddr = null
|
| 601 |
+
if (!('session' in akinator))
|
| 602 |
+
akinator.session = null
|
| 603 |
+
if (!('signature' in akinator))
|
| 604 |
+
akinator.signature = null
|
| 605 |
+
if (!('question' in akinator))
|
| 606 |
+
akinator.question = null
|
| 607 |
+
if (!('progression' in akinator))
|
| 608 |
+
akinator.progression = null
|
| 609 |
+
if (!('step' in akinator))
|
| 610 |
+
akinator.step = null
|
| 611 |
+
if (!('soal' in akinator))
|
| 612 |
+
akinator.soal = null
|
| 613 |
+
} else
|
| 614 |
+
global.db.data.users[m.sender].akinator = {
|
| 615 |
+
sesi: false,
|
| 616 |
+
server: null,
|
| 617 |
+
frontaddr: null,
|
| 618 |
+
session: null,
|
| 619 |
+
signature: null,
|
| 620 |
+
question: null,
|
| 621 |
+
progression: null,
|
| 622 |
+
step: null,
|
| 623 |
+
soal: null
|
| 624 |
+
}
|
| 625 |
+
let settings = global.db.data.settings[this.user.jid]
|
| 626 |
+
if (typeof settings !== 'object') global.db.data.settings[this.user.jid] = {}
|
| 627 |
+
if (settings) {
|
| 628 |
+
if (!('self' in settings)) settings.self = false
|
| 629 |
+
if (!('autoread' in settings)) settings.autoread = true
|
| 630 |
+
if (!('restrict' in settings)) settings.restrict = true
|
| 631 |
+
if (!('autorestart' in settings)) settings.autorestart = true
|
| 632 |
+
if (!('restartDB' in settings)) settings.restartDB = 0
|
| 633 |
+
if (!isNumber(settings.status)) settings.status = 0 // ini buat data set Status, tambah disini
|
| 634 |
+
if (!('anticall' in settings)) settings.anticall = true
|
| 635 |
+
if (!('clear' in settings)) settings.clear = true
|
| 636 |
+
if (!isNumber(settings.clearTime)) settings.clearTime = 0
|
| 637 |
+
if (!('freply' in settings)) settings.freply = true
|
| 638 |
+
if (!('akinator' in settings)) settings.akinator = {}
|
| 639 |
+
} else global.db.data.settings[this.user.jid] = {
|
| 640 |
+
self: false,
|
| 641 |
+
autoread: true,
|
| 642 |
+
restrict: true,
|
| 643 |
+
autorestart: true,
|
| 644 |
+
restartDB: 0,
|
| 645 |
+
status: 0, // disini juga,
|
| 646 |
+
anticall: true, // anticall on apa off?
|
| 647 |
+
clear: true,
|
| 648 |
+
clearTime: 0,
|
| 649 |
+
freply: true,
|
| 650 |
+
akinator: {}
|
| 651 |
+
}
|
| 652 |
+
} catch (e) {
|
| 653 |
+
console.error(e)
|
| 654 |
+
}
|
| 655 |
+
if (opts['autoread']) await this.readMessages([m.key])
|
| 656 |
+
if (opts['nyimak']) return
|
| 657 |
+
if (!m.fromMe && opts['self']) return
|
| 658 |
+
if (opts['pconly'] && m.chat.endsWith('g.us')) return
|
| 659 |
+
if (opts['gconly'] && !m.chat.endsWith('g.us')) return
|
| 660 |
+
if (opts['swonly'] && m.chat !== 'status@broadcast') return
|
| 661 |
+
if (typeof m.text !== 'string') m.text = ''
|
| 662 |
+
|
| 663 |
+
const isROwner = [conn.decodeJid(global.conn.user.id), ...global.owner.map(([number, isCreator, isDeveloper]) => number)].map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)
|
| 664 |
+
const isOwner = isROwner || m.fromMe
|
| 665 |
+
const isMods = isOwner || global.mods.map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)
|
| 666 |
+
const isPrems = global.db.data.users[m.sender].premium
|
| 667 |
+
const isBans = global.db.data.users[m.sender].banned
|
| 668 |
+
|
| 669 |
+
if (opts['queque'] && m.text && !(isMods || isPrems)) {
|
| 670 |
+
let queque = this.msgqueque, time = 1000 * 5
|
| 671 |
+
const previousID = queque[queque.length - 1]
|
| 672 |
+
queque.push(m.id || m.key.id)
|
| 673 |
+
setInterval(async function () {
|
| 674 |
+
if (queque.indexOf(previousID) === -1) clearInterval(this)
|
| 675 |
+
else await delay(time)
|
| 676 |
+
}, time)
|
| 677 |
+
}
|
| 678 |
+
|
| 679 |
+
// for (let name in global.plugins) {
|
| 680 |
+
// let plugin = global.plugins[name]
|
| 681 |
+
// if (!plugin) continue
|
| 682 |
+
// if (plugin.disabled) continue
|
| 683 |
+
// if (!plugin.all) continue
|
| 684 |
+
// if (typeof plugin.all !== 'function') continue
|
| 685 |
+
// try {
|
| 686 |
+
// await plugin.all.call(this, m, chatUpdate)
|
| 687 |
+
// } catch (e) {
|
| 688 |
+
// if (typeof e === 'string') continue
|
| 689 |
+
// console.error(e)
|
| 690 |
+
// }
|
| 691 |
+
// }
|
| 692 |
+
|
| 693 |
+
if (m.isBaileys) return
|
| 694 |
+
m.exp += Math.ceil(Math.random() * 10)
|
| 695 |
+
|
| 696 |
+
let usedPrefix
|
| 697 |
+
let _user = global.db.data && global.db.data.users && global.db.data.users[m.sender]
|
| 698 |
+
|
| 699 |
+
const groupMetadata = (m.isGroup ? (conn.chats[m.chat] || {}).metadata : {}) || {}
|
| 700 |
+
// const groupMetadata = (m.isGroup ? (conn.chats[m.chat].metadata || await conn.groupMetadata(m.chat)): {}) || {}
|
| 701 |
+
const participants = (m.isGroup ? groupMetadata.participants : []) || []
|
| 702 |
+
const user = (m.isGroup ? participants.find(u => conn.decodeJid(u.id) === m.sender) : {}) || {} // User Data
|
| 703 |
+
const bot = (m.isGroup ? participants.find(u => conn.decodeJid(u.id) == this.user.jid) : {}) || {} // Your Data
|
| 704 |
+
const isRAdmin = user && user.admin == 'superadmin' || false
|
| 705 |
+
const isAdmin = isRAdmin || user && user.admin == 'admin' || false // Is User Admin?
|
| 706 |
+
const isBotAdmin = bot && bot.admin || false // Are you Admin?
|
| 707 |
+
for (let name in global.plugins) {
|
| 708 |
+
let plugin = global.plugins[name]
|
| 709 |
+
if (!plugin) continue
|
| 710 |
+
if (plugin.disabled) continue
|
| 711 |
+
if (typeof plugin.all === 'function') {
|
| 712 |
+
try {
|
| 713 |
+
await plugin.all.call(this, m, chatUpdate)
|
| 714 |
+
} catch (e) {
|
| 715 |
+
// if (typeof e === 'string') continue
|
| 716 |
+
console.error(e)
|
| 717 |
+
}
|
| 718 |
+
}
|
| 719 |
+
if (!opts['restrict']) if (plugin.tags && plugin.tags.includes('admin')) {
|
| 720 |
+
// global.dfail('restrict', m, this)
|
| 721 |
+
continue
|
| 722 |
+
}
|
| 723 |
+
const str2Regex = str => str.replace(/[ |\\{}()[\]^$+*?.]/g, '\\$&')
|
| 724 |
+
let _prefix = plugin.customPrefix ? plugin.customPrefix : conn.prefix ? conn.prefix : global.prefix
|
| 725 |
+
let match = (_prefix instanceof RegExp ? // RegExp Mode?
|
| 726 |
+
[[_prefix.exec(m.text), _prefix]] :
|
| 727 |
+
Array.isArray(_prefix) ? // Array?
|
| 728 |
+
_prefix.map(p => {
|
| 729 |
+
let re = p instanceof RegExp ? // RegExp in Array?
|
| 730 |
+
p :
|
| 731 |
+
new RegExp(str2Regex(p))
|
| 732 |
+
return [re.exec(m.text), re]
|
| 733 |
+
}) :
|
| 734 |
+
typeof _prefix === 'string' ? // String?
|
| 735 |
+
[[new RegExp(str2Regex(_prefix)).exec(m.text), new RegExp(str2Regex(_prefix))]] :
|
| 736 |
+
[[[], new RegExp]]
|
| 737 |
+
).find(p => p[1])
|
| 738 |
+
if (typeof plugin.before === 'function') if (await plugin.before.call(this, m, {
|
| 739 |
+
match,
|
| 740 |
+
conn: this,
|
| 741 |
+
participants,
|
| 742 |
+
groupMetadata,
|
| 743 |
+
user,
|
| 744 |
+
bot,
|
| 745 |
+
isROwner,
|
| 746 |
+
isOwner,
|
| 747 |
+
isRAdmin,
|
| 748 |
+
isAdmin,
|
| 749 |
+
isBotAdmin,
|
| 750 |
+
isPrems,
|
| 751 |
+
isBans,
|
| 752 |
+
chatUpdate,
|
| 753 |
+
})) continue
|
| 754 |
+
if (typeof plugin !== 'function') continue
|
| 755 |
+
if ((usedPrefix = (match[0] || '')[0])) {
|
| 756 |
+
let noPrefix = m.text.replace(usedPrefix, '')
|
| 757 |
+
let [command, ...args] = noPrefix.trim().split` `.filter(v => v)
|
| 758 |
+
args = args || []
|
| 759 |
+
let _args = noPrefix.trim().split` `.slice(1)
|
| 760 |
+
let text = _args.join` `
|
| 761 |
+
command = (command || '').toLowerCase()
|
| 762 |
+
let fail = plugin.fail || global.dfail // When failed
|
| 763 |
+
let isAccept = plugin.command instanceof RegExp ? // RegExp Mode?
|
| 764 |
+
plugin.command.test(command) :
|
| 765 |
+
Array.isArray(plugin.command) ? // Array?
|
| 766 |
+
plugin.command.some(cmd => cmd instanceof RegExp ? // RegExp in Array?
|
| 767 |
+
cmd.test(command) :
|
| 768 |
+
cmd === command
|
| 769 |
+
) :
|
| 770 |
+
typeof plugin.command === 'string' ? // String?
|
| 771 |
+
plugin.command === command :
|
| 772 |
+
false
|
| 773 |
+
|
| 774 |
+
if (!isAccept) continue
|
| 775 |
+
m.plugin = name
|
| 776 |
+
if (m.chat in global.db.data.chats || m.sender in global.db.data.users) {
|
| 777 |
+
let chat = global.db.data.chats[m.chat]
|
| 778 |
+
let user = global.db.data.users[m.sender]
|
| 779 |
+
if (name != 'unbanchat.js' && chat && chat.isBanned) return // Except this
|
| 780 |
+
if (name != 'unbanuser.js' && user && user.banned) return
|
| 781 |
+
}
|
| 782 |
+
if (plugin.rowner && plugin.owner && !(isROwner || isOwner)) { // Both Owner
|
| 783 |
+
fail('owner', m, this)
|
| 784 |
+
continue
|
| 785 |
+
}
|
| 786 |
+
if (plugin.rowner && !isROwner) { // Real Owner
|
| 787 |
+
fail('rowner', m, this)
|
| 788 |
+
continue
|
| 789 |
+
}
|
| 790 |
+
if (plugin.owner && !isOwner) { // Number Owner
|
| 791 |
+
fail('owner', m, this)
|
| 792 |
+
continue
|
| 793 |
+
}
|
| 794 |
+
if (plugin.mods && !isMods) { // Moderator
|
| 795 |
+
fail('mods', m, this)
|
| 796 |
+
continue
|
| 797 |
+
}
|
| 798 |
+
if (plugin.premium && !isPrems) { // Premium
|
| 799 |
+
fail('premium', m, this)
|
| 800 |
+
continue
|
| 801 |
+
}
|
| 802 |
+
if (plugin.banned && !isBans) { // Banned
|
| 803 |
+
fail('banned', m, this)
|
| 804 |
+
continue
|
| 805 |
+
}
|
| 806 |
+
if (plugin.group && !m.isGroup) { // Group Only
|
| 807 |
+
fail('group', m, this)
|
| 808 |
+
continue
|
| 809 |
+
} else if (plugin.botAdmin && !isBotAdmin) { // You Admin
|
| 810 |
+
fail('botAdmin', m, this)
|
| 811 |
+
continue
|
| 812 |
+
} else if (plugin.admin && !isAdmin) { // User Admin
|
| 813 |
+
fail('admin', m, this)
|
| 814 |
+
continue
|
| 815 |
+
}
|
| 816 |
+
if (plugin.private && m.isGroup) { // Private Chat Only
|
| 817 |
+
fail('private', m, this)
|
| 818 |
+
continue
|
| 819 |
+
}
|
| 820 |
+
if (plugin.register == true && _user.registered == false) { // Butuh daftar?
|
| 821 |
+
fail('unreg', m, this)
|
| 822 |
+
continue
|
| 823 |
+
}
|
| 824 |
+
m.isCommand = true
|
| 825 |
+
let xp = 'exp' in plugin ? parseInt(plugin.exp) : 17 // XP Earning per command
|
| 826 |
+
if (xp > 9999999999999999999999) m.reply('Ngecit -_-') // Hehehe
|
| 827 |
+
else m.exp += xp
|
| 828 |
+
if (!isPrems && plugin.limit && global.db.data.users[m.sender].limit < plugin.limit * 1) {
|
| 829 |
+
this.reply(m.chat, `Limit anda habis, silahkan ketik ${usedPrefix}premium agar limit tidak bisa habis/unlimited\natau ketik *${usedPrefix}gethadiah*`, m)
|
| 830 |
+
// this.sendButton(m.chat, `Limit anda habis, silahkan beli melalui *${usedPrefix}buyall* atau *${usedPrefix}hadiah*`, author, null, [['Buy Limit', '/buyall'], ['Hadiah', '/hadiah']], m)
|
| 831 |
+
continue // Limit habis
|
| 832 |
+
}
|
| 833 |
+
if (plugin.level > _user.level) {
|
| 834 |
+
this.reply(m.chat, `diperlukan level ${plugin.level} untuk menggunakan perintah ini. Level kamu ${_user.level}`, m)
|
| 835 |
+
continue // If the level has not been reached
|
| 836 |
+
}
|
| 837 |
+
let extra = {
|
| 838 |
+
match,
|
| 839 |
+
usedPrefix,
|
| 840 |
+
noPrefix,
|
| 841 |
+
_args,
|
| 842 |
+
args,
|
| 843 |
+
command,
|
| 844 |
+
text,
|
| 845 |
+
conn: this,
|
| 846 |
+
participants,
|
| 847 |
+
groupMetadata,
|
| 848 |
+
user,
|
| 849 |
+
bot,
|
| 850 |
+
isROwner,
|
| 851 |
+
isOwner,
|
| 852 |
+
isRAdmin,
|
| 853 |
+
isAdmin,
|
| 854 |
+
isBotAdmin,
|
| 855 |
+
isPrems,
|
| 856 |
+
isBans,
|
| 857 |
+
chatUpdate,
|
| 858 |
+
}
|
| 859 |
+
try {
|
| 860 |
+
await plugin.call(this, m, extra)
|
| 861 |
+
if (!isPrems) m.limit = m.limit || plugin.limit || true
|
| 862 |
+
} catch (e) {
|
| 863 |
+
// Error occured
|
| 864 |
+
m.error = e
|
| 865 |
+
console.error(e)
|
| 866 |
+
if (e) {
|
| 867 |
+
let text = util.format(e)
|
| 868 |
+
for (let key of Object.values(global.APIKeys))
|
| 869 |
+
text = text.replace(new RegExp(key, 'g'), '#HIDDEN#')
|
| 870 |
+
if (e.name) for (let [jid] of global.owner.filter(([number, isCreator, isDeveloper]) => isDeveloper && number)) {
|
| 871 |
+
let data = (await conn.onWhatsApp(jid))[0] || {}
|
| 872 |
+
if (data.exists) m.reply(`*Plugin:* ${m.plugin}\n*Sender:* ${m.sender}\n*Chat:* ${m.chat}\n*Command:* ${usedPrefix}${command} ${args.join(' ')}\n\n\`\`\`${text}\`\`\``.trim(), data.jid)
|
| 873 |
+
}
|
| 874 |
+
m.reply(text)
|
| 875 |
+
}
|
| 876 |
+
} finally {
|
| 877 |
+
// m.reply(util.format(_user))
|
| 878 |
+
if (typeof plugin.after === 'function') {
|
| 879 |
+
try {
|
| 880 |
+
await plugin.after.call(this, m, extra)
|
| 881 |
+
} catch (e) {
|
| 882 |
+
console.error(e)
|
| 883 |
+
}
|
| 884 |
+
}
|
| 885 |
+
// if (m.limit) m.reply(+ m.limit + ' Limit terpakai')
|
| 886 |
+
}
|
| 887 |
+
break
|
| 888 |
+
}
|
| 889 |
+
}
|
| 890 |
+
} catch (e) {
|
| 891 |
+
console.error(e)
|
| 892 |
+
} finally {
|
| 893 |
+
if (opts['queque'] && m.text) {
|
| 894 |
+
const quequeIndex = this.msgqueque.indexOf(m.id || m.key.id)
|
| 895 |
+
if (quequeIndex !== -1) this.msgqueque.splice(quequeIndex, 1)
|
| 896 |
+
}
|
| 897 |
+
//console.log(global.db.data.users[m.sender])
|
| 898 |
+
let user, stats = global.db.data.stats
|
| 899 |
+
if (m) {
|
| 900 |
+
if (m.sender && (user = global.db.data.users[m.sender])) {
|
| 901 |
+
user.exp += m.exp
|
| 902 |
+
user.limit -= m.limit * 1
|
| 903 |
+
}
|
| 904 |
+
|
| 905 |
+
let stat
|
| 906 |
+
if (m.plugin) {
|
| 907 |
+
let now = + new Date
|
| 908 |
+
if (m.plugin in stats) {
|
| 909 |
+
stat = stats[m.plugin]
|
| 910 |
+
if (!isNumber(stat.total)) stat.total = 1
|
| 911 |
+
if (!isNumber(stat.success)) stat.success = m.error != null ? 0 : 1
|
| 912 |
+
if (!isNumber(stat.last)) stat.last = now
|
| 913 |
+
if (!isNumber(stat.lastSuccess)) stat.lastSuccess = m.error != null ? 0 : now
|
| 914 |
+
} else stat = stats[m.plugin] = {
|
| 915 |
+
total: 1,
|
| 916 |
+
success: m.error != null ? 0 : 1,
|
| 917 |
+
last: now,
|
| 918 |
+
lastSuccess: m.error != null ? 0 : now
|
| 919 |
+
}
|
| 920 |
+
stat.total += 1
|
| 921 |
+
stat.last = now
|
| 922 |
+
if (m.error == null) {
|
| 923 |
+
stat.success += 1
|
| 924 |
+
stat.lastSuccess = now
|
| 925 |
+
}
|
| 926 |
+
}
|
| 927 |
+
}
|
| 928 |
+
|
| 929 |
+
// try {
|
| 930 |
+
// require('./lib/print')(m, this)
|
| 931 |
+
// } catch (e) {
|
| 932 |
+
// console.log(m, m.quoted, e)
|
| 933 |
+
// }
|
| 934 |
+
if (opts['autoread']) await this.chatRead(m.chat, m.isGroup ? m.sender : undefined, m.id || m.key.id).catch(() => { })
|
| 935 |
+
}
|
| 936 |
+
},
|
| 937 |
+
async participantsUpdate({ id, participants, action }) {
|
| 938 |
+
if (opts['self']) return
|
| 939 |
+
// if (id in conn.chats) return // First login will spam
|
| 940 |
+
if (global.isInit) return
|
| 941 |
+
let chat = global.db.data.chats[id] || {}
|
| 942 |
+
let text = ''
|
| 943 |
+
switch (action) {
|
| 944 |
+
case 'add':
|
| 945 |
+
case 'remove':
|
| 946 |
+
if (chat.welcome) {
|
| 947 |
+
let groupMetadata = await this.groupMetadata(id) || (conn.chats[id] || {}).metadata
|
| 948 |
+
for (let user of participants) {
|
| 949 |
+
let pp = 'https://i.ibb.co/sQTkHLD/ppkosong.png'
|
| 950 |
+
let name = await this.getName(user)
|
| 951 |
+
let gpname = await this.getName(id)
|
| 952 |
+
let member = groupMetadata.participants.length
|
| 953 |
+
pp: pp
|
| 954 |
+
try {
|
| 955 |
+
pp = await this.profilePictureUrl(user, 'image')
|
| 956 |
+
} catch (e) {
|
| 957 |
+
} finally {
|
| 958 |
+
text = (action === 'add' ? (chat.sWelcome || this.welcome || conn.welcome || 'Welcome, @user!').replace('@subject', await this.getName(id)).replace('@desc', groupMetadata.desc ? String.fromCharCode(8206).repeat(4001) + groupMetadata.desc : '') :
|
| 959 |
+
(chat.sBye || this.bye || conn.bye || 'Bye, @user!')).replace('@user', await this.getName(user))
|
| 960 |
+
let wel = API(`https://api.lolhuman.xyz/api/base/welcome?apikey=BrunoSobrino&img1=https://i.postimg.cc/CM34YRFb/photo-2021-02-05-10-13-39.jpg&img2=https://i.postimg.cc/CM34YRFb/photo-2021-02-05-10-13-39.jpg&background=https://i.ibb.co/8B6Q84n/LTqHsfYS.jpg&username=${name}&member=${member}&groupname=${gpname}`)
|
| 961 |
+
let lea = API(`https://api.lolhuman.xyz/api/base/leave?apikey=BrunoSobrino&img1=https://i.postimg.cc/CM34YRFb/photo-2021-02-05-10-13-39.jpg&img2=https://i.postimg.cc/CM34YRFb/photo-2021-02-05-10-13-39.jpg&background=https://i.ibb.co/8B6Q84n/LTqHsfYS.jpg&username=${name}&member=${member}&groupname=${gpname}`)
|
| 962 |
+
this.sendFile(id, action === 'add' ? wel : lea, 'pp.jpg', text, null, false, { mentions: [user] })
|
| 963 |
+
}
|
| 964 |
+
}
|
| 965 |
+
}
|
| 966 |
+
break
|
| 967 |
+
case 'promote':
|
| 968 |
+
text = (chat.sPromote || this.spromote || conn.spromote || '@user ```is now Admin```')
|
| 969 |
+
case 'demote':
|
| 970 |
+
if (!text)
|
| 971 |
+
text = (chat.sDemote || this.sdemote || conn.sdemote || '@user ```is no longer Admin```')
|
| 972 |
+
text = text.replace('@user', '@' + participants[0].split('@')[0])
|
| 973 |
+
if (chat.detect)
|
| 974 |
+
this.sendMessage(id, { text, mentions: this.parseMention(text) })
|
| 975 |
+
break
|
| 976 |
+
}
|
| 977 |
+
},
|
| 978 |
+
async delete(m) {
|
| 979 |
+
let chat = global.db.data.chats[m.key.remoteJid]
|
| 980 |
+
if (chat.delete) return
|
| 981 |
+
await this.sendMessage(m.key.remoteJid, `
|
| 982 |
+
Terdeteksi @${m.participant.split`@`[0]} telah menghapus pesan
|
| 983 |
+
ketik *.on delete* untuk mematikan pesan ini
|
| 984 |
+
`.trim(), m.message)
|
| 985 |
+
this.copyNForward(m.key.remoteJid, m.message).catch(e => console.log(e, m))
|
| 986 |
+
},
|
| 987 |
+
async onCall(json) {
|
| 988 |
+
if (!db.data.settings[this.user.jid].anticall) return
|
| 989 |
+
let jid = json[2][0][1]['from']
|
| 990 |
+
let isOffer = json[2][0][2][0][0] == 'offer'
|
| 991 |
+
let users = global.db.data.users
|
| 992 |
+
let user = users[jid] || {}
|
| 993 |
+
if (user.whitelist) return
|
| 994 |
+
if (jid && isOffer) {
|
| 995 |
+
const tag = this.generateMessageTag()
|
| 996 |
+
const nodePayload = ['action', 'call', ['call', {
|
| 997 |
+
'from': this.user.jid,
|
| 998 |
+
'to': `${jid.split`@`[0]}@s.whatsapp.net`,
|
| 999 |
+
'id': tag
|
| 1000 |
+
}, [['reject', {
|
| 1001 |
+
'call-id': json[2][0][2][0][1]['call-id'],
|
| 1002 |
+
'call-creator': `${jid.split`@`[0]}@s.whatsapp.net`,
|
| 1003 |
+
'count': '0'
|
| 1004 |
+
}, null]]]]
|
| 1005 |
+
this.sendJSON(nodePayload, tag)
|
| 1006 |
+
m.reply(`Kamu dibanned karena menelepon bot, owner : @${owner[0]}`)
|
| 1007 |
+
}
|
| 1008 |
+
},
|
| 1009 |
+
async GroupUpdate({ jid, desc, descId, descTime, descOwner, announce }) {
|
| 1010 |
+
if (!db.data.chats[jid].desc) return
|
| 1011 |
+
if (!desc) return
|
| 1012 |
+
let caption = `
|
| 1013 |
+
@${descOwner.split`@`[0]} telah mengubah deskripsi grup.
|
| 1014 |
+
${desc}
|
| 1015 |
+
`.trim()
|
| 1016 |
+
this.sendMessage(jid, caption, wm, m)
|
| 1017 |
+
|
| 1018 |
+
}
|
| 1019 |
+
},
|
| 1020 |
+
|
| 1021 |
+
/*
|
| 1022 |
+
conn.ws.on('CB:call', async (json) => {
|
| 1023 |
+
console.log(json.content)
|
| 1024 |
+
const callerId = json.content[0].attrs['call-creator']
|
| 1025 |
+
if (json.content[0].tag == 'offer') {
|
| 1026 |
+
let pa7rick = await conn.sendContact(callerId, global.owner)
|
| 1027 |
+
conn.sendMessage(callerId, { text: `Sistem otomatis block!\nJangan menelpon bot!\nSilahkan Hubungi Owner Untuk Dibuka !`}, { quoted : pa7rick })
|
| 1028 |
+
await sleep(8000)
|
| 1029 |
+
await conn.updateBlockStatus(callerId, "block")
|
| 1030 |
+
}
|
| 1031 |
+
})
|
| 1032 |
+
async onCall(json) {
|
| 1033 |
+
let { from } = json[2][0][1]
|
| 1034 |
+
let users = global.db.data.users
|
| 1035 |
+
let user = users[from] || {}
|
| 1036 |
+
if (user.whitelist) return
|
| 1037 |
+
switch (this.callWhitelistMode) {
|
| 1038 |
+
case 'mycontact':
|
| 1039 |
+
if (from in this.contacts && 'short' in this.contacts[from])
|
| 1040 |
+
return
|
| 1041 |
+
break
|
| 1042 |
+
}
|
| 1043 |
+
await this.sendMessage(from, 'Maaf, karena anda menelfon bot. anda diblokir otomatis', MessageType.extendedText)
|
| 1044 |
+
await this.updateBlockStatus(from, 'block')
|
| 1045 |
+
}
|
| 1046 |
+
}
|
| 1047 |
+
*/
|
| 1048 |
+
|
| 1049 |
+
global.dfail = (type, m, conn) => {
|
| 1050 |
+
let tag = `*@${m.sender.split("@")[0]}*`
|
| 1051 |
+
let imgr = 'https://telegra.ph/file/3c35f76b1a5ba9cf5e51b.jpg'
|
| 1052 |
+
let nmsr = `👋 Hai ${tag}!`
|
| 1053 |
+
let msg = {
|
| 1054 |
+
rowner: `${nmsr}\n\nPerintah ini hanya dapat digunakan oleh *Real Owner*!`,
|
| 1055 |
+
owner: `${nmsr}\n\nPerintah ini hanya dapat digunakan oleh *Owner*!`,
|
| 1056 |
+
mods: `${nmsr}\n\nPerintah ini hanya dapat digunakan oleh *Moderator*!`,
|
| 1057 |
+
banned: `${nmsr}\n\nPerintah ini hanya untuk pengguna yang terbanned..`,
|
| 1058 |
+
group: `${nmsr}\n\nPerintah ini hanya dapat digunakan di grup!`,
|
| 1059 |
+
private: `${nmsr}\n\nPerintah ini hanya dapat digunakan di Chat Pribadi!`,
|
| 1060 |
+
admin: `${nmsr}\n\nPerintah ini hanya untuk *Admin* grup!`,
|
| 1061 |
+
botAdmin: `${nmsr}\n\nJadikan bot sebagai *Admin* untuk menggunakan perintah ini!`,
|
| 1062 |
+
restrict: `${nmsr}\n\nFitur ini di *disable*!`
|
| 1063 |
+
}[type]
|
| 1064 |
+
if (msg) return m.reply(msg)
|
| 1065 |
+
let daftar = 'https://telegra.ph/file/b3c4d7b4d38dd874d5575.jpg'
|
| 1066 |
+
let msgg = {
|
| 1067 |
+
unreg: `${nmsr}\n\nAnda belum terdaftar!\n\nKetik: *#daftar nama.umur*\n\nContoh: *#daftar Manusia.16*`
|
| 1068 |
+
}[type]
|
| 1069 |
+
if (msgg) return m.reply(msgg)
|
| 1070 |
+
let preimg = 'https://telegra.ph/file/c8649162817e14859cc0f.jpg'
|
| 1071 |
+
let msg2 = {
|
| 1072 |
+
premium: `${nmsr}\n\nPerintah ini hanya dapat digunakan oleh *Premium*!`
|
| 1073 |
+
}[type]
|
| 1074 |
+
if (msg2) return m.reply(msg2)
|
| 1075 |
+
}
|
| 1076 |
+
|
| 1077 |
+
let fs = require('fs')
|
| 1078 |
+
let chalk = require('chalk')
|
| 1079 |
+
let file = require.resolve(__filename)
|
| 1080 |
+
fs.watchFile(file, () => {
|
| 1081 |
+
fs.unwatchFile(file)
|
| 1082 |
+
console.log(chalk.redBright("Update 'handler.js'"))
|
| 1083 |
+
delete require.cache[file]
|
| 1084 |
+
if (global.reloadHandler) console.log(global.reloadHandler())
|
| 1085 |
+
})
|
hentai.json
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/682392150004203556/Yt3hls8_d.jpg"},
|
| 3 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/682383171970531518/1i1cwipuibj41.jpg"},
|
| 4 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/682011053659389963/image0.png"},
|
| 5 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681985899113873409/1rfjy.jpg"},
|
| 6 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681718732648742942/bl00j3ah0zi41.jpg"},
|
| 7 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681664685308641321/zD1X34d_d.jpg"},
|
| 8 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681664677050318848/xsaiePJ_d.jpg"},
|
| 9 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681514512477585417/19_noface_2.jpg"},
|
| 10 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681514482840764422/19_noface.jpg"},
|
| 11 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681079638289678337/74736932_p0.png"},
|
| 12 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681077814564225087/1513741199673.png"},
|
| 13 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681072439685414912/0DgVFmL_-_Copy.jpg"},
|
| 14 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681048865595588621/image1.jpg"},
|
| 15 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/681048865062780938/image0.jpg"},
|
| 16 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/680826592905265163/ea6dae70aa0a5ca654391418d167a490642f0ac0.jpg"},
|
| 17 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/680803832951078985/z9rcsqvt6fi41.png"},
|
| 18 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/680802962737725465/6RdXBOu-vWJP6n9UHzspFIJUgd6JSiv_wllhnJA_CgI.png"},
|
| 19 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/680172954088374275/6154e1e.jpg"},
|
| 20 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/680164236411797528/7d3526e.jpg"},
|
| 21 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/680071673709592577/image0.jpg"},
|
| 22 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/680071630650605590/image0.jpg"},
|
| 23 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/680051538529353767/5e182ab.jpg"},
|
| 24 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679864977074421833/b10kt4zor6c41.jpg"},
|
| 25 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679864377020907564/bvvkaq9vf1b41.jpg"},
|
| 26 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679864322138046466/59v3wapb27c41.jpg"},
|
| 27 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679864199307984983/yande.re2057344220animal_ears20ass20ass_grab20girls_frontline20headphones20naked20nekomimi20nipples2.png"},
|
| 28 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679728424398749696/image0.jpg"},
|
| 29 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679728393008578613/image0.jpg"},
|
| 30 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679728326310756373/image0.jpg"},
|
| 31 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679471064111251476/ya9uZYH_d.jpg"},
|
| 32 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679430871064772618/image0.jpg"},
|
| 33 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679430812566945793/image0.jpg"},
|
| 34 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/679356673638400010/lzGqSyF_d.jpg"},
|
| 35 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/678896909410238504/hoshigirls_24a.jpg"},
|
| 36 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/678617980812394497/image0.jpg"},
|
| 37 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/677926573009272832/image0.jpg"},
|
| 38 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/677926522031439892/image0.jpg"},
|
| 39 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/677622254514864129/image0.jpg"},
|
| 40 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/677196555740119040/image0.jpg"},
|
| 41 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/677196289754005515/image0.jpg"},
|
| 42 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/677196235014144029/image0.jpg"},
|
| 43 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/676450176344391708/image0.jpg"},
|
| 44 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/676227313284808714/3ac96c54ab72c0fd924a8bc7798213a6.png"},
|
| 45 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/676151091221757962/Konachan.png"},
|
| 46 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/675587425304707072/image0.jpg"},
|
| 47 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/675468139026186300/image0.jpg"},
|
| 48 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/673782003727859712/X_sdoxwgjCvHwvGRnYdCscnj2KuDjyMtVDu6tzTYChA.png"},
|
| 49 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/673779982299955220/AQ_E_thQOOzsnSqoudhj3JJ7JyW9Zxp8PmeLIyh2oM8.png"},
|
| 50 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/673769534385160200/79v9ahrv2sa31.png"},
|
| 51 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/673768540695953418/0gfw44u2xce41.png"},
|
| 52 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/673768327620984842/1y6atnjmrme41.png"},
|
| 53 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/673767232060391438/yc87skte5ia41.png"},
|
| 54 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/671358212187881492/image0.jpg"},
|
| 55 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/670981635797286912/image0.jpg"},
|
| 56 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/670981623394861076/image0.jpg"},
|
| 57 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/670981613089194004/image0.jpg"},
|
| 58 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/670981594483261452/image0.jpg"},
|
| 59 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669547303836712986/74882232_p0_master1200.png"},
|
| 60 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669547278909964298/77220636_p0_master1200.png"},
|
| 61 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669547243669422110/77146819_p0_master1200.png"},
|
| 62 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669546698745446410/72611644_p0_master1200.png"},
|
| 63 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669518715003469844/zbqsBzg.png"},
|
| 64 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669513052194078720/H40_fuckedhentais06.jpg"},
|
| 65 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669507125025701898/226ab28998d7291be5ca599f132b9fd3.png"},
|
| 66 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669506496752779274/7239586.webp"},
|
| 67 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669505422608039946/090_01BHX9DX41E3D7TC1W46RTTS98.1680x0.jpg"},
|
| 68 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669281202607357992/Konachan.png"},
|
| 69 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669275547075084288/78501760_p0_master1200.png"},
|
| 70 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669274510025031720/67206927_p0_master1200.png"},
|
| 71 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669274203182202930/77178912_p0_master1200.png"},
|
| 72 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669272658587680790/78320838_p0_master1200.png"},
|
| 73 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669272157196517386/78798068_p0_master1200.png"},
|
| 74 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669271993798885428/78883262_p0_master1200.png"},
|
| 75 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669270324004519978/78675234_p0_master1200.png"},
|
| 76 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669269844423737384/78408730_p0_master1200.png"},
|
| 77 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/669141796852334602/78862551_p0_master1200.png"},
|
| 78 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/668922934991126528/nijich15351372011642808.jpg"},
|
| 79 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/668921449251078184/cb94e51b587090f83e28cd8457df4478acce3f8def6ae0e020aa52cc53081db4.jpg"},
|
| 80 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/667325021529571328/74173453_p0_master1200.png"},
|
| 81 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/667324880684974100/54172883_p0_master1200.png"},
|
| 82 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/667324189694230528/44726660_p0_master1200.png"},
|
| 83 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/667323545772228629/68919067_p0_master1200.png"},
|
| 84 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/667248555735515157/ertrtertrt.jpg"},
|
| 85 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666773555681165321/image3.jpg"},
|
| 86 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666773555090030613/image2.jpg"},
|
| 87 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666773555090030612/image1.jpg"},
|
| 88 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666443243298488347/image0-108.jpg"},
|
| 89 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666443126289727528/image2-15.jpg"},
|
| 90 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666357778352439349/EOFFWcEXkAADb5E.png"},
|
| 91 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666159617537081363/image0.jpg"},
|
| 92 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666159570133188629/image0.jpg"},
|
| 93 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/666071157878816788/image0.jpg"},
|
| 94 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665995441028202496/image0.jpg"},
|
| 95 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665982449083482182/image0.jpg"},
|
| 96 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665721278748950587/image0.jpg"},
|
| 97 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665670728867250237/image0.jpg"},
|
| 98 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665642103535173632/78103980_p0_master1200.png"},
|
| 99 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665637267104333844/image0.jpg"},
|
| 100 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665608119082287124/image2.jpg"},
|
| 101 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665608118536896516/image1.jpg"},
|
| 102 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665600901674827787/image1.jpg"},
|
| 103 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665600901674827786/image0.jpg"},
|
| 104 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665555702902816778/75987499_p0_master1200.png"},
|
| 105 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665546635018764288/63343520_p0_master1200.png"},
|
| 106 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665546417460215828/72132646_p0_master1200.png"},
|
| 107 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/665074182610223104/63049533_p0_master1200.png"},
|
| 108 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664681262774222878/70198791_p0_master1200.png"},
|
| 109 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664681216573964318/70235431_p0_master1200.png"},
|
| 110 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664680996742103051/71862188_p0_master1200.png"},
|
| 111 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664591748495966228/image0.jpg"},
|
| 112 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664572555436228621/image1.jpg"},
|
| 113 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664505414477545482/68788644_p0_master1200.png"},
|
| 114 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664505370823098378/68912031_p0_master1200.png"},
|
| 115 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664503688886222868/47717079_p0_master1200.png"},
|
| 116 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664495734820962304/78250941_p0_master1200.png"},
|
| 117 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664495654445252609/78714798_p0_master1200.png"},
|
| 118 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664494993821401128/78166997_p0_master1200.png"},
|
| 119 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664493301029928991/image0.jpg"},
|
| 120 |
+
{"url":"https://media.discordapp.net/attachments/527958344921514004/664464276928331796/74857543_p0_master1200.png"},
|
| 121 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770950312860057610/akagi_and_kaga_azur_lane_drawn_by_mokko_kamiko__4dbc552fc8fb42035dd559bfac1e9249.jpg"},
|
| 122 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770986418930450442/3365-UlY1Fai1xBo.jpg"},
|
| 123 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/770987276675186698/3872-oGQz480zje4.jpg"},
|
| 124 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000764947628032/497-0vGeTcPSDgI.jpg"},
|
| 125 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000839870349372/0498-bpeu35xdrjA.jpg"},
|
| 126 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000841011855360/0498-7-SXeCvokEA.jpg"},
|
| 127 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000921677103114/505-vt8zuzaa-18.jpg"},
|
| 128 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771000946473041920/0502-jtnvNGD22EA.jpg"},
|
| 129 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001022902435870/0509-9P-E3cffzGI.jpg"},
|
| 130 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001074911543306/513bff2e-c5ae-413e-8ba4-a5d3f32a39b8.jpg"},
|
| 131 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001595172487188/0548-b_gk6d_KPb0.jpg"},
|
| 132 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001642606657597/0551-bU-l3Dlwoio.jpg"},
|
| 133 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001932420481034/0575-vl8drqmC4LE.jpg"},
|
| 134 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771001952191381524/0574-0yimUnvMS54.jpg"},
|
| 135 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002390295609374/0611-7BvLMGcBfC0.jpg"},
|
| 136 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002440946417694/0613-eVzwR4IqjU0.jpg"},
|
| 137 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002709373354034/636_IAVTC8tHHw.jpg"},
|
| 138 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002712056791060/0635-Jd7rJSSIbz4.jpg"},
|
| 139 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002741953658930/0637-LiE1Clea_00.jpg"},
|
| 140 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002754944466994/640-MDZLk23GVhA.jpg"},
|
| 141 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771002791727726612/0642-e2nVouX8vLY.jpg"},
|
| 142 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771015224450613278/671-u52g7U3GgcM.jpg"},
|
| 143 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771015387847983104/1608-It3PfCh8P_I.jpg"},
|
| 144 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771015464712142868/1607-aY8NxRccsUc.jpg"},
|
| 145 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016497299456010/1670-vjTeF1K1k18.jpg"},
|
| 146 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771016670138990643/1694-fQekJhApqbo.jpg"},
|
| 147 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771017353462546432/1837-rRIxjXKZS2M.jpg"},
|
| 148 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771017834963795978/1862-s20Ygwnqhno.jpg"},
|
| 149 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771023697729159219/Hentai_Nation_549.jpg"},
|
| 150 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771030715693269022/3899c321-01f3-4118-8d26-08546edbc3d5.jpg"},
|
| 151 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771030993636294686/07f59473-3bd4-4a3e-a919-543c79325167.jpg"},
|
| 152 |
+
{"url":"https://cdn.discordapp.com/attachments/770948564947304448/771035044357341194/Lao7H2O4jgE.jpg"},
|
| 153 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771377097439576084/meaAaGwObaaaamh3FKygzWNDUPN50jL1.png"},
|
| 154 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771861384345681981/614asqtqokt51.png"},
|
| 155 |
+
{"url":"https://cdn.discordapp.com/attachments/716326877488349275/772539305405972521/LeezZhlwAHM.jpg"},
|
| 156 |
+
{"url":"https://cdn.discordapp.com/attachments/716326877488349275/772539305687908412/jQD7xDpl27k.jpg"},
|
| 157 |
+
{"url":"https://cdn.discordapp.com/attachments/716326877488349275/772539306166190140/kKcvcYiN9Ck.jpg"}
|
| 158 |
+
]
|
index.js
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
console.log('Starting...')
|
| 2 |
+
|
| 3 |
+
import yargs from 'yargs'
|
| 4 |
+
import cfonts from 'cfonts'
|
| 5 |
+
import { fileURLToPath } from 'url'
|
| 6 |
+
import { join, dirname } from 'path'
|
| 7 |
+
import { createRequire } from 'module'
|
| 8 |
+
import { createInterface } from 'readline'
|
| 9 |
+
import { setupMaster, fork } from 'cluster'
|
| 10 |
+
import { watchFile, unwatchFile } from 'fs'
|
| 11 |
+
|
| 12 |
+
// https://stackoverflow.com/a/50052194
|
| 13 |
+
const { say } = cfonts
|
| 14 |
+
const rl = createInterface(process.stdin, process.stdout)
|
| 15 |
+
const __dirname = dirname(fileURLToPath(import.meta.url))
|
| 16 |
+
const require = createRequire(__dirname) // Bring in the ability to create the 'require' method
|
| 17 |
+
const { name, author } = require(join(__dirname, './package.json')) // https://www.stefanjudis.com/snippets/how-to-import-json-files-in-es-modules-node-js/
|
| 18 |
+
|
| 19 |
+
say('R-BOT', { font: 'chrome', align: 'center', gradient: ['red', 'magenta'] })
|
| 20 |
+
say(`Happy Surfing`, { font: 'console', align: 'center', gradient: ['red', 'magenta'] })
|
| 21 |
+
|
| 22 |
+
var isRunning = false
|
| 23 |
+
/**
|
| 24 |
+
* Start a js file
|
| 25 |
+
* @param {String} file `path/to/file`
|
| 26 |
+
*/
|
| 27 |
+
function start(file) {
|
| 28 |
+
if (isRunning) return
|
| 29 |
+
isRunning = true
|
| 30 |
+
let args = [join(__dirname, file), ...process.argv.slice(2)]
|
| 31 |
+
say([process.argv[0], ...args].join(' '), { font: 'console', align: 'center', gradient: ['red', 'magenta'] })
|
| 32 |
+
setupMaster({ exec: args[0], args: args.slice(1) })
|
| 33 |
+
let p = fork()
|
| 34 |
+
p.on('message', data => {
|
| 35 |
+
console.log('[RECEIVED]', data)
|
| 36 |
+
switch (data) {
|
| 37 |
+
case "reset":
|
| 38 |
+
console.log("saatnya reset");
|
| 39 |
+
p.process.kill();
|
| 40 |
+
isRunning = false;
|
| 41 |
+
start.apply(this, arguments);
|
| 42 |
+
break;
|
| 43 |
+
case "null":
|
| 44 |
+
p.process.kill();
|
| 45 |
+
isRunning = false;
|
| 46 |
+
start.apply(this, arguments);
|
| 47 |
+
break;
|
| 48 |
+
case "SIGKILL":
|
| 49 |
+
p.process.kill();
|
| 50 |
+
isRunning = false;
|
| 51 |
+
start.apply(this, arguments);
|
| 52 |
+
break;
|
| 53 |
+
case "uptime":
|
| 54 |
+
p.send(process.uptime());
|
| 55 |
+
break;
|
| 56 |
+
case 'sigsegv':
|
| 57 |
+
p.process.kill()
|
| 58 |
+
isRunning = false
|
| 59 |
+
start.apply(this, arguments)
|
| 60 |
+
break
|
| 61 |
+
}
|
| 62 |
+
})
|
| 63 |
+
p.on('exit', (_, code) => {
|
| 64 |
+
isRunning = false
|
| 65 |
+
console.error('Exited with code:', code)
|
| 66 |
+
if (code !== 0) return start(file)
|
| 67 |
+
watchFile(args[0], () => {
|
| 68 |
+
unwatchFile(args[0])
|
| 69 |
+
start(file)
|
| 70 |
+
})
|
| 71 |
+
})
|
| 72 |
+
let opts = new Object(yargs(process.argv.slice(2)).exitProcess(false).parse())
|
| 73 |
+
if (!opts['test'])
|
| 74 |
+
if (!rl.listenerCount()) rl.on('line', line => {
|
| 75 |
+
p.emit('message', line.trim())
|
| 76 |
+
})
|
| 77 |
+
// console.log(p)
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
start('main.js')
|
jahy.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368472752029696/jahy_jahy_sama_wa_kujikenai_drawn_by_konbu_wakame__eb4df739bfe1edaaf865228922f56a6b.jpg"},
|
| 3 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368473904676925/jahy_jahy_sama_wa_kujikenai_drawn_by_konbu_wakame__ee7cce76258c028105c26761b4843a63.jpg"},
|
| 4 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368476828762152/0002.jpg"},
|
| 5 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368478896422942/0012.jpg"},
|
| 6 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368479612993606/jahy_jahy_sama_wa_kujikenai_drawn_by_konbu_wakame__fcd38f5dd297b4b0c412014f12fc6570.jpg"},
|
| 7 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368482616639538/EVN_1_hU8AUiZAh.jpg"},
|
| 8 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368480821608478/33ffb315ccc5.jpg"},
|
| 9 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368482872098886/Anime-Paint-Anime-Art-Anime-Konbu-Wakame-4111984.png"},
|
| 10 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368484780113960/jahy-sama-wa-kujikenai-Jahy-Konbu-Wakame-Anime-Ero-4739457.jpeg"},
|
| 11 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771368524001837066/yande.re_523639_animal_ears_bikini_top_cleavage_jahy_jahy-sama_wa_kujikenai_konbu_wakame_swimsuits.jpg"},
|
| 12 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771369268801306634/jlYrWJH.jpg"},
|
| 13 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771369982926913556/XQkDWwNpCqc.jpg"},
|
| 14 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/771369987704750111/Manga_Serialization_Announcement_Illustration.png"},
|
| 15 |
+
{"url":"https://cdn.discordapp.com/attachments/707201738255368194/772559222084730930/16f6a933241d87f1e2228f7424fe8e94.jpg"}
|
| 16 |
+
]
|
json.sqlite
ADDED
|
Binary file (8.19 kB). View file
|
|
|
json/tebakgambar.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
json/tebaklagu.json
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound4418.mp3",
|
| 4 |
+
"judul": "Faded",
|
| 5 |
+
"artis": "Alan Walker"
|
| 6 |
+
},
|
| 7 |
+
{
|
| 8 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/pudar.mp3",
|
| 9 |
+
"judul": "Pudar",
|
| 10 |
+
"artis": "Rossa"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/after.mp3",
|
| 14 |
+
"judul": "After School",
|
| 15 |
+
"artis": "[MV] Weeekly(위클리)"
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/gatalgatal.mp3",
|
| 19 |
+
"judul": "De Yang Gatal Gatal Sa",
|
| 20 |
+
"artis": "Aldo Bz"
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/takemyhand.mp3",
|
| 24 |
+
"judul": "Take My Hand",
|
| 25 |
+
"artis": "Klaas, Freischwimmer & Sary"
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound4027.mp3",
|
| 29 |
+
"judul": "I Need A Doctors",
|
| 30 |
+
"artis": "Dr. Dre ft. Eminem, Skylar Grey"
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/bitch.mp3",
|
| 34 |
+
"judul": "Build a Bitch",
|
| 35 |
+
"artis": "Bella Poarch"
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/reason.mp3",
|
| 39 |
+
"judul": "Just Give Me A Reason",
|
| 40 |
+
"artis": "P!nk"
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound2628.mp3",
|
| 44 |
+
"judul": "Denyut Jantungku Berdebar",
|
| 45 |
+
"artis": "Casablanca"
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/remember.mp3",
|
| 49 |
+
"judul": "Remember Out Summer",
|
| 50 |
+
"artis": "Frogmonster"
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/AUD-20220901-WA0015.mp3",
|
| 54 |
+
"judul": "Feel Only Love",
|
| 55 |
+
"artis": "Klaas & Mister Ruiz"
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound5022.mp3",
|
| 59 |
+
"judul": "Angel Baby",
|
| 60 |
+
"artis": "Troye Sivan"
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/atmyworst.mp3",
|
| 64 |
+
"judul": "At My Worst",
|
| 65 |
+
"artis": "Pink Sweats"
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound9422.mp3",
|
| 69 |
+
"judul": "Rip Love",
|
| 70 |
+
"artis": "Faouzia"
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound3221.mp3",
|
| 74 |
+
"judul": "Dear Diary",
|
| 75 |
+
"artis": "Els Warouw"
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/kepastian.mp3",
|
| 79 |
+
"judul": "Kepastian Rasa",
|
| 80 |
+
"artis": "ZBI Crew"
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/lily.mp3",
|
| 84 |
+
"judul": "Lily",
|
| 85 |
+
"artis": "Alan Walker"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/unravel.mp3",
|
| 89 |
+
"judul": "Unravel",
|
| 90 |
+
"artis": "Tokyo Ghoul"
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/Grateful.mp3",
|
| 94 |
+
"judul": "Grateful",
|
| 95 |
+
"artis": "Neffex"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/SomethingJustLikeThis.mp3",
|
| 99 |
+
"judul": "Something Just Like This",
|
| 100 |
+
"artis": "Alan Walker"
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/TroubleIsAFriend.mp3",
|
| 104 |
+
"judul": "Trouble Is A Friend",
|
| 105 |
+
"artis": "Lenka"
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound7618.mp3",
|
| 109 |
+
"judul": "Waka Waka",
|
| 110 |
+
"artis": "Shakira"
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound7890.mp3",
|
| 114 |
+
"judul": "Numb",
|
| 115 |
+
"artis": "Linkin Park"
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/.mp3",
|
| 119 |
+
"judul": "Die Young",
|
| 120 |
+
"artis": "Kesha"
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/playdate.mp3",
|
| 124 |
+
"judul": "Play Date",
|
| 125 |
+
"artis": "Melanie Martinez"
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound6251.mp3",
|
| 129 |
+
"judul": "So Am I",
|
| 130 |
+
"artis": "Ava Max"
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/legendsneverdie.mp3",
|
| 134 |
+
"judul": "Legends Never Die",
|
| 135 |
+
"artis": "League of Legends"
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/tentangaku.mp3",
|
| 139 |
+
"judul": "Tentang Aku Kau Dan Dia",
|
| 140 |
+
"artis": "Kangen Band"
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound3347.mp3",
|
| 144 |
+
"judul": "Ruang Rindu",
|
| 145 |
+
"artis": "Letto"
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound2955.mp3",
|
| 149 |
+
"judul": "Surat Cinta Untuk Starla",
|
| 150 |
+
"artis": "Virgoun"
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/kusimpan.mp3",
|
| 154 |
+
"judul": "Kusimpan Rindu Di hati",
|
| 155 |
+
"artis": "Punk Rock Jalanan"
|
| 156 |
+
},
|
| 157 |
+
{
|
| 158 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/Merindukanmu.mp3",
|
| 159 |
+
"judul": "Merindukanmu",
|
| 160 |
+
"artis": "Dash Uciha"
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound8820.mp3",
|
| 164 |
+
"judul": "Takkan Terganti",
|
| 165 |
+
"artis": "Kangen Band"
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/DisaatAkuTersakiti.mp3",
|
| 169 |
+
"judul": "Disaat Aku Tersakiti",
|
| 170 |
+
"artis": "Dadali"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/Umbrella.mp3",
|
| 174 |
+
"judul": "Umbrella",
|
| 175 |
+
"artis": "Rihana"
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/lathi.mp3",
|
| 179 |
+
"judul": "Lathi",
|
| 180 |
+
"artis": "Weird Genius"
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/angan.mp3",
|
| 184 |
+
"judul": "Angan",
|
| 185 |
+
"artis": "FDM"
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/LoveMeLikeYouDo.mp3",
|
| 189 |
+
"judul": "Love Me Like You Do",
|
| 190 |
+
"artis": "Ellie Goulding"
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound.mp3",
|
| 194 |
+
"judul": "Meraih Bintang",
|
| 195 |
+
"artis": "Via Vallen"
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound7782.mp3",
|
| 199 |
+
"judul": "With You",
|
| 200 |
+
"artis": "HOAPROX"
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"lagu": "https://raw.githubusercontent.com/Aiinne/scrape/main/song/sound8101.mp3",
|
| 204 |
+
"judul": "Wonderland",
|
| 205 |
+
"artis": "Axel Johansson"
|
| 206 |
+
}
|
| 207 |
+
]
|
lib/DB_Adapters/cloudDBAdapter.js
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import got from 'got'
|
| 2 |
+
|
| 3 |
+
const stringify = obj => JSON.stringify(obj, null, 2)
|
| 4 |
+
const parse = str => JSON.parse(str, (_, v) => {
|
| 5 |
+
if (
|
| 6 |
+
v !== null &&
|
| 7 |
+
typeof v === 'object' &&
|
| 8 |
+
'type' in v &&
|
| 9 |
+
v.type === 'Buffer' &&
|
| 10 |
+
'data' in v &&
|
| 11 |
+
Array.isArray(v.data)) {
|
| 12 |
+
return Buffer.from(v.data)
|
| 13 |
+
}
|
| 14 |
+
return v
|
| 15 |
+
})
|
| 16 |
+
class CloudDBAdapter {
|
| 17 |
+
constructor(url, {
|
| 18 |
+
serialize = stringify,
|
| 19 |
+
deserialize = parse,
|
| 20 |
+
fetchOptions = {}
|
| 21 |
+
} = {}) {
|
| 22 |
+
this.url = url
|
| 23 |
+
this.serialize = serialize
|
| 24 |
+
this.deserialize = deserialize
|
| 25 |
+
this.fetchOptions = fetchOptions
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
async read() {
|
| 29 |
+
try {
|
| 30 |
+
let res = await got(this.url, {
|
| 31 |
+
method: 'GET',
|
| 32 |
+
headers: {
|
| 33 |
+
'Accept': 'application/json;q=0.9,text/plain'
|
| 34 |
+
},
|
| 35 |
+
...this.fetchOptions
|
| 36 |
+
})
|
| 37 |
+
if (res.statusCode !== 200) throw res.statusMessage
|
| 38 |
+
return this.deserialize(res.body)
|
| 39 |
+
} catch (e) {
|
| 40 |
+
return null
|
| 41 |
+
}
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
async write(obj) {
|
| 45 |
+
let res = await got(this.url, {
|
| 46 |
+
method: 'POST',
|
| 47 |
+
headers: {
|
| 48 |
+
'Content-Type': 'application/json'
|
| 49 |
+
},
|
| 50 |
+
...this.fetchOptions,
|
| 51 |
+
body: this.serialize(obj)
|
| 52 |
+
})
|
| 53 |
+
if (res.statusCode !== 200) throw res.statusMessage
|
| 54 |
+
return res.body
|
| 55 |
+
}
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
export default CloudDBAdapter
|
lib/DB_Adapters/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import cloudDBAdapter from './cloudDBAdapter.js'
|
| 2 |
+
import { mongoDB, mongoDBV2 } from './mongoDB.js'
|
| 3 |
+
|
| 4 |
+
export {
|
| 5 |
+
cloudDBAdapter,
|
| 6 |
+
mongoDB,
|
| 7 |
+
mongoDBV2
|
| 8 |
+
}
|
lib/DB_Adapters/mongoDB.js
ADDED
|
@@ -0,0 +1,180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import mongoose from 'mongoose'
|
| 2 |
+
|
| 3 |
+
const { Schema, connect, model: _model } = mongoose
|
| 4 |
+
const defaultOptions = { useNewUrlParser: true, useUnifiedTopology: true }
|
| 5 |
+
|
| 6 |
+
export class mongoDB {
|
| 7 |
+
constructor(url, options = defaultOptions) {
|
| 8 |
+
/** @type {string} */
|
| 9 |
+
this.url = url
|
| 10 |
+
/** @type {mongoose.ConnectOptions} */
|
| 11 |
+
this.options = options
|
| 12 |
+
this.data = this._data = {}
|
| 13 |
+
/** @type {mongoose.Schema} */
|
| 14 |
+
this._schema = {}
|
| 15 |
+
/** @type {mongoose.Model} */
|
| 16 |
+
this._model = {}
|
| 17 |
+
/** @type {Promise<typeof mongoose>} */
|
| 18 |
+
this.db = connect(this.url, { ...this.options }).catch(console.error)
|
| 19 |
+
}
|
| 20 |
+
async read() {
|
| 21 |
+
this.conn = await this.db
|
| 22 |
+
let schema = this._schema = new Schema({
|
| 23 |
+
data: {
|
| 24 |
+
type: Object,
|
| 25 |
+
required: true,
|
| 26 |
+
default: {}
|
| 27 |
+
}
|
| 28 |
+
})
|
| 29 |
+
try {
|
| 30 |
+
this._model = _model('data', schema)
|
| 31 |
+
} catch {
|
| 32 |
+
this._model = _model('data')
|
| 33 |
+
}
|
| 34 |
+
this._data = await this._model.findOne({})
|
| 35 |
+
if (!this._data) {
|
| 36 |
+
this.data = {}
|
| 37 |
+
await this.write(this.data)
|
| 38 |
+
this._data = await this._model.findOne({})
|
| 39 |
+
} else this.data = this._data.data
|
| 40 |
+
return this.data
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
write(data) {
|
| 44 |
+
return new Promise(async (resolve, reject) => {
|
| 45 |
+
if (!data) return reject(data)
|
| 46 |
+
if (!this._data) return resolve((new this._model({ data })).save())
|
| 47 |
+
this._model.findById(this._data._id, (err, docs) => {
|
| 48 |
+
if (err) return reject(err)
|
| 49 |
+
if (!docs.data) docs.data = {}
|
| 50 |
+
docs.data = data
|
| 51 |
+
this.data = {}
|
| 52 |
+
return docs.save(resolve)
|
| 53 |
+
})
|
| 54 |
+
})
|
| 55 |
+
}
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
export const mongoDBV2 = class MongoDBV2 {
|
| 59 |
+
constructor(url, options = defaultOptions) {
|
| 60 |
+
/** @type {string} */
|
| 61 |
+
this.url = url
|
| 62 |
+
/** @type {mongoose.ConnectOptions} */
|
| 63 |
+
this.options = options
|
| 64 |
+
/** @type {{ name: string, model: mongoose.Model}[]} */
|
| 65 |
+
this.models = []
|
| 66 |
+
/** @type {{ [Key: string]: any }} */
|
| 67 |
+
this.data = {}
|
| 68 |
+
this.lists
|
| 69 |
+
/** @type {mongoose.Model} */
|
| 70 |
+
this.list
|
| 71 |
+
/** @type {Promise<typeof mongoose>} */
|
| 72 |
+
this.db = connect(this.url, { ...this.options }).catch(console.error)
|
| 73 |
+
}
|
| 74 |
+
async read() {
|
| 75 |
+
this.conn = await this.db
|
| 76 |
+
let schema = new Schema({
|
| 77 |
+
data: [{
|
| 78 |
+
name: String,
|
| 79 |
+
}]
|
| 80 |
+
})
|
| 81 |
+
try {
|
| 82 |
+
this.list = _model('lists', schema)
|
| 83 |
+
} catch (e) {
|
| 84 |
+
this.list = _model('lists')
|
| 85 |
+
}
|
| 86 |
+
this.lists = await this.list.findOne({})
|
| 87 |
+
if (!this.lists?.data) {
|
| 88 |
+
await this.list.create({ data: [] })
|
| 89 |
+
// await (new this.list({ data: [] })).save()
|
| 90 |
+
this.lists = await this.list.findOne({})
|
| 91 |
+
}
|
| 92 |
+
const garbage = []
|
| 93 |
+
await Promise.all(this.lists.data.map(async ({ name }) => {
|
| 94 |
+
/** @type {mongoose.Model} */
|
| 95 |
+
let collection
|
| 96 |
+
try {
|
| 97 |
+
collection = _model(name, new Schema({ data: Array }))
|
| 98 |
+
} catch (e) {
|
| 99 |
+
console.error(e)
|
| 100 |
+
try {
|
| 101 |
+
collection = _model(name)
|
| 102 |
+
} catch (e) {
|
| 103 |
+
garbage.push(name)
|
| 104 |
+
console.error(e)
|
| 105 |
+
}
|
| 106 |
+
}
|
| 107 |
+
if (collection) {
|
| 108 |
+
const index = this.models.findIndex(v => v.name === name)
|
| 109 |
+
if (index !== -1) this.models[index].model = collection
|
| 110 |
+
else this.models.push({ name, model: collection })
|
| 111 |
+
const collectionsData = await collection.find({})
|
| 112 |
+
this.data[name] = Object.fromEntries(collectionsData.map(v => v.data))
|
| 113 |
+
}
|
| 114 |
+
}))
|
| 115 |
+
|
| 116 |
+
try {
|
| 117 |
+
// Delete list if not exist
|
| 118 |
+
let del = await this.list.findById(this.lists._id)
|
| 119 |
+
del.data = del.data.filter(v => !garbage.includes(v.name))
|
| 120 |
+
await del.save()
|
| 121 |
+
} catch (e) {
|
| 122 |
+
console.error(e)
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
return this.data
|
| 126 |
+
}
|
| 127 |
+
write(data) {
|
| 128 |
+
return new Promise(async (resolve, reject) => {
|
| 129 |
+
if (!this.lists || !data) return reject(data || this.lists)
|
| 130 |
+
const collections = Object.keys(data)
|
| 131 |
+
const listDoc = []
|
| 132 |
+
|
| 133 |
+
await Promise.all(collections.map(async (key) => {
|
| 134 |
+
const index = this.models.findIndex(v => v.name === key)
|
| 135 |
+
// Update if exist
|
| 136 |
+
if (index !== -1) {
|
| 137 |
+
const doc = this.models[index].model
|
| 138 |
+
if (Object.keys(data[key]).length > 0) {
|
| 139 |
+
await doc.deleteMany().catch(console.error) // alwasy insert, no matter delete error
|
| 140 |
+
await doc.insertMany(Object.entries(data[key]).map(v => ({ data: v })))
|
| 141 |
+
}
|
| 142 |
+
listDoc.push({ name: key })
|
| 143 |
+
} else { // if not exist, create new model
|
| 144 |
+
const schema = new Schema({
|
| 145 |
+
data: Array
|
| 146 |
+
})
|
| 147 |
+
/** @type {mongoose.Model} */
|
| 148 |
+
let doc
|
| 149 |
+
try {
|
| 150 |
+
doc = _model(key, schema)
|
| 151 |
+
} catch (e) {
|
| 152 |
+
console.error(e)
|
| 153 |
+
doc = _model(key)
|
| 154 |
+
}
|
| 155 |
+
if (doc) {
|
| 156 |
+
const index = this.models.findIndex(v => v.name === key)
|
| 157 |
+
if (index !== -1) this.models[index].model = doc
|
| 158 |
+
else this.models.push({ name: key, model: doc })
|
| 159 |
+
await doc.insertMany(Object.entries(data[key]).map(v => ({ data: v })))
|
| 160 |
+
listDoc.push({ name: key })
|
| 161 |
+
}
|
| 162 |
+
}
|
| 163 |
+
}))
|
| 164 |
+
|
| 165 |
+
// save list
|
| 166 |
+
this.list.findById(this.lists._id, async (err, doc) => {
|
| 167 |
+
if (err) return reject(err)
|
| 168 |
+
if (!doc) {
|
| 169 |
+
await this.read()
|
| 170 |
+
await this.write(data)
|
| 171 |
+
} else {
|
| 172 |
+
doc.data = listDoc
|
| 173 |
+
await doc.save()
|
| 174 |
+
}
|
| 175 |
+
this.data = {}
|
| 176 |
+
resolve()
|
| 177 |
+
})
|
| 178 |
+
})
|
| 179 |
+
}
|
| 180 |
+
}
|
lib/DB_Adapters/stores.js
ADDED
|
File without changes
|
lib/MediaFire.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
//import { Axios, Cheerio } from "../Utils.js";
|
| 2 |
+
import axios from "axios";
|
| 3 |
+
import cheerio from "cheerio";
|
| 4 |
+
async function mediafire(query) {
|
| 5 |
+
return new Promise((resolve, reject) => {
|
| 6 |
+
axios.get(query)
|
| 7 |
+
.then(({
|
| 8 |
+
data
|
| 9 |
+
}) => {
|
| 10 |
+
const $ = cheerio.load(data)
|
| 11 |
+
const judul = $('body > div.mf-dlr.page.ads-alternate > div.content > div.center > div > div.dl-btn-cont > div.dl-btn-labelWrap > div.promoDownloadName.notranslate > div').text();
|
| 12 |
+
const size = $('body > div.mf-dlr.page.ads-alternate > div.content > div.center > div > div.dl-info > ul > li:nth-child(1) > span').text();
|
| 13 |
+
const upload_date = $('body > div.mf-dlr.page.ads-alternate > div.content > div.center > div > div.dl-info > ul > li:nth-child(2) > span').text();
|
| 14 |
+
const link = $('#downloadButton').attr('href')
|
| 15 |
+
const hsil = {
|
| 16 |
+
judul: link.split('/')[5],
|
| 17 |
+
upload_date: upload_date,
|
| 18 |
+
size: size,
|
| 19 |
+
mime: link.split('/')[5].split('.')[1],
|
| 20 |
+
link: link
|
| 21 |
+
}
|
| 22 |
+
resolve(hsil)
|
| 23 |
+
})
|
| 24 |
+
.catch(reject)
|
| 25 |
+
})
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
export {
|
| 29 |
+
mediafire
|
| 30 |
+
}
|
lib/ai.js
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import axios from 'axios'
|
| 2 |
+
|
| 3 |
+
const GPT_ApiUrl = "https://ai.rnilaweera.ovh/api/v1/user/gpt";
|
| 4 |
+
const OpenChat_ApiUrl = "https://ai.rnilaweera.ovh/api/v1/user/openchat";
|
| 5 |
+
const Bard_ApiUrl = "https://ai.rnilaweera.ovh/api/v1/user/bard";
|
| 6 |
+
const Gemini_ApiUrl = "https://ai.rnilaweera.ovh/api/v1/user/gemini";
|
| 7 |
+
const LlamaApiUrl = "https://ai.rnilaweera.ovh/api/v1/user/llama";
|
| 8 |
+
const api = `chatgpt_NGPwCLARxuUomQJbDFhbrB`
|
| 9 |
+
|
| 10 |
+
async function gpt(prompt) {
|
| 11 |
+
try {
|
| 12 |
+
const payload = {
|
| 13 |
+
prompt: prompt,
|
| 14 |
+
};
|
| 15 |
+
|
| 16 |
+
const authHeader = `Bearer ${api}`;
|
| 17 |
+
|
| 18 |
+
const headers = {
|
| 19 |
+
Authorization: authHeader,
|
| 20 |
+
};
|
| 21 |
+
|
| 22 |
+
const response = await axios.post(GPT_ApiUrl, payload, { headers });
|
| 23 |
+
return response.data;
|
| 24 |
+
} catch (error) {
|
| 25 |
+
throw new Error(`RsnChat GPT Error: ${error}`);
|
| 26 |
+
}
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
async function openchat(prompt) {
|
| 30 |
+
try {
|
| 31 |
+
const payload = {
|
| 32 |
+
prompt: prompt,
|
| 33 |
+
};
|
| 34 |
+
|
| 35 |
+
const authHeader = `Bearer ${api}`;
|
| 36 |
+
|
| 37 |
+
const headers = {
|
| 38 |
+
Authorization: authHeader,
|
| 39 |
+
};
|
| 40 |
+
|
| 41 |
+
const response = await axios.post(OpenChat_ApiUrl, payload, { headers });
|
| 42 |
+
return response.data;
|
| 43 |
+
} catch (error) {
|
| 44 |
+
throw new Error(`RsnChat OpenChat Error: ${error}`);
|
| 45 |
+
}
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
async function bard(prompt) {
|
| 49 |
+
try {
|
| 50 |
+
const payload = {
|
| 51 |
+
prompt: prompt,
|
| 52 |
+
};
|
| 53 |
+
|
| 54 |
+
const authHeader = `Bearer ${api}`;
|
| 55 |
+
|
| 56 |
+
const headers = {
|
| 57 |
+
Authorization: authHeader,
|
| 58 |
+
};
|
| 59 |
+
|
| 60 |
+
const response = await axios.post(Bard_ApiUrl, payload, { headers });
|
| 61 |
+
return response.data;
|
| 62 |
+
} catch (error) {
|
| 63 |
+
throw new Error(`RsnChat Bard Error: ${error}`);
|
| 64 |
+
}
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
async function gemini(prompt) {
|
| 68 |
+
try {
|
| 69 |
+
const payload = {
|
| 70 |
+
prompt: prompt,
|
| 71 |
+
};
|
| 72 |
+
|
| 73 |
+
const authHeader = `Bearer ${api}`;
|
| 74 |
+
|
| 75 |
+
const headers = {
|
| 76 |
+
Authorization: authHeader,
|
| 77 |
+
};
|
| 78 |
+
|
| 79 |
+
const response = await axios.post(Gemini_ApiUrl, payload, { headers });
|
| 80 |
+
return response.data;
|
| 81 |
+
} catch (error) {
|
| 82 |
+
throw new Error(`RsnChat Gemini Error: ${error}`);
|
| 83 |
+
}
|
| 84 |
+
}
|
| 85 |
+
|
| 86 |
+
async function llama(prompt) {
|
| 87 |
+
try {
|
| 88 |
+
const payload = {
|
| 89 |
+
prompt: prompt,
|
| 90 |
+
};
|
| 91 |
+
|
| 92 |
+
const authHeader = `Bearer ${api}`;
|
| 93 |
+
|
| 94 |
+
const headers = {
|
| 95 |
+
Authorization: authHeader,
|
| 96 |
+
};
|
| 97 |
+
|
| 98 |
+
const response = await axios.post(LlamaApiUrl, payload, { headers });
|
| 99 |
+
return response.data;
|
| 100 |
+
} catch (error) {
|
| 101 |
+
throw new Error(`RsnChat LlaMa Error: ${error}`);
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
export { llama, gemini, bard, openchat, gpt }
|
lib/animedl.js
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*import axios from "axios"
|
| 2 |
+
import cheerio from "cheerio"
|
| 3 |
+
const Base_url = "https://220.158.234.46/"
|
| 4 |
+
|
| 5 |
+
function Getongoing () {
|
| 6 |
+
const res = await axios.get(`${Base_url}page/1`)
|
| 7 |
+
const $ = cheerio.load(res.data)
|
| 8 |
+
const arrays = []
|
| 9 |
+
$("div.putih.updateanime > ul > li").each(function () {
|
| 10 |
+
const title = $(this).find("div.dtl > h2 > a").text().trim()
|
| 11 |
+
const posted_by = $(this).find("div.dtl > span:nth-child(2)").text().trim().replace("Posted by: ", "")
|
| 12 |
+
const released_on = $(this).find("div.dtl > span:nth-child(3)").text().trim().replace("Released on: ", "")
|
| 13 |
+
const thumb = $(this).find("div.thumb > a > img").attr("src")
|
| 14 |
+
const link = $(this).find("div.dtl > h2 > a").attr("href")
|
| 15 |
+
arrays.push({title, posted_by, released_on, thumb, link})
|
| 16 |
+
})
|
| 17 |
+
return arrays
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
function Getdownload(urls) {
|
| 21 |
+
const res = await axios.get(urls)
|
| 22 |
+
const $ = cheerio.load(res.data)
|
| 23 |
+
const anime_object = {
|
| 24 |
+
title: "",
|
| 25 |
+
data: {},
|
| 26 |
+
thumb: "",
|
| 27 |
+
stream_list: []
|
| 28 |
+
}
|
| 29 |
+
const title = $("div.putih:nth-child(2) > div.pad_content > div.dtlx > h1").text().trim()
|
| 30 |
+
anime_object.title = title
|
| 31 |
+
const thumb = $("div.putih:nth-child(3) > div.detail > div.thumb > img").attr("src")
|
| 32 |
+
anime_object.thumb = thumb
|
| 33 |
+
|
| 34 |
+
$("div.putih:nth-child(3) > div.detail > div.dtl > span").each((idx, el) => {
|
| 35 |
+
let str = ($(el).find('b').text() || 'synopsis').trim()
|
| 36 |
+
anime_object.data[str.toLowerCase()] = $(el).text().replace(`${str} : `, '')
|
| 37 |
+
})
|
| 38 |
+
|
| 39 |
+
const Getstream = () => {
|
| 40 |
+
const array = []
|
| 41 |
+
const arrays = []
|
| 42 |
+
$("div.content_episode > div.mirror-server > ul > li").each(function () {
|
| 43 |
+
const mirror = $(this).find("a").attr("href")
|
| 44 |
+
const type = $(this).find("a").text().trim()
|
| 45 |
+
array.push({mirror, type})
|
| 46 |
+
})
|
| 47 |
+
for (let i of array) {
|
| 48 |
+
const res = await axios.get(urls + i.mirror)
|
| 49 |
+
const _$ = cheerio.load(res.data)
|
| 50 |
+
const link = _$("div.content_episode > div.player > iframe").attr("src")
|
| 51 |
+
arrays.push({type: i.type, link})
|
| 52 |
+
}
|
| 53 |
+
return arrays
|
| 54 |
+
}
|
| 55 |
+
anime_object.stream_list = await Getstream()
|
| 56 |
+
return anime_object
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
function Getdetail(urls) {
|
| 60 |
+
const res = await axios.get(urls)
|
| 61 |
+
const $ = cheerio.load(res.data)
|
| 62 |
+
const anime_object = {
|
| 63 |
+
title: "",
|
| 64 |
+
data: {},
|
| 65 |
+
thumb: "",
|
| 66 |
+
sinopsis: "",
|
| 67 |
+
download_list: [],
|
| 68 |
+
episode_list: []
|
| 69 |
+
}
|
| 70 |
+
const embed = []
|
| 71 |
+
const title = $("div.area > div:nth-child(1) > div.bigcontent > div.infox > h1").text().trim()
|
| 72 |
+
anime_object.title = title
|
| 73 |
+
const thumb = $("div.area > div:nth-child(1) > div.bigcontent > div.thumbss > img").attr("src")
|
| 74 |
+
anime_object.thumb = thumb
|
| 75 |
+
const sinopsis = $("div.area > div:nth-child(2) > div.lead > div.desc > div > p").text().trim()
|
| 76 |
+
anime_object.sinopsis = sinopsis
|
| 77 |
+
|
| 78 |
+
// Terimakasih kepada arip sepuh yang terhormat
|
| 79 |
+
$('div.area > div:nth-child(1) > div.spe > span').each(function () {
|
| 80 |
+
const str = $(this).find('b').text()
|
| 81 |
+
anime_object.data[str.split(' :')[0].toLowerCase().replace(/ /g, '_')] = $(this).text().replace(str, '').trim()
|
| 82 |
+
})
|
| 83 |
+
|
| 84 |
+
$("div.area > div:nth-child(3) > div.episodelist > div.download > div.ddl-list").each(function () {
|
| 85 |
+
const title = $(this).find("span.title").text()
|
| 86 |
+
const embed = $(this).find("a").get().map(v => {
|
| 87 |
+
const host = $(v).text().trim()
|
| 88 |
+
const link = $(v).attr("href")
|
| 89 |
+
return {host, link}
|
| 90 |
+
})
|
| 91 |
+
anime_object.download_list.push({title, embed})
|
| 92 |
+
})
|
| 93 |
+
|
| 94 |
+
$("div.area > div:nth-child(4) > div.episodelist > ul > li").each(function () {
|
| 95 |
+
const title = $(this).find("span.watch > a").text().trim()
|
| 96 |
+
const date = $(this).find("span.rightoff").text().trim()
|
| 97 |
+
const link = $(this).find("span.watch > a").attr("href")
|
| 98 |
+
anime_object.episode_list.push({title, date, link})
|
| 99 |
+
})
|
| 100 |
+
return anime_object
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
function Getsearch(query) {
|
| 104 |
+
const res = await axios.get(`${Base_url}?s=${query}`)
|
| 105 |
+
const $ = cheerio.load(res.data), array = []
|
| 106 |
+
$("div.arcpad > ul > div").each(function () {
|
| 107 |
+
const title = $(this).find("div.bsx > a").attr("alt")
|
| 108 |
+
const type = $(this).find("div.bsx > a > div.limit > span").text().trim()
|
| 109 |
+
const rating = $(this).find("div.bsx > a > div.bigor > div.adds > div.rating > i").text().trim()
|
| 110 |
+
const image = $(this).find("div.bsx > a > div.limit > img").attr("src")
|
| 111 |
+
const link = $(this).find("div.bsx > a").attr("href")
|
| 112 |
+
array.push({ title: title, type: type, rating: rating, image: image, link: link })
|
| 113 |
+
})
|
| 114 |
+
return array
|
| 115 |
+
}
|
| 116 |
+
export { Getongoing, Getdownload, Getdetail, Getsearch }*/
|
| 117 |
+
|
| 118 |
+
//module.exports = { Getongoing, Getdownload, Getdetail, Getsearch }
|
lib/animesearch.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import axios from "axios"
|
| 2 |
+
import cheerio from "cheerio"
|
| 3 |
+
const Base_url = "https://220.158.234.46/"
|
| 4 |
+
|
| 5 |
+
function anime (query) {
|
| 6 |
+
return new Promise((resolve, reject) => {
|
| 7 |
+
axios.get(`https://www.anime-planet.com/anime/all?name=${query}`)
|
| 8 |
+
.then(({
|
| 9 |
+
data
|
| 10 |
+
}) => {
|
| 11 |
+
const hasil = []
|
| 12 |
+
const $ = cheerio.load(data)
|
| 13 |
+
$('#siteContainer > ul.cardDeck.cardGrid > li ').each(function (a, b) {
|
| 14 |
+
result = {
|
| 15 |
+
status: 200,
|
| 16 |
+
author: author,
|
| 17 |
+
judul: $(b).find('> a > h3').text(),
|
| 18 |
+
link: 'https://www.anime-planet.com' + $(b).find('> a').attr('href'),
|
| 19 |
+
thumbnail: 'https://www.anime-planet.com' + $(b).find('> a > div.crop > img').attr('src')
|
| 20 |
+
};
|
| 21 |
+
hasil.push(result);
|
| 22 |
+
});
|
| 23 |
+
resolve(hasil)
|
| 24 |
+
})
|
| 25 |
+
.catch(reject)
|
| 26 |
+
})
|
| 27 |
+
}
|
| 28 |
+
export { anime }
|
| 29 |
+
|
| 30 |
+
//module.exports = { Getongoing, Getdownload, Getdetail, Getsearch }
|
lib/anunya.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import axios from 'axios'
|
| 2 |
+
import fetch from 'node-fetch'
|
| 3 |
+
import qs from 'qs'
|
| 4 |
+
async function doodstream(url){
|
| 5 |
+
let config = {
|
| 6 |
+
headers: {
|
| 7 |
+
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
|
| 8 |
+
"sec-ch-ua": '" Not;A Brand";v="99", "Google Chrome";v="91", "Chromium";v="91"',
|
| 9 |
+
"cookie": "PHPSESSID=ugpgvu6fgc4592jh7ht9d18v49; _ga=GA1.2.1126798330.1625045680; _gid=GA1.2.1475525047.1625045680; __gads=ID=92b58ed9ed58d147-221917af11ca0021:T=1625045679:RT=1625045679:S=ALNI_MYnQToDW3kOUClBGEzULNjeyAqOtg",
|
| 10 |
+
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
|
| 11 |
+
},
|
| 12 |
+
data: {
|
| 13 |
+
'url': url,
|
| 14 |
+
'action': 'post',
|
| 15 |
+
}
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
const response = await axios.post('https://api.hunternblz.com/doodstream', qs.stringify(config.data), { headers: config.headers })
|
| 19 |
+
return response.data
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
async function terabox(url){
|
| 23 |
+
let config = {
|
| 24 |
+
headers: {
|
| 25 |
+
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
|
| 26 |
+
"sec-ch-ua": '" Not;A Brand";v="99", "Google Chrome";v="91", "Chromium";v="91"',
|
| 27 |
+
"cookie": "PHPSESSID=ugpgvu6fgc4592jh7ht9d18v49; _ga=GA1.2.1126798330.1625045680; _gid=GA1.2.1475525047.1625045680; __gads=ID=92b58ed9ed58d147-221917af11ca0021:T=1625045679:RT=1625045679:S=ALNI_MYnQToDW3kOUClBGEzULNjeyAqOtg",
|
| 28 |
+
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
|
| 29 |
+
},
|
| 30 |
+
data: {
|
| 31 |
+
'url': url,
|
| 32 |
+
'action': 'post',
|
| 33 |
+
}
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
const response = await axios.post('https://api.hunternblz.com/terabox', qs.stringify(config.data), { headers: config.headers })
|
| 37 |
+
return response.data
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
export { doodstream, terabox }
|
lib/bahasa-indo.js
ADDED
|
@@ -0,0 +1,564 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
const lenguaje = () => { return 'id' } //Bahasa Indonesia
|
| 2 |
+
|
| 3 |
+
//PEMBERITAHUAN PESAN
|
| 4 |
+
const smsAvisoRG = () => { return `╰⊱✅⊱ *HASIL* ⊱✅⊱╮\n\n` }
|
| 5 |
+
const smsAvisoAG = () => { return `╰⊱⚠️⊱ *PERINGATAN* ⊱⚠️⊱╮\n\n` }
|
| 6 |
+
const smsAvisoIIG = () => { return `╰⊱❕⊱ *INFORMASI* ⊱❕⊱╮\n\n` }
|
| 7 |
+
const smsAvisoFG = () => { return `╰⊱❌⊱ *KESALAHAN* ⊱❌⊱╮\n\n` }
|
| 8 |
+
const smsAvisoMG = () => { return `╰⊱❗️⊱ *TINDAKAN BURUK* ⊱❗️⊱╮\n\n` }
|
| 9 |
+
const smsAvisoEEG = () => { return `╰⊱📩⊱ *LAPORAN* ⊱📩⊱╮\n\n` }
|
| 10 |
+
const smsAvisoEG = () => { return `╰⊱💚⊱ *KESUKSESAN* ⊱💚⊱╮\n\n` }
|
| 11 |
+
|
| 12 |
+
//PARAMETER DALAM PERINTAH
|
| 13 |
+
const smsRowner = () => { return `\`\`\`¡¡PERINTAH INI HANYA SAYA SEBAGAI PENCIPTA BOT YANG BISA MENGGUNAKANNYA!!\`\`\`` }
|
| 14 |
+
const smsOwner = () => { return `\`\`\`¡¡PERINTAH INI HANYA KREATOR SAYA YANG BISA MENGGUNAKANNYA!!\`\`\`` }
|
| 15 |
+
const smsMods = () => { return `\`\`\`¡¡PERINTAH INI HANYA MODERATOR DAN PENCIPTA SAYA YANG BISA MENGGUNAKANNYA!!\`\`\`` }
|
| 16 |
+
const smsPremium = () => { return `\`\`\`¡¡PERINTAH INI HANYA TERSEDIA UNTUK PENGGUNA PREMIUM DAN PENCIPTA SAYA!! UNTUK MENDAPATKAN PREMIUM, BELI PASS MENGGUNAKAN #pass premium\`\`\`` }
|
| 17 |
+
const smsGroup = () => { return `\`\`\`¡¡PERINTAH INI HANYA DAPAT DIGUNAKAN DALAM GRUP!!\`\`\`` }
|
| 18 |
+
const smsPrivate = () => { return `\`\`\`¡¡COMMAND INI HANYA DAPAT DIGUNAKAN UNTUK PRIVATE!!\`\`\`` }
|
| 19 |
+
const smsAdmin = () => { return `\`\`\`¡¡PERINTAH INI HANYA UNTUK ADMIN!!\`\`\`` }
|
| 20 |
+
const smsBotAdmin = () => { return `\`\`\`¡¡SAYA PERLU MENJADI ADMIN SEHINGGA ANDA BISA MENGGUNAKAN COMMAND INI!!\`\`\`` }
|
| 21 |
+
const smsUnreg = () => { return `\`\`\`¡¡ANDA HARUS DAFTAR UNTUK MENGGUNAKAN COMMAND INI, KETIK #verify UNTUK DAFTAR!!\`\`\`` }
|
| 22 |
+
const smsRestrict = () => { return `\`\`\`¡¡PERINTAH INI DIBATASI OLEH PENCIPTA SAYA!!\`\`\`` }
|
| 23 |
+
|
| 24 |
+
//DAFTAR MENU
|
| 25 |
+
const smsTime = () => { return `Waktu saat ini`}
|
| 26 |
+
const smsUptime = () => { return `Berjalan Selama`}
|
| 27 |
+
const smsVersion = () => { return `Versi dari ${global.packname}`}
|
| 28 |
+
const smsTotalUsers = () => { return `Jumlah Pengguna`}
|
| 29 |
+
const smsMode = () => { return `Sedang dalam mode`}
|
| 30 |
+
const smsModePublic = () => { return `PUBLIK`}
|
| 31 |
+
const smsModePrivate = () => { return `PRIBADI`}
|
| 32 |
+
const smsBanChats = () => { return `Obrolan Terlarang`}
|
| 33 |
+
const smsBanUsers = () => { return `Pengguna yang Diblokir`}
|
| 34 |
+
const smsPareja = () => { return `Pasangan`}
|
| 35 |
+
const smsResultPareja = () => { return `Lajang`}
|
| 36 |
+
const smsSaludo = () => { return `👋 HALO! SELAMAT DATANG 👋`}
|
| 37 |
+
const smsDia = () => { return `🌇 Selamat pagi ⛅`}
|
| 38 |
+
const smsTarde = () => { return `🏙️ Selamat malam 🌤️`}
|
| 39 |
+
const smsTarde2 = () => { return `🌆 Selamat malam 🌥️`}
|
| 40 |
+
const smsNoche = () => { return `🌃 Selamat malam 💫`}
|
| 41 |
+
const smsListaMenu = () => { return `⊹ DAFTAR MENU ⊹`}
|
| 42 |
+
const smsLista1 = () => { return `🌟 INFORMASI GATABOT 🌟`}
|
| 43 |
+
const smsLista2 = () => { return `💖 PENCIPTA 💖`}
|
| 44 |
+
const smsLista3 = () => { return `🎁 DONASI: DUKUNGAN 🎁`}
|
| 45 |
+
const smsLista4 = () => { return `🚀 KECEPATAN 🚀`}
|
| 46 |
+
const smsLista5 = () => { return `💡 INFORMASI MENU 💡`}
|
| 47 |
+
const smsLista6 = () => { return `🌀 MENU LENGKAP 🌀`}
|
| 48 |
+
const smsLista7 = () => { return `🐈 PASANG GATABOT 🐈`}
|
| 49 |
+
const smsLista8 = () => { return `🍄 JADILAH SUBBOT 🍄`}
|
| 50 |
+
const smsLista9 = () => { return `📄 SYARAT, KETENTUAN DAN PRIVASI 📄`}
|
| 51 |
+
const smsLista10 = () => { return `🌟 PETUALANGAN DAN TOP 🌟`}
|
| 52 |
+
const smsLista11 = () => { return `🏆 TOP DUNIA 🏆`}
|
| 53 |
+
const smsLista12 = () => { return `🏅 PENGGUNA PREMIUM 🏅`}
|
| 54 |
+
const smsLista13 = () => { return `🎟️ JADILAH PENGGUNA PREMIUM 🎟️`}
|
| 55 |
+
const smsLista14 = () => { return `🛣️ MISI 🛣️`}
|
| 56 |
+
const smsLista15 = () => { return `⚗️ MENU RPG ⚗️`}
|
| 57 |
+
const smsLista16 = () => { return `🏪 PEMBELIAN TOKO 🏪`}
|
| 58 |
+
const smsLista17 = () => { return `🎒 INVENTARIS 🎒`}
|
| 59 |
+
const smsLista18 = () => { return `🌟 MULTIMEDIA 🌟`}
|
| 60 |
+
const smsLista19 = () => { return `📲 UNDUH MENU 📲`}
|
| 61 |
+
const smsLista20 = () => { return `🔍 MENU CARI 🔍`}
|
| 62 |
+
const smsLista21 = () => { return `🛰️ MENU KONVERTER 🛰️`}
|
| 63 |
+
const smsLista22 = () => { return `🧰 MENU PENGUBAH AUDIO 🧰`}
|
| 64 |
+
const smsLista22_1 = () => { return `🔩 MENU ALAT 🔩`}
|
| 65 |
+
const smsLista23 = () => { return `🌟 SERU 🌟`}
|
| 66 |
+
const smsLista24 = () => { return `🎡 GAME DINAMIS 🎡`}
|
| 67 |
+
const smsLista25 = () => { return `🔊 MENU AUDIO 🔊`}
|
| 68 |
+
const smsLista26 = () => { return `🎈 MENU STIKER DAN FILTER 🎈`}
|
| 69 |
+
const smsLista27 = () => { return `✨ MENU EFEK DAN LOGO ✨`}
|
| 70 |
+
const smsLista28 = () => { return `🌅 LOGO MENU 2 🌅`}
|
| 71 |
+
const smsLista29 = () => { return `⛩️ MEME DAN ANIME RANDOM ⛩️`}
|
| 72 |
+
const smsLista30 = () => { return `🔞 PERINTAH UNTUK DEWASA +18 🔞`}
|
| 73 |
+
const smsLista31 = () => { return `🌟 PENGATURAN 🌟`}
|
| 74 |
+
const smsLista32 = () => { return `🔰 MENU UNTUK GRUP 🔰`}
|
| 75 |
+
const smsLista33 = () => { return `📑 JENIS DAFTAR 📑`}
|
| 76 |
+
const smsLista34 = () => { return `⚙️ PUSAT KONFIGURASI ⚙���`}
|
| 77 |
+
const smsLista35 = () => { return `💎 PEMILIK MENU 💎`}
|
| 78 |
+
|
| 79 |
+
//main.js
|
| 80 |
+
const smsWelcome = () => { return `*╭┈⊰* @subject *⊰┈ ✦*\n*┊✨ SELAMAT DATANG!!*\n┊💖 @user\n┊📄 *BACA DESKRIPSI GRUP*\n*╰┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ ✦*\n${String.fromCharCode(8206).repeat(850)}\n@desc`}
|
| 81 |
+
const smsBye = () => { return '*╭┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈⊰*\n┊ @user\n┊ *DIA MENINGGALKAN GRUP, SEGERA KEMBALI* 😎\n*╰┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈⊰*'}
|
| 82 |
+
const smsSpromote = () => { return '*@user ANDA SEKARANG ADMIN DI GRUP INI!!*'}
|
| 83 |
+
const smsSdemote = () => { return '*@user TIDAK ADA LAGI ADMIN DI GRUP INI!!*'}
|
| 84 |
+
const smsSdesc = () => { return '*DESKRIPSI BARU GRUP ADALAH:*\n\n@desc'}
|
| 85 |
+
const smsSsubject = () => { return '*NAMA BARU GRUP ADALAH:*\n\n@subject'}
|
| 86 |
+
const smsSicon = () => { return '*FOTO GRUP INI SUDAH DIUBAH!!*'}
|
| 87 |
+
const smsSrevoke = () => { return '*SEKARANG INI LINK BARU DARI GRUP INI!!*\n\n*@revoke*'}
|
| 88 |
+
const smsConexion = () => { return `\n𓃠 ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈✦ 🟢 KONEKSI ✦┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ 𓃠\n│\n│★ SUKSES KONEKSI DENGAN WHATSAPP 😺\n│\n𓃠 ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈✦ ✅ ✦┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ 𓃠`}
|
| 89 |
+
const smsCargando = () => { return `😸 MEMUAT...\n`}
|
| 90 |
+
const smsCodigoQR = () => { return `\n✅ PINDAI KODE QR BERAKHIR DALAM 45 DETIK ✅`}
|
| 91 |
+
const smsConexionOFF = () => { return `\n⚠️ TIDAK ADA KONEKSI, HAPUS FOLDER ${global.authFile} DAN PINDAI KODE QR ⚠️`}
|
| 92 |
+
const smsClearTmp = () => { return `\n╭» 🟢 MULTIMEDIA 🟢\n│☁ FILE DARI FOLDER TMP DIHAPUS\n╰―――――――――――――――――――✤`}
|
| 93 |
+
const smspurgeSession = () => { return `\n╭» 🔵 ${global.authFile} 🔵\n│☁ SESI NON-ESENSIAL DIHILANGKAN\n╰―――――――――――――――――――✤`}
|
| 94 |
+
const smspurgeOldFiles = () => { return `\n╭» 🟠 FILE 🟠\n│☁ FILE SISA DIHAPUS\n╰―――――――――――――――――――✤`}
|
| 95 |
+
const smspurgeSessionSB1 = () => { return `\n╭» 🟡 GataJadiBot 🟡\n│☁ TIDAK ADA YANG DIHAPUS \n╰―――――――――――――――――――✤`}
|
| 96 |
+
const smspurgeSessionSB2 = () => { return `\n╭» ⚪ GataJadiBot ⚪\n│☁ FILE NON-ESENSIAL DIHAPUS\n╰―――――――――――――――――――✤`}
|
| 97 |
+
const smspurgeSessionSB3 = () => { return `\n╭» 🔴 GataJadiBot 🔴\n│☁ TERJADI KESALAHAN\n╰―――――――――――――――――――✤\n`}
|
| 98 |
+
const smspurgeOldFiles1 = () => { return `\n╭» 🟣 FILE 🟣\n│☁`}
|
| 99 |
+
const smspurgeOldFiles2 = () => { return `HAPUS BERHASIL\n╰―――――――――――――――――――✤`}
|
| 100 |
+
const smspurgeOldFiles3 = () => { return `\n╭» 🔴 FILE 🔴\n│☁`}
|
| 101 |
+
const smspurgeOldFiles4 = () => { return `GAGAL DIHAPUS\n╰―――――――――――――――――――✤\n`}
|
| 102 |
+
|
| 103 |
+
//_allantilink.js
|
| 104 |
+
const smsTextoYT = () => { return '😻 Super GataBot-MD - WhatsApp '}
|
| 105 |
+
const smsApagar = () => { return '❌ MENONAKTIFKAN'}
|
| 106 |
+
const smsEncender = () => { return '✅ MENGAKTIFKAN'}
|
| 107 |
+
const smsEnlaceTik = () => { return `*LINK TIKTOK YANG DILARANG TERDETEKSI DI GRUP INI*\n\n*SAYA LANJUTKAN UNTUK MENGHAPUS ANDA*`}
|
| 108 |
+
const smsEnlaceYt = () => { return `*LINK YOUTUBE YANG DILARANG TERDETEKSI DI GRUP INI*\n\n*SAYA LANJUTKAN UNTUK MENGHAPUS ANDA*`}
|
| 109 |
+
const smsEnlaceTel = () => { return `*LINK TELEGRAM YANG DILARANG TERDETEKSI DI GRUP INI*\n\n*SAYA LANJUTKAN UNTUK MENGHAPUS ANDA*`}
|
| 110 |
+
const smsEnlaceFb = () => { return `*LINK FACEBOOK TERBANNED TERDETEKSI DI GRUP INI*\n\n*SAYA LANJUTKAN UNTUK MENGHAPUS ANDA*`}
|
| 111 |
+
const smsEnlaceIg = () => { return `*LINK INSTAGRAM TERBANNED TERDETEKSI DI GRUP INI*\n\n*SAYA LANJUTKAN UNTUK MENGHAPUS ANDA*`}
|
| 112 |
+
const smsEnlaceTw = () => { return `*TAUTAN TWITTER YANG DILARANG TERDETEKSI DI GRUP INI*\n\n*SAYA LANJUTKAN UNTUK MENGHAPUS ANDA*`}
|
| 113 |
+
const smsAllAdmin = () => { return `*SAYA PERLU MENJADI ADMIN UNTUK DAPAT MENGHAPUS PENYUSU*`}
|
| 114 |
+
const smsSoloOwner = () => { return `*KREATOR SAYA HARUS MENGAKTIFKAN FUNGSINYA*\n*#on restrict*`}
|
| 115 |
+
|
| 116 |
+
//handler.js
|
| 117 |
+
const smsCont1 = () => { return `*🔴 PERINTAH GAGAL 🔴*`}
|
| 118 |
+
const smsCont2 = () => { return `*⚠️ PLUGIN:*`}
|
| 119 |
+
const smsCont3 = () => { return `*⚠️ PENGGUNA:*`}
|
| 120 |
+
const smsCont4 = () => { return `*⚠️ MEMERINTAH:*`}
|
| 121 |
+
const smsCont5 = () => { return `*⚠️ KESALAHAN:*`}
|
| 122 |
+
const smsCont6 = () => { return `*❗ LAPORAN PESAN INI MENGGUNAKAN COMMAND #reporte UNTUK MEMECAHKANNYA*`}
|
| 123 |
+
const smsCont7 = () => { return `${global.lenguajeGB['smsAvisoAG']()}*TIDAK MEMILIKI BERLIAN!! 💎 ANDA DAPAT PERGI KE TOKO DENGAN PERINTAH*`}
|
| 124 |
+
const smsCont8 = () => { return ` *BERLIAN 💎 DIGUNAKAN*`}
|
| 125 |
+
const smsCont9 = () => { return `${global.lenguajeGB['smsAvisoAG']()}*BUTUH TINGKATNYA ➡️*`}
|
| 126 |
+
const smsCont10 = () => { return `*UNTUK MENGGUNAKAN PERINTAH INI. TINGKAT ANDA SAAT INI ADALAH ➡️*`}
|
| 127 |
+
const smsCont11 = () => { return `*PERBARUI DENGAN PERINTAH*`}
|
| 128 |
+
const smsCont12 = () => { return `GRUP BESAR!! 😼`}
|
| 129 |
+
const smsCont13 = () => {return `ADA YANG BERGABUNG!! 🥳`}
|
| 130 |
+
const smsCont14 = () => { return `SESEORANG TINGGAL!! 🧐`}
|
| 131 |
+
const smsCont15 = () => { return `*HALO*`}
|
| 132 |
+
const smsCont16 = () => { return `*PANGGILAN VIDEO* 📲`}
|
| 133 |
+
const smsCont17 = () => { return `*PANGGILAN* 📞`}
|
| 134 |
+
const smsCont18 = () => { return `*MEREKA TIDAK BERWENANG JADI SAYA AKAN MEMBLOKIR ANDA*\n\n*JIKA ANDA TERPANGGIL SECARA KECELAKAAN HUBUNGI ORANG PENCIPTA BOT INI*`}
|
| 135 |
+
const smsCont19 = () => { return `ANTI HAPUS`}
|
| 136 |
+
const smsCont20 = () => { return `*┃✤ Nama:*`}
|
| 137 |
+
const smsCont21 = () => { return `*┃✤ Mengirim pesan yang dihapus...*`}
|
| 138 |
+
|
| 139 |
+
//_anti-internacional.js
|
| 140 |
+
const smsInt1 = () => { return `*NOMOR INI*`}
|
| 141 |
+
const smsInt2 = () => { return `*TIDAK DIPERBOLEHKAN DI GRUP INI!!*`}
|
| 142 |
+
|
| 143 |
+
//_antilink.js
|
| 144 |
+
const smsAdwa = () => { return `${global.lenguajeGB['smsAvisoEG']()}*SEBAGAI ANDA ADMIN DI GRUP INI ANDA TIDAK AKAN DIHAPUS*`}
|
| 145 |
+
const smsEnlaceWat = () => { return `${lenguajeGB['smsAvisoAG']()}*LINK WHATSAPP TERBANNED TERDETEKSI DI GRUP INI*\n\n*SAYA LANJUTKAN UNTUK MENGHAPUS ANDA*`}
|
| 146 |
+
|
| 147 |
+
//_antilink2.js
|
| 148 |
+
const smsEnlaceWatt = () => { return `${lenguajeGB['smsAvisoAG']()}LINK TERLARANG MENGANDUNG HTTPS TERDETEKSI DI GRUP INI\n\nSAYA LANJUTKAN UNTUK MENGHAPUS ANDA`}
|
| 149 |
+
|
| 150 |
+
//_antispam.js
|
| 151 |
+
const smsNoSpam = () => { return `🤨 JANGAN SPAM, ANDA TIDAK AKAN DAPAT MENGGUNAKAN ${global.packname} UNTUK ${60000 / 1000 - 59} MENIT`}
|
| 152 |
+
|
| 153 |
+
//_antispam_.js
|
| 154 |
+
const smsNoSpam2 = () => { return `DIBATALKAN SETELAH ${60000 / 1000 - 59} MENIT. TOLONG JANGAN SPAM!!`}
|
| 155 |
+
|
| 156 |
+
//teks
|
| 157 |
+
const smsConMenu = () => { return `☘️ MENU`}
|
| 158 |
+
|
| 159 |
+
//Kesalahan
|
| 160 |
+
const smsMalError = () => { return `${lenguajeGB['smsAvisoFG']()}\`\`\`SEBUAH KESALAHAN YANG TIDAK TERDUGA TELAH TERJADI.\`\`\``}
|
| 161 |
+
const smsMalError2 = () => { return `${lenguajeGB['smsAvisoFG']()}\`\`\`KENYAMANAN TELAH TIMBUL. COBA LAGI.\`\`\``}
|
| 162 |
+
const smsMalError3 = () => { return `${lenguajeGB['smsAvisoFG']()}\`\`\`ADA YANG SALAH, LAPORAN PERINTAH INI MENGGUNAKAN:\`\`\`\n`}
|
| 163 |
+
|
| 164 |
+
//_antitoxic.js
|
| 165 |
+
const smsToxic1 = () => { return `TIDAK!!! 🤬 KATAKAN KATA INI`}
|
| 166 |
+
const smsToxic2 = () => { return `DILARANG JANGAN TOXIC`}
|
| 167 |
+
const smsToxic3 = () => { return `*PERINGATAN*\n⚠️`}
|
| 168 |
+
const smsToxic4 = () => { return `😭 SAYA MINTA MAAF`}
|
| 169 |
+
const smsToxic5 = () => { return `☢️ NONAKTIFKAN ANTITOXIC`}
|
| 170 |
+
const smsToxic6 = () => { return `SAYA PERINGATKAN KALIAN BEBERAPA KALI!!`}
|
| 171 |
+
const smsToxic7 = () => { return `ANDA LULUS SEMUA 4 PERINGATAN SEKARANG ANDA AKAN DIHAPUS 🙄`}
|
| 172 |
+
|
| 173 |
+
//Toko
|
| 174 |
+
const eExp = () => { return '⚡ Experience' }
|
| 175 |
+
const eDiamante = () => { return '💎 Diamond' }
|
| 176 |
+
const eDiamantePlus = () => { return '💎+ Diamond+' }
|
| 177 |
+
const eToken = () => { return '🪙 Token' }
|
| 178 |
+
const eEsmeralda = () => { return '💚 Emerald' }
|
| 179 |
+
const eJoya = () => { return '♦️ Jewel' }
|
| 180 |
+
const eMagia = () => { return '🌀 Magic' }
|
| 181 |
+
const eOro = () => { return '👑 Gold' }
|
| 182 |
+
const eGataCoins = () => { return '🐱 GataCoins' }
|
| 183 |
+
const eGataTickers = () => { return '🎫 Gata Tickers' }
|
| 184 |
+
const eEnergia = () => { return '✨ Energy' }
|
| 185 |
+
|
| 186 |
+
const ePocion = () => { return '🥤 Potion' }
|
| 187 |
+
const eAgua = () => { return '💧 Water' }
|
| 188 |
+
const eBasura = () => { return '🗑 Trash' }
|
| 189 |
+
const eMadera = () => { return '🪵 Wood' }
|
| 190 |
+
const eRoca = () => { return '🪨 Rock' }
|
| 191 |
+
const ePiedra = () => { return '🥌 Stone' }
|
| 192 |
+
const eCuerda = () => { return '🕸️ String' }
|
| 193 |
+
const eHierro = () => { return '⛓️ Iron' }
|
| 194 |
+
const eCarbon = () => { return '⚱️ Coal' }
|
| 195 |
+
const eBotella = () => { return '🍶 Bottle' }
|
| 196 |
+
const eLata = () => { return '🥫 Can' }
|
| 197 |
+
const eCarton = () => { return '🪧 Paperboard' }
|
| 198 |
+
|
| 199 |
+
const eEletric = () => { return '💡 Electricity' }
|
| 200 |
+
const eBarraOro = () => { return '〽️ Gold bar' }
|
| 201 |
+
const eOroComun = () => { return '🧭 Common Gold' }
|
| 202 |
+
const eZorroG = () => { return '🦊🌫️ Big Fox' }
|
| 203 |
+
const eBasuraG = () => { return '🗑🌫️ Super Trash' }
|
| 204 |
+
const eLoboG = () => { return '🐺🌫️ Super Wolf' }
|
| 205 |
+
const eMaderaG = () => { return '🛷🌫️ Super Wood' }
|
| 206 |
+
const eEspada = () => { return '⚔️ Sword' }
|
| 207 |
+
const eCarnada = () => { return '🪱 Bait' }
|
| 208 |
+
const eBillete = () => { return '💵 Banknotes' }
|
| 209 |
+
const ePinata = () => { return '🪅 Pinata' }
|
| 210 |
+
const eGancho = () => { return '🪝 Hook' }
|
| 211 |
+
const eCanaPescar = () => { return '🎣 Fishing Rod' }
|
| 212 |
+
|
| 213 |
+
const eCComun = () => { return '📦 Common Box' }
|
| 214 |
+
const ePComun = () => { return '🥡 Uncommon Box' }
|
| 215 |
+
const eCMistica = () => { return '🗳️ Mythic Box' }
|
| 216 |
+
const eCMascota = () => { return '📫 Pet Box' }
|
| 217 |
+
const eCJardineria = () => { return '💐 Gardening Box' }
|
| 218 |
+
const eClegendaria = () => { return '🎁 Legendary Box' }
|
| 219 |
+
|
| 220 |
+
const eUva = () => { return '🍇 Grape' }
|
| 221 |
+
const eManzana = () => { return '🍎 Apple' }
|
| 222 |
+
const eNaranja = () => { return '🍊 Orange' }
|
| 223 |
+
const eMango = () => { return '🥭 Mango' }
|
| 224 |
+
const ePlatano = () => { return '🍌 Banana' }
|
| 225 |
+
|
| 226 |
+
const eSUva = () => { return '🌾🍇 Grape seeds' }
|
| 227 |
+
const eSManzana = () => { return '🌾🍎 Apple seeds' }
|
| 228 |
+
const eSNaranja = () => { return '🌾🍊 Orange seeds' }
|
| 229 |
+
const eSMango = () => { return '🌾🥭 Mango Seeds' }
|
| 230 |
+
const eSPlatano = () => { return '🌾🍌 Banana seeds' }
|
| 231 |
+
|
| 232 |
+
const eCentauro = () => { return '🐐 Centaur' }
|
| 233 |
+
const eAve = () => { return '🦅 Bird' }
|
| 234 |
+
const eGato = () => { return '🐈 Cat' }
|
| 235 |
+
const eDragon = () => { return '🐉 Dragon' }
|
| 236 |
+
const eZorro = () => { return '🦊 Fox' }
|
| 237 |
+
const eCaballo = () => { return '🐎 Horse' }
|
| 238 |
+
const eFenix = () => { return '🕊️ Phoenix' }
|
| 239 |
+
const eLobo = () => { return '🐺 Wolf' }
|
| 240 |
+
const ePerro = () => { return '🐶 Dog' }
|
| 241 |
+
|
| 242 |
+
const eAMascots = () => { return '🍖 Pet Food' }
|
| 243 |
+
const eCCentauro = () => { return '🐐🥩 Centaur Food' }
|
| 244 |
+
const eCAve = () => { return '🦅🥩 Bird Food' }
|
| 245 |
+
const eCMagica = () => { return '🌀🥩 Magic Food' }
|
| 246 |
+
const eCDragon = () => { return '🐉🥩 Dragon Food' }
|
| 247 |
+
const eACaballo = () => { return '🐎🥩 Horse Food' }
|
| 248 |
+
const eCFenix = () => { return '🕊️🥩 Phoenix Food' }
|
| 249 |
+
|
| 250 |
+
//config-on y off.js
|
| 251 |
+
const smsWel1 = () => { return `🎉 SELAMAT DATANG`}
|
| 252 |
+
const smsWel2 = () => { return `Pesan Selamat Datang untuk Anggota baru di Grup`}
|
| 253 |
+
const smsDete1 = () => { return `🔔 PEMBERITAHUAN`}
|
| 254 |
+
const smsDete2 = () => { return `Pemberitahuan tindakan dalam Grup`}
|
| 255 |
+
const smsANivel1 = () => { return `🆙 TINGKAT OTOMATIS`}
|
| 256 |
+
const smsANivel2 = () => { return `Tingkatkan semua orang secara otomatis; (Berlaku hadiah untuk naik level)`}
|
| 257 |
+
const smsRestri1 = () => { return `⛔ UNTUK MEMBATASI`}
|
| 258 |
+
const smsRestri2 = () => { return `Aktifkan fungsi untuk menambah atau menghapus orang di Grup`}
|
| 259 |
+
const smsLlamar1 = () => { return `🚫 ANTI PANGGILAN`}
|
| 260 |
+
const smsLlamar2 = () => { return `Blokir orang yang melakukan panggilan`}
|
| 261 |
+
const smsAntiSp1 = () => { return `🚯 ANTI SPAM`}
|
| 262 |
+
const smsAntiSp2 = () => { return `Larangan Penggunaan Perintah ketika seseorang melakukan beberapa jenis Spam`}
|
| 263 |
+
const smsModP1 = () => { return `🌐 MODE PUBLIK`}
|
| 264 |
+
const smsModP2 = () => { return `Aktifkan fungsi agar semua orang dapat menggunakan GataBot`}
|
| 265 |
+
const smsModAd1 = () => { return `🛂 MODE ADMIN`}
|
| 266 |
+
const smsModAd2 = () => { return `Hanya Admin yang dapat menggunakan GataBot di Grup`}
|
| 267 |
+
const smsLect1 = () => { return `✅ BACAAN OTOMATIS`}
|
| 268 |
+
const smsLect2 = () => { return `Tinggalkan pesan atau obrolan sebagai Dibaca`}
|
| 269 |
+
const smsTempo1 = () => { return `🐈 BOT SEMENTARA`}
|
| 270 |
+
const smsTempo2 = () => { return `Fungsi yang memungkinkan tinggal sementara di Grup`}
|
| 271 |
+
const smsStik1 = () => { return `🎠 STIKER`}
|
| 272 |
+
const smsStik2 = () => { return `Aktifkan pengiriman Stiker otomatis ke semua orang`}
|
| 273 |
+
const smsStickA1 = () => { return `🪄 STIKER OTOMATIS`}
|
| 274 |
+
const smsStickA2 = () => { return `Video, Gif, gambar, jpg atau tautan jpeg; Mereka akan diubah menjadi Stiker Secara Otomatis`}
|
| 275 |
+
const smsReacc1 = () => { return `🤡 REAKSI `}
|
| 276 |
+
const smsReacc2 = () => { return `Aktifkan pengiriman otomatis Reaksi ke pesan`}
|
| 277 |
+
const smsAudi1 = () => { return `🔊 AUDIO`}
|
| 278 |
+
const smsAudi2 = () => { return `Aktifkan pengiriman Audio secara otomatis ke semua orang`}
|
| 279 |
+
const smsModHor1 = () => { return `🔞 MODE TANDA`}
|
| 280 |
+
const smsModHor2 = () => { return `Tampilkan konten Dewasa di Obrolan`}
|
| 281 |
+
const smsAntitoc1 = () => { return `☢️ ANTI TOKSIK`}
|
| 282 |
+
const smsAntitoc2 = () => { return `Kirim Peringatan orang-orang yang menghina`}
|
| 283 |
+
const smsModOb1 = () => { return `👀 MODE PERHATIKAN`}
|
| 284 |
+
const smsModOb2 = () => { return `Jadikan Gambar, Gif, dan Video Dapat Dilihat untuk Semua Orang`}
|
| 285 |
+
const smsAntiEli1 = () => { return `🗑️ ANTI HAPUS`}
|
| 286 |
+
const smsAntiEli2 = () => { return `Semua pesan yang dihapus akan diteruskan ke Obrolan atau Grup`}
|
| 287 |
+
const smsAntiInt1 = () => { return `🌏 ANTI INTERNASIONAL`}
|
| 288 |
+
const smsAntiInt2 = () => { return `Hilangkan Nomor Internasional yang dianggap palsu`}
|
| 289 |
+
const smsAntiE1 = () => { return `🔗 ANTI LINK`}
|
| 290 |
+
const smsAntiE2 = () => { return `Hapus Orang yang mengirim tautan dari Grup WhatsApp`}
|
| 291 |
+
const smsAntiEE1 = () => { return `🔗 ANTI LINK 2`}
|
| 292 |
+
const smsAntiEE2 = () => { return `Hapus Orang yang mengirim tautan yang berisi https`}
|
| 293 |
+
const smsAntiTT1 = () => { return `🔗 ANTI TIK TOK`}
|
| 294 |
+
const smsAntiTT2 = () => { return `Hapus Orang yang Mengirim Tautan TikTok`}
|
| 295 |
+
const smsAntiYT1 = () => { return `🔗 ANTI YOUTUBE`}
|
| 296 |
+
const smsAntiYT2 = () => { return `Hapus Orang yang Mengirim Tautan YouTube`}
|
| 297 |
+
const smsAntiTEL1 = () => { return `🔗 ANTI TELEGRAM`}
|
| 298 |
+
const smsAntiTEL2 = () => { return `Hapus Orang yang Mengirim Tautan Telegram`}
|
| 299 |
+
const smsAntiFB1 = () => { return `🔗 ANTI FACEBOOK`}
|
| 300 |
+
const smsAntiFB2 = () => { return `Hapus Orang yang Mengirim Tautan Facebook`}
|
| 301 |
+
const smsAntiIG1 = () => { return `🔗 ANTI INSTAGRAM`}
|
| 302 |
+
const smsAntiIG2 = () => { return `Hapus Orang yang Mengirim Tautan Instagram`}
|
| 303 |
+
const smsAntiTW1 = () => { return `🔗 ANTI TWITTER `}
|
| 304 |
+
const smsAntiTW2 = () => { return `Hapus Orang yang Mengirim Tautan Twitter`}
|
| 305 |
+
const smsSOLOP1 = () => { return `⚜️ HANYA PRIBADI`}
|
| 306 |
+
const smsSOLOP2 = () => { return `Izinkan untuk digunakan hanya di Obrolan Pribadi`}
|
| 307 |
+
const smsSOLOG1 = () => { return `⚜️ HANYA GRUP`}
|
| 308 |
+
const smsSOLOG2 = () => { return `Izinkan untuk hanya digunakan di Obrolan Grup`}
|
| 309 |
+
const smsConfi1 = () => { return `PENGATURAN`}
|
| 310 |
+
const smsConfi2 = () => { return `*Halo!*`}
|
| 311 |
+
const smsConfi3 = () => { return `┃ *Pilih opsi dari daftar*`}
|
| 312 |
+
const smsConfi4 = () => { return `┃ *Untuk mulai mengonfigurasi*`}
|
| 313 |
+
const smsConfi5 = () => { return `┃● *Pemberitahuan Konfigurasi:*`}
|
| 314 |
+
const smsConfi6 = () => { return `┃ ✅ ⇢ *Fungsi Diaktifkan*`}
|
| 315 |
+
const smsConfi7 = () => { return `┃ ❌ ⇢ *Fungsi dinonaktifkan*`}
|
| 316 |
+
const smsConfi8 = () => { return `┃ ⚠️ ⇢ *Obrolan ini bukan Grup*`}
|
| 317 |
+
const smsConfi9 = () => { return `┃ *Rekomendasi: Untuk melihat konfigurasi*\n┃ *Selesaikan gunakan Menu Grup ini*\n┃`}
|
| 318 |
+
const smsConfi10 = () => { return `*~ PUSAT KONFIGURASI*`}
|
| 319 |
+
const smsParaAdmins = () => { return `UNTUK ADMIN DAN CREATOR: GRUP`}
|
| 320 |
+
const smsParaAdYOw = () => { return `UNTUK ADMIN DAN CREATOR : CHATS`}
|
| 321 |
+
const smsParaOw = () => { return `UNTUK CREATOR : CHAT`}
|
| 322 |
+
const smsNoGg = () => { return ` | ⚠️`}
|
| 323 |
+
const smsMens1 = () => { return `MEMERINTAH`}
|
| 324 |
+
const smsMens2 = () => { return `SAAT INI`}
|
| 325 |
+
const smsMens3 = () => { return `DI DALAM`}
|
| 326 |
+
const smsMens4 = () => { return `BOT`}
|
| 327 |
+
const smsMens5 = () => { return `CHAT`}
|
| 328 |
+
|
| 329 |
+
//Error2
|
| 330 |
+
const smsMensError1 = () => { return `❕ PERINTAH LAPORAN ❕`}
|
| 331 |
+
const smsMensError2 = () => { return `Perintah berikut gagal`}
|
| 332 |
+
|
| 333 |
+
//_antiviewonce.js
|
| 334 |
+
const smsAntiView = () => { return `*TIDAK ADA YANG BISA DISEMBUNYIKAN* 😎`}
|
| 335 |
+
|
| 336 |
+
//_autolevelup.js
|
| 337 |
+
const smsAutoLv1 = () => { return `🎖️ TINGKAT BARU 🎖️`}
|
| 338 |
+
const smsAutoLv2 = () => { return `TINGKAT SEBELUMNYA:`}
|
| 339 |
+
const smsAutoLv3 = () => { return `LEVEL SAAT INI:`}
|
| 340 |
+
const smsAutoLv4 = () => { return `JANGKAUAN:`}
|
| 341 |
+
const smsAutoLv5 = () => { return `TANGGAL:`}
|
| 342 |
+
const smsAutoLv6 = () => { return `Anda telah mencapai level baru!!!`}
|
| 343 |
+
const smsAutoLv7 = () => { return `🥳 HADIAH UNTUK TINGKAT BARU ANDA`}
|
| 344 |
+
|
| 345 |
+
//_autosticker.js
|
| 346 |
+
const smsAutoStik = () => { return `${lenguajeGB['smsAvisoFG']()}*VIDEO TIDAK HARUS BERAKHIR LEBIH DARI 7 DETIK.*`}
|
| 347 |
+
|
| 348 |
+
//_expired.js
|
| 349 |
+
const smsBottem1 = () => { return `*KELUAR DARI GRUP!!! 🤝 JIKA ANDA INGIN KEMBALI, GUNAKAN PERINTAH _#bottemporal_ UNTUK KEMBALI KE GRUP!!*`}
|
| 350 |
+
const smsBottem2 = () => { return `*💕 BANTUAN PENGGUNA*\n*_${global.ig}_*\n`}
|
| 351 |
+
const smsBottem3 = () => { return `SAMPAI BERJUMPA LAGI 💖`}
|
| 352 |
+
|
| 353 |
+
//_premium.js
|
| 354 |
+
const smsPremI = () => { return `*¡WAKTU PREMIUM ANDA HABIS!* 🎟️\n*UNTUK MENDAPATKAN PREMIUM PASS BARU GUNAKAN PERINTAH:*\n*#pass prem*`}
|
| 355 |
+
|
| 356 |
+
//afk-_afk.js
|
| 357 |
+
const smsAfkM1 = () => { return `${lenguajeGB['smsAvisoEG']()}*ANDA BERHENTI MENJADI IDLE AFK*`}
|
| 358 |
+
const smsAfkM2 = () => { return `*ALASAN TIDAK AKTIF ADALAH:*`}
|
| 359 |
+
const smsAfkM3 = () => { return `*WAKTU TIDAK AKTIF:*`}
|
| 360 |
+
const smsAfkM4 = () => { return `${lenguajeGB['smsAvisoAG']()}*JANGAN TAG PENGGUNA INI!! TIDAK AKTIF*`}
|
| 361 |
+
const smsAfkM5 = () => { return `*ALASAN TIDAK AKTIF AFK:*`}
|
| 362 |
+
const smsAfkM6 = () => { return `*ALASAN TIDAK AKTIF AFK: TIDAK MENYEBUTKAN ALASAN TIDAK AKTIF*`}
|
| 363 |
+
|
| 364 |
+
//afk-afk.js
|
| 365 |
+
const smsAfkM1A = () => { return `${lenguajeGB['smsAvisoAG']()}*JANGAN TAG*`}
|
| 366 |
+
const smsAfkM1B = () => { return `*AKAN AFK TIDAK AKTIF*\n\n*ALASAN TIDAK AKTIF AFK*`}
|
| 367 |
+
|
| 368 |
+
//anonymous_chat.js
|
| 369 |
+
const smsChatAn1 = () => { return `${lenguajeGB['smsAvisoFG']()}*ANDA TIDAK DALAM CHAT ANONIM*`}
|
| 370 |
+
const smsChatAn2 = () => { return `*JIKA ANDA INGIN MEMULAI CHAT ANONIM GUNAKAN PERINTAH #start ATAU GUNAKAN TOMBOL DI BAWAH INI*\n`}
|
| 371 |
+
const smsChatAn3 = () => { return `⚡ MULAI CHAT ANONIM`}
|
| 372 |
+
const smsChatAn4 = () => { return `${lenguajeGB['smsAvisoRG']()}🪐 *ANDA MENINGGALKAN CHAT ANONIM*`}
|
| 373 |
+
const smsChatAn5 = () => { return `${lenguajeGB['smsAvisoAG']()}*PENGGUNA LAIN MENINGGALKAN CHAT ANONIM*`}
|
| 374 |
+
const smsChatAn6 = () => { return `*JIKA INGIN KE CHAT ANONIM LAIN GUNAKAN PERINTAH #start ATAU GUNAKAN TOMBOL DI BAWAH INI*\n`}
|
| 375 |
+
const smsChatAn7 = () => { return `${lenguajeGB['smsAvisoAG']()}*ANDA MASIH DALAM CHAT ANONIM ATAU MENUNGGU SESEORANG UNTUK BERGABUNG KE CHAT*`}
|
| 376 |
+
const smsChatAn8 = () => { return `*JIKA INGIN KELUAR DARI CHAT ANONIM GUNAKAN PERINTAH #leave ATAU BISA MENGGUNAKAN TOMBOL DI BAWAH INI*\n`}
|
| 377 |
+
const smsChatAn9 = () => { return `🍁 KELUAR DARI CHAT ANONIM`}
|
| 378 |
+
const smsChatAn10 = () => { return `${lenguajeGB['smsAvisoEG']()}✨ *MEREKA BISA CHAT SEKARANG*`}
|
| 379 |
+
const smsChatAn11 = () => { return `*SESEORANG BERGABUNG DENGAN CHAT ANONIM!!*`}
|
| 380 |
+
const smsChatAn12 = () => { return `❇️ PENGGUNA LAIN`}
|
| 381 |
+
const smsChatAn13 = () => { return `${lenguajeGB['smsAvisoRG']()}🐈 *MENUNGGU SESEORANG UNTUK BERGABUNG DENGAN CHAT ANONIM, HARAP SABAR*`}
|
| 382 |
+
|
| 383 |
+
//Tombol Menu
|
| 384 |
+
const smsBotonM1 = () => { return `⚡ MULAI MENU ⚡`}
|
| 385 |
+
const smsBotonM2 = () => { return `💫 MENU LENGKAP 💫`}
|
| 386 |
+
const smsBotonM3 = () => { return `🎒 INVENTARIS 🎒`}
|
| 387 |
+
const smsBotonM4 = () => { return `PENGGUNA`}
|
| 388 |
+
const smsBotonM5 = () => { return `JANGKAUAN`}
|
| 389 |
+
const smsBotonM6 = () => { return `TINGKAT`}
|
| 390 |
+
const smsBotonM7 = () => { return `PREMIUM`}
|
| 391 |
+
const smsTex1 = () => { return '*MENU CARI*'}
|
| 392 |
+
const smsTex2 = () => { return '*PENGUBAH AUDIO*'}
|
| 393 |
+
const smsTex3 = () => { return '*TIDAK BISA +18*'}
|
| 394 |
+
const smsTex4 = () => { return '*KONTEN DINAMIS*'}
|
| 395 |
+
const smsTex5 = () => { return '*CARI DAN UNDUH*'}
|
| 396 |
+
const smsTex6 = () => { return '*MENU +18 PREMIUM*'}
|
| 397 |
+
const smsTex7 = () => { return '⠇ *Gambar +18 kualitas dan variasi*\n⠇ *Video +18 hanya untuk Anda*\n⠇ *Stiker +18 tersedia*'}
|
| 398 |
+
const smsTex8 = () => { return '*MENU KONVERTER*'}
|
| 399 |
+
const smsTex9 = () => { return '*DOWNLOAD MENU*'}
|
| 400 |
+
const smsTex10 = () => { return '*MENU GAME DINAMIS*'}
|
| 401 |
+
const smsTex11 = () => { return '*MENU UNTUK KELOMPOK*'}
|
| 402 |
+
const smsTex12 = () => { return '*MENU ALAT*'}
|
| 403 |
+
const smsTex13 = () => { return '*MENU INFORMASI*'}
|
| 404 |
+
const smsTex14 = () => { return '*MENU EFEK DAN LOGOS*'}
|
| 405 |
+
const smsTex15 = () => { return '*MENU LOGO 2*'}
|
| 406 |
+
const smsTex16 = () => { return 'MENU AUDIO'}
|
| 407 |
+
const smsTex17 = () => { return '*TIDAK PERLU MENGGUNAKAN PREFIX DALAM AUDIO*'}
|
| 408 |
+
const smsTex18 = () => { return 'DAFTAR SUARA'}
|
| 409 |
+
const smsTex19 = () => { return '*ANDA DAPAT MEMILIH AUDIO!!*'}
|
| 410 |
+
const smsTex20 = () => { return '*OWNER MENU*'}
|
| 411 |
+
const smsTex21 = () => { return '*MENU RPG*'}
|
| 412 |
+
const smsTex22 = () => { return '*MENU STIKER DAN FILTER*'}
|
| 413 |
+
const smsTex23 = () => { return '*MEME ACAK DAN MENU ANIME*'}
|
| 414 |
+
|
| 415 |
+
//ad
|
| 416 |
+
const smsMalused = () => { return '⚡ *GUNAKAN PERINTAH SEPERTI INI:*\n'}
|
| 417 |
+
const smsMalused2 = () => { return `${lenguajeGB['smsAvisoMG']()}🐈 *ANDA HARUS MENGGUNAKAN PERINTAH SEPERTI CONTOH INI:*\n`}
|
| 418 |
+
const smsMalused3 = () => { return `${lenguajeGB['smsAvisoMG']()}🐈 *ANDA HARUS MENGGUNAKAN PERINTAH ATAU MERESPON PESAN SESEORANG SEPERTI CONTOH INI:*\n`}
|
| 419 |
+
|
| 420 |
+
//gc-config_time.js
|
| 421 |
+
const smsGrupoTime1 = () => { return '🔓 *_GROUP TERBUKA DALAM SATU JAM_*'}
|
| 422 |
+
const smsGrupoTime2 = () => { return '🔒 *_TUTUP GRUP DALAM SATU JAM_*'}
|
| 423 |
+
const smsGrupoTime3 = () => { return '*KELOMPOK'}
|
| 424 |
+
const smsGrupoTime4 = () => { return 'TERTUTUP'}
|
| 425 |
+
const smsGrupoTime5 = () => { return 'MEMBUKA'}
|
| 426 |
+
const smsGrupoTime6 = () => { return '*SELAMA'}
|
| 427 |
+
const smsGrupoTime7 = () => { return '🔒 *GRUP DITUTUP, HANYA ADMIN YANG BISA KIRIM PESAN*'}
|
| 428 |
+
const smsGrupoTime8 = () => { return '🔓 *GROUP TERBUKA, SEMUA BISA KIRIM PESAN*'}
|
| 429 |
+
const smsGrupoTime9 = () => { return '🔓 GRUP TERBUKA SELAMA '}
|
| 430 |
+
const smsGrupoTime10 = () => { return '🔒 TUTUP GRUP SELAMA '}
|
| 431 |
+
const smsGrupoTime11 = () => { return ' JAM'}
|
| 432 |
+
const smsGrupoTime12 = () => { return 'IZINKAN KELOMPOK TELAH DIKUNJUNGI '}
|
| 433 |
+
const smsGrupoTime13 = () => { return 'IZINKAN GROUP UNTUK DITUTUP '}
|
| 434 |
+
|
| 435 |
+
//grupo-add.js
|
| 436 |
+
const smsAddB1 = () => { return `${lenguajeGB['smsAvisoFG']()}*TIDAK BISA MENAMBAH NOMOR, HARAP VERIFIKASI BENAR, MUNGKIN BARU KELUAR ATAU PRIVASI ANDA SUDAH DITETAPKAN.*`}
|
| 437 |
+
const smsAddB2 = () => { return `${lenguajeGB['smsAvisoFG']()}*TIDAK DAPAT MENAMBAHKAN NOMOR, MEMVERIFIKASI BENAR, ATAU MENAMBAHKANNYA SECARA MANUAL.*`}
|
| 438 |
+
|
| 439 |
+
//grupo-admins.js
|
| 440 |
+
const smsAddB3 = () => { return `*PEMBERITAHUAN UNTUK ADMIN*`}
|
| 441 |
+
const smsAddB4 = () => { return `*KEHADIRAN ADMIN*`}
|
| 442 |
+
const smsAddB5 = () => { return `*PESAN:*`}
|
| 443 |
+
const smsAddB6 = () => { return `Saya mohon kepada admin.`}
|
| 444 |
+
|
| 445 |
+
//grupo-advertencia.js
|
| 446 |
+
const smsAdveu1 = () => { return `${lenguajeGB['smsAvisoAG']()}*HANYA DAPAT DIGUNAKAN JIKA FUNGSI DIAKTIFKAN:*\n`}
|
| 447 |
+
const smsAdveu2 = () => { return 'Alasan'}
|
| 448 |
+
const smsAdveu3 = () => { return `${lenguajeGB['smsAvisoMG']()}*INGAT UNTUK MENULIS ALASAN UNTUK PERINGATAN*\n`}
|
| 449 |
+
const smsAdveu4 = () => { return '*MENERIMA PERINGATAN DI GRUP INI!!*'}
|
| 450 |
+
const smsAdveu5 = () => { return 'PERINGATAN'}
|
| 451 |
+
const smsAdveu6 = () => { return '🎒 INVENTARIS'}
|
| 452 |
+
const smsAdveu7 = () => { return '*SAYA PERINGATKAN ANDA BEBERAPA KALI!!*'}
|
| 453 |
+
const smsAdveu8 = () => { return '*SEKARANG ANDA AKAN DIHAPUS* 🙄'}
|
| 454 |
+
const smsAdveu9 = () => { return '😇 TERIMA KASIH'}
|
| 455 |
+
const smsAdveu10 = () => { return '*PERINGATAN DIHAPUS DI GRUP INI!!*'}
|
| 456 |
+
const smsAdveu11 = () => { return 'Sebelum:'}
|
| 457 |
+
const smsAdveu12 = () => { return 'Sekarang:'}
|
| 458 |
+
|
| 459 |
+
//grupo-demote.js || grupo-promote.js
|
| 460 |
+
const smsDemott = () => { return `*NOMORNYA INVALID, COBA LAGI BALAS PESAN ORANG ATAU GUNAKAN CONTOH SEPERTI INI:*\n`}
|
| 461 |
+
const smsDemott2 = () => { return '*SEKARANG MEMILIKI KEKUATAN DI GRUP!!*'}
|
| 462 |
+
const smsDemott3 = () => { return '*TIDAK LAGI MEMILIKI KEKUATAN DI GRUP!!*'}
|
| 463 |
+
|
| 464 |
+
//grupo-info.js
|
| 465 |
+
const smsGI1 = () => { return '*INFORMASI KELOMPOK*'}
|
| 466 |
+
const smsGI2 = () => { return '*ID GRUP*'}
|
| 467 |
+
const smsGI3 = () => { return '*NAMA GRUP*'}
|
| 468 |
+
const smsGI4 = () => { return '*DESKRIPSI KELOMPOK*'}
|
| 469 |
+
const smsGI5 = () => { return '*TIDAK ADA DESKRIPSI*'}
|
| 470 |
+
const smsGI6 = () => { return '*JUMLAH PENGGUNA*'}
|
| 471 |
+
const smsGI7 = () => { return '*Pengguna*'}
|
| 472 |
+
const smsGI8 = () => { return '*PENCIPTA GRUP*'}
|
| 473 |
+
const smsGI9 = () => { return '*ADMIN GRUP*'}
|
| 474 |
+
const smsGI10 = () => { return '⚙️ PENGATURAN GRUP'}
|
| 475 |
+
|
| 476 |
+
|
| 477 |
+
//grupo-kick.js
|
| 478 |
+
const smskick1 = () => { return `${lenguajeGB['smsAvisoAG']()}*TAG ORANG ATAU BALAS PESAN ORANG YANG INGIN ANDA HAPUS*\n\n*CONTOH: `}
|
| 479 |
+
const smskick2 = () => { return `DIHAPUS 😼🫵`}
|
| 480 |
+
const smskick3 = () => { return `SAYA TIDAK BISA MENGHAPUS PENCIPTA GRUP 😆🫵`}
|
| 481 |
+
const smskick4 = () => { return `TIDAK DI GRUP INI 👻`}
|
| 482 |
+
|
| 483 |
+
//grupo-tagall.js
|
| 484 |
+
const smstagaa = () => { return `⚡ MEMANGGIL GRUP ⚡`}
|
| 485 |
+
|
| 486 |
+
//grupo-setbye.js
|
| 487 |
+
const smsSetB = () => { return `${lenguajeGB['smsAvisoEG']()}*PERPISAHAN GRUP TELAH DIKONFIGURASI*`}
|
| 488 |
+
const smsSetB2 = () => { return `${lenguajeGB['smsAvisoIIG']()}🙌 *_TULIS PESAN PERPISAHAN_*\n*_OPSIONAL, ANDA DAPAT MENGGUNAKAN APA DENGAN "@" UNTUK MENAMBAHKAN INFORMASI LEBIH LANJUT:_*\n\n*⚡ @user (Sebutkan kepada pengguna)*\n\n*INGAT BAHWA "@" ITU OPSIONAL*`}
|
| 489 |
+
|
| 490 |
+
//grupo-setwelcome.js
|
| 491 |
+
const smsSetW = () => { return `${lenguajeGB['smsAvisoEG']()}*SAMBUTAN GRUP TELAH DIATUR*`}
|
| 492 |
+
const smsSetW2 = () => { return `${lenguajeGB['smsAvisoIIG']()}🙌 *_TULIS PESAN SELAMAT DATANG_*\n*_OPSIONAL, ANDA DAPAT MENGGUNAKAN APA DENGAN "@" UNTUK MENAMBAHKAN INFORMASI LEBIH LANJUT:_*\n\n*⚡ @user (Sebutkan kepada pengguna)*\n*⚡ @subject (Nama grup)*\n*⚡ @desc (Deskripsi grup)*\n\n*INGAT BAHWA "@" ADALAH OPSIONAL*`}
|
| 493 |
+
|
| 494 |
+
//grupo-setdesc.js
|
| 495 |
+
const smsDest = () => { return `${lenguajeGB['smsAvisoEG']()}*DESKRIPSI GRUP TELAH DIKONFIGURASI*`}
|
| 496 |
+
|
| 497 |
+
//grupo-setname.js
|
| 498 |
+
const smsNam1 = () => { return `${lenguajeGB['smsAvisoEG']()}*NAMA GRUP TELAH DITETAPKAN*`}
|
| 499 |
+
const smsNam2 = () => { return `${lenguajeGB['smsAvisoMG']()}*🙌 TULIS NAMA GRUP BARU*`}
|
| 500 |
+
const smsNam3 = () => { return `${lenguajeGB['smsAvisoFG']()}*NAMA GRUP TIDAK BOLEH MEMILIKI LEBIH DARI 25 KARAKTER*`}
|
| 501 |
+
|
| 502 |
+
//grupo-restaurarEnlace.js
|
| 503 |
+
const smsRestGp = () => { return `${lenguajeGB['smsAvisoEG']()}*TAUTAN GROUP TELAH DIRESET*`}
|
| 504 |
+
|
| 505 |
+
//Button
|
| 506 |
+
const smsSig = () => { return `➡️ LANJUT ➡️`}
|
| 507 |
+
const smsSigPrem = () => { return `❤️🔥 LANJUT ❤️🔥`}
|
| 508 |
+
const smsCont18Porn = () => { return `🔞 *ISI* 🔞`} //texto
|
| 509 |
+
const smsCont18Porn2 = () => { return `🔞 ISI 🔞`} //texto
|
| 510 |
+
const smsCont18PornP = () => { return `🌟 *ISI ❤️🔥 PREMIUM* 🌟`} //texto
|
| 511 |
+
const smsCont18PornP2 = () => { return `ISI ❤️🔥 PREMIUM`} //texto
|
| 512 |
+
|
| 513 |
+
//jadibot-serbot.js
|
| 514 |
+
const smsIniJadi = () => { return `*⊹ • • • ミ★ ${global.packname} ミ★• • • ⊹*\n\n*ღ Versi dari ${global.packname} » _${global.vs}_*\n*ღ Versi JadiBot » _${global.vsJB}_*\n\n🟢 *_FUNGSI MENJADI SUB BOT_* 🟢\n\n*➡️ Dengan ponsel atau PC lain, pindai QR ini untuk menjadi Sub Bot*\n\n*1️⃣ Pergi ke tiga titik di sudut kanan atas*\n*2️⃣ Buka opsi Perangkat yang Dipasangkan*\n*3️⃣ Pindai kode QR ini untuk masuk*\n\n📢 *¡Kode QR ini kedaluwarsa dalam 45 detik!*`}
|
| 515 |
+
const smsSoloOwnerJB = () => { return `${lenguajeGB['smsAvisoAG']()}*PERINTAH INI DINONAKTIFKAN OLEH PEMILIK SAYA*`}
|
| 516 |
+
const smsJBPrincipal = () => { return `${lenguajeGB['smsAvisoAG']()}🔵 *UNTUK JADI SUB BOT MASUK KE NOMOR UTAMA*\n*ღ Masukkan tautan berikut:*\n`}
|
| 517 |
+
const smsJBConexion = () => { return `${lenguajeGB['smsAvisoFG']()}🟡 *KONEKSI TELAH DITUTUP DENGAN CARA YANG TIDAK TERDUGA, KAMI AKAN MENCOBA MENGHUBUNGKAN KEMBALI...*`}
|
| 518 |
+
const smsJBConexionClose = () => { return `${lenguajeGB['smsAvisoFG']()}🔴 *KONEKSI TELAH DITUTUP, ANDA HARUS MENGHUBUNGKAN SECARA MANUAL MENGGUNAKAN #jadibot PERINTAH DAN PINDAI ULANG KODE QR BARU*`}
|
| 519 |
+
const smsJBConexionTrue = () => { return `${lenguajeGB['smsAvisoEG']()}🟢 *KONEKSI SUKSES!!!*`}
|
| 520 |
+
const smsJBConexionTrue2 = () => { return `${lenguajeGB['smsAvisoEG']()}🟢 *KONEKSI SUKSES!!! ANDA DAPAT MENGHUBUNGKAN MENGGUNAKAN:*`}
|
| 521 |
+
const smsJBCargando = () => { return `${lenguajeGB['smsAvisoIIG']()}⚪ *TERHUBUNG!! SILAKAN TUNGGU PESAN sedang DIMUAT...*\n\n♻️ *PILIHAN YANG TERSEDIA:*\n*» #stop _(Hentikan Fitur Sub Bot)_*\n*» #deletesesion _(Hapus semua jejak Sub Bot)_*\n*» #jadibot _(Dapatkan kode QR baru untuk menjadi Sub Bot)_*`}
|
| 522 |
+
const smsJBInfo1 = () => { return `💖 *LINK BERMANFAAT*`}
|
| 523 |
+
const smsJBInfo2 = () => { return `💖 *Fungsinya stabil, jika menimbulkan ketidaknyamanan Hubungi surat: centergatabot@gmail.com*\n💝 *Anda dapat memberikan sumbangan sukarela melalui PayPal: ${global.paypal}*\n\n*Terima kasih banyak atas dukungan ${global.packname}*`}
|
| 524 |
+
|
| 525 |
+
//jadibot-deleteSesion.js
|
| 526 |
+
const smsJBDel = () => { return `${lenguajeGB['smsAvisoAG']()}*GUNAKAN PERINTAH INI KE BOT UTAMA*`}
|
| 527 |
+
const smsJBAdios = () => { return `${lenguajeGB['smsAvisoEG']()}*AKU AKAN MERINDUKANMU ${global.packname} SELAMAT TINGGAL!! 🥹*`}
|
| 528 |
+
const smsJBCerrarS = () => { return `${lenguajeGB['smsAvisoEG']()}*ANDA TELAH KELUAR DAN MENGHAPUS SEMUA JEJAK*`}
|
| 529 |
+
const smsJBErr = () => { return `*ANDA TELAH LOG OUT SEBAGAI SUB BOT* ♻️`}
|
| 530 |
+
|
| 531 |
+
//comandos+18-adult.js
|
| 532 |
+
const smsContAdult = () => { return `${lenguajeGB['smsAvisoAG']()}*PERINTAH 🔞 MEREKA CACAT, JIKA ANDA ADALAH CREATOR SAYA GUNAKAN #on modohorny*`}
|
| 533 |
+
|
| 534 |
+
//comandos+18-menu.js
|
| 535 |
+
const smsList1 = () => { return `Tidak punya cukup `}
|
| 536 |
+
const smsList2 = () => { return `\nKlik di sini untuk membeli `}
|
| 537 |
+
const smsList3 = () => { return `Konten yang tersedia 😸`}
|
| 538 |
+
const smsList4 = () => { return `Konten tidak tersedia 😿\nKlik di sini untuk membeli `}
|
| 539 |
+
const smsList5 = () => { return `*Pilih opsi*\n*dari daftar untuk melihat*\n*isi* 😋`}
|
| 540 |
+
const smsList6 = () => { return `👀 LIHAT DAFTAR 👀`}
|
| 541 |
+
|
| 542 |
+
//descargas-consejos.js
|
| 543 |
+
const smsConj = () => { return `🍃 DEWAN BARU`}
|
| 544 |
+
const smsFras = () => { return `🍃 KALIMAT BARU`}
|
| 545 |
+
|
| 546 |
+
//info-contacto.js
|
| 547 |
+
const smsContacto1 = () => { return ' Saya ' + packname + ' Bot WhatsApp yang didedikasikan untuk membantu apa pun yang Anda minta 😎'}
|
| 548 |
+
const smsContacto2 = () => { return 'Saya Pemilik ' + packname + ' jika Anda memiliki pertanyaan, Anda dapat memberi tahu saya ✌️'}
|
| 549 |
+
const smsContacto3 = () => { return '👑 pemilik'}
|
| 550 |
+
const smsContacto4 = () => { return 'Kontak Resmi GataBot 🐈'}
|
| 551 |
+
const smsContacto5 = () => { return '🐣 Apa yang bisa saya bantu?'}
|
| 552 |
+
const smsContacto6 = () => { return 'Saya tidak punya surat 🙏'}
|
| 553 |
+
const smsContacto7 = () => { return '🌎 Global'}
|
| 554 |
+
const smsContacto8 = () => { return 'Akun ini Bot 👀'}
|
| 555 |
+
|
| 556 |
+
|
| 557 |
+
export default { lenguaje, smsAvisoRG, smsAvisoAG, smsAvisoIIG, smsAvisoFG, smsAvisoMG, smsAvisoEEG, smsAvisoEG, smsRowner, smsOwner, smsMods, smsPremium, smsGroup, smsPrivate, smsAdmin, smsBotAdmin, smsUnreg, smsRestrict, smsTime, smsUptime, smsVersion, smsTotalUsers, smsMode, smsModePublic, smsModePrivate, smsBanChats, smsBanUsers, smsPareja, smsResultPareja, smsSaludo, smsDia, smsTarde, smsTarde2, smsNoche, smsListaMenu, smsLista1, smsLista2, smsLista3, smsLista4, smsLista5, smsLista6, smsLista7, smsLista8, smsLista9, smsLista10, smsLista11, smsLista12, smsLista13, smsLista14, smsLista15, smsLista16, smsLista17, smsLista18, smsLista19, smsLista20, smsLista21, smsLista22, smsLista23, smsLista24, smsLista25, smsLista26, smsLista27, smsLista28, smsLista29, smsLista30, smsLista31, smsLista32, smsLista33, smsLista34, smsLista35, smsWelcome, smsBye, smsSpromote, smsSdemote, smsSdesc, smsSsubject, smsSicon, smsSrevoke, smsConexion, smsClearTmp, smsCargando, smspurgeSession, smspurgeOldFiles, smspurgeSessionSB1, smspurgeSessionSB2, smspurgeSessionSB3, smspurgeOldFiles1, smspurgeOldFiles2, smspurgeOldFiles3, smspurgeOldFiles4, smsTextoYT, smsApagar, smsEncender, smsEnlaceTik, smsEnlaceYt, smsEnlaceTel, smsEnlaceFb, smsEnlaceIg, smsEnlaceTw, smsAllAdmin, smsSoloOwner, smsCont1, smsCont2, smsCont3, smsCont4, smsCont5, smsCont6, smsCont7, smsCont8, smsCont9, smsCont10, smsCont11, smsCont12, smsCont13, smsCont14, smsCont15, smsCont16, smsCont17, smsCont18, smsCont19, smsCont20, smsCont21, smsInt1, smsInt2, smsAdwa, smsEnlaceWat, smsEnlaceWatt, smsNoSpam, smsNoSpam2, smsConMenu, smsMalError, smsMalError2, smsMalError3, smsToxic1, smsToxic2, smsToxic3, smsToxic4, smsToxic5, smsToxic6, smsToxic7, eExp, eDiamante, eDiamantePlus, eToken, eEsmeralda, eJoya, eMagia, eOro, eGataCoins, eGataTickers, eEnergia, ePocion, eAgua, eBasura, eMadera, eRoca, ePiedra, eCuerda, eHierro, eCarbon, eBotella, eLata, eCarton, eEletric, eBarraOro, eOroComun, eZorroG, eBasuraG, eLoboG, eMaderaG, eEspada, eCarnada, eBillete, ePinata, eGancho, eCanaPescar, eCComun, ePComun, eCMistica, eCMascota, eCJardineria, eClegendaria, eUva, eManzana, eNaranja, eMango, ePlatano, eSUva, eSManzana, eSNaranja, eSMango, eSPlatano, eCentauro, eAve, eGato, eDragon, eZorro, eCaballo, eFenix, eLobo, ePerro, eAMascots, eCCentauro, eCAve, eCMagica, eCDragon, eACaballo, eCFenix, smsWel1, smsWel2, smsParaAdmins, smsDete1, smsDete2, smsANivel1, smsANivel2, smsParaAdYOw, smsParaOw, smsRestri1, smsRestri2, smsLlamar1, smsLlamar2, smsModP1, smsModP2, smsModAd1, smsModAd2, smsLect1, smsLect2, smsTempo1, smsTempo2, smsStik1, smsStik2, smsStickA1, smsStickA2, smsReacc1, smsReacc2, smsAudi1, smsAudi2, smsModHor1, smsModHor2, smsAntitoc1, smsAntitoc2, smsModOb1, smsModOb2,
|
| 558 |
+
smsAntiEli1, smsAntiEli2, smsAntiInt1, smsAntiInt2, smsAntiE1, smsAntiE2, smsAntiEE1, smsAntiEE2, smsAntiTT1, smsAntiTT2, smsAntiYT1, smsAntiYT2, smsAntiTEL1, smsAntiTEL2, smsAntiFB1, smsAntiFB2, smsAntiIG1, smsAntiIG2, smsAntiTW1, smsAntiTW2, smsSOLOP1, smsSOLOP2, smsSOLOG1, smsSOLOG2, smsNoGg, smsConfi1, smsConfi2, smsConfi3, smsConfi4, smsConfi5, smsConfi6, smsConfi7, smsConfi8, smsConfi9, smsConfi10, smsMens1, smsMens2, smsMens3, smsMens4, smsMens5, smsMensError1, smsMensError2, smsAntiView, smsAutoLv1, smsAutoLv2, smsAutoLv3, smsAutoLv4, smsAutoLv5, smsAutoLv6, smsAutoLv7, smsAntiSp1, smsAntiSp2, smsAutoStik, smsBottem1, smsBottem2, smsBottem3, smsPremI,
|
| 559 |
+
smsAfkM1, smsAfkM2, smsAfkM3, smsAfkM4, smsAfkM5, smsAfkM6, smsAfkM1A, smsAfkM1B, smsChatAn1, smsChatAn2, smsChatAn3, smsChatAn4, smsChatAn5, smsChatAn6, smsChatAn7, smsChatAn8, smsChatAn9, smsChatAn10, smsChatAn11, smsChatAn12, smsChatAn13, smsBotonM1, smsBotonM2, smsBotonM3, smsBotonM4, smsBotonM5, smsBotonM6, smsBotonM7, smsTex1, smsTex2, smsTex3, smsTex4, smsTex5, smsTex6, smsTex7, smsTex8, smsTex9, smsTex10, smsTex11, smsTex12, smsTex13, smsTex14, smsTex15, smsTex16, smsTex17, smsTex18, smsTex19, smsTex20, smsTex21, smsTex22, smsTex23, smsMalused, smsGrupoTime1, smsGrupoTime2, smsGrupoTime3, smsGrupoTime4, smsGrupoTime5, smsGrupoTime6, smsGrupoTime7, smsGrupoTime8, smsGrupoTime9, smsGrupoTime10, smsGrupoTime11, smsGrupoTime12, smsGrupoTime13, smsAddB1, smsAddB2, smsAddB3, smsAddB4, smsAddB5, smsAddB6, smsAdveu1, smsMalused2, smsAdveu2, smsAdveu3, smsAdveu4, smsAdveu5, smsAdveu6, smsAdveu7, smsAdveu8, smsAdveu9, smsMalused3, smsAdveu10, smsAdveu11, smsAdveu12, smsDemott, smsDemott2, smsDemott3,
|
| 560 |
+
smsGI1, smsGI2, smsGI3, smsGI4, smsGI5, smsGI6, smsGI7, smsGI8, smsGI9, smsGI10, smsLista22_1, smsCodigoQR, smsConexionOFF, smskick1, smskick2, smskick3, smskick4, smstagaa,
|
| 561 |
+
smsSetB, smsSetB2, smsSetW, smsSetW2, smsDest, smsNam1, smsNam2, smsNam3, smsRestGp, smsSig, smsSigPrem, smsCont18Porn, smsCont18Porn2, smsCont18PornP, smsCont18PornP2,
|
| 562 |
+
smsIniJadi, smsSoloOwnerJB, smsJBPrincipal, smsJBConexion, smsJBConexionClose, smsJBConexionTrue, smsJBConexionTrue2, smsJBCargando, smsJBInfo1, smsJBInfo2, smsJBDel, smsJBAdios,
|
| 563 |
+
smsJBCerrarS, smsJBErr, smsContAdult, smsList1, smsList2, smsList3, smsList4, smsList5, smsList6, smsConj, smsFras, smsContacto1, smsContacto2, smsContacto3, smsContacto4,
|
| 564 |
+
smsContacto5, smsContacto6, smsContacto7, smsContacto8 };
|
lib/canvas.js
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { spawn } from 'child_process'
|
| 2 |
+
import { join } from 'path'
|
| 3 |
+
|
| 4 |
+
const __dirname = global.__dirname(import.meta.url)
|
| 5 |
+
/**
|
| 6 |
+
* Levelup image
|
| 7 |
+
* @param {String} teks
|
| 8 |
+
* @param {Number} level
|
| 9 |
+
* @returns {Promise<Buffer>}
|
| 10 |
+
*/
|
| 11 |
+
export function levelup(teks, level) {
|
| 12 |
+
return new Promise(async (resolve, reject) => {
|
| 13 |
+
if (!(global.support.convert || global.support.magick || global.support.gm)) return reject('Not Support!')
|
| 14 |
+
const font = join(__dirname, '../src/font')
|
| 15 |
+
let fontLevel = join(font, './level_c.otf')
|
| 16 |
+
let fontTexts = join(font, './texts.otf')
|
| 17 |
+
let xtsx = join(__dirname, '../src/lvlup_template.png')
|
| 18 |
+
let anotations = '+1385+260' // gapake else if kadang error
|
| 19 |
+
if (level > 2) anotations = '+1370+260'
|
| 20 |
+
if (level > 10) anotations = '+1330+260'
|
| 21 |
+
if (level > 50) anotations = '+1310+260'
|
| 22 |
+
if (level > 100) anotations = '+1260+260'
|
| 23 |
+
|
| 24 |
+
const [_spawnprocess, ..._spawnargs] = [...(global.support.gm ? ['gm'] : global.support.magick ? ['magick'] : []),
|
| 25 |
+
'convert',
|
| 26 |
+
xtsx,
|
| 27 |
+
'-font',
|
| 28 |
+
fontTexts,
|
| 29 |
+
'-fill',
|
| 30 |
+
'#0F3E6A',
|
| 31 |
+
'-size',
|
| 32 |
+
'1024x784',
|
| 33 |
+
'-pointsize',
|
| 34 |
+
'68',
|
| 35 |
+
'-interline-spacing',
|
| 36 |
+
'-7.5',
|
| 37 |
+
'-annotate',
|
| 38 |
+
'+153+200',
|
| 39 |
+
teks,
|
| 40 |
+
//original together
|
| 41 |
+
'-font',
|
| 42 |
+
fontLevel,
|
| 43 |
+
'-fill',
|
| 44 |
+
'#0A2A48',
|
| 45 |
+
'-size',
|
| 46 |
+
'1024x784',
|
| 47 |
+
'-pointsize',
|
| 48 |
+
'140',
|
| 49 |
+
'-interline-spacing',
|
| 50 |
+
'-1.2',
|
| 51 |
+
'-annotate',
|
| 52 |
+
anotations,
|
| 53 |
+
level,
|
| 54 |
+
'-append',
|
| 55 |
+
'jpg:-'
|
| 56 |
+
]
|
| 57 |
+
let bufs = []
|
| 58 |
+
spawn(_spawnprocess, _spawnargs)
|
| 59 |
+
.on('error', reject)
|
| 60 |
+
.on('close', () => {
|
| 61 |
+
return resolve(Buffer.concat(bufs))
|
| 62 |
+
})
|
| 63 |
+
.stdout.on('data', chunk => bufs.push(chunk))
|
| 64 |
+
})
|
| 65 |
+
}
|
lib/capcut.js
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import cheerio from "cheerio";
|
| 2 |
+
import axios from "axios";
|
| 3 |
+
import fetch from "node-fetch";
|
| 4 |
+
//capcut new
|
| 5 |
+
async function capcut(url) {
|
| 6 |
+
const response = await fetch(url);
|
| 7 |
+
const data = await response.text();
|
| 8 |
+
const $ = cheerio.load(data);
|
| 9 |
+
|
| 10 |
+
return {
|
| 11 |
+
nama: $("img").attr("alt"),
|
| 12 |
+
used: $("b").text().replace($("img").attr("alt"), ""),
|
| 13 |
+
thumbnail: $("img").attr("src"),
|
| 14 |
+
video: $("video").attr("src"),
|
| 15 |
+
};
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
//capcut new
|
| 19 |
+
function capcutdl(Url) {
|
| 20 |
+
return new Promise((resolve, reject) => {
|
| 21 |
+
let token = Url.match(/\d+/)[0];
|
| 22 |
+
axios({
|
| 23 |
+
url: `https://ssscapcut.com/api/download/${token}`,
|
| 24 |
+
method: 'GET',
|
| 25 |
+
headers: {
|
| 26 |
+
'Accept': '/',
|
| 27 |
+
'User-Agent': 'Mozilla/5.0 (Linux; Android 13; CPH2217 Build/TP1A.220905.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/110.0.5481.153 Mobile Safari/537.36',
|
| 28 |
+
'X-Requested-With': 'acr.browser.barebones',
|
| 29 |
+
'Sec-Fetch-Site': 'same-origin',
|
| 30 |
+
'Sec-Fetch-Mode': 'cors',
|
| 31 |
+
'Sec-Fetch-Dest': 'empty',
|
| 32 |
+
'Referer': 'https://ssscapcut.com/',
|
| 33 |
+
'Accept-Encoding': 'gzip, deflate',
|
| 34 |
+
'Accept-Language': 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7',
|
| 35 |
+
'Cookie': 'sign=2cbe441f7f5f4bdb8e99907172f65a42; device-time=1685437999515'
|
| 36 |
+
}
|
| 37 |
+
}).then(({ data }) => {
|
| 38 |
+
console.log(data);
|
| 39 |
+
resolve(data); // Menyelesaikan janji dengan mengembalikan data
|
| 40 |
+
}).catch((err) => {
|
| 41 |
+
console.log(err);
|
| 42 |
+
reject(err); // Menyelesaikan janji dengan melempar kesalahan
|
| 43 |
+
});
|
| 44 |
+
});
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
export { capcut, capcutdl }
|
lib/clearTmp.js
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Helper from './helper.js'
|
| 2 |
+
import { promises as fs } from 'fs'
|
| 3 |
+
import { tmpdir, platform } from 'os'
|
| 4 |
+
import { join } from 'path'
|
| 5 |
+
|
| 6 |
+
const TIME = 1000 * 60 * 3
|
| 7 |
+
|
| 8 |
+
const __dirname = Helper.__dirname(import.meta)
|
| 9 |
+
|
| 10 |
+
export default async function clearTmp() {
|
| 11 |
+
const tmp = [tmpdir(), join(__dirname, '../tmp')]
|
| 12 |
+
const filename = []
|
| 13 |
+
|
| 14 |
+
await Promise.allSettled(tmp.map(async (dir) => {
|
| 15 |
+
const files = await fs.readdir(dir)
|
| 16 |
+
for (const file of files) filename.push(join(dir, file))
|
| 17 |
+
}))
|
| 18 |
+
|
| 19 |
+
return await Promise.allSettled(filename.map(async (file) => {
|
| 20 |
+
const stat = await fs.stat(file)
|
| 21 |
+
if (stat.isFile() && (Date.now() - stat.mtimeMs >= TIME)) {
|
| 22 |
+
// https://stackoverflow.com/questions/28588707/node-js-check-if-a-file-is-open-before-copy
|
| 23 |
+
if (platform() === 'win32') {
|
| 24 |
+
// https://github.com/nodejs/node/issues/20548
|
| 25 |
+
// https://nodejs.org/api/fs.html#filehandleclose
|
| 26 |
+
let fileHandle
|
| 27 |
+
try {
|
| 28 |
+
fileHandle = await fs.open(file, 'r+')
|
| 29 |
+
} catch (e) {
|
| 30 |
+
console.error('[clearTmp]', e, 'Skipping', file)
|
| 31 |
+
return e
|
| 32 |
+
} finally {
|
| 33 |
+
await fileHandle?.close()
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
await fs.unlink(file)
|
| 37 |
+
}
|
| 38 |
+
}))
|
| 39 |
+
}
|
lib/cloudDBAdapter.js
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import got from 'got'
|
| 2 |
+
|
| 3 |
+
const stringify = obj => JSON.stringify(obj, null, 2)
|
| 4 |
+
const parse = str => JSON.parse(str, (_, v) => {
|
| 5 |
+
if (
|
| 6 |
+
v !== null &&
|
| 7 |
+
typeof v === 'object' &&
|
| 8 |
+
'type' in v &&
|
| 9 |
+
v.type === 'Buffer' &&
|
| 10 |
+
'data' in v &&
|
| 11 |
+
Array.isArray(v.data)) {
|
| 12 |
+
return Buffer.from(v.data)
|
| 13 |
+
}
|
| 14 |
+
return v
|
| 15 |
+
})
|
| 16 |
+
class CloudDBAdapter {
|
| 17 |
+
constructor(url, {
|
| 18 |
+
serialize = stringify,
|
| 19 |
+
deserialize = parse,
|
| 20 |
+
fetchOptions = {}
|
| 21 |
+
} = {}) {
|
| 22 |
+
this.url = url
|
| 23 |
+
this.serialize = serialize
|
| 24 |
+
this.deserialize = deserialize
|
| 25 |
+
this.fetchOptions = fetchOptions
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
async read() {
|
| 29 |
+
try {
|
| 30 |
+
let res = await got(this.url, {
|
| 31 |
+
method: 'GET',
|
| 32 |
+
headers: {
|
| 33 |
+
'Accept': 'application/json;q=0.9,text/plain'
|
| 34 |
+
},
|
| 35 |
+
...this.fetchOptions
|
| 36 |
+
})
|
| 37 |
+
if (res.statusCode !== 200) throw res.statusMessage
|
| 38 |
+
return this.deserialize(res.body)
|
| 39 |
+
} catch (e) {
|
| 40 |
+
return null
|
| 41 |
+
}
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
async write(obj) {
|
| 45 |
+
let res = await got(this.url, {
|
| 46 |
+
method: 'POST',
|
| 47 |
+
headers: {
|
| 48 |
+
'Content-Type': 'application/json'
|
| 49 |
+
},
|
| 50 |
+
...this.fetchOptions,
|
| 51 |
+
body: this.serialize(obj)
|
| 52 |
+
})
|
| 53 |
+
if (res.statusCode !== 200) throw res.statusMessage
|
| 54 |
+
return res.body
|
| 55 |
+
}
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
export default CloudDBAdapter
|
lib/convert.js
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import * as fs from 'fs'
|
| 2 |
+
import * as path from 'path'
|
| 3 |
+
import ffmpeg from 'fluent-ffmpeg'
|
| 4 |
+
import { exec } from 'child_process'
|
| 5 |
+
import { addExif } from './sticker.js'
|
| 6 |
+
|
| 7 |
+
function convert(file, ext1, ext2, options = []) {
|
| 8 |
+
return new Promise(async (resolve, reject) => {
|
| 9 |
+
let temp = path.join(__dirname(import.meta.url), '../tmp', Date.now() + '.' + ext1),
|
| 10 |
+
out = temp + '.' + ext2;
|
| 11 |
+
await fs.promises.writeFile(temp, file);
|
| 12 |
+
ffmpeg(temp)
|
| 13 |
+
.on('start', (cmd) => {
|
| 14 |
+
console.log(cmd);
|
| 15 |
+
})
|
| 16 |
+
.on('error', (e) => {
|
| 17 |
+
fs.unlinkSync(temp);
|
| 18 |
+
reject(e);
|
| 19 |
+
})
|
| 20 |
+
.on('end', () => {
|
| 21 |
+
console.log("Finish");
|
| 22 |
+
setTimeout(() => {
|
| 23 |
+
fs.unlinkSync(temp);
|
| 24 |
+
fs.unlinkSync(out);
|
| 25 |
+
}, 2000)
|
| 26 |
+
resolve(fs.readFileSync(out));
|
| 27 |
+
})
|
| 28 |
+
.addOutputOptions(options)
|
| 29 |
+
.toFormat(ext2)
|
| 30 |
+
.save(out);
|
| 31 |
+
});
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
function convert2(file, ext1, ext2, options = []) {
|
| 35 |
+
return new Promise(async (resolve, reject) => {
|
| 36 |
+
let temp = path.join(__dirname(import.meta.url), '../tmp', Date.now() + '.' + ext1),
|
| 37 |
+
out = temp + '.' + ext2;
|
| 38 |
+
await fs.promises.writeFile(temp, file);
|
| 39 |
+
ffmpeg(temp)
|
| 40 |
+
.on('start', (cmd) => {
|
| 41 |
+
console.log(cmd);
|
| 42 |
+
})
|
| 43 |
+
.on('error', (e) => {
|
| 44 |
+
fs.unlinkSync(temp);
|
| 45 |
+
reject(e);
|
| 46 |
+
})
|
| 47 |
+
.on('end', () => {
|
| 48 |
+
console.log("Finish");
|
| 49 |
+
setTimeout(() => {
|
| 50 |
+
fs.unlinkSync(temp);
|
| 51 |
+
fs.unlinkSync(out);
|
| 52 |
+
}, 2000)
|
| 53 |
+
resolve(fs.readFileSync(out));
|
| 54 |
+
})
|
| 55 |
+
.addOutputOptions(options)
|
| 56 |
+
.seekInput("00:00")
|
| 57 |
+
.setDuration("00:05")
|
| 58 |
+
.toFormat(ext2)
|
| 59 |
+
.save(out);
|
| 60 |
+
});
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
async function sticker(file, opts) {
|
| 64 |
+
if (typeof opts.cmdType === "undefined") opts.cmdType = "1"
|
| 65 |
+
const cmd = {
|
| 66 |
+
1: ["-fs 1M", "-vcodec", "libwebp", "-vf", `scale=512:512:flags=lanczos:force_original_aspect_ratio=decrease,format=rgba,pad=512:512:(ow-iw)/2:(oh-ih)/2:color=#00000000,setsar=1`],
|
| 67 |
+
2: ["-fs 1M", "-vcodec", "libwebp"]
|
| 68 |
+
}
|
| 69 |
+
/*
|
| 70 |
+
if (opts.withPackInfo) {
|
| 71 |
+
if (!opts.packInfo) throw Error("'packInfo' must be filled when using 'withPackInfo'");
|
| 72 |
+
let ext = opts.isImage !== undefined || false ? "jpg" : opts.isVideo !== undefined || false ? "mp4" : null;
|
| 73 |
+
return stickerWithExif(file, ext, opts.packInfo, cmd[parseInt(opts.cmdType)]);
|
| 74 |
+
}
|
| 75 |
+
*/
|
| 76 |
+
if (opts.isImage) {
|
| 77 |
+
return convert(file, "jpg", "webp", cmd[parseInt(opts.cmdType)]);
|
| 78 |
+
}
|
| 79 |
+
if (opts.isVideo) {
|
| 80 |
+
return convert2(file, "mp4", "webp", cmd[parseInt(opts.cmdType)]);
|
| 81 |
+
}
|
| 82 |
+
}
|
| 83 |
+
/*
|
| 84 |
+
function stickerWithExif(file, ext, packInfo, cmd) {
|
| 85 |
+
return new Bluebird(async (res, rej) => {
|
| 86 |
+
let { packname, author } = packInfo;
|
| 87 |
+
const filename = Date.now();
|
| 88 |
+
const stickerBuffer = ext === "jpg" ? (await convert(file, ext, "webp", cmd)) : (await convert2(file, ext, "webp", cmd));
|
| 89 |
+
ex.create(packname !== undefined || '' ? packname : "Original", author !== undefined || '' ? author : "SMH-BOT", filename);
|
| 90 |
+
await fs.promises.writeFile(`./temp/${filename}.webp`, stickerBuffer);
|
| 91 |
+
run(`webpmux -set exif ./temp/${filename}.exif ./temp/${filename}.webp -o ./temp/${filename}.webp`, async (err) => {
|
| 92 |
+
if (err) rej(err) && await Promise.all([
|
| 93 |
+
fs.unlink(`./temp/${filename}.webp`),
|
| 94 |
+
fs.unlink(`./temp/${filename}.exif`)
|
| 95 |
+
]);
|
| 96 |
+
setTimeout(() => {
|
| 97 |
+
fs.unlinkSync(`./temp/${filename}.exif`); fs.unlinkSync(`./temp/${filename}.webp`);
|
| 98 |
+
}, 2000);
|
| 99 |
+
res(fs.readFileSync(`./temp/${filename}.webp`));
|
| 100 |
+
})
|
| 101 |
+
});
|
| 102 |
+
}
|
| 103 |
+
*/
|
| 104 |
+
export {
|
| 105 |
+
sticker
|
| 106 |
+
}
|