2020-04-18 11:45:44 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
2016-10-28 22:21:41 +00:00
|
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
2016-04-12 23:24:13 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2021-01-18 23:52:26 +00:00
|
|
|
# Copyright (C) 2015-2021 Tobias Gruetzmacher
|
2020-01-13 06:34:05 +00:00
|
|
|
# Copyright (C) 2019-2020 Daniel Ring
|
2016-03-16 23:44:06 +00:00
|
|
|
import os
|
2016-04-12 23:24:13 +00:00
|
|
|
|
2016-03-16 23:44:06 +00:00
|
|
|
from ..scraper import _ParserScraper
|
2020-07-31 20:56:30 +00:00
|
|
|
from ..helpers import bounceStarter
|
2013-02-13 16:53:25 +00:00
|
|
|
|
2020-07-31 20:56:30 +00:00
|
|
|
XPATH_LINK = '//a[d:class("%s") and contains(text(), "%s")]'
|
|
|
|
XPATH_IMG = '//div[d:class("comicnav")]//a[img[contains(@alt, "%s")]]'
|
2013-02-13 16:53:25 +00:00
|
|
|
|
2016-03-16 23:44:06 +00:00
|
|
|
|
2016-05-22 21:31:53 +00:00
|
|
|
class ComicFury(_ParserScraper):
|
2016-03-16 23:44:06 +00:00
|
|
|
imageSearch = ('//img[@id="comicimage"]',
|
2017-05-14 20:45:12 +00:00
|
|
|
'//div[@id="comicimagewrap"]//embed',
|
|
|
|
'//div[@id="comicimagewrap"]//img')
|
2016-10-30 09:57:50 +00:00
|
|
|
prevSearch = (
|
2019-12-25 22:01:47 +00:00
|
|
|
'//link[@rel="prev"]',
|
|
|
|
# 137 (needs to be before the generic a@rel, because layout is wrong)
|
|
|
|
'//a[contains(@title, "previous")]',
|
2016-10-30 09:57:50 +00:00
|
|
|
'//a[@rel="prev"]',
|
2020-07-31 20:56:30 +00:00
|
|
|
XPATH_LINK % ('comicnavlink', 'Previous'),
|
2019-12-25 22:01:47 +00:00
|
|
|
XPATH_IMG % ('Previous'),
|
|
|
|
# Art, ConsolersDLC, etc.
|
|
|
|
u'//nav//a[contains(text(), "\u2039")]',
|
2019-07-05 02:24:55 +00:00
|
|
|
# LatchkeyKingdom
|
2020-07-31 20:56:30 +00:00
|
|
|
'//a[d:class("navi") and img[contains(@src, "Previous")]]',
|
2019-12-29 22:19:17 +00:00
|
|
|
# KATRAN
|
|
|
|
'//a[contains(text(), "Previous")]',
|
2021-08-14 15:17:38 +00:00
|
|
|
# MansionofE
|
|
|
|
'//a[img[contains(@alt, "PREVIOUS")]]',
|
|
|
|
# RedSpot
|
|
|
|
'//a[contains(text(), "Back")]',
|
2019-12-25 22:01:47 +00:00
|
|
|
)
|
2016-10-30 09:57:50 +00:00
|
|
|
nextSearch = (
|
2019-12-25 22:01:47 +00:00
|
|
|
'//link[@rel="next"]',
|
|
|
|
# 137 (see above)
|
|
|
|
'//a[contains(@title, "next")]',
|
2016-10-30 09:57:50 +00:00
|
|
|
'//a[@rel="next"]',
|
2020-07-31 20:56:30 +00:00
|
|
|
XPATH_LINK % ('comicnavlink', 'Next'),
|
2019-12-25 22:01:47 +00:00
|
|
|
XPATH_IMG % ('Next'),
|
|
|
|
# Art, ConsolersDLC, etc.
|
|
|
|
u'//nav//a[contains(text(), "\u203A")]',
|
2019-07-05 02:24:55 +00:00
|
|
|
# LatchkeyKingdom
|
2020-07-31 20:56:30 +00:00
|
|
|
'//a[d:class("navi") and img[contains(@src, "Next")]]',
|
2019-12-29 22:19:17 +00:00
|
|
|
# RedSpot, KATRAN
|
2019-07-13 03:35:06 +00:00
|
|
|
'//a[contains(text(), "Next")]',
|
2021-08-14 15:17:38 +00:00
|
|
|
# MansionofE
|
|
|
|
'//a[img[contains(@alt, "NEXT")]]',
|
2019-12-25 22:01:47 +00:00
|
|
|
)
|
2016-03-16 23:44:06 +00:00
|
|
|
help = 'Index format: n'
|
2016-04-13 18:01:51 +00:00
|
|
|
starter = bounceStarter
|
2013-02-13 21:17:39 +00:00
|
|
|
|
2021-01-14 06:38:46 +00:00
|
|
|
def __init__(self, name, sub, lang=None, adult=False, endOfLife=False):
|
2016-05-22 21:31:53 +00:00
|
|
|
super(ComicFury, self).__init__('ComicFury/' + name)
|
|
|
|
self.prefix = name
|
|
|
|
self.url = 'http://%s.webcomic.ws/comics/' % sub
|
2019-12-30 10:47:28 +00:00
|
|
|
self.stripUrl = self.url + '%s'
|
|
|
|
self.firstStripUrl = self.stripUrl % '1'
|
2016-05-22 21:31:53 +00:00
|
|
|
if lang:
|
|
|
|
self.lang = lang
|
2020-04-19 08:50:00 +00:00
|
|
|
if adult:
|
|
|
|
self.adult = adult
|
2021-01-14 06:38:46 +00:00
|
|
|
if endOfLife:
|
|
|
|
self.endOfLife = endOfLife
|
2016-05-20 23:18:42 +00:00
|
|
|
|
2016-04-21 06:20:49 +00:00
|
|
|
def namer(self, image_url, page_url):
|
|
|
|
parts = page_url.split('/')
|
|
|
|
path, ext = os.path.splitext(image_url)
|
2013-02-13 21:17:39 +00:00
|
|
|
num = parts[-1]
|
2016-05-22 21:31:53 +00:00
|
|
|
return "%s_%s%s" % (self.prefix, num, ext)
|
2016-04-16 11:13:47 +00:00
|
|
|
|
2016-05-22 21:31:53 +00:00
|
|
|
@classmethod
|
2020-10-11 18:15:27 +00:00
|
|
|
def getmodules(cls): # noqa: Allowed to be long
|
2016-05-22 21:31:53 +00:00
|
|
|
return (
|
2016-10-01 00:48:44 +00:00
|
|
|
# These were once in the list below, but fell out from the index...
|
|
|
|
cls('BadassologyByMichaelBay', 'strudelology'),
|
2017-02-12 18:50:51 +00:00
|
|
|
cls('DandyAndCompany', 'dandyandcompany'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('DeadAtNight', 'deadnight'),
|
|
|
|
cls('Shatterrealm', 'shatterrealm'),
|
2016-05-22 21:31:53 +00:00
|
|
|
|
|
|
|
# do not edit anything below since these entries are generated from
|
|
|
|
# scripts/comicfury.py
|
|
|
|
# START AUTOUPDATE
|
|
|
|
cls('0Eight', '0eight'),
|
|
|
|
cls('1000', '1000'),
|
|
|
|
cls('12YearsLater', '12yearslater'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('137', '137'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('20', 'two-over-zero'),
|
|
|
|
cls('20QuidAmusements', 'twentyquidamusements'),
|
|
|
|
cls('30', '30years'),
|
|
|
|
cls('30DaysOfCharacters', '30days'),
|
|
|
|
cls('3DGlasses', '3dglasses'),
|
|
|
|
cls('60SecondComics', '6tsc'),
|
|
|
|
cls('6ColorStories', '6colorstories'),
|
|
|
|
cls('6Tales', 'sixtales'),
|
|
|
|
cls('933Dollars', '933dollars'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('_Thetest_', 'thetest'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('AbbyComics', 'abbycomics'),
|
|
|
|
cls('ABrickishSpaceComic', 'abrickishspacecomic'),
|
|
|
|
cls('AbsentMindedTheatre', 'amtheatre'),
|
|
|
|
cls('Absurd', 'absurd'),
|
|
|
|
cls('ACannonadeOfHogwash', 'cannonadeofhogwash'),
|
|
|
|
cls('AccidentallyOnPurpose', 'accidentally-on-purpose'),
|
|
|
|
cls('ACelestialStory', 'acelestialstory'),
|
|
|
|
cls('AComicExistense', 'acomicexistense'),
|
|
|
|
cls('Acroalis', 'acroalis'),
|
|
|
|
cls('ActingOut', 'actingout'),
|
|
|
|
cls('ActionLand', 'actionland'),
|
|
|
|
cls('Advent', 'advent'),
|
|
|
|
cls('AdventuresInJetpacks', 'adventuresinjetpacks'),
|
|
|
|
cls('AdventuresInTanoshii', 'adventuresintanoshii'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('AdventuresInTrueLove', 'advtl'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('AdventuresOftheGreatCaptainMaggieandCrew', 'adventuresofmaggie'),
|
|
|
|
cls('Aerosol', 'aerosol'),
|
|
|
|
cls('AetherEarthAndSun', 'aether'),
|
|
|
|
cls('AForeverQuest', 'aforeverquest'),
|
|
|
|
cls('Afterdead', 'afterdead'),
|
|
|
|
cls('AGame', 'kirahitogame'),
|
|
|
|
cls('Agency', 'agency-comic'),
|
|
|
|
cls('AgentBishop', 'agentbishop'),
|
|
|
|
cls('AHappierKindOfSad', 'ahappierkindofsad'),
|
|
|
|
cls('AlbinoBrothers', 'albinobros'),
|
2021-07-05 08:05:45 +00:00
|
|
|
cls('Alderwood', 'alderwood'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('AlexanderAndLucasRebooted', 'alexanderandlucas'),
|
|
|
|
cls('AliaTerra', 'alia-terra'),
|
|
|
|
cls('AlienIrony', 'alien-irony'),
|
|
|
|
cls('AlienSpike', 'alienspike'),
|
|
|
|
cls('Alignment', 'alignment'),
|
|
|
|
cls('AllTheBbqSauce', 'allthebbqsauce'),
|
|
|
|
cls('Alone', 'alone'),
|
|
|
|
cls('ALoonaticsTale', 'aloonaticstale'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ALoveStorydraft', 'alovestory'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('AlyaTheLastChildOfLight', 'alya'),
|
|
|
|
cls('Amara', 'amara'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Ampre', 'ampere'),
|
|
|
|
cls('AmyOok', 'amyook'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('AndroidFiles', 'androidfiles'),
|
2017-02-12 18:50:51 +00:00
|
|
|
cls('AngelGuardianEnEspanol', 'angelguardianespanol', 'es'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('AngelsOfIblis', 'angelsofiblis'),
|
|
|
|
cls('AngryFaerie', 'angryfaerie'),
|
|
|
|
cls('AnimalInstinct', 'fur-realanimalinstinct'),
|
|
|
|
cls('Animangitis', 'animangitis'),
|
|
|
|
cls('AnK', 'ank'),
|
|
|
|
cls('Anne', 'anne'),
|
|
|
|
cls('AntarcticBroadcasting', 'antarcticbroadcasting'),
|
|
|
|
cls('AntaresComplex', 'antarescomplex'),
|
|
|
|
cls('Antcomics', 'antcomics'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Anthology', 'strudelology'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('AnthologyOfAnfer', 'anfer'),
|
|
|
|
cls('AnthrosAndDungeons', 'anthrosanddungeons'),
|
|
|
|
cls('AntiqueTimeMachine', 'atm'),
|
|
|
|
cls('APiratesLife', 'pirateslife'),
|
|
|
|
cls('ApocalypsoAdventure', 'thewriter13'),
|
|
|
|
cls('ApplepineMonkeyAndFriends', 'applepine'),
|
|
|
|
cls('AquazoneBreakfastNews', 'aqbn'),
|
|
|
|
cls('ArachnidGoddess', 'arachnidgoddess'),
|
|
|
|
cls('Arcane', 'rbsarcane'),
|
|
|
|
cls('Archibald', 'archibald'),
|
|
|
|
cls('ArchiNinja', 'archininja'),
|
|
|
|
cls('AreYouDoneYet', 'areyoudoneyet'),
|
|
|
|
cls('ArmlessAmy', 'armlessamy'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ArmlessAmyExtraEdition', 'armlessamyextraedition'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ArmyBrat', 'armybrat'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Art', 'art'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ArtificialStorm', 'artificialstorm'),
|
|
|
|
cls('ArtisticAdventuresInBoredom', 'aab'),
|
|
|
|
cls('ARVEYToonz', 'arveytoonz'),
|
|
|
|
cls('Ashes', 'ashescomic'),
|
|
|
|
cls('Asperchu', 'asperchu'),
|
|
|
|
cls('AsperitasAstraalia', 'asperitasastraalia'),
|
|
|
|
cls('AssholeAndDouchebag', 'aaanddb'),
|
|
|
|
cls('AstralAves', 'astralaves'),
|
|
|
|
cls('ASTRAYCATS', 'astraycats'),
|
|
|
|
cls('Astronautical', 'astronautical'),
|
|
|
|
cls('AtomicMonkeyComics', 'atomicmonkey'),
|
|
|
|
cls('ATownCalledAlandale', 'atowncalledalandale'),
|
|
|
|
cls('AttackOfTheRobofemoids', 'attack-of-the-robofemoids'),
|
|
|
|
cls('AugustosClassic', 'augustos-classic'),
|
|
|
|
cls('AuntieClara', 'auntieclara'),
|
|
|
|
cls('Auriga', 'auriga'),
|
|
|
|
cls('Auster', 'auster'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('AutumnBay', 'autumnbay'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('AutumnBayExtraEdition', 'autumnbayextra'),
|
|
|
|
cls('Avatars', 'avatars'),
|
|
|
|
cls('AvengersRollInitiative', 'avengersrollinitiative'),
|
|
|
|
cls('AwkwardPaws', 'awkwardpaws'),
|
|
|
|
cls('AwkwardShelby', 'awkwardshelby'),
|
|
|
|
cls('BabesOfDongaria', 'dongaria'),
|
|
|
|
cls('Baby001', 'baby001'),
|
|
|
|
cls('BabyBatman', 'babybatman'),
|
|
|
|
cls('BackToTheRefridgerator', 'bttf'),
|
|
|
|
cls('BadAdjectives', 'badadjectives'),
|
|
|
|
cls('BananaCreamCake', 'bananacreamcake'),
|
2017-02-12 18:50:51 +00:00
|
|
|
cls('BarkingCrayon', 'barkingcrayon'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('BASKERVILLE', 'baskerville'),
|
|
|
|
cls('BASO', 'baso'),
|
|
|
|
cls('BattleOfTheRobofemoids', 'battle-of-the-robofemoids'),
|
|
|
|
cls('BeatStuffUpMan', 'beatstuffupman'),
|
|
|
|
cls('BeepClub', 'beepclub'),
|
|
|
|
cls('BeePolice', 'beepolice'),
|
|
|
|
cls('Beezwax', 'beezwax'),
|
|
|
|
cls('BeforeAndAfter', 'beforeandafter'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Being', 'being'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('BELECOMICS', 'belecomics'),
|
|
|
|
cls('BentElbows', 'bentelbows'),
|
|
|
|
cls('BetaParticles', 'betaparticles'),
|
|
|
|
cls('BetweenTheFrames', 'betweentheframes'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('BetweenTheInterval', 'betweentheinterval'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('BibleBelt', 'biblebelt'),
|
|
|
|
cls('BilateralComics', 'bilateralcomics'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('BionicleTales', 'bionicletales'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('BioSyte', 'biosyte'),
|
|
|
|
cls('Birdman', 'birdman'),
|
|
|
|
cls('BlankLifeInsertPlayerRokulily', 'blanklife'),
|
2020-08-01 05:01:23 +00:00
|
|
|
cls('BlackTapestries', 'blacktapestries', adult=True),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('BlitzPhoenix', 'blinix'),
|
|
|
|
cls('BlobWorld', 'blobworld'),
|
|
|
|
cls('BloodLegaciesEternity', 'bloodlegacieseternity'),
|
|
|
|
cls('BlueBloodHeroes', 'bluebloodheroes'),
|
|
|
|
cls('BoatcrashChronicles', 'boatcrash'),
|
|
|
|
cls('BobbyTheFetus', 'bobbythefetus'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Boobgirl', 'boobgirl'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('BookOfThree', 'bookofthree'),
|
|
|
|
cls('BooksDontWorkHere', 'booksdontworkhere'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('BorisAndBjorn', 'borisandbjorn'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Boritom', 'boritom'),
|
|
|
|
cls('BrainFood', 'brainfood'),
|
|
|
|
cls('BrainTeaser', 'brainteaser'),
|
|
|
|
cls('BritarsesHashHymnal', 'hashhymnal'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('BroadoakPeople', 'broadoakpeople'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('BrokenWings', 'brokenwingscomic'),
|
|
|
|
cls('BromosWorld', 'bromosworld'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Brujagh', 'brujagh'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('BubbleFox', 'bubblefox'),
|
|
|
|
cls('Bulletproof', 'bulletproof'),
|
|
|
|
cls('BunnyGoreJustice', 'bunny-gore-justice'),
|
|
|
|
cls('BustySolar', 'bustysolar'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('ButterflyAFortuitousTale', 'butterfly'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ButterflyEffect', 'thebutterflyeffect'),
|
|
|
|
cls('BUXYAndDave', 'buxy'),
|
|
|
|
cls('BuyingTime', 'buyingtime'),
|
|
|
|
cls('CACKLENCOMICS', 'cacklencomics'),
|
|
|
|
cls('CactusCanyon', 'cactuscanyon'),
|
|
|
|
cls('CAFEGRUESOME', 'cafegruesome'),
|
|
|
|
cls('Cagegirl', 'cagegirl'),
|
|
|
|
cls('CastOfMadness', 'castofmadness'),
|
|
|
|
cls('CatHerosEpicCatventuresAsAnHero', 'cathero'),
|
|
|
|
cls('CatosApprenticeship', 'cato'),
|
|
|
|
cls('CattDogg', 'cattdogg'),
|
|
|
|
cls('Cattic', 'cattic'),
|
|
|
|
cls('CattusesChristmasCalendar', 'xmascattuses'),
|
|
|
|
cls('CatWithGoggles', 'catwithgoggles'),
|
|
|
|
cls('CautionaryTales', 'cautionarytales'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('CazTheComicStrip', 'cazthecomicstrip'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('CelticShaman', 'celticshaman'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Chainbreaker', 'chainbreaker'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ChamberOfTheArcanum', 'cofthea'),
|
|
|
|
cls('ChampionOfKatara', 'championofkatara'),
|
|
|
|
cls('ChanpuruSaga', 'chanpuru'),
|
|
|
|
cls('CharacterBattleBetweenRounds', 'between-rounds'),
|
|
|
|
cls('CHLOE', 'chloe'),
|
|
|
|
cls('ChocoLavaCOMICScom', 'chocolava'),
|
|
|
|
cls('Chosen', 'chosentheultimatecliche'),
|
|
|
|
cls('CHRISTMASEVETheFirstLadyOfYuletideCheer', 'coolyulecomics'),
|
|
|
|
cls('ChristmasWithMadDog', 'christmas-with-maddog'),
|
|
|
|
cls('ChronoRedux', 'chronoredux'),
|
|
|
|
cls('Cinder', 'cinder'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('CircusJaxs', 'circusjaxs'),
|
2019-12-25 22:01:47 +00:00
|
|
|
cls('CityFolk', 'cityfolkwebcomics'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('CityOfDream', 'cityofdream'),
|
|
|
|
cls('CKarrus', 'ckarrus'),
|
|
|
|
cls('ClassicElsewhere', 'classicelsewhere'),
|
|
|
|
cls('ClassicMissJAndTheAmComics19842006', 'missjandtheam'),
|
|
|
|
cls('ClydeNOwen', 'clydenowen'),
|
|
|
|
cls('COCHLEAAndEUSTACHIA', 'chromefetus'),
|
|
|
|
cls('CockeyedComix', 'cockeyed'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Code', 'code'),
|
|
|
|
cls('CollegeMunchies', 'collegemunchies'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Colorforce', 'colorforce'),
|
|
|
|
cls('ComicFuryFanArtExchanges', 'cfexchanges'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ComicShopOfHorror', 'comicshop'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ComicShortsTheMainSeries', 'comicshortsmain'),
|
|
|
|
cls('ComingApartments', 'comingapartments'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('COMIXTURE', 'comixture'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('CommonReadComicAdaptions', 'slucommonread'),
|
|
|
|
cls('CompanyManComic', 'companyman'),
|
|
|
|
cls('ConcerningJustice', 'concerningjustice'),
|
|
|
|
cls('CONIES', 'conies'),
|
|
|
|
cls('ConradTheCaterpillar', 'conradthecaterpillar'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Consolers', 'consolers'),
|
|
|
|
cls('ConsolersDLC', 'consolers-dlc'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ContestedTerritory', 'contestedterritory'),
|
|
|
|
cls('CoolstarComicsMasterFiles', 'coolstarcomicsmasterfiles'),
|
|
|
|
cls('CopyPasteAndMrBenjy', 'copypasteandmrbenjy'),
|
|
|
|
cls('Corpses', 'corpses'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('Cosmos', 'planetcosmos'),
|
2017-02-12 18:50:51 +00:00
|
|
|
# CourageousManAdventures has a duplicate in ComicSherpa/CourageousManAdventures
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('CowboysAndCrossovers', 'cowboysandcrossovers'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Cowtoon', 'cowtoon'),
|
|
|
|
cls('CrackPutty', 'crackputty'),
|
|
|
|
cls('CRashCourse', 'crashcourse'),
|
|
|
|
cls('Crawlers', 'crawlers'),
|
|
|
|
cls('CrimsonPixelComics', 'crimsonpixel'),
|
|
|
|
cls('Critters', 'critters'),
|
|
|
|
cls('CrossoverChampionship', 'crossoverchampionship'),
|
|
|
|
cls('CrossoverExchange', 'crossoverexchange'),
|
|
|
|
cls('CrossoverlordAndCrossoverkill', 'crossoverlordkill'),
|
|
|
|
cls('CrossWorld', 'crossworld'),
|
|
|
|
cls('CrowbarASciFiAdventure', 'crowbar'),
|
|
|
|
cls('CrowbarsDontKillPeopleCROWBARSDo', 'crowbars'),
|
|
|
|
cls('Cryptida', 'cryptida', 'de'),
|
|
|
|
cls('CryptidaEnglish', 'cryptida-eng'),
|
|
|
|
cls('CrystalBall', 'crystalball'),
|
|
|
|
cls('CtrlZ', 'ctrlz'),
|
|
|
|
cls('CubeCows', 'cubecows'),
|
|
|
|
cls('CupcakeGraffiti', 'cupcakegraffiti'),
|
|
|
|
cls('CYXLOSISM', 'cyxlocistic'),
|
|
|
|
cls('DailyDoodle', 'dailydoodle'),
|
|
|
|
cls('DailyOneLiner', 'daily1l'),
|
|
|
|
cls('DamaclesAndKenjall', 'wowwithatwist-damaclesandkejallcomic'),
|
|
|
|
cls('DamnHipsters', 'damnhipsters'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('DAndDAangvanced', 'danddaangvanced'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Daredoers', 'daredoers'),
|
|
|
|
cls('DarkHorse', 'darkhorse'),
|
|
|
|
cls('Darklings', 'darklings'),
|
|
|
|
cls('DarkSisters', 'darksisters'),
|
|
|
|
cls('DarVal', 'murghcomics'),
|
|
|
|
cls('Datachasers', 'datachasers'),
|
|
|
|
cls('DaughterOfDarkness', 'honeyvenom'),
|
|
|
|
cls('DaxTapu', 'daxtapu'),
|
|
|
|
cls('DDSR', 'ddsr'),
|
|
|
|
cls('DEAD', 'dead'),
|
|
|
|
cls('DeadDucks', 'deadducks'),
|
|
|
|
cls('DeadFingers', 'deadfingers'),
|
|
|
|
cls('DeadRabbitCa', 'afairtrade'),
|
|
|
|
cls('DeepBlue', 'deepblue'),
|
2021-04-22 08:45:51 +00:00
|
|
|
cls('DeerMe', 'deerme'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('DefineHero', 'definehero'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('DELIA', 'delia'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('DemasPokmonAdventure', 'nuzlocke-dema'),
|
|
|
|
cls('DemonWings', 'demonwings'),
|
|
|
|
cls('DesertGrey', 'desertgrey'),
|
|
|
|
cls('DesertShark', 'desertshark'),
|
|
|
|
cls('Dictatorship', 'dictatorship'),
|
|
|
|
cls('DieRabbitDie', 'dierabbitdie'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('DimensioNoir', 'dimensionoir'),
|
|
|
|
cls('DivinaFortuna', 'divinafortuna'),
|
2019-07-13 03:47:37 +00:00
|
|
|
cls('DNA', 'd-n-a'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('DnDDumbAndDumber', 'dnddumbanddumber'),
|
|
|
|
cls('DoffeEllende', 'doffeellende'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Dogstar', 'dogstar'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Domain', 'domain'),
|
|
|
|
cls('DonutsForSharks', 'donutsforsharks'),
|
|
|
|
cls('DotComic', 'dotcomic'),
|
|
|
|
cls('DotX', 'dotx'),
|
|
|
|
cls('DoubleJumpGameComics', 'doublejump'),
|
|
|
|
cls('Draginbeard', 'draginbeard'),
|
|
|
|
cls('DragonballZElsewhere', 'dbzelsewhere'),
|
|
|
|
cls('DragonCity', 'dragoncity'),
|
2020-02-26 20:24:54 +00:00
|
|
|
cls('DragonsAndSilk', 'dragonsandsilk'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('DragonsOfAzuma', 'dragonsofazuma'),
|
|
|
|
cls('DrApocalyptosSurvivorama', 'docapoc'),
|
|
|
|
cls('DressedForSuccess', 'dressedforsuccess'),
|
|
|
|
cls('Drettaville', 'drettaville'),
|
|
|
|
cls('DrifterJournalsOfAHero', 'drifterjournalsofahero'),
|
|
|
|
cls('Drifting', 'drifting'),
|
|
|
|
cls('Droned', 'droned'),
|
|
|
|
cls('DRouggs', 'drouggs'),
|
|
|
|
cls('DrugsAndKisses', 'd-and-k'),
|
2020-04-19 08:50:00 +00:00
|
|
|
cls('Druids', 'druids', adult=True),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('DubCity', 'dubcity'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('DueEast', 'dueeast'),
|
|
|
|
cls('DuelingHeroes', 'duelingheroes'),
|
2017-02-12 18:50:51 +00:00
|
|
|
# DungeonHordes has a duplicate in ComicSherpa/DungeonHordes
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('DungeonMasterEffect', 'dungeonmastereffect'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('DyerinsLine', 'dyerinsline'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('EclipseLegend', 'eclipselegend'),
|
|
|
|
cls('Educomix', 'educomix'),
|
|
|
|
cls('EffinguKookoo', 'effingukookoo'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('EightBitAdventuresOfCaptainA', 'eightbitadventures'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ElektrosComicAnthology', 'elektroanthology'),
|
|
|
|
cls('Element8', 'element8'),
|
|
|
|
cls('ElementsOfEve', 'elementsofeve'),
|
|
|
|
cls('Elf', 'elf-comic'),
|
|
|
|
cls('Elsewhere', 'elsewhere'),
|
|
|
|
cls('EmpiresOfSteam', 'empiresofsteam'),
|
|
|
|
cls('Energize', 'energize'),
|
|
|
|
cls('enoZone', 'xenozone'),
|
|
|
|
cls('EpicsOfNoche', 'epicsofnoche'),
|
|
|
|
cls('Equilibrium', 'equilibrists'),
|
|
|
|
cls('Ergosphere', 'ergosphereworld'),
|
2019-07-06 05:30:04 +00:00
|
|
|
cls('Eros', 'eros'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ErraticElegance', 'erratice'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('EscapeVelocity', 'escapevelocity'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('EternalNight', 'eternalnight'),
|
|
|
|
cls('EternityComplex', 'eternityc'),
|
|
|
|
cls('EverydayAbnormal', 'everydayabnormal'),
|
|
|
|
cls('EvilRising', 'evilrising'),
|
|
|
|
cls('EWMIC', 'ewmic'),
|
|
|
|
cls('ExperiMentalTheatre', 'emt'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('FacesOfFire', 'facesofire'),
|
|
|
|
cls('Fallacy', 'fallacy-harha'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('FandomMisadventures', 'eatabaguette'),
|
|
|
|
cls('Fannicklas', 'fannicklas'),
|
|
|
|
cls('FatalExpression', 'fexpression'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('FBHNKAG', 'fbhnk-ag'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('FeliciaSorceressOfKatara', 'felicia'),
|
|
|
|
cls('FEZ', 'fez'),
|
|
|
|
cls('FiendishFellowship', 'fiendishfellowship'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('FighterDan', 'fighterdan'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('FingerPuppetShow', 'fingerpuppetshow'),
|
|
|
|
cls('FireBorn', 'fireborn2'),
|
|
|
|
cls('Fishbowl', 'fishbowl'),
|
|
|
|
cls('FishfaceAndBirdbrain', 'ahtiventures'),
|
|
|
|
cls('Flickwit', 'flickwit'),
|
|
|
|
cls('FlintlockesGuideToAzeroth', 'flintlocke'),
|
|
|
|
cls('FlintlockeVsTheHorde', 'flintlockevshorde'),
|
|
|
|
cls('ForeignTerritory', 'foreignterritory'),
|
|
|
|
cls('ForNathaniel', 'fornathaniel'),
|
|
|
|
cls('FoxyFlavoredCookie', 'pobrepucho'),
|
|
|
|
cls('FracturedTea', 'fracturedtea'),
|
|
|
|
cls('Frames', 'frames'),
|
|
|
|
cls('FraterniT', 'fraterni-t'),
|
|
|
|
cls('FraternityOfEvil', 'foe'),
|
|
|
|
cls('FreeLancer', 'freelancer'),
|
|
|
|
cls('FreQuency', 'frequency'),
|
|
|
|
cls('FridayAndGrover', 'fridayandgrover'),
|
|
|
|
cls('FriendshipIsDragons', 'friendshipisdragons'),
|
|
|
|
cls('FromDustToRuination', 'fromdust2ruination'),
|
|
|
|
cls('Frontier2170', 'frontier2170'),
|
|
|
|
cls('FrostFire', 'frostfire'),
|
|
|
|
cls('FullmetalBrothers', 'fullmetalbrothers', 'es'),
|
|
|
|
cls('FurAndN3rdy', 'furnerdy'),
|
2020-05-08 06:31:44 +00:00
|
|
|
cls('FurryExperience', 'furryexperience'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Fusion', 'fusion'),
|
|
|
|
cls('FutureRegrets', 'futureregrets'),
|
|
|
|
cls('FuzzballAndScuzzball', 'fuzzballandscuzzball'),
|
|
|
|
cls('GalbertOfBruges', 'galbertofbruges'),
|
|
|
|
cls('GarfieldMinusJon', 'garfieldminusjon'),
|
|
|
|
cls('Gatito', 'gatito'),
|
|
|
|
cls('GenjiGami', 'genjigami'),
|
|
|
|
cls('Ghelis', 'ghelis'),
|
|
|
|
cls('GhostGirlsClubZero', 'ghostgirlsclubzero'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('GhostSyndrome', 'ghostsyndrome'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('GiantQueenSakura', 'giantqueensakura'),
|
|
|
|
cls('GillimurphyStories', 'gillimurphy'),
|
|
|
|
cls('GillimurphyStoriesorig', 'gillimurphy-orig'),
|
|
|
|
cls('GlomshireKnights', 'glomshire'),
|
|
|
|
cls('Glorianna', 'glorianna'),
|
|
|
|
cls('GnomereganForever', 'gnomereganforever'),
|
|
|
|
cls('GODHATESDADS', 'godhatesdads'),
|
|
|
|
cls('GoldBlood', 'goldblood'),
|
|
|
|
cls('Goldrush', 'goldrush-dynllewcomics'),
|
|
|
|
cls('GrandfathersTale', 'grandfatherstale'),
|
|
|
|
cls('Grandify', 'grandify'),
|
|
|
|
cls('Gratz', 'gratz'),
|
|
|
|
cls('Grayling', 'grayling'),
|
|
|
|
cls('GreenEyes', 'greeneyes'),
|
|
|
|
cls('GreysterJemp', 'greysterjemp'),
|
|
|
|
cls('GrimReaperSchool', 'grimreaperschool'),
|
|
|
|
cls('GrippsBrain', 'grippsbrain'),
|
|
|
|
cls('GrokBoop', 'grokboop'),
|
2020-04-12 09:15:20 +00:00
|
|
|
cls('GrowingTroubles', 'growingtroubles'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('GUS', 'gus'),
|
|
|
|
cls('HalloweenCameoCaper2012', 'halloween2012'),
|
|
|
|
cls('HalloweenCameoCaper2013', 'halloween2013'),
|
|
|
|
cls('HalloweenCameoCaper2014', 'halloween2014'),
|
|
|
|
cls('HARDLUCK', 'hardluck'),
|
|
|
|
cls('HAYWIRE', 'haywire'),
|
|
|
|
cls('HazardousScience', 'hazsci'),
|
|
|
|
cls('HazardsWake', 'hazardswake'),
|
|
|
|
cls('HazyDaze', 'hazydaze'),
|
|
|
|
cls('HeadRoom', 'headroom'),
|
|
|
|
cls('HeadWound', 'headwound'),
|
|
|
|
cls('HeartOfKeol', 'keol'),
|
|
|
|
cls('HeavyLittlePeople', 'heavylittlepeople'),
|
|
|
|
cls('HeavyMetalSailorMoon', 'hmsm'),
|
|
|
|
cls('Hellbent', 'hellbent'),
|
|
|
|
cls('Hellbound', 'hellboundarchive'),
|
|
|
|
cls('HellCar', 'hellcar'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('HenriettaLamb', 'henriettalamb'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('HeraclesKnot', 'heraclesknot'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('HeroesAtWork', 'heroesatwork'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('HeroesOfPower', 'myhorriblesite'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('HINATATheDemonSlayer', 'hinatax'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('HitmanPiranha', 'hitmanpiranha'),
|
|
|
|
cls('HitmenForDestiny', 'hitmen'),
|
|
|
|
cls('HobGoblinAdventure', 'hobgoblin'),
|
|
|
|
cls('Holon', 'holon'),
|
|
|
|
cls('HolyBibble', 'holy-bibble'),
|
|
|
|
cls('HolyCowComics', 'holycowcomics'),
|
|
|
|
cls('HomeOfTheSpaceWalnut', 'hotsw'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('HoodzAndCaperz', 'hoodzandcaperz'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('HorizonGakuen', 'horizongakuen'),
|
|
|
|
cls('HourlyKelly', 'hourlykelly'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('HouseOnWritersBlock', 'houseonwritersblock'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Housepets1X', 'housepets1x'),
|
|
|
|
cls('HowIRememberIt', 'hiri'),
|
|
|
|
cls('HowToRaiseYourTeenageDragon', 'teenagedragon'),
|
|
|
|
cls('HowWeStaySaneAtWork', 'howwestaysaneatwork'),
|
|
|
|
cls('HumanCookies', 'humancookies'),
|
|
|
|
cls('HurfanosOrphans', 'huerfanos'),
|
|
|
|
cls('HUSH', 'hush'),
|
|
|
|
cls('HyperactiveComics', 'hyperactivecomics'),
|
|
|
|
cls('ICryWhileYouSleep', 'icrywhileusleep'),
|
|
|
|
cls('IDGet', 'idget'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('IFSU', 'ifsused'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('IgnitionZero', 'ignitionzero'),
|
|
|
|
cls('IlusionOfTime', 'illusionoftime'),
|
|
|
|
cls('Immigrant', 'immigrant'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('ImNotYourFriend', 'imnotyourfriend'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Imp', 'imp'),
|
|
|
|
cls('ImperialEntanglements', 'imperialentanglements'),
|
|
|
|
cls('Imperium', 'imperium'),
|
|
|
|
cls('IMPERIVM', 'imperivmgalactica'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Impisha', 'impisha'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('InBloodOfColour', 'inbloodofcolour'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Indexmancave', 'indexmancave'),
|
|
|
|
cls('InfraCityTheComic', 'infracity'),
|
|
|
|
cls('InkLaRue', 'inkalarue'),
|
|
|
|
cls('Inorganic', 'disturbingcomics'),
|
|
|
|
cls('InsanityCorpV22', 'insanitycorp'),
|
|
|
|
cls('Insectia', 'insectia'),
|
|
|
|
cls('InsideOuT', 'insideout'),
|
|
|
|
cls('InstantGraphicNovel', 'ign'),
|
|
|
|
cls('IntergalacticTruckstop', 'its'),
|
|
|
|
cls('InternetSuperbuddies', 'isb'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Invicta', 'invicta'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('IsaacAndFriends', 'isaacandfriends'),
|
|
|
|
cls('IslandOfTheMoths', 'moths'),
|
|
|
|
cls('Isonacia', 'isonacia'),
|
|
|
|
cls('ItsComplicated', 'itscomplicated'),
|
|
|
|
cls('ItsJustAnotherDay', 'itsjustanotherday'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ItsNEWDAY', 'itsnewday'),
|
2020-10-22 07:36:09 +00:00
|
|
|
cls('Jack', 'jackrabbit', adult=True),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('JackAndTheBeanstalk', 'jackandthebeanstalk'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('JackFrostDoujin', 'jfdoujin'),
|
|
|
|
cls('JackitAndFriends', 'jackitandfriends'),
|
|
|
|
cls('JakeBone', 'jakebone'),
|
|
|
|
cls('JamieJupiter', 'jamiejupiter'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('JaquieNovemberAndTheSpookiness', 'november-spookiness'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('JaysInternetFightClub', 'jaysinternetfightclub'),
|
|
|
|
cls('JellyfishStew', 'yppcomic'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('JenffersShowsFanArtPage', 'jenffersshowsfanartpage'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('JenffersShowsMissJAndJensPhotoAlbum', 'missjandjensphotoalbum'),
|
|
|
|
cls('JenffersShowTheNewStoriesOfMissJAndJen', 'thenewstoriesofmissjandjen'),
|
|
|
|
cls('Jericho', 'jericho'),
|
2017-02-12 18:50:51 +00:00
|
|
|
cls('JillpokeBohemia', 'jillpokebohemia'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Jix', 'jix'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('JohnnyBullet', 'johnnybullet'),
|
|
|
|
cls('JonathinQuackupOfThePlanetWeralt', 'quackup'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('JoostsDailyDealings', 'joostdailies'),
|
|
|
|
cls('JournalComics', 'jordansjournal'),
|
|
|
|
cls('JourneyToRaifina', 'journeytoraifina'),
|
|
|
|
cls('JudeAndMaria', 'judeandmaria'),
|
|
|
|
cls('Jump', 'jump2'),
|
|
|
|
cls('Junk', 'junk'),
|
|
|
|
cls('Jupiter', 'jupiter'),
|
|
|
|
cls('JustPeachy', 'justpeachy'),
|
|
|
|
cls('KarensEdge', 'karensedge'),
|
|
|
|
cls('Katastrophe', 'katastrophe'),
|
2019-12-29 22:19:17 +00:00
|
|
|
cls('KATRAN', 'katran'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('KayAndP', 'kayandp'),
|
|
|
|
cls('KazasMateGwenna', 'kaza-and-gwenna'),
|
|
|
|
cls('KAZE', 'kaze'),
|
|
|
|
cls('KeepingThePeace', 'keepingthepeace'),
|
|
|
|
cls('KeepingUpWithThursday', 'keepingupwiththursday'),
|
|
|
|
cls('KetsuekiDoku', 'ketsuekidoku'),
|
|
|
|
cls('KevinWatch', 'kevinwatch'),
|
|
|
|
cls('KevinWatchTheMovie', 'kevinwatchthemovie'),
|
|
|
|
cls('KiasComic', 'kiascomic'),
|
|
|
|
cls('KiasOTHERComic', 'kiasothercomic'),
|
|
|
|
cls('KiLAILO', 'kilailo'),
|
|
|
|
cls('KingdomOfTheDinosaurs', 'dinosaurkingdom'),
|
|
|
|
cls('KingdomPrettyCure', 'kingdomprettycure'),
|
|
|
|
cls('KirbyVsShyGuy', 'kvsg'),
|
|
|
|
cls('KMLsSticks', 'kmlssticks'),
|
|
|
|
cls('KnavesEnd', 'knavesend'),
|
|
|
|
cls('KnightGuy', 'knightguy'),
|
|
|
|
cls('Kordinar25000', 'kordinar'),
|
|
|
|
cls('KougarStreetTheHumiliationOfLisaRumpson', 'kougarstreet'),
|
|
|
|
cls('KronosWoWComics', 'kronoswowcomics'),
|
|
|
|
cls('KyoniWanderer', 'kyoniwanderer'),
|
|
|
|
cls('LaceyInvestigations', 'lacey-investigations'),
|
|
|
|
cls('LadySpectraAndSparky', 'ladyspectra'),
|
|
|
|
cls('Lambo', 'lambo'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('LandOfTheEverYoung', 'landoftheeveryoung'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('LaserBrigade', 'laserbrigade'),
|
|
|
|
cls('LastCall', 'lastcallcomic'),
|
|
|
|
cls('LastTaxi', 'lasttaxi'),
|
|
|
|
cls('Latchkey', 'latchkey'),
|
2019-07-05 02:24:55 +00:00
|
|
|
cls('LatchkeyKingdom', 'latchkeykingdom'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Lately', 'lately'),
|
|
|
|
cls('Lauras24HourComics', 'lauras24hourcomics'),
|
|
|
|
cls('LazyComics', 'lazy'),
|
|
|
|
cls('LeahClearwaterFancomic', 'leahclearwaterfancomic'),
|
|
|
|
cls('LegendOfPaean', 'legend-of-paean'),
|
|
|
|
cls('LegendOfTheRedPhantom', 'legendoftheredphantom'),
|
|
|
|
cls('LegendOfZeldaOcarinaOfTim', 'ocarinaoftim'),
|
|
|
|
cls('LethargicMisanthropy', 'lethargicmisanthropy'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('LetsCelebrate', 'letscelebrate'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Level30Psychiatry', 'lvl30psy'),
|
|
|
|
cls('LifeExplained', 'lifeexplained'),
|
|
|
|
cls('LightBulbs', 'lightbulbs'),
|
|
|
|
cls('LightningProphetess', 'lp'),
|
|
|
|
cls('LilHeroArtists', 'lilheroartists'),
|
2017-02-12 18:50:51 +00:00
|
|
|
# LimboRoad has a duplicate in ComicSherpa/LimboRoad
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Lint', 'lint'),
|
|
|
|
cls('Lintier', 'lintier'),
|
|
|
|
cls('LiquidLunch', 'liquidlunch'),
|
|
|
|
cls('LiteBites', 'litebites'),
|
|
|
|
cls('LittleBlackDress', 'little-black-dress'),
|
|
|
|
cls('LittleJacquie', 'littlejacquie'),
|
|
|
|
cls('LittleRedRobo', 'littleredrobo'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('LivingInACloud', 'livinginacloud'),
|
2016-05-22 21:31:53 +00:00
|
|
|
# Lola has a duplicate in GoComics/Lola
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('LongDistanceChargesApply', 'zacharybinks'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Longhike', 'longhike'),
|
|
|
|
cls('LookStraightAhead', 'lookstraightahead'),
|
|
|
|
cls('LOSTLOVE', 'lostlove'),
|
|
|
|
cls('LoveIsConplicated', 'conplicated'),
|
|
|
|
cls('LoveKillsSlowly', 'lovekillsslowly'),
|
|
|
|
cls('LOVETriologyExtraArt', 'mlextralove'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('LuckyHazard', 'luckyhazard'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Lukewarm', 'lukewarm'),
|
|
|
|
cls('LunaStar', 'lunastar'),
|
2020-06-22 06:42:38 +00:00
|
|
|
cls('LustAndIre', 'lustandire', adult=True),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MadGirl', 'madgirl'),
|
|
|
|
cls('MagicElDesencuentro', 'magiceldesencuentro', 'es'),
|
|
|
|
cls('MagicTheScattering', 'magicthescattering'),
|
2019-12-26 21:03:18 +00:00
|
|
|
cls('Magience', 'magience'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('MAGISAPARASAYOupdatesMonFri', 'mag-isa'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MagnaComica', 'magnacomica'),
|
|
|
|
cls('Maluk', 'maluk'),
|
|
|
|
cls('ManChildren', 'manchildren'),
|
|
|
|
cls('MariosCastleTales', 'mariocastletales', 'it'),
|
|
|
|
cls('MarriedToATransformersFan', 'marriedtoatransformersfan'),
|
|
|
|
cls('MARS', 'mars'),
|
|
|
|
cls('MaskOfTheAryans', 'mask-of-the-aryans'),
|
|
|
|
cls('MassEffectMinarga', 'minarga'),
|
|
|
|
cls('Mateys', 'mateys'),
|
|
|
|
cls('MaxFuture', 'maxfuture'),
|
|
|
|
cls('MAYBELOVE', 'emmacomics'),
|
|
|
|
cls('MayonakaDensha', 'mayonakadensha'),
|
2021-01-14 06:38:46 +00:00
|
|
|
cls('MayTheRainCome', 'maytheraincome', endOfLife=True),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MegaMaidenVSTheChopChopPrincess', 'megamaiden'),
|
|
|
|
cls('MeganKearneysBeautyAndTheBeast', 'batb'),
|
|
|
|
cls('MelancholyGoRound', 'melancholygoround'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('MerelyMortal', 'merelymortal'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Messenger', 'messenger'),
|
|
|
|
cls('MichaelTDesingsArmyAnts', 'armyants'),
|
|
|
|
cls('MichellesUniverseScrapbook', 'michellesuniversescrapbook'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('MidnightMoon', 'midnightmoonrp'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MidnightRUN', 'midnight-run'),
|
|
|
|
cls('MIGHTYRACCOON', 'starraccoon'),
|
|
|
|
cls('MildlyAmusing', 'mildlyamusing'),
|
|
|
|
cls('Minecraft2b2tnet', 'minecraft2b2t'),
|
|
|
|
cls('MiraclesOfNeksenziPoint', 'neksenzi-miracles'),
|
|
|
|
cls('MirroredConversations', 'mirroredconversations'),
|
|
|
|
cls('MiscellaneousMadness', 'rangerrandom'),
|
|
|
|
cls('Mischeif', 'mischeif'),
|
|
|
|
cls('MissingDream', 'missingdream'),
|
|
|
|
cls('MissionMars', 'missionmars'),
|
|
|
|
cls('MithrilRavens', 'mithril-ravens'),
|
|
|
|
cls('MiVidaSinUnJetpack', 'sinjetpack', 'es'),
|
|
|
|
cls('MobiusAdventures', 'mobiusadventures'),
|
|
|
|
cls('Mohyla', 'mohyla'),
|
|
|
|
cls('Molasses', 'molasses'),
|
|
|
|
cls('MondayMonday', 'mondaymonday'),
|
|
|
|
cls('MonochromeRainbow', 'monobow'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('MonsterBait', 'deadnight'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MonsterInTheKingdom', 'monster'),
|
|
|
|
cls('MonstersWithBenefits', 'failmonsters'),
|
|
|
|
cls('MonstroniverseAdventures', 'monstroniverse'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('MoonlitBrew', 'moonlitbrew'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MoonWraith', 'moonwraith'),
|
|
|
|
cls('MorningSquirtz', 'morningsquirtz'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('MotherOfAllMonsters', 'moam'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MousebearComedy', 'mousebearcomedy'),
|
|
|
|
cls('MrCow', 'mrcow'),
|
|
|
|
cls('MrPunchAndProfRatbaggyEmeritus', 'punch'),
|
2017-02-12 18:50:51 +00:00
|
|
|
cls('MuddlemarchMudCompany', 'muddlemarch'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Mudskipper', 'mudskipper'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Muscleheart', 'muscleheart'),
|
|
|
|
cls('MushroomGo', 'mushroomgo'),
|
|
|
|
cls('MutantElf', 'mutantelf'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Mutigenx', 'mutigenx'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MVPL', 'mvpl'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('MyForgottenPast', 'myforgottenpast'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('MyGirlfriendTheSecretAgent', 'mygfthesecagent'),
|
|
|
|
cls('MyLifeWithoutAJetpack', 'nojetpack'),
|
|
|
|
cls('MyLittlePonyFriendshipIsBetrayal', 'mlp-fib'),
|
|
|
|
cls('MysteriousManOfSkull', 'mysteriousmanofskull'),
|
|
|
|
cls('MyTVIsEvil', 'mytvisevil'),
|
|
|
|
cls('NA', 'noche'),
|
|
|
|
cls('NamcoWars', 'namcowars'),
|
|
|
|
cls('NarutoJutsuAndJinchuriki', 'jutsuandjinchuriki'),
|
|
|
|
cls('NatureDEEP', 'naturedeep'),
|
|
|
|
cls('Necreshaw', 'nartopia'),
|
|
|
|
cls('Neighbors', 'neighborscomic'),
|
|
|
|
cls('NeverMindTheGap', 'nmg'),
|
|
|
|
cls('Newheimburg', 'newheimburg'),
|
|
|
|
cls('NEXGEN', 'nexgentheseries'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('NightmareNauts', 'nightmarenauts'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('NightshadeTheMerryWidow', 'lorddarke'),
|
|
|
|
cls('NinthLife', 'ninthlife'),
|
|
|
|
cls('Nocturne21', 'nocturne21'),
|
|
|
|
cls('NoFuture', 'nofuturevit'),
|
|
|
|
cls('NoKeys', 'nokeys'),
|
|
|
|
cls('Noprrkele', 'noprrkele'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('NothingMen', 'nothing-men'),
|
|
|
|
cls('NoTitleRequired', 'ntr'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('NotSinceYou', 'notsinceyou'),
|
|
|
|
cls('NyxInTheOverworld', 'nyx'),
|
|
|
|
cls('OceanLabyrinth', 'oceanlabyrinth'),
|
|
|
|
cls('Oeight', 'oeight'),
|
2019-09-11 05:26:55 +00:00
|
|
|
cls('OffCentaured', 'offcentaured'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('OfficeLogic', 'office-logic'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('OffSeason', 'offseasoncomic'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('OffWorldTheCrease', 'thecrease'),
|
|
|
|
cls('OldFiyoraNya', 'retrofiyora'),
|
|
|
|
cls('OldHumanCookies', 'oldhumancookies'),
|
|
|
|
cls('OmegaChronicles', 'omegachronicles', 'es'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('OnceStung', 'oncestung'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('OnePageComicCollection', 'onepagecomiccollection'),
|
|
|
|
cls('OnePieceGrandLine3Point5', 'grandline3point5'),
|
|
|
|
cls('OneSided', 'one-sided'),
|
|
|
|
cls('OrbFragmentSlim', 'orbfragment'),
|
|
|
|
cls('OrganizedMess', 'organizedmess'),
|
|
|
|
cls('Otherworldly', 'otherworldly-comics'),
|
|
|
|
cls('OutFerASmoke', 'outferasmoke'),
|
|
|
|
cls('Outletting', 'outletting'),
|
|
|
|
cls('OutsideIn', 'outside-in'),
|
|
|
|
cls('Palindrome', 'palindrome'),
|
|
|
|
cls('PANAPANSTRAKOVI', 'strakovi'),
|
|
|
|
cls('PaperStreamerAtDefCon5', 'paperstreamer'),
|
|
|
|
cls('ParaFrenic', 'parafrenic'),
|
|
|
|
cls('ParasiteGalaxy', 'parasitegalaxy'),
|
|
|
|
cls('Parisel313', 'parisel313'),
|
|
|
|
cls('PARKER', 'parker'),
|
|
|
|
cls('Parmeshen', 'parmeshen'),
|
|
|
|
cls('ParoxysmTemporal', 'pt'),
|
|
|
|
cls('PateEmpire', 'pateempire'),
|
|
|
|
cls('PCMS20', 'pcms'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('PeeInTheMorningREBOOTED', 'holy-hecking-balls-rebooted', 'pt'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('PeepsAndPerks', 'peepsnperks'),
|
|
|
|
cls('Pegwarmers', 'pegwarmers'),
|
|
|
|
cls('PenguinCapers', 'penguin-capers'),
|
|
|
|
cls('PerceivablyHuman', 'perceivablyhuman'),
|
|
|
|
cls('PersonaForTheWin', 'personaftw'),
|
|
|
|
cls('Perspectives', 'perspectives'),
|
|
|
|
cls('PhantomsTrail', 'phantomstrail'),
|
|
|
|
cls('Phoenix', 'phoenix'),
|
|
|
|
cls('Pilgrim', 'pilgrimsprogress'),
|
2017-02-12 18:50:51 +00:00
|
|
|
cls('PilgrimEnEspanol', 'pilgrimenespanol', 'es'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('PITCHBLACK', 'pitchblack'),
|
|
|
|
cls('PlanetChaser', 'planetchaser'),
|
|
|
|
cls('PlasticBulletsMayhemUnloaded', 'plasticbulletsmayhemunloaded'),
|
|
|
|
cls('Poharex', 'poharex'),
|
|
|
|
cls('PokemonWarpers', 'pokemonwarpers'),
|
|
|
|
cls('PokmonOurStory', 'pokemonos'),
|
|
|
|
cls('PokmonShadowStories', 'shadowstories'),
|
|
|
|
cls('PoldaAPolda', 'poldove'),
|
|
|
|
cls('PopCulturesKids', 'pop-cultures-kids'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Powertrip', 'powertrip'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('POWRightInTheNostalgia', 'powrightinthenostalgia'),
|
|
|
|
cls('PrimalWarsAftermath', 'primalwars'),
|
|
|
|
cls('PrinceOfCats', 'princeofcats'),
|
|
|
|
cls('ProfessorAstonishing', 'professorastonishing'),
|
2019-07-03 05:34:51 +00:00
|
|
|
cls('ProfessorAmazingAndTheIncredibleGoldenFox', 'paigf'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ProjectArc', 'projectarc'),
|
|
|
|
cls('ProjectGTH', 'projectgth'),
|
|
|
|
cls('ProjectJikoku', 'projectjikoku'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ProjectSternenlicht', 'projectsternenlicht'),
|
|
|
|
cls('PromiseList', 'promiselist'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ProportionalExcitability', 'proportionalexcitability'),
|
|
|
|
cls('Prosopopoeia', 'prosopopoeia'),
|
|
|
|
cls('Pulse', 'pulse'),
|
|
|
|
cls('PureHavoc', 'pure-havoc'),
|
|
|
|
cls('Queenie', 'queenie'),
|
|
|
|
cls('QuestCorporeal', 'questcorporeal'),
|
|
|
|
cls('RadioMustard', 'radiomustard'),
|
|
|
|
cls('Rain', 'rain'),
|
|
|
|
cls('RandomlyAssembled', 'randomlyassembled'),
|
|
|
|
cls('RandomThoughts', 'randomthoughts'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('RapturousArcane', 'rapturousarcane'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('RawLatex', 'rawlatex'),
|
|
|
|
cls('RaytoonsKids', 'raytoonskids'),
|
|
|
|
cls('ReadershipOfOne', 'readershipofone'),
|
|
|
|
cls('RebelYell', 'rebelyell'),
|
|
|
|
cls('RebuildOfGenericMangaShippuden', 'rebuildofgenericmanga'),
|
|
|
|
cls('RecklessComix', 'recklesscomix'),
|
2019-07-13 03:35:06 +00:00
|
|
|
cls('RedSpot', 'redspot'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('RegardingDandelions', 'regardingdandelions'),
|
|
|
|
cls('Remedy', 'remedy'),
|
|
|
|
cls('RememberBedlam', 'bedlam'),
|
|
|
|
cls('RequiemsGate', 'requiemsgate'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ReSetArt', 'resetfanarts'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ResidentWeirdo', 'residentweirdo'),
|
|
|
|
cls('ReturnOfWonderland', 'returnofwonderland'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Revive', 'revive'),
|
|
|
|
cls('RexAfterDark', 'rexafterdark'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('RexfordAvenue', 'rexfordavenue'),
|
2017-02-12 18:50:51 +00:00
|
|
|
# Ringers has a duplicate in ComicSherpa/Ringers
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('RockGardenComics', 'rockgardencomics'),
|
|
|
|
cls('RoguesOfClwydRhan', 'rocr'),
|
|
|
|
cls('RoleplayingPartyTales', 'rpt'),
|
|
|
|
cls('RoomOfMirrors', 'room-of-mirrors'),
|
|
|
|
cls('RootBeers', 'root-beers'),
|
|
|
|
cls('Rozak', 'rozak'),
|
|
|
|
cls('RPSLARPComic', 'rps'),
|
|
|
|
cls('RumfAdventures', 'rumfadventures'),
|
|
|
|
cls('RunningRiot', 'runningriot'),
|
|
|
|
cls('SailorMoonTheEnemyNextDoor', 'sailormoontheenemynextdoor'),
|
2019-07-13 03:16:35 +00:00
|
|
|
cls('Saluna', 'saluna'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('SanctaTerra', 'sanctaterra'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('SanityProtectionFactor', 'spf1337'),
|
|
|
|
cls('SaraAndKleeyo', 'sarakleeyo'),
|
|
|
|
cls('SaveMeGebus', 'savemegebus'),
|
|
|
|
cls('SawbladersBlackNuzlockeChallenge', 'sawbladersblacknuzlocke'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ScottieRoad', 'scottieroad'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Scoundrels', 'scoundrels'),
|
|
|
|
cls('ScrubDiving', 'scrubdiving'),
|
2020-01-05 22:03:43 +00:00
|
|
|
cls('Scuvener', 'scuvener'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('SEAAOMSagaArchive', 'seaaom'),
|
|
|
|
cls('SECRETLOVE', 'secretlove'),
|
|
|
|
cls('SecretSanta2013', 'secretsanta2013'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('SeeYourFeels', 'seeyourfeels'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('SenatorSurprise', 'senatorsurprise'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('Sentiments', 'sentiments'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('SerengettiDreams', 'serengetti'),
|
|
|
|
cls('SeriousEngineering', 'seriousengineering'),
|
|
|
|
cls('SerpamiaFlare', 'serpamiaflare'),
|
|
|
|
cls('SerpentsOfOld', 'serpentsofold'),
|
|
|
|
cls('SerpentsOfOldFanArt', 'soofans'),
|
|
|
|
cls('Shades', 'shades'),
|
|
|
|
cls('ShadesOfGray', 'fuzzylittleninjas'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ShaiAway', 'shaiaway'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ShakingOffSorcery', 'shakingoffsorcery'),
|
|
|
|
cls('ShakingOffSorceryPL', 'shakingoffsorcery-pl'),
|
|
|
|
cls('ShamanQuest', 'shamanquest'),
|
|
|
|
cls('ShatteredSkies', 'shatteredskies'),
|
|
|
|
cls('Shenanigans', 's'),
|
|
|
|
cls('ShenaniganSquares', 'ss-comic'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ShikuTheFirstAndFinal', 'shiku'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ShiroAndKuro', 'shiroandkuro'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ShutUpDiarybyBarbaraHolm', 'shutupdiary'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Sigh', 'sigh'),
|
|
|
|
cls('Silver', 'sil-ver'),
|
|
|
|
cls('SilverNights', 'silvernights'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('SixteenCandlesHuntersAgency', 'sixteencandles'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Skeeter', 'herecomesskeeter'),
|
|
|
|
cls('Sketchy', 'sketchy'),
|
2021-12-30 03:24:39 +00:00
|
|
|
cls('Skylords', 'skylords'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('SlugMan', 'slug-man'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('SmallTownValues', 'smalltownvalues'),
|
|
|
|
cls('SmitheeZombieHunter', 'smitheezombiehunter'),
|
|
|
|
cls('SneakersUForce', 'sneakers'),
|
2019-07-18 08:32:33 +00:00
|
|
|
cls('Snowfall', 'snowfall'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('SoFunnyIForgotToLaugh', 'sofunnyiforgottolaugh'),
|
|
|
|
cls('SonichuREDone', 'sonichuredone'),
|
|
|
|
cls('SonichuREDoneJ', 'sonichuredonejapanese', 'ja'),
|
|
|
|
cls('Soulsworn', 'soulsworn'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('SpacedOutTheBeginning', 'spacedoutthebeginning'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('SpaceFarmer', 'spacefarmer'),
|
|
|
|
cls('SpacePiratesOfTheBlackQuarter', 'spacepirates'),
|
|
|
|
cls('SpacePulp', 'spacepulp'),
|
|
|
|
cls('Spades', 'spades'),
|
|
|
|
cls('SpicyDesu', 'desu'),
|
|
|
|
cls('SpiderManShadowsOfNight', 'shadowsofnight'),
|
|
|
|
cls('SpiritSquireTheQuestForTheUltimateKnight', 'spiritsquire-1'),
|
|
|
|
cls('Spooky', 'spooky'),
|
|
|
|
cls('SPOON', 'spooncomic'),
|
|
|
|
cls('StampedeJessicasStory', 'stampedegirl'),
|
|
|
|
cls('Starcrossed', 'starcrossed'),
|
|
|
|
cls('StarPunchGirl', 'starpunchgirl'),
|
|
|
|
cls('STARWARSXWingAlliance', 'x-wingalliance'),
|
|
|
|
cls('STASonicTheAdventure', 'sta'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('StereotyPixs', 'stereotypixs'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('StevenAndTheCrystalGMs', 'crystalgms'),
|
|
|
|
cls('StickLife', 'sticklife'),
|
|
|
|
cls('StickMisadventures', 'stick-misadventures'),
|
|
|
|
cls('StinkomanFatChickenQuest', 'stinkoman'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('StonedHeroes', 'stonedheroes'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('StrangeAttractors', 'strangeattractors'),
|
|
|
|
cls('Streamo', 'streamo'),
|
|
|
|
cls('SundaySmash', 'sundaysmash'),
|
|
|
|
cls('Sunray', 'sunray'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('SuperGalaxyKnightsDeluxeR', 'sgkdr'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('SuperheroTales', 'superherobeingsuper'),
|
|
|
|
cls('SuperShashi', 'supershashi'),
|
|
|
|
cls('Supervillainous', 'supervillainous'),
|
|
|
|
cls('SurrealScience', 'surrealscience'),
|
2019-07-13 03:36:32 +00:00
|
|
|
cls('Swashbuckled', 'swashbuckled'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Swazzyknocks', 'swazzyknocks'),
|
|
|
|
cls('Synapticisms', 'synapticisms'),
|
|
|
|
cls('TalesFromRiota', 'ganold'),
|
|
|
|
cls('TalesOfBrickland', 'brickland'),
|
|
|
|
cls('TalesOfMiddar', 'talesofmiddar'),
|
|
|
|
cls('TalesOfSpoons', 'talesofspoons'),
|
|
|
|
cls('TalesOfTheGalli', 'totg-mirror'),
|
|
|
|
cls('TamTeamAdventures', 'tamteam'),
|
|
|
|
cls('TangledMessTheGirlyNerdyTerriblyStrangeJournalComi', 'tangledmess'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('TangledRiver', 'tangled-river'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TBA', 'tba'),
|
|
|
|
cls('TBAold', 'tba-old'),
|
|
|
|
cls('TerwilligersCafe', 'terwilligers'),
|
|
|
|
cls('TheAccidentalSpaceSpy', 'spacespy'),
|
|
|
|
cls('TheAccidentalWitch', 'theaccidentalwitch'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheAdventuresOfAquilaAndTeren', 'aquilateren'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheAdventuresOfBaldy', 'adventuresofbaldy'),
|
|
|
|
cls('TheAdventuresOfBidoof', 'bidoof'),
|
|
|
|
cls('TheAdventuresOfCarrotKnight', 'carrotknight'),
|
|
|
|
cls('TheAdventuresOfGrumpyBearAndMrGoose', 'grumpyandgoose'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheAdventuresOfMechaSmiles', 'mechasmiles'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheAdventuresOfSherilynAndEmma', 'taosae'),
|
|
|
|
cls('TheAdventuresOfTheLadySkylark', 'ladyskylark'),
|
|
|
|
cls('TheBarrowHill', 'thebarrowhill'),
|
|
|
|
cls('TheBellInTheOcean', 'bellintheocean'),
|
|
|
|
cls('TheBend', 'thebend'),
|
|
|
|
cls('TheBigFoldy', 'bigfoldy'),
|
|
|
|
cls('THEBIGSCIFIMISHMASH', 'thebigsci-fimish-mash'),
|
|
|
|
cls('TheBlackPrincess', 'theblackprincess'),
|
|
|
|
cls('THEBOOKOFLIES', 'bookofliescomic'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheBookOfThree', 'thebookofthree'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('TheChanterelleAndMayLife', 'chanterelleandmay'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheChroniclesOfBuckyONeill', 'buckyoneill'),
|
|
|
|
cls('TheChroniclesOfDrew', 'thechroniclesofdrew'),
|
|
|
|
cls('TheChroniclesOfLillian', 'chroniclesoflillian'),
|
|
|
|
cls('TheChroniclesOfLoth', 'chroniclesofloth'),
|
|
|
|
cls('TheCompozerz', 'compozerz'),
|
|
|
|
cls('TheContinentals', 'continentals'),
|
|
|
|
cls('TheCrepusculars', 'crepusculars'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('TheCrumpletonExperiments', 'thecrumpletonexperiments'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheDailyDoodle', 'tdd'),
|
|
|
|
cls('TheDevilsHorn', 'thedevilshorn'),
|
|
|
|
cls('TheDragonFistsOfSmortySmythe', 'thedragonfistsofsmortysmythe'),
|
|
|
|
cls('TheDrongos', 'thedrongos'),
|
|
|
|
cls('TheEpicEpic', 'theepicepic'),
|
|
|
|
cls('TheFaithful', 'thefaithful'),
|
|
|
|
cls('TheFeloranChronicles', 'felora'),
|
|
|
|
cls('TheFunnyZone', 'thefunnyzone'),
|
|
|
|
cls('TheGalleryOfFreaks', 'galleryoffreaks'),
|
|
|
|
cls('TheGarage', 'thegarage'),
|
|
|
|
cls('TheGarden', 'thegarden'),
|
|
|
|
cls('TheGingerbreadManChronicles', 'gingerbreadmanchronicles'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheGrazingMongrel', 'grazingmongrel'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheGuardian', 'theguardian'),
|
|
|
|
cls('TheHarriopulate', 'theharriopulate'),
|
|
|
|
cls('TheHighestBet', 'thehighestbet'),
|
|
|
|
cls('TheHighestBetITA', 'thehighestbet-ita', 'it'),
|
|
|
|
cls('TheHobbit', 'hobbit'),
|
|
|
|
cls('TheHolidayDoctor', 'holidaydoctor'),
|
|
|
|
cls('TheHorrifyingExperimentsOfDrPleasant', 'thehorrifyingexperimentsofdrpleasant'),
|
|
|
|
cls('TheHub', 'cbbrthehub'),
|
|
|
|
cls('TheHubBook', 'thehubbook'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheHumanBattery', 'thehumanbattery'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheHundredsUprising', 'thehundredsuprising'),
|
|
|
|
cls('TheILL', 'theill'),
|
|
|
|
cls('TheIntrovertManifesto', 'introvert'),
|
|
|
|
cls('TheJabbercrow', 'jabbercrow'),
|
|
|
|
cls('TheKAMics', 'thekamics'),
|
|
|
|
cls('TheKeepOnTheBorderlands', 'thekeepontheborderlands'),
|
|
|
|
cls('TheLamp', 'thelamp'),
|
|
|
|
cls('TheLastHope', 'tlhcomic'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('TheLawOfPurple', 'lawofpurple'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheLeagueOfExtraordinaryRoleplayers', 'lxgrpg'),
|
|
|
|
cls('TheLeapfrogTeam', 'leapfrogteam'),
|
|
|
|
cls('TheLegendaryPixelCrew', 'thelegendarypixelcrew'),
|
|
|
|
cls('TheLegendOfLink', 'legendoflink'),
|
|
|
|
cls('TheLozoyas', 'thelozoyas'),
|
2021-08-14 15:17:38 +00:00
|
|
|
cls('TheMansionofE', 'mansionofe'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheMates', 'themates'),
|
|
|
|
cls('TheMatesPortugus', 'matespt', 'pt'),
|
|
|
|
cls('TheMeaningOfLife', 'themeaningoflife'),
|
|
|
|
cls('TheMightyBlue', 'themightyblue'),
|
|
|
|
cls('TheMightyMeteorite', 'mightymeteorite'),
|
|
|
|
cls('TheMisadventuresOfDexterTheAlien', 'dexterthealien'),
|
|
|
|
cls('TheMisadventuresOfTheTrailerParkTrio', 'tmaottpt'),
|
|
|
|
cls('TheMitchellEffect', 'themitchelleffect'),
|
|
|
|
cls('TheMoonValley', 'moonvalley'),
|
|
|
|
cls('TheNew30DaysOfCharacters', '30l30characters'),
|
|
|
|
cls('TheNewAdventuresOfFelicity', 'felicity'),
|
|
|
|
cls('TheNineteenthCenturyIndustrialist', 'thebaron'),
|
|
|
|
cls('TheNonesuchTales', 'thenonesuchtales'),
|
|
|
|
cls('TheORIGINALShonenPunk', 'shonenpunk'),
|
|
|
|
cls('TheOtherGreyMeat', 'togm'),
|
|
|
|
cls('TheOverture', 'theoverture'),
|
|
|
|
cls('ThePresident', 'president'),
|
|
|
|
cls('TheQuantumKid', 'thequantumkid'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheQuestForCoitus', 'acomicstudios'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheRathNexus', 'rath'),
|
2020-08-01 05:01:23 +00:00
|
|
|
cls('TheRealmOfKaerwyn', 'kaerwyn'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheRebels', 'rebels'),
|
|
|
|
cls('TheRedeemers', 'theredeemers'),
|
|
|
|
cls('TheRestlessDead', 'therestlessdead'),
|
|
|
|
cls('TheRidiculousPushyReeder', 'pushy'),
|
|
|
|
cls('TheRoseKiller', 'therosekiller'),
|
|
|
|
cls('TheRubyNation', 'rubynation'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheScienceOfCookies', 'cookiescience', 'fr'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheSecondCrimeanWar', 'secondcrimeanwar'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheSettlers', 'thesettlers'),
|
|
|
|
cls('TheSketchyAdventuresOfKyoAndMatt', 'kyoandmatt'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheSkybox', 'skybox'),
|
|
|
|
cls('TheSpecialCASE', 'thespecialcase'),
|
|
|
|
cls('THESTORMRUNNERS', 'thestormrunners'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheStoryOfBobChapter1Part1', 'thebobstory'),
|
|
|
|
cls('TheStoryOfSaliria', 'saliria'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheSupernaturalsEpisode4', 'thesupernaturals4'),
|
|
|
|
cls('TheSurface', 'thesurface'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('TheTempleAtFiftyFathoms', 'the-temple-at-fifty-fathoms'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheTenTailorsOfWestonCourt', 'tentailors'),
|
|
|
|
cls('TheTrialsOfMannack', 'mannack'),
|
|
|
|
cls('TheUnclean', 'theunclean'),
|
|
|
|
cls('TheWayOfTheMetagamer', 'wayofthemetagamer'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TheWellkeeper', 'thewellkeeper'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TheWesternGang', 'thewesterngang'),
|
|
|
|
cls('TheWhizzkids', 'whizzkids'),
|
|
|
|
cls('TheWolfAtWestonCourt', 'thewolfatwestoncourt'),
|
|
|
|
cls('TheWorldJumper', 'theworldjumper'),
|
|
|
|
cls('TheWorldOfUh', 'theworldofuh'),
|
|
|
|
cls('TheWrongTree', 'thewrongtree'),
|
|
|
|
cls('TheWWord', 'thewword'),
|
|
|
|
cls('ThisIsNormal', 'thisisnormal'),
|
|
|
|
cls('ThisIsTheLife', 'thisisthelifecomic'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ThomasAndZacharyArchives', 'thomasandzachary'),
|
|
|
|
cls('Thornwar', 'thornwar'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ThoseUnknowableTheShadowsOverInnsmouth', 'tsoi'),
|
2019-07-13 03:15:47 +00:00
|
|
|
cls('Threan', 'threan'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ThreeFreeFrikis', 'tff', 'es'),
|
|
|
|
cls('TickTock', 'tick-tock'),
|
|
|
|
cls('TigerWrestling', 'anybodythere'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Timezone', 'timezone'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Tinytown', 'tinytown'),
|
|
|
|
cls('TM47', 'tm47'),
|
|
|
|
cls('TohvelinTuhinoita', 'tuhinaloota'),
|
|
|
|
cls('TOLVA', 'tolva'),
|
|
|
|
cls('TombOfTheKing', 'tomboftheking'),
|
|
|
|
cls('TomorrowsGirls', 'tomorrowsgirls'),
|
|
|
|
cls('ToneOutComics', 'toneout'),
|
|
|
|
cls('TonyComics', 'tonycomics'),
|
|
|
|
cls('Toontown', 'toontowncomics'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TotalChaos', 'totalchaos'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TotallyKaimera', 'totallykaimera'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TotallyKaimeraBackgroundStory2', 'totallykaimerabackgroundstory2'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TotallyKaimeraPart2', 'totallykaimerapart2'),
|
|
|
|
cls('TotallyKaimeraPart3', 'totallykaimerapart3'),
|
2019-07-06 05:35:28 +00:00
|
|
|
cls('TracyAndTristan', 'tandt'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TradScribbles', 'tradscribbles'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TrAgEdY', 'tragedy'),
|
|
|
|
cls('TransdimensionalBrainChip', 'brainchip'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TransformersNexus', 'tfnexus'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TransientPulseNotIntentionallyObsessive', 'niotp'),
|
|
|
|
cls('Transmission', 'transmission'),
|
|
|
|
cls('TransUmanSUbterran', 'sub-terran'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('Traveler', 'clioyorokobi'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TreeScratches', 'treescratches'),
|
|
|
|
cls('Treeville', 'treeville'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TriforceOfPower', 'triforceofpower'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Trigonometry', 'trigonometry'),
|
|
|
|
cls('Trinity', 'trinity'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('TrixieSlaughteraxeForPresident', 'trixie'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('TrollGirl', 'trollgirl'),
|
|
|
|
cls('TrueFist', 'true-fist'),
|
|
|
|
cls('TruFax', 'trufax'),
|
|
|
|
cls('TSAndTJ', 'tsandtj'),
|
|
|
|
cls('TsuyuSociety', 'tsuyusociety'),
|
|
|
|
cls('TurnerAndHercules', 'turnerandhercules'),
|
|
|
|
cls('TussenKatersEnSpraakwater', 'tussenkatersenspraakwater'),
|
|
|
|
cls('TvQuest', 'tvquest'),
|
|
|
|
cls('TwilightTrust', 'twilighttrust'),
|
|
|
|
cls('TwinsAgony', 'twinsagony'),
|
|
|
|
cls('TwistedPeel', 'twistedpeel'),
|
|
|
|
cls('TwoFaced', 'twofaced'),
|
|
|
|
cls('TwoHearts', 'twohearts'),
|
|
|
|
cls('TWTWE', 'twtwe'),
|
|
|
|
cls('TypicalStrange', 'typicalstrange'),
|
|
|
|
cls('UglyBookCovers', 'uglybookcovers'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('UltimateSwordsSummoner', 'uss'),
|
|
|
|
cls('UltraViresEnglish', 'ultravires-eng'),
|
|
|
|
cls('UltraViresesky', 'ultravires'),
|
2020-08-30 05:26:04 +00:00
|
|
|
cls('Unconventional', 'unconventional', adult=True),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Underverse', 'underverse'),
|
|
|
|
cls('UnfortunateCircumstances', 'unfortunatecircumstances'),
|
|
|
|
cls('UniversityOfSpeed', 'u-speed'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('UnknownLands', 'unknownlands'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('UNPROFESSIONAL', 'unprofessional'),
|
|
|
|
cls('Unreliable', 'unreliable'),
|
|
|
|
cls('V4', 'v4'),
|
|
|
|
cls('ValeOfDemons', 'valeofdemons'),
|
|
|
|
cls('VampireBites', 'vampirebites'),
|
|
|
|
cls('VampireCatgirlPart2', 'vampirecatgirl2'),
|
|
|
|
cls('VeldaGirlDetective', 'veldagirldetective'),
|
|
|
|
cls('Verboten', 'verboten'),
|
2021-12-25 01:00:18 +00:00
|
|
|
cls('VHV', 'vhv'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Victory', 'victoryadventures'),
|
2020-02-26 20:24:54 +00:00
|
|
|
cls('ViewHub', 'viewhub'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ViolentBlue', 'violentblue'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Virtrena', 'virtrena'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('VisualDiaryOfMyLife', 'visualdiary'),
|
|
|
|
cls('VOE', 'voe'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Voidchild', 'voidchild'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('WaitWhat', 'waitwhatcomic'),
|
|
|
|
cls('WARG', 'warg'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Wargyrl', 'wargyrl'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('WarriorTwentySeven', 'warrior27'),
|
|
|
|
cls('WastedAway', 'wastedaway'),
|
|
|
|
cls('WastedPotential', 'wastedpotential'),
|
|
|
|
cls('WastelandersAnonymous', 'wastelanders'),
|
|
|
|
cls('WasteOfTime', 'wasteoftime'),
|
|
|
|
cls('WayTooOffensive', 'waytooffensive'),
|
|
|
|
cls('WeAreTheLosers', 'thelosers'),
|
|
|
|
cls('WeeabooIsland', 'weeabooisland'),
|
|
|
|
cls('WestTreeAcademyOfHeroes', 'westtree'),
|
|
|
|
cls('WhatIDontEven', 'idonteven'),
|
|
|
|
cls('WHATSERP', 'whatserp'),
|
|
|
|
cls('WhiskeyAndMelancholy', 'whiskeyandmelancholy'),
|
|
|
|
cls('WhiteOut', 'whiteout'),
|
|
|
|
cls('WhiteSpace', 'whitespace'),
|
|
|
|
cls('WhoseLineIsItAnyhoo', 'whoseline'),
|
|
|
|
cls('WilfordTheWalrus', 'wilfordthewalrus'),
|
|
|
|
cls('Willem', 'willem'),
|
|
|
|
cls('WindRiders', 'windriders'),
|
|
|
|
cls('WinstonsWorld', 'winstonsworld'),
|
|
|
|
cls('WitchesTeaParty', 'witchesteaparty'),
|
|
|
|
cls('WithoutMoonlight', 'withoutmoonlight'),
|
|
|
|
cls('WonderTeam', 'wonderteam'),
|
|
|
|
cls('WoodsForTheTrees', 'woodsforthetrees'),
|
|
|
|
cls('WoodsOfEvil', 'woodsofevil'),
|
|
|
|
cls('Woohooligan', 'woohooligan'),
|
|
|
|
cls('WordsToLiveBy', 'wordstoliveby'),
|
|
|
|
cls('WORMCURSE', 'wormcurse'),
|
|
|
|
cls('WrightAsRayne', 'wrightasrayne'),
|
|
|
|
cls('WrongNumber', 'wrongnumber'),
|
|
|
|
cls('WYIHN', 'wyihn'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('Xibalba', 'xibalba'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('Xit', 'x-it'),
|
|
|
|
cls('YesterdayBound', 'yesterdaybound'),
|
|
|
|
cls('YouAreNow', 'yan'),
|
|
|
|
cls('YOURCHOICE', 'yourchoice'),
|
2016-10-01 00:48:44 +00:00
|
|
|
cls('ZackDragonbladeAndTheExcalites', 'zackdragonblade'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ZebraGirl', 'zebragirl'),
|
|
|
|
cls('Zelfia', 'zelfia'),
|
|
|
|
cls('ZeroEffortFantasy', 'zeroeffort'),
|
2016-10-30 09:57:50 +00:00
|
|
|
cls('ZombieZoup', 'zombiezoup'),
|
2016-05-22 21:31:53 +00:00
|
|
|
cls('ZwergElf', 'zwergelf', 'de'),
|
|
|
|
# END AUTOUPDATE
|
|
|
|
)
|