Full Code of anime-plus/graph for AI

main 1181950032fc cached
287 files
739.0 KB
229.6k tokens
630 symbols
1 requests
Download .txt
Showing preview only (811K chars total). Download the full file or copy to clipboard to get everything.
Repository: anime-plus/graph
Branch: main
Commit: 1181950032fc
Files: 287
Total size: 739.0 KB

Directory structure:
gitextract_r4orqg0m/

├── .editorconfig
├── .gitmodules
├── LICENSE.md
├── README.md
├── achievements.md
├── data/
│   ├── achievement/
│   │   ├── anime-boku-no-pico.json
│   │   ├── anime-dementia-psychological.json
│   │   ├── anime-dropped-0.json
│   │   ├── anime-duration-short.json
│   │   ├── anime-episode-long.json
│   │   ├── anime-finished.json
│   │   ├── anime-franchise-long.json
│   │   ├── anime-game.json
│   │   ├── anime-gar.json
│   │   ├── anime-historical.json
│   │   ├── anime-horror-thriller.json
│   │   ├── anime-light-novel.json
│   │   ├── anime-mahou-shoujo.json
│   │   ├── anime-mecha.json
│   │   ├── anime-music.json
│   │   ├── anime-mystery.json
│   │   ├── anime-original.json
│   │   ├── anime-pervert-0.json
│   │   ├── anime-pervert-1.json
│   │   ├── anime-pervert-2.json
│   │   ├── anime-pervert-3.json
│   │   ├── anime-re.json
│   │   ├── anime-release-classic.json
│   │   ├── anime-release-old.json
│   │   ├── anime-romance.json
│   │   ├── anime-school-days.json
│   │   ├── anime-score-high.json
│   │   ├── anime-score-low.json
│   │   ├── anime-score-very-low.json
│   │   ├── anime-slice-of-life.json
│   │   ├── anime-space.json
│   │   ├── anime-sports.json
│   │   ├── anime-studio-ghibli.json
│   │   ├── anime-time.json
│   │   ├── anime-year.json
│   │   ├── manga-dropped-0.json
│   │   ├── manga-finished.json
│   │   ├── manga-horror.json
│   │   ├── manga-mahou-shoujo.json
│   │   ├── manga-mystery.json
│   │   ├── manga-novel.json
│   │   ├── manga-pervert-0.json
│   │   ├── manga-pervert-1.json
│   │   ├── manga-pervert-2.json
│   │   ├── manga-pervert-3.json
│   │   ├── manga-re.json
│   │   ├── manga-release-old.json
│   │   ├── manga-romance.json
│   │   ├── manga-score-high.json
│   │   ├── manga-score-low.json
│   │   ├── manga-score-very-low.json
│   │   ├── manga-sports.json
│   │   ├── manga-time.json
│   │   ├── manga-vampire-demons.json
│   │   ├── manga-volume-long.json
│   │   ├── manga-yaoi-shounen-ai.json
│   │   ├── manga-year.json
│   │   └── manga-yuri-shoujo-ai.json
│   ├── banned-creators.lst
│   ├── banned-franchise-coupling.json
│   ├── banned-genres.lst
│   ├── banned-users.lst
│   ├── cache/
│   │   └── .gitignore
│   ├── db/
│   │   └── .gitignore
│   ├── globals-cache.json
│   ├── logs/
│   │   └── .gitignore
│   ├── mirror/
│   │   └── .gitignore
│   ├── queue-media.lst
│   ├── queue-sizes.json
│   ├── queue-users-media.lst
│   ├── queue-users.lst
│   ├── recs-banned-genres.lst
│   └── static-recommendations.lst
├── public_html/
│   ├── index.php
│   ├── media/
│   │   ├── css/
│   │   │   ├── admin/
│   │   │   │   ├── index.css
│   │   │   │   └── login.css
│   │   │   ├── core.css
│   │   │   ├── glider.css
│   │   │   ├── header.css
│   │   │   ├── headerless.css
│   │   │   ├── icons.css
│   │   │   ├── index/
│   │   │   │   ├── about.css
│   │   │   │   ├── globals.css
│   │   │   │   └── index.css
│   │   │   ├── infobox.css
│   │   │   ├── menu.css
│   │   │   ├── mini-sections.css
│   │   │   └── user/
│   │   │       ├── achievements.css
│   │   │       ├── entries.css
│   │   │       ├── favorites.css
│   │   │       ├── history.css
│   │   │       ├── list.css
│   │   │       ├── profile.css
│   │   │       ├── ratings.css
│   │   │       └── recommendations.css
│   │   └── js/
│   │       ├── glider.js
│   │       ├── highcharts-mg.js
│   │       ├── index/
│   │       │   └── index.js
│   │       ├── jquery.cookie.js
│   │       ├── jquery.farbtastic.js
│   │       ├── jquery.highcharts.js
│   │       ├── jquery.tablesorter.js
│   │       ├── misc.js
│   │       ├── tooltips.js
│   │       └── user/
│   │           ├── achievements.js
│   │           ├── entries.js
│   │           ├── favorites.js
│   │           ├── history.js
│   │           ├── list.js
│   │           ├── profile.js
│   │           ├── ratings.js
│   │           └── recommendations.js
│   └── robots.txt
├── script/
│   ├── cron-cache.php
│   ├── cron-globals.php
│   ├── cron-queue-sizes.php
│   ├── cron-queue.php
│   ├── cron-users.php
│   ├── make-db.php
│   ├── process.php
│   ├── queue-all-media.php
│   ├── unnuke-media.php
│   └── unnuke-users.php
└── src/
    ├── .gitignore
    ├── Cache.php
    ├── Config.example.php
    ├── ControllerModules/
    │   ├── AbstractControllerModule.php
    │   ├── AbstractUserControllerModule.php
    │   ├── AdminControllerIndexModule.php
    │   ├── AdminControllerLoginModule.php
    │   ├── AdminControllerLogoutModule.php
    │   ├── AdminControllerMiscModule.php
    │   ├── AdminControllerProcessorModule.php
    │   ├── IndexControllerAboutModule.php
    │   ├── IndexControllerGlobalsModule.php
    │   ├── IndexControllerIndexModule.php
    │   ├── IndexControllerSearchModule.php
    │   ├── UserControllerAchievementsModule.php
    │   ├── UserControllerEntriesModule.php
    │   ├── UserControllerExportModule.php
    │   ├── UserControllerFavoritesModule.php
    │   ├── UserControllerHistoryModule.php
    │   ├── UserControllerListsModule.php
    │   ├── UserControllerProfileModule.php
    │   ├── UserControllerQueueAddModule.php
    │   ├── UserControllerQueuePositionModule.php
    │   ├── UserControllerRatingsModule.php
    │   └── UserControllerRecommendationsModule.php
    ├── Controllers/
    │   ├── AbstractController.php
    │   ├── AdminController.php
    │   ├── ControllerContext.php
    │   ├── IndexController.php
    │   └── UserController.php
    ├── CronRunner.php
    ├── Database.php
    ├── Document.php
    ├── Downloader.php
    ├── Enums/
    │   ├── AnimeMediaSource.php
    │   ├── AnimeMediaType.php
    │   ├── Enum.php
    │   ├── MangaMediaType.php
    │   ├── Media.php
    │   ├── MediaRelation.php
    │   ├── MediaStatus.php
    │   ├── MediaType.php
    │   └── UserListStatus.php
    ├── ErrorHandler.php
    ├── Exceptions/
    │   ├── BadMediaException.php
    │   ├── BadProcessorDocumentException.php
    │   ├── BadProcessorKeyException.php
    │   ├── DocumentException.php
    │   ├── DownloadFailureException.php
    │   ├── InstanceAlreadyRunningException.php
    │   └── UnimplementedException.php
    ├── Helpers/
    │   ├── BanHelper.php
    │   ├── BenchmarkHelper.php
    │   ├── HttpHeadersHelper.php
    │   ├── ReflectionHelper.php
    │   ├── TextHelper.php
    │   ├── UrlHelper.php
    │   └── WebMediaHelper.php
    ├── Logger.php
    ├── ModelUtils/
    │   ├── DataSorter.php
    │   ├── DistributionEvaluator.php
    │   ├── Distributions/
    │   │   ├── AbstractDistribution.php
    │   │   ├── MediaCreatorDistribution.php
    │   │   ├── MediaDecadeDistribution.php
    │   │   ├── MediaGenreDistribution.php
    │   │   ├── MediaLengthDistribution.php
    │   │   ├── MediaSourceDistribution.php
    │   │   ├── MediaTypeDistribution.php
    │   │   ├── MediaYearDistribution.php
    │   │   ├── RatingDistribution.php
    │   │   └── RatingTimeDistribution.php
    │   └── UserMediaFilter.php
    ├── Models/
    │   ├── Model_Media.php
    │   ├── Model_MixedUserMedia.php
    │   └── Model_User.php
    ├── Processors/
    │   ├── AbstractProcessor.php
    │   ├── AnimeProcessor.php
    │   ├── MangaProcessor.php
    │   ├── ProcessingContext.php
    │   ├── SubProcessors/
    │   │   ├── AbstractSubProcessor.php
    │   │   ├── AnimeSubProcessorBasic.php
    │   │   ├── AnimeSubProcessorProducers.php
    │   │   ├── MangaSubProcessorAuthors.php
    │   │   ├── MangaSubProcessorBasic.php
    │   │   ├── MediaSubProcessor.php
    │   │   ├── MediaSubProcessorBasic.php
    │   │   ├── MediaSubProcessorFranchises.php
    │   │   ├── MediaSubProcessorGenres.php
    │   │   ├── MediaSubProcessorRecommendations.php
    │   │   ├── MediaSubProcessorRelations.php
    │   │   ├── UserMediaSubProcessor.php
    │   │   ├── UserMediaSubProcessorBasic.php
    │   │   ├── UserSubProcessor.php
    │   │   ├── UserSubProcessorFriends.php
    │   │   ├── UserSubProcessorHistory.php
    │   │   ├── UserSubProcessorProfile.php
    │   │   └── UserSubProcessorUserMedia.php
    │   ├── UserMediaProcessor.php
    │   └── UserProcessor.php
    ├── Queue.php
    ├── QueueItem.php
    ├── SingleInstance.php
    ├── Singleton.php
    ├── Strings.php
    ├── Views/
    │   ├── View.php
    │   ├── ViewContext.php
    │   ├── admin-index.phtml
    │   ├── admin-login.phtml
    │   ├── error-403.phtml
    │   ├── error-404.phtml
    │   ├── error-user-blocked.phtml
    │   ├── error-user-enqueued.phtml
    │   ├── error-user-invalid.phtml
    │   ├── error-user-not-found.phtml
    │   ├── error.phtml
    │   ├── index-about.phtml
    │   ├── index-globals.phtml
    │   ├── index-index.phtml
    │   ├── layout-ajax.phtml
    │   ├── layout-base.phtml
    │   ├── layout-headerless.phtml
    │   ├── layout-json.phtml
    │   ├── layout-raw.phtml
    │   ├── layout.phtml
    │   ├── maintenance.phtml
    │   ├── user-achievements.phtml
    │   ├── user-entries-creator.phtml
    │   ├── user-entries-decade.phtml
    │   ├── user-entries-franchises.phtml
    │   ├── user-entries-genre.phtml
    │   ├── user-entries-length.phtml
    │   ├── user-entries-mismatches.phtml
    │   ├── user-entries-ratings.phtml
    │   ├── user-entries-source.phtml
    │   ├── user-entries-type.phtml
    │   ├── user-entries-year.phtml
    │   ├── user-favorites-creators.phtml
    │   ├── user-favorites-decades.phtml
    │   ├── user-favorites-genres.phtml
    │   ├── user-favorites-sources.phtml
    │   ├── user-favorites-types.phtml
    │   ├── user-favorites.phtml
    │   ├── user-history-daily.phtml
    │   ├── user-history-monthly.phtml
    │   ├── user-history.phtml
    │   ├── user-list.phtml
    │   ├── user-menu.phtml
    │   ├── user-profile-basic.phtml
    │   ├── user-profile-friends.phtml
    │   ├── user-profile-media-summaries.phtml
    │   ├── user-profile.phtml
    │   ├── user-ratings-dist.phtml
    │   ├── user-ratings-length-dist.phtml
    │   ├── user-ratings-time-dist.phtml
    │   ├── user-ratings.phtml
    │   ├── user-recommendations-missing.phtml
    │   ├── user-recommendations-new.phtml
    │   └── user-recommendations.phtml
    └── core.php

================================================
FILE CONTENTS
================================================

================================================
FILE: .editorconfig
================================================
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true


================================================
FILE: .gitmodules
================================================
[submodule "library/redbean"]
	path = library/redbean
	url = https://github.com/gabordemooij/redbean.git


================================================
FILE: LICENSE.md
================================================
### GNU GENERAL PUBLIC LICENSE

Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc.
<https://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.

### Preamble

The GNU General Public License is a free, copyleft license for
software and other kinds of works.

The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom
to share and change all versions of a program--to make sure it remains
free software for all its users. We, the Free Software Foundation, use
the GNU General Public License for most of our software; it applies
also to any other work released this way by its authors. You can apply
it to your programs, too.

When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you
have certain responsibilities if you distribute copies of the
software, or if you modify it: responsibilities to respect the freedom
of others.

For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.

Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the
manufacturer can do so. This is fundamentally incompatible with the
aim of protecting users' freedom to change the software. The
systematic pattern of such abuse occurs in the area of products for
individuals to use, which is precisely where it is most unacceptable.
Therefore, we have designed this version of the GPL to prohibit the
practice for those products. If such problems arise substantially in
other domains, we stand ready to extend this provision to those
domains in future versions of the GPL, as needed to protect the
freedom of users.

Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish
to avoid the special danger that patents applied to a free program
could make it effectively proprietary. To prevent this, the GPL
assures that patents cannot be used to render the program non-free.

The precise terms and conditions for copying, distribution and
modification follow.

### TERMS AND CONDITIONS

#### 0. Definitions.

"This License" refers to version 3 of the GNU General Public License.

"Copyright" also means copyright-like laws that apply to other kinds
of works, such as semiconductor masks.

"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.

To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of
an exact copy. The resulting work is called a "modified version" of
the earlier work or a work "based on" the earlier work.

A "covered work" means either the unmodified Program or a work based
on the Program.

To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user
through a computer network, with no transfer of a copy, is not
conveying.

An interactive user interface displays "Appropriate Legal Notices" to
the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

#### 1. Source Code.

The "source code" for a work means the preferred form of the work for
making modifications to it. "Object code" means any non-source form of
a work.

A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

The Corresponding Source need not include anything that users can
regenerate automatically from other parts of the Corresponding Source.

The Corresponding Source for a work in source code form is that same
work.

#### 2. Basic Permissions.

All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

You may make, run and propagate covered works that you do not convey,
without conditions so long as your license otherwise remains in force.
You may convey covered works to others for the sole purpose of having
them make modifications exclusively for you, or provide you with
facilities for running those works, provided that you comply with the
terms of this License in conveying all material for which you do not
control copyright. Those thus making or running the covered works for
you must do so exclusively on your behalf, under your direction and
control, on terms that prohibit them from making any copies of your
copyrighted material outside their relationship with you.

Conveying under any other circumstances is permitted solely under the
conditions stated below. Sublicensing is not allowed; section 10 makes
it unnecessary.

#### 3. Protecting Users' Legal Rights From Anti-Circumvention Law.

No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such
circumvention is effected by exercising rights under this License with
respect to the covered work, and you disclaim any intention to limit
operation or modification of the work as a means of enforcing, against
the work's users, your or third parties' legal rights to forbid
circumvention of technological measures.

#### 4. Conveying Verbatim Copies.

You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

#### 5. Conveying Modified Source Versions.

You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these
conditions:

-   a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.
-   b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under
    section 7. This requirement modifies the requirement in section 4
    to "keep intact all notices".
-   c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy. This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged. This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.
-   d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

#### 6. Conveying Non-Source Forms.

You may convey a covered work in object code form under the terms of
sections 4 and 5, provided that you also convey the machine-readable
Corresponding Source under the terms of this License, in one of these
ways:

-   a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.
-   b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the Corresponding
    Source from a network server at no charge.
-   c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source. This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.
-   d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge. You need not require recipients to copy the
    Corresponding Source along with the object code. If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source. Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.
-   e) Convey the object code using peer-to-peer transmission,
    provided you inform other peers where the object code and
    Corresponding Source of the work are being offered to the general
    public at no charge under subsection 6d.

A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal,
family, or household purposes, or (2) anything designed or sold for
incorporation into a dwelling. In determining whether a product is a
consumer product, doubtful cases shall be resolved in favor of
coverage. For a particular product received by a particular user,
"normally used" refers to a typical or common use of that class of
product, regardless of the status of the particular user or of the way
in which the particular user actually uses, or expects or is expected
to use, the product. A product is a consumer product regardless of
whether the product has substantial commercial, industrial or
non-consumer uses, unless such uses represent the only significant
mode of use of the product.

"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to
install and execute modified versions of a covered work in that User
Product from a modified version of its Corresponding Source. The
information must suffice to ensure that the continued functioning of
the modified object code is in no case prevented or interfered with
solely because modification has been made.

If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or
updates for a work that has been modified or installed by the
recipient, or for the User Product in which it has been modified or
installed. Access to a network may be denied when the modification
itself materially and adversely affects the operation of the network
or violates the rules and protocols for communication across the
network.

Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

#### 7. Additional Terms.

"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders
of that material) supplement the terms of this License with terms:

-   a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or
-   b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or
-   c) Prohibiting misrepresentation of the origin of that material,
    or requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or
-   d) Limiting the use for publicity purposes of names of licensors
    or authors of the material; or
-   e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or
-   f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions
    of it) with contractual assumptions of liability to the recipient,
    for any liability that these contractual assumptions directly
    impose on those licensors and authors.

All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions; the
above requirements apply either way.

#### 8. Termination.

You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

However, if you cease all violation of this License, then your license
from a particular copyright holder is reinstated (a) provisionally,
unless and until the copyright holder explicitly and finally
terminates your license, and (b) permanently, if the copyright holder
fails to notify you of the violation by some reasonable means prior to
60 days after the cessation.

Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

#### 9. Acceptance Not Required for Having Copies.

You are not required to accept this License in order to receive or run
a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

#### 10. Automatic Licensing of Downstream Recipients.

Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.

An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

#### 11. Patents.

A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".

A contributor's "essential patent claims" are all patent claims owned
or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

A patent license is "discriminatory" if it does not include within the
scope of its coverage, prohibits the exercise of, or is conditioned on
the non-exercise of one or more of the rights that are specifically
granted under this License. You may not convey a covered work if you
are a party to an arrangement with a third party that is in the
business of distributing software, under which you make payment to the
third party based on the extent of your activity of conveying the
work, and under which the third party grants, to any of the parties
who would receive the covered work from you, a discriminatory patent
license (a) in connection with copies of the covered work conveyed by
you (or copies made from those copies), or (b) primarily for and in
connection with specific products or compilations that contain the
covered work, unless you entered into that arrangement, or that patent
license was granted, prior to 28 March 2007.

Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

#### 12. No Surrender of Others' Freedom.

If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under
this License and any other pertinent obligations, then as a
consequence you may not convey it at all. For example, if you agree to
terms that obligate you to collect a royalty for further conveying
from those to whom you convey the Program, the only way you could
satisfy both those terms and this License would be to refrain entirely
from conveying the Program.

#### 13. Use with the GNU Affero General Public License.

Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

#### 14. Revised Versions of this License.

The Free Software Foundation may publish revised and/or new versions
of the GNU General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in
detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Program
specifies that a certain numbered version of the GNU General Public
License "or any later version" applies to it, you have the option of
following the terms and conditions either of that numbered version or
of any later version published by the Free Software Foundation. If the
Program does not specify a version number of the GNU General Public
License, you may choose any version ever published by the Free
Software Foundation.

If the Program specifies that a proxy can decide which future versions
of the GNU General Public License can be used, that proxy's public
statement of acceptance of a version permanently authorizes you to
choose that version for the Program.

Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

#### 15. Disclaimer of Warranty.

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
CORRECTION.

#### 16. Limitation of Liability.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

#### 17. Interpretation of Sections 15 and 16.

If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

END OF TERMS AND CONDITIONS

### How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.

To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively state
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

        <one line to give the program's name and a brief idea of what it does.>
        Copyright (C) <year>  <name of author>

        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published by
        the Free Software Foundation, either version 3 of the License, or
        (at your option) any later version.

        This program is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        GNU General Public License for more details.

        You should have received a copy of the GNU General Public License
        along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper
mail.

If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

        <program>  Copyright (C) <year>  <name of author>
        This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
        This is free software, and you are welcome to redistribute it
        under certain conditions; type `show c' for details.

The hypothetical commands \`show w' and \`show c' should show the
appropriate parts of the General Public License. Of course, your
program's commands might be different; for a GUI interface, you would
use an "about box".

You should also get your employer (if you work as a programmer) or
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. For more information on this, and how to apply and follow
the GNU GPL, see <https://www.gnu.org/licenses/>.

The GNU General Public License does not permit incorporating your
program into proprietary programs. If your program is a subroutine
library, you may consider it more useful to permit linking proprietary
applications with the library. If this is what you want to do, use the
GNU Lesser General Public License instead of this License. But first,
please read <https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
## GRAPH
[GRAPH](https://anime.plus) is an extension of your myanimelist.net profile, showing you various information about your anime and manga.

### License
GRAPH is licensed under the [GNU General Public License version 3](https://www.gnu.org/licenses/gpl-3.0.html) or later.

The original source code can be found [here](https://github.com/rr-/malgraph4).


================================================
FILE: achievements.md
================================================
All genre-based achievements have 4 levels. Count-based badges have 12 levels, and score-based have 3 pseudo-levels. There are some other special badges awarded for achieving something big. In total, we have over 150 images that make you want to watch more anime or read more manga.

If you're curious about titles that count towards certain badges, read [these files](https://github.com/anime-plus/graph/tree/master/data/achievement), but note that some genre-based achievements have their title list generated automatically from genres on myanimelist.net. These can also have additional titles added manually, to fill up genre holes left by myanimelist.net (e.g. sequel to a historical anime isn't tagged as such).

Thresholds for manga/anime genres are 1/2% of titles (up to 10/20) for level 1, 2/4% (up to 20/40) for level 2, 4/8% (up to 40/80) for level 3 and 8/16% (up to 80/160) for the maximum level.

## Anime achievements

### Psychological
Awarded for watching Psychological anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-dementia-psychological-1.png" alt="">
</td>
<td>
<strong>What exactly did I just watch?</strong>

<sub>You discovered a whole new world of weird. Keep on watching.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-dementia-psychological-2.png" alt="">
</td>
<td>
<strong>My mind is full of fu**</strong>

<sub>Your attempt to wrap your mind around this failed completely.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-dementia-psychological-3.png" alt="">
</td>
<td>
<strong>Is this the real life?</strong>

<sub>It has become hard to distinguish between reality and fiction.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-dementia-psychological-4.gif" alt="">
</td>
<td>
<strong>「 Wired Sound 」</strong>

<sub>You've seen too much. You've transcended humanity and operate on another level now.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### GAR
Awarded for watching anime with manly men.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-gar-1.png" alt="">
</td>
<td>
<strong>So manly I can't breathe</strong>

<sub>Watching all those men made you feel like a little girl... and you liked it.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-gar-2.png" alt="">
</td>
<td>
<strong>Testosterone storm</strong>

<sub>Your body has adapted into GAR anime. You can hear your muscles growing.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-gar-3.png" alt="">
</td>
<td>
<strong>You are already man</strong>

<sub>Resistance is futile. People are simply no match for you.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-gar-4.png" alt="">
</td>
<td>
<strong>Alpha Male</strong>

<sub>You aren't made out of testosterone. Testosterone is made out of you.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Historical
Awarded for watching Historical anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-historical-1.png" alt="">
</td>
<td>
<strong>History class</strong>

<sub>History doesn't have to be boring. There's a lot to learn.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-historical-2.png" alt="">
</td>
<td>
<strong>A look at passing time</strong>

<sub>Instead of dreaming of the future, you prefer to look back at the past.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-historical-3.png" alt="">
</td>
<td>
<strong>Archaeologist</strong>

<sub>You have learned that sometimes going further just isn't worth it. And yet you try.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-historical-4.png" alt="">
</td>
<td>
<strong>Time machine</strong>

<sub>Kids these days are boring. You'd rather watch something heartwarming about siblings catching fireflies.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Horror
Awarded for watching Horror anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-horror-thriller-1.png" alt="">
</td>
<td>
<strong>Paranoia fuel</strong>

<sub>It's not like you needed to sleep tonight, anyway.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-horror-thriller-2.png" alt="">
</td>
<td>
<strong>Too many teeth</strong>

<sub>You know something is following you. You just don't know what.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-horror-thriller-3.png" alt="">
</td>
<td>
<strong>Extreme phobia</strong>

<sub>You are terrified; you are transfixed.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-horror-thriller-4.png" alt="">
</td>
<td>
<strong>Flowers of flesh and blood</strong>

<sub>It's far too late, now.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Mahou Shoujo
Awarded for watching anime with magical girls.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mahou-shoujo-1.png" alt="">
</td>
<td>
<strong>Signed the contract</strong>

<sub>Became a magical girl and started saving the world, step by step.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mahou-shoujo-2.png" alt="">
</td>
<td>
<strong>Magic is my middle name</strong>

<sub>Transformed into a magical girl: level two. In the name of the Moon, I will punish you!</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mahou-shoujo-3.png" alt="">
</td>
<td>
<strong>Too magical to comprehend</strong>

<sub>Watched so many mahou shoujo anime that you sparkle occasionally.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mahou-shoujo-4.png" alt="">
</td>
<td>
<strong>Are you a wizard?</strong>

<sub>All limiters removed. You can call yourself a god, a wizard, or whatever you wish. You set the rules.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Mecha
Awarded for watching Mecha anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mecha-1.png" alt="">
</td>
<td>
<strong>Me? PILOT this thing?!</strong>

<sub>A secret organization wants you to pilot a huge mecha. Can you do it?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mecha-2.png" alt="">
</td>
<td>
<strong>Engineer</strong>

<sub>After watching over 40 mecha anime you should be able to build your own mobile suit. Remember not to kill the rest of us.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mecha-3.png" alt="">
</td>
<td>
<strong>Mechazawa</strong>

<sub>Having watched over 80 mecha anime, you've probably became a robot already. Nice job, hero.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mecha-4.png" alt="">
</td>
<td>
<strong>Pierce the HEAVENS!</strong>

<sub>Do the impossible. See the invisible. ROW ROW FIGHT THE POWAH! You just sang that in your head, didn't you?</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Music
Awarded for watching Music anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-music-1.png" alt="">
</td>
<td>
<strong>Gettin' your keys on!</strong>

<sub>You don't know what you've just listened to, but you like it.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-music-2.png" alt="">
</td>
<td>
<strong>This is even better live</strong>

<sub>Proudly display the badges you have earned in the fancafe.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-music-3.png" alt="">
</td>
<td>
<strong>Dreaming of the city</strong>

<sub>Your musical knowledge has expanded so much you are tempted to make a career out of it.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-music-4.png" alt="">
</td>
<td>
<strong>Hall of Fame</strong>

<sub>The stage is now your second home.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Mystery
Awarded for watching Mystery anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mystery-1.png" alt="">
</td>
<td>
<strong>Growing suspicions</strong>

<sub>It's suspicious because nothing looks suspicious, and if it looks suspicious from the start it's obviously suspicious.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mystery-2.png" alt="">
</td>
<td>
<strong>Detective's assistant</strong>

<sub>Now it's your business to know what other people don't know too.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mystery-3.png" alt="">
</td>
<td>
<strong>Genius detective</strong>

<sub>You're already a genius at unraveling mysteries... but how is it possible that everywhere you go someone ends up dead?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-mystery-4.png" alt="">
</td>
<td>
<strong>Golden Truth</strong>

<sub>You can solve any mystery by now. The path to the Golden Land has already been revealed to you.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Romance
Awarded for watching Romance anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-romance-1.png" alt="">
</td>
<td>
<strong>Stalker</strong>

<sub>I'll stalk you so hard you won't notice me for 24 episodes. Why don't you love me yet?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-romance-2.png" alt="">
</td>
<td>
<strong>Unrequited love</strong>

<sub>If you won't confess, they'll never know how you feel. But don't bother if you're the best girl - these never win.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-romance-3.png" alt="">
</td>
<td>
<strong>Sparkles and bubbles</strong>

<sub>Every time you two get close you feel butterflies in your stomach. Now kiss.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-romance-4.gif" alt="">
</td>
<td>
<strong>Heart full of love</strong>

<sub>So many romance anime! You surely are an expert in relationships already.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Slice of Life
Awarded for watching Slice of Life anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-slice-of-life-1.png" alt="">
</td>
<td>
<strong>Normal high school boy</strong>

<sub>Got started into the furious ride with slice-of-life anime.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-slice-of-life-2.png" alt="">
</td>
<td>
<strong>cute × ( girls + things )</strong>

<sub>Didn't get bored of watching cute girls doing cute things. As if that's possible.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-slice-of-life-3.png" alt="">
</td>
<td>
<strong>Enjoying life</strong>

<sub>Found the equilibrium between boring and interesting.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-slice-of-life-4.png" alt="">
</td>
<td>
<strong>Prima Undine</strong>

<sub>Awarded Ph.D. degree in slice-of-life-ology. You can teach others how to stay calm and take it easy.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Space
Awarded for watching Space anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-space-1.png" alt="">
</td>
<td>
<strong>3... 2... 1... Liftoff!</strong>

<sub>You've taken one small step for man, not such a giant leap for mankind.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-space-2.png" alt="">
</td>
<td>
<strong>The Earth looks so small from up here</strong>

<sub>You're finally outside the atmosphere, but there's still a lot to explore.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-space-3.gif" alt="">
</td>
<td>
<strong>Interstellar traveler</strong>

<sub>You've traveled vast interstellar distances and seen many galaxies in your way.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-space-4.png" alt="">
</td>
<td>
<strong>Emperor of the Universe</strong>

<sub>You're the ruler of the whole Universe. There's no one with more power than you.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Sports
Awarded for watching Sports anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-sports-1.png" alt="">
</td>
<td>
<strong>Knockout!</strong>

<sub>You've held your own in the ring, time to go all the way.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-sports-2.png" alt="">
</td>
<td>
<strong>Get your head in the game</strong>

<sub>The odds are against you, time to get in the zone.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-sports-3.png" alt="">
</td>
<td>
<strong>Welcome to the Big Leagues</strong>

<sub>There's no stopping you, just one final push.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-sports-4.png" alt="">
</td>
<td>
<strong>Olympian</strong>

<sub>First across the finish line, great job!</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Studio Ghibli
Awarded for watching 10+ anime from Studio Ghibli.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-studio-ghibli.gif" alt="">
</td>
<td>
<strong>Memories</strong>

<sub>Once you've seen them, you can never forget them.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Boku no Pico
One level. Is it the highest, or the lowest possible level a person can achieve? You decide.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-boku-no-pico.png" alt="">
</td>
<td>
<strong>Feels... weird, man</strong>

<sub>Watched Boku no Pico. This is what you get when you follow /a/'s recommendations.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### School Days
This award is a compensation for the intense, paranoid fear of relationships the anime has left you with.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-school-days.png" alt="">
</td>
<td>
<strong>It's just me and you now</strong>

<sub>Awarded for completing School Days. And they say true romance is dead!</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Light Novel
Awarded for watching anime with Light Novel source.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-light-novel-1.png" alt="">
</td>
<td>
<strong>First Chapter</strong>

<sub>Some stories need more progress. Yours is one of those.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-light-novel-2.png" alt="">
</td>
<td>
<strong>Searcher</strong>

<sub>Everyone has a role. Which is yours?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-light-novel-3.png" alt="">
</td>
<td>
<strong>The Realization</strong>

<sub>What matters is in the heart. You feel like you can start to see everyone's intentions just by looking at them.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-light-novel-4.png" alt="">
</td>
<td>
<strong>New Self</strong>

<sub>You have acquired the storytelling and character development required to move your world forward.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Original
Awarded for watching anime with Original source.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-original-1.png" alt="">
</td>
<td>
<strong>Uncharted waters</strong>

<sub>You have just stumbled across a wonderful, strange new world.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-original-2.png" alt="">
</td>
<td>
<strong>Into the jungle</strong>

<sub>The deeper you go, the less you want out.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-original-3.png" alt="">
</td>
<td>
<strong>Center of the Earth</strong>

<sub>You have forgotten about the outside world; nature has assimilated you. An apple falls - not only have you flowered, you have produced fruit.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-original-4.png" alt="">
</td>
<td>
<strong>Transcendence</strong>

<sub>You have been returned to the primordial ocean. From the highest point in the sky, you can peer into every universe, and lose yourself in an infinity of stories.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Video Games
Awarded for watching anime adapted from Games and Visual Novels.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-game-1.png" alt="">
</td>
<td>
<strong>Eternal Spring</strong>

<sub>It all started one fateful morning in April...</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-game-2.png" alt="">
</td>
<td>
<strong>At the gates of Eden</strong>

<sub>You're so close to heaven, you can almost feel it.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-game-3.png" alt="">
</td>
<td>
<strong>Banquet of the Golden Witch</strong>

<sub>You've challenged her to a game. There is no turning back, now.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-game-4.gif" alt="">
</td>
<td>
<strong>Hacking to the Gate</strong>

<sub>All these games have made of you a wizard; you can crack any code without breaking a sweat.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Franchises
Special achievement given upon completing 200+ episodes of 10+ franchises.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-franchise-long.png" alt="">
</td>
<td>
<strong>Long and hard</strong>

<sub>Ten years ago, you began this journey...</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Shorts
Awarded for watching anime with episode length of under 15 minutes.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-duration-short-1.png" alt="">
</td>
<td>
<strong>Blink, and you'll miss it</strong>

<sub>It was over before it started, but it managed to tell an enticing tale.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-duration-short-2.png" alt="">
</td>
<td>
<strong>Quickie addict</strong>

<sub>You've been saying "one more" for the past nine hours.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-duration-short-3.png" alt="">
</td>
<td>
<strong>Block by block</strong>

<sub>Just like in a game of tetris, you're building something great out of small pieces.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-duration-short-4.png" alt="">
</td>
<td>
<strong>Short but gold</strong>

<sub>You have learned that some of the greatest things come in small packages.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Long runner
Awarded for watching 20+ anime that are 100+ episodes long.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-episode-long.png" alt="">
</td>
<td>
<strong>I like them long</strong>

<sub>Didn't fall asleep while watching long anime series. 100 episodes isn't a big deal to you.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Old anime
Awarded for watching 20+ old anime (finished in 1980 at most).

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-release-old.gif" alt="">
</td>
<td>
<strong>VHS master race</strong>

<sub>You overwrote my cartoons with The Karate Kid?! MOOOM!</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Classics
Awarded for watching anime classics (finished between 1981 and 2000).

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-release-classic-1.png" alt="">
</td>
<td>
<strong>Cassette tape</strong>

<sub>The first time you watched these, you didn't even know what they were.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-release-classic-2.png" alt="">
</td>
<td>
<strong>Solid color</strong>

<sub>Bomber jackets, high-waisted jeans, an overload of patterns, and bishies everywhere.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-release-classic-3.png" alt="">
</td>
<td>
<strong>It's raining... tragic backstories!</strong>

<sub>It might be the nostalgia lens, but you swear things had more substance back then.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-release-classic-4.png" alt="">
</td>
<td>
<strong>Blockbuster</strong>

<sub>Man, do you feel old as all hell.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Age diversity
Awarded for watching 40+ anime, all of which started in different years.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-year.png" alt="">
</td>
<td>
<strong>Chronomaster</strong>

<sub>Your discerning eye has traveled across the aeons of animation.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Pervert
Are you a pervert? There's a formula: 100 ÷ *anime completed* × (*ecchi anime completed* × 2 + *erotica anime completed* × 3 + *hentai anime completed* × 4)

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-pervert-0.png" alt="">
</td>
<td>
<strong>Innocent One</strong>

<sub>Puritan, oblivious, or serial killer in the making? Either way, you made it through No Man's Land without glimpsing a single bra. Good job!</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-pervert-1.png" alt="">
</td>
<td>
<strong>I watch anime only for the plot...</strong>

<sub>It's not your fault that there is so much fan service... Right?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-pervert-2.png" alt="">
</td>
<td>
<strong>Only accidents! I swear!</strong>

<sub>Physics in anime are incredible. When you trip, you always cop a feel.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-pervert-3.png" alt="">
</td>
<td>
<strong>Hentai Overlord</strong>

<sub>No use denying it! You know what you are...</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Mean score
Related to mean anime score.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-score-high.png" alt="">
</td>
<td>
<strong>I love Chinese cartoons</strong>

<sub>Mean anime score higher than 8.5. How about using the whole scale and re-rating stuff? That could make you look less like a fanboy...</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-score-low.png" alt="">
</td>
<td>
<strong>Watching anime is suffering</strong>

<sub>Mean anime score lower than 5. Someone has to counterweigh the fanboys, right?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-score-very-low.png" alt="">
</td>
<td>
<strong>Less than three</strong>

<sub>Mean anime score lower than 3. Is it hate, or is it love?</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### No drop
20+ completed, zero dropped.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-dropped-0.png" alt="">
</td>
<td>
<strong>Completionist</strong>

<sub>You've managed to survive watching so many anime without dropping any of them. You masochist.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Rewatch
Awarded for having 20+ rewatches.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-re.gif" alt="">
</td>
<td>
<strong>Endless Eight</strong>

<sub>Is the replay button stuck?</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Total time spent
Awarded for reaching certain thresholds in your time spent watching anime.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-time-1.png" alt="">
</td>
<td>
<strong>Hair antenna</strong>

<sub>Whose watchtime are you calling puny‽</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-time-2.png" alt="">
</td>
<td>
<strong>Endurance training</strong>

<sub>By doing a daily ten-episode run, you are sure to become a master in no time!</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-time-3.png" alt="">
</td>
<td>
<strong>Consciousness upload</strong>

<sub>Consuming the medium becomes a lot easier once you yourself are raw data.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-time-4.png" alt="">
</td>
<td>
<strong>Wicked cultured</strong>

<sub>By making a deal with the devil, you have ensured access to even the most obscure of materials.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Total number completed
No living being should be able to get to 10k.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-100.png" alt="">
</td>
<td>
<strong>The first step</strong>

<sub>Watched 100 anime. Congratulations, you broke the magical number. Take a breath now, it will only get more difficult.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-200.png" alt="">
</td>
<td>
<strong>Casual watcher</strong>

<sub>Watched 200 anime. You're used to seeing character's eyes bigger than their nose. If they have any nose.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-300.png" alt="">
</td>
<td>
<strong>A millionaire</strong>

<sub>Watched 300 anime. You DID buy all of them, right?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-400.png" alt="">
</td>
<td>
<strong>Bragging rights</strong>

<sub>Watched 400 anime. That's... a lot. You can be proud of yourself, that's for sure.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-500.png" alt="">
</td>
<td>
<strong>A lot of free time</strong>

<sub>Watched 500 anime. Now pause, take a breath and stretch a bit. Remember not to sit too close to the screen.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-750.gif" alt="">
</td>
<td>
<strong>Not even my final form</strong>

<sub>Watched 750 anime. Your power level is way above others'. The only way is up.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-1000.png" alt="">
</td>
<td>
<strong>Gotta watch them all!</strong>

<sub>Watched 1000 anime. You should already know what that picture means.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-1500.png" alt="">
</td>
<td>
<strong>The Collector</strong>

<sub>Watched 1500 animes. No, wait. The plural of anime is anime.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-2500.png" alt="">
</td>
<td>
<strong>The Maniac</strong>

<sub>Watched 2500 anime. Is this healthy? You should contact your doctor.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-5000.png" alt="">
</td>
<td>
<strong>The Legend</strong>

<sub>Watched 5000 anime. You're one of the chosen ones. You don't even have to brag, since everyone heard about you.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-7500.png" alt="">
</td>
<td>
<strong>Database Breaker</strong>

<sub>Watched 7.5 × 10³ anime. Are you having fun, breaking all the rules? By the way, since when do we have that many anime in the database?!</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/anime-finished-10000.png" alt="">
</td>
<td>
<strong>This is it</strong>

<sub>Watched 10000 anime. There is no higher level. You can stop now. Everyone, go home.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

## Manga achievements

### Horror
Awarded for reading Horror manga.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-horror-1.png" alt="">
</td>
<td>
<strong>HONEY, I'M HOME</strong>

<sub>WHAT IS FOR DINNER TODAY?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-horror-2.png" alt="">
</td>
<td>
<strong>Lovely smile of a psychopath</strong>

<sub>You can't spell slaughter without laughter.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-horror-3.png" alt="">
</td>
<td>
<strong>What have I become?</strong>

<sub>Sweetheart, something's wrong with your make up...</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-horror-4.png" alt="">
</td>
<td>
<strong>Heart attack</strong>

<sub>Not all surprises are pleasant, but it looks like you love being scared.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Mahou Shoujo
Awarded for reading manga with magical girls.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-mahou-shoujo-1.png" alt="">
</td>
<td>
<strong>Let me lift that curse</strong>

<sub>If you wish hard enough, you can become a magical girl in the blink of an eye.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-mahou-shoujo-2.png" alt="">
</td>
<td>
<strong>Conflict Breaker</strong>

<sub>Fighting hardly solves any problems. There are better ways to live our lives.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-mahou-shoujo-3.png" alt="">
</td>
<td>
<strong>Aim for the top</strong>

<sub>Even if you work alone, never forget your friends who helped you overcome all fears.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-mahou-shoujo-4.png" alt="">
</td>
<td>
<strong>Complete control</strong>

<sub>Read over 32 mahou shoujo manga. At this level magic circles form around you at will.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Mystery
Awarded for reading Mystery manga.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-mystery-1.png" alt="">
</td>
<td>
<strong>Curiosity</strong>

<sub>If it is you who is curious, no case shall remain unsolved.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-mystery-2.png" alt="">
</td>
<td>
<strong>Determination</strong>

<sub>No matter who the villain is... you WILL find out the answers.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-mystery-3.png" alt="">
</td>
<td>
<strong>Collecting the pieces</strong>

<sub>Sometimes the smallest bit of information can turn the whole case around.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-mystery-4.png" alt="">
</td>
<td>
<strong>Raw intuition</strong>

<sub>Investigative skills honed up. You know the answers just by looking at mere shards of data.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Romance
Awarded for reading Romance manga.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-romance-1.png" alt="">
</td>
<td>
<strong>Mixed feelings</strong>

<sub>98% hatred, 2% love. Give it some time and these two will reverse.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-romance-2.png" alt="">
</td>
<td>
<strong>Love me or die</strong>

<sub>Yandere is a form of love too. A rather extreme one, but still!</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-romance-3.png" alt="">
</td>
<td>
<strong>Breaking the chains</strong>

<sub>With love, nothing is impossible. You just have to let someone break you free of restrictions.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-romance-4.gif" alt="">
</td>
<td>
<strong>Heart that never stops beating</strong>

<sub>When I see you, my kokoro goes doki-doki and the sekai starts to spin around. How could I live without you?</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Sports
Awarded for reading Sports manga.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-sports-1.png" alt="">
</td>
<td>
<strong>The stakes are high</strong>

<sub>Joined the game for real. The more you read, the more addictive it gets.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-sports-2.png" alt="">
</td>
<td>
<strong>Do you even read?</strong>

<sub>Even during the most exhausting excercise you still find time to read. Can't miss a chapter.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-sports-3.png" alt="">
</td>
<td>
<strong>Got balls</strong>

<sub>Looking at all this struggling inspires you to become strong yourself.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-sports-4.png" alt="">
</td>
<td>
<strong>Kuro Basket</strong>

<sub>You know the rules of all games already. The podium is yours!</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Vampires/Demons
Awarded for reading Vampires/Demons manga.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-vampire-demons-1.gif" alt="">
</td>
<td>
<strong>Sweet tooth</strong>

<sub>Donuts? Really? You lived for 500 years just to eat them?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-vampire-demons-2.png" alt="">
</td>
<td>
<strong>Vegetarian</strong>

<sub>Some creatures prefer juicy fruits instead of sucking blood or eating raw meat. Weaklings.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-vampire-demons-3.png" alt="">
</td>
<td>
<strong>Carnivore</strong>

<sub>Don't mess with me if you want to keep your limbs attached to your body.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-vampire-demons-4.png" alt="">
</td>
<td>
<strong>Pure Evil</strong>

<sub>EVIL!!! FANGS! DEMONS! BLOOD! Yeah. That's the stuff.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Boys Love
Awarded for reading Boys Love manga.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-yaoi-shounen-ai-1.gif" alt="">
</td>
<td>
<strong>Inner fujoshi awakened</strong>

<sub>I was just taking a peek in this manga I accidentally found... and surprisingly liked it.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-yaoi-shounen-ai-2.png" alt="">
</td>
<td>
<strong>Not a day without BL</strong>

<sub>It's already too late to stop and turn back, just remember to watch your back while reading.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-yaoi-shounen-ai-3.png" alt="">
</td>
<td>
<strong>Yaoi detector</strong>

<sub>I don't care! I ship it!</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-yaoi-shounen-ai-4.png" alt="">
</td>
<td>
<strong>Full Fledged Fujoshi</strong>

<sub>Yaoi isn't just a genre to you anymore, it's a way of life.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Girls Love
Awarded for reading Girls Love manga.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-yuri-shoujo-ai-1.png" alt="">
</td>
<td>
<strong>But that's forbidden love</strong>

<sub>Cute girls doing cute things... right?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-yuri-shoujo-ai-2.png" alt="">
</td>
<td>
<strong>I kissed a girl...</strong>

<sub>...and I liked it!</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-yuri-shoujo-ai-3.png" alt="">
</td>
<td>
<strong>All female school</strong>

<sub>There are only girls here to love... but I don't mind it.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-yuri-shoujo-ai-4.png" alt="">
</td>
<td>
<strong>Lily</strong>

<sub>You feel it everywhere.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Novel
1+ volumes completed.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-novel-1.png" alt="">
</td>
<td>
<strong>Cracking the book</strong>

<sub>You didn't get bored reading plain text.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-novel-2.png" alt="">
</td>
<td>
<strong>IKEA trip</strong>

<sub>Instead of playing Candy Crush, you now read during transit.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-novel-3.png" alt="">
</td>
<td>
<strong>Personal library</strong>

<sub>The tales you've read have taken you on a journey you never want to end.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-novel-4.png" alt="">
</td>
<td>
<strong>What is sleep?</strong>

<sub>The more you've learned, the more you wanted to keep on learning.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Long runner
Awarded for reading 10+ manga that are 20+ volumes long.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-volume-long.png" alt="">
</td>
<td>
<strong>Long runner</strong>

<sub>The best stories can't be told in less than 20 volumes.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Old manga
Awarded for reading 10+ old manga (finished in 1980 at most).

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-release-old.png" alt="">
</td>
<td>
<strong>At the end of the galaxy</strong>

<sub>Your never-ending journey for the most forgotten comic books has finally paid off.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Age diversity
Awarded for reading 40+ manga, all of which started in different years.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-year.png" alt="">
</td>
<td>
<strong>Ancient Scholar</strong>

<sub>You witnessed the beginning of the medium. You hope you will not witness its end.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Pervert
Are you a pervert? There's a formula: 100 ÷ *manga completed* × (*ecchi manga completed* × 2 + *erotica manga completed* × 3 + *hentai manga completed* × 4)

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-pervert-0.png" alt="">
</td>
<td>
<strong>Chastity belt</strong>

<sub>Mama said that if you touch your no-no square, the Yogi Bear will come and get you. Congratulations on resisting the siren call of h-doujin!</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-pervert-1.png" alt="">
</td>
<td>
<strong>I peek just a little</strong>

<sub>Wait a minute, this wasn't the men's bath?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-pervert-2.png" alt="">
</td>
<td>
<strong>We need a blood donor here</strong>

<sub>Even if I die from blood loss, I just can't stop...</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-pervert-3.png" alt="">
</td>
<td>
<strong>Ero-sennin</strong>

<sub>What do you mean that I am a pervert? I am THE pervert!</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Mean score
Related to mean manga score.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-score-high.png" alt="">
</td>
<td>
<strong>So good I can't handle it</strong>

<sub>Mean manga score above 8.5. Looks like you only pick the best titles to read.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-score-low.png" alt="">
</td>
<td>
<strong>Professional Critic</strong>

<sub>Mean manga score below 5. Watch out, we got a critic over here.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-score-very-low.png" alt="">
</td>
<td>
<strong>Best I can do is 2</strong>

<sub>Mean manga score below 3. Aren't you a bit too harsh?</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### No drop
10+ completed, zero dropped.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-dropped-0.gif" alt="">
</td>
<td>
<strong>I've seen some sh**</strong>

<sub>Despite seemingly endless suffering, you've never dropped any manga. That's impressive.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Reread
Awarded for having 10+ rereads.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-re.gif" alt="">
</td>
<td>
<strong>Take me back</strong>

<sub>Ah, it's every bit as good as the first time.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Total time spent
Awarded for reaching certain thresholds in your time spent reading manga.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-time-1.png" alt="">
</td>
<td>
<strong>Downward spiral</strong>

<sub>Once drawn inside this inky whirlpool, you will find yourself sinking faster than the Titanic.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-time-2.png" alt="">
</td>
<td>
<strong>Revelations (18:14)</strong>

<sub>You've developed quite the appetite. Devouring fifty chapters a day doesn't seem challenging to you anymore.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-time-3.png" alt="">
</td>
<td>
<strong>Voluntary confinement</strong>

<sub>Every title you read brings you closer to your self.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-time-4.png" alt="">
</td>
<td>
<strong>Apocryphal Sanctuary</strong>

<sub>You've journeyed through hell and heaven, and learned much in your wanderings.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;

### Total number completed
No living being should be able to get to 10k.

<table>
<tbody>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-100.png" alt="">
</td>
<td>
<strong>Casual reader</strong>

<sub>Read 100 manga. Looks like reading doesn't hurt.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-200.gif" alt="">
</td>
<td>
<strong>Bookworm</strong>

<sub>Read 200 manga. Sitting in your comfortable chair, reading favorite Korean comics. This is bliss.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-300.png" alt="">
</td>
<td>
<strong>Dat scent</strong>

<sub>Read 300 manga. There's nothing better than the smell of freshly opened book. Or a PDF.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-400.png" alt="">
</td>
<td>
<strong>Where do I put these?</strong>

<sub>Read 400 manga. Consider investing in another bookshelf, or you'll be swimming in books soon.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-500.png" alt="">
</td>
<td>
<strong>Half a grand</strong>

<sub>Read 500 manga. Now think of what kind of person you'd be if you didn't start reading manga then. On that particular day...</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-750.png" alt="">
</td>
<td>
<strong>Read or die</strong>

<sub>Read 750 manga. You managed to make a bow out of paper, but remember that cellulose fibers don't work well as a bulletproof shield.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-1000.png" alt="">
</td>
<td>
<strong>Librarian</strong>

<sub>Read 1000 manga. You work with books, right? Right?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-1500.png" alt="">
</td>
<td>
<strong>The floor is books</strong>

<sub>Read 1500 manga. Sleeping on books must be pretty... hard?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-2500.png" alt="">
</td>
<td>
<strong>Still not enough</strong>

<sub>Read 2500 manga. In search for the perfect story you've read six lifetimes worth of words. Did you find it?</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-5000.png" alt="">
</td>
<td>
<strong>Sleep deprivation</strong>

<sub>Read 5000 manga. Think of all the mangakas and writers that couldn't sleep just to make this moment happen.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-7500.png" alt="">
</td>
<td>
<strong>Reincarnation</strong>

<sub>Read 7500 manga. How, exactly? This is not possible for normal humans.</sub>
</td>
</tr>
<tr>
<td>
<img src="https://anime.plus/image/achievement/manga-finished-10000.png" alt="">
</td>
<td>
<strong>I've seen it all</strong>

<sub>Read 10000 manga. Ten. Thousand. Manga. An average user's list is shorter than your list of titles starting with "A" alone.</sub>
</td>
</tr>
</tbody>
</table>&nbsp;


================================================
FILE: data/achievement/anime-boku-no-pico.json
================================================
{
    "media": "A",
    "order": 202,
    "achievements":
    [
        {
            "threshold": "1+",
            "id": "anime-boku-no-pico",
            "level": "It's Just an Ice Cream",
            "title": "Feels... Weird, Man",
            "desc": "Watched Boku no Pico. This is what you get when you follow /a/'s recommendations."
        }
    ],
    "requirement":
    {
        "type": "title",
        "titles":
        [
            "A1639", //Boku no Pico
            "A5391", //Pico to Chico
            "A4866", //Pico x CoCo x Chico
            "A6546" //Pico: My Little Summer Story
        ]
    }
}


================================================
FILE: data/achievement/anime-dementia-psychological.json
================================================
{
    "media": "A",
    "order": 101,
    "achievements":
    [
        {
            "threshold": "7-13",
            "id": "anime-dementia-psychological-1",
            "level": "Psychological: level 1",
            "title": "What Exactly Did I Just Watch?",
            "desc": "You discovered a whole new world of weird. Keep on watching."
        },
        {
            "threshold": "14-27",
            "id": "anime-dementia-psychological-2",
            "level": "Psychological: level 2",
            "title": "My Mind Is Full of Fu**",
            "desc": "Your attempt to wrap your mind around this failed completely."
        },
        {
            "threshold": "28-55",
            "id": "anime-dementia-psychological-3",
            "level": "Psychological: level 3",
            "title": "Is This the Real Life?",
            "desc": "It has become hard to distinguish between reality and fiction."
        },
        {
            "threshold": "56+",
            "id": "anime-dementia-psychological-4",
            "level": "Psychological: level MAX",
            "title": "「 Wired Sound 」",
            "desc": "You've seen too much. You've transcended humanity and operate on another level now."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 40
    }
}


================================================
FILE: data/achievement/anime-dropped-0.json
================================================
{
    "media": "A",
    "order": 309,
    "achievements":
    [
        {
            "threshold": "20+",
            "id": "anime-dropped-0",
            "level": "I'll Endure Anything",
            "title": "Completionist",
            "desc": "You've managed to survive watching so many anime without dropping any of them. You masochist."
        }
    ],
    "requirement":
    {
        "type": "dropped-0"
    }
}


================================================
FILE: data/achievement/anime-duration-short.json
================================================
{
    "media": "A",
    "order": 302,
    "achievements":
    [
        {
            "threshold": "20-39",
            "id": "anime-duration-short-1",
            "level": "Shorts: level 1",
            "title": "Blink, and You'll Miss It",
            "desc": "It was over before it started, but it managed to tell an enticing tale."
        },
        {
            "threshold": "40-79",
            "id": "anime-duration-short-2",
            "level": "Shorts: level 2",
            "title": "Quickie Addict",
            "desc": "You've been saying \"one more\" for the past nine hours."
        },
        {
            "threshold": "80-159",
            "id": "anime-duration-short-3",
            "level": "Shorts: level 3",
            "title": "Block by Block",
            "desc": "Just like in a game of tetris, you're building something great out of small pieces."
        },
        {
            "threshold": "160+",
            "id": "anime-duration-short-4",
            "level": "Shorts: level MIN",
            "title": "Short but Gold",
            "desc": "You have learned that some of the greatest things come in small packages."
        }
    ],
    "requirement":
    {
        "type": "duration-short"
    }
}


================================================
FILE: data/achievement/anime-episode-long.json
================================================
{
    "media": "A",
    "order": 303,
    "achievements":
    [
        {
            "threshold": "20+",
            "id": "anime-episode-long",
            "level": "Anime, That Is",
            "title": "I Like Them Long",
            "desc": "Didn't fall asleep while watching long anime series. 100 episodes isn't a big deal to you."
        }
    ],
    "requirement":
    {
        "type": "episode-long"
    }
}


================================================
FILE: data/achievement/anime-finished.json
================================================
{
    "media": "A",
    "order": 312,
    "achievements":
    [
        {
            "threshold": "100-199",
            "id": "anime-finished-100",
            "level": "Passed 100 Mark",
            "title": "The first step",
            "desc": "Watched 100 anime. Congratulations, you broke the magical number. Take a breath now, it will only get more difficult."
        },
        {
            "threshold": "200-299",
            "id": "anime-finished-200",
            "level": "Passed 200 Mark",
            "title": "Casual watcher",
            "desc": "Watched 200 anime. You're used to seeing character's eyes bigger than their nose. If they have any nose."
        },
        {
            "threshold": "300-399",
            "id": "anime-finished-300",
            "level": "Passed 300 Mark",
            "title": "A millionaire",
            "desc": "Watched 300 anime. You DID buy all of them, right?"
        },
        {
            "threshold": "400-499",
            "id": "anime-finished-400",
            "level": "Passed 400 Mark",
            "title": "Bragging rights",
            "desc": "Watched 400 anime. That's... a lot. You can be proud of yourself, that's for sure."
        },
        {
            "threshold": "500-749",
            "id": "anime-finished-500",
            "level": "Passed 500 Mark",
            "title": "A lot of free time",
            "desc": "Watched 500 anime. Now pause, take a breath and stretch a bit. Remember not to sit too close to the screen."
        },
        {
            "threshold": "750-999",
            "id": "anime-finished-750",
            "level": "Passed 750 Mark",
            "title": "Not Even My Final Form",
            "desc": "Watched 750 anime. Your power level is way above others'. The only way is up."
        },
        {
            "threshold": "1000-1499",
            "id": "anime-finished-1000",
            "level": "Passed 1000 Mark",
            "title": "Gotta Watch Them All!",
            "desc": "Watched 1000 anime. You should already know what that picture means."
        },
        {
            "threshold": "1500-2499",
            "id": "anime-finished-1500",
            "level": "Passed 1500 Mark",
            "title": "The Collector",
            "desc": "Watched 1500 animes. No, wait. The plural of anime is anime."
        },
        {
            "threshold": "2500-4999",
            "id": "anime-finished-2500",
            "level": "Passed 2500 Mark",
            "title": "The Maniac",
            "desc": "Watched 2500 anime. Is this healthy? You should contact your doctor."
        },
        {
            "threshold": "5000-7499",
            "id": "anime-finished-5000",
            "level": "Passed 5000 Mark",
            "title": "The Legend",
            "desc": "Watched 5000 anime. You're one of the chosen ones. You don't even have to brag, since everyone heard about you."
        },
        {
            "threshold": "7500-9999",
            "id": "anime-finished-7500",
            "level": "Passed 7500 Mark",
            "title": "Database Breaker",
            "desc": "Watched 7.5 × 10³ anime. Are you having fun, breaking all the rules? By the way, since when do we have that many anime in the database?!"
        },
        {
            "threshold": "10000+",
            "id": "anime-finished-10000",
            "level": "Passed 10000 Mark",
            "title": "This Is It",
            "desc": "Watched 10000 anime. There is no higher level. You can stop now. Everyone, go home."
        }
    ],
    "requirement":
    {
        "type": "finished"
    }
}


================================================
FILE: data/achievement/anime-franchise-long.json
================================================
{
    "media": "A",
    "order": 301,
    "achievements":
    [
        {
            "threshold": "10+",
            "id": "anime-franchise-long",
            "level": "The Process of Acquiring This Achievement, That Is",
            "title": "Long and Hard",
            "desc": "Ten years ago, you began this journey..."
        }
    ],
    "requirement":
    {
        "type": "franchise"
    }
}


================================================
FILE: data/achievement/anime-game.json
================================================
{
    "media": "A",
    "order": 302,
    "achievements": [
        {
            "threshold": "20-39",
            "id": "anime-game-1",
            "level": "Game: level 1",
            "title": "Eternal Spring",
            "desc": "It all started one fateful morning in April..."
        },
        {
            "threshold": "40-79",
            "id": "anime-game-2",
            "level": "Game: level 2",
            "title": "At the Gates of Eden",
            "desc": "You're so close to heaven, you can almost feel it."
        },
        {
            "threshold": "80-159",
            "id": "anime-game-3",
            "level": "Game: level 3",
            "title": "Banquet of the Golden Witch",
            "desc": "You've challenged her to a game. There is no turning back, now."
        },
        {
            "threshold": "160+",
            "id": "anime-game-4",
            "level": "Immersion: level MAX",
            "title": "Hacking to the Gate",
            "desc": "All these games have made of you a wizard; you can crack any code without breaking a sweat."
        }
    ],
    "requirement": {
        "type": "source-title",
        "source": [
            8,
            9
        ]
    }
}


================================================
FILE: data/achievement/anime-gar.json
================================================
{
    "media": "A",
    "order": 102,
    "achievements":
    [
        {
            "threshold": "12-23",
            "id": "anime-gar-1",
            "level": "GAR: level 1",
            "title": "So Manly I Can't Breathe",
            "desc": "Watching all those men made you feel like a little girl... and you liked it."
        },
        {
            "threshold": "24-43",
            "id": "anime-gar-2",
            "level": "GAR: level 2",
            "title": "Testosterone Storm",
            "desc": "Your body has adapted into GAR anime. You can hear your muscles growing."
        },
        {
            "threshold": "44-87",
            "id": "anime-gar-3",
            "level": "GAR: level 3",
            "title": "You Are Already Man",
            "desc": "Resistance is futile. People are simply no match for you."
        },
        {
            "threshold": "88+",
            "id": "anime-gar-4",
            "level": "GAR: level MAKSHIMUM",
            "title": "Alpha Male",
            "desc": "You aren't made out of testosterone. Testosterone is made out of you."
        }
    ],
    "requirement":
    {
        "type": "title",
        "titles":
        [
            "A32998", //91 Days
            "A33964", //91 Days: Mijikai Rousoku
            "A34777", //91 Days: Toki no Asase/Subete no Kinou/Ashita, Mata Ashita
            "A8216", //Aa Harimanada
            "A22831", //Abarenbou Rikishi!! Matsutarou
            "A1292", //Afro Samurai
            "A13709", //Afro Samurai Movie
            "A27939", //Afro Samurai Pilot
            "A4970", //Afro Samurai: Resurrection
            "A47", //Akira
            "A2356", //Amon: Devilman Mokushiroku
            "A35834", //Angolmois: Genkou Kassenki
            "A6721", //Ankoku Cat
            "M36636", //Ankoku Cat VS
            "A1488", //Area 88
            "A284", //Area 88 (TV)
            "A33232", //Area 88 Movie
            "A2402", //Ashita no Joe
            "A2920", //Ashita no Joe (Movie)
            "A2921", //Ashita no Joe 2
            "A2922", //Ashita no Joe 2 (Movie)
            "A19973", //Ashita no Joe Pilots
            "A2251", //Baccano!
            "A3901", //Baccano! Specials
            "A34443", //Baki
            "A39555", //Baki: Dai Raitaisai-hen
            "A33566", //Baki: Most Evil Death Row Convicts Special Anime
            "A58573", //Baki-dou
            "A1468", //Baoh Raihousha
            "A67", //Basilisk: Kouga Ninpou Chou
            "A35964", //Basilisk: Ouka Ninpouchou
            "A404", //Bastard!! Ankoku no Hakaishin
            "A50953", //Bastard!! Ankoku no Hakaishin (ONA)
            "A51366", //Bastard!! Ankoku no Hakaishin Part 2 (ONA)
            "A54141", //Bastard!! Ankoku no Hakaishin: Jigoku no Chinkonka-hen
            "A4094", //Batman: Gotham Knight
            "A1799", //Battle Fighters Garou Densetsu
            "A1800", //Battle Fighters Garou Densetsu 2
            "A3625", //Battle Royal High School
            "A1009", //Battle Spirits: Ryuuko no Ken
            "A37483", //Bean Bandit
            "A9513", //Beelzebub
            "A9120", //Beelzebub: Hirotta Akachan wa Daimaou!?
            "A32379", //Berserk
            "A34055", //Berserk 2nd Season
            "A35676", //Berserk: Majo no Tsuisou
            "A10218", //Berserk: Ougon Jidaihen I - Haou no Tamago
            "A12113", //Berserk: Ougon Jidaihen II - Doldrey Kouryaku
            "A12115", //Berserk: Ougon Jidaihen III - Kourin
            "A35009", //Berserk Recap
            "A2622", //Big Wars: Kami Utsu Akaki Kouya ni
            "A8278", //Biohazard 4: Incubate
            "A5624", //Biohazard 4D-Executer
            "A9544", //Biohazard: Damnation
            "A54398", //Biohazard: Death Island
            "A3446", //Biohazard: Degeneration
            "A42976", //Biohazard: Infinite Darkness
            "A31853", //Biohazard: Vendetta
            "A1269", //Bio Hunter
            "A1520", //Black Jack
            "A2214", //Black Jack 21
            "A1373", //Black Jack Specials: Inochi wo Meguru Yottsu no Kiseki
            "A1521", //Black Jack the Movie
            "A2213", //Black Jack (TV)
            "A4071", //Black Jack (TV): Hizouban Specials
            "A1983", //Black Jack: Futari no Kuroi Isha
            "A10055", //Black Jack: Heian Sento
            "A6246", //Black Jack: Sora kara Kita Kodomo
            "A889", //Black Lagoon
            "A4901", //Black Lagoon: Roberta's Blood Trail
            "A1519", //Black Lagoon: The Second Barrage
            "A6920", //Blade
            "A4151", //Blade of the Immortal
            "A4522", //Bounty Hunter: The Hard
            "A9177", //Burning Blood
            "A3389", //Bus Gamer
            "A17269", //Captain Herlock
            "A4981", //Casshern Sins
            "A1598", //Casshern: Robot Hunter
            "A43763", //Cestvs: The Roman Fighter
            "A978", //Change!! Getter Robo: Sekai Saigo no Hi
            "A2881", //Chinmoku no Kantai
            "A2341", //Choujin Densetsu Urotsukidouji
            "A2360", //Choujin Densetsu Urotsukidouji 2
            "A2345", //Choujin Densetsu Urotsukidouji 5: Kanketsu-hen
            "A2359", //Choujin Densetsu Urotsukidouji Movie
            "A2344", //Choujin Densetsu Urotsukidouji: Inferno Road
            "A2343", //Choujin Densetsu Urotsukidouji: Mirai-hen
            "A37338", //Chuukan Kanriroku Tonegawa
            "A1470", //City Hunter
            "A1471", //City Hunter 2
            "A1472", //City Hunter 3
            "A1473", //City Hunter '91
            "A1474", //City Hunter: Ai to Shukumei no Magnum
            "A1475", //City Hunter: Bay City Wars
            "A1478", //City Hunter: Goodbye My Sweetheart
            "A1476", //City Hunter: Hyakuman Dollar no Inbou
            "A1479", //City Hunter: Kinkyuu Namachuukei!? Kyouakuhan Saeba Ryou no Saigo
            "A37516", //City Hunter Movie: Shinjuku Private Eyes
            "A1477", //City Hunter: The Secret Service
            "A5032", //Cobra the Animation
            "A4646", //Cobra the Animation: The Psycho-Gun
            "A5031", //Cobra the Animation: Time Drive
            "A1676", //Cosmo Warrior Zero
            "A1", //Cowboy Bebop
            "A5", //Cowboy Bebop: Tengoku no Tobira
            "A4037", //Cowboy Bebop: Yose Atsume Blues
            "A2722", //Crusher Joe
            "A2696", //Crusher Joe OVA
            "A1153", //Crying Freeman
            "A1352", //Cyber City Oedo 808
            "A42310", //Cyberpunk: Edgerunners
            "A31050", //Cyborg 009 VS Devilman
            "A18795", //Dagram vs. Round-Facer
            "A7122", //Dai Yamato Zero-gou
            "A1178", //Detonator Orgun
            "A3702", //Detroit Metal City
            "A5065", //Detroit Metal City: Birth of the Metal Devil
            "A2252", //Devilman
            "A35120", //Devilman: Crybaby
            "A37590", //Devilman: Crybaby - Digest Eizou
            "A35952", //Devilman Memorial
            "A2354", //Devilman: Tanjou-hen
            "A2355", //Devilman: Yochou Sirene-hen
            "A1726", //Devil May Cry
            "A2318", //Dog Soldier
            "A5593", //Dogs: Bullets & Carnage
            "A29605", //Double Hard
            "A223", //Dragon Ball
            "A12231", //Dragon Ball: Episode of Bardock
            "A56894", //Dragon Ball Daima
            "A225", //Dragon Ball GT
            "A987", //Dragon Ball GT: Gokuu Gaiden! Yuuki no Akashi wa Suushinchuu
            "A6033", //Dragon Ball Kai
            "A22777", //Dragon Ball Kai (2014)
            "A11359", //Dragon Ball Kai: Mirai ni Heiwa wo! Goku no Tamashii yo Eien ni
            "A502", //Dragon Ball Movie 1: Shen Long no Densetsu
            "A891", //Dragon Ball Movie 2: Majinjou no Nemuri Hime
            "A892", //Dragon Ball Movie 3: Makafushigi Daibouken
            "A893", //Dragon Ball Movie 4: Saikyou e no Michi
            "A5152", //Dragon Ball: Ossu! Kaette Kita Son Gokuu to Nakama-tachi!!
            "A2520", //Dragon Ball Specials
            "A30694", //Dragon Ball Super
            "A36946", //Dragon Ball Super: Broly
            "A38653", //Dragon Ball Super: Broly - Skytree Super
            "A10017", //Dragon Ball: Super Saiya-jin Zetsumetsu Keikaku
            "A48903", //Dragon Ball Super: Super Hero
            "A813", //Dragon Ball Z
            "A6714", //Dragon Ball Z: Atsumare! Gokuu World
            "A894", //Dragon Ball Z Movie 01: Ora no Gohan wo Kaese!!
            "A895", //Dragon Ball Z Movie 02: Kono Yo de Ichiban Tsuyoi Yatsu
            "A896", //Dragon Ball Z Movie 03: Chikyuu Marugoto Choukessen
            "A897", //Dragon Ball Z Movie 04: Super Saiyajin da Son Gokuu
            "A898", //Dragon Ball Z Movie 05: Tobikkiri no Saikyou tai Saikyou
            "A899", //Dragon Ball Z Movie 06: Gekitotsu!! 100-oku Power no Senshi-tachi
            "A900", //Dragon Ball Z Movie 07: Kyokugen Battle!! Sandai Super Saiyajin
            "A901", //Dragon Ball Z Movie 08: Moetsukiro!! Nessen, Ressen, Chougekisen
            "A902", //Dragon Ball Z Movie 09: Ginga Girigiri!! Bucchigiri no Sugoi Yatsu
            "A903", //Dragon Ball Z Movie 10: Kiken na Futari! Super Senshi wa Nemurenai
            "A904", //Dragon Ball Z Movie 11: Super Senshi Gekiha!! Katsu no wa Ore da
            "A905", //Dragon Ball Z Movie 12: Fukkatsu no Fusion!! Gokuu to Vegeta
            "A906", //Dragon Ball Z Movie 13: Ryuuken Bakuhatsu!! Goku ga Yaraneba Dare ga Yaru
            "A14837", //Dragon Ball Z Movie 14: Kami to Kami
            "A25389", //Dragon Ball Z Movie 15: Fukkatsu no "F"
            "A984", //Dragon Ball Z: Saiya-jin Zetsumetsu Keikaku
            "A986", //Dragon Ball Z Special 1: Tatta Hitori no Saishuu Kessen
            "A985", //Dragon Ball Z Special 2: Zetsubou e no Hankou!! Nokosareta Chousenshi - Gohan to Trunks
            "A22695", //Dragon Ball Z: Summer Vacation Special
            "A33947", //Dragon Ball Z: The Real 4-D
            "A42449", //Dragon Ball Z: The Real 4-D at Super Tenkaichi Budokai
            "A52282", //Dragon Ball Z x Kao
            "A22699", //Dragon Ball Z: Zenbu Misemasu Toshi Wasure Dragon Ball Z!
            "A31339", //Drifters
            "A36480", //Drifters (OVA)
            "A33032", //Drifters: Special Edition
            "A38360", //Drifters: The Outlandish Knight
            "A12885", //Dynamic Super Robots Soushingekki
            "A5883", //Examurai Sengoku
            "A26209", //Examurai Sengoku Recap
            "A61543", //Fatal Fury: City of the Wolves
            "A34662", //Fate/Apocrypha
            "A36729", //Fate/Apocrypha Recaps
            "A34321", //Fate/Grand Order: First Order
            "A36915", //Fate/Grand Order: Moonlight/Lostroom
            "A38085", //Fate/Grand Order: Shinsei Entaku Ryouiki Camelot 1 - Wandering; Agateram
            "A38086", //Fate/Grand Order: Shinsei Entaku Ryouiki Camelot 2 - Paladin; Agateram
            "A41497", //Fate/Grand Order: Shuukyoku Tokuiten - Kani Jikan Shinden Solomon
            "A51410", //Fate/Grand Order: Shuukyoku Tokuiten - Kani Jikan Shinden Solomon Specials
            "A38084", //Fate/Grand Order: Zettai Majuu Sensen Babylonia
            "A40206", //Fate/Grand Order: Zettai Majuu Sensen Babylonia - Initium Iter
            "A40761", //Fate/Grand Order: Zettai Majuu Sensen Babylonia Recaps
            "A12565", //Fate/Prototype
            "A356", //Fate/stay night
            "A25537", //Fate/stay night Movie: Heaven's Feel - I. Presage Flower
            "A33049", //Fate/stay night Movie: Heaven's Feel - II. Lost Butterfly
            "A33050", //Fate/stay night Movie: Heaven's Feel - III. Spring Song
            "A6922", //Fate/stay night Movie: Unlimited Blade Works
            "A7559", //Fate/stay night TV Reproduction
            "A22297", //Fate/stay night: Unlimited Blade Works
            "A27821", //Fate/stay night: Unlimited Blade Works Prologue
            "A28701", //Fate/stay night: Unlimited Blade Works 2nd Season
            "A31389", //Fate/stay night: Unlimited Blade Works 2nd Season - Sunny Day
            "A55830", //Fate/strange Fake
            "A53127", //Fate/strange Fake: Whispers of Dawn
            "A40982", //Fate/strange Fake PV
            "A10087", //Fate/Zero
            "A11741", //Fate/Zero 2nd Season
            "A13183", //Fate/Zero Remix
            "A317", //Final Fantasy VII: Advent Children
            "A2952", //Final Fantasy VII: Advent Children Complete
            "A6152", //Final Fantasy VII: Advent Children - Venice Film Festival Footage
            "A408", //Final Fantasy VII: Last Order
            "A4298", //Futari no Joe
            "A21821", //Fuuun Ishin Dai Shogun
            "A37657", //Gakuen Basara
            "A25183", //Gangsta.
            "A31561", //Gangsta. Recap
            "A384", //Gantz
            "A395", //Gantz 2nd Stage
            "A32071", //Gantz:O
            "A28537", //Garo: Guren no Tsuki
            "A33709", //Garo: Guren no Tsuki Special
            "A23311", //Garo: Honoo no Kokuin
            "A32415", //Garo: Honoo no Kokuin - Home
            "A28539", //Garo Movie: Divine Flame
            "A36144", //Garo: Vanishing Line
            "A37032", //Garo: Vanishing Line Recap
            "A504", //Garou Densetsu: The Motion Picture
            "A3154", //Gatchaman
            "A3579", //Getter Robo
            "A43741", //Geter Robo Arc
            "A4486", //Getter Robo G
            "A5292", //Getter Robo Go
            "A42153", //Getter Robo Memorial
            "A8252", //Getter Robo (Movie)
            "A7661", //Giant Killing
            "A18771", //Gifuu Doudou!!: Kanetsugu to Keiji
            "A820", //Ginga Eiyuu Densetsu
            "A3016", //Ginga Eiyuu Densetsu: Arata Naru Tatakai no Overture
            "A42886", //Ginga Eiyuu Densetsu: Die Neue These - Gekitotsu
            "A31433", //Ginga Eiyuu Densetsu: Die Neue These - Kaikou
            "A51805", //Ginga Eiyuu Densetsu: Die Neue These - Sakubou
            "A36369", //Ginga Eiyuu Densetsu: Die Neue These - Seiran 1
            "A36370", //Ginga Eiyuu Densetsu: Die Neue These - Seiran 2
            "A36371", //Ginga Eiyuu Densetsu: Die Neue These - Seiran 3
            "A3371", //Ginga Eiyuu Densetsu Gaiden
            "A3665", //Ginga Eiyuu Densetsu Gaiden (1999)
            "A3015", //Ginga Eiyuu Densetsu Gaiden: Ougon no Tsubasa
            "A3014", //Ginga Eiyuu Densetsu: Waga Yuku wa Hoshi no Taikai
            "A915", //Ginga Densetsu Weed
            "A589", //Ginga Nagareboshi Gin
            "A3907", //Ginga Sengoku Gunyuuden Rai
            "A43692", //Gokushufudou
            "A48707", //Gokushufudou Part 2
            "A53148", //Gokushufudou Season 2
            "A37755", //Golden Douga Gekijou
            "A51149", //Golden Douga Gekijou Specials
            "A36028", //Golden Kamuy
            "A37989", //Golden Kamuy 2nd Season
            "A38710", //Golden Kamuy 2nd Season OVA
            "A40059", //Golden Kamuy 3rd Season
            "A50528", //Golden Kamuy 4th Season
            "A61834", //Golden Kamuy: Inazuma Goutou to Mamushi no Ogin/Shimaenaga
            "A37884", //Golden Kamuy OVA
            "A55772", //Golden Kamuy: Saishuushou
            "A62067", //Golden Kamuy: Sapporo Beer Koujou-hen
            "A4039", //Golgo 13
            "A1761", //Golgo 13: Queen Bee
            "A1760", //Golgo 13: The Professional
            "A49895", //Go! Saitama
            "A1859", //Grappler Baki
            "A287", //Grappler Baki (TV)
            "A551", //Grappler Baki: Saidai Tournament-hen
            "A5658", //Great Mazinger
            "A4385", //Great Mazinger tai Getter Robo
            "A4386", //Great Mazinger tai Getter Robo G: Kuuchuu Dai-Gekitotsu
            "A245", //Great Teacher Onizuka
            "A3481", //Grendizer: Getter Robo G - Great Mazinger Kessen! Daikaijuu
            "A31467", //Grendizer Giga
            "A56189", //Grendizer U
            "A2423", //Grey: Digital Target
            "A5041", //Guin Saga
            "A1706", //Gun Frontier
            "A411", //Gun x Sword
            "A267", //Gungrave
            "A2070", //Guy: Youma Kakusei
            "A3002", //Gyakkyou Burai Kaiji: Ultimate Survivor
            "A10271", //Gyakkyou Burai Kaiji: Hakairoku Hen
            "A263", //Hajime no Ippo
            "A12069", //Hajime no Ippo: Boxer no Kobushi
            "A264", //Hajime no Ippo: Champion Road
            "A265", //Hajime no Ippo: Mashiba vs. Kimura
            "A5258", //Hajime no Ippo: New Challenger
            "A19647", //Hajime no Ippo: Rising
            "A42940", //Hanma Baki: Son of Ogre
            "A51318", //Hanma Baki: Son of Ogre 2nd Season
            "A58510", //Hanma Baki vs. Kengan Ashura
            "A10964", //Heavy
            "A270", //Hellsing
            "A777", //Hellsing Ultimate
            "A11077", //Hellsing: The Dawn
            "A7728", //Hellsing: Psalm of Darkness
            "A6904", //Hellsing I: Digest for Freaks
            "A1645", //Herlock Saga: Nibelung no Yubiwa
            "A59712", //Herlock Saga: Nibelung no Yubiwa Pilot
            "A2178", //Highlander: The Search for Vengeance
            "A967", //Hokuto no Ken
            "A1356", //Hokuto no Ken 2
            "A1358", //Hokuto no Ken Movie
            "A7363", //Hokuto No Ken: Legend of Heroes
            "A2174", //Hokuto no Ken: Raoh Gaiden Gekitou-hen
            "A1773", //Hokuto no Ken: Raoh Gaiden Junai-hen
            "A4549", //Hokuto no Ken: Raoh Gaiden Ten no Haoh
            "A4312", //Hokuto no Ken: Toki-den
            "A3027", //Hokuto no Ken: Yuria-den
            "A5291", //Hokuto no Ken Zero: Kenshiro Den
            "A2050", //Honoo no Tenkousei
            "A6090", //Hon Ran
            "A4808", //Hurricane Polymar
            "A16774", //Inferno Cop
            "A17843", //Inferno Cop: Fact Files
            "A31035", //Inferno Cop Specials
            "A33027", //Infini-T Force
            "A36197", //Infini-T Force Movie: Gatchaman - Saraba Tomo yo
            "A1759", //Jigen Sengokushi: Kuro no Shishi - Jinnai Hen
            "A33400", //Jigoku de Naze Warui
            "A666", //JoJo no Kimyou na Bouken
            "A665", //JoJo no Kimyou na Bouken: Adventure
            "A14719", //JoJo no Kimyou na Bouken (TV)
            "A20899", //JoJo no Kimyou na Bouken Part 3: Stardust Crusaders
            "A26055", //JoJo no Kimyou na Bouken Part 3: Stardust Crusaders 2nd Season
            "A31933", //JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai
            "A37991", //JoJo no Kimyou na Bouken Part 5: Ougon no Kaze
            "A38972", //JoJo no Kimyou na Bouken Part 5: Ougon no Kaze Recaps
            "A48661", //JoJo no Kimyou na Bouken Part 6: Stone Ocean
            "A51367", //JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 2
            "A53273", //JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 3
            "A3603", //JoJo no Kimyou na Bouken: Phantom Blood
            "A41306", //JoJo no Kimyou na Bouken: Phantom Blood Pilot
            "A52593", //JoJo no Kimyou na Bouken: The Real 4-D Dio no Sekai
            "A12413", //Jormungand
            "A13331", //Jormungand: Perfect Order
            "A15735", //Jormungand: Perfect Order Recap
            "A617", //Juubee Ninpuuchou
            "A618", //Juubee Ninpuuchou: Ryuuhougyoku-hen
            "A2389", //Kagaku Ninja-tai Gatchaman
            "A6374", //Kagaku Ninja-tai Gatchaman II
            "A6375", //Kagaku Ninja-tai Gatchaman F
            "A3153", //Kagaku Ninja-tai Gatchaman (Movie)
            "A52588", //Kaijuu 8-gou
            "A59490", //Kaijuu 8-gou: Hoshina no Kyuujitsu
            "A59177", //Kaijuu 8-gou 2nd Season
            "A59489", //Kaijuu 8-gou Movie
            "A496", //Kamui no Ken
            "A2243", //Karasu Tengu Kabuto
            "A3726", //Karasu Tengu Kabuto: Ougon no Me no Kemono
            "A1777", //Kaze no Tairiku
            "A24439", //Kekkai Sensen
            "A34451", //Kekkai Sensen & Beyond
            "A37364", //Kekkai Sensen & Beyond OVA
            "A30915", //Kekkai Sensen: Soresaemo Saitei de Saikou na Hibi
            "A32574", //Kekkai Sensen: Ousama no Restaurant no Ousama
            "A36903", //Kengan Ashura
            "A40269", //Kengan Ashura Part 2
            "A51369", //Kengan Ashura Season 2
            "A56704", //Kengan Ashura Season 2 Part 2
            "A33", //Kenpuu Denki Berserk
            "A96", //Kidou Butouden G Gundam
            "A31251", //Kidou Senshi Gundam: Tekketsu no Orphans
            "A33051", //Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season
            "A62264", //Kidou Senshi Gundam: Tekketsu no Orphans - Makuai no Kusabi
            "A51569", //Kidou Senshi Gundam: Tekketsu no Orphans - Tokubetsu-hen
            "A62805", //Kidou Senshi Gundam: Tekketsu no Orphans - Urdr Hunt: Chiisana Chousensha no Kiseki
            "A31973", //Kidou Senshi Gundam Thunderbolt
            "A34391", //Kidou Senshi Gundam Thunderbolt 2nd Season
            "A35949", //Kidou Senshi Gundam Thunderbolt: Bandit Flower
            "A33221", //Kidou Senshi Gundam Thunderbolt: December Sky
            "A38000", //Kimetsu no Yaiba
            "A55701", //Kimetsu no Yaiba: Hashira Geiko-hen
            "A51019", //Kimetsu no Yaiba: Katanakaji no Sato-hen
            "A49926", //Kimetsu no Yaiba: Mugen Ressha-hen
            "A47778", //Kimetsu no Yaiba: Yuukaku-hen
            "A40456", //Kimetsu no Yaiba Movie: Mugen Ressha-hen
            "A59192", //Kimetsu no Yaiba Movie 1: Mugenjou-hen - Akaza Sairai
            "A12031", //Kingdom
            "A17389", //Kingdom 2nd Season
            "A40682", //Kingdom 3rd Season
            "A50160", //Kingdom 4th Season
            "A53223", //Kingdom 5th Season
            "A61517", //Kingdom 6th Season
            "A825", //King of Fighters: Another Day
            "A34678", //Kingsglaive: FFXV Fan Kansha Tokubetsu Movie
            "A3272", //Kinnikuman
            "A3273", //Kinnikuman (1984)
            "A3276", //Kinnikuman: Gyakushuu! Uchuu Kakure Choujin
            "A3277", //Kinnikuman: Haresugata! Seigi Choujin
            "A54730", //Kinnikuman: Kanpeki Choujin Shiso-hen
            "A59162", //Kinnikuman: Kanpeki Choujin Shiso-hen Episode 0
            "A59914", //Kinnikuman: Kanpeki Choujin Shiso-hen Season 2
            "A3281", //Kinnikuman: Kinnikusei Oui Soudatsu-hen
            "A3278", //Kinnikuman: New York Kikiippatsu!
            "A3275", //Kinnikuman: Seigi Choujin vs. Kodai Choujin
            "A3279", //Kinnikuman: Seigi Choujin vs. Senshi Choujin
            "A3280", //Kinnikuman: Kessen! Shichinin no Seigi Choujin vs. Uchuu Nobushi
            "A3274", //Kinnikuman: Ooabare! Segi Choujin
            "A1707", //Kinnikuman II Sei
            "A12279", //Kinnikuman II Sei Muscle: Ninjin Soudatsu sen! Choujin Daisensou
            "A6310", //Kinnikuman II Sei: Second Generations
            "A5967", //Kinnikuman II Sei: Ultimate Muscle
            "A5968", //Kinnikuman II Sei: Ultimate Muscle 2
            "A2048", //Kikou Ryohei Mellowlink
            "A33191", //Kishibe Rohan wa Ugokanai
            "A1573", //Kishin Douji Zenki
            "A5828", //Kishin Douji Zenki Gaiden: Anki Kitan
            "A766", //Kishin Houkou Demonbane
            "A1067", //Kishin Houkou Demonbane (TV)
            "A23753", //Kishin Houkou Demonbane (TV) Specials
            "A3064", //Kizuoibito
            "A2346", //Koroshiya 1 The Animation: Episode 0
            "A6293", //Koukou Butouden Crows
            "A2797", //Koukou Tekken-den Tough
            "A2737", //Kouryuu no Mimi: Mina no Shou
            "A4198", //Koutetsu Jeeg
            "A2157", //Koutetsushin Jeeg
            "A851", //Kyou kara Ore wa!!
            "A2293", //Kyoushoku Soukou Guyver
            "A6016", //Kyoushoku Soukou Guyver (1989)
            "A1374", //Kyoushoku Soukou Guyver (2005)
            "A1336", //Kyoushoku Soukou Guyver II
            "A434", //Legend of Lemnear: Kyokuguro no Tsubasa Valkisas
            "A37506", //Legend of Lemnear: Kyokuguro no Tsubasa Valkisas Pilot Film
            "A3676", //Machine Robo: Revenge of Chronos
            "A6577", //Machine Robo: Leina, The Legend of Wolf Blade
            "A474", //Macross Plus
            "A1211", //Macross Plus Movie Edition
            "A3448", //Mad★Bull 34
            "A1455", //Makai Tenshou
            "A499", //Makai Toshi Shinjuku
            "A1628", //Maou Dante
            "A6061", //Maryuu Senki
            "A2253", //Mazinger Z
            "A10625", //Mazinger Z (Movie)
            "A34820", //Mazinger Z Movie: Infinity
            "A3898", //Mazinger Z tai Devilman
            "A4388", //Mazinger Z tai Dr. Hell
            "A4406", //Mazinger Z tai Ankoku Daishougun
            "A1064", //Mazinkaiser
            "A8666", //Mazinkaiser SKL
            "A2734", //Mazinkaiser: Shitou! Ankoku Dai Shogun
            "A1286", //MD Geist II: Death Force
            "A36563", //Megalo Box
            "A37703", //Megalo Box Specials
            "A16255", //Meisou-Ou Border
            "A1879", //Midnight Eye: Gokuu
            "A1880", //Midnight Eye: Gokuu II
            "A5386", //Miyamoto Musashi: Souken ni Haseru Yume
            "A1941", //Moonlight Mile 1st Season: Lift Off
            "A2929", //Moonlight Mile 2nd Season: Touch Down
            "A6946", //Mudazumo Naki Kaikaku: The Legend of Koizumi
            "A39806", //Mugen no Juunin: Immortal
            "A4617", //Nana Toshi Monogatari: Hokkyokukai Sensen
            "A6030", //Needless
            "A8935", //Nekketsu Uchuujin
            "A36517", //Ninja Batman
            "A58964", //Ninja Batman tai Yakuza League
            "A619", //Ninja Ryuukenden
            "A23605", //Ninja Slayer From Animation
            "A19855", //Nobunagun
            "A39539", //No Guns Life
            "A40529", //No Guns Life 2nd Season
            "A40729", //Nomad: Megalo Box 2
            "A48678", //Nomad: Megalo Box 2 Short Anime
            "A7836", //Notari Matsutarou
            "A5040", //One Outs
            "A30276", //One Punch Man
            "A34134", //One Punch Man 2nd Season
            "A39652", //One Punch Man 2nd Season Commemorative Special
            "A39705", //One Punch Man 2nd Season Specials
            "A62653", //One Punch Man 2nd Season: Ichigeki de Wakaru! Maji Furikaeri!
            "A52807", //One Punch Man 3
            "A31704", //One Punch Man: Road to Hero
            "A31772", //One Punch Man Specials
            "A33983", //Onihei
            "A28297", //Ore Monogatari!!
            "A6031", //Osu!! Karate Bu
            "A17903", //Otokogi
            "A35848", //Promare
            "A39991", //Promare: Galo-hen
            "A40313", //Promare: Lio-hen
            "A1027", //Psychic Force
            "A6114", //Rainbow: Nisha Rokubou no Shichinin
            "A6675", //Redline
            "A11483", //Redline Pilot
            "A917", //Riding Bean
            "A3509", //Riki-Oh: Toukatsu Jigoku
            "A3511", //Riki-Oh 2: Horobi no Ko
            "A23", //Ring ni Kakero 1
            "A7793", //Ring ni Kakero 1: Kage Dou-hen
            "A1771", //Ring ni Kakero 1: Nichibei Kessen-hen
            "A34307", //Ring ni Kakero 1 Pilot
            "A10346", //Ring ni Kakero 1: Sekai Taikai-hen
            "A9077", //Rokudenashi Blues
            "A9078", //Rokudenashi Blues 1993
            "A6591", //Rurouni Kenshin DVD-BOX Special Ending
            "A45", //Rurouni Kenshin: Meiji Kenkaku Romantan
            "A50613", //Rurouni Kenshin: Meiji Kenkaku Romantan (2023)
            "A46", //Rurouni Kenshin: Meiji Kenkaku Romantan - Ishinshishi e no Chinkonka
            "A57554", //Rurouni Kenshin: Meiji Kenkaku Romantan - Kyoto Douran
            "A401", //Rurouni Kenshin: Meiji Kenkaku Romantan - Seisou-hen
            "A11441", //Rurouni Kenshin: Meiji Kenkaku Romantan - Shin Kyoto-hen
            "A44", //Rurouni Kenshin: Meiji Kenkaku Romantan - Tsuioku-hen
            "A10334", //Rurouni Kenshin Recap
            "A9716", //Rurouni Kenshin: Review Special
            "A12067", //Rurouni Kenshin Special
            "A4664", //Rurouni Kenshin: Special Techniques
            "A1254", //Saint Seiya
            "A1256", //Saint Seiya: Jashin Eris
            "A1258", //Saint Seiya: Kamigami no Atsuki Tatakai
            "A36040", //Saint Seiya: Knights of the Zodiac
            "A52273", //Saint Seiya: Knights of the Zodiac - Battle Sanctuary
            "A53748", //Saint Seiya: Knights of the Zodiac - Battle Sanctuary Part 2
            "A10687", //Saint Seiya: Legend of Sanctuary
            "A3515", //Saint Seiya: Meiou Hades Elysion-hen
            "A1257", //Saint Seiya: Meiou Hades Juuni Kyuu-hen
            "A6154", //Saint Seiya: Meiou Hades Juuni Kyuu-hen - Yomigaerishi Gold Saint-tachi no Shinwa
            "A1253", //Saint Seiya: Meiou Hades Meikai-hen
            "A12929", //Saint Seiya Omega
            "A6153", //Saint Seiya Recap
            "A1260", //Saint Seiya: Saishuu Seisen no Senshi-tachi
            "A34539", //Saint Seiya: Saintia Shou
            "A1255", //Saint Seiya: Shinku no Shounen Densetsu
            "A28215", //Saint Seiya: Soul of Gold
            "A1259", //Saint Seiya: Tenkai-hen Josou - Overture
            "A6171", //Saint Seiya: The Lost Canvas - Meiou Shinwa
            "A9130", //Saint Seiya: The Lost Canvas - Meiou Shinwa 2
            "A114", //Sakigake!! Cromartie Koukou
            "A2903", //Sakigake!! Otokojuku
            "A4031", //Sakigake!! Otokojuku Movie
            "A1608", //Salaryman Kintarou
            "A166", //Samurai 7
            "A205", //Samurai Champloo
            "A33734", //Samurai Noodles: The Originator
            "A2698", //Sanctuary
            "A3067", //Saraba Uchuu Senkan Yamato: Ai no Senshi-tachi
            "A168", //s.CRY.ed
            "A10592", //s.CRY.ed Alteration I: Tao
            "A12223", //s.CRY.ed Alteration II: Quan
            "A400", //Seihou Bukyou Outlaw Star
            "A4650", //Seihou Bukyou Outlaw Star Pilot
            "A33713", //Seihou Bukyou Outlaw Star Specials
            "A3882", //Seijuuki Cyguard
            "A5355", //Sengoku Basara
            "A23201", //Sengoku Basara: Judge End
            "A9745", //Sengoku Basara Movie: The Last Party
            "A6581", //Sengoku Basara: Setonai no Gekitotsu! Hi wo Fuku Umi no Daiyousai - Fugaku!!
            "A6634", //Sengoku Basara Two
            "A10483", //Sengoku Basara Two: Ryuko, Itadaki no Chikai! Atsuki Mirai e Kakeru Tamashii!!
            "A3005", //Shadow Skill
            "A679", //Shadow Skill (1996)
            "A678", //Shadow Skill: Eigi
            "A1099", //Shadow Skill: Kurudaryuu Kousatsuhou no Himitsu
            "A18683", //Shibai Taroka
            "A2216", //Shigurui
            "A1559", //Shijou Saikyou no Deshi Kenichi
            "A11813", //Shijou Saikyou no Deshi Kenichi OVA
            "A24029", //Shijou Saikyou no Deshi Kenichi Specials
            "A884", //Shin Angyo Onshi
            "A2342", //Shin Choujin Densetsu Urotsukidouji Mataiden
            "A2978", //Shin Getter Robo
            "A938", //Shin Getter Robo tai Neo Getter Robo
            "A1357", //Shin Hokuto no Ken
            "A3398", //Shin Hurricane Polymar
            "A5485", //Shin Mazinger Shougeki! Z-Hen
            "A9749", //Shin Otokogi
            "A4810", //Shinzou Ningen Casshern
            "A1913", //Shonan Junai Gumi!
            "A52642", //Shounen Sunday CM: Shijou Saikyou no Deshi Kenichi
            "A1451", //Shuranosuke Zanmaken: Shikamamon no Otoko
            "A1227", //Shuten Douji
            "A2161", //Skull Man
            "A170", //Slam Dunk
            "A2499", //Slam Dunk: Hoero Basketman-damashii Hanamichi to Rukawa no Atsuki Natsu
            "A52159", //Slam Dunk: Ketsui no Shouhoku Basket-bu
            "A1764", //Slam Dunk (Movie)
            "A2498", //Slam Dunk: Shouhoku Saidai no Kiki Moero Sakuragi Hanamichi
            "A1861", //Slam Dunk: Zenkoku Seiha Da Sakuragi Hanamichi
            "A1285", //Soukihei MD Geist
            "A2582", //Soukou Kihei Votoms
            "A2584", //Soukou Kihei Votoms: Big Battle
            "A8017", //Soukou Kihei Votoms: Gen-ei Hen
            "A2586", //Soukou Kihei Votoms: Kakuyaku taru Itan
            "A8250", //Soukou Kihei Votoms: Koei Futatabi
            "A3256", //Soukou Kihei Votoms: Pailsen Files
            "A7536", //Soukou Kihei Votoms: Pailsen Files the Movie
            "A2585", //Soukou Kihei Votoms: Red Shoulder Document - Yabou no Roots
            "A2583", //Soukou Kihei Votoms: The Last Red Shoulder
            "A12439", //Soukou Kihei Votoms: Vol.1 Stories of the 'A.T. Votoms'
            "A12441", //Soukou Kihei Votoms: Vol.2 Highlights of the 'A.T. Votoms'
            "A12337", //Soukou Kihei Votoms Recaps
            "A1345", //Soujuu Senshi Psychic Wars
            "A5226", //Souten Kouro
            "A1541", //Souten no Ken
            "A36655", //Souten no Ken: Regenesis
            "A37388", //Souten no Ken: Regenesis 2nd Season
            "A3864", //Souten no Ken Specials
            "A2452", //Space Adventure Cobra
            "A2451", //Space Cobra
            "A5742", //Space Cobra Pilot
            "A20057", //Space☆Dandy
            "A25635", //Space☆Dandy Picture Drama
            "A23327", //Space☆Dandy 2nd Season
            "A30246", //Space☆Dandy 2nd Season Picture Drama
            "A1081", //Space Pirate Captain Herlock: Outside Legend - The Endless Odyssey
            "A420", //Spriggan
            "A39489", //Spriggan (ONA)
            "A14629", //Starship Troopers: Invasion
            "A36194", //Starship Troopers: Red Planet
            "A61469", //Steel Ball Run: JoJo no Kimyou na Bouken
            "A3086", //Strait Jacket
            "A2418", //Stranger: Mukou Hadan
            "A14617", //Stranger: Mukou Hadan Pilot
            "A950", //Street Fighter Alpha: Generations
            "A876", //Street Fighter II V
            "A1362", //Street Fighter II Movie
            "A17379", //Street Fighter II: Yomigaeru Fujiwara-Kyou - Toki wo Kaketa Fighter-tachi
            "A41873", //Street Fighter IV: Aftermath
            "A5369", //Street Fighter IV: Aratanaru Kizuna
            "A979", //Street Fighter Zero The Animation
            "A37885", //Super Dragon Ball Heroes
            "A3252", //Super Express Mazinger 7
            "A1603", //Super Robot Taisen OG: Divine Wars
            "A4075", //Super Robot Taisen OG: Divine Wars Special
            "A1544", //Super Robot Taisen OG: The Animation
            "A9241", //Super Robot Taisen OG: The Inspector
            "A8026", //Super Street Fighter IV
            "A2257", //Taiyou no Kiba Dagram
            "A4427", //Tatakae!! Ramenman
            "A16728", //Tatakae!! Ramenman (Movie)
            "A537", //Tekken
            "A51347", //Tekken: Bloodline
            "A10702", //Tekken: Blood Vengeance
            "A2001", //Tengen Toppa Gurren Lagann
            "A5947", //Tengen Toppa Gurren Lagann Movie: Lagann-hen Special - Viral no Amai Yume
            "A4107", //Tengen Toppa Gurren Lagann Movie: Gurren-hen
            "A4565", //Tengen Toppa Gurren Lagann Movie: Lagann-hen
            "A3352", //Tengen Toppa Gurren Lagann: Mitee Mono wa Miteen da!!
            "A10622", //Tengen Toppa Gurren Lagann: Ore no Gurren wa Pikka-Pika!!
            "A4705", //Tengen Toppa Gurren Lagann Parallel Works
            "A8348", //Tengen Toppa Gurren Lagann Parallel Works 2
            "A174", //Tenjou Tenge
            "A760", //Tenjou Tenge: The Past Chapter
            "A448", //Tenjou Tenge: The Ultimate Fight
            "A23723", //Teppen
            "A22687", //Terra Formars
            "A22689", //Terra Formars: Bugs 2-hen
            "A34532", //Terra Formars: Earth-hen
            "A31430", //Terra Formars Revenge
            "A2500", //The Cockpit
            "A45649", //The First Slam Dunk
            "A58047", //The King of Fighters: Awaken PV
            "A35204", //The King of Fighters: Destiny
            "A48582", //The King of Fighters XV
            "A4714", //The Rapeman
            "A3009", //Tiger Mask
            "A18061", //Tiger Mask (Movie)
            "A18063", //Tiger Mask Fuku Men League Sen
            "A5832", //Tiger Mask Nisei
            "A32881", //Tiger Mask W
            "A1703", //Tokyo Tribe 2
            "A10033", //Toriko
            "A10074", //Toriko 3D: Kaimaku Gourmet Adventure!!
            "A11787", //Toriko: Barbarian Ivy wo Hokaku Seyo!
            "A6941", //Toriko: Jump Super Anime Tour 2009 Special
            "A17699", //Toriko Movie: Bishokushin no Special Menu
            "A658", //Touhai Densetsu Akagi: Yami ni Maiorita Tensai
            "A6", //Trigun
            "A4106", //Trigun: Badlands Rumble
            "A52093", //Trigun Stampede
            "A54863", //Trigun Stargaze
            "A1000", //Uchuu Kaizoku Captain Herlock
            "A2470", //Uchuu Kaizoku Captain Herlock: Arcadia-gou no Nazo
            "A1458", //Uchuu no Kishi Tekkaman
            "A1459", //Uchuu no Kishi Tekkaman Blade
            "A1460", //Uchuu no Kishi Tekkaman Blade II
            "A2299", //Uchuu no Kishi Tekkaman Blade OVA: Burning Clock
            "A2301", //Uchuu no Kishi Tekkaman Blade OVA: Missing Link
            "A2300", //Uchuu no Kishi Tekkaman Blade OVA: Twin Blood
            "A2516", //Uchuu no Senshi
            "A1650", //Uchuu Senkan Yamato
            "A1651", //Uchuu Senkan Yamato 2
            "A12029", //Uchuu Senkan Yamato 2199
            "A23249", //Uchuu Senkan Yamato 2199: Hoshimeguru Hakobune
            "A23931", //Uchuu Senkan Yamato 2199: Tsuioku no Koukai
            "A33064", //Uchuu Senkan Yamato 2202: Ai no Senshi-tachi
            "A40389", //Uchuu Senkan Yamato 2205: Aratanaru Tabidachi
            "A3071", //Uchuu Senkan Yamato: Aratanaru Tabidachi
            "A7144", //Uchuu Senkan Yamato: Fukkatsu-hen
            "A53625", //Uchuu Senkan Yamato II: Yamato yo Eien Nare
            "A1652", //Uchuu Senkan Yamato III
            "A53604", //Uchuu Senkan Yamato III: Taiyoukei no Hakai
            "A3072", //Uchuu Senkan Yamato: Kanketsu-hen
            "A711", //Uchuu Senkan Yamato (Movie)
            "A37082", //Uchuu Senkan Yamato Pilot Film
            "A40554", //"Uchuu Senkan Yamato" to Iu Jidai: Seireki 2202-nen no Sentaku
            "A1985", //UFO Robo Grendizer
            "A4387", //UFO Robo Grendizer tai Great Mazinger
            "A36858", //Usuzumizakura: Garo
            "A732", //Vampire Hunter D
            "A543", //Vampire Hunter D: Bloodlust
            "A1765", //Vampire Sensou
            "A48617", //Vegeta Super Yasaijin ni Narou-hen
            "A37521", //Vinland Saga
            "A49387", //Vinland Saga Season 2
            "A54463", //Vinland Saga Season 2: Drowning in the Shadow
            "A55272", //Vinland Saga Season 2: Same Old Story
            "A1341", //Violence Jack: Harlem Bomber-hen
            "A1343", //Violence Jack: Hell's Wind-hen
            "A1342", //Violence Jack: Jigoku Gai-hen
            "A961", //Virtua Fighter
            "A36937", //Virtua Fighter: Costomize Clip
            "A1560", //Voltage Fighter Gowcaizer
            "A2202", //Waga Seishun no Arcadia
            "A2203", //Waga Seishun no Arcadia: Mugen Kidou SSX
            "A1959", //Wild 7
            "A1745", //Wild 7 Another Bouryaku Unga
            "A6918", //Wolverine
            "A32534", //Xiyouji zhi Dasheng Guilai
            "A6718", //Yamato 2520
            "A3069", //Yamato yo Towa ni
            "A50855", //Yamato yo, Towa ni: Rebel 3199
            "A43697", //Yasuke
            "A10113", //Yokohama Meibutsu: Otoko Katayama-gumi!
            "A32615", //Youjo Senki
            "A37055", //Youjo Senki Movie
            "A49236", //Youjo Senki: Sabaku no Pasta Daisakusen
            "A34904", //Youjo Senki: Senkyou Houkoku
            "A1107", //Youjuu Toshi
            "A1484", //Youma
            "A30740", //Young Black Jack
            "A1677", //Young Herlock wo Oe! Cosmo Warrior Zero Gaiden
            "A1766", //Youseiki Suikoden
            "A3325", //Yuusha Exkaiser
            "A890", //Yuusha-Ou GaoGaiGar
            "A1382", //Yuusha-Ou GaoGaiGar Final
            "A4416", //Yuusha-Ou GaoGaiGar Final Grand Glorious Gathering
            "A392", //Yuu☆Yuu☆Hakusho
            "A2125", //Yuu☆Yuu☆Hakusho: Eizou Hakusho - Ankoku Bujutsukai no Shou
            "A2126", //Yuu☆Yuu☆Hakusho: Eizou Hakusho II
            "A42880", //Yuu☆Yuu☆Hakusho: Eizou Hakusho - Opening Ending Encyclopedia
            "A883", //Yuu☆Yuu☆Hakusho: Meikai Shitou-hen - Honoo no Kizuna
            "A882", //Yuu☆Yuu☆Hakusho (Movie)
            "A36951", //Yuu☆Yuu☆Hakusho: Two Shots/Noru ka Soru ka
            "A11837" //Zetman
        ]
    }
}


================================================
FILE: data/achievement/anime-historical.json
================================================
{
    "media": "A",
    "order": 103,
    "achievements":
    [
        {
            "threshold": "20-39",
            "id": "anime-historical-1",
            "level": "Historical: level 1",
            "title": "History Class",
            "desc": "History doesn't have to be boring. There's a lot to learn."
        },
        {
            "threshold": "40-79",
            "id": "anime-historical-2",
            "level": "Historical: level 2",
            "title": "A Look at Passing Time",
            "desc": "Instead of dreaming of the future, you prefer to look back at the past."
        },
        {
            "threshold": "80-159",
            "id": "anime-historical-3",
            "level": "Historical: level 3",
            "title": "Archaeologist",
            "desc": "You have learned that sometimes going further just isn't worth it. And yet you try."
        },
        {
            "threshold": "160+",
            "id": "anime-historical-4",
            "level": "Historical: level MAX",
            "title": "Time Machine",
            "desc": "Kids these days are boring. You'd rather watch something heartwarming about siblings catching fireflies."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 13,
        "titles":
        [
            "A12561", //Benkei tai Ushiwaka
            "A2800", //Candy Candy
            "A723", //Candy Candy (Movie)
            "A2802", //Candy Candy: Candy no Natsuyasumi
            "A2801", //Candy Candy: Haru no Yobigoe
            "A2830", //Chibikko Remi to Meiken Kapi
            "A724", //Enzai
            "A2553", //Flanders no Inu
            "A2623", //Flanders no Inu (Movie)
            "A24679", //Flanders no Inu Specials
            "A3381", //Fushigi no Umi no Nadia Specials
            "A7775", //Futatsu no Kurumi
            "A26283", //Gin no Rousokutate
            "A336", //Ginyuu Mokushiroku Meine Liebe
            "A1663", //Haha wo Tazunete Sanzenri
            "A23585", //Haha wo Tazunete Sanzenri Specials
            "A2405", //Hello! Lady Lynn
            "A4800", //Huckleberry Finn Monogatarii
            "A2831", //Ie Naki Ko (Movie)
            "A2829", //Ie Naki Ko Remi
            "A10471", //Ie Naki Ko Remi Specials
            "A25087", //Ie Naki Ko Remi Specials (2001)
            "A249", //InuYasha
            "A6811", //InuYasha: Kanketsu-hen
            "A4886", //InuYasha: Kuroi Tessaiga
            "A5900", //Jean Valjean Monogatari
            "A618", //Juubee Ninpuuchou: Ryuuhougyoku-hen
            "A5305", //Koihime†Musou OVA
            "A6707", //Kuroshitsuji II
            "A9136", //Kuroshitsuji II Specials
            "A8068", //Kuroshitsuji Picture Drama
            "A6163", //Kuroshitsuji Recap
            "A6793", //Kuroshitsuji Special
            "A9773", //Lady Lady!! (1988)
            "A4926", //Marco: Haha wo Tazunete Sanzenri
            "A912", //Ninku
            "A16345", //Ninku: Knife no Bohyou
            "A8487", //Onigamiden
            "A6884", //Ookami to Koushinryou II Specials
            "A9716", //Rurouni Kenshin: Review Special
            "A4664", //Rurouni Kenshin: Special Techniques
            "A839", //Samurai Spirits 2: Asura Zanmaden
            "A7774", //Shin Koihime†Musou OVA
            "A8635", //Shin Koihime†Musou: Live Revolution
            "A10297", //Shin Koihime†Musou: Otome Tairan OVA
            "A173", //Tactics
            "A8961", //Tono to Issho: Ippunkan Gekijou
            "A5917", //Tsuru ni Notte: Tomoko no Bouken
            "A4132" //Wakakusa no Yon Shimai
        ]
    }
}


================================================
FILE: data/achievement/anime-horror-thriller.json
================================================
{
    "media": "A",
    "order": 104,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "anime-horror-thriller-1",
            "level": "Horror: level 1",
            "title": "Paranoia Fuel",
            "desc": "It's not like you needed to sleep tonight, anyway."
        },
        {
            "threshold": "20-39",
            "id": "anime-horror-thriller-2",
            "level": "Horror: level 2",
            "title": "Too Many Teeth",
            "desc": "You know something is following you. You just don't know what."
        },
        {
            "threshold": "40-79",
            "id": "anime-horror-thriller-3",
            "level": "Horror: level 3",
            "title": "Extreme Phobia",
            "desc": "You are terrified; you are transfixed."
        },
        {
            "threshold": "80+",
            "id": "anime-horror-thriller-4",
            "level": "Trauma: level MAX",
            "title": "Flowers of Flesh and Blood",
            "desc": "It's far too late, now."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 14
    }
}


================================================
FILE: data/achievement/anime-light-novel.json
================================================
{
    "media": "A",
    "order": 301,
    "achievements": [
        {
            "threshold": "20-39",
            "id": "anime-light-novel-1",
            "level": "Light Novel: level 1",
            "title": "First Chapter",
            "desc": "Some stories need more progress. Yours is one of those."
        },
        {
            "threshold": "40-79",
            "id": "anime-light-novel-2",
            "level": "Light Novel: level 2",
            "title": "Searcher",
            "desc": "Everyone has a role. Which is yours?"
        },
        {
            "threshold": "80-159",
            "id": "anime-light-novel-3",
            "level": "Light Novel: level 3",
            "title": "The Realization",
            "desc": "What matters is in the heart. You feel like you can start to see everyone's intentions just by looking at them."
        },
        {
            "threshold": "160+",
            "id": "anime-light-novel-4",
            "level": "Light Novel: level MAX",
            "title": "New Self",
            "desc": "You have acquired the storytelling and character development required to move your world forward."
        }
    ],
    "requirement": {
        "type": "source-title",
        "source": 7
    }
}


================================================
FILE: data/achievement/anime-mahou-shoujo.json
================================================
{
    "media": "A",
    "order": 105,
    "achievements":
    [
        {
            "threshold": "6-11",
            "id": "anime-mahou-shoujo-1",
            "level": "Mahou Shoujo: level 1",
            "title": "Signed the Contract",
            "desc": "Became a magical girl and started saving the world, step by step."
        },
        {
            "threshold": "12-23",
            "id": "anime-mahou-shoujo-2",
            "level": "Mahou Shoujo: level 2",
            "title": "Magic Is My Middle Name",
            "desc": "Transformed into a magical girl: level two. In the name of the Moon, I will punish you!"
        },
        {
            "threshold": "24-47",
            "id": "anime-mahou-shoujo-3",
            "level": "Mahou Shoujo: level 3",
            "title": "Too Magical to Comprehend",
            "desc": "Watched so many mahou shoujo anime that you sparkle occasionally."
        },
        {
            "threshold": "48+",
            "id": "anime-mahou-shoujo-4",
            "level": "Mahou Shoujo: MAX POWER",
            "title": "Are You a Wizard",
            "desc": "All limiters removed. You can call yourself a god, a wizard, or whatever you wish. You set the rules."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 66
    }
}


================================================
FILE: data/achievement/anime-mecha.json
================================================
{
    "media": "A",
    "order": 106,
    "achievements":
    [
        {
            "threshold": "20-39",
            "id": "anime-mecha-1",
            "level": "Mecha: level 1",
            "title": "Me? PILOT This Thing?!",
            "desc": "A secret organization wants you to pilot a huge mecha. Can you do it?"
        },
        {
            "threshold": "40-79",
            "id": "anime-mecha-2",
            "level": "Mecha: level 2",
            "title": "Engineer",
            "desc": "After watching over 40 mecha anime you should be able to build your own mobile suit. Remember not to kill the rest of us."
        },
        {
            "threshold": "80-159",
            "id": "anime-mecha-3",
            "level": "Mecha: level 3",
            "title": "Mechazawa",
            "desc": "Having watched over 80 mecha anime, you've probably become a robot already. Nice job, hero."
        },
        {
            "threshold": "160+",
            "id": "anime-mecha-4",
            "level": "Mecha: level MAX",
            "title": "Pierce the HEAVENS!",
            "desc": "Do the impossible. See the invisible. ROW ROW FIGHT THE POWAH! You just sang that in your head, didn't you?"
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 18
    }
}


================================================
FILE: data/achievement/anime-music.json
================================================
{
    "media": "A",
    "order": 107,
    "achievements":
    [
        {
            "threshold": "20-39",
            "id": "anime-music-1",
            "level": "Music: level 1",
            "title": "Gettin' Your Keys On!",
            "desc": "You don't know what you've just listened to, but you like it."
        },
        {
            "threshold": "40-79",
            "id": "anime-music-2",
            "level": "Music: level 2",
            "title": "This Is Even Better Live",
            "desc": "Proudly display the badges you have earned in the fancafe."
        },
        {
            "threshold": "80-159",
            "id": "anime-music-3",
            "level": "Music: level 3",
            "title": "Dreaming of the City",
            "desc": "Your musical knowledge has expanded so much you are tempted to make a career out of it."
        },
        {
            "threshold": "160+",
            "id": "anime-music-4",
            "level": "Music: level SUPERSTAR",
            "title": "Hall of Fame",
            "desc": "The stage is now your second home."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 19
    }
}


================================================
FILE: data/achievement/anime-mystery.json
================================================
{
    "media": "A",
    "order": 108,
    "achievements":
    [
        {
            "threshold": "14-27",
            "id": "anime-mystery-1",
            "level": "Mystery: level 1",
            "title": "Growing Suspicions",
            "desc": "It's suspicious because nothing looks suspicious, and if it looks suspicious from the start it's obviously suspicious."
        },
        {
            "threshold": "28-55",
            "id": "anime-mystery-2",
            "level": "Mystery: level 2",
            "title": "Detective's Assistant",
            "desc": "Now it's your business to know what other people don't know too."
        },
        {
            "threshold": "56-111",
            "id": "anime-mystery-3",
            "level": "Mystery: level 3",
            "title": "Genius Detective",
            "desc": "You're already a genius at unraveling mysteries... but how is it possible that everywhere you go someone ends up dead?"
        },
        {
            "threshold": "112+",
            "id": "anime-mystery-4",
            "level": "Mystery: level MAX",
            "title": "Golden Truth",
            "desc": "You can solve any mystery by now. The path to the Golden Land has already been revealed to you."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 7
    }
}


================================================
FILE: data/achievement/anime-original.json
================================================
{
    "media": "A",
    "order": 301,
    "achievements": [
        {
            "threshold": "20-39",
            "id": "anime-original-1",
            "level": "Original: level 1",
            "title": "Uncharted Waters",
            "desc": "You have just stumbled across a wonderful, strange new world."
        },
        {
            "threshold": "40-79",
            "id": "anime-original-2",
            "level": "Original: level 2",
            "title": "Into the Jungle",
            "desc": "The deeper you go, the less you want out."
        },
        {
            "threshold": "80-159",
            "id": "anime-original-3",
            "level": "Original: level 3",
            "title": "Center of the Earth",
            "desc": "You have forgotten about the outside world; nature has assimilated you. An apple falls - not only have you flowered, you have produced fruit."
        },
        {
            "threshold": "160+",
            "id": "anime-original-4",
            "level": "Original: level MAX",
            "title": "Transcendence",
            "desc": "You have been returned to the primordial ocean. From the highest point in the sky, you can peer into every universe, and lose yourself in an infinity of stories."
        }
    ],
    "requirement": {
        "type": "source-title",
        "source": 1
    }
}


================================================
FILE: data/achievement/anime-pervert-0.json
================================================
{
    "media": "A",
    "order": 307,
    "achievements":
    [
        {
            "threshold": "0-24.99",
            "id": "anime-pervert-0",
            "level": "Saint",
            "title": "Innocent One",
            "desc": "Puritan, oblivious, or serial killer in the making? Either way, you made it through No Man's Land without glimpsing a single bra. Good job!",
            "tooltip": "{subject}% pervert"
        }
    ],
    "requirement":
    {
        "type": "pervert"
    }
}


================================================
FILE: data/achievement/anime-pervert-1.json
================================================
{
    "media": "A",
    "order": 307,
    "achievements":
    [
        {
            "threshold": "25-49.99",
            "id": "anime-pervert-1",
            "level": "\"Plot\"",
            "title": "I Watch Anime Only for the Plot...",
            "desc": "It's not your fault that there is so much fan service... Right?",
            "tooltip": "{subject}% pervert"
        }
    ],
    "requirement":
    {
        "type": "pervert"
    }
}


================================================
FILE: data/achievement/anime-pervert-2.json
================================================
{
    "media": "A",
    "order": 307,
    "achievements":
    [
        {
            "threshold": "50-74.99",
            "id": "anime-pervert-2",
            "level": "Naughty",
            "title": "Only Accidents! I Swear!",
            "desc": "Physics in anime are incredible. When you trip, you always cop a feel.",
            "tooltip": "{subject}% pervert"
        }
    ],
    "requirement":
    {
        "type": "pervert"
    }
}


================================================
FILE: data/achievement/anime-pervert-3.json
================================================
{
    "media": "A",
    "order": 307,
    "achievements":
    [
        {
            "threshold": "75-100",
            "id": "anime-pervert-3",
            "level": "Pervert",
            "title": "Hentai Overlord",
            "desc": "No use denying it! You know what you are...",
            "tooltip": "{subject}% pervert"
        }
    ],
    "requirement":
    {
        "type": "pervert"
    }
}


================================================
FILE: data/achievement/anime-re.json
================================================
{
    "media": "A",
    "order": 310,
    "achievements":
    [
        {
            "threshold": "20+",
            "id": "anime-re",
            "level": "Looping...",
            "title": "Endless Eight",
            "desc": "Is the replay button stuck?"
        }
    ],
    "requirement":
    {
        "type": "re"
    }
}


================================================
FILE: data/achievement/anime-release-classic.json
================================================
{
    "media": "A",
    "order": 305,
    "achievements":
    [
        {
            "threshold": "20-39",
            "id": "anime-release-classic-1",
            "level": "Classics: level 1",
            "title": "Cassette Tape",
            "desc": "The first time you watched these, you didn't even know what they were."
        },
        {
            "threshold": "40-79",
            "id": "anime-release-classic-2",
            "level": "Classics: level 2",
            "title": "Solid Color",
            "desc": "Bomber jackets, high-waisted jeans, an overload of patterns, and bishies everywhere."
        },
        {
            "threshold": "80-159",
            "id": "anime-release-classic-3",
            "level": "Classics: level 3",
            "title": "It's Raining... Tragic Backstories!",
            "desc": "It might be the nostalgia lens, but you swear things had more substance back then."
        },
        {
            "threshold": "160+",
            "id": "anime-release-classic-4",
            "level": "Nostalgia: level MAX",
            "title": "Blockbuster",
            "desc": "Man, do you feel old as all hell."
        }
    ],
    "requirement":
    {
        "type": "release-classic"
    }
}


================================================
FILE: data/achievement/anime-release-old.json
================================================
{
    "media": "A",
    "order": 304,
    "achievements":
    [
        {
            "threshold": "20+",
            "id": "anime-release-old",
            "level": "Pre-1980 Anime",
            "title": "VHS Master Race",
            "desc": "You overwrote my cartoons with The Karate Kid?! MOOOM!"
        }
    ],
    "requirement":
    {
        "type": "release-old"
    }
}


================================================
FILE: data/achievement/anime-romance.json
================================================
{
    "media": "A",
    "order": 109,
    "achievements": [
        {
            "threshold": "20-39",
            "id": "anime-romance-1",
            "level": "Romance: level 1",
            "title": "Stalker",
            "desc": "I'll stalk you so hard you won't notice me for 24 episodes. Why don't you love me yet?"
        },
        {
            "threshold": "40-79",
            "id": "anime-romance-2",
            "level": "Romance: level 2",
            "title": "Unrequited Love",
            "desc": "If you won't confess, they'll never know how you feel. But don't bother if you're the best girl - these never win."
        },
        {
            "threshold": "80-159",
            "id": "anime-romance-3",
            "level": "Romance: level 3",
            "title": "Sparkles and Bubbles",
            "desc": "Every time you two get close you feel butterflies in your stomach. Now kiss."
        },
        {
            "threshold": "160+",
            "id": "anime-romance-4",
            "level": "Romance: FULL LOVE",
            "title": "Heart Full of Love",
            "desc": "So many romance anime! You surely are an expert in relationships already."
        }
    ],
    "requirement": {
        "type": "genre-title",
        "genre": [
            22,
            26,
            28,
            74
        ]
    }
}


================================================
FILE: data/achievement/anime-school-days.json
================================================
{
    "media": "A",
    "order": 203,
    "achievements":
    [
        {
            "threshold": "1+",
            "id": "anime-school-days",
            "level": "Nice Boat",
            "title": "It's Just Me and You Now",
            "desc": "Awarded for completing School Days. And they say true romance is dead!"
        }
    ],
    "requirement":
    {
        "type": "title",
        "titles":
        [
            "A2476" //School Days
        ]
    }
}


================================================
FILE: data/achievement/anime-score-high.json
================================================
{
    "media": "A",
    "order": 308,
    "achievements":
    [
        {
            "threshold": "8.5-10",
            "id": "anime-score-high",
            "level": "10/10! EVERYTHING!",
            "title": "I Love Chinese Cartoons",
            "desc": "Mean anime score higher than 8.5. How about using the whole scale and re-rating stuff? That could make you look less like a fanboy...",
            "tooltip": "Mean score: {subject}"
        }
    ],
    "requirement":
    {
        "type": "score"
    }
}


================================================
FILE: data/achievement/anime-score-low.json
================================================
{
    "media": "A",
    "order": 308,
    "achievements":
    [
        {
            "threshold": "3-5",
            "id": "anime-score-low",
            "level": "My Eyes! It Hurts!",
            "title": "Watching Anime Is Suffering",
            "desc": "Mean anime score lower than 5. Someone has to counterweigh the fanboys, right?",
            "tooltip": "Mean score: {subject}"
        }
    ],
    "requirement":
    {
        "type": "score"
    }
}


================================================
FILE: data/achievement/anime-score-very-low.json
================================================
{
    "media": "A",
    "order": 308,
    "achievements":
    [
        {
            "threshold": "0-2.99",
            "id": "anime-score-very-low",
            "level": "0/10. Play Next One",
            "title": "Less Than Three",
            "desc": "Mean anime score lower than 3. Is it hate, or is it love?",
            "tooltip": "Mean score: {subject}"
        }
    ],
    "requirement":
    {
        "type": "score"
    }
}


================================================
FILE: data/achievement/anime-slice-of-life.json
================================================
{
    "media": "A",
    "order": 110,
    "achievements":
    [
        {
            "threshold": "20-39",
            "id": "anime-slice-of-life-1",
            "level": "Slice of Life: level 1",
            "title": "Normal High School Boy",
            "desc": "Got started into the furious ride with slice-of-life anime."
        },
        {
            "threshold": "40-79",
            "id": "anime-slice-of-life-2",
            "level": "Slice of Life: level 2",
            "title": "Cute × ( Girls + Things )",
            "desc": "Didn't get bored of watching cute girls doing cute things. As if that's possible."
        },
        {
            "threshold": "80-159",
            "id": "anime-slice-of-life-3",
            "level": "Slice of Life: level 3",
            "title": "Enjoying Life",
            "desc": "Found the equilibrium between boring and interesting."
        },
        {
            "threshold": "160+",
            "id": "anime-slice-of-life-4",
            "level": "Slice of Life: level MAX",
            "title": "Prima Undine",
            "desc": "Awarded Ph.D. degree in slice-of-life-ology. You can teach others how to stay calm and take it easy."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 36
    }
}


================================================
FILE: data/achievement/anime-space.json
================================================
{
    "media": "A",
    "order": 111,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "anime-space-1",
            "level": "Space: level 1",
            "title": "3... 2... 1... Liftoff!",
            "desc": "You've taken one small step for man, not such a giant leap for mankind."
        },
        {
            "threshold": "20-39",
            "id": "anime-space-2",
            "level": "Space: level 2",
            "title": "The Earth Looks So Small from Up Here",
            "desc": "You're finally outside the atmosphere, but there's still a lot to explore."
        },
        {
            "threshold": "40-79",
            "id": "anime-space-3",
            "level": "Space: level 3",
            "title": "Interstellar Traveler",
            "desc": "You've traveled vast interstellar distances and seen many galaxies in your way."
        },
        {
            "threshold": "80+",
            "id": "anime-space-4",
            "level": "Space: level MAX",
            "title": "Emperor of the Universe",
            "desc": "You're the ruler of the whole Universe. There's no one with more power than you."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 29
    }
}


================================================
FILE: data/achievement/anime-sports.json
================================================
{
    "media": "A",
    "order": 112,
    "achievements":
    [
        {
            "threshold": "14-27",
            "id": "anime-sports-1",
            "level": "Sports: level 1",
            "title": "Knockout!",
            "desc": "You've held your own in the ring, time to go all the way."
        },
        {
            "threshold": "28-55",
            "id": "anime-sports-2",
            "level": "Sports: level 2",
            "title": "Get Your Head in the Game",
            "desc": "The odds are against you, time to get in the zone."
        },
        {
            "threshold": "56-111",
            "id": "anime-sports-3",
            "level": "Sports: level 3",
            "title": "Welcome to the Big Leagues",
            "desc": "There's no stopping you, just one final push."
        },
        {
            "threshold": "112+",
            "id": "anime-sports-4",
            "level": "Sports: level MAX",
            "title": "Olympian",
            "desc": "First across the finish line, great job!"
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 30
    }
}


================================================
FILE: data/achievement/anime-studio-ghibli.json
================================================
{
    "media": "A",
    "order": 201,
    "achievements":
    [
        {
            "threshold": "10+",
            "id": "anime-studio-ghibli",
            "level": "Studio Ghibli",
            "title": "Memories",
            "desc": "Once you've seen them, you can never forget them."
        }
    ],
    "requirement":
    {
        "type": "title",
        "titles":
        [
            "A2890", //Gake no Ue no Ponyo
            "A1829", //Gedo Senki
            "A1030", //Heisei Tanuki Gassen Ponpoko
            "A578", //Hotaru no Haka
            "A431", //Howl no Ugoku Shiro
            "A16664", //Kaguya-hime no Monogatari
            "A7711", //Karigurashi no Arrietty
            "A16662", //Kaze Tachinu
            "A36699", //Kimitachi wa Dou Ikiru ka
            "A10029", //Kokurikozaka kara
            "A416", //Kurenai no Buta
            "A512", //Majo no Takkyuubin
            "A585", //Mimi wo Sumaseba
            "A164", //Mononoke Hime
            "A597", //Neko no Ongaeshi
            "A199", //Sen to Chihiro no Kamikakushi
            "A513", //Tenkuu no Shiro Laputa
            "A523", //Tonari no Totoro
            "A415", //Tonari no Yamada-kun
            "A21557", //Omoide no Marnie
            "A1029", //Omoide Poroporo
            "A743" //Umi ga Kikoeru
        ]
    }
}


================================================
FILE: data/achievement/anime-time.json
================================================
{
    "media": "A",
    "order": 311,
    "achievements":
    [
        {
            "threshold": "14-91.24",
            "id": "anime-time-1",
            "level": "Time: level 1",
            "title": "Hair Antenna",
            "desc": "Whose watchtime are you calling puny‽"
        },
        {
            "threshold": "91.25-182.49",
            "id": "anime-time-2",
            "level": "Time: level 2",
            "title": "Endurance Training",
            "desc": "By doing a daily ten-episode run, you are sure to become a master in no time!"
        },
        {
            "threshold": "182.50-364.99",
            "id": "anime-time-3",
            "level": "Time: level 3",
            "title": "Consciousness Upload",
            "desc": "Consuming the medium becomes a lot easier once you yourself are raw data."
        },
        {
            "threshold": "365+",
            "id": "anime-time-4",
            "level": "Youth: WASTED",
            "title": "Wicked Cultured",
            "desc": "By making a deal with the devil, you have ensured access to even the most obscure of materials."
        }
    ],
    "requirement":
    {
        "type": "time"
    }
}


================================================
FILE: data/achievement/anime-year.json
================================================
{
    "media": "A",
    "order": 306,
    "achievements":
    [
        {
            "threshold": "40+",
            "id": "anime-year",
            "level": "Tempus Fugit",
            "title": "Chronomaster",
            "desc": "Your discerning eye has traveled across the aeons of animation."
        }
    ],
    "requirement":
    {
        "type": "year"
    }
}


================================================
FILE: data/achievement/manga-dropped-0.json
================================================
{
    "media": "M",
    "order": 307,
    "achievements":
    [
        {
        "threshold": "10+",
        "id": "manga-dropped-0",
        "level": "And It Still Hurts",
        "title": "I've Seen Some Sh**",
        "desc": "Despite seemingly endless suffering, you've never dropped any manga. That's impressive."
        }
    ],
    "requirement":
    {
        "type": "dropped-0"
    }
}


================================================
FILE: data/achievement/manga-finished.json
================================================
{
    "media": "M",
    "order": 310,
    "achievements":
    [
        {
            "threshold": "100-199",
            "id": "manga-finished-100",
            "level": "Passed 100 Mark",
            "title": "Casual Reader",
            "desc": "Read 100 manga. Looks like reading doesn't hurt."
        },
        {
            "threshold": "200-299",
            "id": "manga-finished-200",
            "level": "Passed 200 Mark",
            "title": "Bookworm",
            "desc": "Read 200 manga. Sitting in your comfortable chair, reading favorite Korean comics. This is bliss."
        },
        {
            "threshold": "300-399",
            "id": "manga-finished-300",
            "level": "Passed 300 Mark",
            "title": "Dat Scent",
            "desc": "Read 300 manga. There's nothing better than the smell of freshly opened book. Or a PDF."
        },
        {
            "threshold": "400-499",
            "id": "manga-finished-400",
            "level": "Passed 400 Mark",
            "title": "Where Do I Put These?",
            "desc": "Read 400 manga. Consider investing in another bookshelf, or you'll be swimming in books soon."
        },
        {
            "threshold": "500-749",
            "id": "manga-finished-500",
            "level": "Passed 500 Mark",
            "title": "Half a Grand",
            "desc": "Read 500 manga. Now think of what kind of person you'd be if you didn't start reading manga then. On that particular day..."
        },
        {
            "threshold": "750-999",
            "id": "manga-finished-750",
            "level": "Passed 750 Mark",
            "title": "Read or Die",
            "desc": "Read 750 manga. You managed to make a bow out of paper, but remember that cellulose fibers don't work well as a bulletproof shield."
        },
        {
            "threshold": "1000-1499",
            "id": "manga-finished-1000",
            "level": "Passed 1000 Mark",
            "title": "Librarian",
            "desc": "Read 1000 manga. You work with books, right? Right?"
        },
        {
            "threshold": "1500-2499",
            "id": "manga-finished-1500",
            "level": "Passed 1500 Mark",
            "title": "The Floor Is Books",
            "desc": "Read 1500 manga. Sleeping on books must be pretty... hard?"
        },
        {
            "threshold": "2500-4999",
            "id": "manga-finished-2500",
            "level": "Passed 2500 Mark",
            "title": "Still Not Enough",
            "desc": "Read 2500 manga. In search for the perfect story you've read six lifetimes worth of words. Did you find it?"
        },
        {
            "threshold": "5000-7499",
            "id": "manga-finished-5000",
            "level": "Passed 5000 Mark",
            "title": "Sleep Deprivation",
            "desc": "Read 5000 manga. Think of all the mangakas and writers that couldn't sleep just to make this moment happen."
        },
        {
            "threshold": "7500-9999",
            "id": "manga-finished-7500",
            "level": "Passed 7500 Mark",
            "title": "Reincarnation",
            "desc": "Read 7500 manga. How, exactly? This is not possible for normal humans."
        },
        {
            "threshold": "10000+",
            "id": "manga-finished-10000",
            "level": "Passed 10000 Mark",
            "title": "I've Seen It All",
            "desc": "Read 10000 manga. Ten. Thousand. Manga. An average user's list is shorter than your list of titles starting with \"A\" alone."
        }
    ],
    "requirement":
    {
        "type": "finished"
    }
}


================================================
FILE: data/achievement/manga-horror.json
================================================
{
    "media": "M",
    "order": 101,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "manga-horror-1",
            "level": "Horror: level 1",
            "title": "HONEY, I'M HOME",
            "desc": "WHAT IS FOR DINNER TODAY?"
        },
        {
            "threshold": "20-39",
            "id": "manga-horror-2",
            "level": "Horror: level 2",
            "title": "Lovely Smile of a Psychopath",
            "desc": "You can't spell slaughter without laughter."
        },
        {
            "threshold": "40-79",
            "id": "manga-horror-3",
            "level": "Horror: level 3",
            "title": "What Have I Become?",
            "desc": "Sweetheart, something's wrong with your make up..."
        },
        {
            "threshold": "80+",
            "id": "manga-horror-4",
            "level": "Horror: level MAX",
            "title": "Heart Attack",
            "desc": "Not all surprises are pleasant, but it looks like you love being scared."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 14
    }
}


================================================
FILE: data/achievement/manga-mahou-shoujo.json
================================================
{
    "media": "M",
    "order": 102,
    "achievements":
    [
        {
            "threshold": "2-3",
            "id": "manga-mahou-shoujo-1",
            "level": "Mahou Shoujo: level 1",
            "title": "Let Me Lift That Curse",
            "desc": "If you wish hard enough, you can become a magical girl in the blink of an eye."
        },
        {
            "threshold": "4-7",
            "id": "manga-mahou-shoujo-2",
            "level": "Mahou Shoujo: level 2",
            "title": "Conflict Breaker",
            "desc": "Fighting hardly solves any problems. There are better ways to live our lives."
        },
        {
            "threshold": "8-15",
            "id": "manga-mahou-shoujo-3",
            "level": "Mahou Shoujo: level 3",
            "title": "Aim for the Top",
            "desc": "Even if you work alone, never forget your friends who helped you overcome all fears."
        },
        {
            "threshold": "16+",
            "id": "manga-mahou-shoujo-4",
            "level": "Mahou Shoujo: MAX POWER",
            "title": "Complete Control",
            "desc": "Read over 32 mahou shoujo manga. At this level magic circles form around you at will."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 66
    }
}


================================================
FILE: data/achievement/manga-mystery.json
================================================
{
    "media": "M",
    "order": 103,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "manga-mystery-1",
            "level": "Mystery: level 1",
            "title": "Curiosity",
            "desc": "If it is you who is curious, no case shall remain unsolved."
        },
        {
            "threshold": "20-39",
            "id": "manga-mystery-2",
            "level": "Mystery: level 2",
            "title": "Determination",
            "desc": "No matter who the villain is... you WILL find out the answers."
        },
        {
            "threshold": "40-79",
            "id": "manga-mystery-3",
            "level": "Mystery: level 3",
            "title": "Collecting the Pieces",
            "desc": "Sometimes the smallest bit of information can turn the whole case around."
        },
        {
            "threshold": "80+",
            "id": "manga-mystery-4",
            "level": "Mystery: level MAX",
            "title": "Raw Intuition",
            "desc": "Investigative skills honed up. You know the answers just by looking at mere shards of data."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 7
    }
}


================================================
FILE: data/achievement/manga-novel.json
================================================
{
    "media": "M",
    "order": 301,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "manga-novel-1",
            "level": "Novel: level 1",
            "title": "Cracking the Book",
            "desc": "You didn't get bored reading plain text."
        },
        {
            "threshold": "20-39",
            "id": "manga-novel-2",
            "level": "Novel: level 2",
            "title": "IKEA Trip",
            "desc": "Instead of playing Candy Crush, you now read during transit."
        },
        {
            "threshold": "40-79",
            "id": "manga-novel-3",
            "level": "Novel: level 3",
            "title": "Personal Library",
            "desc": "The tales you've read have taken you on a journey you never want to end."
        },
        {
            "threshold": "80+",
            "id": "manga-novel-4",
            "level": "Bookworm: level MAX",
            "title": "What Is Sleep?",
            "desc": "The more you've learned, the more you wanted to keep on learning."
        }
    ],
    "requirement":
    {
        "type": "novel"
    }
}


================================================
FILE: data/achievement/manga-pervert-0.json
================================================
{
    "media": "M",
    "order": 305,
    "achievements":
    [
        {
            "threshold": "0-24.99",
            "id": "manga-pervert-0",
            "level": "Virgin",
            "title": "Chastity Belt",
            "desc": "Mama said that if you touch your no-no square, the Yogi Bear will come and get you. Congratulations on resisting the siren call of h-doujin!",
            "tooltip": "{subject}% pervert"
        }
    ],
    "requirement":
    {
        "type": "pervert"
    }
}


================================================
FILE: data/achievement/manga-pervert-1.json
================================================
{
    "media": "M",
    "order": 305,
    "achievements":
    [
        {
            "threshold": "25-49.99",
            "id": "manga-pervert-1",
            "level": "Eek!",
            "title": "I Peek Just a Little",
            "desc": "Wait a minute, this wasn't the men's bath?",
            "tooltip": "{subject}% pervert"
        }
    ],
    "requirement":
    {
        "type": "pervert"
    }
}


================================================
FILE: data/achievement/manga-pervert-2.json
================================================
{
    "media": "M",
    "order": 305,
    "achievements":
    [
        {
            "threshold": "50-74.99",
            "id": "manga-pervert-2",
            "level": "Naughty",
            "title": "We Need a Blood Donor Here",
            "desc": "Even if I die from blood loss, I just can't stop...",
            "tooltip": "{subject}% pervert"
        }
    ],
    "requirement":
    {
        "type": "pervert"
    }
}


================================================
FILE: data/achievement/manga-pervert-3.json
================================================
{
    "media": "M",
    "order": 305,
    "achievements":
    [
        {
            "threshold": "75-100",
            "id": "manga-pervert-3",
            "level": "Pervert",
            "title": "Ero-sennin",
            "desc": "What do you mean that I am a pervert? I am THE pervert!",
            "tooltip": "{subject}% pervert"
        }
    ],
    "requirement":
    {
        "type": "pervert"
    }
}


================================================
FILE: data/achievement/manga-re.json
================================================
{
    "media": "M",
    "order": 308,
    "achievements":
    [
        {
            "threshold": "10+",
            "id": "manga-re",
            "level": "In Time",
            "title": "Take Me Back",
            "desc": "Ah, it's every bit as good as the first time."
        }
    ],
    "requirement":
    {
        "type": "re"
    }
}


================================================
FILE: data/achievement/manga-release-old.json
================================================
{
    "media": "M",
    "order": 303,
    "achievements":
    [
        {
            "threshold": "10+",
            "id": "manga-release-old",
            "level": "Pre-1980 Manga",
            "title": "At the End of the Galaxy",
            "desc": "Your never-ending journey for the most forgotten comic books has finally paid off."
        }
    ],
    "requirement":
    {
        "type": "release-old"
    }
}


================================================
FILE: data/achievement/manga-romance.json
================================================
{
    "media": "M",
    "order": 104,
    "achievements": [
        {
            "threshold": "10-19",
            "id": "manga-romance-1",
            "level": "Romance: level 1",
            "title": "Mixed Feelings",
            "desc": "98% hatred, 2% love. Give it some time and these two will reverse."
        },
        {
            "threshold": "20-39",
            "id": "manga-romance-2",
            "level": "Romance: level 2",
            "title": "Love Me or Die",
            "desc": "Yandere is a form of love too. A rather extreme one, but still!"
        },
        {
            "threshold": "40-79",
            "id": "manga-romance-3",
            "level": "Romance: level 3",
            "title": "Breaking the Chains",
            "desc": "With love, nothing is impossible. You just have to let someone break you free of restrictions."
        },
        {
            "threshold": "80+",
            "id": "manga-romance-4",
            "level": "Romance: FULL LOVE",
            "title": "Heart That Never Stops Beating",
            "desc": "When I see you, my kokoro goes doki-doki and the sekai starts to spin around. How could I live without you?"
        }
    ],
    "requirement": {
        "type": "genre-title",
        "genre": [
            22,
            26,
            28,
            75
        ]
    }
}


================================================
FILE: data/achievement/manga-score-high.json
================================================
{
    "media": "M",
    "order": 306,
    "achievements":
    [
        {
            "threshold": "8.5-10",
            "id": "manga-score-high",
            "level": "Dat Plot",
            "title": "So Good I Can't Handle It",
            "desc": "Mean manga score above 8.5. Looks like you only pick the best titles to read.",
            "tooltip": "Mean score: {subject}"
        }
    ],
    "requirement":
    {
        "type": "score"
    }
}


================================================
FILE: data/achievement/manga-score-low.json
================================================
{
    "media": "M",
    "order": 306,
    "achievements":
    [
        {
            "threshold": "3-5",
            "id": "manga-score-low",
            "level": "Not Worth My Time",
            "title": "Professional Critic",
            "desc": "Mean manga score below 5. Watch out, we got a critic over here.",
            "tooltip": "Mean score: {subject}"
        }
    ],
    "requirement":
    {
        "type": "score"
    }
}


================================================
FILE: data/achievement/manga-score-very-low.json
================================================
{
    "media": "M",
    "order": 306,
    "achievements":
    [
        {
            "threshold": "0-2.99",
            "id": "manga-score-very-low",
            "level": "Lowest of the Low",
            "title": "Best I Can Do Is 2",
            "desc": "Mean manga score below 3. Aren't you a bit too harsh?",
            "tooltip": "Mean score: {subject}"
        }
    ],
    "requirement":
    {
        "type": "score"
    }
}


================================================
FILE: data/achievement/manga-sports.json
================================================
{
    "media": "M",
    "order": 105,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "manga-sports-1",
            "level": "Sports: level 1",
            "title": "The Stakes Are High",
            "desc": "Joined the game for real. The more you read, the more addictive it gets."
        },
        {
            "threshold": "20-39",
            "id": "manga-sports-2",
            "level": "Sports: level 2",
            "title": "Do You Even Read?",
            "desc": "Even during the most exhausting excercise you still find time to read. Can't miss a chapter."
        },
        {
            "threshold": "40-79",
            "id": "manga-sports-3",
            "level": "Sports: level 3",
            "title": "Got Balls",
            "desc": "Looking at all this struggling inspires you to become strong yourself."
        },
        {
            "threshold": "80+",
            "id": "manga-sports-4",
            "level": "Sports: level MAX",
            "title": "Kuro Basket",
            "desc": "You know the rules of all games already. The podium is yours!"
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 30
    }
}


================================================
FILE: data/achievement/manga-time.json
================================================
{
    "media": "M",
    "order": 309,
    "achievements":
    [
        {
            "threshold": "14-91.24",
            "id": "manga-time-1",
            "level": "Time: level 1",
            "title": "Downward Spiral",
            "desc": "Once drawn inside this inky whirlpool, you will find yourself sinking faster than the Titanic."
        },
        {
            "threshold": "91.25-182.49",
            "id": "manga-time-2",
            "level": "Time: level 2",
            "title": "Revelations (18:14)",
            "desc": "You've developed quite the appetite. Devouring fifty chapters a day doesn't seem challenging to you anymore."
        },
        {
            "threshold": "182.50-364.99",
            "id": "manga-time-3",
            "level": "Time: level 3",
            "title": "Voluntary Confinement",
            "desc": "Every title you read brings you closer to your self."
        },
        {
            "threshold": "365+",
            "id": "manga-time-4",
            "level": "Blindness: level BAT",
            "title": "Apocryphal Sanctuary",
            "desc": "You've journeyed through hell and heaven, and learned much in your wanderings."
        }
    ],
    "requirement":
    {
        "type": "time"
    }
}


================================================
FILE: data/achievement/manga-vampire-demons.json
================================================
{
    "media": "M",
    "order": 106,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "manga-vampire-demons-1",
            "level": "Vampires/Demons: level 1",
            "title": "Sweet Tooth",
            "desc": "Donuts? Really? You lived for 500 years just to eat them?"
        },
        {
            "threshold": "20-39",
            "id": "manga-vampire-demons-2",
            "level": "Vampires/Demons: level 2",
            "title": "Vegetarian",
            "desc": "Some creatures prefer juicy fruits instead of sucking blood or eating raw meat. Weaklings."
        },
        {
            "threshold": "40-79",
            "id": "manga-vampire-demons-3",
            "level": "Vampires/Demons: level 3",
            "title": "Carnivore",
            "desc": "Don't mess with me if you want to keep your limbs attached to your body."
        },
        {
            "threshold": "80+",
            "id": "manga-vampire-demons-4",
            "level": "Vampires/Demons: level MAX",
            "title": "Pure Evil",
            "desc": "EVIL!!! FANGS! DEMONS! BLOOD! Yeah. That's the stuff."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": [6, 32]
    }
}


================================================
FILE: data/achievement/manga-volume-long.json
================================================
{
    "media": "M",
    "order": 302,
    "achievements":
    [
        {
            "threshold": "10+",
            "id": "manga-volume-long",
            "level": "Infinite Stamina",
            "title": "Long Runner",
            "desc": "The best stories can't be told in less than 20 volumes."
        }
    ],
    "requirement":
    {
        "type": "volume-long"
    }
}


================================================
FILE: data/achievement/manga-yaoi-shounen-ai.json
================================================
{
    "media": "M",
    "order": 107,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "manga-yaoi-shounen-ai-1",
            "level": "Boys Love: level 1",
            "title": "Inner Fujoshi Awakened",
            "desc": "I was just taking a peek in this manga I accidentally found... and surprisingly liked it."
        },
        {
            "threshold": "20-39",
            "id": "manga-yaoi-shounen-ai-2",
            "level": "Boys Love: level 2",
            "title": "Not a Day Without BL",
            "desc": "It's already too late to stop and turn back, just remember to watch your back while reading."
        },
        {
            "threshold": "40-79",
            "id": "manga-yaoi-shounen-ai-3",
            "level": "Boys Love: level 3",
            "title": "Yaoi Detector",
            "desc": "I don't care! I ship it!"
        },
        {
            "threshold": "80+",
            "id": "manga-yaoi-shounen-ai-4",
            "level": "Boys Love: level MAX",
            "title": "Full Fledged Fujoshi",
            "desc": "Yaoi isn't just a genre to you anymore, it's a way of life."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 28
    }
}


================================================
FILE: data/achievement/manga-year.json
================================================
{
    "media": "M",
    "order": 304,
    "achievements":
    [
        {
            "threshold": "40+",
            "id": "manga-year",
            "level": "Elder",
            "title": "Ancient Scholar",
            "desc": "You witnessed the beginning of the medium. You hope you will not witness its end."
        }
    ],
    "requirement":
    {
        "type": "year"
    }
}


================================================
FILE: data/achievement/manga-yuri-shoujo-ai.json
================================================
{
    "media": "M",
    "order": 108,
    "achievements":
    [
        {
            "threshold": "10-19",
            "id": "manga-yuri-shoujo-ai-1",
            "level": "Girls Love: level 1",
            "title": "But That's Forbidden Love",
            "desc": "Cute girls doing cute things... right?"
        },
        {
            "threshold": "20-39",
            "id": "manga-yuri-shoujo-ai-2",
            "level": "Girls Love: level 2",
            "title": "I Kissed a Girl...",
            "desc": "...and I liked it!"
        },
        {
            "threshold": "40-79",
            "id": "manga-yuri-shoujo-ai-3",
            "level": "Girls Love: level 3",
            "title": "All Female School",
            "desc": "There are only girls here to love... but I don't mind it."
        },
        {
            "threshold": "80+",
            "id": "manga-yuri-shoujo-ai-4",
            "level": "Girls Love: level MAX",
            "title": "Lily",
            "desc": "You feel it everywhere."
        }
    ],
    "requirement":
    {
        "type": "genre-title",
        "genre": 26
    }
}


================================================
FILE: data/banned-creators.lst
================================================


================================================
FILE: data/banned-franchise-coupling.json
================================================
{
    "A512": //Majo no Takkyuubin
    [
        "A35770" //Hungry Days: Aoharu ka yo.
    ],
    "A2225": //Alps no Shoujo Heidi
    [
        "A35770" //Hungry Days: Aoharu ka yo.
    ],
    "A2406": //Sazae-san
    [
        "A35770" //Hungry Days: Aoharu ka yo.
    ],
    "A35770": //Hungry Days: Aoharu ka yo.
    [
        "A512", //Majo no Takkyuubin
        "A2225", //Alps no Shoujo Heidi
        "A2406" //Sazae-san
    ],
    "A966": //Crayon Shin-chan
    [
        "A35686" //Doraemon (2005) Specials
    ],
    "A1412": //Lupin III
    [
        "A6115" //Lupin III vs. Detective Conan
    ],
    "A2354": //Devilman: Tanjou-hen
    [
        "A3898" //Mazinger Z tai Devilman
    ],
    "A3898": //Mazinger Z tai Devilman
    [
        "A2252" //Devilman
    ],
    "A4385": //Great Mazinger tai Getter Robo
    [
        "A3579" //Getter Robo
    ],
    "A4386": //Great Mazinger tai Getter Robo G: Kuuchuu Dai-Gekitotsu
    [
        "A4486" //Getter Robo G
    ],
    "A6566": //It's a Rumic World: 50th Anniversary Weekly★Shonen Sunday
    [
        "A210", //Ranma ½
        "A249", //InuYasha
        "A1293" //Urusei Yatsura
    ],
    "A15785": //Inazuma Eleven Go vs. Danball Senki W Movie
    [
        "A10507", //Inazuma Eleven Go
        "A12651" //Danball Senki W
    ],
    "A17819": //Kyoto Animation: Suiei-hen
    [
        "A18507" //Free!
    ],
    "A18393": //Fairy Tail x Rave
    [
        "A246", //Groove Adventure Rave
        "A6702" //Fairy Tail
    ],
    "A28149": //Nihon Animator Mihonichi
    [
        "A38055" //Evangelion: Another Impact (VR)
    ],
    "A38055": //Evangelion: Another Impact (VR)
    [
        "A28149" //Nihon Animator Mihonichi
    ],
    "A33512": //Animegatari x Ghost in the Shell Collab Eizou
    [
        "A30617" //Animegatari
    ],
    "A37012": //Animegatari x Shingeki no Kyojin Collab Eizou
    [
        "A30617" //Animegatari
    ],
    "A33544": //InaDan Movie x Mameshiba Collab CM
    [
        "A15785" //Inazuma Eleven Go vs. Danball Senki W Movie
    ],
    "A33547": //Mameshiba x Gaist Crusher Collab CM
    [
        "A19871" //Gaist Crusher
    ],
    "A33549": //Mame-Mofu Collab Animation
    [
        "A5241" //Mofu☆Mofu
    ],
    "A35631": //Mahouka x Mameshiba
    [
        "A7261" //Mameshiba
    ],
    "A35686": //Doraemon (2005) Specials
    [
        "A966" //Crayon Shin-chan
    ],
    "M881": //Cross Epoch
    [
        "M13", //One Piece
        "M42" //Dragon Ball
    ],
    "M7887": //Toriko
    [
        "M25146" //One Piece x Toriko
    ],
    "M25146": //One Piece x Toriko
    [
        "M13", //One Piece
        "M7887" //Toriko
    ],
    "M1474": //Devilman
    [
        "M26751" //Devilman vs Getter Robo
    ],
    "M1475": //Devilman Lady
    [
        "M75723" //Cutie Honey Tai Devilman Lady
    ],
    "M1551": //Getter Robo
    [
        "M26751", //Devilman vs Getter Robo
        "M37701" //Super Robot Retsuden
    ],
    "M1639": //Cyborg 009
    [
        "M95091" //Cyborg 009 VS Devilman: Breakdown
    ],
    "M7658": //Cutie Honey
    [
        "M75723" //Cutie Honey Tai Devilman Lady
    ],
    "M8773": //Mazinger Z
    [
        "M37701" //Super Robot Retsuden
    ],
    "M13891": //Kakioroshi Manga Bangai-hen: Valentine Special
    [
        "M43", //Eyeshield 21
        "M47", //Katekyou Hitman Reborn!
        "M671", //To LOVE-Ru
        "M1414", //SKET Dance
        "M9711" //Bakuman.
    ],
    "M26751": //Devilman vs Getter Robo
    [
        "M1474", //Devilman
        "M1551" //Getter Robo
    ],
    "M30723": //Koutetsu Jeeg
    [
        "M37701" //Super Robot Retsuden
    ],
    "M37701": //Super Robot Retsuden
    [
        "M1551", //Getter Robo
        "M8773", //Mazinger Z
        "M30723" //Koutetsu Jeeg
    ],
    "M75723": //Cutie Honey Tai Devilman Lady
    [
        "M1475", //Devilman Lady
        "M7658" //Cutie Honey
    ],
    "M95091": //Cyborg 009 VS Devilman: Breakdown
    [
        "M1474", //Devilman
        "M1639" //Cyborg 009
    ],
    "M16124": //Maburaho VS Slayers!? - Dragon All Stars Gekitouhen
    [
        "M120", //Maburaho
        "M8876" //Slayers
    ],
    "M20870": //Slayers VS Orphen
    [
        "M8876", //Slayers
        "M39745" //Majutsushi Orphen Hagure Tabi
    ],
    "M47000": //Nisekyuu!!
    [
        "M31499", //Nisekoi
        "M35243" //Haikyuu!!
    ],
    "M52389": //Ore Ride!!
    [
        "M24294", //Ao Haru Ride
        "M36933" //Ore Monogatari!!
    ],
    "M58193": //Ore Koi!!
    [
        "M31499", //Nisekoi
        "M36933" //Ore Monogatari!!
    ],
    "M75053": //Magazine Heroines on the Beach
    [
        "M8300", //Baby Steps
        "M35003", //Yamada-kun to 7-nin no Majo
        "M47102", //Aho Girl
        "M67019" //Fuuka
    ],
    "M86414": //Magazine Boys' Valentine!
    [
        "M8795", //Area no Kishi
        "M47363", //Kamisama no Iutoori 2
        "M65685", //Real Account
        "M67019" //Fuuka
    ],
    "M88032": //Magazine Ohanami!!
    [
        "M598", //Fairy Tail
        "M8300", //Baby Steps
        "M35003", //Yamada-kun to 7-nin no Majo
        "M67019" //Fuuka
    ],
    "M102286": //Minna no Kochikame
    [
        "M733", //Kochira Katsushikaku Kameari Kouenmae Hashutsujo
        "M1414", //SKET Dance
        "M5664", //Nurarihyon no Mago
        "M10010", //Beelzebub
        "M31499", //Nisekoi
        "M39883", //Ansatsu Kyoushitsu
        "M67545" //Isobe Isobee Monogatari: Ukiyo wa Tsurai yo
    ]
}


================================================
FILE: data/banned-genres.lst
================================================


================================================
FILE: data/banned-users.lst
================================================


================================================
FILE: data/cache/.gitignore
================================================
*
!.gitignore


================================================
FILE: data/db/.gitignore
================================================
*
!.gitignore


================================================
FILE: data/globals-cache.json
================================================


================================================
FILE: data/logs/.gitignore
================================================
*
!.gitignore


================================================
FILE: data/mirror/.gitignore
================================================
*
!.gitignore


================================================
FILE: data/queue-media.lst
================================================


================================================
FILE: data/queue-sizes.json
================================================


================================================
FILE: data/queue-users-media.lst
================================================


================================================
FILE: data/queue-users.lst
================================================


================================================
FILE: data/recs-banned-genres.lst
================================================


================================================
FILE: data/static-recommendations.lst
================================================


================================================
FILE: public_html/index.php
================================================
<?php
chdir('..');
require_once('src/core.php');

$dir = implode(DIRECTORY_SEPARATOR, [__DIR__, '..', 'src', 'Controllers']);
$classNames = ReflectionHelper::loadClasses($dir);
$classNames = array_filter($classNames, function($className) {
	return substr_compare($className, 'Controller', -10, 10) === 0;
});

$controllerContext = new ControllerContext();
$controllerContext->cache->bypass(!empty($_GET['bypass-cache']));
$viewContext = new ViewContext();
$logger = new Logger(__FILE__);

if (!empty(Config::$maintenanceMessage))
{
	$viewContext->viewName = 'maintenance';
	$viewContext->layoutName = 'layout-headerless';
	View::render($viewContext);
}
elseif (isset($_GET['e']))
{
	try
	{
		$viewContext->viewName = 'error-' . $_GET['e'];
		View::render($viewContext);
	}
	catch (Exception $e)
	{
		$viewContext->viewName = 'error-404';
		View::render($viewContext);
	}
}
else
{
	try
	{
		$url = $_SERVER['REQUEST_URI'];
		if (!empty($_SERVER['HTTP_HOST']) and !empty(Config::$enforcedDomain) and $_SERVER['HTTP_HOST'] != Config::$enforcedDomain)
		{
			$fixedUrl = 'http://' . Config::$enforcedDomain . '/' . trim($_SERVER['REQUEST_URI'], '/');
			HttpHeadersHelper::setCurrentHeader('Location', $fixedUrl);
			exit(0);
		}
		$controllerContext->url = $url;

		$workingClassName = null;
		foreach ($classNames as $className)
		{
			if ($className::parseRequest($url, $controllerContext))
			{
				$workingClassName = $className;
				break;
			}
		}

		if (!empty($workingClassName))
		{
			$workingClassName::preWork($controllerContext, $viewContext);
			if ($controllerContext->cache->isFresh($url))
			{
				$controllerContext->cache->load($url);
				flush();
			}
			else
			{
				$f = function() use ($workingClassName, $controllerContext, $viewContext)
				{
					$workingClassName::work($controllerContext, $viewContext);
					View::render($viewContext);
				};
				if (!$controllerContext->cache->isBypassed())
				{
					$controllerContext->cache->save($url, $f);
				}
				else
				{
					$f();
				}
			}
			$workingClassName::postWork($controllerContext, $viewContext);

			if (HttpHeadersHelper::getCurrentHeader('Content-Type') == 'text/html')
			{
				printf('<!-- retrieved in %.05fs -->', microtime(true) - $viewContext->renderStart);
			}
			exit(0);
		}

		$viewContext->viewName = 'error-404';
		View::render($viewContext);
	}
	catch (Exception $e)
	{
		#log error information
		$logger->log($e);
		$viewContext->viewName = 'error';
		$viewContext->exception = $e;
		View::render($viewContext);
	}
	exit(1);
}


================================================
FILE: public_html/media/css/admin/index.css
================================================
fieldset {
	border: 1px solid silver;
	margin-bottom: 1em;
	padding: 1em;
}
label.aligned {
	float: left;
	position: absolute;
	vertical-align: middle;
	text-align: right;
	width: 6em;
	line-height: 1.75em;
}
label.aligned:after {
	display: inline;
	content: ': ';
	margin-right: 0.5em;
}

fieldset .control-group div {
	position: relative;
	left: 6em;
}
.control-group div {
	margin-left: 0.5em;
	margin-bottom: 1em;
}
.control-group button,
.control-group textarea,
.control-group input {
	margin-bottom: 0;
}
.control-group small {
	display: block;
	margin-top: 0;
}
.control-group textarea {
	width: 80%;
	height: 8em;
}

.alert {
	background: whitesmoke;
	padding: 0.5em;
}
.alert.info {
	background: #adf;
}
.alert.error {
	background: #f42;
	color: white;
}

.logout {
	float: right;
}


================================================
FILE: public_html/media/css/admin/login.css
================================================
label.aligned {
	float: left;
	position: absolute;
	vertical-align: middle;
	text-align: right;
	width: 6em;
	line-height: 1.75em;
}
label.aligned:after {
	display: inline;
	content: ': ';
	margin-right: 0.5em;
}

.control-group>div {
	position: relative;
	left: 6em;
	margin-left: 0.5em;
	margin-bottom: 1em;
}
.control-group button,
.control-group textarea,
.control-group input {
	margin-bottom: 0;
}

.alert {
	background: whitesmoke;
	display: inline-block;
	padding: 0.5em;
}
.alert.info {
	background: #adf;
}
.alert.error {
	background: #f42;
	color: white;
}



================================================
FILE: public_html/media/css/core.css
================================================
html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

* {
    max-height: 1000000px;
}

/* base, fonts etc */
body {
    overflow-y: scroll;
    margin: 0;
    padding: 0 0 3em 0;
    text-align: center;
    background-color: white;
    font-family: 'Open Sans', 'Verdana', 'Dejavu sans', sans-serif;
    font-size: 11pt;
    -webkit-tap-highlight-color: transparent;
    min-width: 320px;
}

h1, h2, h3 {
    font-weight: normal;
    font-family: 'Ubuntu', sans-serif;
}
    h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.17em;
    }
    h2, h3 {
        font-weight: normal;
        text-align: center;
        margin: 0 0 1em 0;
        position: relative;
    }
    h2:after, h3:after {
        position: absolute;
        bottom: -14px;
        left: 0;
        width: 100%;
        height: 8px;
        border-top: 1px solid #eee;
        background: center bottom no-repeat radial-gradient(#f6f6f6, #fff 70%);
        background-size: 100% 16px;
        content: '';
    }

.clear {
    clear: both;
}

/* links */
a {
    color: #1969CB;
    text-decoration: none;
}
a, a span, a i {
    transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease;
}
    a:focus {
        opacity: .8;
        outline: 0;
    }
    a:hover, a:hover span {
        color: #2D7DE0;
        text-decoration: none;
    }

#notice-wrapper {
    top: 0;
    left: 0;
    width: 100%;
}

.notice {
    background: #516ba2;
    color: black;
    padding: 10px;
    font-size: 10pt;
    font-weight: bold;
    text-align: center;
}

.notice a {
    color: #fff;
}

#no-script {
    background: orangered;
    color: white;
}

/* ie image border */
img {
    border: 0;
}



/* layout */
.main-wrapper {
    text-align: left;
    margin: 0 auto;
    max-width: 960px;
    padding: 0;
}

/* miscel
Download .txt
gitextract_r4orqg0m/

├── .editorconfig
├── .gitmodules
├── LICENSE.md
├── README.md
├── achievements.md
├── data/
│   ├── achievement/
│   │   ├── anime-boku-no-pico.json
│   │   ├── anime-dementia-psychological.json
│   │   ├── anime-dropped-0.json
│   │   ├── anime-duration-short.json
│   │   ├── anime-episode-long.json
│   │   ├── anime-finished.json
│   │   ├── anime-franchise-long.json
│   │   ├── anime-game.json
│   │   ├── anime-gar.json
│   │   ├── anime-historical.json
│   │   ├── anime-horror-thriller.json
│   │   ├── anime-light-novel.json
│   │   ├── anime-mahou-shoujo.json
│   │   ├── anime-mecha.json
│   │   ├── anime-music.json
│   │   ├── anime-mystery.json
│   │   ├── anime-original.json
│   │   ├── anime-pervert-0.json
│   │   ├── anime-pervert-1.json
│   │   ├── anime-pervert-2.json
│   │   ├── anime-pervert-3.json
│   │   ├── anime-re.json
│   │   ├── anime-release-classic.json
│   │   ├── anime-release-old.json
│   │   ├── anime-romance.json
│   │   ├── anime-school-days.json
│   │   ├── anime-score-high.json
│   │   ├── anime-score-low.json
│   │   ├── anime-score-very-low.json
│   │   ├── anime-slice-of-life.json
│   │   ├── anime-space.json
│   │   ├── anime-sports.json
│   │   ├── anime-studio-ghibli.json
│   │   ├── anime-time.json
│   │   ├── anime-year.json
│   │   ├── manga-dropped-0.json
│   │   ├── manga-finished.json
│   │   ├── manga-horror.json
│   │   ├── manga-mahou-shoujo.json
│   │   ├── manga-mystery.json
│   │   ├── manga-novel.json
│   │   ├── manga-pervert-0.json
│   │   ├── manga-pervert-1.json
│   │   ├── manga-pervert-2.json
│   │   ├── manga-pervert-3.json
│   │   ├── manga-re.json
│   │   ├── manga-release-old.json
│   │   ├── manga-romance.json
│   │   ├── manga-score-high.json
│   │   ├── manga-score-low.json
│   │   ├── manga-score-very-low.json
│   │   ├── manga-sports.json
│   │   ├── manga-time.json
│   │   ├── manga-vampire-demons.json
│   │   ├── manga-volume-long.json
│   │   ├── manga-yaoi-shounen-ai.json
│   │   ├── manga-year.json
│   │   └── manga-yuri-shoujo-ai.json
│   ├── banned-creators.lst
│   ├── banned-franchise-coupling.json
│   ├── banned-genres.lst
│   ├── banned-users.lst
│   ├── cache/
│   │   └── .gitignore
│   ├── db/
│   │   └── .gitignore
│   ├── globals-cache.json
│   ├── logs/
│   │   └── .gitignore
│   ├── mirror/
│   │   └── .gitignore
│   ├── queue-media.lst
│   ├── queue-sizes.json
│   ├── queue-users-media.lst
│   ├── queue-users.lst
│   ├── recs-banned-genres.lst
│   └── static-recommendations.lst
├── public_html/
│   ├── index.php
│   ├── media/
│   │   ├── css/
│   │   │   ├── admin/
│   │   │   │   ├── index.css
│   │   │   │   └── login.css
│   │   │   ├── core.css
│   │   │   ├── glider.css
│   │   │   ├── header.css
│   │   │   ├── headerless.css
│   │   │   ├── icons.css
│   │   │   ├── index/
│   │   │   │   ├── about.css
│   │   │   │   ├── globals.css
│   │   │   │   └── index.css
│   │   │   ├── infobox.css
│   │   │   ├── menu.css
│   │   │   ├── mini-sections.css
│   │   │   └── user/
│   │   │       ├── achievements.css
│   │   │       ├── entries.css
│   │   │       ├── favorites.css
│   │   │       ├── history.css
│   │   │       ├── list.css
│   │   │       ├── profile.css
│   │   │       ├── ratings.css
│   │   │       └── recommendations.css
│   │   └── js/
│   │       ├── glider.js
│   │       ├── highcharts-mg.js
│   │       ├── index/
│   │       │   └── index.js
│   │       ├── jquery.cookie.js
│   │       ├── jquery.farbtastic.js
│   │       ├── jquery.highcharts.js
│   │       ├── jquery.tablesorter.js
│   │       ├── misc.js
│   │       ├── tooltips.js
│   │       └── user/
│   │           ├── achievements.js
│   │           ├── entries.js
│   │           ├── favorites.js
│   │           ├── history.js
│   │           ├── list.js
│   │           ├── profile.js
│   │           ├── ratings.js
│   │           └── recommendations.js
│   └── robots.txt
├── script/
│   ├── cron-cache.php
│   ├── cron-globals.php
│   ├── cron-queue-sizes.php
│   ├── cron-queue.php
│   ├── cron-users.php
│   ├── make-db.php
│   ├── process.php
│   ├── queue-all-media.php
│   ├── unnuke-media.php
│   └── unnuke-users.php
└── src/
    ├── .gitignore
    ├── Cache.php
    ├── Config.example.php
    ├── ControllerModules/
    │   ├── AbstractControllerModule.php
    │   ├── AbstractUserControllerModule.php
    │   ├── AdminControllerIndexModule.php
    │   ├── AdminControllerLoginModule.php
    │   ├── AdminControllerLogoutModule.php
    │   ├── AdminControllerMiscModule.php
    │   ├── AdminControllerProcessorModule.php
    │   ├── IndexControllerAboutModule.php
    │   ├── IndexControllerGlobalsModule.php
    │   ├── IndexControllerIndexModule.php
    │   ├── IndexControllerSearchModule.php
    │   ├── UserControllerAchievementsModule.php
    │   ├── UserControllerEntriesModule.php
    │   ├── UserControllerExportModule.php
    │   ├── UserControllerFavoritesModule.php
    │   ├── UserControllerHistoryModule.php
    │   ├── UserControllerListsModule.php
    │   ├── UserControllerProfileModule.php
    │   ├── UserControllerQueueAddModule.php
    │   ├── UserControllerQueuePositionModule.php
    │   ├── UserControllerRatingsModule.php
    │   └── UserControllerRecommendationsModule.php
    ├── Controllers/
    │   ├── AbstractController.php
    │   ├── AdminController.php
    │   ├── ControllerContext.php
    │   ├── IndexController.php
    │   └── UserController.php
    ├── CronRunner.php
    ├── Database.php
    ├── Document.php
    ├── Downloader.php
    ├── Enums/
    │   ├── AnimeMediaSource.php
    │   ├── AnimeMediaType.php
    │   ├── Enum.php
    │   ├── MangaMediaType.php
    │   ├── Media.php
    │   ├── MediaRelation.php
    │   ├── MediaStatus.php
    │   ├── MediaType.php
    │   └── UserListStatus.php
    ├── ErrorHandler.php
    ├── Exceptions/
    │   ├── BadMediaException.php
    │   ├── BadProcessorDocumentException.php
    │   ├── BadProcessorKeyException.php
    │   ├── DocumentException.php
    │   ├── DownloadFailureException.php
    │   ├── InstanceAlreadyRunningException.php
    │   └── UnimplementedException.php
    ├── Helpers/
    │   ├── BanHelper.php
    │   ├── BenchmarkHelper.php
    │   ├── HttpHeadersHelper.php
    │   ├── ReflectionHelper.php
    │   ├── TextHelper.php
    │   ├── UrlHelper.php
    │   └── WebMediaHelper.php
    ├── Logger.php
    ├── ModelUtils/
    │   ├── DataSorter.php
    │   ├── DistributionEvaluator.php
    │   ├── Distributions/
    │   │   ├── AbstractDistribution.php
    │   │   ├── MediaCreatorDistribution.php
    │   │   ├── MediaDecadeDistribution.php
    │   │   ├── MediaGenreDistribution.php
    │   │   ├── MediaLengthDistribution.php
    │   │   ├── MediaSourceDistribution.php
    │   │   ├── MediaTypeDistribution.php
    │   │   ├── MediaYearDistribution.php
    │   │   ├── RatingDistribution.php
    │   │   └── RatingTimeDistribution.php
    │   └── UserMediaFilter.php
    ├── Models/
    │   ├── Model_Media.php
    │   ├── Model_MixedUserMedia.php
    │   └── Model_User.php
    ├── Processors/
    │   ├── AbstractProcessor.php
    │   ├── AnimeProcessor.php
    │   ├── MangaProcessor.php
    │   ├── ProcessingContext.php
    │   ├── SubProcessors/
    │   │   ├── AbstractSubProcessor.php
    │   │   ├── AnimeSubProcessorBasic.php
    │   │   ├── AnimeSubProcessorProducers.php
    │   │   ├── MangaSubProcessorAuthors.php
    │   │   ├── MangaSubProcessorBasic.php
    │   │   ├── MediaSubProcessor.php
    │   │   ├── MediaSubProcessorBasic.php
    │   │   ├── MediaSubProcessorFranchises.php
    │   │   ├── MediaSubProcessorGenres.php
    │   │   ├── MediaSubProcessorRecommendations.php
    │   │   ├── MediaSubProcessorRelations.php
    │   │   ├── UserMediaSubProcessor.php
    │   │   ├── UserMediaSubProcessorBasic.php
    │   │   ├── UserSubProcessor.php
    │   │   ├── UserSubProcessorFriends.php
    │   │   ├── UserSubProcessorHistory.php
    │   │   ├── UserSubProcessorProfile.php
    │   │   └── UserSubProcessorUserMedia.php
    │   ├── UserMediaProcessor.php
    │   └── UserProcessor.php
    ├── Queue.php
    ├── QueueItem.php
    ├── SingleInstance.php
    ├── Singleton.php
    ├── Strings.php
    ├── Views/
    │   ├── View.php
    │   ├── ViewContext.php
    │   ├── admin-index.phtml
    │   ├── admin-login.phtml
    │   ├── error-403.phtml
    │   ├── error-404.phtml
    │   ├── error-user-blocked.phtml
    │   ├── error-user-enqueued.phtml
    │   ├── error-user-invalid.phtml
    │   ├── error-user-not-found.phtml
    │   ├── error.phtml
    │   ├── index-about.phtml
    │   ├── index-globals.phtml
    │   ├── index-index.phtml
    │   ├── layout-ajax.phtml
    │   ├── layout-base.phtml
    │   ├── layout-headerless.phtml
    │   ├── layout-json.phtml
    │   ├── layout-raw.phtml
    │   ├── layout.phtml
    │   ├── maintenance.phtml
    │   ├── user-achievements.phtml
    │   ├── user-entries-creator.phtml
    │   ├── user-entries-decade.phtml
    │   ├── user-entries-franchises.phtml
    │   ├── user-entries-genre.phtml
    │   ├── user-entries-length.phtml
    │   ├── user-entries-mismatches.phtml
    │   ├── user-entries-ratings.phtml
    │   ├── user-entries-source.phtml
    │   ├── user-entries-type.phtml
    │   ├── user-entries-year.phtml
    │   ├── user-favorites-creators.phtml
    │   ├── user-favorites-decades.phtml
    │   ├── user-favorites-genres.phtml
    │   ├── user-favorites-sources.phtml
    │   ├── user-favorites-types.phtml
    │   ├── user-favorites.phtml
    │   ├── user-history-daily.phtml
    │   ├── user-history-monthly.phtml
    │   ├── user-history.phtml
    │   ├── user-list.phtml
    │   ├── user-menu.phtml
    │   ├── user-profile-basic.phtml
    │   ├── user-profile-friends.phtml
    │   ├── user-profile-media-summaries.phtml
    │   ├── user-profile.phtml
    │   ├── user-ratings-dist.phtml
    │   ├── user-ratings-length-dist.phtml
    │   ├── user-ratings-time-dist.phtml
    │   ├── user-ratings.phtml
    │   ├── user-recommendations-missing.phtml
    │   ├── user-recommendations-new.phtml
    │   └── user-recommendations.phtml
    └── core.php
Download .txt
SYMBOL INDEX (630 symbols across 118 files)

FILE: public_html/media/js/glider.js
  function animateGlider (line 2) | function animateGlider()
  function showGlider (line 119) | function showGlider()
  function showGliderDelayed (line 128) | function showGliderDelayed()
  function attachGlider (line 134) | function attachGlider(elems, event)

FILE: public_html/media/js/index/index.js
  function switchShowcaseTab (line 3) | function switchShowcaseTab(num)
  function nextShowcaseTab (line 16) | function nextShowcaseTab()

FILE: public_html/media/js/jquery.cookie.js
  function encode (line 23) | function encode(s) {
  function decode (line 27) | function decode(s) {
  function stringifyCookieValue (line 31) | function stringifyCookieValue(value) {
  function parseCookieValue (line 35) | function parseCookieValue(s) {
  function read (line 50) | function read(s, converter) {

FILE: public_html/media/js/jquery.farbtastic.js
  function calculateMask (line 216) | function calculateMask(sizex, sizey, outputPixel) {
  function x (line 439) | function x(i) {
  function x (line 445) | function x(i) {

FILE: public_html/media/js/jquery.highcharts.js
  function z (line 8) | function z(){var a,b=arguments,c,d={},e=function(a,b){var c,d;typeof a!=...
  function B (line 8) | function B(a,b){return parseInt(a,b||10)}
  function Da (line 8) | function Da(a){return typeof a==="string"}
  function ca (line 8) | function ca(a){return a&&
  function Ha (line 9) | function Ha(a){return Object.prototype.toString.call(a)==="[object Array]"}
  function qa (line 9) | function qa(a){return typeof a==="number"}
  function Ea (line 9) | function Ea(a){return V.log(a)/V.LN10}
  function ha (line 9) | function ha(a){return V.pow(10,a)}
  function ia (line 9) | function ia(a,b){for(var c=a.length;c--;)if(a[c]===b){a.splice(c,1);break}}
  function s (line 9) | function s(a){return a!==u&&a!==null}
  function L (line 9) | function L(a,b,c){var d,e;if(Da(b))s(c)?a.setAttribute(b,c):a&&a.getAttr...
  function ra (line 9) | function ra(a){return Ha(a)?
  function F (line 10) | function F(a,b){if(ya&&!ba&&b&&b.opacity!==u)b.filter="alpha(opacity="+b...
  function Z (line 10) | function Z(a,b,c,d,e){a=A.createElement(a);b&&r(a,b);e&&F(a,{padding:0,b...
  function ja (line 10) | function ja(a,b){var c=function(){return u};c.prototype=new a;r(c.protot...
  function Ia (line 10) | function Ia(a,b){return Array((b||2)+1-String(a).length).join(0)+a}
  function Wa (line 10) | function Wa(a){return(eb&&eb(a)||nb||0)*6E4}
  function Ja (line 10) | function Ja(a,b){for(var c="{",d=!1,e,f,g,h,i,j=[];(c=a.indexOf(c))!==
  function ob (line 11) | function ob(a){return V.pow(10,U(V.log(a)/V.LN10))}
  function pb (line 11) | function pb(a,b,c,d,e){var f,g=a,c=p(c,1);f=a/c;b||(b=[1,2,2.5,5,10],d==...
  function qb (line 12) | function qb(a,b){var c=a.length,d,e;for(e=0;e<c;e++)a[e].ss_i=e;a.sort(f...
  function Pa (line 12) | function Pa(a){for(var b=a.length,c=a[0];b--;)a[b]<c&&(c=a[b]);return c}
  function Fa (line 12) | function Fa(a){for(var b=a.length,c=a[0];b--;)a[b]>c&&(c=a[b]);return c}
  function Qa (line 12) | function Qa(a,b){for(var c in a)a[c]&&a[c]!==b&&a[c].destroy&&a[c].destr...
  function Ra (line 13) | function Ra(a){fb||(fb=Z(Ka));a&&fb.appendChild(a);fb.innerHTML=""}
  function ka (line 13) | function ka(a,b){var c="Highcharts error #"+a+": www.highcharts.com/erro...
  function da (line 13) | function da(a){return parseFloat(a.toPrecision(14))}
  function Sa (line 13) | function Sa(a,b){za=p(a,b.animation)}
  function Cb (line 13) | function Cb(){var a=P.global,b=a.useUTC,c=b?"getUTC":"get",d=b?"setUTC":...
  function K (line 14) | function K(){}
  function Ta (line 14) | function Ta(a,b,c,d){this.axis=a;this.pos=b;this.type=c||"";this.isNew=!...
  function Hb (line 14) | function Hb(a,b,c,d,e){var f=a.chart.inverted;this.axis=a;this.isNegativ...
  function j (line 73) | function j(){var a,b;a=q.element.style;p=(fa===void 0||t===void 0||o.sty...
  function k (line 73) | function k(){var a=o.styles,a=a&&a.textAlign,b=ua+v*(1-C),c;c=h?0:
  function l (line 74) | function l(a,b){y?y.attr(a,b):E[a]=b}
  function a (line 99) | function a(){var a=b.length,d;for(d=0;d<a;d++)b[d]();b=[]}
  function a (line 254) | function a(){var a={width:b.yAxis.len,height:b.xAxis.len};m(["group","ma...
  function a (line 258) | function a(b,d,g){var h,i;if(i=b&&b.length)return h=c.kdAxisArray[d%g],b...
  function b (line 259) | function b(){var b=kb(c.points,function(a){return a.y!==null});c.kdTree=...
  function b (line 259) | function b(a,h,i,j){var k=h.point,l=c.kdAxisArray[i%j],n,o=k;n=s(a[e])&&...
  function e (line 267) | function e(){f.applyOptions(a);if(ca(a)&&
  function b (line 306) | function b(){var d=

FILE: public_html/media/js/jquery.tablesorter.js
  function benchmark (line 3) | function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms...
  function log (line 3) | function log(s){if(typeof console!="undefined"&&typeof console.debug!="u...
  function buildParserCache (line 3) | function buildParserCache(table,$headers){if(table.config.debug){var par...
  function detectParserForColumn (line 3) | function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=pars...
  function getNodeFromRowAndCellIndex (line 3) | function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows...
  function trimAndGetNodeText (line 3) | function trimAndGetNodeText(config,node){return $.trim(getElementText(co...
  function getParserById (line 3) | function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){i...
  function buildCache (line 3) | function buildCache(table){if(table.config.debug){var cacheTime=new Date...
  function getElementText (line 3) | function getElementText(config,node){var text="";if(!node)return"";if(!c...
  function appendToTable (line 3) | function appendToTable(table,cache){if(table.config.debug){var appendTim...
  function buildHeaders (line 3) | function buildHeaders(table){if(table.config.debug){var time=new Date();...
  function computeTableHeaderCellIndexes (line 3) | function computeTableHeaderCellIndexes(t){var matrix=[];var lookup={};va...
  function checkCellColSpan (line 4) | function checkCellColSpan(table,rows,row){var arr=[],r=table.tHead.rows,...
  function checkHeaderMetadata (line 4) | function checkHeaderMetadata(cell){if(($.metadata)&&($(cell).metadata()....
  function checkHeaderOptions (line 4) | function checkHeaderOptions(table,i){if((table.config.headers[i])&&(tabl...
  function checkHeaderOptionsSortingLocked (line 4) | function checkHeaderOptionsSortingLocked(table,i){if((table.config.heade...
  function applyWidget (line 4) | function applyWidget(table){var c=table.config.widgets;var l=c.length;fo...
  function getWidgetById (line 4) | function getWidgetById(name){var l=widgets.length;for(var i=0;i<l;i++){i...
  function formatSortingOrder (line 4) | function formatSortingOrder(v){if(typeof(v)!="Number"){return(v.toLowerC...
  function isValueInArray (line 4) | function isValueInArray(v,a){var l=a.length;for(var i=0;i<l;i++){if(a[i]...
  function setHeadersCss (line 4) | function setHeadersCss(table,$headers,list,css){$headers.removeClass(css...
  function fixColumnWidth (line 4) | function fixColumnWidth(table,$headers){var c=table.config;if(c.widthFix...
  function updateHeaderSortCount (line 4) | function updateHeaderSortCount(table,sortList){var c=table.config,l=sort...
  function multisort (line 4) | function multisort(table,sortList,cache){if(table.config.debug){var sort...
  function makeSortFunction (line 4) | function makeSortFunction(type,direction,index){var a="a["+index+"]",b="...
  function makeSortText (line 4) | function makeSortText(i){return"((a["+i+"] < b["+i+"]) ? -1 : ((a["+i+"]...
  function makeSortTextDesc (line 4) | function makeSortTextDesc(i){return"((b["+i+"] < a["+i+"]) ? -1 : ((b["+...
  function makeSortNumeric (line 4) | function makeSortNumeric(i){return"a["+i+"]-b["+i+"];";}
  function makeSortNumericDesc (line 4) | function makeSortNumericDesc(i){return"b["+i+"]-a["+i+"];";}
  function sortText (line 4) | function sortText(a,b){if(table.config.sortLocaleCompare)return a.locale...
  function sortTextDesc (line 4) | function sortTextDesc(a,b){if(table.config.sortLocaleCompare)return b.lo...
  function sortNumeric (line 4) | function sortNumeric(a,b){return a-b;}
  function sortNumericDesc (line 4) | function sortNumericDesc(a,b){return b-a;}
  function getCachedSortType (line 4) | function getCachedSortType(parsers,i){return parsers[i].type;}
  function empty (line 4) | function empty(){while(this.firstChild)this.removeChild(this.firstChild);}

FILE: public_html/media/js/misc.js
  function getProcessedDate (line 30) | function getProcessedDate()
  function ucfirst (line 35) | function ucfirst(str)
  function lpad (line 42) | function lpad(str, width)

FILE: public_html/media/js/tooltips.js
  function stopTooltipRemoval (line 4) | function stopTooltipRemoval(target)
  function startTooltipRemoval (line 11) | function startTooltipRemoval(target)

FILE: public_html/media/js/user/entries.js
  function toggleEntries (line 25) | function toggleEntries(target, data, ajax, cb)

FILE: public_html/media/js/user/profile.js
  function getProfileAge (line 1) | function getProfileAge()
  function updatePosition (line 10) | function updatePosition()
  function updateTime (line 53) | function updateTime()

FILE: public_html/media/js/user/ratings.js
  function updatePreview (line 13) | function updatePreview(target)
  function resetParams (line 46) | function resetParams()
  function updateParams (line 51) | function updateParams(params)
  function changeColor (line 123) | function changeColor(color)

FILE: script/cron-queue.php
  function processQueue (line 4) | function processQueue($queue, $count, $maxAttempts, $logger, $callback)

FILE: src/Cache.php
  class Cache (line 2) | class Cache
    method setPrefix (line 8) | public function setPrefix($prefix)
    method bypass (line 13) | public function bypass($doBypass)
    method isBypassed (line 18) | public function isBypassed()
    method urlToPath (line 23) | private function urlToPath($url)
    method load (line 31) | public function load($url)
    method exists (line 45) | public function exists($url)
    method isFresh (line 51) | public function isFresh($url)
    method save (line 73) | public function save($url, $renderFunction)
    method getAllFiles (line 95) | public function getAllFiles()
    method getUsedFiles (line 100) | public function getUsedFiles()

FILE: src/Config.example.php
  class Config (line 2) | class Config extends Singleton
    method doInit (line 58) | public static function doInit()

FILE: src/ControllerModules/AbstractControllerModule.php
  class AbstractControllerModule (line 2) | abstract class AbstractControllerModule
    method work (line 8) | public static function work(&$controllerContext, &$viewContext)
    method getUrlParts (line 19) | public static function getUrlParts()
    method url (line 28) | public static function url()
    method getOrder (line 37) | public static function getOrder()
    method preWork (line 46) | public static function preWork(&$controllerContext, &$viewContext)
    method postWork (line 53) | public static function postWork(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/AbstractUserControllerModule.php
  class AbstractUserControllerModule (line 2) | abstract class AbstractUserControllerModule extends AbstractControllerMo...
    method getText (line 7) | public static function getText(ViewContext $viewContext, $media)
    method getMediaAvailability (line 16) | public static function getMediaAvailability()
    method url (line 25) | public static function url()
    method getContentType (line 46) | public static function getContentType()

FILE: src/ControllerModules/AdminControllerIndexModule.php
  class AdminControllerIndexModule (line 2) | class AdminControllerIndexModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/AdminControllerLoginModule.php
  class AdminControllerLoginModule (line 2) | class AdminControllerLoginModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/AdminControllerLogoutModule.php
  class AdminControllerLogoutModule (line 2) | class AdminControllerLogoutModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/AdminControllerMiscModule.php
  class AdminControllerMiscModule (line 2) | class AdminControllerMiscModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/AdminControllerProcessorModule.php
  class AdminControllerProcessorModule (line 2) | class AdminControllerProcessorModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method getChosenMedia (line 14) | private static function getChosenMedia($modelIds)
    method getChosenUsers (line 46) | private static function getChosenUsers($modelIds)
    method work (line 56) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/IndexControllerAboutModule.php
  class IndexControllerAboutModule (line 2) | class IndexControllerAboutModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/IndexControllerGlobalsModule.php
  class IndexControllerGlobalsModule (line 2) | class IndexControllerGlobalsModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/IndexControllerIndexModule.php
  class IndexControllerIndexModule (line 2) | class IndexControllerIndexModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/IndexControllerSearchModule.php
  class IndexControllerSearchModule (line 2) | class IndexControllerSearchModule extends AbstractControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method url (line 9) | public static function url()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerAchievementsModule.php
  class UserControllerAchievementsModule (line 2) | class UserControllerAchievementsModule extends AbstractUserControllerModule
    method getText (line 4) | public static function getText(ViewContext $viewContext, $media)
    method getUrlParts (line 9) | public static function getUrlParts()
    method getMediaAvailability (line 14) | public static function getMediaAvailability()
    method getOrder (line 19) | public static function getOrder()
    method getThreshold (line 24) | private static function getThreshold($achievement)
    method getAchievementsDefinitions (line 37) | public static function getAchievementsDefinitions()
    method work (line 83) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerEntriesModule.php
  class UserControllerEntriesModule (line 2) | class UserControllerEntriesModule extends AbstractUserControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method getMediaAvailability (line 9) | public static function getMediaAvailability()
    method work (line 14) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerExportModule.php
  class UserControllerExportModule (line 2) | class UserControllerExportModule extends AbstractUserControllerModule
    method getText (line 4) | public static function getText(ViewContext $viewContext, $media)
    method getUrlParts (line 8) | public static function getUrlParts()
    method url (line 13) | public static function url()
    method getMediaAvailability (line 24) | public static function getMediaAvailability()
    method getOrder (line 29) | public static function getOrder()
    method getContentType (line 33) | public static function getContentType()
    method mixColors (line 52) | private static function mixColors($c1, $c2, $r)
    method drawGradient (line 65) | private static function drawGradient($img, $x1, $y1, $x2, $y2, $c1, $c2)
    method drawCopy (line 80) | private static function drawCopy($dst, $src, $x, $y)
    method getBoundingBox (line 85) | private static function getBoundingBox($fontSize, $fontPath, $text)
    method getIconImage (line 102) | private static function getIconImage($settings)
    method getBarsImage (line 124) | private static function getBarsImage($settings, $distribution, $mirror...
    method getBarsAxesImage (line 161) | private static function getBarsAxesImage($settings, $center = false)
    method getBarsBandsImage (line 200) | private static function getBarsBandsImage($settings, $distribution, $m...
    method getFooterImage (line 261) | private static function getFooterImage($settings, $distribution, $medi...
    method work (line 309) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerFavoritesModule.php
  class UserControllerFavoritesModule (line 2) | class UserControllerFavoritesModule extends AbstractUserControllerModule
    method getText (line 4) | public static function getText(ViewContext $viewContext, $media)
    method getUrlParts (line 9) | public static function getUrlParts()
    method getMediaAvailability (line 14) | public static function getMediaAvailability()
    method getOrder (line 19) | public static function getOrder()
    method work (line 24) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerHistoryModule.php
  class UserControllerHistoryModule (line 2) | class UserControllerHistoryModule extends AbstractUserControllerModule
    method getText (line 4) | public static function getText(ViewContext $viewContext, $media)
    method getUrlParts (line 9) | public static function getUrlParts()
    method getMediaAvailability (line 14) | public static function getMediaAvailability()
    method getOrder (line 19) | public static function getOrder()
    method work (line 24) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerListsModule.php
  class UserControllerListsModule (line 2) | class UserControllerListsModule extends AbstractUserControllerModule
    method getText (line 4) | public static function getText(ViewContext $viewContext, $media)
    method getUrlParts (line 9) | public static function getUrlParts()
    method getMediaAvailability (line 14) | public static function getMediaAvailability()
    method getOrder (line 19) | public static function getOrder()
    method work (line 24) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerProfileModule.php
  class UserControllerProfileModule (line 2) | class UserControllerProfileModule extends AbstractUserControllerModule
    method getText (line 4) | public static function getText(ViewContext $viewContext, $media)
    method getUrlParts (line 9) | public static function getUrlParts()
    method getMediaAvailability (line 14) | public static function getMediaAvailability()
    method work (line 19) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerQueueAddModule.php
  class UserControllerQueueAddModule (line 2) | class UserControllerQueueAddModule extends AbstractUserControllerModule
    method getUrlParts (line 4) | public static function getUrlParts()
    method getMediaAvailability (line 9) | public static function getMediaAvailability()
    method preWork (line 14) | public static function preWork(&$controllerContext, &$viewContext)
    method work (line 20) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerQueuePositionModule.php
  class UserControllerQueuePositionModule (line 2) | class UserControllerQueuePositionModule extends AbstractUserControllerMo...
    method getUrlParts (line 4) | public static function getUrlParts()
    method getMediaAvailability (line 9) | public static function getMediaAvailability()
    method preWork (line 14) | public static function preWork(&$controllerContext, &$viewContext)
    method work (line 20) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerRatingsModule.php
  class UserControllerRatingsModule (line 2) | class UserControllerRatingsModule extends AbstractUserControllerModule
    method getText (line 4) | public static function getText(ViewContext $viewContext, $media)
    method getUrlParts (line 9) | public static function getUrlParts()
    method getMediaAvailability (line 14) | public static function getMediaAvailability()
    method getOrder (line 19) | public static function getOrder()
    method work (line 24) | public static function work(&$controllerContext, &$viewContext)

FILE: src/ControllerModules/UserControllerRecommendationsModule.php
  class RecommendationsEngine (line 2) | class RecommendationsEngine
    method __construct (line 8) | public function __construct($media, $list)
    method addRecsFromRecommendations (line 23) | private static function addRecsFromRecommendations($list)
    method addRecsFromStaticRecommendations (line 77) | private static function addRecsFromStaticRecommendations($media)
    method getRecsFromWeights (line 93) | private static function getRecsFromWeights($weights)
    method trimByValue (line 107) | private static function trimByValue($input, $goal)
    method trimByScore (line 114) | private static function trimByScore($input, $goal)
    method filterKeys (line 124) | private static function filterKeys($input, $filteredKeys)
    method filterBannedGenres (line 137) | private static function filterBannedGenres($selectedEntries)
    method filterFranchises (line 161) | private static function filterFranchises($selectedEntries)
    method getNewRecommendations (line 232) | public function getNewRecommendations($goal)
    method getMissingTitles (line 274) | public function getMissingTitles()
    method getMissingTitlesCount (line 288) | public function getMissingTitlesCount($titles)
  class UserControllerRecommendationsModule (line 304) | class UserControllerRecommendationsModule extends AbstractUserController...
    method getText (line 306) | public static function getText(ViewContext $viewContext, $media)
    method getUrlParts (line 311) | public static function getUrlParts()
    method getMediaAvailability (line 316) | public static function getMediaAvailability()
    method getOrder (line 321) | public static function getOrder()
    method work (line 326) | public static function work(&$controllerContext, &$viewContext)

FILE: src/Controllers/AbstractController.php
  class AbstractController (line 2) | abstract class AbstractController
    method parseRequest (line 4) | public static function parseRequest($url, &$controllerContext)
    method preWork (line 9) | public static function preWork(&$controllerContext, &$viewContext)
    method postWork (line 15) | public static function postWork(&$controllerContext, &$viewContext)
    method work (line 21) | public static function work(&$controllerContext, &$viewContext)
    method getAvailableModulesRegex (line 26) | protected static function getAvailableModulesRegex()
    method getModuleByUrlPart (line 44) | protected static function getModuleByUrlPart($urlPart)
    method init (line 60) | public static function init()
    method getAvailableModules (line 86) | public static function getAvailableModules()

FILE: src/Controllers/AdminController.php
  class AdminController (line 2) | class AdminController extends AbstractController
    method parseRequest (line 4) | public static function parseRequest($url, &$controllerContext)
    method work (line 20) | public static function work(&$controllerContext, &$viewContext)

FILE: src/Controllers/ControllerContext.php
  class ControllerContext (line 2) | class ControllerContext
    method __construct (line 4) | public function __construct()

FILE: src/Controllers/IndexController.php
  class IndexController (line 2) | class IndexController extends AbstractController
    method parseRequest (line 4) | public static function parseRequest($url, &$controllerContext)
    method preWork (line 19) | public static function preWork(&$controllerContext, &$viewContext)
    method work (line 24) | public static function work(&$controllerContext, &$viewContext)

FILE: src/Controllers/UserController.php
  class UserController (line 2) | class UserController extends AbstractController
    method getUserRegex (line 4) | public static function getUserRegex()
    method parseRequest (line 9) | public static function parseRequest($url, &$controllerContext)
    method preWork (line 43) | public static function preWork(&$controllerContext, &$viewContext)
    method work (line 114) | public static function work(&$controllerContext, &$viewContext)

FILE: src/CronRunner.php
  class CronRunner (line 2) | class CronRunner
    method shutdown (line 6) | public static function shutdown($logger)
    method run (line 15) | public static function run($fileName, $callback)

FILE: src/Database.php
  class Database (line 3) | class Database extends Singleton
    method doInit (line 5) | public static function doInit()
    method userNameToDbName (line 12) | public static function userNameToDbName($userName)
    method getAllDbNames (line 19) | public static function getAllDbNames()
    method selectUser (line 29) | public static function selectUser($userName)
    method loadDatabase (line 34) | public static function loadDatabase($dbFile)
    method attachDatabase (line 48) | public static function attachDatabase($dbFile)
    method insert (line 59) | public static function insert($tableName, $allRows)
    method delete (line 87) | public static function delete($tableName, $conditions)

FILE: src/Document.php
  class Document (line 2) | class Document
    method __construct (line 9) | public function __construct($url, $code, $headers, $content)

FILE: src/Downloader.php
  class Downloader (line 2) | class Downloader
    method setLogger (line 6) | public static function setLogger(Logger $logger)
    method prepareHandle (line 11) | private static function prepareHandle($url)
    method parseResult (line 30) | private static function parseResult($result, $url)
    method urlToPath (line 44) | private static function urlToPath($url)
    method purgeCache (line 49) | public static function purgeCache(array $urls)
    method download (line 61) | public static function download($url)
    method downloadMulti (line 67) | public static function downloadMulti(array $urls)

FILE: src/Enums/AnimeMediaSource.php
  class AnimeMediaSource (line 2) | class AnimeMediaSource extends Enum
    method toString (line 21) | public static function toString($source)

FILE: src/Enums/AnimeMediaType.php
  class AnimeMediaType (line 2) | class AnimeMediaType extends MediaType
    method toString (line 15) | public static function toString($type, $media = null)

FILE: src/Enums/Enum.php
  class Enum (line 2) | abstract class Enum
    method getConstList (line 4) | public static function getConstList()

FILE: src/Enums/MangaMediaType.php
  class MangaMediaType (line 2) | class MangaMediaType extends MediaType
    method toString (line 13) | public static function toString($type, $media = null)

FILE: src/Enums/Media.php
  class Media (line 2) | class Media extends Enum
    method toString (line 7) | public static function toString($media)

FILE: src/Enums/MediaRelation.php
  class MediaRelation (line 2) | class MediaRelation extends Enum
    method toString (line 17) | public static function toString($type, $media = null)

FILE: src/Enums/MediaStatus.php
  class MediaStatus (line 2) | class MediaStatus extends Enum
    method toString (line 10) | public static function toString($mediaStatus, $media = null)

FILE: src/Enums/MediaType.php
  class MediaType (line 2) | class MediaType extends Enum
    method toString (line 4) | public static function toString($type, $media)

FILE: src/Enums/UserListStatus.php
  class UserListStatus (line 2) | class UserListStatus extends Enum
    method toString (line 11) | public static function toString($status, $media = null)

FILE: src/ErrorHandler.php
  class ErrorHandler (line 2) | class ErrorHandler extends Singleton
    method suppress (line 4) | public static function suppress()
    method restore (line 9) | public static function restore()
    method doInit (line 14) | public static function doInit()
    method handler (line 20) | public static function handler(

FILE: src/Exceptions/BadMediaException.php
  class BadMediaException (line 2) | class BadMediaException extends Exception
    method __construct (line 4) | public function __construct()

FILE: src/Exceptions/BadProcessorDocumentException.php
  class BadProcessorDocumentException (line 2) | class BadProcessorDocumentException extends DocumentException
    method __construct (line 4) | public function __construct(Document $document, $message)

FILE: src/Exceptions/BadProcessorKeyException.php
  class BadProcessorKeyException (line 2) | class BadProcessorKeyException extends Exception
    method __construct (line 4) | public function __construct($key)

FILE: src/Exceptions/DocumentException.php
  class DocumentException (line 2) | class DocumentException extends Exception
    method __construct (line 4) | public function __construct(Document $document, $message)
    method getDocument (line 10) | public function getDocument()

FILE: src/Exceptions/DownloadFailureException.php
  class DownloadFailureException (line 2) | class DownloadFailureException extends Exception
    method __construct (line 4) | public function __construct($url, $reason = null)

FILE: src/Exceptions/InstanceAlreadyRunningException.php
  class InstanceAlreadyRunningException (line 2) | class InstanceAlreadyRunningException extends Exception
    method __construct (line 4) | public function __construct($scriptName)

FILE: src/Exceptions/UnimplementedException.php
  class UnimplementedException (line 2) | class UnimplementedException extends Exception
    method __construct (line 4) | public function __construct()

FILE: src/Helpers/BanHelper.php
  class BanHelper (line 2) | class BanHelper extends Singleton
    method doInit (line 14) | public static function doInit()
    method getUserBanState (line 32) | public static function getUserBanState($userName)
    method setUserBanState (line 39) | public static function setUserBanState($userName, $banState)
    method isGenreBanned (line 58) | public static function isGenreBanned($media, $genreId)
    method isCreatorBanned (line 63) | public static function isCreatorBanned($media, $creatorId)
    method isGenreBannedForRecs (line 68) | public static function isGenreBannedForRecs($media, $genreId)
    method isFranchiseCouplingBanned (line 73) | public static function isFranchiseCouplingBanned($media1, $idMal1, $me...

FILE: src/Helpers/BenchmarkHelper.php
  class BenchmarkHelper (line 2) | class BenchmarkHelper extends Singleton
    method benchmark (line 7) | public static function benchmark($message = 'ping')
    method doInit (line 18) | public static function doInit()

FILE: src/Helpers/HttpHeadersHelper.php
  class HttpHeadersHelper (line 2) | class HttpHeadersHelper
    method getCurrentHeaders (line 4) | public static function getCurrentHeaders()
    method parseHeaderLines (line 10) | public static function parseHeaderLines($headerLines)
    method headersSent (line 30) | public static function headersSent()
    method getCurrentHeader (line 35) | public static function getCurrentHeader($givenKey)
    method setCurrentHeader (line 47) | public static function setCurrentHeader($key, $value)

FILE: src/Helpers/ReflectionHelper.php
  class ReflectionHelper (line 2) | class ReflectionHelper
    method loadClasses (line 4) | public static function loadClasses($dir)
    method isAbstract (line 21) | public static function isAbstract($className)
    method isConcrete (line 27) | public static function isConcrete($className)
    method arrayToClass (line 32) | public static function arrayToClass(array $array, $className = null)
    method arraysToClasses (line 44) | public static function arraysToClasses(array $array, $className = null)

FILE: src/Helpers/TextHelper.php
  class TextHelper (line 2) | class TextHelper
    method loadJson (line 7) | public static function loadJson($path, $fetchAsArray = false)
    method loadSimpleList (line 16) | public static function loadSimpleList($path)
    method putSimpleList (line 26) | public static function putSimpleList($path, $lines)
    method putJson (line 34) | public static function putJson($path, $json)
    method getTimeText (line 40) | public static function getTimeText($totalSeconds, $precision)
    method getVolumesText (line 66) | public static function getVolumesText($plural, $short = false)
    method getMediaUnitText (line 71) | public static function getMediaUnitText($media, $plural = false, $shor...
    method getNumberedMediaUnitText (line 83) | public static function getNumberedMediaUnitText($media, $number, $shor...
    method getMediaCustomUnitText (line 100) | public static function getMediaCustomUnitText($shortForm, $longForm, $...
    method replaceTokens (line 110) | public static function replaceTokens($input, array $tokens)
    method roundPercentages (line 125) | public static function roundPercentages($distribution, $precision = 0)
    method serializeMediaId (line 163) | public static function serializeMediaId($entry)
    method deserializeMediaId (line 177) | public static function deserializeMediaId($id)
    method roundDecimal (line 184) | public static function roundDecimal($number, $places = 0)
    method floorDecimal (line 189) | public static function floorDecimal($number, $places = 0)
    method ceilDecimal (line 194) | public static function ceilDecimal($number, $places = 0)
    method roundDecimalWithFunction (line 199) | private static function roundDecimalWithFunction($number, $places, $fu...
    method mailJavaScript (line 210) | public static function mailJavaScript($mail)

FILE: src/Helpers/UrlHelper.php
  class UrlHelper (line 2) | class UrlHelper
    method absoluteUrl (line 4) | public static function absoluteUrl($relativeUrl = null, $params = [])
    method currentUrl (line 31) | public static function currentUrl()

FILE: src/Helpers/WebMediaHelper.php
  class WebMediaHelper (line 2) | class WebMediaHelper
    method addFarbtastic (line 4) | public static function addFarbtastic($viewContext)
    method addHighcharts (line 9) | public static function addHighcharts($viewContext)
    method addTablesorter (line 15) | public static function addTablesorter($viewContext)
    method addMiniSections (line 20) | public static function addMiniSections($viewContext)
    method addInfobox (line 25) | public static function addInfobox($viewContext)
    method addEntries (line 30) | public static function addEntries($viewContext)
    method addJquery (line 36) | public static function addJquery($viewContext)
    method addGlider (line 43) | public static function addGlider($viewContext)
    method addBasic (line 49) | public static function addBasic($viewContext)
    method addHeader (line 60) | public static function addHeader($viewContext)
    method addHeaderless (line 65) | public static function addHeaderless($viewContext)
    method addCustom (line 70) | public static function addCustom($viewContext)
    method download (line 85) | public static function download()

FILE: src/Logger.php
  class Logger (line 2) | class Logger
    method __construct (line 9) | public function __construct($name = null)
    method __destruct (line 19) | public function __destruct()
    method openFile (line 25) | private function openFile()
    method write (line 34) | private function write($string)
    method closeFile (line 48) | private function closeFile()
    method decorate (line 58) | private function decorate($data)
    method purge (line 67) | public function purge()
    method logFragment (line 76) | public function logFragment($data)
    method log (line 86) | public function log($data)
    method getAllFiles (line 98) | private function getAllFiles()
    method rotateIfNeeded (line 114) | private function rotateIfNeeded()
    method rotate (line 120) | private function rotate()

FILE: src/ModelUtils/DataSorter.php
  class DataSorter (line 2) | class DataSorter
    method sort (line 9) | public static function sort(&$entries, $sortType)

FILE: src/ModelUtils/DistributionEvaluator.php
  class DistributionEvaluator (line 2) | class DistributionEvaluator
    method evaluate (line 4) | public static function evaluate(AbstractDistribution $dist)

FILE: src/ModelUtils/Distributions/AbstractDistribution.php
  class AbstractDistribution (line 2) | abstract class AbstractDistribution
    method __construct (line 15) | protected function __construct()
    method fromArray (line 19) | public static function fromArray(array $arrayDist)
    method fromEntries (line 32) | public static function fromEntries(array $entries = [])
    method addEntry (line 43) | protected abstract function addEntry($entry);
    method finalize (line 49) | protected function finalize()
    method serializeKey (line 53) | private static function serializeKey($key)
    method addGroup (line 64) | protected function addGroup($key)
    method addToGroup (line 75) | public function addToGroup($key, $entry, $weight = 1)
    method getGroupEntries (line 83) | public function getGroupEntries($key)
    method getGroupSize (line 93) | public function getGroupSize($key)
    method getGroupsKeys (line 105) | public function getGroupsKeys($flags = 0)
    method getGroupsEntries (line 126) | public function getGroupsEntries($flags = 0)
    method getAllEntries (line 138) | public function getAllEntries($flags = 0)
    method getGroupsSizes (line 156) | public function getGroupsSizes($flags = 0)
    method getLargestGroupSize (line 168) | public function getLargestGroupSize($flags = 0)
    method getLargestGroupKey (line 178) | public function getLargestGroupKey($flags = 0)
    method getSmallestGroupSize (line 183) | public function getSmallestGroupSize($flags = 0)
    method getSmallestGroupKey (line 189) | public function getSmallestGroupKey($flags = 0)
    method getTotalSize (line 194) | public function getTotalSize($flags = 0)

FILE: src/ModelUtils/Distributions/MediaCreatorDistribution.php
  class MediaCreatorDistribution (line 2) | class MediaCreatorDistribution extends AbstractDistribution
    method getNullGroupKey (line 4) | public function getNullGroupKey()
    method fromEntries (line 9) | public static function fromEntries(array $entries = [])
    method addEntry (line 24) | protected function addEntry($entry)

FILE: src/ModelUtils/Distributions/MediaDecadeDistribution.php
  class MediaDecadeDistribution (line 2) | class MediaDecadeDistribution extends AbstractDistribution
    method finalize (line 4) | protected function finalize()
    method getNullGroupKey (line 34) | public function getNullGroupKey()
    method getPublishedDecade (line 39) | public static function getPublishedDecade($entry)
    method addEntry (line 46) | protected function addEntry($entry)

FILE: src/ModelUtils/Distributions/MediaGenreDistribution.php
  class MediaGenreDistribution (line 2) | class MediaGenreDistribution extends AbstractDistribution
    method getNullGroupKey (line 4) | public function getNullGroupKey()
    method fromEntries (line 9) | public static function fromEntries(array $entries = [])
    method addEntry (line 21) | public function addEntry($entry)

FILE: src/ModelUtils/Distributions/MediaLengthDistribution.php
  class MediaLengthDistribution (line 2) | class MediaLengthDistribution extends AbstractDistribution
    method finalize (line 4) | protected function finalize()
    method getNullGroupKey (line 25) | public function getNullGroupKey()
    method getThresholds (line 30) | public static function getThresholds($media)
    method getGroup (line 40) | public static function getGroup($entry)
    method addEntry (line 83) | public function addEntry($entry)

FILE: src/ModelUtils/Distributions/MediaSourceDistribution.php
  class MediaSourceDistribution (line 2) | class MediaSourceDistribution extends AbstractDistribution
    method getNullGroupKey (line 4) | public function getNullGroupKey()
    method addEntry (line 9) | protected function addEntry($entry)

FILE: src/ModelUtils/Distributions/MediaTypeDistribution.php
  class MediaTypeDistribution (line 2) | class MediaTypeDistribution extends AbstractDistribution
    method getNullGroupKey (line 4) | public function getNullGroupKey()
    method addEntry (line 9) | protected function addEntry($entry)

FILE: src/ModelUtils/Distributions/MediaYearDistribution.php
  class MediaYearDistribution (line 2) | class MediaYearDistribution extends AbstractDistribution
    method finalize (line 4) | protected function finalize()
    method getNullGroupKey (line 30) | public function getNullGroupKey()
    method getPublishedYear (line 35) | public static function getPublishedYear($entry)
    method addEntry (line 50) | public function addEntry($entry)

FILE: src/ModelUtils/Distributions/RatingDistribution.php
  class RatingDistribution (line 2) | class RatingDistribution extends AbstractDistribution
    method finalize (line 4) | protected function finalize()
    method addEntry (line 15) | protected function addEntry($entry)
    method getNullGroupKey (line 20) | public function getNullGroupKey()
    method getRatedCount (line 25) | public function getRatedCount()
    method getUnratedCount (line 30) | public function getUnratedCount()
    method getMeanScore (line 35) | public function getMeanScore()
    method getStandardDeviation (line 55) | public function getStandardDeviation()

FILE: src/ModelUtils/Distributions/RatingTimeDistribution.php
  class RatingTimeDistribution (line 2) | class RatingTimeDistribution extends RatingDistribution
    method addEntry (line 4) | public function addEntry($entry)
    method getTotalTime (line 9) | public function getTotalTime()

FILE: src/ModelUtils/UserMediaFilter.php
  class UserMediaFilter (line 2) | class UserMediaFilter
    method doFilter (line 4) | public static function doFilter($entries, $filters)
    method nonPlanned (line 17) | public static function nonPlanned()
    method dropped (line 25) | public static function dropped()
    method finished (line 33) | public static function finished()
    method score (line 41) | public static function score($score)
    method combine (line 50) | public static function combine()
    method lengthGroup (line 55) | public static function lengthGroup($group)
    method publishedYear (line 63) | public static function publishedYear($year)
    method publishedDecade (line 71) | public static function publishedDecade($decade)
    method nonMovie (line 79) | public static function nonMovie()
    method type (line 87) | public static function type($type)
    method creator (line 95) | public static function creator($creatorIds, $list)
    method genre (line 131) | public static function genre($genreIds, $list)
    method source (line 154) | public static function source($sources)
    method givenMedia (line 167) | public static function givenMedia($mediaList)

FILE: src/Models/Model_Media.php
  class Model_Media (line 2) | class Model_Media extends RedBean_SimpleModel
    method getCount (line 4) | public static function getCount($media)
    method getOldest (line 10) | public static function getOldest($media, $number)

FILE: src/Models/Model_MixedUserMedia.php
  class Model_MixedUserMedia (line 2) | class Model_MixedUserMedia
    method __construct (line 4) | public function __construct(array $columns)
    method getSeason (line 52) | public function getSeason()
    method getFromIdList (line 93) | public static function getFromIdList($list)
    method getRatingDistribution (line 106) | public static function getRatingDistribution($media, $doRecompute = fa...
    method clusterize (line 123) | private static function clusterize($entries)
    method getFranchises (line 137) | public static function getFranchises(array $ownEntries, $loadEverythin...
    method attachGenres (line 174) | public static function attachGenres(array &$entries)
    method attachCreators (line 203) | public static function attachCreators(array &$entries)
    method attachRecommendations (line 243) | public static function attachRecommendations(array &$entries)
    method attachMissingRelations (line 263) | public static function attachMissingRelations(array $titles, string $m...
    method createTemporaryTable (line 292) | public static function createTemporaryTable(array $entries)
    method dropTemporaryTable (line 313) | public static function dropTemporaryTable($tblName)

FILE: src/Models/Model_User.php
  class Model_User (line 2) | class Model_User extends RedBean_SimpleModel
    method getMixedUserMedia (line 4) | public function getMixedUserMedia($media)
    method getFriends (line 14) | public function getFriends()
    method getHistory (line 23) | public function getHistory($media)
    method isUserMediaPrivate (line 34) | public function isUserMediaPrivate($media)
    method getCount (line 39) | public static function getCount()
    method getCountAll (line 46) | public static function getCountAll()
    method getCoolUsers (line 53) | public static function getCoolUsers($goal)
    method getMismatchedUserMedia (line 67) | public function getMismatchedUserMedia(array $entries)

FILE: src/Processors/AbstractProcessor.php
  class AbstractProcessor (line 2) | abstract class AbstractProcessor
    method getSubProcessors (line 4) | public abstract function getSubProcessors($key);
    method beforeProcessing (line 6) | public function beforeProcessing(&$context)
    method afterProcessing (line 10) | public function afterProcessing(&$context)
    method onProcessingError (line 14) | public function onProcessingError(&$context)
    method process (line 19) | public function process($key)

FILE: src/Processors/AnimeProcessor.php
  class AnimeProcessor (line 2) | class AnimeProcessor extends AbstractProcessor
    method beforeProcessing (line 4) | public function beforeProcessing(&$context)
    method getSubProcessors (line 17) | public function getSubProcessors($key)
    method onProcessingError (line 30) | public function onProcessingError(&$context)

FILE: src/Processors/MangaProcessor.php
  class MangaProcessor (line 2) | class MangaProcessor extends AbstractProcessor
    method beforeProcessing (line 4) | public function beforeProcessing(&$context)
    method getSubProcessors (line 17) | public function getSubProcessors($key)
    method onProcessingError (line 30) | public function onProcessingError(&$context)

FILE: src/Processors/ProcessingContext.php
  class ProcessingContext (line 2) | class ProcessingContext

FILE: src/Processors/SubProcessors/AbstractSubProcessor.php
  class AbstractSubProcessor (line 2) | abstract class AbstractSubProcessor
    method getDOM (line 6) | protected static function getDOM(Document $document)
    method getNodeValue (line 23) | protected static function getNodeValue(DOMXPath $xpath, $query, DOMNod...
    method process (line 35) | public abstract function process(array $documents, &$context);

FILE: src/Processors/SubProcessors/AnimeSubProcessorBasic.php
  class AnimeSubProcessorBasic (line 2) | class AnimeSubProcessorBasic extends MediaSubProcessor
    method __construct (line 4) | public function __construct()
    method process (line 9) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/AnimeSubProcessorProducers.php
  class AnimeSubProcessorProducers (line 2) | class AnimeSubProcessorProducers extends MediaSubProcessor
    method __construct (line 4) | public function __construct()
    method process (line 9) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/MangaSubProcessorAuthors.php
  class MangaSubProcessorAuthors (line 2) | class MangaSubProcessorAuthors extends MediaSubProcessor
    method __construct (line 4) | public function __construct()
    method process (line 9) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/MangaSubProcessorBasic.php
  class MangaSubProcessorBasic (line 2) | class MangaSubProcessorBasic extends MediaSubProcessor
    method __construct (line 4) | public function __construct()
    method process (line 9) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/MediaSubProcessor.php
  class MediaSubProcessor (line 2) | abstract class MediaSubProcessor extends AbstractSubProcessor
    method __construct (line 8) | public function __construct($media)
    method getURLs (line 13) | public function getURLs($id)

FILE: src/Processors/SubProcessors/MediaSubProcessorBasic.php
  class MediaSubProcessorBasic (line 2) | class MediaSubProcessorBasic extends MediaSubProcessor
    method process (line 4) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/MediaSubProcessorFranchises.php
  class MediaSubProcessorFranchises (line 2) | class MediaSubProcessorFranchises extends MediaSubProcessor
    method mediaToKey (line 4) | private static function mediaToKey($mediaRow)
    method process (line 10) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/MediaSubProcessorGenres.php
  class MediaSubProcessorGenres (line 2) | class MediaSubProcessorGenres extends MediaSubProcessor
    method process (line 4) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/MediaSubProcessorRecommendations.php
  class MediaSubProcessorRecommendations (line 2) | class MediaSubProcessorRecommendations extends MediaSubProcessor
    method process (line 4) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/MediaSubProcessorRelations.php
  class MediaSubProcessorRelations (line 2) | class MediaSubProcessorRelations extends MediaSubProcessor
    method process (line 4) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/UserMediaSubProcessor.php
  class UserMediaSubProcessor (line 2) | abstract class UserMediaSubProcessor extends AbstractSubProcessor

FILE: src/Processors/SubProcessors/UserMediaSubProcessorBasic.php
  class UserMediaSubProcessorBasic (line 2) | class UserMediaSubProcessorBasic extends UserMediaSubProcessor
    method setAnimeRange (line 12) | public function setAnimeRange($max = 0)
    method setMangaRange (line 17) | public function setMangaRange($max = 0)
    method getURLs (line 22) | public function getURLs($name)
    method process (line 43) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/UserSubProcessor.php
  class UserSubProcessor (line 2) | abstract class UserSubProcessor extends AbstractSubProcessor

FILE: src/Processors/SubProcessors/UserSubProcessorFriends.php
  class UserSubProcessorFriends (line 2) | class UserSubProcessorFriends extends UserSubProcessor
    method getURLs (line 6) | public function getURLs($userName)
    method process (line 14) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/UserSubProcessorHistory.php
  class UserSubProcessorHistory (line 2) | class UserSubProcessorHistory extends UserSubProcessor
    method getURLs (line 7) | public function getURLs($username)
    method process (line 15) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/UserSubProcessorProfile.php
  class UserSubProcessorProfile (line 2) | class UserSubProcessorProfile extends UserSubProcessor
    method getURLs (line 6) | public function getURLs($name)
    method process (line 13) | public function process(array $documents, &$context)

FILE: src/Processors/SubProcessors/UserSubProcessorUserMedia.php
  class UserSubProcessorUserMedia (line 2) | class UserSubProcessorUserMedia extends UserSubProcessor
    method getURLs (line 9) | public function getURLs($userName)
    method process (line 20) | public function process(array $documents, &$context)

FILE: src/Processors/UserMediaProcessor.php
  class UserMediaProcessor (line 2) | class UserMediaProcessor extends AbstractProcessor
    method beforeProcessing (line 4) | public function beforeProcessing(&$context)
    method getSubProcessors (line 22) | public function getSubProcessors($key)
    method onProcessingError (line 42) | public function onProcessingError(&$context)

FILE: src/Processors/UserProcessor.php
  class UserProcessor (line 2) | class UserProcessor extends AbstractProcessor
    method beforeProcessing (line 4) | public function beforeProcessing(&$context)
    method getSubProcessors (line 17) | public function getSubProcessors($key)
    method onProcessingError (line 27) | public function onProcessingError(&$context)

FILE: src/Queue.php
  class Queue (line 2) | class Queue
    method __construct (line 7) | public function __construct($file)
    method seek (line 12) | public function seek(QueueItem $item)
    method peek (line 25) | public function peek()
    method dequeue (line 37) | public function dequeue()
    method enqueue (line 50) | public function enqueue(QueueItem $newItem, $enqueueAtStart = false)
    method enqueueMultiple (line 55) | public function enqueueMultiple(array $newItems, $enqueueAtStart = false)
    method size (line 81) | public function size()
    method open (line 91) | private function open()
    method itemFromLine (line 97) | private function itemFromLine($line)
    method lineFromItem (line 112) | private function lineFromItem(QueueItem $item)
    method readItems (line 117) | private function readItems()
    method writeItems (line 131) | private function writeItems($items)
    method close (line 140) | private function close()

FILE: src/QueueItem.php
  class QueueItem (line 2) | class QueueItem
    method __construct (line 7) | public function __construct($item, $attempts = 0)

FILE: src/SingleInstance.php
  class SingleInstance (line 2) | class SingleInstance
    method run (line 6) | public static function run($scriptName)
    method destruct (line 17) | public static function destruct()

FILE: src/Singleton.php
  type ISingleton (line 2) | interface ISingleton
    method doInit (line 4) | static function doInit();
  class Singleton (line 7) | abstract class Singleton implements ISingleton
    method isInitialized (line 11) | private static function isInitialized()
    method init (line 23) | public static function init()
    method __construct (line 31) | private function __construct()

FILE: src/Strings.php
  class Strings (line 2) | class Strings
    method removeSpaces (line 4) | public static function removeSpaces($subject)
    method makeInteger (line 17) | public static function makeInteger($subject)
    method extractInteger (line 23) | public static function extractInteger($subject)
    method makeFloat (line 33) | public static function makeFloat($subject)
    method makeDate (line 41) | public static function makeDate($str)
    method parseURL (line 102) | public static function parseURL($url)
    method makeEnum (line 112) | public static function makeEnum($source, $table, $default = null)

FILE: src/Views/View.php
  class View (line 2) | class View
    method render (line 6) | public static function render($viewContext)
    method renderView (line 23) | public static function renderView()
    method renderFile (line 29) | public static function renderFile($name, $viewContext)

FILE: src/Views/ViewContext.php
  class ViewContext (line 2) | class ViewContext
    method __construct (line 6) | public function __construct()

FILE: src/core.php
  class AutoLoader (line 2) | class AutoLoader
    method init (line 6) | public static function init()
    method load (line 22) | public static function load($className)
Condensed preview — 287 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (832K chars).
[
  {
    "path": ".editorconfig",
    "chars": 147,
    "preview": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_size = 4\nindent_style = space\ninsert_final_newline = true\ntrim_"
  },
  {
    "path": ".gitmodules",
    "chars": 105,
    "preview": "[submodule \"library/redbean\"]\n\tpath = library/redbean\n\turl = https://github.com/gabordemooij/redbean.git\n"
  },
  {
    "path": "LICENSE.md",
    "chars": 34916,
    "preview": "### GNU GENERAL PUBLIC LICENSE\n\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc.\n<https://fsf."
  },
  {
    "path": "README.md",
    "chars": 360,
    "preview": "## GRAPH\n[GRAPH](https://anime.plus) is an extension of your myanimelist.net profile, showing you various information ab"
  },
  {
    "path": "achievements.md",
    "chars": 44343,
    "preview": "All genre-based achievements have 4 levels. Count-based badges have 12 levels, and score-based have 3 pseudo-levels. The"
  },
  {
    "path": "data/achievement/anime-boku-no-pico.json",
    "chars": 620,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 202,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"1+\",\n            \"id"
  },
  {
    "path": "data/achievement/anime-dementia-psychological.json",
    "chars": 1317,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 101,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"7-13\",\n            \""
  },
  {
    "path": "data/achievement/anime-dropped-0.json",
    "chars": 420,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 309,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20+\",\n            \"i"
  },
  {
    "path": "data/achievement/anime-duration-short.json",
    "chars": 1236,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 302,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20-39\",\n            "
  },
  {
    "path": "data/achievement/anime-episode-long.json",
    "chars": 420,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 303,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20+\",\n            \"i"
  },
  {
    "path": "data/achievement/anime-finished.json",
    "chars": 3612,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 312,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"100-199\",\n          "
  },
  {
    "path": "data/achievement/anime-franchise-long.json",
    "chars": 402,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 301,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10+\",\n            \"i"
  },
  {
    "path": "data/achievement/anime-game.json",
    "chars": 1223,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 302,\n    \"achievements\": [\n        {\n            \"threshold\": \"20-39\",\n            \"id\""
  },
  {
    "path": "data/achievement/anime-gar.json",
    "chars": 41151,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 102,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"12-23\",\n            "
  },
  {
    "path": "data/achievement/anime-historical.json",
    "chars": 3623,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 103,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20-39\",\n            "
  },
  {
    "path": "data/achievement/anime-horror-thriller.json",
    "chars": 1146,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 104,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/achievement/anime-light-novel.json",
    "chars": 1248,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 301,\n    \"achievements\": [\n        {\n            \"threshold\": \"20-39\",\n            \"id\""
  },
  {
    "path": "data/achievement/anime-mahou-shoujo.json",
    "chars": 1318,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 105,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"6-11\",\n            \""
  },
  {
    "path": "data/achievement/anime-mecha.json",
    "chars": 1310,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 106,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20-39\",\n            "
  },
  {
    "path": "data/achievement/anime-music.json",
    "chars": 1187,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 107,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20-39\",\n            "
  },
  {
    "path": "data/achievement/anime-mystery.json",
    "chars": 1341,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 108,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"14-27\",\n            "
  },
  {
    "path": "data/achievement/anime-original.json",
    "chars": 1348,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 301,\n    \"achievements\": [\n        {\n            \"threshold\": \"20-39\",\n            \"id\""
  },
  {
    "path": "data/achievement/anime-pervert-0.json",
    "chars": 497,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 307,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"0-24.99\",\n          "
  },
  {
    "path": "data/achievement/anime-pervert-1.json",
    "chars": 447,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 307,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"25-49.99\",\n         "
  },
  {
    "path": "data/achievement/anime-pervert-2.json",
    "chars": 443,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 307,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"50-74.99\",\n         "
  },
  {
    "path": "data/achievement/anime-pervert-3.json",
    "chars": 405,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 307,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"75-100\",\n           "
  },
  {
    "path": "data/achievement/anime-re.json",
    "chars": 330,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 310,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20+\",\n            \"i"
  },
  {
    "path": "data/achievement/anime-release-classic.json",
    "chars": 1239,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 305,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20-39\",\n            "
  },
  {
    "path": "data/achievement/anime-release-old.json",
    "chars": 381,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 304,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20+\",\n            \"i"
  },
  {
    "path": "data/achievement/anime-romance.json",
    "chars": 1353,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 109,\n    \"achievements\": [\n        {\n            \"threshold\": \"20-39\",\n            \"id\""
  },
  {
    "path": "data/achievement/anime-school-days.json",
    "chars": 467,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 203,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"1+\",\n            \"id"
  },
  {
    "path": "data/achievement/anime-score-high.json",
    "chars": 516,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 308,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"8.5-10\",\n           "
  },
  {
    "path": "data/achievement/anime-score-low.json",
    "chars": 461,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 308,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"3-5\",\n            \"i"
  },
  {
    "path": "data/achievement/anime-score-very-low.json",
    "chars": 437,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 308,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"0-2.99\",\n           "
  },
  {
    "path": "data/achievement/anime-slice-of-life.json",
    "chars": 1293,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 110,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"20-39\",\n            "
  },
  {
    "path": "data/achievement/anime-space.json",
    "chars": 1270,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 111,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/achievement/anime-sports.json",
    "chars": 1132,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 112,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"14-27\",\n            "
  },
  {
    "path": "data/achievement/anime-studio-ghibli.json",
    "chars": 1325,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 201,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10+\",\n            \"i"
  },
  {
    "path": "data/achievement/anime-time.json",
    "chars": 1190,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 311,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"14-91.24\",\n         "
  },
  {
    "path": "data/achievement/anime-year.json",
    "chars": 371,
    "preview": "{\n    \"media\": \"A\",\n    \"order\": 306,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"40+\",\n            \"i"
  },
  {
    "path": "data/achievement/manga-dropped-0.json",
    "chars": 398,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 307,\n    \"achievements\":\n    [\n        {\n        \"threshold\": \"10+\",\n        \"id\": \"man"
  },
  {
    "path": "data/achievement/manga-finished.json",
    "chars": 3633,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 310,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"100-199\",\n          "
  },
  {
    "path": "data/achievement/manga-horror.json",
    "chars": 1134,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 101,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/achievement/manga-mahou-shoujo.json",
    "chars": 1306,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 102,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"2-3\",\n            \"i"
  },
  {
    "path": "data/achievement/manga-mystery.json",
    "chars": 1218,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 103,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/achievement/manga-novel.json",
    "chars": 1131,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 301,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/achievement/manga-pervert-0.json",
    "chars": 500,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 305,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"0-24.99\",\n          "
  },
  {
    "path": "data/achievement/manga-pervert-1.json",
    "chars": 408,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 305,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"25-49.99\",\n         "
  },
  {
    "path": "data/achievement/manga-pervert-2.json",
    "chars": 426,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 305,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"50-74.99\",\n         "
  },
  {
    "path": "data/achievement/manga-pervert-3.json",
    "chars": 412,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 305,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"75-100\",\n           "
  },
  {
    "path": "data/achievement/manga-re.json",
    "chars": 344,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 308,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10+\",\n            \"i"
  },
  {
    "path": "data/achievement/manga-release-old.json",
    "chars": 418,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 303,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10+\",\n            \"i"
  },
  {
    "path": "data/achievement/manga-romance.json",
    "chars": 1349,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 104,\n    \"achievements\": [\n        {\n            \"threshold\": \"10-19\",\n            \"id\""
  },
  {
    "path": "data/achievement/manga-score-high.json",
    "chars": 452,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 306,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"8.5-10\",\n           "
  },
  {
    "path": "data/achievement/manga-score-low.json",
    "chars": 437,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 306,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"3-5\",\n            \"i"
  },
  {
    "path": "data/achievement/manga-score-very-low.json",
    "chars": 434,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 306,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"0-2.99\",\n           "
  },
  {
    "path": "data/achievement/manga-sports.json",
    "chars": 1221,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 105,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/achievement/manga-time.json",
    "chars": 1257,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 309,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"14-91.24\",\n         "
  },
  {
    "path": "data/achievement/manga-vampire-demons.json",
    "chars": 1254,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 106,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/achievement/manga-volume-long.json",
    "chars": 380,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 302,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10+\",\n            \"i"
  },
  {
    "path": "data/achievement/manga-yaoi-shounen-ai.json",
    "chars": 1257,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 107,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/achievement/manga-year.json",
    "chars": 385,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 304,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"40+\",\n            \"i"
  },
  {
    "path": "data/achievement/manga-yuri-shoujo-ai.json",
    "chars": 1118,
    "preview": "{\n    \"media\": \"M\",\n    \"order\": 108,\n    \"achievements\":\n    [\n        {\n            \"threshold\": \"10-19\",\n            "
  },
  {
    "path": "data/banned-creators.lst",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/banned-franchise-coupling.json",
    "chars": 5500,
    "preview": "{\n    \"A512\": //Majo no Takkyuubin\n    [\n        \"A35770\" //Hungry Days: Aoharu ka yo.\n    ],\n    \"A2225\": //Alps no Sho"
  },
  {
    "path": "data/banned-genres.lst",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/banned-users.lst",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/cache/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "data/db/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "data/globals-cache.json",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/logs/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "data/mirror/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "data/queue-media.lst",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/queue-sizes.json",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/queue-users-media.lst",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/queue-users.lst",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/recs-banned-genres.lst",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/static-recommendations.lst",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "public_html/index.php",
    "chars": 2531,
    "preview": "<?php\nchdir('..');\nrequire_once('src/core.php');\n\n$dir = implode(DIRECTORY_SEPARATOR, [__DIR__, '..', 'src', 'Controller"
  },
  {
    "path": "public_html/media/css/admin/index.css",
    "chars": 793,
    "preview": "fieldset {\n\tborder: 1px solid silver;\n\tmargin-bottom: 1em;\n\tpadding: 1em;\n}\nlabel.aligned {\n\tfloat: left;\n\tposition: abs"
  },
  {
    "path": "public_html/media/css/admin/login.css",
    "chars": 569,
    "preview": "label.aligned {\n\tfloat: left;\n\tposition: absolute;\n\tvertical-align: middle;\n\ttext-align: right;\n\twidth: 6em;\n\tline-heigh"
  },
  {
    "path": "public_html/media/css/core.css",
    "chars": 7045,
    "preview": "html {\n    -webkit-text-size-adjust: none;\n    -moz-text-size-adjust: none;\n    -ms-text-size-adjust: none;\n}\n\n* {\n    m"
  },
  {
    "path": "public_html/media/css/glider.css",
    "chars": 626,
    "preview": "#glider {\n\tposition: fixed;\n\theight: 100%;\n\twidth: 100%;\n\ttop: 0;\n\tleft: 0;\n\tbackground-color: rgba(0, 0, 0, 0.2);\n\tdisp"
  },
  {
    "path": "public_html/media/css/header.css",
    "chars": 984,
    "preview": "#header {\n\tpadding: 0.5em 0;\n\tmargin: 0 0 1em 0;\n\tborder-bottom: 1px solid #ddd;\n\tfont-size: 115%;\n\tbackground: #f5f5f5 "
  },
  {
    "path": "public_html/media/css/headerless.css",
    "chars": 65,
    "preview": "#main {\n\tmargin-top: 4em;\n}\n.main-wrapper {\n\tmax-width: 960px;\n}\n"
  },
  {
    "path": "public_html/media/css/icons.css",
    "chars": 1441,
    "preview": "[class^='icon-'],\n[class*=' icon-'] {\n\tdisplay: inline-block;\n\tvertical-align: text-top;\n\tline-height: 16px;\n\twidth: 16p"
  },
  {
    "path": "public_html/media/css/index/about.css",
    "chars": 35,
    "preview": ".fb-wrapper {\n\tmargin-left: 2em;\n}\n"
  },
  {
    "path": "public_html/media/css/index/globals.css",
    "chars": 168,
    "preview": ".target {\n\theight: 210px;\n}\nul.infobox {\n\theight: 200px;\n}\n.section-body {\n\tmargin-bottom: 2em;\n}\n\n.queue-sizes .target-"
  },
  {
    "path": "public_html/media/css/index/index.css",
    "chars": 2514,
    "preview": ".main-wrapper {\n\tmax-width: 960px;\n}\n\n#start {\n\tbackground: #f6f6f6;\n\tposition: relative;\n\tz-index: 1;\n\tbox-shadow: 0 0 "
  },
  {
    "path": "public_html/media/css/infobox.css",
    "chars": 572,
    "preview": ".target-wrapper { width: 79%; }\nul.infobox { float: right; width: 20%; max-width: 20%; overflow: hidden; list-style-type"
  },
  {
    "path": "public_html/media/css/menu.css",
    "chars": 2588,
    "preview": ".main-wrapper {\n\tmax-width: 960px;\n}\n#logo .sep {\n\tmargin-right: 0;\n}\n\n#menu-wrapper {\n\tfloat: left;\n\tposition: relative"
  },
  {
    "path": "public_html/media/css/mini-sections.css",
    "chars": 592,
    "preview": ".left {\n\twidth: 50%;\n\ttext-align: center;\n\tfloat: left;\n}\n.right {\n\twidth: 50%;\n\ttext-align: center;\n\tfloat: right;\n}\n\n."
  },
  {
    "path": "public_html/media/css/user/achievements.css",
    "chars": 878,
    "preview": "img.achi {\n\tfloat: right;\n    padding: 0;\n\tmargin: 0 0 0 0.5em;\n\tposition: relative;\n\tz-index: 3;\n    border-radius: 4px"
  },
  {
    "path": "public_html/media/css/user/entries.css",
    "chars": 383,
    "preview": ".entries-wrapper {\n\tdisplay: none;\n\tfont-size: 90%;\n}\n.entries-wrapper ul {\n\tmargin: 0;\n\tpadding-top: 0;\n\tpadding-right:"
  },
  {
    "path": "public_html/media/css/user/favorites.css",
    "chars": 647,
    "preview": ".decades .target-wrapper {\n\twidth: 100%;\n}\n.decades .target {\n\theight: 300px;\n\twidth: 100%;\n}\n\n.types .target-wrapper {\n"
  },
  {
    "path": "public_html/media/css/user/history.css",
    "chars": 1163,
    "preview": ".history-daily .target {\n\theight: 20em;\n}\nul.infobox {\n\theight: 17.5em;\n}\n\n.history-monthly p.unknown {\n\tmargin: 0;\n\tpad"
  },
  {
    "path": "public_html/media/css/user/list.css",
    "chars": 734,
    "preview": "table {\n\tfont-size: 90%;\n}\n\ntd.no-score {\n\tcolor: #aaa;\n}\n\nth,\ntd {\n\tpadding: 2px 2px;\n\ttext-align: center;\n}\nth.title,\n"
  },
  {
    "path": "public_html/media/css/user/profile.css",
    "chars": 2143,
    "preview": ".updated,\n.queue-pos {\n\tposition: absolute;\n\tfont-size: 65%;\n\tpadding-top: 0.25em;\n}\n.updated {\n\tleft: 0;\n}\n.queue-pos {"
  },
  {
    "path": "public_html/media/css/user/ratings.css",
    "chars": 1966,
    "preview": ".target {\n\theight: 228px;\n\tline-height: 0;\n}\n.rating-length-dist .target {\n\theight: 20em;\n}\n\nul.infobox {\n\theight: 250px"
  },
  {
    "path": "public_html/media/css/user/recommendations.css",
    "chars": 1529,
    "preview": ".missing .undelete-msg {\n\ttext-align: center;\n\tdisplay: none;\n}\n\n.missing .center {\n\ttext-align: center;\n}\n\n.missing tab"
  },
  {
    "path": "public_html/media/js/glider.js",
    "chars": 3045,
    "preview": "//animate glider - change background position every x ms\nfunction animateGlider()\n{\n\tvar pos = $('#glider .target').css("
  },
  {
    "path": "public_html/media/js/highcharts-mg.js",
    "chars": 1701,
    "preview": "Highcharts.theme =\n{\n\tcolors:\n\t[\n\t\t'#1969CB',\n\t\t'#ED561B',\n\t\t'#50B432',\n\t\t'#DDDF00',\n\t\t'#24CBE5',\n\t\t'#64E572',\n\t\t'#FF965"
  },
  {
    "path": "public_html/media/js/index/index.js",
    "chars": 756,
    "preview": "var lastNum = 0;\n\nfunction switchShowcaseTab(num)\n{\n\t$('#showcase nav li').removeClass('active');\n\t$('#showcase nav li')"
  },
  {
    "path": "public_html/media/js/jquery.cookie.js",
    "chars": 3140,
    "preview": "/*!\n * jQuery Cookie Plugin v1.4.1\n * https://github.com/carhartl/jquery-cookie\n *\n * Copyright 2006, 2014 Klaus Hartl\n "
  },
  {
    "path": "public_html/media/js/jquery.farbtastic.js",
    "chars": 16008,
    "preview": "// Farbtastic 2.0.0-alpha.1\n(function ($) {\n\nvar __debug = false;\n\n$.fn.farbtastic = function (options) {\n  $.farbtastic"
  },
  {
    "path": "public_html/media/js/jquery.highcharts.js",
    "chars": 161887,
    "preview": "/*\n Highcharts JS v4.1.5 (2015-04-13)\n\n (c) 2009-2014 Torstein Honsi\n\n License: www.highcharts.com/license\n*/\n(function("
  },
  {
    "path": "public_html/media/js/jquery.tablesorter.js",
    "chars": 16616,
    "preview": "\n(function($){$.extend({tablesorter:new\nfunction(){var parsers=[],widgets=[];this.defaults={cssHeader:\"header\",cssAsc:\"h"
  },
  {
    "path": "public_html/media/js/misc.js",
    "chars": 928,
    "preview": "$.fn.hasAttr = function(name)\n{\n\treturn this.attr(name) !== undefined;\n};\n\n$(function()\n{\n\t$('.search').submit(function("
  },
  {
    "path": "public_html/media/js/tooltips.js",
    "chars": 1162,
    "preview": "$(function()\n{\n\t/* timeouts to prevent flickering */\n\tfunction stopTooltipRemoval(target)\n\t{\n\t\tvar timeout = $(target).d"
  },
  {
    "path": "public_html/media/js/user/achievements.js",
    "chars": 821,
    "preview": "$(function()\n{\n\t$('.entries-trigger').click(function(e)\n\t{\n\t\tvar target = $(this).parents('.achi-entry').find('.entries-"
  },
  {
    "path": "public_html/media/js/user/entries.js",
    "chars": 1516,
    "preview": "var resetHeight = function()\n{\n\t$('body').css('min-height', '');\n}\n\nvar slideUp = function(target, cb)\n{\n\tif (typeof(cb)"
  },
  {
    "path": "public_html/media/js/user/favorites.js",
    "chars": 1893,
    "preview": "$(function()\n{\n\t$('.genres, .creators').each(function()\n\t{\n\t\tvar section = $(this);\n\t\tsection.find('.entries-trigger').c"
  },
  {
    "path": "public_html/media/js/user/history.js",
    "chars": 410,
    "preview": "$(function()\n{\n\t$('.history-monthly .entries-trigger').click(function(e)\n\t{\n\t\tvar key = $(this).attr('data-key');\n\t\ttogg"
  },
  {
    "path": "public_html/media/js/user/list.js",
    "chars": 1434,
    "preview": "$(function()\n{\n\tif ($('th.unique').length > 0)\n\t{\n\t\tsortList =\n\t\t[\n\t\t\t[1,0],\n\t\t\t[2,0]\n\t\t];\n\t}\n\telse\n\t{\n\t\tsortList =\n\t\t[\n"
  },
  {
    "path": "public_html/media/js/user/profile.js",
    "chars": 1818,
    "preview": "function getProfileAge()\n{\n\tvar now = new Date();\n\tvar then = new Date($('#profile-details').attr('data-date'));\n\tvar di"
  },
  {
    "path": "public_html/media/js/user/ratings.js",
    "chars": 5316,
    "preview": "var _params = {};\n\n$(function()\n{\n\t$('.export-trigger').click(function(e)\n\t{\n\t\te.preventDefault();\n\t\tvar target = $('.ex"
  },
  {
    "path": "public_html/media/js/user/recommendations.js",
    "chars": 3630,
    "preview": "$(function()\n{\n\tvar userName = $('#user-name').val();\n\tvar media = $('#media').val();\n\n\tif (typeof(Storage) === 'undefin"
  },
  {
    "path": "public_html/robots.txt",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "script/cron-cache.php",
    "chars": 384,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\nCronRunner::run(__FILE__, function($logger)\n{\n\t$cache = new Cache();\n\t"
  },
  {
    "path": "script/cron-globals.php",
    "chars": 1062,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\nCronRunner::run(__FILE__, function($logger)\n{\n\t$userCount = 0;\n    $us"
  },
  {
    "path": "script/cron-queue-sizes.php",
    "chars": 565,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\nCronRunner::run(__FILE__, function($logger)\n{\n\t$limit = 2*24*60/5;\n\t$q"
  },
  {
    "path": "script/cron-queue.php",
    "chars": 4845,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\nfunction processQueue($queue, $count, $maxAttempts, $logger, $callback"
  },
  {
    "path": "script/cron-users.php",
    "chars": 1494,
    "preview": "<?php\nrequire __DIR__ . '/../src/core.php';\n\nforeach (Database::getAllDbNames() as $database)\n{\n    Database::attachData"
  },
  {
    "path": "script/make-db.php",
    "chars": 3972,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\ntry\n{\n\t$path1 = tempnam(sys_get_temp_dir(), '');\n\tDatabase::loadDataba"
  },
  {
    "path": "script/process.php",
    "chars": 922,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\n$processors = [\n\t'user' => new UserProcessor(),\n\t'manga' => new MangaP"
  },
  {
    "path": "script/queue-all-media.php",
    "chars": 507,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\n$mediaQueue = new Queue(Config::$mediaQueuePath);\n\n$query = \"SELECT id"
  },
  {
    "path": "script/unnuke-media.php",
    "chars": 1198,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\n$mediaProcessors =\n[\n\tMedia::Anime => new AnimeProcessor(),\n\tMedia::Ma"
  },
  {
    "path": "script/unnuke-users.php",
    "chars": 1116,
    "preview": "<?php\nrequire_once __DIR__ . '/../src/core.php';\n\n$limit = 500;\n$userProcessor = new UserProcessor();\n\n$oldNames = [];\n$"
  },
  {
    "path": "src/.gitignore",
    "chars": 11,
    "preview": "Config.php\n"
  },
  {
    "path": "src/Cache.php",
    "chars": 2166,
    "preview": "<?php\nclass Cache\n{\n\tprivate $bypassCache;\n\tprivate $prefix = null;\n\n\t//warning: affects getAllFiles() and getUsedFiles("
  },
  {
    "path": "src/Config.example.php",
    "chars": 4692,
    "preview": "<?php\nclass Config extends Singleton\n{\n    static $cronInterval;\n    static $usersPerCronRun;\n    static $userQueuePath;"
  },
  {
    "path": "src/ControllerModules/AbstractControllerModule.php",
    "chars": 1233,
    "preview": "<?php\nabstract class AbstractControllerModule\n{\n\t/**\n\t* This method contains all code that is executed whenver user visi"
  },
  {
    "path": "src/ControllerModules/AbstractUserControllerModule.php",
    "chars": 1133,
    "preview": "<?php\nabstract class AbstractUserControllerModule extends AbstractControllerModule\n{\n\t/**\n\t* This method returns the tex"
  },
  {
    "path": "src/ControllerModules/AdminControllerIndexModule.php",
    "chars": 411,
    "preview": "<?php\nclass AdminControllerIndexModule extends AbstractControllerModule\n{\n\tpublic static function getUrlParts()\n\t{\n\t\tret"
  },
  {
    "path": "src/ControllerModules/AdminControllerLoginModule.php",
    "chars": 1054,
    "preview": "<?php\nclass AdminControllerLoginModule extends AbstractControllerModule\n{\n    public static function getUrlParts()\n    {"
  },
  {
    "path": "src/ControllerModules/AdminControllerLogoutModule.php",
    "chars": 442,
    "preview": "<?php\nclass AdminControllerLogoutModule extends AbstractControllerModule\n{\n\tpublic static function getUrlParts()\n\t{\n\t\tre"
  },
  {
    "path": "src/ControllerModules/AdminControllerMiscModule.php",
    "chars": 1017,
    "preview": "<?php\nclass AdminControllerMiscModule extends AbstractControllerModule\n{\n\tpublic static function getUrlParts()\n\t{\n\t\tretu"
  },
  {
    "path": "src/ControllerModules/AdminControllerProcessorModule.php",
    "chars": 4953,
    "preview": "<?php\nclass AdminControllerProcessorModule extends AbstractControllerModule\n{\n\tpublic static function getUrlParts()\n\t{\n\t"
  },
  {
    "path": "src/ControllerModules/IndexControllerAboutModule.php",
    "chars": 416,
    "preview": "<?php\nclass IndexControllerAboutModule extends AbstractControllerModule\n{\n\tpublic static function getUrlParts()\n\t{\n\t\tret"
  },
  {
    "path": "src/ControllerModules/IndexControllerGlobalsModule.php",
    "chars": 1344,
    "preview": "<?php\nclass IndexControllerGlobalsModule extends AbstractControllerModule\n{\n\tpublic static function getUrlParts()\n\t{\n\t\tr"
  },
  {
    "path": "src/ControllerModules/IndexControllerIndexModule.php",
    "chars": 459,
    "preview": "<?php\nclass IndexControllerIndexModule extends AbstractControllerModule\n{\n    public static function getUrlParts()\n    {"
  },
  {
    "path": "src/ControllerModules/IndexControllerSearchModule.php",
    "chars": 1148,
    "preview": "<?php\nclass IndexControllerSearchModule extends AbstractControllerModule\n{\n    public static function getUrlParts()\n    "
  },
  {
    "path": "src/ControllerModules/UserControllerAchievementsModule.php",
    "chars": 12964,
    "preview": "<?php\nclass UserControllerAchievementsModule extends AbstractUserControllerModule\n{\n    public static function getText(V"
  },
  {
    "path": "src/ControllerModules/UserControllerEntriesModule.php",
    "chars": 4059,
    "preview": "<?php\nclass UserControllerEntriesModule extends AbstractUserControllerModule\n{\n\tpublic static function getUrlParts()\n\t{\n"
  },
  {
    "path": "src/ControllerModules/UserControllerExportModule.php",
    "chars": 18505,
    "preview": "<?php\nclass UserControllerExportModule extends AbstractUserControllerModule\n{\n    public static function getText(ViewCon"
  },
  {
    "path": "src/ControllerModules/UserControllerFavoritesModule.php",
    "chars": 3801,
    "preview": "<?php\nclass UserControllerFavoritesModule extends AbstractUserControllerModule\n{\n    public static function getText(View"
  },
  {
    "path": "src/ControllerModules/UserControllerHistoryModule.php",
    "chars": 4494,
    "preview": "<?php\nclass UserControllerHistoryModule extends AbstractUserControllerModule\n{\n    public static function getText(ViewCo"
  },
  {
    "path": "src/ControllerModules/UserControllerListsModule.php",
    "chars": 1164,
    "preview": "<?php\nclass UserControllerListsModule extends AbstractUserControllerModule\n{\n    public static function getText(ViewCont"
  },
  {
    "path": "src/ControllerModules/UserControllerProfileModule.php",
    "chars": 3220,
    "preview": "<?php\nclass UserControllerProfileModule extends AbstractUserControllerModule\n{\n    public static function getText(ViewCo"
  },
  {
    "path": "src/ControllerModules/UserControllerQueueAddModule.php",
    "chars": 1235,
    "preview": "<?php\nclass UserControllerQueueAddModule extends AbstractUserControllerModule\n{\n\tpublic static function getUrlParts()\n\t{"
  },
  {
    "path": "src/ControllerModules/UserControllerQueuePositionModule.php",
    "chars": 740,
    "preview": "<?php\nclass UserControllerQueuePositionModule extends AbstractUserControllerModule\n{\n\tpublic static function getUrlParts"
  },
  {
    "path": "src/ControllerModules/UserControllerRatingsModule.php",
    "chars": 2929,
    "preview": "<?php\nclass UserControllerRatingsModule extends AbstractUserControllerModule\n{\n    public static function getText(ViewCo"
  },
  {
    "path": "src/ControllerModules/UserControllerRecommendationsModule.php",
    "chars": 10199,
    "preview": "<?php\nclass RecommendationsEngine\n{\n    private $media;\n    private $list;\n    private $allFranchises;\n\n    public funct"
  },
  {
    "path": "src/Controllers/AbstractController.php",
    "chars": 2241,
    "preview": "<?php\nabstract class AbstractController\n{\n\tpublic static function parseRequest($url, &$controllerContext)\n\t{\n\t\tthrow new"
  },
  {
    "path": "src/Controllers/AdminController.php",
    "chars": 1012,
    "preview": "<?php\nclass AdminController extends AbstractController\n{\n\tpublic static function parseRequest($url, &$controllerContext)"
  },
  {
    "path": "src/Controllers/ControllerContext.php",
    "chars": 101,
    "preview": "<?php\nclass ControllerContext\n{\n\tpublic function __construct()\n\t{\n\t\t$this->cache = new Cache();\n\t}\n}\n"
  },
  {
    "path": "src/Controllers/IndexController.php",
    "chars": 915,
    "preview": "<?php\nclass IndexController extends AbstractController\n{\n\tpublic static function parseRequest($url, &$controllerContext)"
  },
  {
    "path": "src/Controllers/UserController.php",
    "chars": 4604,
    "preview": "<?php\nclass UserController extends AbstractController\n{\n    public static function getUserRegex()\n    {\n        return '"
  },
  {
    "path": "src/CronRunner.php",
    "chars": 796,
    "preview": "<?php\nclass CronRunner\n{\n\tprivate static $finished = false;\n\n\tpublic static function shutdown($logger)\n\t{\n\t\tif (!self::$"
  },
  {
    "path": "src/Database.php",
    "chars": 2472,
    "preview": "<?php\n\nclass Database extends Singleton\n{\n\tpublic static function doInit()\n\t{\n\t\tinclude implode(DIRECTORY_SEPARATOR, [__"
  },
  {
    "path": "src/Document.php",
    "chars": 261,
    "preview": "<?php\nclass Document\n{\n\tpublic $headers;\n\tpublic $content;\n\tpublic $url;\n\tpublic $code;\n\n\tpublic function __construct($u"
  },
  {
    "path": "src/Downloader.php",
    "chars": 4136,
    "preview": "<?php\nclass Downloader\n{\n\tprotected static $logger;\n\n\tpublic static function setLogger(Logger $logger)\n\t{\n\t\tself::$logge"
  },
  {
    "path": "src/Enums/AnimeMediaSource.php",
    "chars": 1467,
    "preview": "<?php\nclass AnimeMediaSource extends Enum\n{\n\tconst UNKNOWN = 0;\n    const ORIGINAL = 1;\n\tconst MANGA = 2;\n    const FOUR"
  },
  {
    "path": "src/Enums/AnimeMediaType.php",
    "chars": 775,
    "preview": "<?php\nclass AnimeMediaType extends MediaType\n{\n\tconst Unknown = 0;\n\tconst TV = 1;\n\tconst OVA = 2;\n\tconst Movie = 3;\n\tcon"
  },
  {
    "path": "src/Enums/Enum.php",
    "chars": 143,
    "preview": "<?php\nabstract class Enum\n{\n\tpublic static function getConstList()\n\t{\n\t\treturn (new ReflectionClass(get_called_class()))"
  },
  {
    "path": "src/Enums/MangaMediaType.php",
    "chars": 683,
    "preview": "<?php\nclass MangaMediaType extends MediaType\n{\n\tconst Unknown = 0;\n\tconst Manga = 1;\n\tconst Novel = 2;\n\tconst Oneshot = "
  },
  {
    "path": "src/Enums/Media.php",
    "chars": 265,
    "preview": "<?php\nclass Media extends Enum\n{\n\tconst Anime = 'A';\n\tconst Manga = 'M';\n\n\tpublic static function toString($media)\n\t{\n\t\t"
  },
  {
    "path": "src/Enums/MediaRelation.php",
    "chars": 1098,
    "preview": "<?php\nclass MediaRelation extends Enum\n{\n\tconst Sequel = 1;\n\tconst Prequel = 2;\n\tconst SideStory = 3;\n\tconst ParentStory"
  },
  {
    "path": "src/Enums/MediaStatus.php",
    "chars": 893,
    "preview": "<?php\nclass MediaStatus extends Enum\n{\n\tconst NotYetPublished = 'N';\n    const Publishing = 'P';\n    const Hiatus = 'H';"
  },
  {
    "path": "src/Enums/MediaType.php",
    "chars": 285,
    "preview": "<?php\nclass MediaType extends Enum\n{\n\tpublic static function toString($type, $media)\n\t{\n\t\tswitch ($media)\n\t\t{\n\t\t\tcase Me"
  },
  {
    "path": "src/Enums/UserListStatus.php",
    "chars": 653,
    "preview": "<?php\nclass UserListStatus extends Enum\n{\n\tconst Dropped = 'D';\n\tconst OnHold = 'H';\n\tconst Completing = 'C';\n\tconst Fin"
  },
  {
    "path": "src/ErrorHandler.php",
    "chars": 552,
    "preview": "<?php\nclass ErrorHandler extends Singleton\n{\n\tpublic static function suppress()\n\t{\n\t\tset_error_handler(function($errno, "
  },
  {
    "path": "src/Exceptions/BadMediaException.php",
    "chars": 135,
    "preview": "<?php\nclass BadMediaException extends Exception\n{\n\tpublic function __construct()\n\t{\n\t\tparent::__construct('Unknown media"
  },
  {
    "path": "src/Exceptions/BadProcessorDocumentException.php",
    "chars": 227,
    "preview": "<?php\nclass BadProcessorDocumentException extends DocumentException\n{\n\tpublic function __construct(Document $document, $"
  },
  {
    "path": "src/Exceptions/BadProcessorKeyException.php",
    "chars": 173,
    "preview": "<?php\nclass BadProcessorKeyException extends Exception\n{\n\tpublic function __construct($key)\n\t{\n\t\tparent::__construct('Ca"
  },
  {
    "path": "src/Exceptions/DocumentException.php",
    "chars": 245,
    "preview": "<?php\nclass DocumentException extends Exception\n{\n\tpublic function __construct(Document $document, $message)\n\t{\n\t\t$this-"
  },
  {
    "path": "src/Exceptions/DownloadFailureException.php",
    "chars": 263,
    "preview": "<?php\nclass DownloadFailureException extends Exception\n{\n\tpublic function __construct($url, $reason = null)\n\t{\n\t\t$msg = "
  },
  {
    "path": "src/Exceptions/InstanceAlreadyRunningException.php",
    "chars": 209,
    "preview": "<?php\nclass InstanceAlreadyRunningException extends Exception\n{\n\tpublic function __construct($scriptName)\n\t{\n\t\tparent::_"
  },
  {
    "path": "src/Exceptions/UnimplementedException.php",
    "chars": 144,
    "preview": "<?php\nclass UnimplementedException extends Exception\n{\n\tpublic function __construct()\n\t{\n\t\tparent::__construct('Method n"
  },
  {
    "path": "src/Helpers/BanHelper.php",
    "chars": 2401,
    "preview": "<?php\nclass BanHelper extends Singleton\n{\n\tconst USER_BAN_NONE = 0;\n\tconst USER_BAN_QUEUE_ONLY = 1;\n\tconst USER_BAN_TOTA"
  },
  {
    "path": "src/Helpers/BenchmarkHelper.php",
    "chars": 523,
    "preview": "<?php\nclass BenchmarkHelper extends Singleton\n{\n\tprivate static $start;\n\tprivate static $prev;\n\n\tpublic static function "
  },
  {
    "path": "src/Helpers/HttpHeadersHelper.php",
    "chars": 943,
    "preview": "<?php\nclass HttpHeadersHelper\n{\n\tpublic static function getCurrentHeaders()\n\t{\n\t\t$headerLines = headers_list();\n\t\treturn"
  },
  {
    "path": "src/Helpers/ReflectionHelper.php",
    "chars": 1103,
    "preview": "<?php\nclass ReflectionHelper\n{\n\tpublic static function loadClasses($dir)\n\t{\n\t\t$oldClassNames = get_declared_classes();\n\t"
  },
  {
    "path": "src/Helpers/TextHelper.php",
    "chars": 4999,
    "preview": "<?php\nclass TextHelper\n{\n\tconst TIME_MINUTES = 1;\n\tconst TIME_HOURS = 2;\n\n\tpublic static function loadJson($path, $fetch"
  },
  {
    "path": "src/Helpers/UrlHelper.php",
    "chars": 801,
    "preview": "<?php\nclass UrlHelper\n{\n\tpublic static function absoluteUrl($relativeUrl = null, $params = [])\n\t{\n\t\tif ($relativeUrl ==="
  },
  {
    "path": "src/Helpers/WebMediaHelper.php",
    "chars": 3773,
    "preview": "<?php\nclass WebMediaHelper\n{\n\tpublic static function addFarbtastic($viewContext)\n\t{\n\t\t$viewContext->meta->scripts []= '/"
  },
  {
    "path": "src/Logger.php",
    "chars": 2698,
    "preview": "<?php\nclass Logger\n{\n\tprivate $path;\n\tprivate $baseName;\n\tprivate $fragmentOpen = false;\n\tprivate $handle = null;\n\n\tpubl"
  },
  {
    "path": "src/ModelUtils/DataSorter.php",
    "chars": 826,
    "preview": "<?php\nclass DataSorter\n{\n\tconst MediaMalId = 0;\n\tconst Title = 1;\n\tconst Score = 2;\n\tconst MeanScore = 3;\n\n\tpublic stati"
  },
  {
    "path": "src/ModelUtils/DistributionEvaluator.php",
    "chars": 1237,
    "preview": "<?php\nclass DistributionEvaluator\n{\n\tpublic static function evaluate(AbstractDistribution $dist)\n\t{\n\t\t$values = [];\n\t\t$a"
  },
  {
    "path": "src/ModelUtils/Distributions/AbstractDistribution.php",
    "chars": 3621,
    "preview": "<?php\nabstract class AbstractDistribution\n{\n\tconst IGNORE_NULL_KEY = 1;\n\tconst IGNORE_EMPTY_GROUPS = 2;\n\n\tprotected $gro"
  },
  {
    "path": "src/ModelUtils/Distributions/MediaCreatorDistribution.php",
    "chars": 533,
    "preview": "<?php\nclass MediaCreatorDistribution extends AbstractDistribution\n{\n\tpublic function getNullGroupKey()\n\t{\n\t\treturn 0;\n\t}"
  },
  {
    "path": "src/ModelUtils/Distributions/MediaDecadeDistribution.php",
    "chars": 936,
    "preview": "<?php\nclass MediaDecadeDistribution extends AbstractDistribution\n{\n\tprotected function finalize()\n\t{\n\t\tif (!empty($this-"
  },
  {
    "path": "src/ModelUtils/Distributions/MediaGenreDistribution.php",
    "chars": 483,
    "preview": "<?php\nclass MediaGenreDistribution extends AbstractDistribution\n{\n\tpublic function getNullGroupKey()\n\t{\n\t\treturn 0;\n\t}\n\n"
  },
  {
    "path": "src/ModelUtils/Distributions/MediaLengthDistribution.php",
    "chars": 1572,
    "preview": "<?php\nclass MediaLengthDistribution extends AbstractDistribution\n{\n\tprotected function finalize()\n\t{\n\t\t$f = function($a,"
  },
  {
    "path": "src/ModelUtils/Distributions/MediaSourceDistribution.php",
    "chars": 216,
    "preview": "<?php\nclass MediaSourceDistribution extends AbstractDistribution\n{\n\tpublic function getNullGroupKey()\n\t{\n\t\treturn 0;\n\t}\n"
  },
  {
    "path": "src/ModelUtils/Distributions/MediaTypeDistribution.php",
    "chars": 212,
    "preview": "<?php\nclass MediaTypeDistribution extends AbstractDistribution\n{\n\tpublic function getNullGroupKey()\n\t{\n\t\treturn 0;\n\t}\n\n\t"
  },
  {
    "path": "src/ModelUtils/Distributions/MediaYearDistribution.php",
    "chars": 939,
    "preview": "<?php\nclass MediaYearDistribution extends AbstractDistribution\n{\n\tprotected function finalize()\n\t{\n\t\t/*if (!empty($this-"
  },
  {
    "path": "src/ModelUtils/Distributions/RatingDistribution.php",
    "chars": 1324,
    "preview": "<?php\nclass RatingDistribution extends AbstractDistribution\n{\n\tprotected function finalize()\n\t{\n\t\tforeach (range(10, 0) "
  },
  {
    "path": "src/ModelUtils/Distributions/RatingTimeDistribution.php",
    "chars": 248,
    "preview": "<?php\nclass RatingTimeDistribution extends RatingDistribution\n{\n\tpublic function addEntry($entry)\n\t{\n\t\t$this->addToGroup"
  },
  {
    "path": "src/ModelUtils/UserMediaFilter.php",
    "chars": 3627,
    "preview": "<?php\nclass UserMediaFilter\n{\n\tpublic static function doFilter($entries, $filters)\n\t{\n\t\tif (empty($filters))\n\t\t{\n\t\t\tretu"
  }
]

// ... and 87 more files (download for full content)

About this extraction

This page contains the full source code of the anime-plus/graph GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 287 files (739.0 KB), approximately 229.6k tokens, and a symbol index with 630 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!