uploading files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .dockerignore +17 -0
- .github/.gitkeep +0 -0
- .github/workflows/.gitkeep +0 -0
- .github/workflows/python.yml +26 -0
- Dockerfile +13 -0
- LICENSE +201 -0
- Procfile +1 -0
- app.json +49 -0
- cookies.txt +62 -0
- generate.py +29 -0
- github-action.txt +10 -0
- requirements.txt +43 -0
- runtime.txt +1 -0
- start +2 -0
- storage/15.otf +3 -0
- storage/16.otf +3 -0
- storage/17.ttf +3 -0
- storage/18.ttf +3 -0
- storage/19.ttf +3 -0
- storage/2.ttf +3 -0
- storage/20.ttf +3 -0
- storage/22.otf +3 -0
- storage/23.ttf +3 -0
- storage/24.ttf +3 -0
- storage/3.ttf +3 -0
- storage/4.ttf +3 -0
- storage/6.ttf +3 -0
- storage/7.otf +3 -0
- storage/9.ttf +3 -0
- storage/AVENGEANCE HEROIC AVENGER AT.otf +3 -0
- storage/AVENGEANCE HEROIC AVENGER AT.ttf +3 -0
- storage/AVENGEANCE HEROIC AVENGER BI.otf +3 -0
- storage/Big Space.otf +3 -0
- storage/Blessed.ttf +3 -0
- storage/CRAWLER-RegularDEMO.ttf +3 -0
- storage/CROWNT.TTF +3 -0
- storage/Chopsic.otf +3 -0
- storage/Crozzoe-Personal-Use.otf +3 -0
- storage/DIGIT.ttf +3 -0
- storage/Damages-Italic.ttf +3 -0
- storage/Damages.ttf +3 -0
- storage/Damages3D-Italic.ttf +3 -0
- storage/Damages3D.ttf +3 -0
- storage/Damages3DFilled-Italic.ttf +3 -0
- storage/Damages3DFilled.ttf +3 -0
- storage/Damar Kurung.otf +3 -0
- storage/Damar Kurung.ttf +3 -0
- storage/Dark Ministry.ttf +3 -0
- storage/Dark Seed.otf +3 -0
- storage/Dark.ttf +3 -0
.dockerignore
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.webm
|
2 |
+
*.mp3
|
3 |
+
*.mp4
|
4 |
+
*.webp
|
5 |
+
*.weba
|
6 |
+
*.part
|
7 |
+
*.ytdl
|
8 |
+
final.png
|
9 |
+
background.png
|
10 |
+
temp.png
|
11 |
+
# python
|
12 |
+
venv/
|
13 |
+
__pycache__/
|
14 |
+
# tgbot
|
15 |
+
config.py
|
16 |
+
*.session
|
17 |
+
*.session-journal
|
.github/.gitkeep
ADDED
File without changes
|
.github/workflows/.gitkeep
ADDED
File without changes
|
.github/workflows/python.yml
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Auto Fix
|
2 |
+
on: [push]
|
3 |
+
jobs:
|
4 |
+
python-auto-fix:
|
5 |
+
runs-on: ubuntu-latest
|
6 |
+
steps:
|
7 |
+
- name: Checkout Repository
|
8 |
+
uses: actions/checkout@v2
|
9 |
+
- name: Setup Python
|
10 |
+
uses: actions/setup-python@v2
|
11 |
+
- name: Install Dependencies
|
12 |
+
run: |
|
13 |
+
python -m pip install --upgrade pip
|
14 |
+
pip install black isort autoflake flake8
|
15 |
+
- name: Auto Fix
|
16 |
+
run: |
|
17 |
+
black --exclude=venv .
|
18 |
+
isort --skip-glob='**/venv/**' .
|
19 |
+
autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables --ignore-init-module-imports .
|
20 |
+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --extend-ignore=E203,W503
|
21 |
+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
22 |
+
- name: Code Analysis
|
23 |
+
uses: stefanzweifel/git-auto-commit-action@v4
|
24 |
+
with:
|
25 |
+
commit_message: "Auto Fix"
|
26 |
+
commit_options: "--no-verify"
|
Dockerfile
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.10
|
2 |
+
|
3 |
+
RUN apt-get update -y && apt-get upgrade -y \
|
4 |
+
&& apt-get install -y --no-install-recommends ffmpeg neofetch \
|
5 |
+
&& apt-get clean \
|
6 |
+
&& rm -rf /var/lib/apt/lists/*
|
7 |
+
|
8 |
+
COPY . /app/
|
9 |
+
WORKDIR /app/
|
10 |
+
|
11 |
+
RUN pip3 install --no-cache-dir --upgrade --requirement requirements.txt
|
12 |
+
|
13 |
+
CMD bash start
|
LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Apache License
|
2 |
+
Version 2.0, January 2004
|
3 |
+
http://www.apache.org/licenses/
|
4 |
+
|
5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6 |
+
|
7 |
+
1. Definitions.
|
8 |
+
|
9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
11 |
+
|
12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13 |
+
the copyright owner that is granting the License.
|
14 |
+
|
15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
16 |
+
other entities that control, are controlled by, or are under common
|
17 |
+
control with that entity. For the purposes of this definition,
|
18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
19 |
+
direction or management of such entity, whether by contract or
|
20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22 |
+
|
23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24 |
+
exercising permissions granted by this License.
|
25 |
+
|
26 |
+
"Source" form shall mean the preferred form for making modifications,
|
27 |
+
including but not limited to software source code, documentation
|
28 |
+
source, and configuration files.
|
29 |
+
|
30 |
+
"Object" form shall mean any form resulting from mechanical
|
31 |
+
transformation or translation of a Source form, including but
|
32 |
+
not limited to compiled object code, generated documentation,
|
33 |
+
and conversions to other media types.
|
34 |
+
|
35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
36 |
+
Object form, made available under the License, as indicated by a
|
37 |
+
copyright notice that is included in or attached to the work
|
38 |
+
(an example is provided in the Appendix below).
|
39 |
+
|
40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41 |
+
form, that is based on (or derived from) the Work and for which the
|
42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
44 |
+
of this License, Derivative Works shall not include works that remain
|
45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46 |
+
the Work and Derivative Works thereof.
|
47 |
+
|
48 |
+
"Contribution" shall mean any work of authorship, including
|
49 |
+
the original version of the Work and any modifications or additions
|
50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
54 |
+
means any form of electronic, verbal, or written communication sent
|
55 |
+
to the Licensor or its representatives, including but not limited to
|
56 |
+
communication on electronic mailing lists, source code control systems,
|
57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
59 |
+
excluding communication that is conspicuously marked or otherwise
|
60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
61 |
+
|
62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
64 |
+
subsequently incorporated within the Work.
|
65 |
+
|
66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
71 |
+
Work and such Derivative Works in Source or Object form.
|
72 |
+
|
73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76 |
+
(except as stated in this section) patent license to make, have made,
|
77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78 |
+
where such license applies only to those patent claims licensable
|
79 |
+
by such Contributor that are necessarily infringed by their
|
80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
82 |
+
institute patent litigation against any entity (including a
|
83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84 |
+
or a Contribution incorporated within the Work constitutes direct
|
85 |
+
or contributory patent infringement, then any patent licenses
|
86 |
+
granted to You under this License for that Work shall terminate
|
87 |
+
as of the date such litigation is filed.
|
88 |
+
|
89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
90 |
+
Work or Derivative Works thereof in any medium, with or without
|
91 |
+
modifications, and in Source or Object form, provided that You
|
92 |
+
meet the following conditions:
|
93 |
+
|
94 |
+
(a) You must give any other recipients of the Work or
|
95 |
+
Derivative Works a copy of this License; and
|
96 |
+
|
97 |
+
(b) You must cause any modified files to carry prominent notices
|
98 |
+
stating that You changed the files; and
|
99 |
+
|
100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
101 |
+
that You distribute, all copyright, patent, trademark, and
|
102 |
+
attribution notices from the Source form of the Work,
|
103 |
+
excluding those notices that do not pertain to any part of
|
104 |
+
the Derivative Works; and
|
105 |
+
|
106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107 |
+
distribution, then any Derivative Works that You distribute must
|
108 |
+
include a readable copy of the attribution notices contained
|
109 |
+
within such NOTICE file, excluding those notices that do not
|
110 |
+
pertain to any part of the Derivative Works, in at least one
|
111 |
+
of the following places: within a NOTICE text file distributed
|
112 |
+
as part of the Derivative Works; within the Source form or
|
113 |
+
documentation, if provided along with the Derivative Works; or,
|
114 |
+
within a display generated by the Derivative Works, if and
|
115 |
+
wherever such third-party notices normally appear. The contents
|
116 |
+
of the NOTICE file are for informational purposes only and
|
117 |
+
do not modify the License. You may add Your own attribution
|
118 |
+
notices within Derivative Works that You distribute, alongside
|
119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
120 |
+
that such additional attribution notices cannot be construed
|
121 |
+
as modifying the License.
|
122 |
+
|
123 |
+
You may add Your own copyright statement to Your modifications and
|
124 |
+
may provide additional or different license terms and conditions
|
125 |
+
for use, reproduction, or distribution of Your modifications, or
|
126 |
+
for any such Derivative Works as a whole, provided Your use,
|
127 |
+
reproduction, and distribution of the Work otherwise complies with
|
128 |
+
the conditions stated in this License.
|
129 |
+
|
130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
132 |
+
by You to the Licensor shall be under the terms and conditions of
|
133 |
+
this License, without any additional terms or conditions.
|
134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135 |
+
the terms of any separate license agreement you may have executed
|
136 |
+
with Licensor regarding such Contributions.
|
137 |
+
|
138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
140 |
+
except as required for reasonable and customary use in describing the
|
141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
142 |
+
|
143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144 |
+
agreed to in writing, Licensor provides the Work (and each
|
145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147 |
+
implied, including, without limitation, any warranties or conditions
|
148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150 |
+
appropriateness of using or redistributing the Work and assume any
|
151 |
+
risks associated with Your exercise of permissions under this License.
|
152 |
+
|
153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
154 |
+
whether in tort (including negligence), contract, or otherwise,
|
155 |
+
unless required by applicable law (such as deliberate and grossly
|
156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157 |
+
liable to You for damages, including any direct, indirect, special,
|
158 |
+
incidental, or consequential damages of any character arising as a
|
159 |
+
result of this License or out of the use or inability to use the
|
160 |
+
Work (including but not limited to damages for loss of goodwill,
|
161 |
+
work stoppage, computer failure or malfunction, or any and all
|
162 |
+
other commercial damages or losses), even if such Contributor
|
163 |
+
has been advised of the possibility of such damages.
|
164 |
+
|
165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168 |
+
or other liability obligations and/or rights consistent with this
|
169 |
+
License. However, in accepting such obligations, You may act only
|
170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171 |
+
of any other Contributor, and only if You agree to indemnify,
|
172 |
+
defend, and hold each Contributor harmless for any liability
|
173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
174 |
+
of your accepting any such warranty or additional liability.
|
175 |
+
|
176 |
+
END OF TERMS AND CONDITIONS
|
177 |
+
|
178 |
+
APPENDIX: How to apply the Apache License to your work.
|
179 |
+
|
180 |
+
To apply the Apache License to your work, attach the following
|
181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182 |
+
replaced with your own identifying information. (Don't include
|
183 |
+
the brackets!) The text should be enclosed in the appropriate
|
184 |
+
comment syntax for the file format. We also recommend that a
|
185 |
+
file or class name and description of purpose be included on the
|
186 |
+
same "printed page" as the copyright notice for easier
|
187 |
+
identification within third-party archives.
|
188 |
+
|
189 |
+
Copyright [yyyy] [name of copyright owner]
|
190 |
+
|
191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192 |
+
you may not use this file except in compliance with the License.
|
193 |
+
You may obtain a copy of the License at
|
194 |
+
|
195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
196 |
+
|
197 |
+
Unless required by applicable law or agreed to in writing, software
|
198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200 |
+
See the License for the specific language governing permissions and
|
201 |
+
limitations under the License.
|
Procfile
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
worker: python3 -m ubot
|
app.json
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"env": {
|
3 |
+
"SESSION_STRING": {
|
4 |
+
"description": "",
|
5 |
+
"required": true
|
6 |
+
},
|
7 |
+
"BOT_TOKEN": {
|
8 |
+
"description": "",
|
9 |
+
"required": true
|
10 |
+
},
|
11 |
+
"API_ID": {
|
12 |
+
"description": "",
|
13 |
+
"required": true
|
14 |
+
},
|
15 |
+
"BLACKLIST_CHAT": {
|
16 |
+
"description": "",
|
17 |
+
"required": false,
|
18 |
+
"value": "-1001473548283"
|
19 |
+
},
|
20 |
+
"API_HASH": {
|
21 |
+
"description": "",
|
22 |
+
"required": true
|
23 |
+
},
|
24 |
+
"LOG_UBOT": {
|
25 |
+
"description": "",
|
26 |
+
"required": true
|
27 |
+
},
|
28 |
+
"OWNER_ID": {
|
29 |
+
"description": "",
|
30 |
+
"required": false,
|
31 |
+
"value": "5262326516"
|
32 |
+
},
|
33 |
+
"MONGO_URL": {
|
34 |
+
"description": "",
|
35 |
+
"required": true
|
36 |
+
},
|
37 |
+
"COMMAND": {
|
38 |
+
"description": "",
|
39 |
+
"required": true
|
40 |
+
},
|
41 |
+
"TEXT_PAYMENT": {
|
42 |
+
"description": "",
|
43 |
+
"required": true
|
44 |
+
}
|
45 |
+
},
|
46 |
+
"buildpacks": [
|
47 |
+
{"url": "heroku/python"}
|
48 |
+
]
|
49 |
+
}
|
cookies.txt
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Netscape HTTP Cookie File
|
2 |
+
# http://curl.haxx.se/rfc/cookie_spec.html
|
3 |
+
# This is a generated file! Do not edit.
|
4 |
+
|
5 |
+
.youtube.com TRUE / TRUE 1742495179 GPS 1
|
6 |
+
.youtube.com TRUE / TRUE 0 YSC NMQgqj8IHIY
|
7 |
+
.youtube.com TRUE / TRUE 1758045461 VISITOR_INFO1_LIVE 1KSM8NRk7Gc
|
8 |
+
.youtube.com TRUE / TRUE 1758045461 VISITOR_PRIVACY_METADATA CgJJRBIEGgAgWg%3D%3D
|
9 |
+
.chromewebstore.google.com TRUE / FALSE 1777053403 _ga GA1.1.443692314.1742493403
|
10 |
+
chromewebstore.google.com FALSE / TRUE 1745085403 OTZ 8003157_28_28__28_
|
11 |
+
.chromewebstore.google.com TRUE / FALSE 1777053421 _ga_KHZNC1Q6K0 GS1.1.1742493402.1.1.1742493421.0.0.0
|
12 |
+
accounts.google.com FALSE / TRUE 1745085436 OTZ 8003157_28_28__28_
|
13 |
+
.google.com TRUE / TRUE 1758304584 NID 522=ROpAQMxeipmPI5hJSIfAy1gRsNT2lWZ0rUik0jUIc15NZzZfNF6qLW-6aQAiJGtTK8q-kgydEhI3NvlxBzEY3iQ9h6ceglj9MKUVTLnvVSLfwnHM4LHphhuIJtQZOVite4cYpPzNoc1lGLkfm76Kt25XW_96INY2P-xWfU1yfNBEtYn9DNhmeqBA61YayNJmoW7qcipagvVUiqWmcGQKSwqp8FltuqeaKNDDWDb5i9OnyQ3adwBItNb2lC2uod5J6uq18NedbP8ZicNZxajQdhkMdczXpUCq_zW_f76VJmCWJePBy4WazSXIyAo1fA6ArCQFlb4ngWkY5GByERN1NuNsC016t_TIO3bnHdB0VGaETfxuh75TMHrF_1nMrZjZdFFci7iFGPNwaFFwUhAGOis-HQez937tUazv7ZpjXf7nV5F7Pmr0zWdj1lPmUuZM-W9EsDrjm2wbQQ7rGB7uW_3aAukNspprZiF03pP-OR_CayrXVPfXksHZ-a3EqAta6WqleUBiuFGQQf6pw7priv3CNnJzrT3BZL1R9VUvYurXhIpX_afb9aS_k4bRwoXAoRZlQzO0NaF0KUsMKWYcyH0IJwkFvL90FbrQct7m5KY4cJg7plnc20C62NPeQzNLsEYQkMMK
|
14 |
+
.google.com TRUE / FALSE 1777053453 SID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFHejaAuju9q0ZOnulmIj204wACgYKAVQSARMSFQHGX2Mi9xQ3JCZOKSx7fK5T5lFE2RoVAUF8yKp0A8SkSkWUn0FOr7IlYd3f0076
|
15 |
+
.google.com TRUE / TRUE 1777053453 __Secure-1PSID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFHaG8fC83GVGtdHIPaagOH5QACgYKAX8SARMSFQHGX2Migyw2qqLXKUZMe_JVb7ZWhxoVAUF8yKrlokpWBOo5od-qydz_8M750076
|
16 |
+
.google.com TRUE / TRUE 1777053453 __Secure-3PSID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFH9jcjN6xmybllJElETyydbwACgYKAU4SARMSFQHGX2Mi0NutW1iOfmvqOI5MRl8O6xoVAUF8yKp_EUYRLrtV_uj6QXNXU_530076
|
17 |
+
.google.com TRUE / FALSE 1777053453 HSID ATGq7DD9MUY8rNePd
|
18 |
+
.google.com TRUE / TRUE 1777053453 SSID A5F08K1748DP7xWdG
|
19 |
+
.google.com TRUE / FALSE 1777053453 APISID FAbCw9ISRnDMJZNq/A5zaDoEEthvwA0zd_
|
20 |
+
.google.com TRUE / TRUE 1777053453 SAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
21 |
+
.google.com TRUE / TRUE 1777053453 __Secure-1PAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
22 |
+
.google.com TRUE / TRUE 1777053453 __Secure-3PAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
23 |
+
accounts.google.com FALSE / TRUE 1777053453 __Host-GAPS 1:wk8AAJGgerDGlli0Zi1i8lAK698iwuUKsGj2k5GsgcmexLyBhpHD5xIdL-tVM84HFrMPQgs7evzcuJC944b2aETAwhD7ew:pKpPHCI1C7e35Rez
|
24 |
+
accounts.google.com FALSE / TRUE 1777053453 LSID s.ID|s.youtube:g.a000vAh-rxC0vfqo74SRxoaj8Kox679AsDaM78ZseMFlgr-5ijMqKeUgE0zmSQ-tcepaHJB6twACgYKAbMSARMSFQHGX2MiGWA_of0kCQhe7cs3RaFVIBoVAUF8yKqTD1uoXa8Yq5kA_VWpjRdg0076
|
25 |
+
accounts.google.com FALSE / TRUE 1777053453 __Host-1PLSID s.ID|s.youtube:g.a000vAh-rxC0vfqo74SRxoaj8Kox679AsDaM78ZseMFlgr-5ijMqPtkX-h07W0-1r78y3EZIDwACgYKAWsSARMSFQHGX2MivKGYihu0FGylVmuc-AV1vhoVAUF8yKr6qaewtWTkn4TV_TfbDB3m0076
|
26 |
+
accounts.google.com FALSE / TRUE 1777053453 __Host-3PLSID s.ID|s.youtube:g.a000vAh-rxC0vfqo74SRxoaj8Kox679AsDaM78ZseMFlgr-5ijMqXtOba46wnHiFTTaqgJBL3wACgYKATISARMSFQHGX2MiJoqRJnWljdDlOHls36vlMxoVAUF8yKqV0dOh7MizgT-qboPPEA5i0076
|
27 |
+
accounts.google.com FALSE / TRUE 1777053453 ACCOUNT_CHOOSER AFx_qI64q5aQBDfPNVPSwUNgpq-rfyXVYEOPoRzUn99LSGuWM4ElPxxZIEkC3wDqZMBOk0dALPcI0ja3_dK9Dflp38NPLfKyXcASIvuOEsDkHyiTofC-u-O8nQvdjY22VuQ6m-_1wJql
|
28 |
+
.youtube.com TRUE / FALSE 1777053461 HSID AuJsLBa_AeRgZJgn5
|
29 |
+
.youtube.com TRUE / TRUE 1777053461 SSID ATdK1Fc5-PY4mJgx3
|
30 |
+
.youtube.com TRUE / FALSE 1777053461 APISID FAbCw9ISRnDMJZNq/A5zaDoEEthvwA0zd_
|
31 |
+
.youtube.com TRUE / TRUE 1777053461 SAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
32 |
+
.youtube.com TRUE / TRUE 1777053461 __Secure-1PAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
33 |
+
.youtube.com TRUE / TRUE 1777053461 __Secure-3PAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
34 |
+
.youtube.com TRUE / FALSE 1777053461 SID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFHejaAuju9q0ZOnulmIj204wACgYKAVQSARMSFQHGX2Mi9xQ3JCZOKSx7fK5T5lFE2RoVAUF8yKp0A8SkSkWUn0FOr7IlYd3f0076
|
35 |
+
.youtube.com TRUE / TRUE 1777053461 __Secure-1PSID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFHaG8fC83GVGtdHIPaagOH5QACgYKAX8SARMSFQHGX2Migyw2qqLXKUZMe_JVb7ZWhxoVAUF8yKrlokpWBOo5od-qydz_8M750076
|
36 |
+
.youtube.com TRUE / TRUE 1777053461 __Secure-3PSID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFH9jcjN6xmybllJElETyydbwACgYKAU4SARMSFQHGX2Mi0NutW1iOfmvqOI5MRl8O6xoVAUF8yKp_EUYRLrtV_uj6QXNXU_530076
|
37 |
+
.google.co.id TRUE / FALSE 1777053461 HSID AuJsLBa_AeRgZJgn5
|
38 |
+
.google.co.id TRUE / TRUE 1777053461 SSID ATdK1Fc5-PY4mJgx3
|
39 |
+
.google.co.id TRUE / FALSE 1777053461 APISID FAbCw9ISRnDMJZNq/A5zaDoEEthvwA0zd_
|
40 |
+
.google.co.id TRUE / TRUE 1777053461 SAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
41 |
+
.google.co.id TRUE / TRUE 1777053461 __Secure-1PAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
42 |
+
.google.co.id TRUE / TRUE 1777053461 __Secure-3PAPISID OZVAFzZpS49D7nm6/A97O0L_AYKjZCk7Gu
|
43 |
+
.google.co.id TRUE / FALSE 1777053461 SID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFHejaAuju9q0ZOnulmIj204wACgYKAVQSARMSFQHGX2Mi9xQ3JCZOKSx7fK5T5lFE2RoVAUF8yKp0A8SkSkWUn0FOr7IlYd3f0076
|
44 |
+
.google.co.id TRUE / TRUE 1777053461 __Secure-1PSID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFHaG8fC83GVGtdHIPaagOH5QACgYKAX8SARMSFQHGX2Migyw2qqLXKUZMe_JVb7ZWhxoVAUF8yKrlokpWBOo5od-qydz_8M750076
|
45 |
+
.google.co.id TRUE / TRUE 1777053461 __Secure-3PSID g.a000vAh-r33pTXu66l_ztYc6yr2q6egEXbqWhmqKeUGXMj9xntFH9jcjN6xmybllJElETyydbwACgYKAU4SARMSFQHGX2Mi0NutW1iOfmvqOI5MRl8O6xoVAUF8yKp_EUYRLrtV_uj6QXNXU_530076
|
46 |
+
.youtube.com TRUE / TRUE 1758045453 __Secure-ROLLOUT_TOKEN CI3P1O2sqL2GEhCE_urXnZmMAxjowZP7nZmMAw%3D%3D
|
47 |
+
.google.com TRUE / FALSE 1774029461 SIDCC AKEyXzUtIgVVxOvXMN4Mo5pyaKTN09ZOwkvdVOXcEUR8GVtzKoE59NsK3v-pHaZ3WcEUrmkPPg
|
48 |
+
.google.com TRUE / TRUE 1774029461 __Secure-1PSIDCC AKEyXzVm_w7ARPsvhWH-2YuaYJCr1v4yLh_4TYjaYwAqoJvhSTRjHr6j5-2tyo8YF0frCNoR
|
49 |
+
.youtube.com TRUE / TRUE 1774029461 __Secure-1PSIDTS sidts-CjIB7pHptW3hpTyzz4VYfJwJRu0iE9zHey9cleF0sUMLcGvcJE28Qdz0JKJJK6ENP3dfYxAA
|
50 |
+
.youtube.com TRUE / TRUE 1774029461 __Secure-3PSIDTS sidts-CjIB7pHptW3hpTyzz4VYfJwJRu0iE9zHey9cleF0sUMLcGvcJE28Qdz0JKJJK6ENP3dfYxAA
|
51 |
+
.google.co.id TRUE / TRUE 1758304653 NID 522=ZWpmHYYnca1fr63ObY2yCUGO6RqOCxXH2z-MgU8ozlNv1sNCaJxdYa53ypc68oOhYK-A5Tf7OPGu76Mc-PK3b2NbdYo156Lx_QTZsMOTDXAn01D6YZtw0n4mjdxgi02BLNQueLAYEAdkjqfigntl0o-znRHxyhe1uW_21qmIlDlNn7PNc941c0JRM2PXWPqbT_aTVcINB-MUwhElmIvcSdR1jxFo2QtYBM8N5NCTcCKW2zgN3YuVeNTdlfaCrtruhHCSS7vTuZyEFF0sHITwNTQfZm-r-djHSEZKNIdHMb6llf6mB7ZgZB9kRaqNAT3rvMbHwPB-i1EmtvAJIgcwbAagzX58qZy-WCYH6njUhuol0TMonYDJnwgrzd3caNY3_hyzZMCw-0jY0xPc_ufypJK6I1ivkjbLcBwIlKEDK6SGAIkZCZdJvR5ehTeK0RBKVKCkbB19ERqLklDneNzqgpbDpqTRWnfTzWK06MAglR8JUPwGU2uD8qHcqGu7QFzCySneWHMC5jjv2mI53qI7ktz03E-yhKZ8zOp0NfrilErsgaTXQkmW0NFvXEhL9PELu70G2Nkdb87DPfDzSPbl0trRI6iSK6xmi2twLaqSq2rrPMlPeM4JR1PZISxFRRY
|
52 |
+
.youtube.com TRUE / TRUE 1777053461 LOGIN_INFO AFmmF2swRgIhANNWB6VfLV2z11-qzouReMrOZDKMobfiEJ_GpSe9aX6ZAiEA6fyMbvxZLSrOkQjMTBE1bH4M2eaBRJUfcpRy7P3Tsis:QUQ3MjNmd3F6aElJWHEyNllMX2NfSUk5Rjh2YTdkZ0JuOWVuZWMwa0hVWmpWakUwWmFXNGtrcXREUGw4dEVsWVVaVlpINzlRT1VhRUdYZlR0cHFzcmwxUzBUWkx5NE5FMFMtTVAwanZVTFd0V29QX21IZXhpblFaMkdhSW9DSkUyN2NBN1d2WVRWM0tOQUJzMGhSUzFGUjZsT0d2VHljc1Nn
|
53 |
+
.youtube.com TRUE / TRUE 1777053548 PREF f6=40000000&tz=Asia.Jakarta&f4=4000000&f7=100
|
54 |
+
.doubleclick.net TRUE / TRUE 1758045497 APC AfxxVi5J5muTFUpyPJjekSrNCC8Cflp0tDhyq5zg3ZGJMTSEzJ6-Vw
|
55 |
+
.doubleclick.net TRUE / TRUE 1745085497 ar_debug 1
|
56 |
+
.doubleclick.net TRUE / TRUE 1758045497 receive-cookie-deprecation 1
|
57 |
+
.doubleclick.net TRUE / TRUE 1777053497 IDE AHWqTUnuyYeW13I4dphsoQWfFmV4-ThjsfPo0G78w1SNH_zVQADXELgjNWoI7woEC74
|
58 |
+
.youtube.com TRUE / TRUE 1742494105 CONSISTENCY AKreu9vypuk8Wg6Vp2vH7OLdrdLI6UXTtReV6KS8Lwvo_4BbV4HkkYlR-IjQ_Vh4xGyuo_S-b489zXPY_hoi5pCKKJEAw0_BZTWwiOg-xsdjG6bIK9kq9ooefqSDV-hyY7ZuTftDD1vKNDIS_7Hth_qx
|
59 |
+
.google.com TRUE / TRUE 1774029550 __Secure-3PSIDCC AKEyXzUv6VVgZSCsg1BzWrHu-agRTl_ikgRHKLvQkKNXPsSlBKPan4yowiV3_zounh-uH4VY
|
60 |
+
.youtube.com TRUE / FALSE 1774029552 SIDCC AKEyXzWGRayUMY-oUqSN-oqth_dWIdH0jo6CQhTaqBP5dh4TW5Rk4KNoJkk7-Bs8M8XsxuCniw
|
61 |
+
.youtube.com TRUE / TRUE 1774029552 __Secure-1PSIDCC AKEyXzXu5MvpCn_i0503bteT_uiOo9TarcgJN9FMVM4yW3PiiEfRBHAkChxu_z4QpgAEdbGeYw
|
62 |
+
.youtube.com TRUE / TRUE 1774029552 __Secure-3PSIDCC AKEyXzVFZObT8kF1rmnr0R1HTRtbtWJmPocI0PnGsKrBMEpnl2JlbFV0bQ3QZGejq6_OsVkx
|
generate.py
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from asyncio import run
|
2 |
+
|
3 |
+
from pyrogram import Client as c
|
4 |
+
|
5 |
+
API_ID = input("\nEnter Your API_ID:\n > ")
|
6 |
+
API_HASH = input("\nEnter Your API_HASH:\n > ")
|
7 |
+
|
8 |
+
print("\n\n Enter Phone number when asked.\n\n")
|
9 |
+
|
10 |
+
i = c(name="pyrogram", api_id=API_ID, api_hash=API_HASH, in_memory=True)
|
11 |
+
|
12 |
+
|
13 |
+
async def main():
|
14 |
+
await i.start()
|
15 |
+
ss = await i.export_session_string()
|
16 |
+
await i.send_message(
|
17 |
+
i.me.id,
|
18 |
+
f"""
|
19 |
+
STRING_PYROGRAM
|
20 |
+
|
21 |
+
`{ss}`
|
22 |
+
|
23 |
+
YOUR_ID: {i.me.id}
|
24 |
+
""",
|
25 |
+
)
|
26 |
+
print("Please check your saved messages")
|
27 |
+
|
28 |
+
|
29 |
+
run(main())
|
github-action.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
autoflake==2.1.1
|
2 |
+
black==23.3.0
|
3 |
+
click==8.1.3
|
4 |
+
isort==5.12.0
|
5 |
+
mypy-extensions==1.0.0
|
6 |
+
packaging==23.1
|
7 |
+
pathspec==0.11.1
|
8 |
+
platformdirs==3.6.0
|
9 |
+
pyflakes==3.0.1
|
10 |
+
tomli==2.0.1
|
requirements.txt
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
py-tgcalls==2.0.2
|
2 |
+
ntgcalls==1.2.1
|
3 |
+
kymang==2.0.2
|
4 |
+
git+https://github.com/naya1503/pyrogram
|
5 |
+
tgcrypto
|
6 |
+
pytz
|
7 |
+
psutil
|
8 |
+
dnspython==2.3.0
|
9 |
+
python-dotenv
|
10 |
+
GitPython
|
11 |
+
pykeyboard
|
12 |
+
bs4
|
13 |
+
pymediainfo
|
14 |
+
opencv-python-headless
|
15 |
+
unidecode
|
16 |
+
attrify
|
17 |
+
pySmartDL
|
18 |
+
html2text
|
19 |
+
removebg
|
20 |
+
aiofiles
|
21 |
+
aiohttp
|
22 |
+
gpytranslate
|
23 |
+
gtts
|
24 |
+
telegraph
|
25 |
+
pyromod==1.1
|
26 |
+
openai
|
27 |
+
youtube-search-python
|
28 |
+
yt-dlp
|
29 |
+
wget
|
30 |
+
python-dateutil
|
31 |
+
emoji
|
32 |
+
search_engine_parser
|
33 |
+
httpx[http2]
|
34 |
+
httpx
|
35 |
+
pytimeparse
|
36 |
+
flask
|
37 |
+
flask_restful
|
38 |
+
uvloop
|
39 |
+
Pillow==8.3.2
|
40 |
+
motor==3.0.0
|
41 |
+
requests
|
42 |
+
meval
|
43 |
+
speedtest-cli
|
runtime.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
python-3.*
|
start
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
git pull
|
2 |
+
python3 -m ubot
|
storage/15.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d884ef26a2b02efdb34365d8850b92a50cc3d6878355c9cfbb7bf57baa184cd1
|
3 |
+
size 344944
|
storage/16.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4418223b8bdbc613972b6f76ab2777ab329bbd9a02778a495a303602fd9844d4
|
3 |
+
size 48840
|
storage/17.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3398a13fa56d7cc47454ad2dc455b150f54e0bd0eaaaf2df2fb49e664053d093
|
3 |
+
size 395312
|
storage/18.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1dd09420a6dc82bfc88ed89268e93cc58225ecc183711c21630eb3455d39304a
|
3 |
+
size 31436
|
storage/19.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c185db8d7be47e411a56c3b5b87c0748ec16d3ca558dcbbbcc46dd926b3b5fe6
|
3 |
+
size 446644
|
storage/2.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8bb0d23e78dc94851b86732c28b9e0da1724893ba9301483bfdfcea50c19fac4
|
3 |
+
size 21872
|
storage/20.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9405a3d44fa8a40f12990bf2fc557ee08b107dcdb70f2f6af7490cfd9269706b
|
3 |
+
size 706524
|
storage/22.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5cb2c9c70eb40ede42414dae08ff4d77108d654cb136a1c80118ea9396c0142f
|
3 |
+
size 28004
|
storage/23.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4e34b5e344275fb0da0698c2c3f48e34a83496639b965619266a39371d567a59
|
3 |
+
size 26572
|
storage/24.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68e11431fef495416e4df0360d9b2158563ad008efe8e25a99403d7d793dee04
|
3 |
+
size 41416
|
storage/3.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c7ac136a7670f9c57bc9cb612466829ddf4ce628c5c9738aca693821d300159b
|
3 |
+
size 11688
|
storage/4.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:22476934b7fd7fbe26e47b6224d118e6c31d39bde23bab8bedbded2f88dd24af
|
3 |
+
size 51256
|
storage/6.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fdc8a783806a63a7671a24c3cec2b8e1eb15a9a7b3d611d0a704ed2bd1f3d824
|
3 |
+
size 53744
|
storage/7.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca2a6ef77010ed61ffa5ecdccfa40654f9d633abac02bf98180c3fa4e26b29ef
|
3 |
+
size 8244
|
storage/9.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0dce9671e258eefd69623ea9a9b9d3bcb980183d4905c7946daf9443587d3a4e
|
3 |
+
size 32136
|
storage/AVENGEANCE HEROIC AVENGER AT.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:efe44ac1f2d1db3f2959f0cf495e00f138d782af14a628032f9a634208fc9be3
|
3 |
+
size 101068
|
storage/AVENGEANCE HEROIC AVENGER AT.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:026d2bc24998acbf542d3a7d750c64755ff34cb8fb5fec6875a4f0d628978133
|
3 |
+
size 167120
|
storage/AVENGEANCE HEROIC AVENGER BI.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d2d958e877dfd57b3216d9907eb756ab21a11f05f3ee3bdd44a746bd1f3cb0b
|
3 |
+
size 101056
|
storage/Big Space.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2a7ffc34acac7a33b2ad61252fa700770d10be7b1f19a66633331681af297296
|
3 |
+
size 45708
|
storage/Blessed.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a52e44eacf1a17532f648f4c8cf7b0bc481db9566bbd9b5d64f2a1169af0dede
|
3 |
+
size 207576
|
storage/CRAWLER-RegularDEMO.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:027247270344187686188dba69fbbb870a1ac085e19cdd182245ee12e8028a1d
|
3 |
+
size 84540
|
storage/CROWNT.TTF
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8a7f5d314aa8b44500da428d3b386692b09fd2429917045999e566d970036388
|
3 |
+
size 19208
|
storage/Chopsic.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:781678382345c604694317b82e526fdf07d7c20140e648ebef09debc8a541d04
|
3 |
+
size 24264
|
storage/Crozzoe-Personal-Use.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:186ea9b397e082d4be919213bbff04f6a73135447799d7f844b8cb0c35997397
|
3 |
+
size 128824
|
storage/DIGIT.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d330a549ac9e7e73b8514136989517ef0deacbd003a4f3d66a7252d64d55b31
|
3 |
+
size 25480
|
storage/Damages-Italic.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:27ca143d7239e640f623ecab100b31588d590386efe710a6fe6fe47cb2c73d19
|
3 |
+
size 21204
|
storage/Damages.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3437720ebea199a4082bc2c82d912fb451162b7368414b2552f8b587baa1a512
|
3 |
+
size 27724
|
storage/Damages3D-Italic.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:491fc1a6e8aadaf7e43f71d2058cde393039ae7a6e4eb6390ae2e7a2dca537d9
|
3 |
+
size 25516
|
storage/Damages3D.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:85fc29fdffa03ccfec2738794d07f5c0f2c96f247a38a05dc50e45c16d12da16
|
3 |
+
size 35588
|
storage/Damages3DFilled-Italic.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:422f0acc1be040a4b27b426a7f230bb97dfae5d4016ff7e0237ec57668513352
|
3 |
+
size 34380
|
storage/Damages3DFilled.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2e1fd4522f32db371a57c7ad9e44061b993ee536571738f8db679638d6eef706
|
3 |
+
size 51572
|
storage/Damar Kurung.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:284928db06d0713873543da929cdc96800f3435ff47ce160723dc57fe4d03ced
|
3 |
+
size 18620
|
storage/Damar Kurung.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c639bbddbd4ae1f57eb09e52b18f7684ff24029fdf7ee544beabfe179610d76a
|
3 |
+
size 18620
|
storage/Dark Ministry.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:129a04efb659f2f3b6244410ce024505edbcd83d7a0060c5426c9561b6f6585b
|
3 |
+
size 8100
|
storage/Dark Seed.otf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3032cb0a21d4b946bdb1e0a1a29c4017c706043db6aff95249e893d840c6429c
|
3 |
+
size 19952
|
storage/Dark.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:70a0b32ade35a2c9513fbf8c81ae02d67c4d6675023caeade9d6e2c0a1b9d717
|
3 |
+
size 22896
|