├── LICENSE.md
├── README.md
├── aio.png
├── avatars
├── 000fd97ab0040c33ff481ad686d776a1-3515.jpg
├── 00a114e6a42178dc12e21633978c27da-5829.jpg
├── 00a177d0be4270182e366fb9b8897565-7393.jpg
├── 00a6e837043f4a29a387a9467f6343ba.png
├── 00aa5ba60f44693faceb18f727df8aee-6761.jpg
├── 00aa8185eb856c5e46d703df7bcb2987-4374.jpg
├── 00b093febf0c3f26d60454a8b34c0ad4-1990.jpg
├── 00b1f51c41ca5502894aeb4794197e37-3267.jpg
├── 00b431409f970c69b81257339f01f93a-9892.jpg
├── 00b4eeb38b845e0f3f9deed4c2445973-9339.jpg
├── 00b857fc38045f3838fb1f38fc8b6001-2613.jpg
├── 00bbc248fd55ead03d62d251294c0acb.png
├── 00bc7bdd38b34326cede8e189642e234-3869.jpg
├── 00bd3c8f2982899013cf39c1c9a54312-2381.jpg
├── 00bfc5bc4ddd8e2e4aa8f9829f92f0b4-7746.jpg
├── 00c9c4bbae80542f9b3480a9a3fb4039-7531.jpg
├── Phoenix_Tools.png
└── image.png
├── banners
├── 1868-anime-vafe.png
├── 3332-90s-clouds.png
├── 7036-cute-kawaii (1).png
├── 7036-cute-kawaii.png
└── 8899-minecraft-java-edition.png
├── input
├── bios.txt
├── cookies.txt
├── proxies.txt
├── settings.json
└── usernames.txt
├── main.py
├── out
├── accounts
├── available.txt
└── cookies
└── version.txt
/LICENSE.md:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
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 |
635 | Copyright (C)
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 .
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 | Copyright (C)
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 | .
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 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Replit Aio
2 | Replit Aio with Account Generator and more!
3 |
4 |
5 | 
6 |
7 |
8 | # ・How to use
9 | ・Put proxies in proxies.txt: https://www.webshare.io/?referral_code=27rjvonmaef4
10 |
11 | ・Capmonster key in config: https://capmonster.cloud/Dashboard
12 |
13 | # ・About
14 |
15 | ・Leave all Suggestions in a pull request or issue
16 |
17 | ・It takes 2 seconds to star, longer to maintain :)
18 |
19 | ## Generator Features
20 | ```
21 | ・Account Generator
22 |
23 | ・Email Verify
24 |
25 | ・Profile Picture Changer
26 |
27 | ・Bio Changer
28 |
29 | ・Onliner
30 |
31 | ・Creates Repl On signup
32 |
33 | ```
34 |
35 | ## Aio Features
36 |
37 | ```
38 | ・Follow bot
39 |
40 | ・Unfollow bot
41 |
42 | ・Fork bot
43 |
44 | ・Run bot
45 |
46 | ・Report bot
47 |
48 | ・Username Checker
49 |
50 | ・Pfp Changer
51 |
52 | ・Banner Changer
53 |
54 | ・Bio Changer
55 | ```
56 |
57 |
58 | ## 🥅 ・Goals
59 | ```
60 | ・ 5 stars I will add follow bot ✅
61 |
62 | ・ 10 stars I will add a fork bot ✅
63 |
64 | ・ 15 stars I will add a run bot ✅
65 |
66 | ・ 20 Stars I will add a like bot ✅
67 | ```
68 |
69 | ## Want help?
70 | ・Join my discord
71 | https://discord.gg/phts
72 |
73 |
74 | ## ・Skids
75 | ```
76 | supreme#1049 - Selling for nitro
77 | ```
78 |
79 |
80 | ## 📄・License
81 |
82 | This project is licensed under the GPL General Public License v3.0 License - see the [LICENSE.md](./LICENSE) file for details
83 | ```js
84 | ・Educational purpose only and all your consequences caused by you actions is your responsibility
85 | ・Selling this Free gen is forbidden
86 | ・If you make a copy of this/or fork it, it must be open-source and have credits linking to this repo
87 | ```
88 |
89 | ## 📄・Important
90 | ```
91 | ・This is for Educational purpose only all your consequences caused by your actions is your responsibility
92 | ・Selling this Free gen is forbidden
93 | ・If you make a copy of this/or fork it, it must be open-source and have credits linking to this repo, this is simply showing how the site can be overruled.
94 | ```
95 |
96 | ## 💭・ChangeLog
97 |
98 | ```diff
99 | v1 ⋮ 14/8/22
100 | + Stable Release
101 |
102 | v1.2 ⋮ 16/8/22
103 | + Fork Bot
104 | + Follow Bot
105 |
106 | v2 ⋮ 16/8/22
107 | + Aio
108 | ```
109 |
110 |
111 | ## Custom work
112 | ```
113 | For custom work contact !Hazza#0001
114 | ```
115 |
116 |
117 |
118 |
119 |
120 |
121 |
--------------------------------------------------------------------------------
/aio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/aio.png
--------------------------------------------------------------------------------
/avatars/000fd97ab0040c33ff481ad686d776a1-3515.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/000fd97ab0040c33ff481ad686d776a1-3515.jpg
--------------------------------------------------------------------------------
/avatars/00a114e6a42178dc12e21633978c27da-5829.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00a114e6a42178dc12e21633978c27da-5829.jpg
--------------------------------------------------------------------------------
/avatars/00a177d0be4270182e366fb9b8897565-7393.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00a177d0be4270182e366fb9b8897565-7393.jpg
--------------------------------------------------------------------------------
/avatars/00a6e837043f4a29a387a9467f6343ba.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00a6e837043f4a29a387a9467f6343ba.png
--------------------------------------------------------------------------------
/avatars/00aa5ba60f44693faceb18f727df8aee-6761.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00aa5ba60f44693faceb18f727df8aee-6761.jpg
--------------------------------------------------------------------------------
/avatars/00aa8185eb856c5e46d703df7bcb2987-4374.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00aa8185eb856c5e46d703df7bcb2987-4374.jpg
--------------------------------------------------------------------------------
/avatars/00b093febf0c3f26d60454a8b34c0ad4-1990.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00b093febf0c3f26d60454a8b34c0ad4-1990.jpg
--------------------------------------------------------------------------------
/avatars/00b1f51c41ca5502894aeb4794197e37-3267.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00b1f51c41ca5502894aeb4794197e37-3267.jpg
--------------------------------------------------------------------------------
/avatars/00b431409f970c69b81257339f01f93a-9892.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00b431409f970c69b81257339f01f93a-9892.jpg
--------------------------------------------------------------------------------
/avatars/00b4eeb38b845e0f3f9deed4c2445973-9339.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00b4eeb38b845e0f3f9deed4c2445973-9339.jpg
--------------------------------------------------------------------------------
/avatars/00b857fc38045f3838fb1f38fc8b6001-2613.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00b857fc38045f3838fb1f38fc8b6001-2613.jpg
--------------------------------------------------------------------------------
/avatars/00bbc248fd55ead03d62d251294c0acb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00bbc248fd55ead03d62d251294c0acb.png
--------------------------------------------------------------------------------
/avatars/00bc7bdd38b34326cede8e189642e234-3869.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00bc7bdd38b34326cede8e189642e234-3869.jpg
--------------------------------------------------------------------------------
/avatars/00bd3c8f2982899013cf39c1c9a54312-2381.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00bd3c8f2982899013cf39c1c9a54312-2381.jpg
--------------------------------------------------------------------------------
/avatars/00bfc5bc4ddd8e2e4aa8f9829f92f0b4-7746.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00bfc5bc4ddd8e2e4aa8f9829f92f0b4-7746.jpg
--------------------------------------------------------------------------------
/avatars/00c9c4bbae80542f9b3480a9a3fb4039-7531.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/00c9c4bbae80542f9b3480a9a3fb4039-7531.jpg
--------------------------------------------------------------------------------
/avatars/Phoenix_Tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/Phoenix_Tools.png
--------------------------------------------------------------------------------
/avatars/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/avatars/image.png
--------------------------------------------------------------------------------
/banners/1868-anime-vafe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/banners/1868-anime-vafe.png
--------------------------------------------------------------------------------
/banners/3332-90s-clouds.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/banners/3332-90s-clouds.png
--------------------------------------------------------------------------------
/banners/7036-cute-kawaii (1).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/banners/7036-cute-kawaii (1).png
--------------------------------------------------------------------------------
/banners/7036-cute-kawaii.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/banners/7036-cute-kawaii.png
--------------------------------------------------------------------------------
/banners/8899-minecraft-java-edition.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/banners/8899-minecraft-java-edition.png
--------------------------------------------------------------------------------
/input/bios.txt:
--------------------------------------------------------------------------------
1 | I Blame myself every day. for the plan, For meeting you, for not stopping you when I had the chance, I don’t make that mistake anymore, I see the problem, I step in.
2 | Eat-Sleep-Play Game.
3 | Escape Reality & Play Games.
4 | Don’T Play The Game. Win It.
5 | Keep Calm And Let The Games Begin.
6 | Steel wins battles, Gold wins wars – Davion.
7 | The world is full of unanswered questions, beyond all limits or reason. the answers await.
8 | Gamer zone, Be careful.
9 | We can’t change whats done, We can only move on.
10 | Hope is what makes us strong. It is why we are here. It is what we fight with when all else is lost. – GodOfWar
11 | Wake me when you need me.
12 | No matter how small, all creatures have a right to exist in this world.
13 | I make deliveries, That’s all.
14 | Even in the darkest of roads, the lord will always guide you through his light.
15 | If you are fighting enemies in your journey, Then you are going to the right place.
16 | The stronger you press the buttons, The stronger the attack is.
17 | I am done with searching, I want to be around and living.
18 | True grace is beautiful in its imperfection, honest in its emotion, freed by its on reality – League of Legends.
19 | If you have gun, you can rob a bank, But if you have a bank, you can rob anyone – Black Mask.
20 | Stand in the ashes of a trillion dead souls and ask the ghosts if honor still matters. The silence is your answer – ‘Mass Effect Series’.
21 | Wanting something does not give you the right to have it – Assassin’s Creed 2.
22 | Don’t wish it were easier, wish you were better – Animal Crossing.
23 | Progress, Demands, Sacrifice – Uncharted Lost Legacy.
24 | If I cannot outsmart them, I will outfight them – Dota 2
25 | I am a man of unfortunate and I must seek my fortune – Uncharted 4.
26 | Nothing is more badass than treating woman with respect.
27 | Just one more game.
28 | Games the only legal place to kill stupids.
29 | The monster you have killed is returned to kill you – God of War.
30 | They told me I couldn’t, that’s why I did.
31 | Gaming is not a crime.
32 | I am card carrying nerd, a gamer sci-fi geek.
33 | Keep calm and game on.
34 | I survived because the fire inside me burned brighter than the fire around me.
35 | I Dream of better world where I can play video games all day long without having my sanity questioned.
36 | Video games foster the mindset that allows creativity to grow.
37 | Nothing is more badass than treating woman with respect – Borderlands 2′.
38 | Hesitation is defeat – ‘Shadows die twice’.
39 | When life gives you curdled milk, be patient, you get very good cheese – ‘Braum, League of Legends’.
40 | If I cannot outsmart them, I will outfight them – ‘Dota 2’.
41 | Success is not final, failure is not fatal: it is the courage to continue that counts – ‘Call of duty – Modern Warfare’.
42 | Keep friends close and enemies guessing – ‘League of Legends’.
43 | Losing is just an opportunity to shine brighter – ‘Lux, League of Legends’.
44 | I am man of fortune, and I must seek my fortune – ‘A Thief’s End’.
45 | Yes! I am a gamer, but surely I don’t play until you start gaming.
46 | My brain is 90% gaming, tactics and 10% random stuffs.
47 | I could lie and tell you I am a hardcore gamer, I’m not.
48 | Failure doesn’t mean game over, It means try again with experience.
49 | The further you get into technology, the further you go into technology, that’s the general rule.
50 | Top Discord status
51 |
52 | Keep Calm And Let The Games Begin.
53 | Life Is More Fun If You Play Games
54 | I Don’T Have Birthdays. I Level Up.
55 | I don’t need to get a life, I am a gamer, I have lots of lives.
56 | Wisdom is the offspring of suffering and time.
57 | The game has its ups and down, but you can never lose focus of your individual goals and you can let yourself e beaten because of lack of effort.
58 | We fail, We Break, We Fall but then We Rise, We Heal, We Overcome.
59 | Games don’t make us aggressive, Lag does.
60 | Tasted a good life once…needed salt. – ‘League of Legends’.
61 | I have come to retrieve my power, you cant handle it – ‘Dante’s Awakening’.
62 | Battles come and go, I am eternal – ‘League of Legends’.
63 | A hero need not speak, When he is gone, the world will speak for him – ‘Halo 3’
64 | Wake the f**k up Samurai, We have city to burn. – ‘Cyberpunk 2077’.
65 | There is thin line between life and death, you will find me there – ‘Apex Legends’.
66 | Break a trillion dead souls and ask the ghost if honor still matters.
67 | Kind lost, no one to blame. Last night met an old foe, directing me the right way not sure if it’s life or a video game.
68 | Life Is More Fun If You Play Games.
69 | What You Allow Is What Will Continue.
70 | Play Every Game As If It Your Last One.
71 | Men Playthe Game, Women Know The Score.
72 | Life Is A Game And True Love Is A Trophy.
73 | Life Is A Game. Money Is How We Keep Score.
74 | Love Is A Game That Two Can Play And Both Win.
75 | I Am Still Playing The Game, Having A Great Time.
76 | Don’T Play Games With A Girl Who Can Play Better.
77 | I M Just Going To Play Whatever Game Is In front Of Me.
78 | Video Games Ruined My Life. Good Thing I Have Two More.
79 | I’M Just Going To Play Whatever Game Is In Front Of Me.
80 | To Know The Rules Of The Game, You Have To Be Educated.
81 | Video Games Ruined My Life. Good Thing I Have Two More.
82 | I Heard You’Re A Player. Nice To Meet You. I’M The Coach.
83 | I Play Some Fighting Games, But Mostly I Just Play Sports.
84 | Video Games Foster The Mindset That Allows Creativity To Grow.
85 | You Know A Gamer Loves You When He Offers To Teach You How To Play.
86 | Thank You. But Our Princess Is In Another Castle – Super Maria Quote.
87 | I Am Gamer Not Because I Don’T Have A Life But I Choose To Have Many.
88 | Failure Doesnt Mean The Game Over, It Means Try Again With Experience.
89 | Once Tha Game Is Finished, The Kind And The Pawn Go Into The Same Box.
90 | Games Have So Much Freedom. You Can Go Anywhere You Want. – Jeneva Chen.
91 | When I Play A Fighting Game, I Press Random Buttons And Hope For The Best.
92 | When You Meet Your Enemies, It Means You’Re Heading In The Right Direction.
93 | A Gamer Doesn’T Choose To Throw His Lilfe Away. He Only Chooses To Have Many.
94 | The Only Games That Should Be Getting Played In A Relation Are In The Bedroom.
95 | Playing The Game & Unfortunately, Playing The Gangster Game Is Very Profitable.
96 | I Hope They Make A Video Game Of Me. At Least I Would’T Have Any Cellulite Then.
97 | You Don’T Stop Gaming Because You Grow Old, You Grow Old Because You Stop Gaming.
98 | Cute Discord status
99 |
100 |
101 | I Have A Dreams That One Day My Mom Will Understand That Online Games Can Not Be Paused.
102 | Video Game Logic – Everyone Worse Than Me Is A Noob. Everyone Better Than Me Has No Life.
103 | That Sad Moment When You Finsih A Game And Just Don’T Know What To Do With Your Life Anymore.
104 | Play More Than One Game At A Time. This Is A Painless Way To Learn How To Do Any Things At Once.
105 | War Is Where The Young And Stupid Are Tricked By The Old & Bitter Into Killing Each Other.
106 | You Learn A Lot About People When You Play Games With Them. Concentrate, Play Your Game, And Don’T Be Afraid To Win.
107 | If You Bf Replies To Your Text While He Is Playing DOTA, Then He Truly Loves You. Not So True. He’S Just Waiting To Respawn And Has Nothing Else To Do.
108 | The right man in the wrong place can make all the difference in the world.
109 | Why isn’t working? Is there something missing? Must more blood be shed? – Vergil.
110 | If our lives are already written, It would take a courageous man to change the script.
111 | Video game don’t make us violet lag does.
112 | It’s better to die on your feet than to live on your knees.
113 |
114 | Winning and losing does not have meaning, because some people win by losing and some lose by winning.
115 | keep calm and play games.
116 | I have always been a gamer, and I had a period I was gaming at a really hardcore level.
117 | Beauty fades, this is why its beautiful – ‘Kindred, League of Legends’.
118 | Heroes never die – ‘Mercy, Overwatch’.
119 | War is when the young and stupid are tricked by the old and bitter into killing each other – ‘GTA IV’.
120 | If you find yourself in a hole, the first thing to do is stop digging – ‘Red Dead Redemption’.
121 | Take pride in your work, Even if its not the prettiest.
122 | If there is nothing in chest, a chest doesn’t mean anything.
123 | Find what you love and let it kill you.
124 | Maturity is when you realize Winner Winner Chicken Dinner is not a great success.
125 | In the ashes of trillion dead and ask me the ghosts if honor matters.
126 | All that we do, all that we are, begins and ends with ourselves.
127 | Hope is the only thing stronger than fear.
128 | Don’t let things get on the top of you, get on top of them.
129 | There isn’t any shame in being weak, The shame is in staying weak.
130 | Life is a game, Play to win.
131 | I can’t develop feelings, That’s how most idiots screwed up.
132 | Don’t ever stop always keep going, no matter what happens and is taken from you. Even when life is unfair. don’t give up.
133 | If you get a gut feeling that something isn’t right about a person or situation, trust it.
134 | The worst point in my life is when I study until late at night and the material that I have learnt does come out in the test.
135 | Despair in the enemy greatest Weapon, Do not let them wield it.
136 | Keep calm and blame it on the lag.
137 | Steel wins battles, Gold wins wars – DOTA 2
138 | Games are a way to escaping reality That’s why you need heroic factor.
139 | Eat, Sleep, Play repeat.
140 | Just five minutes more….
141 | Gamers don’t fear the apocalypse.
142 | I am not a player, I am a gamer.
143 | Gamers don’t die they respawn.
144 | I am pretty a big gamer.
145 | Popular Discord status
146 |
147 | Can a man be brave If he’s afraid? That is the only time a man can be brave – Game of Thrones.
148 | When I play fighting games, I press random buttons and hope for the rest.
149 | Escape reality and play games.
150 | I am a big, so I love my play station to switch from triathlon.
151 | When life is gets hard that means you leveled up.
152 | Mess with the best, you will die like the rest
153 | Needless to say, nobody is born an avid gamer.
154 | I am a think gamer with twitch tendencies.
155 | Be the game changer.
156 | When you are drowning you still remember how to breathe but you can’t? That’s the mist – ‘Senna, League of Legends’.
157 | Time Passes people move, like a rivers flow, It never ends, A childish mind will turn to noble ambition.
158 | I don’t need a therapy, I just need video games.
159 | Home is where you are player one.
160 | Games always believe that an epic win is possible and that it’s always worth trying and trying now.
161 | We don’t stop playing because we grow old, We grow old because we stop playing.
162 | Money is never a big motivation except as a way to keep score. The real excitement is playing the game.
163 | If a repel hero in the DotA world can protect someone from evil magic, I want to be a repel in the real world to protect you from bad people. – Words of wisdom Dota
164 | In the point-blank game, I was taught how to work together, so that I became a strong team.
165 | I learn to be stronger every day, to prove that I deserve to join the party – Said the gamers dragon nest
166 | in the game, we try hard so our team wins, that’s the spirit of teamwork.
167 | although I didn’t seem to care, I bought an ‘observer wand’ to see if there was a bit of your love for me – Dota’s words
168 | I can just conquer a dragon, let alone you – the words of Dragon Nest gamers
169 | I am still playing games, having fun.
170 | Don’t Play Games With Girls Who Can Play Better.
171 | I’m in a game now… Can’t you have a little patience?
172 | In the game I’m playing I’m either dieing, or I’m about to die, or I dies a million times! When I’ll get sick of dieing, I’ll talk to you!
173 | I’m in a game at the moment and I’m winning. Interrupt me and I will destroy you!
174 | I have 3 games opened at the moment. Mario just threw a fireball towards hole 16 in the corner pocket, and you want me to chat with you?
175 | I tried a new game but my screen exploded. DND, I’m trying to put it back together with duck tape.
176 | When You Find Your Enemy, That Means You’re in the Right Direction.
177 | A Gamer Does Not Choose To Throw His Life Away. He only chose to have many.
178 | We all make choices in life, but in the end our choices make us.
179 | I don’t need to get a life, Game got lots of lives.
180 | Gamer at work.
181 | I’m not good enough to chat and play game at the same time. So DND!
182 | I’m trying to validate a scientific theory: are games more addictive than drugs?
183 | I know how to live life at its fullest… We’ll talk more after I finish this video game!
184 | I’m living in a virtual world… Don’t disturb me!
185 | I’m playing a game that takes up all the screen, so I won’t be able to reply!
186 | I’m in a game where I can’t save, nor pause… So I can’t reply until I lose.
187 | I’m playing a game on the PC. I’ll reply when I’ll run out of lives!
188 | I’m not available because I’m in a game that makes ma unavailable.
189 | I’m paying Counter-Strike for 7 years. Today I managed to plant the bomb for the first time! So shut up!
190 | Im Just Going To Play Whatever Game is in front of me.
191 | When I Play Battle Games, I Press the Random Button and Expect the Best.
192 | Funny Discord status
193 | Don’t worry, beer happy.
194 | Football and beer is why I’m here.
195 | We don’t keep calm. It’s football season.
196 | Don’t run away from challenges, run over them.
197 | This game is totally going to guac my world.
198 | You think you can beat us? Now that’s fantasy football.
199 | Don’t keep calm — it’s the Super Bowl.
200 | If you liked the Super Bowl trophy, then you should have put a wing on it.
201 | Super Bowl Sunday always steals a pizza my heart.
202 | The only thing getting tackled today are these nachos.
203 | Staying humble thanks to that fumble.
204 | Home is where the field is.
205 | Tackling this game, one snack at a time.
206 | We tailgate harder than your team plays.
207 | My team’s so gouda.
208 | I’m in a serious relation-chip.
209 | My team really needs to ketchup.
210 | All punts are highly intended.
211 | Blessed, never stressed, and football-obsessed.
212 | Having a ball this weekend with my very best friends.
213 | Winners never quit and quitters never win.
214 | We are the champions, my friend.
215 | I like big punts and I cannot lie.
216 | Champions believe in themselves, even when no one else does.
217 | Are you ready for some football?
218 | This might sound cheesy, but I think my team is really grate.
219 | Talk football to me.
220 | Touchdown for what?
221 | I’ve got 99 problems, but our team isn’t one.
222 | Teamwork makes the dream work.
223 | You’re only as good as your team… and mine is great.
224 | These commercials are going to give us something to taco ’bout.
225 | Un-brie-lievable.
226 | Today’s forecast: 100 percent chance of winning.
227 | That penalty was nacho problem.
228 | Dear, quarterback. I’m wingin’ it, but you shouldn’t.
229 | The huddle is real.
230 | Just in queso you didn’t know, I’m a huge football fan.
231 | Football: My second favorite F word.
232 | I feel tail-great about this game. Punt very intended.
233 | Ball for me. — Post Malone, Ball for Me
234 | First we eat the wings.
235 | Discord status in Hindi
236 | Inspirational Discord status
237 | I’m Commander Shepard, and this is my favorite store on the Citadel!
238 | Shadow and light are two sides of the same coin. One cannot exist without the other.
239 | A hero need not speak. When he is gone, the world will speak for him.
240 | It ain’t no secret I didn’t get these scars falling over in church.
241 | What is better – to be born good, or to overcome your evil nature through great effort?
242 | Love is just a chemical. We give it meaning by choice.
243 | War has changed.
244 | It’s time to kick ass and chew bubble gum…and I’m all outta gum.
245 | What is a man? A Miserable little pile of secrets!
246 | We’re not tools of the government or anyone else. Fighting was the only thing I was good at, but at least I always fought for what I believed in.
247 | They were all dead. The final gunshot was an exclamation mark to everything that had led to this point. I released my finger from the trigger. And then it was over.
248 | You were almost a Jill sandwich!
249 | It’s a-me, Mario!
250 | Nothing is true, everything is permitted.
251 | It’s dangerous to go alone, take this!
252 | Endure and survive.
253 | Praise the sun!
254 | Do you like hurting other people?
255 | I’ve struggled a long time with survivin’, but no matter what you have to find something to fight for.
256 | War is where the young and stupid are tricked by the old and bitter into killing each other.
257 | Hope is what makes us strong. It is why we are here. It is what we fight with when all else is lost.
258 | Stop right there, criminal scum!
259 | Hey! Look! Listen!
260 | I used to be an adventurer like you until I took an arrow to the knee.
261 | Do a barrel roll!
262 | A man chooses; a slave obeys.
263 | Grass grows, birds fly, the sun shines, and brother, I hurt people.
264 | Stay awhile and listen!
265 | Thank you, Mario! But our Princess is in another castle!
266 | Good men mean well. We just don’t always end up doing well.
267 | Why walk when you can ride?
268 | You have died of dysentery.
269 | Men are but flesh and blood. They know their doom, but not the hour.
270 | Dreams have a nasty habit of going bad when you’re not looking.
271 | Time passes, people move. Like a river’s flow, it never ends. A childish mind will turn to noble ambition.
272 | At the end of the day, as long as there are two people left on the planet, someone is gonna want someone dead.
273 | Don’t make a girl a promise if you know you can’t keep it.
274 | You can’t hide from the Grim Reaper. Especially when he’s got a gun.
275 | Reliance upon others is a weakness for the strong but strength for the weak. Wisdom and balance lie in knowing your nature over time.
276 | I like shorts! They’re comfy and easy to wear!
277 | What is a drop of rain, compared to the storm? What is a thought, compared to the mind?
278 | I never asked for this.
279 | No matter how dark the night, the morning always comes.
280 |
281 | Cool Discord Status
282 | Are you a bad enough dude to rescue the president?
283 | You’ve met with a terrible fate, haven’t you?
284 | The truth, Walker, is that you’re here because you wanted to feel like something you’re not: A hero.
285 | Stand in the ashes of a trillion dead souls and ask the ghosts if honor matters. Their silence is your answer.
286 | Did I ever tell you the definition of insanity?
287 | If our lives are already written, it would take a courageous man to change the script.
288 | The only way to prove that you’re a good sport is to lose.
289 | When you’ve got something to prove, there’s nothing greater than a challenge.
290 | Never give up, never give in, and when the upper hand is ours, may we have the ability to handle the win with the dignity that we absorbed the loss.
291 | It’s not the will to win that matters—everyone has that. It’s the will to prepare to win that matters.
292 | Persistence can change failure into extraordinary achievement.
293 | I’ve learned that something constructive comes from every defeat.
294 | Make sure your worst enemy doesn’t live between your own two ears.
295 | A man looking off a cliff at a vast valley below him
296 | Set your goals high, and don’t stop till you get there.
297 | I became a good pitcher when I stopped trying to make them miss the ball and started trying to make them hit it.
298 | If you can’t outplay them, outwork them.
299 | People ask me what I do in winter when there’s no baseball. I’ll tell you what I do. I stare out the window and wait for spring.
300 | Most people never run far enough on their first wind to find out they’ve got a second.
301 | Do you know what my favorite part of the game is? The opportunity to play.
302 | If at first you don’t succeed, you are running about average.
303 | Good is not good when better is expected.
304 | The difference between the impossible and the possible lies in a person’s determination.
305 | Champions keep playing until they get it right.
306 | You were born to be a player. You were meant to be here. This moment is yours.
307 | PNC Park filled with fans before a Pittsburgh Pirates game in April
308 | What you lack in talent can be made up with desire, hustle, and giving 110 percent all the time.
309 | If you fail to prepare, you’re prepared to fail.
310 | How you respond to the challenge in the second half will determine what you become after the game, whether you are a winner or a loser.
311 | Persistence can change failure into extraordinary achievement.
312 | Sports serve society by providing vivid examples of excellence.
313 | The principle is competing against yourself. It’s about self-improvement, about being better than you were the day before.
314 | Two safeties chasing a wide receiver with a ball down a football field
315 | The road to Easy Street goes through the sewer.
316 | You are never really playing an opponent. You are playing yourself, your own highest standards, and when you reach your limits, that is real joy.
317 | What makes something special is not just what you have to gain, but what you feel there is to lose.
318 | The more difficult the victory, the greater the happiness in winning.
319 | It ain’t about how hard you can hit. It’s about how hard you can get hit, and keep moving forward.
320 | Most talented players don’t always succeed. Some don’t even make the team. It’s more what’s inside.
321 | One man can be a crucial ingredient on a team, but one man cannot make a team.
322 | Memorial Stadium and the Sea of Red fans before a Nebraska football game
323 | Nobody who ever gave his best regretted it.
324 |
325 |
326 | Awesome Discord status
327 | The only thing that can defeat power, is more power.
328 | A famous explorer once said that the extraordinary is in what we do, not who we are.
329 | When you’re riding, only the race in which you’re riding is important.
330 | Age is no barrier. It’s a limitation you put on your mind.
331 | A Wilson tennis ball sitting at the intersection fo two lines on a tennis court
332 | Only he who can see the invisible can do the impossible.
333 | I always felt that my greatest asset was not my physical ability, it was my mental ability.
334 | A trophy carries dust. Memories last forever.
335 | You have to do something in your life that is honorable and not cowardly if you are to live in peace with yourself.
336 | A baseball player holding two baseballs during a New York Yankees practice
337 | There may be people that have more talent than you, but theres no excuse for anyone to work harder than you do.
338 | Baseball is the only field of endeavor where a man can succeed three times out of ten and be considered a good performer.
339 | One man practicing sportsmanship is far better than 50 preaching it.
340 | The five S’s of sports training are: stamina, speed, strength, skill, and spirit; but the greatest of these is spirit.
341 | An athlete cannot run with money in his pockets. He must run with hope in his heart and dreams in his head.
342 | Somewhere behind the athlete you’ve become and the hours of practice and the coaches who have pushed you is a little girl who fell in love with the game and never looked back… play for her.
343 | Two blue lanes on a 100 mete sprint track
344 | What is bravery, without a dash of recklessness?
345 | Someday you’re bound to lose everything. Everybody around you will be gone.
346 | Video Games Ruined My Life. Good Thing I Have Two More.
347 | I Just Go To Play Whatever The Game Is In Front Of Me.
348 | Know the Rules of the Game, You Must Be Educated.
349 | Good! Now we can fight as warriors. Hand-to-hand, it is the basis of all combat. Only a fool trusts his life to a weapon.
350 | There are two ways of arguing with a woman, and neither one works.
351 | Had to be me… Someone else might have got it wrong.
352 | I don’t need a weapon; my friends are my power! –
353 | The cake is a lie
354 | The right man in the wrong place can make all the difference in the world.
355 | FINISH HIM!
356 | Would you kindly… – Bioshock
357 | You can’t break a man the way you break a dog or a horse. The harder you beat a man, the taller he stands.
358 | War…war never changes – Fallout
359 | You require more vespene gas and Not Enough Minerals .
360 | Frostmourne hungers.
361 | Only a mind free of impediments is capable of grasping the chaotic beauty of the world.
362 | We are all our own worst enemy. But also, our best teacher.
363 | What is a man but the sum of his memories? We are the stories we live, the tales we tell ourselves.
364 | You Have Died.
365 | Do more of what makes you happy.
366 | I have come to retrieve my power, you can’t handle it – Vergil
367 | Tonight, I feast on the flesh of fools.
368 | I would say I’m casual gamer, I’m not hardcore.
369 | Kept you waiting, huh?
--------------------------------------------------------------------------------
/input/cookies.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/input/cookies.txt
--------------------------------------------------------------------------------
/input/proxies.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/input/proxies.txt
--------------------------------------------------------------------------------
/input/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Generator": {
3 | "capmonster_key": "",
4 | "random_bio": true,
5 | "use_proxy": true
6 |
7 | },
8 | "aio": {
9 | "nothin_yet": true
10 | }
11 | }
--------------------------------------------------------------------------------
/main.py:
--------------------------------------------------------------------------------
1 | # Author : Hazza3100
2 | # Github : https://github.com/Hazza3100
3 | # Description: Replit Aio
4 |
5 | try:
6 | import pystyle, os, re, time, base64, string, random, requests, threading, pkg_resources, json
7 | from sys import stdout
8 | from os.path import isfile, join
9 | from PyMailGw import MailGwApi
10 | from capmonster_python import HCaptchaTask
11 | except ImportError:
12 | import subprocess, pkg_resources
13 | from sys import executable
14 |
15 | subprocess.check_call(
16 | [
17 | executable,
18 | "-m",
19 | "pip",
20 | "install",
21 | *{"capmonster_python", "pystyle", "requests", "PyMailGw"}
22 | - {pkg.key for pkg in pkg_resources.working_set},
23 | ]
24 | )
25 | finally:
26 | import pystyle, os, re, time, base64, string, random, requests, threading, pkg_resources, json
27 | from sys import stdout
28 | from os.path import isfile, join
29 | from PyMailGw import MailGwApi
30 | from capmonster_python import HCaptchaTask
31 |
32 | version = "3"
33 |
34 |
35 | class Fore:
36 | BLACK = "\033[30m"
37 | RED = "\033[31m"
38 | GREEN = "\033[32m"
39 | YELLOW = "\033[33m"
40 | BLUE = "\033[34m"
41 | MAGENTA = "\033[35m"
42 | CYAN = "\033[36m"
43 | WHITE = "\033[37m"
44 | UNDERLINE = "\033[4m"
45 | RESET = "\033[0m"
46 |
47 | ver_check = requests.get(
48 | "https://raw.githubusercontent.com/Hazza3100/ReplitAio/main/version.txt"
49 | ).text
50 | if version in ver_check:
51 | status = "Latest"
52 | else:
53 | status = "OUTDATED"
54 |
55 | sem = threading.Semaphore(200)
56 |
57 | class config:
58 | with open("input/settings.json") as f:
59 | cfg = json.load(f)
60 | capmonster_key = cfg["Generator"]["capmonster_key"]
61 | random_bio = cfg["Generator"]["random_bio"]
62 | use_proxy = cfg["Generator"]["use_proxy"]
63 |
64 | class stats:
65 | genned = 0
66 | updated = 0
67 | errors = 0
68 |
69 | # Gen
70 |
71 | api = MailGwApi(proxy=None, timeout=30)
72 |
73 | def get_inbox():
74 | while True:
75 | time.sleep(5)
76 | for mail in api.fetch_inbox():
77 | content = api.get_message_content(mail["id"])
78 | verify_link = re.findall(r":\s+(\S+)", content)[1]
79 | return verify_link
80 |
81 | class Generator:
82 | def gen():
83 | try:
84 | # username = "".join(random.choices(string.ascii_letters + string.digits, k=9))
85 |
86 | proxy = open("input/proxies.txt", "r").read().splitlines()
87 | proxy1 = random.choice(proxy)
88 | proxies = {"http": f"http://{proxy1}", "https": f"http://{proxy1}"}
89 | email = api.get_mail()
90 | us_data = open("input/usernames.txt", "r").read().splitlines()
91 | user = random.choice(us_data)
92 |
93 | username = user + "".join(
94 | random.choices(string.ascii_letters + string.digits, k=3)
95 | )
96 | password = (
97 | "".join(random.choices(string.ascii_letters + string.digits, k=7))
98 | + "H8_"
99 | )
100 |
101 | print(f"{Fore.YELLOW} Solving captcha...{Fore.RESET}\n")
102 | capmonster = HCaptchaTask(config.capmonster_key)
103 |
104 | task_id = capmonster.create_task(
105 | "https://replit.com/signup", "a20d9b66-6747-404a-9393-c449c4611661"
106 | )
107 |
108 | result = capmonster.join_task_result(task_id)
109 | hcaptcha_token = result.get("gRecaptchaResponse")
110 | print(f"{Fore.LIGHTBLUE_EX} Captcha Solved...{Fore.RESET}\n")
111 |
112 | headers = {
113 | "authority": "replit.com",
114 | "accept": "application/json",
115 | "accept-language": "en-GB,en;q=0.9",
116 | "origin": "https://replit.com",
117 | "referer": "https://replit.com/signup?from=landing",
118 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
119 | "sec-ch-ua-mobile": "?0",
120 | "sec-ch-ua-platform": '"Windows"',
121 | "sec-fetch-dest": "empty",
122 | "sec-fetch-mode": "cors",
123 | "sec-fetch-site": "same-origin",
124 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
125 | "x-requested-with": "XMLHttpRequest",
126 | }
127 |
128 | json = {
129 | "email": email,
130 | "username": username,
131 | "password": password,
132 | "teacher": False,
133 | "organization": "",
134 | "hCaptchaResponse": hcaptcha_token,
135 | "hCaptchaSiteKey": "a20d9b66-6747-404a-9393-c449c4611661",
136 | "source": "explicit",
137 | }
138 | if config.use_proxy == True:
139 | r = requests.post(
140 | url = "https://replit.com/signup",
141 | headers = headers,
142 | json = json,
143 | proxies = proxies,
144 | )
145 | if config.use_proxy == False:
146 | r = requests.post(
147 | "https://replit.com/signup", headers=headers, json=json
148 | )
149 | stats.genned += 1
150 | cookies = r.headers["set-cookie"]
151 | s_cookie = cookies.split(";")[4]
152 | cookie = s_cookie.split(", ")[1]
153 | print(f"{Fore.GREEN} [+] Generated{Fore.RESET} ({stats.genned})\n")
154 | open("out/cookies.txt", "a").write(f"{cookie}\n")
155 | open("out/accounts.txt", "a").write(f"{email}:{password}\n")
156 |
157 | pictures = [
158 | f for f in os.listdir("avatars/") if isfile(join("avatars/", f))
159 | ]
160 | random_pic = random.choice(pictures)
161 |
162 | with open(f"avatars/{random_pic}", "rb") as image_file:
163 | encoded_string = base64.b64encode(image_file.read())
164 |
165 | headers_get_id = {
166 | "authority": "replit.com",
167 | "accept": "application/json",
168 | "accept-language": "en-GB,en;q=0.9",
169 | "cookie": cookie,
170 | "origin": "https://replit.com",
171 | "referer": "https://replit.com/account",
172 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
173 | "sec-ch-ua-mobile": "?0",
174 | "sec-ch-ua-platform": '"Windows"',
175 | "sec-fetch-dest": "empty",
176 | "sec-fetch-mode": "cors",
177 | "sec-fetch-site": "same-origin",
178 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
179 | "x-requested-with": "XMLHttpRequest",
180 | }
181 |
182 | json_get_id = {
183 | "image": f"data:image/png;base64,{(encoded_string.decode('utf-8'))}",
184 | "context": "profile-image",
185 | }
186 |
187 | r = requests.post(
188 | "https://replit.com/data/images/upload",
189 | headers=headers_get_id,
190 | json=json_get_id,
191 | ) # get upload id
192 | _id = r.json()["id"]
193 |
194 | headers_change = {
195 | "authority": "replit.com",
196 | "accept": "*/*",
197 | "accept-language": "en-GB,en;q=0.9",
198 | "cookie": cookie,
199 | "origin": "https://replit.com",
200 | "referer": "https://replit.com/account",
201 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
202 | "sec-ch-ua-mobile": "?0",
203 | "sec-ch-ua-platform": '"Windows"',
204 | "sec-fetch-dest": "empty",
205 | "sec-fetch-mode": "cors",
206 | "sec-fetch-site": "same-origin",
207 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
208 | "x-requested-with": "XMLHttpRequest",
209 | }
210 |
211 | json_change = [
212 | {
213 | "operationName": "AccountProfileCurrentUserUpdate",
214 | "variables": {
215 | "input": {
216 | "profileImageId": _id,
217 | },
218 | },
219 | "query": "mutation AccountProfileCurrentUserUpdate($input: UpdateCurrentUserInput!) {\n updateCurrentUser(input: $input) {\n id\n ...AccountProfileCurrentUser\n __typename\n }\n}\n\nfragment AccountProfileCurrentUser on CurrentUser {\n id\n username\n canUpdateUsername: canUpdate(column: USERNAME)\n firstName\n lastName\n bio\n hasPrivacyRole\n hasProfileImage\n image\n isSubscribed\n url\n __typename\n}\n",
220 | },
221 | ]
222 |
223 | r1 = requests.post(
224 | url = "https://replit.com/graphql",
225 | headers = headers_change,
226 | json = json_change
227 | )
228 |
229 | headers_bio = {
230 | "authority": "replit.com",
231 | "accept": "*/*",
232 | "accept-language": "en-GB,en;q=0.9",
233 | "cookie": cookie,
234 | "origin": "https://replit.com",
235 | "referer": "https://replit.com/account",
236 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
237 | "sec-ch-ua-mobile": "?0",
238 | "sec-ch-ua-platform": '"Windows"',
239 | "sec-fetch-dest": "empty",
240 | "sec-fetch-mode": "cors",
241 | "sec-fetch-site": "same-origin",
242 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
243 | "x-requested-with": "XMLHttpRequest",
244 | }
245 |
246 | random_bios = [
247 | "I like to code",
248 | "I know a little bit of python",
249 | "I know a little bit of js",
250 | "I prefer not to use JavaScript",
251 | "Normally I just watch youtube lol",
252 | ]
253 |
254 | if config.random_bio == True:
255 | bio = random.choice(random_bios)
256 | if config.random_bio == False:
257 | bios = open("input/bios.txt", "r").read().splitlines()
258 | bio = random.choice(bios)
259 |
260 | name = requests.get("http://names.drycodes.com/10").json()[0]
261 | first_name = name.split("_")[0]
262 | last_name = name.split("_")[1]
263 |
264 | json_bio = [
265 | {
266 | "operationName": "AccountProfileCurrentUserUpdate",
267 | "variables": {
268 | "input": {
269 | "firstName": first_name,
270 | "lastName": last_name,
271 | "bio": bio,
272 | },
273 | },
274 | "query": "mutation AccountProfileCurrentUserUpdate($input: UpdateCurrentUserInput!) {\n updateCurrentUser(input: $input) {\n id\n ...AccountProfileCurrentUser\n __typename\n }\n}\n\nfragment AccountProfileCurrentUser on CurrentUser {\n id\n username\n canUpdateUsername: canUpdate(column: USERNAME)\n firstName\n lastName\n bio\n hasPrivacyRole\n hasProfileImage\n image\n isSubscribed\n url\n __typename\n}\n",
275 | },
276 | ]
277 | r = requests.post(
278 | url = "https://replit.com/graphql",
279 | headers = headers_bio,
280 | json = json_bio
281 | )
282 |
283 | headers_verify = {
284 | "authority": "replit.com",
285 | "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9",
286 | "accept-language": "en-GB,en;q=0.9",
287 | "cookie": cookie,
288 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
289 | "sec-ch-ua-mobile": "?0",
290 | "sec-ch-ua-platform": '"Windows"',
291 | "sec-fetch-dest": "document",
292 | "sec-fetch-mode": "navigate",
293 | "sec-fetch-site": "none",
294 | "sec-fetch-user": "?1",
295 | "service-worker-navigation-preload": "true",
296 | "upgrade-insecure-requests": "1",
297 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
298 | }
299 |
300 | r = requests.get(get_inbox(), headers=headers_verify)
301 |
302 | headers_create = {
303 | "authority": "replit.com",
304 | "accept": "*/*",
305 | "accept-language": "en-GB,en;q=0.9",
306 | "cookie": cookie,
307 | "origin": "https://replit.com",
308 | "referer": f"https://replit.com/@{username}",
309 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
310 | "sec-ch-ua-mobile": "?0",
311 | "sec-ch-ua-platform": '"Windows"',
312 | "sec-fetch-dest": "empty",
313 | "sec-fetch-mode": "cors",
314 | "sec-fetch-site": "same-origin",
315 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
316 | "x-requested-with": "XMLHttpRequest",
317 | }
318 |
319 | title = [
320 | "My First repl",
321 | "New Project",
322 | "I am starting over",
323 | "I will begin here",
324 | "Probs never gonna finish this",
325 | "How is this?",
326 | ]
327 |
328 | random_title = random.choice(title)
329 |
330 | json_create = [
331 | {
332 | "operationName": "CreateReplForm2CreateRepl",
333 | "variables": {
334 | "input": {
335 | "title": random_title,
336 | "folderId": None,
337 | "isPrivate": False,
338 | "originId": "8d4142a6-b4ad-4e1c-940b-15b99773aa04",
339 | "replReleaseId": "bfc596de-af6e-4f9e-b0c0-d3747cb8ddef",
340 | },
341 | "isTitleAutoGenerated": False,
342 | },
343 | "query": "mutation CreateReplForm2CreateRepl($input: CreateReplInput!, $isTitleAutoGenerated: Boolean!) {\n createRepl(input: $input, isTitleAutoGenerated: $isTitleAutoGenerated) {\n ... on Repl {\n ...CreateReplForm2Repl\n __typename\n }\n ... on UserError {\n message\n __typename\n }\n __typename\n }\n}\n\nfragment CreateReplForm2Repl on Repl {\n id\n ...TemplateSelector2Repl\n __typename\n}\n\nfragment TemplateSelector2Repl on Repl {\n id\n url\n title\n iconUrl\n templateLabel\n nixedLanguage\n isPrivate\n isRenamed\n language\n likeCount\n description(plainText: true)\n deployment {\n id\n activeRelease {\n id\n __typename\n }\n __typename\n }\n owner {\n ... on User {\n id\n username\n __typename\n }\n ... on Team {\n id\n username\n __typename\n }\n __typename\n }\n ...TemplateReplCardRepl\n __typename\n}\n\nfragment TemplateReplCardRepl on Repl {\n id\n iconUrl\n templateCategory\n title\n description(plainText: true)\n publicReleasesForkCount\n templateLabel\n likeCount\n url\n owner {\n ... on User {\n id\n ...TemplateReplCardFooterUser\n __typename\n }\n ... on Team {\n id\n ...TemplateReplCardFooterTeam\n __typename\n }\n __typename\n }\n __typename\n}\n\nfragment TemplateReplCardFooterUser on User {\n id\n username\n image\n url\n __typename\n}\n\nfragment TemplateReplCardFooterTeam on Team {\n id\n username\n image\n url\n __typename\n}\n",
344 | },
345 | ]
346 |
347 | r = requests.post(
348 | "https://replit.com/graphql",
349 | headers = headers_create,
350 | json = json_create
351 | )
352 |
353 | headers_online = {
354 | "authority": "replit.com",
355 | "accept": "*/*",
356 | "accept-language": "en-GB,en;q=0.9",
357 | "cookie": "connect.sid=s%3A7zOeFa5vO0BTdxt40pymu6f5OfVmpeLG.IxMF8ZzLjgMTvCn8NEZLSO%2B7TwVwq54ZXnr5DJ7M5mA",
358 | "origin": "https://replit.com",
359 | "referer": f"https://replit.com/@{username}",
360 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
361 | "sec-ch-ua-mobile": "?0",
362 | "sec-ch-ua-platform": '"Windows"',
363 | "sec-fetch-dest": "empty",
364 | "sec-fetch-mode": "cors",
365 | "sec-fetch-site": "same-origin",
366 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
367 | "x-requested-with": "XMLHttpRequest",
368 | }
369 |
370 | json_online = [
371 | {
372 | "operationName": "UpdateUserPrivacyPreferences",
373 | "variables": {
374 | "input": {
375 | "show_presence": "when_online",
376 | },
377 | },
378 | "query": "mutation UpdateUserPrivacyPreferences($input: UpdateUserPrivacyPreferencesInput!) {\n updateUserPrivacyPreferences(input: $input) {\n __typename\n ... on CurrentUser {\n id\n showPresence\n __typename\n }\n ... on UserError {\n message\n __typename\n }\n ... on UnauthorizedError {\n message\n __typename\n }\n }\n}\n",
379 | },
380 | ]
381 |
382 | r = requests.post(
383 | "https://replit.com/graphql",
384 | headers = headers_online,
385 | json = json_online
386 | )
387 | stats.updated += 1
388 | print(f"{Fore.GREEN}[+] Updated Accounts{Fore.RESET}\n")
389 | except:
390 | pass
391 |
392 |
393 | def get_id(username):
394 |
395 | headers_get_id = {
396 | "authority": "replit.com",
397 | "accept": "*/*",
398 | "accept-language": "en-GB,en;q=0.9",
399 | "origin": "https://replit.com",
400 | "referer": f"https://replit.com/@{username}",
401 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
402 | "sec-ch-ua-mobile": "?0",
403 | "sec-ch-ua-platform": '"Windows"',
404 | "sec-fetch-dest": "empty",
405 | "sec-fetch-mode": "cors",
406 | "sec-fetch-site": "same-origin",
407 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
408 | "x-requested-with": "XMLHttpRequest",
409 | }
410 |
411 | json_get_id = [
412 | {
413 | "operationName": "ProfilePublicRepls",
414 | "variables": {
415 | "username": "gf",
416 | "search": "",
417 | },
418 | "query": "query ProfilePublicRepls($username: String!, $after: String, $search: String) {\n user: userByUsername(username: $username) {\n id\n profileRepls: profileRepls(after: $after, search: $search) {\n items {\n id\n ...ProfilePublicReplsRepl\n __typename\n }\n pageInfo {\n hasNextPage\n nextCursor\n __typename\n }\n __typename\n }\n __typename\n }\n}\n\nfragment ProfilePublicReplsRepl on Repl {\n id\n description(plainText: true)\n isOwner\n pinnedToProfile\n timeCreated\n title\n url\n iconUrl\n ...ReplLinkRepl\n user {\n id\n ...UserLinkUser\n __typename\n }\n templateInfo {\n label\n iconUrl\n __typename\n }\n multiplayers {\n id\n image\n username\n __typename\n }\n __typename\n}\n\nfragment ReplLinkRepl on Repl {\n id\n url\n nextPagePathname\n __typename\n}\n\nfragment UserLinkUser on User {\n id\n url\n username\n __typename\n}\n",
419 | },
420 | {
421 | "operationName": "LayoutSiteBanner",
422 | "variables": {},
423 | "query": "query LayoutSiteBanner {\n siteBanner {\n id\n message\n __typename\n }\n}\n",
424 | },
425 | ]
426 |
427 | user_id = requests.post(
428 | "https://replit.com/graphql", headers=headers_get_id, json=json_get_id
429 | ).json()[0]["data"]["user"]["id"]
430 | return user_id
431 |
432 |
433 | class Follow:
434 | def follow(username):
435 |
436 | user_id = get_id(username)
437 | data = open("input/cookies.txt", "r").read().splitlines()
438 | cookie = random.choice(data)
439 |
440 | headers_follow = {
441 | "authority": "replit.com",
442 | "accept": "*/*",
443 | "accept-language": "en-GB,en;q=0.9",
444 | "cookie": cookie,
445 | "origin": "https://replit.com",
446 | "referer": f"https://replit.com/@{username}",
447 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
448 | "sec-ch-ua-mobile": "?0",
449 | "sec-ch-ua-platform": '"Windows"',
450 | "sec-fetch-dest": "empty",
451 | "sec-fetch-mode": "cors",
452 | "sec-fetch-site": "same-origin",
453 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
454 | "x-requested-with": "XMLHttpRequest",
455 | }
456 |
457 | json_follow = [
458 | {
459 | "operationName": "SetFollowing",
460 | "variables": {
461 | "input": {
462 | "targetUserId": user_id,
463 | "shouldFollow": True,
464 | },
465 | },
466 | "query": "mutation SetFollowing($input: setFollowingInput!) {\n setFollowing(input: $input) {\n ... on FollowResult {\n targetUser {\n id\n isFollowedByCurrentUser\n followerCount\n __typename\n }\n __typename\n }\n ... on NotFoundError {\n __typename\n message\n }\n ... on UnauthorizedError {\n __typename\n message\n }\n ... on UserError {\n __typename\n message\n }\n __typename\n }\n}\n",
467 | },
468 | ]
469 |
470 | r = requests.post(
471 | url = "https://replit.com/graphql",
472 | headers = headers_follow,
473 | json = json_follow
474 | )
475 | print(r.text)
476 | if r.status_code == 200:
477 | print(f"{Fore.GREEN}[+] {Fore.RESET}Follow\n")
478 | else:
479 | print(f"{Fore.RED}[-] {Fore.RESET}Error\n")
480 |
481 | def unfollow(username):
482 |
483 | user_id = get_id(username)
484 | data = open("input/cookies.txt", "r").read().splitlines()
485 | cookie = random.choice(data)
486 |
487 | headers_unfollow = {
488 | "authority": "replit.com",
489 | "accept": "*/*",
490 | "accept-language": "en-GB,en;q=0.9",
491 | "cookie": cookie,
492 | "origin": "https://replit.com",
493 | "referer": f"https://replit.com/@{username}",
494 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
495 | "sec-ch-ua-mobile": "?0",
496 | "sec-ch-ua-platform": '"Windows"',
497 | "sec-fetch-dest": "empty",
498 | "sec-fetch-mode": "cors",
499 | "sec-fetch-site": "same-origin",
500 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
501 | "x-requested-with": "XMLHttpRequest",
502 | }
503 |
504 | json_unfollow = [
505 | {
506 | "operationName": "SetFollowing",
507 | "variables": {
508 | "input": {
509 | "targetUserId": user_id,
510 | "shouldFollow": False,
511 | },
512 | },
513 | "query": "mutation SetFollowing($input: setFollowingInput!) {\n setFollowing(input: $input) {\n ... on FollowResult {\n targetUser {\n id\n isFollowedByCurrentUser\n followerCount\n __typename\n }\n __typename\n }\n ... on NotFoundError {\n __typename\n message\n }\n ... on UnauthorizedError {\n __typename\n message\n }\n ... on UserError {\n __typename\n message\n }\n __typename\n }\n}\n",
514 | },
515 | ]
516 |
517 | r = requests.post(
518 | "https://replit.com/graphql", headers=headers_unfollow, json=json_unfollow
519 | )
520 | print(r.text)
521 | if r.status_code == 200:
522 | print(f"{Fore.GREEN}[+] {Fore.RESET}Follow\n")
523 | else:
524 | print(f"{Fore.RED}[-] {Fore.RESET}Error\n")
525 |
526 |
527 | class Extra:
528 | def forker(link):
529 |
530 | cookies = open("cookies.txt", "r").read().splitlines()
531 | cookie = random.choice(cookies)
532 |
533 | headers_fork = {
534 | "authority": "replit.com",
535 | "accept": "*/*",
536 | "accept-language": "en-GB,en;q=0.9",
537 | "cookie": cookie,
538 | "origin": "https://replit.com",
539 | "referer": link,
540 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
541 | "sec-ch-ua-mobile": "?0",
542 | "sec-ch-ua-platform": '"Windows"',
543 | "sec-fetch-dest": "empty",
544 | "sec-fetch-mode": "cors",
545 | "sec-fetch-site": "same-origin",
546 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
547 | "x-requested-with": "XMLHttpRequest",
548 | }
549 |
550 | json_fork = [
551 | {
552 | "operationName": "ForkReplCreateRepl",
553 | "variables": {
554 | "input": {
555 | "originId": "91df81e9-f59e-41ce-bcaa-3d44aebfc0df",
556 | "gitRemoteUrl": "",
557 | },
558 | },
559 | "query": "mutation ForkReplCreateRepl($input: CreateReplInput!) {\n createRepl(input: $input) {\n ... on Repl {\n id\n url\n isPrivate\n language\n origin {\n id\n isOwner\n __typename\n }\n source {\n release {\n id\n repl {\n id\n owner {\n ... on User {\n id\n username\n __typename\n }\n ... on Team {\n id\n username\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n ... on UserError {\n message\n __typename\n }\n __typename\n }\n}\n",
560 | },
561 | ]
562 |
563 | r = requests.post(
564 | "https://replit.com/graphql", headers=headers_fork, json=json_fork
565 | )
566 | if r.status_code == 200:
567 | print(f"{Fore.GREEN}Forked {Fore.RESET}{link}")
568 | else:
569 | print("Error")
570 |
571 | def run(repl_id, link):
572 |
573 | cookies = open("cookies.txt", "r").read().splitlines()
574 | cookie = random.choice(cookies)
575 |
576 | headers_run = {
577 | "authority": "replit.com",
578 | "accept": "*/*",
579 | "accept-language": "en-GB,en;q=0.9",
580 | "cookie": cookie,
581 | "origin": "https://replit.com",
582 | "referer": link,
583 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
584 | "sec-ch-ua-mobile": "?0",
585 | "sec-ch-ua-platform": '"Windows"',
586 | "sec-fetch-dest": "empty",
587 | "sec-fetch-mode": "cors",
588 | "sec-fetch-site": "same-origin",
589 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
590 | "x-requested-with": "XMLHttpRequest",
591 | }
592 |
593 | json_run = [
594 | {
595 | "operationName": "UserReplViewCreateReplRun",
596 | "variables": {
597 | "replId": repl_id,
598 | },
599 | "query": "mutation UserReplViewCreateReplRun($replId: String!) {\n createReplRun(replId: $replId) {\n ... on Repl {\n id\n runCount\n __typename\n }\n __typename\n }\n}\n",
600 | },
601 | ]
602 |
603 | r = requests.post(
604 | "https://replit.com/graphql", headers=headers_run, json=json_run
605 | )
606 | if r.status_code == 200:
607 | print(f"{Fore.GREEN}+{Fore.RESET}\n")
608 | else:
609 | print(f"{Fore.RED}Error{Fore.RESET}\n")
610 |
611 | def report(username, report_reason):
612 |
613 | cookies = open("input/cookies.txt", "r").read().splitlines()
614 | cookie = random.choice(cookies)
615 |
616 | user_id = get_id(username)
617 |
618 | headers_report = {
619 | "authority": "replit.com",
620 | "accept": "*/*",
621 | "accept-language": "en-GB,en;q=0.9",
622 | "cookie": cookie,
623 | "origin": "https://replit.com",
624 | "referer": f"https://replit.com/@{username}",
625 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
626 | "sec-ch-ua-mobile": "?0",
627 | "sec-ch-ua-platform": '"Windows"',
628 | "sec-fetch-dest": "empty",
629 | "sec-fetch-mode": "cors",
630 | "sec-fetch-site": "same-origin",
631 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
632 | "x-requested-with": "XMLHttpRequest",
633 | }
634 |
635 | json_report = [
636 | {
637 | "operationName": "ReportUser",
638 | "variables": {
639 | "reportedUserId": user_id,
640 | "reason": report_reason,
641 | },
642 | "query": "mutation ReportUser($reportedUserId: Int, $reason: String!) {\n createBoardReport(reportedUserId: $reportedUserId, reason: $reason) {\n __typename\n id\n reportedUser {\n id\n __typename\n }\n }\n}\n",
643 | },
644 | ]
645 |
646 | r = requests.post(
647 | "https://replit.com/graphql", headers=headers_report, json=json_report
648 | )
649 | if r.status_code == 200:
650 | print(f"{Fore.GREEN}+{Fore.RESET}\n")
651 | else:
652 | print(f"{Fore.RED}Error{Fore.RESET}\n")
653 |
654 | def check_user(string_length):
655 |
656 | with sem:
657 | proxy = open("input/proxies.txt", "r").read().splitlines()
658 | pr = random.choice(proxy)
659 | proxies = {"http": f"http://{pr}", "https": f"http://{pr}"}
660 | strings = "".join(
661 | random.SystemRandom().choice(string.ascii_lowercase)
662 | for _ in range(string_length)
663 | )
664 | username = strings
665 |
666 | headers = {
667 | "authority": "replit.com",
668 | "accept": "application/json",
669 | "accept-language": "en-GB,en;q=0.9",
670 | "origin": "https://replit.com",
671 | "referer": "https://replit.com/signup?from=landing",
672 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
673 | "sec-ch-ua-mobile": "?0",
674 | "sec-ch-ua-platform": '"Windows"',
675 | "sec-fetch-dest": "empty",
676 | "sec-fetch-mode": "cors",
677 | "sec-fetch-site": "same-origin",
678 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
679 | "x-requested-with": "XMLHttpRequest",
680 | }
681 |
682 | json = {
683 | "username": username,
684 | }
685 |
686 | r = requests.post(
687 | "https://replit.com/data/user/exists",
688 | headers=headers,
689 | json=json,
690 | proxies=proxies,
691 | )
692 | if "false" in r.text:
693 | print(f"{Fore.MAGENTA}Available |{Fore.RESET} {username}")
694 | open("out/available.txt", "a").write(f"{username}\n")
695 | else:
696 | print(f"{Fore.MAGENTA}Taken |{Fore.RESET} {username}")
697 |
698 | def banner_change():
699 |
700 | cookies = open("input/cookies.txt", "r").read().splitlines()
701 | cookie = random.choice(cookies)
702 |
703 | banners = [f for f in os.listdir("banners/") if isfile(join("banners/", f))]
704 | random_banner = random.choice(banners)
705 |
706 | with open(f"banners/{random_banner}", "rb") as image_file:
707 | encoded_string = base64.b64encode(image_file.read())
708 |
709 | headers_id = {
710 | "authority": "replit.com",
711 | "accept": "application/json",
712 | "accept-language": "en-GB,en;q=0.9",
713 | "cookie": cookie,
714 | "origin": "https://replit.com",
715 | "referer": "https://replit.com/@account",
716 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
717 | "sec-ch-ua-mobile": "?0",
718 | "sec-ch-ua-platform": '"Windows"',
719 | "sec-fetch-dest": "empty",
720 | "sec-fetch-mode": "cors",
721 | "sec-fetch-site": "same-origin",
722 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
723 | "x-requested-with": "XMLHttpRequest",
724 | }
725 |
726 | json_id = {
727 | "image": f"data:image/png;base64,{(encoded_string.decode('utf-8'))}",
728 | "context": "profile-cover-image",
729 | }
730 |
731 | r = requests.post(
732 | "https://replit.com/data/images/upload", headers=headers_id, json=json_id
733 | )
734 | upload_id = r.json()["id"]
735 |
736 | headers_up = {
737 | "authority": "replit.com",
738 | "accept": "*/*",
739 | "accept-language": "en-GB,en;q=0.9",
740 | "cookie": cookie,
741 | "origin": "https://replit.com",
742 | "referer": "https://replit.com/account",
743 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
744 | "sec-ch-ua-mobile": "?0",
745 | "sec-ch-ua-platform": '"Windows"',
746 | "sec-fetch-dest": "empty",
747 | "sec-fetch-mode": "cors",
748 | "sec-fetch-site": "same-origin",
749 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
750 | "x-requested-with": "XMLHttpRequest",
751 | }
752 |
753 | json_up = [
754 | {
755 | "operationName": "CoverImageUpdate",
756 | "variables": {
757 | "input": {
758 | "imageId": upload_id,
759 | "offsetY": 0,
760 | },
761 | },
762 | "query": "mutation CoverImageUpdate($input: SetUserCoverImageInput!) {\n setUserCoverImage(input: $input) {\n ... on CurrentUser {\n id\n ...CoverImageCurrentUser\n __typename\n }\n __typename\n }\n}\n\nfragment CoverImageCurrentUser on CurrentUser {\n id\n coverImage {\n url\n offsetY\n __typename\n }\n __typename\n}\n",
763 | },
764 | ]
765 |
766 | r = requests.post(
767 | "https://replit.com/graphql", headers=headers_up, json=json_up
768 | )
769 | if r.status_code == 200:
770 | print(f"{Fore.GREEN} Updated{Fore.RESET}")
771 | else:
772 | print(f"{Fore.RED} Error{Fore.RESET}")
773 |
774 | def pfp_change():
775 |
776 | cookies = open("input/cookies.txt", "r").read().splitlines()
777 | cookie = random.choice(cookies)
778 |
779 | pictures = [f for f in os.listdir("avatars/") if isfile(join("avatars/", f))]
780 | random_pic = random.choice(pictures)
781 |
782 | with open(f"avatars/{random_pic}", "rb") as image_file:
783 | encoded_string = base64.b64encode(image_file.read())
784 |
785 | headers_get_id = {
786 | "authority": "replit.com",
787 | "accept": "application/json",
788 | "accept-language": "en-GB,en;q=0.9",
789 | "cookie": cookie,
790 | "origin": "https://replit.com",
791 | "referer": "https://replit.com/account",
792 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
793 | "sec-ch-ua-mobile": "?0",
794 | "sec-ch-ua-platform": '"Windows"',
795 | "sec-fetch-dest": "empty",
796 | "sec-fetch-mode": "cors",
797 | "sec-fetch-site": "same-origin",
798 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
799 | "x-requested-with": "XMLHttpRequest",
800 | }
801 |
802 | json_get_id = {
803 | "image": f"data:image/png;base64,{(encoded_string.decode('utf-8'))}",
804 | "context": "profile-image",
805 | }
806 |
807 | r = requests.post(
808 | "https://replit.com/data/images/upload",
809 | headers=headers_get_id,
810 | json=json_get_id,
811 | )
812 | _id = r.json()["id"]
813 |
814 | headers_pfp = {
815 | "authority": "replit.com",
816 | "accept": "*/*",
817 | "accept-language": "en-GB,en;q=0.9",
818 | "cookie": cookie,
819 | "origin": "https://replit.com",
820 | "referer": "https://replit.com/account",
821 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
822 | "sec-ch-ua-mobile": "?0",
823 | "sec-ch-ua-platform": '"Windows"',
824 | "sec-fetch-dest": "empty",
825 | "sec-fetch-mode": "cors",
826 | "sec-fetch-site": "same-origin",
827 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
828 | "x-requested-with": "XMLHttpRequest",
829 | }
830 |
831 | json_pfp = [
832 | {
833 | "operationName": "AccountProfileCurrentUserUpdate",
834 | "variables": {
835 | "input": {
836 | "profileImageId": _id,
837 | },
838 | },
839 | "query": "mutation AccountProfileCurrentUserUpdate($input: UpdateCurrentUserInput!) {\n updateCurrentUser(input: $input) {\n id\n ...AccountProfileCurrentUser\n __typename\n }\n}\n\nfragment AccountProfileCurrentUser on CurrentUser {\n id\n username\n canUpdateUsername: canUpdate(column: USERNAME)\n firstName\n lastName\n bio\n hasPrivacyRole\n hasProfileImage\n image\n isSubscribed\n url\n __typename\n}\n",
840 | },
841 | ]
842 |
843 | r1 = requests.post(
844 | "https://replit.com/graphql", headers=headers_pfp, json=json_pfp
845 | )
846 | if r1.status_code == 200:
847 | print(f"{Fore.GREEN} Updated{Fore.RESET}")
848 | else:
849 | print(f"{Fore.RED} Error{Fore.RESET}")
850 |
851 | def bio_change(bio):
852 |
853 | cookies = open("input/cookies.txt", "r").read().splitlines()
854 | cookie = random.choice(cookies)
855 |
856 | headers_bio = {
857 | "authority": "replit.com",
858 | "accept": "*/*",
859 | "accept-language": "en-GB,en;q=0.9",
860 | "cookie": cookie,
861 | "origin": "https://replit.com",
862 | "referer": "https://replit.com/account",
863 | "sec-ch-ua": '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
864 | "sec-ch-ua-mobile": "?0",
865 | "sec-ch-ua-platform": '"Windows"',
866 | "sec-fetch-dest": "empty",
867 | "sec-fetch-mode": "cors",
868 | "sec-fetch-site": "same-origin",
869 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
870 | "x-requested-with": "XMLHttpRequest",
871 | }
872 |
873 | json_bio = [
874 | {
875 | "operationName": "AccountProfileCurrentUserUpdate",
876 | "variables": {
877 | "input": {
878 | "firstName": "",
879 | "lastName": "",
880 | "bio": bio,
881 | },
882 | },
883 | "query": "mutation AccountProfileCurrentUserUpdate($input: UpdateCurrentUserInput!) {\n updateCurrentUser(input: $input) {\n id\n ...AccountProfileCurrentUser\n __typename\n }\n}\n\nfragment AccountProfileCurrentUser on CurrentUser {\n id\n username\n canUpdateUsername: canUpdate(column: USERNAME)\n firstName\n lastName\n bio\n hasPrivacyRole\n hasProfileImage\n image\n isSubscribed\n url\n __typename\n}\n",
884 | },
885 | ]
886 |
887 | r = requests.post(
888 | "https://replit.com/graphql", headers=headers_bio, json=json_bio
889 | )
890 | if r.status_code == 200:
891 | print(f"{Fore.GREEN}Updated{Fore.RESET}")
892 | else:
893 | print(f"{Fore.RED}Error{Fore.RESET}")
894 |
895 |
896 | def title():
897 | title = pystyle.Write.Print(
898 | f"""
899 | ██████╗ ███████╗██████╗ ██╗ ██╗████████╗ █████╗ ██╗ █████╗
900 | ██╔══██╗██╔════╝██╔══██╗██║ ██║╚══██╔══╝ ██╔══██╗██║██╔══██╗
901 | ██████╔╝█████╗ ██████╔╝██║ ██║ ██║ ███████║██║██║ ██║
902 | ██╔══██╗██╔══╝ ██╔═══╝ ██║ ██║ ██║ ██╔══██║██║██║ ██║
903 | ██║ ██║███████╗██║ ███████╗██║ ██║ ██║ ██║██║╚█████╔╝
904 | ╚═╝ ╚═╝╚══════╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚════╝""",
905 | pystyle.Colors.blue_to_white,
906 | interval=0,
907 | )
908 | return title
909 |
910 |
911 | def menu():
912 | os.system("cls" if os.name == "nt" else "clear")
913 | stdout.write(str(title()).replace("None", ""))
914 | stdout.write(
915 | f"\n\n\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}0{Fore.RESET} {Fore.RED}]{Fore.RESET} Account Generator\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}1{Fore.RESET} {Fore.RED}]{Fore.RESET} Follow Bot\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}2{Fore.RESET} {Fore.RED}]{Fore.RESET} Unfollow Bot\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}3{Fore.RESET} {Fore.RED}]{Fore.RESET} Fork Bot\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}4{Fore.RESET} {Fore.RED}]{Fore.RESET} Run Bot\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}5{Fore.RESET} {Fore.RED}]{Fore.RESET} Report User\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}6{Fore.RESET} {Fore.RED}]{Fore.RESET} Username Checker\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}7{Fore.RESET} {Fore.RED}]{Fore.RESET} Banner Changer\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}8{Fore.RESET} {Fore.RED}]{Fore.RESET} Pfp Changer\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}8{Fore.RESET} {Fore.RED}]{Fore.RESET} Bio Changer\n {Fore.RED}[{Fore.RESET} {Fore.BLUE}10{Fore.RESET} {Fore.RED}]{Fore.RESET} Credits\n\n\n\n"
916 | )
917 | os.system(
918 | f"title Replit Aio ^| Made by : github.com/Hazza3100 ^| Version: {status}"
919 | )
920 | try:
921 | choice = int(
922 | input(
923 | f"{Fore.MAGENTA} [{Fore.CYAN}?{Fore.MAGENTA}] Enter Choice {Fore.CYAN}> {Fore.RESET}"
924 | )
925 | )
926 | if choice < 0 or choice > 10:
927 | print(
928 | f"{Fore.MAGENTA} [{Fore.RED}!{Fore.MAGENTA}]{Fore.RED} Invalid option{Fore.RESET}"
929 | )
930 | time.sleep(2)
931 | menu()
932 | except ValueError:
933 | print(
934 | f"{Fore.MAGENTA} [{Fore.RED}!{Fore.MAGENTA}]{Fore.RED} Invalid option{Fore.RESET}"
935 | )
936 | time.sleep(2)
937 | menu()
938 | if choice == 0:
939 | threads = input("Enter amount of threads > ")
940 | for i in range(int(threads)):
941 | threading.Thread(target=Generator.gen).start()
942 |
943 | if choice == 1:
944 | username = input("Enter username > ")
945 | threads = input("Enter amount of followers > ")
946 | for i in range(int(threads)):
947 | threading.Thread(target=Follow.follow, args=(username,)).start()
948 |
949 | if choice == 2:
950 | username = input("Enter username > ")
951 | threads = input("Enter amount of followers > ")
952 | for i in range(int(threads)):
953 | threading.Thread(target=Follow.unfollow, args=(username,)).start()
954 |
955 | if choice == 3:
956 |
957 | link = input("Enter link to fork > ")
958 | threads = input("Amount of forks > ")
959 | for i in range(int(threads)):
960 | threading.Thread(target=Extra.forker, args=(link,)).start()
961 |
962 | if choice == 4:
963 |
964 | repl_id = input("Enter repl id > ")
965 | repl_id = input("Enter repl link > ")
966 | threads = input("Amount of runs [Start with 10] > ")
967 | for i in range(int(threads)):
968 | threading.Thread(
969 | target=Extra.run,
970 | args=(
971 | repl_id,
972 | link,
973 | ),
974 | ).start()
975 |
976 | if choice == 5:
977 |
978 | username = input("Enter repl id > ")
979 | report_reason = input("Enter report reason > ")
980 | threads = input("Amount of reports > ")
981 | for i in range(int(threads)):
982 | threading.Thread(
983 | target=Extra.report,
984 | args=(
985 | username,
986 | report_reason,
987 | ),
988 | ).start()
989 |
990 | if choice == 6:
991 |
992 | string_length = input("String Length > ")
993 | threads = input("Amount to Check > ")
994 | for i in range(int(threads)):
995 | threading.Thread(target=Extra.check_user, args=(string_length,)).start()
996 |
997 | if choice == 7:
998 | threads = input("Amount to change > ")
999 | for i in range(int(threads)):
1000 | threading.Thread(target=Extra.banner_change).start()
1001 |
1002 | if choice == 8:
1003 | threads = input("Amount to change > ")
1004 | for i in range(int(threads)):
1005 | threading.Thread(target=Extra.pfp_change).start()
1006 |
1007 | if choice == 9:
1008 | bio = input("Bio to change > ")
1009 | threads = input("Amount to change > ")
1010 | for i in range(int(threads)):
1011 | threading.Thread(target=Extra.bio_change, args=(bio,)).start()
1012 |
1013 | if choice == 10:
1014 | os.system("cls" if os.name == "nt" else "clear")
1015 | stdout.write(str(title()).replace("None", ""))
1016 | stdout.write(
1017 | f"\n{Fore.MAGENTA} ╔════════════(Credits)═════════════╗\n{Fore.MAGENTA} ║ {Fore.CYAN} Made by > {Fore.MAGENTA}{Fore.CYAN}github.com/Hazza3100{Fore.MAGENTA} ║{Fore.RESET}\n{Fore.MAGENTA} ║ {Fore.CYAN} Discord >{Fore.MAGENTA}{Fore.CYAN} discord.gg/phts {Fore.MAGENTA } ║{Fore.RESET}\n{Fore.MAGENTA} ╚══════════════════════════════════╝\n"
1018 | )
1019 | time.sleep(4)
1020 | input(
1021 | f"{Fore.MAGENTA} Press enter to continue {Fore.CYAN}> {Fore.WHITE}"
1022 | )
1023 | os.system("cls" if os.name == "nt" else "clear")
1024 | menu()
1025 |
1026 |
1027 | if __name__ == "__main__":
1028 | os.system("cls" if os.name == "nt" else "clear")
1029 | menu()
1030 |
--------------------------------------------------------------------------------
/out/accounts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/out/accounts
--------------------------------------------------------------------------------
/out/available.txt:
--------------------------------------------------------------------------------
1 | rjq
2 | gyp
3 | fci
4 | qco
5 | gqk
6 | fgi
7 | guq
8 | xgc
9 | ihg
10 | ukq
11 | xrk
12 | ofk
13 | vwi
14 | npw
15 | mqd
16 | quk
17 | uoq
18 | qji
19 | ftu
20 | ieq
21 | yln
22 | iud
23 | ixp
24 | qrc
25 | jqd
26 | xwi
27 | rvf
28 | lhq
29 | zkj
30 | uow
31 | wme
32 | xfj
33 | uyz
34 | zva
35 | wmp
36 | ivl
37 | ixg
38 | uzm
39 | uhk
40 | wdk
41 | qbw
42 | dgq
43 | xpb
44 | fcj
45 | qgt
46 | gvq
47 | zvd
48 | olm
49 | yjv
50 | ynp
51 | nqk
52 | izj
53 | ivw
54 | fqz
55 | lfw
56 | uqa
57 | xdn
58 | cqn
59 | lpu
60 | xwf
61 | qva
62 | ewp
63 | qdj
64 | wgb
65 | wqv
66 | ijq
67 | uij
68 | ljv
69 | gyw
70 | qxa
71 | cvj
72 | wdz
73 | rqe
74 | lpi
75 | qbh
76 | uem
77 | tzc
78 | qyr
79 | zph
80 | nqh
81 | wpv
82 | rgq
83 | hze
84 | nqs
85 | rvy
86 | usx
87 | wfg
88 | efv
89 | gzq
90 | ydx
91 | plw
92 | hlj
93 | cke
94 | tzj
95 | txy
96 | uzj
97 | xig
98 | izg
99 | ukv
100 | xgq
101 | tpz
102 | qfq
103 | tfz
104 | zgj
105 | ylv
106 | wzf
107 | pgd
108 | mvq
109 | nxk
110 | ecx
111 | uqj
112 | euj
113 | yqd
114 | wpt
115 | wau
116 | wbe
117 | dtq
118 | xri
119 | qdu
120 | xjz
121 | ocx
122 | wmq
123 | zqv
124 | igk
125 | qjx
126 | wgh
127 | udw
128 | zvf
129 | vqg
130 | hqb
131 | zdu
132 | dhq
133 | fjt
134 | epx
135 | lwm
136 | oxh
137 | qic
138 | xfi
139 | lbz
140 | ymf
141 | xbo
142 | yvu
143 | qnu
144 | gzo
145 | wqb
146 | pxm
147 | ulb
148 | flq
149 | tqc
150 | xct
151 | kxa
152 | gjz
153 | wnv
154 | xcb
155 | xhk
156 | gxh
157 | zdi
158 | zlq
159 | wfp
160 | wqi
161 | jqy
162 | qkx
163 | wbz
164 | vuy
165 | fkv
166 | dpq
167 | gxp
168 | ygx
169 | xvd
170 | ufb
171 | xqu
172 | qqh
173 | xej
174 | gbv
175 | obl
176 | xjq
177 | wgd
178 | kyf
179 | qjd
180 | uhb
181 | wvu
182 | zhg
183 | qfe
184 | snq
185 | euq
186 | kfx
187 | rcq
188 | wct
189 | qob
190 | qsr
191 | eyr
192 | qpy
193 | fnp
194 | qbo
195 | fxj
196 | ufx
197 | fwr
198 | fxq
199 | uig
200 | ufd
201 | kqt
202 | wtu
203 | qhi
204 | juq
205 | udr
206 | oqg
207 | qhj
208 | zdt
209 | yzq
210 | owf
211 | zpu
212 | ywg
213 | iyp
214 | kpq
215 | zws
216 | vge
217 | kqo
218 | znv
219 | iwj
220 | wpp
221 | qbu
222 | uvq
223 | wfi
224 | uwm
225 | zwr
226 | xrh
227 | uvt
228 | jqu
229 | cmz
230 | xfh
231 | zgd
232 | uyc
233 | ubp
234 | xog
235 | hpi
236 | ywp
237 | gdq
238 | xck
239 | uzp
240 | jzc
241 | szj
242 | cqh
243 | zfp
244 | uqr
245 | owc
246 | vwb
247 | uyb
248 | hrf
249 | zjb
250 | uay
251 | wkq
252 | xoj
253 | rxi
254 | rfq
255 | tvf
256 | qjz
257 | fhn
258 | uyw
259 | ujx
260 | oyz
261 | uql
262 | qeo
263 | ztq
264 | wvp
265 | hpq
266 | oxj
267 | zpf
268 | ozw
269 | iym
270 | tqb
271 | iqt
272 | qxe
273 | uxt
274 | qyk
275 | xhg
276 | uzt
277 | qau
278 | qdx
279 | qjh
280 | ypg
281 | zfd
282 | ylp
283 | uzn
284 | oix
285 | fzw
286 | qsj
287 | oyt
288 | oxl
289 | wvf
290 | qvf
291 | otq
292 | jvq
293 | xsk
294 | gqc
295 | jqa
296 | dhw
297 | kyq
298 | upn
299 | ucp
300 | xls
301 | kuw
302 | eou
303 | fuw
304 | kbc
305 | vbw
306 | glq
307 | bpj
308 | ycr
309 | ubf
310 | qok
311 | qbt
312 | qhn
313 | fbv
314 | hwv
315 | nxe
316 | ucq
317 | uyd
318 | wqz
319 | qgg
320 | nxu
321 | ulp
322 | xbq
323 | iyw
324 | uqm
325 | ohf
326 | qsz
327 | wvo
328 | qgz
329 | uwd
330 | ygd
331 | yxd
332 | wnq
333 | wgo
334 | ocf
335 | vwp
336 | qft
337 | lqe
338 | qsb
339 | ioh
340 | uje
341 | qfr
342 | dkq
343 | wcf
344 | yqn
345 | iqz
346 | uvc
347 | wbq
348 | ydq
349 | wxb
350 | kxb
351 | zto
352 | wqj
353 | icj
354 | xwk
355 | nwv
356 | ual
357 | nbf
358 | nqb
359 | nyq
360 | cku
361 | xjd
362 | vwm
363 | ulz
364 | fzb
365 | fbp
366 | qrz
367 | txv
368 | xqa
369 | tqd
370 | vkf
371 | qfv
372 | tdv
373 | kvg
374 | gku
375 | ydc
376 | qoh
377 | qyc
378 | myq
379 | rzp
380 | fyv
381 | ulq
382 | xqk
383 | vfz
384 | gzn
385 | ukc
386 | vfk
387 | lnu
388 | upj
389 | fwt
390 | fqj
391 | ybx
392 | qne
393 | qgv
394 | oyd
395 | vlq
396 | gce
397 | ygn
398 | cqw
399 | ylq
400 | yuq
401 | zgi
402 | lwf
403 | uwg
404 | rzf
405 | ftv
406 | ylx
407 | nku
408 | eyv
409 | ilw
410 | ucx
411 | pcv
412 | cqc
413 | qyt
414 | ucj
415 | tlz
416 | znf
417 | ynf
418 | zqm
419 | qbv
420 | yqm
421 | rzu
422 | bgu
423 | ufn
424 | sxz
425 | vqd
426 | kbf
427 | wlv
428 | qdl
429 | vjq
430 | pnm
431 | eqm
432 | vwj
433 | bgq
434 | nvq
435 | zlp
436 | ygb
437 | idq
438 | wzt
439 | cql
440 | ztm
441 | oug
442 | ofx
443 | qmu
444 | zqg
445 | mfq
446 | ouv
447 | ypz
448 | qsg
449 | ncx
450 | xgi
451 | wbi
452 | qcb
453 | uxz
454 | lnq
455 | zwk
456 | pzr
457 | qgm
458 | zpm
459 | qxd
460 | zgu
461 | kzg
462 | nqc
463 | gxw
464 | uwh
465 | vwg
466 | fqf
467 | lni
468 | sqb
469 | pzd
470 | fcv
471 | vnu
472 | wdi
473 | oqc
474 | nqd
475 | xpv
476 | xaj
477 | jzw
478 | gzb
479 | sqg
480 | uhj
481 | ucf
482 | rzm
483 | uvf
484 | gwx
485 | yxr
486 | ulj
487 | zhn
488 | fjp
489 | xwv
490 | zle
491 | qxf
492 | uxp
493 | nqi
494 | xhn
495 | zwc
496 | uxy
497 | ujc
498 | vfo
499 | xih
500 | cnq
501 | fqe
502 | xng
503 | kqv
504 | ewb
505 | vhu
506 | qor
507 | zpb
508 | zjp
509 | pkq
510 | pqy
511 | rqz
512 | syq
513 | ypc
514 | wfn
515 | dxj
516 | wnb
517 | ezj
518 | tuw
519 | ulx
520 | quj
521 | wnp
522 | nzp
523 | fxu
524 | vmz
525 | wfr
526 | upx
527 | wuo
528 | orj
529 | xag
530 | qmj
531 | cqx
532 | upl
533 | xrf
534 | ivq
535 | xrj
536 | qth
537 | wqg
538 | uxc
539 | hqj
540 | zqk
541 | ztf
542 | ugd
543 | jqv
544 | ewx
545 | qnr
546 | qaf
547 | ijt
548 | wco
549 | qjf
550 | vji
551 | qfn
552 | upw
553 | vfw
554 | ovj
555 | qsv
556 | qbi
557 | yqp
558 | xcq
559 | ibj
560 | qao
561 | qdq
562 | gqt
563 | fqv
564 | eqp
565 | ygw
566 | gzc
567 | ovz
568 | oxd
569 | xvq
570 | ubo
571 | ejq
572 | xkp
573 | ygq
574 | zpd
575 | onp
576 | ujt
577 | qmh
578 | vzt
579 | tzr
580 | uzv
581 | qko
582 | wfs
583 | usv
584 | uxq
585 | pzg
586 | zkp
587 | fvo
588 | uxm
589 | xfb
590 | pyb
591 | uct
592 | uym
593 | qqf
594 | uvb
595 | gqw
596 | qkg
597 | zqs
598 | iwq
599 | ydy
600 | cwv
601 | yld
602 | uqw
603 | gpn
604 | ifw
605 | vwf
606 | wfl
607 | wpr
608 | xvg
609 | gzp
610 | cqy
611 | uep
612 | gkw
613 | uxs
614 | iyx
615 | ytn
616 | qtb
617 | waq
618 | xmu
619 | wcu
620 | kcq
621 | exw
622 | uzd
623 | lqj
624 | ytj
625 | ypn
626 | elq
627 | uvd
628 | ffq
629 | qur
630 | fzg
631 | yhf
632 | zny
633 | owt
634 | nqj
635 | zbj
636 | wmt
637 | xnd
638 | yvx
639 | sgq
640 | nqe
641 | pfu
642 | oqh
643 | bgx
644 | gpq
645 | pfq
646 | qpl
647 | vuz
648 | hyf
649 | wqm
650 | whv
651 | ixk
652 | uxd
653 | uov
654 | pjf
655 | pxc
656 | wkb
657 | vdu
658 | vxf
659 | wpz
660 | uwz
661 | xph
662 | xti
663 | uqb
664 | hqw
665 | qhw
666 | yqb
667 | fbz
668 | pby
669 | dwf
670 | wzz
671 | hdn
672 | wvz
673 | pxk
674 | ntq
675 | fzv
676 | yzv
677 | ynq
678 | kzq
679 | vtq
680 | hjx
681 | uoz
682 | fdq
683 | yqv
684 | qju
685 | qrv
686 | vht
687 | fpz
688 | xfk
689 | fqn
690 | fvq
691 | mgq
692 | uph
693 | yqg
694 | zwv
695 | pxb
696 | olq
697 | zop
698 | udv
699 | uzx
700 | ydr
701 | eiy
702 | oyf
703 | pzn
704 | qfj
705 | myv
706 | uxa
707 | oig
708 | wto
709 | dwv
710 | xpw
711 | ezb
712 | nqu
713 | bfy
714 | ebx
715 | tzb
716 | bht
717 | wfd
718 | ucv
719 | wqx
720 | qca
721 | zrb
722 | pvx
723 | vku
724 | qgq
725 | unq
726 | ubw
727 | eyt
728 | qjm
729 | zwd
730 | ehf
731 | kzv
732 | rgi
733 | ukt
734 | qtw
735 | vmy
736 | vwk
737 | umx
738 | xpf
739 | iqf
740 | ftq
741 | jnt
742 | ius
743 | osw
744 | qvk
745 | uzc
746 | wtz
747 | vzu
748 | vfl
749 | qyn
750 | vpl
751 | izd
752 | oln
753 | xjg
754 | xmk
755 | egx
756 | qmt
757 | jge
758 | ybp
759 | glw
760 | qpe
761 | imw
762 | uqq
763 | kxh
764 | ebz
765 | glj
766 | ulh
767 | cji
768 | xhb
769 | qfo
770 | ieh
771 | wrv
772 | gnq
773 | uew
774 | xzm
775 | vgn
776 | etn
777 | xuf
778 | fph
779 | wkg
780 | pge
781 | bfv
782 | zfm
783 | npz
784 | xgj
785 | fkp
786 | xlh
787 | xtw
788 | ywe
789 | yfp
790 | xdk
791 | obw
792 | efj
793 | xkw
794 | rke
795 | vqi
796 | vqs
797 | njq
798 | uxr
799 | xwr
800 | qqj
801 | oxq
802 | fzp
803 | rqj
804 | rnu
805 | oeq
806 | qnc
807 | vwd
808 | yfv
809 | pfz
810 | ebq
811 | cxh
812 | mqw
813 | hwf
814 | xwh
815 | vxj
816 | vfu
817 | xoh
818 | xns
819 | oys
820 | qbf
821 | ywq
822 | cqo
823 | gwz
824 | ljz
825 | uej
826 | ugp
827 | ukz
828 | fni
829 | zqd
830 | xjh
831 | yvm
832 | oay
833 | uzg
834 | xuw
835 | uvl
836 | ydf
837 | ovw
838 | skq
839 | jpq
840 | xzg
841 | xvt
842 | fvu
843 | uxf
844 | zfb
845 | vmw
846 | xnp
847 | tqu
848 | qgn
849 | czs
850 | vpu
851 | cmy
852 | cvy
853 | qyd
854 | xkf
855 | rhr
856 | tqf
857 | ehv
858 | wci
859 | fqx
860 | pfx
861 | zbp
862 | uyp
863 | iay
864 | kqw
865 | wfu
866 | xsd
867 | kqg
868 | exj
869 | tqx
870 | iqn
871 | uvo
872 | xib
873 | qcj
874 | vqx
875 | fcx
876 | uat
877 | zfa
878 | ujr
879 | oeu
880 | nze
881 | puv
882 | zvj
883 | eiv
884 | qze
885 | hxk
886 | uvj
887 | ouq
888 | ikx
889 | ixq
890 | cqk
891 | gpe
892 | uvp
893 | hvm
894 | llz
895 | lwz
896 | uud
897 | qdm
898 | ofm
899 | kqk
900 | jfz
901 | vyw
902 | gqh
903 | xbw
904 | qdk
905 | qyw
906 | xvu
907 | ocr
908 | uhx
909 | hzo
910 | yqe
911 | qgy
912 | vmo
913 | uux
914 | nqw
915 | uxx
916 | uuc
917 | vkz
918 | owk
919 | ozp
920 | yqj
921 | eog
922 | rcr
923 | prq
924 | nfv
925 | yfu
926 | pfk
927 | uev
928 | xdu
929 | yjg
930 | rqb
931 | kfy
932 | qtc
933 | wnt
934 | wju
935 | qlk
936 | viw
937 | kqa
938 | zci
939 | xpm
940 | ojm
941 | oux
942 | qtp
943 | zju
944 | kqm
945 | gnh
946 | rqp
947 | uox
948 | iun
949 | vxb
950 | hzv
951 | gqo
952 | xkt
953 | xqf
954 | tpd
955 | qbe
956 | gxm
957 | txx
958 | pju
959 | cqq
960 | ulg
961 | lqm
962 | pze
963 | ibh
964 | qyx
965 | wjg
966 | vwh
967 | uqx
968 | zqb
969 | kuf
970 | ivp
971 | qtu
972 | urq
973 | vau
974 | lqv
975 | jpu
976 | zfv
977 | yxv
978 | xhc
979 | voj
980 | bvu
981 | cqe
982 | slq
983 | pyq
984 | otw
985 | qtn
986 | ebn
987 | gql
988 | xzk
989 | qyp
990 | vjg
991 | rqd
992 | uft
993 | gqa
994 | rqt
995 | yqu
996 | lto
997 | rmu
998 | qgx
999 | xfe
1000 | gqb
1001 | pti
1002 | uhe
1003 | hqy
1004 | pjx
1005 | hqf
1006 | ypt
1007 | fzj
1008 | qml
1009 | xpe
1010 | oxw
1011 | dgl
1012 | qhl
1013 | oyv
1014 | qjq
1015 | jqo
1016 | fkf
1017 | kqp
1018 | uif
1019 | upg
1020 | lvf
1021 | iwc
1022 | upk
1023 | wvm
1024 | jqh
1025 | khx
1026 | hxw
1027 | txw
1028 | voq
1029 | jyv
1030 | hqp
1031 | vtj
1032 | jgz
1033 | wnu
1034 | pkf
1035 | uib
1036 | qvd
1037 | fcq
1038 | yxw
1039 | ykr
1040 | igx
1041 | ovq
1042 | qhg
1043 | qdc
1044 | fwo
1045 | uwf
1046 | ukh
1047 | ugm
1048 | rqf
1049 | ouw
1050 | vqv
1051 | mqz
1052 | mzv
1053 | ukd
1054 | xsg
1055 | ixw
1056 | qje
1057 | tfr
1058 | ojz
1059 | qgi
1060 | xbd
1061 | ohq
1062 | ywx
1063 | xqi
1064 | wky
1065 | kjz
1066 | vqh
1067 | oqe
1068 | sxq
1069 | ozf
1070 | qtj
1071 | jhq
1072 | qrl
1073 |
--------------------------------------------------------------------------------
/out/cookies:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazza3100/ReplitAio/d2ca890c4a990a01e13daeaa94a74e2d6ba1738c/out/cookies
--------------------------------------------------------------------------------
/version.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------