Merge lp:~stuart-lumgair/dosage/stuarts_plugins into lp:~dosage-dev/dosage/old

Proposed by Stuart I. Lumgair
Status: Merged
Approved by: Tristan Seligmann
Approved revision: not available
Merged at revision: not available
Proposed branch: lp:~stuart-lumgair/dosage/stuarts_plugins
Merge into: lp:~dosage-dev/dosage/old
Diff against target: 2510 lines (+2319/-98)
8 files modified
dosage/plugins/a.py (+9/-0)
dosage/plugins/c.py (+15/-0)
dosage/plugins/d.py (+1/-96)
dosage/plugins/drunkduck.py (+2272/-0)
dosage/plugins/k.py (+7/-0)
dosage/plugins/m.py (+7/-0)
dosage/plugins/p.py (+7/-0)
dosage/plugins/z.py (+1/-2)
To merge this branch: bzr merge lp:~stuart-lumgair/dosage/stuarts_plugins
Reviewer Review Type Date Requested Status
Tristan Seligmann Approve
Review via email: mp+17508@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Stuart I. Lumgair (stuart-lumgair) wrote :

adds fully tested drunkduck.py and a few individual scrapers

Revision history for this message
Tristan Seligmann (mithrandi) wrote :

There are a bunch of pyflakes warnings in this branch (although actually the ones in dosage/plugins/z.py are my fault). Could you fix these?

dosage/plugins/d.py:3: 'queryNamer' imported but unused
dosage/plugins/drunkduck.py:4: 'getQueryParams' imported but unused
dosage/plugins/z.py:1: 'urllib' imported but unused
dosage/plugins/z.py:4: 'indirectStarter' imported but unused
tools/comicgenesis_base_list_scraper.0.0.13.py:153: local variable 'templst' is assigned to but never used
tools/dd_base_tester.0.0.1.py:5: 'urllib' imported but unused
tools/dd_base_tester.0.0.1.py:6: 'string' imported but unused
tools/drunkduck_base_list_scraper.0.0.2.py:6: 'string' imported but unused
tools/drunkduck_base_list_scraper.0.0.2.py:87: undefined name 'pages'
tools/drunkduck_base_list_scraper.0.0.2.py:89: undefined name 'pages'
tools/drunkduck_base_list_scraper.0.0.3.py:6: 'string' imported but unused
tools/drunkduck_base_list_scraper.0.0.3.py:106: undefined name 'pages'
tools/drunkduck_base_list_scraper.0.0.3.py:108: undefined name 'pages'
tools/remove_comments.py:7: 'os' imported but unused
tools/remove_comments.py:8: 'sys' imported but unused
tools/remove_comments.py:9: 'string' imported but unused
tools/remove_comments.py:16: undefined name 'true'

They're mostly unused imports or variables, but it looks like there may be some buggy code as well (see all the "undefined name" warnings).

Other than that, this looks great!

review: Needs Fixing
Revision history for this message
Stuart I. Lumgair (stuart-lumgair) wrote :

> There are a bunch of pyflakes warnings in this branch (although actually the
> ones in dosage/plugins/z.py are my fault). Could you fix these?

 fixes made in 619, my branch

Revision history for this message
Tristan Seligmann (mithrandi) :
review: Approve
609. By Tristan Seligmann

Merge lp:~stuart-lumgair/dosage/stuarts_plugins.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'dosage/plugins/a.py'
2--- dosage/plugins/a.py 2010-01-15 06:17:39 +0000
3+++ dosage/plugins/a.py 2010-01-17 19:41:09 +0000
4@@ -77,6 +77,15 @@
5
6
7
8+class Alice(BasicScraper):
9+ latestUrl = 'http://alice.alicecomics.com/'
10+ imageUrl = 'http://alice.alicecomics.com/%s'
11+ imageSearch = compile(r'(/comics/.+?)"')
12+ prevSearch = compile(r' .+"?com(/.+?)" rel="prev')
13+ help = 'Index format: non'
14+
15+
16+
17 class AlienLovesPredator(BasicScraper):
18 imageUrl = 'http://alienlovespredator.com/%s'
19 imageSearch = compile(r'<img src="(.+?)"[^>]+>(<center>\n|\n|</center>\n)<div style="height: 2px;">&nbsp;</div>', MULTILINE)
20
21=== modified file 'dosage/plugins/c.py'
22--- dosage/plugins/c.py 2010-01-15 05:16:07 +0000
23+++ dosage/plugins/c.py 2010-01-17 19:41:09 +0000
24@@ -85,6 +85,15 @@
25
26
27
28+class CigarroAndCerveja(BasicScraper):
29+ latestUrl = 'http://www.cigarro.ca/'
30+ imageUrl = 'http://www.cigarro.ca/?p=%s'
31+ imageSearch = compile(r"(/comics/.+?)'")
32+ prevSearch = compile(r'(/\?p=.+?)">&laq')
33+ help = 'Index format: non'
34+
35+
36+
37 class CombustibleOrange(BasicScraper):
38 latestUrl = 'http://www.combustibleorange.com/'
39 imageUrl = 'http://www.combustibleorange.com/index.php?current=%s'
40@@ -163,6 +172,12 @@
41 name = 'CtrlAltDel/Sillies'
42 latestUrl = 'http://www.cad-comic.com/sillies/'
43
44+class Curvy(BasicScraper):
45+ latestUrl = 'http://www.c.urvy.org/'
46+ imageUrl = 'http://www.c.urvy.org/?date=%s'
47+ imageSearch = compile(r'(/c/.+?)"')
48+ prevSearch = compile(r'(/\?date=.+?)">&lt;&lt; Previous page')
49+ help = 'Index format: yyyymmdd'
50
51
52 def cloneManga(name, shortName, lastStrip=None):
53
54=== modified file 'dosage/plugins/d.py'
55--- dosage/plugins/d.py 2010-01-15 06:17:39 +0000
56+++ dosage/plugins/d.py 2010-01-17 19:41:09 +0000
57@@ -1,6 +1,6 @@
58 from re import compile, IGNORECASE, MULTILINE
59
60-from dosage.helpers import BasicScraper, bounceStarter, queryNamer, indirectStarter
61+from dosage.helpers import BasicScraper, bounceStarter, indirectStarter
62 from dosage.util import getQueryParams
63
64
65@@ -131,101 +131,6 @@
66 return getQueryParams(imageUrl)['save-as'][0].rsplit('.', 1)[0]
67
68
69-def drunkDuck(shortName):
70- linkSearch = r"<a href='(/[^/]*/index\.php\?p=\d+)' title='The %s page!'>"
71- return BasicScraper.make(
72- name='DrunkDuck/' + shortName,
73- imageUrl='index.php?p=%s' % (shortName,),
74- imageSearch=compile(r"<img src='(http://[a-z0-9]*.drunkduck.com/[^/]*/pages/[^'/]+)'>", IGNORECASE),
75- prevSearch=compile(linkSearch % ('previous',), IGNORECASE),
76- help='Index format: n (unpadded)',
77- namer=queryNamer('p', usePageUrl=True),
78- starter=bounceStarter('http://www.drunkduck.com/%s/' % (shortName,), compile(linkSearch % ('next',), IGNORECASE)))
79-
80-duckComics = [
81- '00_Wings',
82- '20_Galaxies',
83- '3rd_Party_Fantasy',
84- 'AACMAW',
85- 'ABNORMAL',
86- 'Al_De_Baran',
87- 'Alpha_Glitch',
88- 'Anti_Glory',
89- 'Assassin_Assassin',
90- 'Beyond_Help',
91- 'Blood_of_the_Dragon',
92- 'Bowsers_Plan_B',
93- 'bread',
94- 'Brutus',
95- 'CCC_Presents',
96- 'ChaoScape',
97- 'Charby_the_Vampirate',
98- 'College_Zoo',
99- 'Consoles',
100- 'Crazy_Duck',
101- 'Culture_Shock',
102- 'Dogs_Eye_View',
103- 'Dribble_For_Kids',
104- 'Elijah_and_Azuu',
105- 'Elijah_and_Azuu_Classic',
106- 'fallaparts_parts',
107- 'Frightmoore_University',
108- 'Fusion',
109- 'I_Cant_Draw',
110- 'Inner_Demons',
111- 'Insomnia',
112- 'Jet_and_Joe',
113- 'Kingdom_Hearts_Chain_Of_Oddness',
114- 'Kitschcore_Presents',
115- 'Kong_Comic',
116- 'Krud_E_Komix_Inc',
117- 'Laugh_It_Off',
118- 'Life_and_Death',
119- 'Lifes_A_Riot',
120- 'Locoma',
121- 'Lo_Rez',
122- 'Luciefer',
123- 'Mad_World',
124- 'Mahrs_Miscellaneous_Mishaps',
125- 'MegaMan_Theater',
126- 'Megaman__the_comic',
127- 'Mental_For_Rental',
128- 'MIKYAGU',
129- 'Mixed_Bag_Comics',
130- 'Mooks',
131- 'Nightmistress',
132- 'NPC',
133- 'Pinky_TA',
134- 'Psychic_Headache',
135- 'Puppetry',
136- 'Random_Thoughts',
137- 'Rogue_Agent_Axl',
138- 'schlock_horror',
139- 'Screwball_Islands',
140- 'Shiny_Things',
141- 'Slither_and_Friends',
142- 'SNAKES_ON_A_PLANE_THE_COMIC',
143- 'So_Fantastic_Pork_Show_9oCLOCK',
144- 'Songs_of_An_Angel',
145- 'Starving_Artists',
146- 'The_Gods_of_ArrKelaan',
147- 'The_Roach_Ranch',
148- 'The_Whovian_Observer',
149- 'This_Side_Up',
150- 'Tony_The_Hedgehog',
151- 'Too_Far',
152- 'trythesoup',
153- 'Vampire_Phantasm',
154- 'Villainy_Minor',
155- 'WeirdStar',
156- 'Wintergreen',
157- 'World_Domination',
158- ]
159-
160-for shortName in duckComics:
161- globals()[shortName] = drunkDuck(shortName)
162-
163-
164
165 class DorkTower(BasicScraper):
166 latestUrl = 'http://www.dorktower.com/'
167
168=== added file 'dosage/plugins/drunkduck.py'
169--- dosage/plugins/drunkduck.py 1970-01-01 00:00:00 +0000
170+++ dosage/plugins/drunkduck.py 2010-01-17 19:41:09 +0000
171@@ -0,0 +1,2272 @@
172+from re import compile, IGNORECASE
173+
174+from dosage.helpers import BasicScraper, bounceStarter, queryNamer
175+
176+
177+def drunkDuck(shortName):
178+ linkSearch = r"<a href='(/[^/]*/index\.php\?p=\d+)' title='The %s page!'>"
179+ return BasicScraper.make(
180+ name='DrunkDuck/' + shortName,
181+ imageUrl='index.php?p=%s' % (shortName,),
182+ imageSearch=compile(r"<img src='(http://[a-z0-9]*.drunkduck.com/[^/]*/pages/[^'/]+)'>", IGNORECASE),
183+ prevSearch=compile(linkSearch % ('previous',), IGNORECASE),
184+ help='Index format: n (unpadded)',
185+ namer=queryNamer('p', usePageUrl=True),
186+ starter=bounceStarter('http://www.drunkduck.com/%s/' % (shortName,), compile(linkSearch % ('next',), IGNORECASE)))
187+
188+duckComics = [
189+ '0_Opposites_attract_0',
190+ '0_eight',
191+ '101_Ways_to_Drive_a_Maren_Insane',
192+ '12_Men_Died_Making_This_Strip',
193+ '1337_Ninjas',
194+ '16_and_Up',
195+ '20_Galaxies',
196+ '25_Years',
197+ '2G_Pokemon',
198+ '2Masters',
199+ '2Masters_Prelouges',
200+ '2_Bitter_4_Words',
201+ '2nd_Shift',
202+ '2s_a_company',
203+ '3D_Glasses',
204+ '3RD_EARTH_issue_2',
205+ '3_guardian_Goddess',
206+ '3_stoires',
207+ '3rd_Party_Fantasy',
208+ '4_Humor',
209+ '8Bit_Adventure',
210+ 'AACMAW',
211+ 'AB_the_virus',
212+ 'AComicMadeOutOfBoredom',
213+ 'AD_1997',
214+ 'AFG_Part_1',
215+ 'AFG_Part_2',
216+ 'AGENCY',
217+ 'AHAB',
218+ 'AKA_Limzee',
219+ 'AN2090',
220+ 'ANGELOU_____Las_aventuras_de_Nikole',
221+ 'ANIME_WARS',
222+ 'ARCTIC_BLAST',
223+ 'AUTO_ROBO',
224+ 'AWES0ME',
225+ 'AWESOME_HIGH_FIVE_EDITION',
226+ 'A_Dim_View',
227+ 'A_Disease_Called_Puberty',
228+ 'A_Dynasty_of_Random_Megaman',
229+ 'A_Faulty_Future',
230+ 'A_Knights_Tale',
231+ 'A_Little_Piece_of_Insanity',
232+ 'A_Loonatics_Tale',
233+ 'A_Note_On_My_Life',
234+ 'A_Place_called_Random',
235+ 'A_Roll_of_the_Dice',
236+ 'A_Shaggy_Dog_Story',
237+ 'A_Spot_of_Sunshine',
238+ 'A_Tale_of_Two_Sprites',
239+ 'A_Veteran_Lounge_Tale',
240+ 'A_Way_to_the_Stars',
241+ 'A_collection_of_Gothic_Literature',
242+ 'Abram_goes_to_hell',
243+ 'According_To_Plan',
244+ 'Achievement_Wh0rz',
245+ 'Acrobat',
246+ 'Acting_Out',
247+ 'Adam_and_Sei',
248+ 'Advanced_Placement',
249+ 'Adventures_Guild',
250+ 'Adventures_of_Jon_and_Andrew',
251+ 'Adventures_of_Tails_and_Klonoa',
252+ 'After_Lily',
253+ 'Age_of_Ends',
254+ 'Ageless_Legend',
255+ 'Air_Raid_Robertson',
256+ 'Akashik',
257+ 'Akatoshi',
258+ 'Akniatt',
259+ 'Al_De_Baran',
260+ 'Al_and_Scout',
261+ 'Alecto_Songbook',
262+ 'Aleion',
263+ 'Alenas_Tank_Patrol',
264+ 'Alexander_and_Lucas',
265+ 'Alien_Circus',
266+ 'Alien_Concepts',
267+ 'Alone',
268+ 'Also_Bagels',
269+ 'Altimatium',
270+ 'Am_I_Still_Here',
271+ 'Ambrosia_Syndrome',
272+ 'Amya',
273+ 'Anathema',
274+ 'Anatta',
275+ 'And_Then_There_Was_Fred',
276+ 'Androgynous',
277+ 'Angel_Ninja_vs_Devil_Ninja',
278+ 'Angelfish',
279+ 'Angelic_Tourniquet',
280+ 'Angelos',
281+ 'Angels',
282+ 'Angels_Apology',
283+ 'Angels_Dont_Cry',
284+ 'Angels_of_Shadows',
285+ 'Animania',
286+ 'Animania_Shadows_of_Time',
287+ 'Anime_Remix',
288+ 'Animosity_Sonata',
289+ 'Another_Articifial_Time',
290+ 'Another_Beginning',
291+ 'Another_Sonic_Comic',
292+ 'Another_Stickman_Comic',
293+ 'Another_Story',
294+ 'Another_Unidentified_Comic',
295+ 'Answers',
296+ 'Antcomics',
297+ 'Antcomics_Fan_Art',
298+ 'Anthem',
299+ 'Anti_Christ_Daiji',
300+ 'Anubis_Dreams',
301+ 'Anwar_And_Chad_Show',
302+ 'Anyone_but_Virginia',
303+ 'Anything_About_Nothing',
304+ 'Anything_Goes',
305+ 'ApAp',
306+ 'Apartment_408_Full_Size',
307+ 'Applied_Living',
308+ 'Ar_Oh_Ef_El',
309+ 'Arachnid_Goddess',
310+ 'Ardra',
311+ 'Arghh_What_a_life',
312+ 'Arrowflight_Chronicles',
313+ 'Art_School_Sub_Rosa',
314+ 'Art_School_Sub_Rosa_Fanart_Contest',
315+ 'Art_and_sketches',
316+ 'Arthur_King',
317+ 'Artificial_Blood',
318+ 'Artwork____The_Mirror_of_Life',
319+ 'As_the_Galaxy_Turns',
320+ 'Ask_a_Stupid_Question',
321+ 'Assassin_Assassin',
322+ 'Assorted_moments',
323+ 'Asteroid_of_Doom',
324+ 'Asylum_Story',
325+ 'At_The_Library',
326+ 'Atavism',
327+ 'Atlantis_Rising',
328+ 'Atta_boy',
329+ 'Attach_This',
330+ 'Avast_Ye',
331+ 'Avian_insanity',
332+ 'Aw_Nuts_2',
333+ 'Awakenings_Online',
334+ 'BANG_Reku_and_Kiyoshis_Spiritual_Detective_Agency',
335+ 'BERZERK_issue_2',
336+ 'BFF',
337+ 'BIOLOGICAL_INDESTRUCTIBLE_TACTICAL_COMBAT_HYBRID_SQUAD',
338+ 'BIONICLE_Reworded',
339+ 'BIONICLE_Zeroes',
340+ 'BK_Shadow_Nemesis',
341+ 'BLADE_OF_THE_FREAK',
342+ 'BLANK_LIFE_insert_player_rokulily',
343+ 'BLOOP',
344+ 'BVC_Scrap_Book',
345+ 'Bacon_Strips',
346+ 'Bad_Coffee',
347+ 'Bad_Grafiks',
348+ 'Bad_Guy_High',
349+ 'Bad_Taste',
350+ 'Bad_Troll_Comic',
351+ 'Badly_Drawn_Penguins',
352+ 'Badly_Drawn_Webcomic',
353+ 'Bally_Who',
354+ 'Banango',
355+ 'Bar_d',
356+ 'Barely_Listening',
357+ 'Baroque_Viceroyalty',
358+ 'Battle_Dawn_Comics',
359+ 'Be_Faithful',
360+ 'Bear_Versus_Zombies',
361+ 'Bear_and_The_Boy',
362+ 'Bearly_Abel',
363+ 'BeastWARs_lost_memories',
364+ 'Beautiful_Disaster',
365+ 'Beautiful_Skies',
366+ 'Beauty_Into_Beast',
367+ 'Beauty_and_Horror',
368+ 'Because_I_Can',
369+ 'Because_of_Ivan',
370+ 'Because_of_You',
371+ 'Been_Better',
372+ 'Beer_Noodles',
373+ 'Beneficially_challenged',
374+ 'Berserk_Final',
375+ 'Beta',
376+ 'Better_Luck_Next_Time',
377+ 'Betting_On_Love',
378+ 'Between_Failures',
379+ 'Between_Worlds',
380+ 'Beware_of_Walking_Mushrooms',
381+ 'Beyond_Fiction',
382+ 'BffSatan',
383+ 'Bico_s_Place',
384+ 'Biff',
385+ 'Bilaran_Wars',
386+ 'Bill_and_Po',
387+ 'Binding_Shadows',
388+ 'Bipolar_Is_A_Laughing_Matter',
389+ 'Birth_Of_Genesis',
390+ 'BitchSnake',
391+ 'Bitter_Sweet_Melancholy',
392+ 'Black_Hole_Dawn',
393+ 'Blackaby',
394+ 'Blade_of_Toshubi',
395+ 'Blazes_Rumble',
396+ 'Bleach_Asylum_Behind_Closed_Eyes',
397+ 'Bleach_Asylum_Yonkoma',
398+ 'Blood_Bound',
399+ 'Blood_Groove',
400+ 'Blood_Martian_Flowers',
401+ 'Blood_Nation',
402+ 'Blood_Reign_and_Devil_Jack',
403+ 'Blood_sign',
404+ 'Bloodlust_Eternal_Conflict',
405+ 'BluDoo',
406+ 'Blue0',
407+ 'Blue_Ninja_and_Red_Pirate',
408+ 'Blue_Strawberry',
409+ 'Bob_and_Pete',
410+ 'Bob_the_Alien',
411+ 'Bobby_Monos_Crappy_Comics',
412+ 'Bobby_the_fetus',
413+ 'BombSquad',
414+ 'Bomb_Shrapnel',
415+ 'Bombshell',
416+ 'Bonds_That_Break',
417+ 'Boner_And_Punkin',
418+ 'Boo',
419+ 'Boogey_Dancing',
420+ 'Book_of_Desolation',
421+ 'Bored_as_Hell',
422+ 'Bored_by_the_Bus_Stop',
423+ 'Boredom_Blabber_Mania',
424+ 'Boredom_Comics',
425+ 'Bots',
426+ 'Bottle_Cap',
427+ 'Bowser_wars',
428+ 'Bowsers_Plan_B',
429+ 'Boxdog',
430+ 'Brain_Dump',
431+ 'Brain_Pork',
432+ 'Brainfuzz',
433+ 'Brathalla',
434+ 'Breaking_the_Ice',
435+ 'Bright_Earth',
436+ 'Brinkerhoff',
437+ 'Broken_Reploid',
438+ 'Broken_Things',
439+ 'Broken_Wings',
440+ 'Brutus',
441+ 'Brymstone',
442+ 'Bulletproof',
443+ 'Bunny_Comic',
444+ 'But_Not_Really',
445+ 'Butte',
446+ 'Button_Bashers',
447+ 'CATS_AND_ICECREAM',
448+ 'CCC_Presents',
449+ 'CIM_1_Final',
450+ 'CLM_Training_Academy',
451+ 'COCA',
452+ 'CODIGO_SAGRADO__based_on_M_R_Hagen_Vampire_The_Masquerade',
453+ 'CONtrail_Residuals',
454+ 'CQB_Epics',
455+ 'CROSS_WORLDS_NEXXUS',
456+ 'CRY_The_Story_of_the_the_lost_Humanity',
457+ 'CS_Battlegrounds',
458+ 'CYPICO',
459+ 'Caggage',
460+ 'Caissa_hates_me',
461+ 'Canadian_Gamers',
462+ 'Cancerous_AIDS',
463+ 'Captain_Communism',
464+ 'Carnies',
465+ 'Carrot_and_Roper',
466+ 'Cartoon_Egoist',
467+ 'Case_1313666xBlind_an_Blue',
468+ 'Cashcow',
469+ 'Casmajor_Druids',
470+ 'Catboy_at_th_Con',
471+ 'Caution_May_Contain_Nuts',
472+ 'Caves_and_Critters',
473+ 'Cecil_Dragon_Slayer',
474+ 'Celebrity_Stalker',
475+ 'Cerintha',
476+ 'Certified_Monster',
477+ 'Chad_the_Fat_Kid',
478+ 'Chain_of_Stuff',
479+ 'Chains',
480+ 'Chalkdust',
481+ 'Changing_Worlds',
482+ 'Chaos_Punks',
483+ 'Chaos_Reigns',
484+ 'Chaos_Sonic',
485+ 'CharCole',
486+ 'Character_Cave',
487+ 'Charby_the_Vampirate',
488+ 'Cherry_Knot',
489+ 'Children_of_the_Night',
490+ 'Choking_Dolphins',
491+ 'Chooken',
492+ 'Chris_And_Vernbugg',
493+ 'Christian_Humber_Reloaded',
494+ 'Chronicles_of_Calays',
495+ 'Chronicles_of_Gathion',
496+ 'Chronicles_of_Trent',
497+ 'Chrono_Chaos',
498+ 'Chu_and_Kenny',
499+ 'Circle_Arcadia',
500+ 'City_of_Lost_Souls',
501+ 'City_of_Weirdos',
502+ 'Civil_Servitude',
503+ 'Clandestine_Rhapsody',
504+ 'ClashDown',
505+ 'Clipped_Together',
506+ 'Clique_Me',
507+ 'Clock_drawings',
508+ 'Cloud_Eagle',
509+ 'Cloudy_in_Rainbow_Town',
510+ 'Coalition_of_the_Reluctant',
511+ 'Cockroach_Theater',
512+ 'Code_Twilight',
513+ 'Coffee_Boy',
514+ 'Coffee_Time',
515+ 'Cold_Pizza',
516+ 'Coloured_Stuff',
517+ 'Columbian_Messianic_Society',
518+ 'Comic_Book_Whore',
519+ 'Comic_Pie',
520+ 'Comic_Tutorials',
521+ 'Comics_I_Made_While_Blindfolded',
522+ 'Coming_Soon',
523+ 'Commedia_dellArte',
524+ 'Commedia_dellArte_2',
525+ 'Common_Symptoms',
526+ 'Complex_Love',
527+ 'Conduit_Flux',
528+ 'Coney_island_Disco_Palace',
529+ 'Confetti_Surprise_Volume_One',
530+ 'Consumed',
531+ 'Contemporary_Eclipse',
532+ 'Convenient_Hell_A_DDCW_Event',
533+ 'Conventional_Wisdom',
534+ 'Cooks_Assistant',
535+ 'CorruptHardware',
536+ 'Counterfeit',
537+ 'Coveinant_Journey',
538+ 'Cowboys_and_Aliens_II',
539+ 'Crab_Bucket',
540+ 'Crack_Bird_and_Company',
541+ 'Crackwalker',
542+ 'Cramberries',
543+ 'Crash_Redux',
544+ 'Creepy_Carly',
545+ 'Creepy_Girl_and_Her_Zombie_Dog',
546+ 'Crimson_Dark',
547+ 'Crimson_Veil',
548+ 'Crisscross',
549+ 'Crossbones',
550+ 'Crossover',
551+ 'Crossover_High',
552+ 'Crossover_Street',
553+ 'Crossoverlord',
554+ 'Crossoville',
555+ 'Crow',
556+ 'Crowhaven',
557+ 'Cru_The_DwarF',
558+ 'Cryptic_Allusions',
559+ 'Cubicles',
560+ 'Culture_Shock',
561+ 'Curtis_Lawsons_Grindhouse',
562+ 'Cwens_Quest',
563+ 'CyBoar',
564+ 'Cyberspace',
565+ 'Cynical_Optimism',
566+ 'DANGERMOTH',
567+ 'DARK_RISING',
568+ 'DHF_Jam',
569+ 'DIAMOND_English_version',
570+ 'DIS',
571+ 'DRAKKAR',
572+ 'DTF_6',
573+ 'D_Contract',
574+ 'D_R_I_G_S',
575+ 'D_U_S_K',
576+ 'DaKirbinator',
577+ 'Da_gratest_avenshure_ov_all_time',
578+ 'Daemonslayers_Heritage',
579+ 'Daidal_Tapestry',
580+ 'Daisy_and_Moira_and_Roy',
581+ 'DamCho_Jam_Comics',
582+ 'Danielle_Dark',
583+ 'Dannysawesomenessfavoriteme',
584+ 'Dansk_Folly',
585+ 'Daphne_Descends',
586+ 'Dare_To_Dream',
587+ 'Dark_Dark_Reign',
588+ 'Dark_Fenrir_X',
589+ 'Dark_Light',
590+ 'Dark_Worlds',
591+ 'Dark_Worlds_Trilogy',
592+ 'Darkness_Labors',
593+ 'Darkside',
594+ 'Darlos_Life_Journal',
595+ 'Daron',
596+ 'Dasien',
597+ 'DeAtH_pLaYs_ChEsS',
598+ 'DeadEnd',
599+ 'DeadFingers',
600+ 'Dead_Blood',
601+ 'Dead_Door_goldwater',
602+ 'Dead_End_Zone_Act_3',
603+ 'Dead_Men',
604+ 'Dead_Men_Tell_No_Tales',
605+ 'Dead_Strangers',
606+ 'Dead_Wrong',
607+ 'Deadend_comic',
608+ 'Deadhead_Zero',
609+ 'Deadpill',
610+ 'Dear_Diary',
611+ 'Death_By_Bunny',
612+ 'Death_By_Pixel',
613+ 'Death_by_Spikes',
614+ 'Death_work',
615+ 'Deathbeamz_Classic_Presents_Mercs',
616+ 'Deaths_Embrace',
617+ 'Decepticomics',
618+ 'DeepHurting',
619+ 'Defining_Logic',
620+ 'Defunct_Ialus',
621+ 'Demon_Blues',
622+ 'Demon_Eater',
623+ 'Demon_Hells_Touniment',
624+ 'Demon_Slayers',
625+ 'Demon_Slayers_en_Espanol',
626+ 'Demon_hunters',
627+ 'Demonology',
628+ 'Denizens__Attention',
629+ 'Der_Hundt',
630+ 'Despotize',
631+ 'Detective_Fork',
632+ 'Detective_Fork_2',
633+ 'Detulux_Incorporated',
634+ 'Deus_Ex_Machina',
635+ 'Develles',
636+ 'Deviant_Prophets',
637+ 'Devoid_of_Life',
638+ 'Devon_Legacy_Bios',
639+ 'Dice_n_Dice',
640+ 'Differences',
641+ 'DigiChronicles',
642+ 'DigiMini_Strips',
643+ 'DigiMon_Inc',
644+ 'Digimon_Chaos',
645+ 'Digimon_Legend',
646+ 'Digimon_V',
647+ 'Digital_Exodus',
648+ 'Digital_Heart',
649+ 'Digital_Screensaver',
650+ 'Din_Krakatau',
651+ 'Dirtheads',
652+ 'Dis_Reality',
653+ 'Discount_City',
654+ 'Distant_Embrace',
655+ 'Divine_Leap',
656+ 'Divine_Wrath',
657+ 'Divisible_by_Zero',
658+ 'Do_Not_Tell',
659+ 'Dog_the_Spot',
660+ 'Dogs_Eye_View',
661+ 'Dollar_Store_Caviar',
662+ 'Dollar_Store_Haircut',
663+ 'Dome_busta',
664+ 'Don_Josh',
665+ 'Doodlerama',
666+ 'Doodles_by_Slothed',
667+ 'Doodles_in_Time',
668+ 'Doodlez',
669+ 'Dot_TXT',
670+ 'Dot_TXT_Bold',
671+ 'Doug_N_Exile',
672+ 'Dougs_Hugs',
673+ 'Down_Home',
674+ 'Down_The_Stairs_in_Bethany_Hospital',
675+ 'Dragon_Ball_Z_Future_Perfect',
676+ 'Dragon_Ball_Z_Story',
677+ 'Dragon_City',
678+ 'Dragon_Kingdoms_Remake',
679+ 'Dragon_Maiden',
680+ 'Dragonballz__Smash_Tournament',
681+ 'Dragons_Quest___Crystals_of_the_Elder',
682+ 'Drawn_Blog',
683+ 'Drawn_to_you',
684+ 'Drawnsword',
685+ 'Dread_Sisterhood_of_Randomnessossity',
686+ 'Dreaded_Eater',
687+ 'Dream_Chronicles',
688+ 'Dream_of_the_Dragon',
689+ 'Dreams_in_Synergy',
690+ 'Dreams_of_Stone',
691+ 'Dregs_of_Society',
692+ 'Drifters_Tale',
693+ 'DrunkDuck_Poop',
694+ 'DrunkDuck_Speesheez',
695+ 'Drunk_Duck_Awards_2009',
696+ 'Drunk_Duck_Beauty_Contest',
697+ 'Drunk_Duck_Fan_Arts',
698+ 'Drunk_Satan_Robot',
699+ 'Due_East',
700+ 'Duh',
701+ 'Dungeons_and_Dumbasses',
702+ 'Dystopia_City',
703+ 'ELO',
704+ 'EPIC_Q',
705+ 'EXTRAordinary',
706+ 'Echzeon',
707+ 'Ed_Contradictory',
708+ 'Edepth_Angel',
709+ 'Edgey_Sketchy',
710+ 'Educen_Bacillus',
711+ 'Eff_Eff_Ex',
712+ 'Ekoa',
713+ 'El_Oh_El',
714+ 'Elemental_Eye_in_Schools',
715+ 'Elemental_Heir',
716+ 'Elemental_Revolution',
717+ 'Elementary_Aspects',
718+ 'Elementas_Protectors_of_the_Universe',
719+ 'Elements_Classic',
720+ 'Elspeth',
721+ 'Elven_Legend',
722+ 'Em_oi',
723+ 'Emerald_Winter',
724+ 'Endstone',
725+ 'Endstone_Attic',
726+ 'Engine',
727+ 'Enter_the_Duck_3',
728+ 'Enthalpy',
729+ 'Ephemeral',
730+ 'Epic_Brundala',
731+ 'Erehwon',
732+ 'Erth',
733+ 'Es_war_einmal_im_Mittelalter',
734+ 'Eskimo_Dave',
735+ 'Esoterica',
736+ 'Essay_Bee_Comics_Presents_Fusion',
737+ 'Essence_Babies',
738+ 'Essence_of_Time',
739+ 'Estatic_Gods',
740+ 'Eternal_Flame',
741+ 'Eternal_Illusion',
742+ 'Eternity_Comic',
743+ 'Eternity_Complex',
744+ 'Eternity_Dreams',
745+ 'EtheC',
746+ 'Ethereal',
747+ 'Ethos',
748+ 'Even_For_a_Lunch_Meat',
749+ 'Evergreen_Comics',
750+ 'Every_Day',
751+ 'Everybodys_Sonics_Friend',
752+ 'Everyday_Life_of_Sho_and_Kye',
753+ 'Everything_Else_and_More',
754+ 'Eves_Apple',
755+ 'Evil_Dawn',
756+ 'Evil_Empire_Moratorium',
757+ 'Evil_Snowman',
758+ 'Excitement_Abounding',
759+ 'Explo',
760+ 'Explorers_Of_the_Unknown',
761+ 'Explosion_Proof',
762+ 'Extra_stuff_of_the_other_comics',
763+ 'Eye_For_a_Lie',
764+ 'FACARA',
765+ 'FBOF',
766+ 'FIGHT',
767+ 'FIGHT_2',
768+ 'FRANKENSTEIN__Her_Majestys_Secret_Service',
769+ 'FUZZY_BUNNIES_FROM_HELL',
770+ 'Faelings',
771+ 'Faerie_Tale',
772+ 'FaeryTale_Grimm',
773+ 'Failtrain',
774+ 'Falling_Petals',
775+ 'False_Gods',
776+ 'Familiarize',
777+ 'FanDanGo',
778+ 'Fan_Dan_Go',
779+ 'Fan_art_of_the_Grin',
780+ 'Fandom',
781+ 'Fantasy_Characters_in_Storytown',
782+ 'Far_Out_There',
783+ 'Farmillia',
784+ 'Fascination',
785+ 'Fatal_Edge',
786+ 'Fate_Running_Wild',
787+ 'Fate_of_the_Blue_Star',
788+ 'Fated_Feather',
789+ 'Fates_Bitch',
790+ 'FauL3_TuR',
791+ 'Faults',
792+ 'Faust',
793+ 'Faux_Fur',
794+ 'FeedthyRobot',
795+ 'Feeling_Lonely',
796+ 'Feeling_Rushed',
797+ 'Feral_City',
798+ 'Fifth_Dimension',
799+ 'Fight_of_Metal_Gears',
800+ 'Fighter_House',
801+ 'Figment_of_Freux',
802+ 'Final_Fantasies_Revived',
803+ 'Final_Fantasy_28__Devils_Chase',
804+ 'Final_Fantasy_3_Point_1',
805+ 'Final_Fantasy_Massively_Multiplayer_Mayhem',
806+ 'Final_Fantasy_The_Legend_of_the_Dragon_Blade',
807+ 'Final_Fantasy_X_LOL_edition',
808+ 'Finding_Yourself',
809+ 'Finding_the_One',
810+ 'FireBorn',
811+ 'Fire_Fighter',
812+ 'Firefly_Cross',
813+ 'FirstImpressions',
814+ 'Fish_Stick',
815+ 'Five_Bullets_Til_Revenge',
816+ 'Five_Dollar_Fate',
817+ 'Fizz',
818+ 'Flaming_Fuzzy_Comics',
819+ 'Flaming_Fuzzy_People',
820+ 'Flammable_Pants',
821+ 'Flapjacks',
822+ 'Flick_and_Jube',
823+ 'Flying_Under_the_Influence',
824+ 'Fn_Lugans',
825+ 'Fools_and_such',
826+ 'For_Gods_Sake',
827+ 'Forever_September',
828+ 'Forsaken_Valor',
829+ 'Four_Bats',
830+ 'Four_Seasons',
831+ 'Four_Swords_Adventures',
832+ 'Foxy_Smoochies',
833+ 'Frame_by_Frame',
834+ 'Frank_Baron_NSO',
835+ 'Frank_and_Vinny',
836+ 'Freaky_World',
837+ 'Fred_Peterson_The_Mighty_Warlord_Book_1',
838+ 'FreeFall_Drift',
839+ 'Freeworld',
840+ 'Friction',
841+ 'Frogstaff_Comics',
842+ 'From_bad_to_worse',
843+ 'Front_Beat',
844+ 'Ftmark',
845+ 'Fuds',
846+ 'Full_Moon_Charm_Archives',
847+ 'Fullmoon_Stories',
848+ 'Function_Over_Fashion',
849+ 'Furry_Dav',
850+ 'Fuse',
851+ 'GATE',
852+ 'GBCink',
853+ 'GENOPSIDA_XERO',
854+ 'GIF_Showcase',
855+ 'GIRL_JESUS',
856+ 'GOLDEN',
857+ 'GOTT_GAUSS',
858+ 'Gaijin_Hi',
859+ 'Galactic_Divine',
860+ 'Galactic_Hub_Serreven',
861+ 'Galaxy_Wars',
862+ 'Gambit_as_Bishounen',
863+ 'GameFace_Live_The_Comic',
864+ 'Gamenoy_legends',
865+ 'Gamer_Man_Awsome',
866+ 'Gamers_Anonymous',
867+ 'Games_of_the_Mad',
868+ 'GansWorks',
869+ 'Gary_the_Alchemist',
870+ 'Gaylings',
871+ 'GeeKz',
872+ 'Gello_Apocalypse',
873+ 'Gelotology',
874+ 'Geminni',
875+ 'General_Madness',
876+ 'Genrica_Comica',
877+ 'George_the_Dragon',
878+ 'Getting_Into_The_MiddleGround',
879+ 'Ghost_Hunters_Online_Manga',
880+ 'Ghosting',
881+ 'Gift',
882+ 'Girl_Comic',
883+ 'Girl_Love',
884+ 'Girls_cant_be_funny',
885+ 'Give_Me_The_Sky',
886+ 'Glass_Hearts',
887+ 'Gloom',
888+ 'Gloop_and_Glop',
889+ 'Gnartoons',
890+ 'Gnoph',
891+ 'Go_A_Viking_The_Sword_of_Kings',
892+ 'Go_For_it',
893+ 'God_Complex',
894+ 'God_Damn_It',
895+ 'God_Shaped_Holes',
896+ 'God_of_Destruction',
897+ 'Godot',
898+ 'Golden_Edge_Mystery',
899+ 'Goldfish',
900+ 'Golem_x_Pineapple',
901+ 'Goo_From_Another_Dimension',
902+ 'Good_Guy',
903+ 'Good_Riddance',
904+ 'Good_Taste',
905+ 'Got_Moxie',
906+ 'Gotcha',
907+ 'Gothenreich_Chronicles',
908+ 'Graces_Wings',
909+ 'Graer_Babbin_Sheets',
910+ 'Grandpa_Sex_Machine',
911+ 'Graphical_Deviants',
912+ 'Graphite_Den',
913+ 'Greed_over_Need',
914+ 'GreenSoup',
915+ 'Greenstar_Comics',
916+ 'Grey_Legacy',
917+ 'Grim_Is_Our_Game',
918+ 'Grog',
919+ 'Grog_Extras',
920+ 'Grounded_Angel',
921+ 'Growth',
922+ 'Guardian_Chronicles',
923+ 'Guatama',
924+ 'Gundula_un_de_Stuventiger',
925+ 'Guys_n_Ghouls',
926+ 'HAPPYATTACK',
927+ 'HEY_MAC_ADVENTURES_OF_A_MIDDLE_AGED_COW',
928+ 'H_I_K_A_R_I',
929+ 'HaTs',
930+ 'Habit',
931+ 'Hainted_Holler',
932+ 'Hakkum_Town',
933+ 'Hall_of_Randomness_Revamped',
934+ 'Halo_Annihilation',
935+ 'Hanako_Story',
936+ 'Happyface_Comics',
937+ 'Harkovast',
938+ 'Hartists_Rants',
939+ 'Hatpire',
940+ 'Haunting_Nights_Christmas_Dreams_Issue_1',
941+ 'Hazy_Daisy_Jam',
942+ 'Hearts_and_Nails',
943+ 'Hedgehog_Champion',
944+ 'Hefs_adventures',
945+ 'Hellbent',
946+ 'Hercules',
947+ 'Hero_Force',
948+ 'Hero_SComic_PK5',
949+ 'Heroes_Adventures',
950+ 'Hexagon_Death_Squad',
951+ 'Hey_Professor',
952+ 'High_school',
953+ 'Hikari_The_Demon_Swordsman',
954+ 'Historiography',
955+ 'Hitorihitori',
956+ 'Holding_Chaos',
957+ 'Holiday_Village_Doodles',
958+ 'Hollow_High',
959+ 'Hollow_Secrets',
960+ 'Homestore',
961+ 'Hometown_Gangsters',
962+ 'Hopscotch',
963+ 'Horribleville',
964+ 'HotShot_Hunters',
965+ 'HotelSoul',
966+ 'House_of_the_Muses_3',
967+ 'House_of_the_Muses_4',
968+ 'House_of_the_Muses_5_House_of_Many_Kings',
969+ 'House_of_the_Muses_clips_previews_and_outtakes',
970+ 'How_Unfortunate',
971+ 'Human_Nature',
972+ 'Humorous_Stories_of_the_Explicit_Randomness',
973+ 'Hurrocks_Fardel',
974+ 'Hyacinth_Duck',
975+ 'IZ_Acceptance',
976+ 'I_Come_From_Mars',
977+ 'I_Fell_Down_The_Stairs',
978+ 'I_Hate_my_Life_Comics',
979+ 'I_Heart_Sushi',
980+ 'I_Love_You',
981+ 'I_Was_Kidnapped_By_Lesbian_Pirates_From_Outer_Space',
982+ 'I_am',
983+ 'I_got_it_in_my_mouth',
984+ 'I_had_a_dream',
985+ 'I_think_my_polar_bear_whistles',
986+ 'Ialus',
987+ 'Iconoclasm',
988+ 'Illegal_Aliens',
989+ 'Illogical',
990+ 'Illusional_Beauty',
991+ 'Im_a_shaman',
992+ 'Imaginary_Daughter',
993+ 'Imaginary_Daughter_Bonus',
994+ 'Imaginary_Tactics',
995+ 'Immortal_Elementals',
996+ 'Important_Business',
997+ 'In_One_Time',
998+ 'Inappropriate_Irving',
999+ 'Inchoatica',
1000+ 'Inconsistent_Biomix',
1001+ 'Incursion',
1002+ 'Infiltration_of_Graveyard_Fortress',
1003+ 'Insanity_of_Xade',
1004+ 'Insert_Something_Here',
1005+ 'Inside_The_OC_Convention',
1006+ 'Insomnia_The_Comic',
1007+ 'Instant_Tea',
1008+ 'Interim_State',
1009+ 'Internet_Superbuddies',
1010+ 'Intersection',
1011+ 'Inu',
1012+ 'InuYasha_got_Hair_Cut',
1013+ 'Inuyasha_Desire_to_be_Stronger',
1014+ 'Inverted_Polarity',
1015+ 'Irony_in_a_Jar',
1016+ 'Is_That_Even_Legal',
1017+ 'Ishi_Alliance',
1018+ 'Island_Of_Submission',
1019+ 'Italian_Godfather',
1020+ 'Its_Ninja_Time',
1021+ 'Its_The_Thought_That_Counts',
1022+ 'ItzWrAiTh',
1023+ 'Ixion',
1024+ 'JATM',
1025+ 'JRs_Minutemen',
1026+ 'Jac_Strips_for_You',
1027+ 'Jackrabbit_Days',
1028+ 'Jake_the_Evil_Hare',
1029+ 'Japanofail',
1030+ 'Jarret',
1031+ 'Jason_Vs',
1032+ 'Jenny_Everywhere_and_the_Golden_Key',
1033+ 'Jesi_The_Genie',
1034+ 'Jet_and_Joe',
1035+ 'Jhulene_the_Paladin',
1036+ 'Jim_Reaper',
1037+ 'Jim_and_Shawn',
1038+ 'Jiraiyas_Quest_for_Tsunade',
1039+ 'Jix',
1040+ 'JixandDragonCityfanart',
1041+ 'Joe_Bivins_Man_Genius',
1042+ 'John',
1043+ 'John_Clyde_the_Nature_Guide',
1044+ 'Jonkos_Picture_Diary',
1045+ 'Jos_Pokemon_Adventure',
1046+ 'Jos_Pokemon_Journey_Kanto_Version',
1047+ 'JoshRants',
1048+ 'Judo_Man',
1049+ 'Jules_Comics_Promo_Comic',
1050+ 'JuliusModels_the_Comic',
1051+ 'Jump',
1052+ 'Junk_Food',
1053+ 'Juno',
1054+ 'Jurbas',
1055+ 'JustAnotherDay',
1056+ 'Just_Call_Me_Freedom',
1057+ 'Just_Liam',
1058+ 'Just_Like_James',
1059+ 'KALA_dan',
1060+ 'KAMs_Fanart',
1061+ 'KDS_Pokemon_Adventure_Kanto_Version',
1062+ 'KH_X_Bleach',
1063+ 'KOTWR_EXTRA_Under_the_Cherry_Tree',
1064+ 'Kaiju_Girl_theatre',
1065+ 'Kaiths_Komics',
1066+ 'Kaizu',
1067+ 'Kakeiro',
1068+ 'Karl_and_his_feasable_sketching',
1069+ 'Karrel',
1070+ 'Katts__Eyes',
1071+ 'Keeper_of_the_White_Rose',
1072+ 'Kemono_Densetsu',
1073+ 'Kenesis_Cronicles_Broken_Bonds',
1074+ 'Kenji_Nin',
1075+ 'Keptn_Iglu',
1076+ 'Kerea',
1077+ 'Kevin_Z',
1078+ 'Keyguard_Active',
1079+ 'Keys',
1080+ 'Kha_War_of_the_Mounts',
1081+ 'Kidnapped',
1082+ 'Kids_With_Gas_Eat_Free',
1083+ 'Killer_Body',
1084+ 'Killer_Kittenz',
1085+ 'Kincaid',
1086+ 'King_Me',
1087+ 'King_of_Hearts',
1088+ 'Kingdom_Naruto_Hearts',
1089+ 'Kingdom_Sonic_Trilogy',
1090+ 'Kirby_Advance_Adventures',
1091+ 'Kirby_Komiks',
1092+ 'Knights_of_the_New_Republic',
1093+ 'Knightwatch',
1094+ 'Knock_on_Wood',
1095+ 'Knots',
1096+ 'Knuckles_Adventure',
1097+ 'KoanHead',
1098+ 'Kombat_Kubs',
1099+ 'Kung_Fu_Komix',
1100+ 'Kunt_k',
1101+ 'Kurenai_Mashin',
1102+ 'Kuro_Shouri',
1103+ 'Kuro_Shouri_Fanart',
1104+ 'Kuromaka',
1105+ 'Kusarno_Adventure',
1106+ 'KvS',
1107+ 'LASTFantasy',
1108+ 'LAX_Light_Motion_Dreams',
1109+ 'LA_ESPADA_DEL_ANORMAL',
1110+ 'LIFE_DEATH',
1111+ 'LOE_Plus',
1112+ 'LOT',
1113+ 'LOVEFEAST',
1114+ 'L_odyssee_des_bras_casses',
1115+ 'Lady_Doom',
1116+ 'Laggoo_and_the_Kings_Trident',
1117+ 'Lama_Glama',
1118+ 'Laments_of_Having_Too_Much_Time_On_Your_Hands',
1119+ 'Lamora',
1120+ 'Land_of_the_Joel',
1121+ 'Land_of_the_Lords',
1122+ 'Larry_the_Taco',
1123+ 'Last_Call',
1124+ 'Last_Chance_The_Beast_Hunter',
1125+ 'Last_Of_The_Wilds',
1126+ 'Last_Place_Comics',
1127+ 'Laughter_at_Tymoczkos',
1128+ 'Lavender_Legend',
1129+ 'Laxative',
1130+ 'Le_Farce',
1131+ 'LeeEXE',
1132+ 'Left',
1133+ 'Legacy_Unlimited',
1134+ 'Legacy_of_Blaze',
1135+ 'Legend_Sketchbook',
1136+ 'Legend_of_Setar',
1137+ 'Legend_of_Terrar',
1138+ 'Legend_of_Zelda_Curse_of_Courage',
1139+ 'Legend_of_the_King',
1140+ 'Legendary_Beings_Ara_and_Celi',
1141+ 'Legendary_pkmn',
1142+ 'Leggo_my_Ego',
1143+ 'Lego_Space',
1144+ 'LetsBrawl',
1145+ 'LetsBrawl2',
1146+ 'Life_Plus',
1147+ 'Life_Poorly_Drawn',
1148+ 'Life_Under_The_Top_Hat',
1149+ 'Life_and_Death',
1150+ 'Life_and_Maybe_Death_of_Ed',
1151+ 'Life_as_an_8bit',
1152+ 'Life_as_an_8bit_2',
1153+ 'Life_as_told_by_Rutger',
1154+ 'Life_at_Halesowen',
1155+ 'Life_on_the_Fringe',
1156+ 'Light_Apprentice_Nate',
1157+ 'Like_Fish_in_Water',
1158+ 'Link_Skywalker',
1159+ 'Linked_Fate',
1160+ 'Linnyanie',
1161+ 'Listen_To_Yer_Mama',
1162+ 'Livin_On_The_Edge',
1163+ 'Living_Large',
1164+ 'Living_With_Insanity',
1165+ 'Lizzy',
1166+ 'Local_Look_Awesometown_Editorials',
1167+ 'Locoma',
1168+ 'Locoma_the_archive',
1169+ 'Logic_Sucks',
1170+ 'Lola',
1171+ 'London_Underworld',
1172+ 'Loser_Corner',
1173+ 'Lost_Chapters_of_Megaman',
1174+ 'Lost_in_Transition',
1175+ 'Lotus_Root_Children',
1176+ 'Louder_Than_Bombs',
1177+ 'Lovarian_Adventures',
1178+ 'Love_Annotated',
1179+ 'Love_Curse',
1180+ 'Love_Story',
1181+ 'Love_you_like_crazy',
1182+ 'Lovegood',
1183+ 'Lucid_Moments',
1184+ 'Luciefer',
1185+ 'Lucky_Dawg',
1186+ 'Lunas_Journey',
1187+ 'Lupin_III_FLL',
1188+ 'MAG_ISA',
1189+ 'MAYA_1',
1190+ 'MAYA_The_Temple_of_Warriors',
1191+ 'MAYA_____The_legend_of_Wolf',
1192+ 'MAYA_la_leyenda_del_lobo',
1193+ 'MEDABOTS_Time_Space',
1194+ 'ME_FREAK',
1195+ 'MIKYAGU',
1196+ 'MKIA_The_Sprite_Comic',
1197+ 'MMM_BooGrrs',
1198+ 'MMZX_Changeable_worlds',
1199+ 'MMZ_After_Zero',
1200+ 'MS_Pain',
1201+ 'MSpaint_relationships',
1202+ 'MY_LIFE_NOT_REAL_COMIC',
1203+ 'MY_MAFFIA',
1204+ 'Mad_World',
1205+ 'Madison',
1206+ 'Madness_to_my_Method',
1207+ 'Magenta_the_Witchgirl',
1208+ 'Maggot_Boy',
1209+ 'Magic_Eater',
1210+ 'Magical_Mania',
1211+ 'Magical_Misfits',
1212+ 'Magical_Misfits_Gallery',
1213+ 'Magicians_Quest',
1214+ 'Magiversity',
1215+ 'Maidens_Monsters_and_Madmen_the_Tim_Tyler_sketchbook',
1216+ 'Majoring_in_Evil',
1217+ 'Makeshift_Man',
1218+ 'ManBoys',
1219+ 'Manifestations',
1220+ 'Maple_Legacy',
1221+ 'Maple_Syrup',
1222+ 'Mario_Can_Has_Cheeseburger',
1223+ 'Mario_and_Luigi_Misadventures',
1224+ 'Mario_in_Johto',
1225+ 'Marios_Day_Job',
1226+ 'Marital_Bliss',
1227+ 'Marooned',
1228+ 'Marred_Visage',
1229+ 'Martin_and_Machs_sketches_of_life',
1230+ 'Martin_and_Mitchell',
1231+ 'Martins_House',
1232+ 'Master_the_Tiger',
1233+ 'Mastermind_BTRN',
1234+ 'Mastorism',
1235+ 'Matka',
1236+ 'Matt_and_Karls_Pokemon_Adventure',
1237+ 'McEvens_Times',
1238+ 'Meardnom',
1239+ 'Mech_Academy',
1240+ 'MegaMan_Theater',
1241+ 'MegaMan_Zero_the_ghousts_of_Past',
1242+ 'MegaNonsense',
1243+ 'Mega_Child_Xtreme',
1244+ 'Megaman_9_the_comic',
1245+ 'Megaman_Omega_Zero',
1246+ 'Megaman_ZXA',
1247+ 'Megaman_ZX_Prime',
1248+ 'Megaman__the_Comic',
1249+ 'Megaman_and_BetaFlame',
1250+ 'Megaman_and_the_Demons',
1251+ 'Megaman_battle_network_continues',
1252+ 'Megamantics',
1253+ 'Meh_Comic_Tester',
1254+ 'Memesink',
1255+ 'Mental_Meltdown',
1256+ 'Merej',
1257+ 'Messed_Up_Final_Fantasy_IV',
1258+ 'Messing_Around',
1259+ 'Metal_Breakdown',
1260+ 'Metal_Gear_Again',
1261+ 'Metroid_Vengeance',
1262+ 'Michael',
1263+ 'Mikame',
1264+ 'Mike_And_The_Captain',
1265+ 'Mildly_mundane',
1266+ 'Millennium',
1267+ 'Milo_and_John',
1268+ 'Mind_Under_Matter',
1269+ 'Mindless',
1270+ 'Minion',
1271+ 'Mirada_Atras',
1272+ 'Misadventures_of_Classic_MegaMan',
1273+ 'Misfire_Reactional',
1274+ 'Misfits_of_Fandom',
1275+ 'Misfits_of_Mischief',
1276+ 'Mishap_Mania',
1277+ 'Miss_Grey',
1278+ 'Missing_days_of_february',
1279+ 'Mission_Control',
1280+ 'Mistake_Girl',
1281+ 'Mob_Ties',
1282+ 'Modern_Day_Witchdoctor',
1283+ 'Modern_Morality_with_Bill_and_Phil',
1284+ 'Molapro_Comics',
1285+ 'Momiji',
1286+ 'MonkXDevil',
1287+ 'Monkey_Boogie',
1288+ 'Monkey_Pot',
1289+ 'Monkeys_and_Midgets_B_and_W',
1290+ 'Monkeyshine',
1291+ 'Monkeyshine_Supplemental',
1292+ 'Monster_in_a_Cave',
1293+ 'Moon_Reflected_in_Water',
1294+ 'Moonguin',
1295+ 'Moonlight_Motel',
1296+ 'Moose_Shoe',
1297+ 'Morning_Squirtz',
1298+ 'Morph_Man_Heir',
1299+ 'Morphic',
1300+ 'Mortifer',
1301+ 'MrCoffee',
1302+ 'Much_the_Millers_Son',
1303+ 'Murder_She_Sprited',
1304+ 'Murder_in_the_Mushroom_Kingdom',
1305+ 'Musical_Farm',
1306+ 'Mutant_Batchelors',
1307+ 'My_Chao_Your_Problem',
1308+ 'My_Hero',
1309+ 'My_Imaginary_Life',
1310+ 'My_Immortal',
1311+ 'My_Insult_To_Society',
1312+ 'My_Lady',
1313+ 'My_Last_Day',
1314+ 'My_Life_In_The_Trenches',
1315+ 'My_Name_Is_Billy_I_Made_These',
1316+ 'My_New_Job',
1317+ 'My_No_1_comic____a_DD_comunity_project',
1318+ 'My_Pet_Demon',
1319+ 'My_Sister_prequel_Eclipse',
1320+ 'My_Sister_the_Awakening',
1321+ 'My_Sister_the_Damned',
1322+ 'My_Sister_the_Witch_0',
1323+ 'My_Strange_Love',
1324+ 'My_Thingie',
1325+ 'My_Zombie_Life',
1326+ 'My_colection_of_pokemon_shorts',
1327+ 'Myo_Min_Myo',
1328+ 'Mysteries_of_the_Arcana',
1329+ 'Mystery_Science_Lets_Play_3000',
1330+ 'Mythological_Chronicle',
1331+ 'Myths_And_Legends',
1332+ 'N2Deep',
1333+ 'NALO_COMICS',
1334+ 'NEGLIGENCE_filler_and_fan_art',
1335+ 'NOT_ANOTHER_SONIC_COMIC',
1336+ 'NPC',
1337+ 'Nadya',
1338+ 'Nahim',
1339+ 'NaiveXP',
1340+ 'NanKan_Minis',
1341+ 'Nano_Bits',
1342+ 'Nargle_Arts',
1343+ 'Narou',
1344+ 'NaruHina_Forgotten',
1345+ 'Naruto_AM',
1346+ 'Naruto_Comic_Album',
1347+ 'Naruto_Pains_Wrath',
1348+ 'Naruto_Shippuden_Ninja_Strife_To_The_End',
1349+ 'Naruto_The_Comic',
1350+ 'Naruto_The_Ninja_Tournament',
1351+ 'National_Dex',
1352+ 'Natty_Patty',
1353+ 'Navi_Civil_War',
1354+ 'NecroLupus',
1355+ 'Necro_Magic',
1356+ 'Nectar_of_the_Gods',
1357+ 'Negate_Never',
1358+ 'Negligence',
1359+ 'Neko_Sprite_Comic',
1360+ 'Nerdcore',
1361+ 'Nerdy_Boy',
1362+ 'Net_Ghosts',
1363+ 'New_America',
1364+ 'New_Challenger_Approaches',
1365+ 'New_Jerusalem',
1366+ 'New_Nation',
1367+ 'New_Supa_Comics',
1368+ 'Nibbles_Comic',
1369+ 'Nightfall_GN',
1370+ 'Nimahs_Quest',
1371+ 'Nine',
1372+ 'Nine_Shot_Sonata',
1373+ 'Ninjoy',
1374+ 'NintenDuh',
1375+ 'Nintendo_Super_Squad',
1376+ 'Nintendos_Untold_Legends',
1377+ 'NoCharCom',
1378+ 'NoWhere_Fast',
1379+ 'NoX_LEGACY',
1380+ 'No_Bees_Please',
1381+ 'No_Capes',
1382+ 'No_Horse_Town',
1383+ 'No_Need_for_Bushido_Remix',
1384+ 'No_Pun_Intended',
1385+ 'No_Sprites_For_You',
1386+ 'No_Talent',
1387+ 'No_Taste',
1388+ 'No_nightsticks_for_you',
1389+ 'Noise_Pollution',
1390+ 'Nolans_Closet',
1391+ 'Normal_Is_Boring',
1392+ 'Normalcy_is_for_Wimps',
1393+ 'Not_Neurotypical',
1394+ 'Notebook',
1395+ 'Novusgenesis_Hype',
1396+ 'Noxious',
1397+ 'Nr_101_and_Other_Weird_Tales',
1398+ 'Nu_and_Me',
1399+ 'Numerals',
1400+ 'Nutcase_Fraternity',
1401+ 'Nzabob',
1402+ 'OH_SNAPS_comics',
1403+ 'OMEGAN_SURVIVORS',
1404+ 'OYGWTFBBQ',
1405+ 'Obiit',
1406+ 'Oblivion_Chaos',
1407+ 'Odd_Days',
1408+ 'Odds_n_ends',
1409+ 'Of_Cyndaquil_and_Totodile',
1410+ 'Off_Hours',
1411+ 'Ogrifina_Redbottom',
1412+ 'Oh_Brother_Qlippoth',
1413+ 'Oh_Momo',
1414+ 'Oh_Pokemon',
1415+ 'Oh_gawd',
1416+ 'Old_Comic',
1417+ 'Old_Pond',
1418+ 'Omega_Chase',
1419+ 'Omega_Soul',
1420+ 'Omikami',
1421+ 'On_the_Grind',
1422+ 'One_AM',
1423+ 'One_Girl_Guy_Army',
1424+ 'One_Shot',
1425+ 'One_Sixth_Sense',
1426+ 'Only_Love_and_Music',
1427+ 'Opaque_Dreams',
1428+ 'Operator',
1429+ 'Orange_Cloud',
1430+ 'Orbit',
1431+ 'Oridnary_Awkwardness',
1432+ 'Ouch',
1433+ 'Our_little_kirby',
1434+ 'Out_Post_7',
1435+ 'Out_To_Lunch',
1436+ 'Out_of_Context',
1437+ 'Out_of_Curiosity',
1438+ 'Outcast',
1439+ 'Outlawed',
1440+ 'Outskirts_of_Orgrimmar',
1441+ 'Over',
1442+ 'Overshadow',
1443+ 'Oyer',
1444+ 'POKeMON_GSC',
1445+ 'POLO',
1446+ 'PSI',
1447+ 'PUTRID_MEAT',
1448+ 'P_O_V',
1449+ 'Pagan_Zoetrope',
1450+ 'Paint_Heroes',
1451+ 'Palestra',
1452+ 'Pancakes',
1453+ 'Panda_panda',
1454+ 'Pandemonium',
1455+ 'Panel_De_Pun___Stupid_Comic_Thing',
1456+ 'Panthea_Obscura',
1457+ 'Paradox_of_Chaos',
1458+ 'Paranoia_and_Denial',
1459+ 'Paranormal_Activity',
1460+ 'Parker_Lot',
1461+ 'Parody_Paridise',
1462+ 'Patchs_Revenge',
1463+ 'Pater_Hiob_Dynamit_im_Sarg',
1464+ 'Pegwarmers',
1465+ 'Pelaiah',
1466+ 'Penis_Fun',
1467+ 'Per_Ardua',
1468+ 'Perceived',
1469+ 'Percius',
1470+ 'Perfect_Impact',
1471+ 'Perfect_Nightmare_Overkill',
1472+ 'Perfectly_Normal_Insanity',
1473+ 'Perpendicular_Universe',
1474+ 'Persona_3_FTW',
1475+ 'Pewfell',
1476+ 'Phantasmagoric_Fragrance_of_Flowers_Past',
1477+ 'Pharmacy_Time_Comics',
1478+ 'Phayrh',
1479+ 'Philly',
1480+ 'Phobophobia',
1481+ 'Photos_from_Japan',
1482+ 'Phychd',
1483+ 'PiLLI__ADVENTURE',
1484+ 'Pictures',
1485+ 'PicturesThat_Have_No_Relation_To_Each_Other',
1486+ 'Pink_Lady',
1487+ 'Pink_Sapphire',
1488+ 'Pinkerton',
1489+ 'Pinky_TA',
1490+ 'Pirates_ate_my_neighbors',
1491+ 'Pixel_Plumbers',
1492+ 'Planet_B',
1493+ 'Planet_Chaser',
1494+ 'Plastic',
1495+ 'Please_Insert_Humor',
1496+ 'Plokmans_Misadventures',
1497+ 'Plooshies',
1498+ 'Plum',
1499+ 'PoKeMoN_HEROES',
1500+ 'PoKeMoN_Shiny_Diamond',
1501+ 'PoKemon_Pyrite_Version',
1502+ 'Pocket_Dragon',
1503+ 'Poetry',
1504+ 'Poharex',
1505+ 'Poisonapples',
1506+ 'PokeBall_Z',
1507+ 'PokeSprites',
1508+ 'Poke_ZTX',
1509+ 'Pokedex',
1510+ 'Pokemon_AM',
1511+ 'Pokemon_Amethyst',
1512+ 'Pokemon_Batle_Tent_Reborn',
1513+ 'Pokemon_Battle_Tent_Mania',
1514+ 'Pokemon_Blue_Moon',
1515+ 'Pokemon_Contest_Challenge',
1516+ 'Pokemon_Copa_Version',
1517+ 'Pokemon_DS_Hope_in_Kanto',
1518+ 'Pokemon_Decade',
1519+ 'Pokemon_Delta_Storm',
1520+ 'Pokemon_Dhanmondi_Legends',
1521+ 'Pokemon_Dynamic_Fantasy_Version',
1522+ 'Pokemon_Edge_2009',
1523+ 'Pokemon_FTW',
1524+ 'Pokemon_Gold__Brendan_in_Kanto',
1525+ 'Pokemon_Granite',
1526+ 'Pokemon_Graphite',
1527+ 'Pokemon_Haven',
1528+ 'Pokemon_J_Blaze',
1529+ 'Pokemon_Jade',
1530+ 'Pokemon_Legacy_Version',
1531+ 'Pokemon_Mystery_Dungeon_Legendary_Adventure',
1532+ 'Pokemon_Nightshade_Blossom',
1533+ 'Pokemon_Perils',
1534+ 'Pokemon_Phantom_Flame',
1535+ 'Pokemon_Random_Kanto',
1536+ 'Pokemon_Shadow',
1537+ 'Pokemon_Shroom_Version',
1538+ 'Pokemon_Silver_State_Version',
1539+ 'Pokemon_Soaring_Soul',
1540+ 'Pokemon_Special_The_Sprite_Comic',
1541+ 'Pokemon_Survival',
1542+ 'Pokemon_The_Untold_Legend',
1543+ 'Pokemon_Twist_Of_Fate',
1544+ 'Pokemon_Warpers',
1545+ 'Pokemon_XS',
1546+ 'Pokemon_Yellow_Comics',
1547+ 'Pokemon_yellow_the_sprite_comic',
1548+ 'Poking_FUN',
1549+ 'Polandball',
1550+ 'Politics_The_Tankers_Way',
1551+ 'PolkOut',
1552+ 'PollyMorfs',
1553+ 'Polygon_dot_Wars',
1554+ 'Pooky',
1555+ 'Pop',
1556+ 'Por_Kulpa_del_Moai',
1557+ 'Posted',
1558+ 'PowerTrip',
1559+ 'Powerup_Adventure',
1560+ 'Powerup_Comics',
1561+ 'Prelude',
1562+ 'Present_Day',
1563+ 'Pretarsus',
1564+ 'Pretty_Stump_Bunny',
1565+ 'Prim_and_Proper',
1566+ 'Prince_of_Darkness_IS',
1567+ 'Prince_of_Ice',
1568+ 'Princess_Natsumi',
1569+ 'Professor_Prince',
1570+ 'Professor_Procto',
1571+ 'Project_217',
1572+ 'Project_Cartographer',
1573+ 'Project_Cyber_World',
1574+ 'Project_Demonhunter',
1575+ 'Project_Josprens',
1576+ 'Project_Mango',
1577+ 'Proof_of_Existence',
1578+ 'Prophet_Abel',
1579+ 'Proto_Bio_Crisis_Shock_FES',
1580+ 'Proto_Culture_Comics',
1581+ 'Psych_Ward',
1582+ 'Psycho_Filler_Freakout',
1583+ 'Psycotic_Gestures',
1584+ 'Public_Domain_Funnies',
1585+ 'Public_Misfit_Kids',
1586+ 'Pulp_Fantasy',
1587+ 'Punk_Pink',
1588+ 'Puppets_and_Strings',
1589+ 'Purgatory_Tower',
1590+ 'Pwnd_Randomness',
1591+ 'Pyro_Damo_The_Beginning',
1592+ 'QUANTUM_Rock_of_Ages',
1593+ 'QUEST',
1594+ 'Que_Pasa_Contigo',
1595+ 'Quest_For_Zanvadas',
1596+ 'Quim',
1597+ 'Qwerty',
1598+ 'RAWRNESS',
1599+ 'RE_KINGDOM_HEARTS_Chain_of_Pointlessness',
1600+ 'RIOT_and_FadeOut_From_the_Top',
1601+ 'RPGcrazed',
1602+ 'RPJay',
1603+ 'RSVP_Peace',
1604+ 'RTTT',
1605+ 'Raging_flame_Mizume',
1606+ 'Ragnadventure',
1607+ 'Ragnarok_Online_A_boys_destiny',
1608+ 'Rags_to_Whiskers',
1609+ 'Raidou_Kuzunoha_the_19th',
1610+ 'Rainbow_Carousel',
1611+ 'Raison_Detre',
1612+ 'Rakina',
1613+ 'Rampant_Cynicism',
1614+ 'Random_Chibi',
1615+ 'Random_Gmod_days',
1616+ 'Random_Logic',
1617+ 'Random_Malfuntion',
1618+ 'Random_Megaman',
1619+ 'Random_Moments',
1620+ 'Random_Moments_In_Fire_Emblem',
1621+ 'Random_Plasma_Adventure',
1622+ 'Random_Violence',
1623+ 'Random_stupidity',
1624+ 'Rantamantation',
1625+ 'Rasvaar',
1626+ 'Rated_Douk',
1627+ 'Ravenwood',
1628+ 'Raw_Fish',
1629+ 'Razor_Candy',
1630+ 'Real_Otakus',
1631+ 'Real_Super',
1632+ 'Reality_Stars',
1633+ 'Realm_Adventures',
1634+ 'Rebellion_The_Revival',
1635+ 'Rebound',
1636+ 'Rectangles',
1637+ 'Red_Mantis',
1638+ 'Red_Point',
1639+ 'Red_String',
1640+ 'Redeeming_Fate',
1641+ 'Redemption_of_Heroes',
1642+ 'Refraction',
1643+ 'Regular_Guy',
1644+ 'Reign_of_the_Fallen_Navis',
1645+ 'Reliquary',
1646+ 'Remsi',
1647+ 'Renga_Manga',
1648+ 'Requiem_for_Innocents',
1649+ 'Requiems_Gate',
1650+ 'Retrospect',
1651+ 'Return_Zero',
1652+ 'Return_of_the_Exile',
1653+ 'Revenge_Addict',
1654+ 'Revive_me_Ragnarok_Online_Webcomics',
1655+ 'Revol_The_Original_Strips',
1656+ 'RiTH',
1657+ 'Rick_The_Stick',
1658+ 'Riggs_Hell',
1659+ 'Rileys_notebook',
1660+ 'Rival_Angels',
1661+ 'Riyu_and_Panja',
1662+ 'Robomeks',
1663+ 'Robot_Bandits',
1664+ 'Robot_Chuck',
1665+ 'Robots_In_My_Attic',
1666+ 'Robukkagenerator',
1667+ 'Rock_Band_Blues',
1668+ 'Rogue_Agent_Axl',
1669+ 'Rokan_Cant_Draw_Comics',
1670+ 'Roleplay_101',
1671+ 'Roll_For_Intelligence',
1672+ 'Romeo',
1673+ 'Ronin_Seraph',
1674+ 'Room_Mates',
1675+ 'Rose',
1676+ 'Row_and_Bee',
1677+ 'Rubies',
1678+ 'Ruby',
1679+ 'Ruby_And_Pipers_World_Of_Magical_Pink_Fearie_Unicorns',
1680+ 'Rule_of_Three',
1681+ 'Rules_of_Make_Believe',
1682+ 'Rumf_Adventures',
1683+ 'Rums_Tale',
1684+ 'Rust_and_Brimstone',
1685+ 'Rymes_With_Orange',
1686+ 'Ryosaki_Uzumaki_1',
1687+ 'Ryus_Krew_Museum',
1688+ 'Ryushin_and_Littlerains_comic_rpg',
1689+ 'SECKS',
1690+ 'SONIC_IN_NARUTO_SHINOBI_LAND',
1691+ 'SOPHIA_Awakening',
1692+ 'SOS_Saga',
1693+ 'SPiDERS',
1694+ 'SSB_tourny',
1695+ 'STICKFODDER',
1696+ 'STIX',
1697+ 'STOCKS',
1698+ 'STOLIDUS_LONGINUS',
1699+ 'SUPERSEXY__PINUP_HEROS',
1700+ 'Sack_O_Puppies',
1701+ 'Safety_Man',
1702+ 'Saint_Remy',
1703+ 'Salimah',
1704+ 'Sally_and_Dally',
1705+ 'Salt_The_Holly',
1706+ 'Salt_and_Pepper',
1707+ 'Salvation',
1708+ 'Sam_and_Javon',
1709+ 'Sammy_the_Skunk',
1710+ 'Satans_Evil_Square',
1711+ 'Saviours_X',
1712+ 'Scar',
1713+ 'ScareCrow_Lullaby',
1714+ 'Scarlet',
1715+ 'Schizophrenia_Bloom',
1716+ 'Schools_Are_Prisons',
1717+ 'Schrodinger',
1718+ 'Scorch',
1719+ 'Scrambled_Worlds',
1720+ 'Screwball_Islands',
1721+ 'Screws_Loose',
1722+ 'Scribble',
1723+ 'Scylla',
1724+ 'Seal_of_Destiny',
1725+ 'Searching_For_Mr_Bite',
1726+ 'Second_Wind',
1727+ 'Secret_Adventure',
1728+ 'Secret_Agent_Eddie',
1729+ 'Segcom',
1730+ 'Senshi_Vs_Sentai',
1731+ 'Serious_Lesbian',
1732+ 'Seth_the_Hippo',
1733+ 'Seven_Damnations',
1734+ 'Sex_on_the_Beach',
1735+ 'Shades',
1736+ 'Shades_of_Gray',
1737+ 'Shades_of_Illusion',
1738+ 'Shadixs_Story',
1739+ 'Shadow_Blood',
1740+ 'Shadow_Bridge_2nd_Edition',
1741+ 'Shadow_Force',
1742+ 'Shadow_Fox',
1743+ 'Shadow_Reaver',
1744+ 'Shadow_Self',
1745+ 'Shadow_Sprinters',
1746+ 'Shadow_The_Hedgehog',
1747+ 'Shadow_The_Weirdo',
1748+ 'Shadowflight',
1749+ 'Shaman_Quest',
1750+ 'Shark_Bait',
1751+ 'She_Who_Destroys_Light',
1752+ 'Sherlock_Face',
1753+ 'Shinigami_Less_Than_Symbol_3',
1754+ 'Shining_Wolf',
1755+ 'Shiny_Things',
1756+ 'Ship_in_a_Bottle',
1757+ 'Short_Bus',
1758+ 'Short_Bus_Brothel',
1759+ 'Short_Story_Comics',
1760+ 'Silence_is_Golden',
1761+ 'Silvershot',
1762+ 'Simple',
1763+ 'Sinful',
1764+ 'Sins_Of_Our_Demons',
1765+ 'Sins_of_the_Fallen',
1766+ 'Sir_Ron_Lionhearts_Fantastic_Adventures',
1767+ 'Sire',
1768+ 'Sismonkey',
1769+ 'Sketchorama',
1770+ 'Sketchy',
1771+ 'Sketchy_at_Best',
1772+ 'Skewed_Reality_Origins',
1773+ 'Skunktraining',
1774+ 'Slackerz',
1775+ 'Slackman',
1776+ 'Slam_Dance',
1777+ 'Slice_of_Life',
1778+ 'Slight_Miscalculation',
1779+ 'Slither_and_Friends',
1780+ 'Slugs_of_Mystery',
1781+ 'Sluice',
1782+ 'Small_Wonder',
1783+ 'Smash_Brothers_Evangelion_Wars',
1784+ 'Smash_Hate',
1785+ 'Smelly_Brownies',
1786+ 'Smiley_Pie',
1787+ 'Smoke_Manmuscle_PI',
1788+ 'Smores',
1789+ 'Smug_I_Could_Do',
1790+ 'Snail_Comics',
1791+ 'Snatches',
1792+ 'So_Fantastic_Pork_Show_9oCLOCK',
1793+ 'So_Sequential',
1794+ 'Soapbox_Hill',
1795+ 'Solar_Kiss',
1796+ 'Some_Battling_Monsters',
1797+ 'Some_Notes',
1798+ 'Something_Like_Life',
1799+ 'Something_Original',
1800+ 'Something_To_Do',
1801+ 'Sonic_A_Heroes_Tail',
1802+ 'Sonic_Advance_The_Real_Story',
1803+ 'Sonic_Advanced_Online',
1804+ 'Sonic_Adventure_Chaos_Theory',
1805+ 'Sonic_Bluff',
1806+ 'Sonic_College',
1807+ 'Sonic_Confusion',
1808+ 'Sonic_Destination_Chaos',
1809+ 'Sonic_Doom',
1810+ 'Sonic_Gone_Completely_Wrong',
1811+ 'Sonic_Heroes_Uncut',
1812+ 'Sonic_Icons',
1813+ 'Sonic_Meets_Megaman',
1814+ 'Sonic_MisAdventure_ADVANCE',
1815+ 'Sonic_NC',
1816+ 'Sonic_Overdose',
1817+ 'Sonic_Torment',
1818+ 'Sonic_and_Amy_The_Dark_Doppels',
1819+ 'Sonic_and_Amy_The_Dark_Doppels_Vol_2',
1820+ 'Sonic_and_Amy_The_Dark_Doppels_Vol_3',
1821+ 'Sonic_and_his_comic',
1822+ 'Sonic_and_tails_corner',
1823+ 'Sonic_plus_a_castle',
1824+ 'Sonic_series',
1825+ 'Sonic_the_Hedgehog_2_The_Real_Story',
1826+ 'Sonic_the_Hedgehog_and_the_Black_Emerald',
1827+ 'Sonic_the_Hedgehog_in_the_Comic',
1828+ 'Sonic_with_Brains',
1829+ 'SoulLesser',
1830+ 'Soul_Less',
1831+ 'Soul_Palisade',
1832+ 'Soup',
1833+ 'SpacePatrol',
1834+ 'Space_Flakes',
1835+ 'Spacefighters_on_Earth',
1836+ 'Speeder_and_Red',
1837+ 'Speesheez',
1838+ 'Spike_and_Fuzzy',
1839+ 'Spikey_Hair_Vs_Top_Hat',
1840+ 'Spirit_X',
1841+ 'Spitfire',
1842+ 'Splash_Damage',
1843+ 'Splash_Damage_Extra_Stuff',
1844+ 'Splices_of_Life',
1845+ 'Sprite_City',
1846+ 'Sprite_Life___Nineteen_Eternal',
1847+ 'Sprite_Rejects',
1848+ 'Sprite_Wars',
1849+ 'Sprited_in_Real_Life',
1850+ 'Spritely',
1851+ 'Spyr',
1852+ 'Square',
1853+ 'Square_One',
1854+ 'Squircle',
1855+ 'Stack_of_Buttons',
1856+ 'Stanleys_Place',
1857+ 'StarFox_Hunters_Journal',
1858+ 'Star_Crossed_Destiny',
1859+ 'Star_Trax',
1860+ 'Star_Wars_Tales__Fury_and_Intensity',
1861+ 'Starcraft',
1862+ 'Startoons_Super_Force',
1863+ 'Stealth',
1864+ 'Stetson_Kennedy',
1865+ 'Stickguy',
1866+ 'Sticking_Sporks_in_Something_Else',
1867+ 'Stickman_and_Cube',
1868+ 'Stolen_Blood',
1869+ 'Stories_of_Strangeness',
1870+ 'Stormclaw_Shadows',
1871+ 'Story_of_My_Life',
1872+ 'Strawberry_Death_Cake',
1873+ 'Stripes_of_Life',
1874+ 'Stripper_Rippers',
1875+ 'Stuftassic_Park',
1876+ 'Stupidity_in_Magic',
1877+ 'Stupidity_is_a_Virtue',
1878+ 'Styles',
1879+ 'SubStandard_Comics',
1880+ 'Subsidery',
1881+ 'Subway_and_Julian',
1882+ 'Such_A_Simple_Life',
1883+ 'Such_Is_Life',
1884+ 'Sugarcoat',
1885+ 'Summer_Fangs',
1886+ 'Sunset_Grill',
1887+ 'Supacat',
1888+ 'Super_Haters',
1889+ 'Super_Heights',
1890+ 'Super_Larry',
1891+ 'Super_Mario_And_Luigi_Adventures',
1892+ 'Super_Mario_RPG_2',
1893+ 'Super_Shroom',
1894+ 'Super_Smash_Bros_Royale',
1895+ 'Super_Temps',
1896+ 'Superman_Comics',
1897+ 'Supermassive_Black_Hole_A_Star',
1898+ 'Supernaturals_Presents',
1899+ 'Surreal_pseudophotographic_thought_diary',
1900+ 'Sword_in_Hand',
1901+ 'Sword_of_Heaven',
1902+ 'Sword_of_Tears',
1903+ 'Swordsong',
1904+ 'Syndicate',
1905+ 'Synthetic_Aggressive_Trilobite',
1906+ 'TAK',
1907+ 'TCCPC',
1908+ 'TCCPC_1',
1909+ 'TFGMs_Doodles',
1910+ 'THANG_THANG',
1911+ 'THE_FALL',
1912+ 'THE_KIBA_CHRONICLES',
1913+ 'TOASTERHEAD',
1914+ 'TORNEO_CLM',
1915+ 'TV_Man',
1916+ 'T_and_S',
1917+ 'Taco_El_Gato_Issue_2',
1918+ 'Tails_female_twin',
1919+ 'Taint_of_Exile',
1920+ 'Tainted_White',
1921+ 'Takiras_Secret_Realm',
1922+ 'Tales_from_Two_Tiny_Tittybars',
1923+ 'Tales_of_Rayqui',
1924+ 'Tales_of_Strange',
1925+ 'Tales_of_the_Traveling_Gnome',
1926+ 'Tama_Chronicles',
1927+ 'Tama_Krato',
1928+ 'Tamashi_no_hon',
1929+ 'Tangerines',
1930+ 'Tankadin',
1931+ 'Tantei_Deka',
1932+ 'Taste_my_Beanpaste',
1933+ 'Tater_and_Farces_MSPaint_Video_Game_Comic_Assfuck_Jamboree',
1934+ 'Team_Heroes',
1935+ 'Team_Rainbow',
1936+ 'Ted_The_Terrible_Superhero',
1937+ 'Ted_and_Zed',
1938+ 'Temp_Test',
1939+ 'Tenacious_D_The_sprite_comic',
1940+ 'Tera_Forming',
1941+ 'Terra_online_comic',
1942+ 'Terran_Sandz',
1943+ 'That_Damn_Furby',
1944+ 'That_Lucas_Curl',
1945+ 'That_Which_Is_Summoned',
1946+ 'Thats_Comical',
1947+ 'TheNewLuciefer',
1948+ 'The_12the_Planet',
1949+ 'The_3rd',
1950+ 'The_7th_hurt_soul',
1951+ 'The_Adept',
1952+ 'The_Adventure_of_the_Goat_Chin_Pirates',
1953+ 'The_Adventures_of_Crunch_Crakerton',
1954+ 'The_Adventures_of_Hybrid',
1955+ 'The_Adventures_of_Master_Chief',
1956+ 'The_Adventures_of_Starbuck_Jones',
1957+ 'The_Adventures_of_Steven_and_Joe',
1958+ 'The_Adventures_of_kirby_and_the_semi_amazing_town_of_threed',
1959+ 'The_Amazing_Kiteboy',
1960+ 'The_Arcadia_Anthology',
1961+ 'The_Art_of_Joe_Jarin',
1962+ 'The_Asim_Stone',
1963+ 'The_Auragon_Base',
1964+ 'The_Author_Realm',
1965+ 'The_Authors_Corner',
1966+ 'The_Awkward_Communicator',
1967+ 'The_Black_Flag',
1968+ 'The_Black_Scale',
1969+ 'The_Blazing_Storm_Tournament',
1970+ 'The_Broken',
1971+ 'The_Burned',
1972+ 'The_CHOSEN',
1973+ 'The_Carriers',
1974+ 'The_Chelation_Kid',
1975+ 'The_Chronicles_of_Wyrden',
1976+ 'The_Chronicles_of_Your_Mom',
1977+ 'The_Comical_Bit_o_Time_Wasting_Nonsense',
1978+ 'The_Compozerz',
1979+ 'The_Continentals',
1980+ 'The_Corner_Store_Crew',
1981+ 'The_Corvette_Game',
1982+ 'The_Cristmas_Spirit',
1983+ 'The_Crossroads',
1984+ 'The_Crypt_Kid',
1985+ 'The_Cure',
1986+ 'The_Curious_Adventures_of_Aldus_Maycombe',
1987+ 'The_Dark_Truth',
1988+ 'The_Darkness_Returns',
1989+ 'The_Dashing_Rogue',
1990+ 'The_Death_of_Sydney_Walls',
1991+ 'The_Deed',
1992+ 'The_Deity',
1993+ 'The_Deletion',
1994+ 'The_Demon_Inside',
1995+ 'The_Devon_Legacy_Random_Art',
1996+ 'The_Djinn_Jihad',
1997+ 'The_Door',
1998+ 'The_Dragon_Fists_of_Smorty_Smythe',
1999+ 'The_Dreggs',
2000+ 'The_ECS_Strips',
2001+ 'The_Electric_Owl',
2002+ 'The_Elemental_Storm_Volume_4',
2003+ 'The_Endlessly_Agonizing_Sufferings_of_Miranda_the_Emo_Balloon',
2004+ 'The_Ends',
2005+ 'The_Ensuing_Tales_of_Jayden_and_Crusader',
2006+ 'The_Epic',
2007+ 'The_Epic_237',
2008+ 'The_Epic_goes_to_Hell',
2009+ 'The_Errant_Apprentice',
2010+ 'The_Exaggerated_Life_Story',
2011+ 'The_Facts_of_Life',
2012+ 'The_Fantastic_Felixii',
2013+ 'The_Fantastic_Webcomick_of_Archiba_Pews',
2014+ 'The_Farm_story',
2015+ 'The_Featureless_Plane',
2016+ 'The_Fifty_Peso_Ninja',
2017+ 'The_Fighting_Stranger',
2018+ 'The_Final_Phenomenon_ACT_I',
2019+ 'The_Final_Zone',
2020+ 'The_Flaming_Chicken',
2021+ 'The_Forgotten_Memories',
2022+ 'The_Funisher',
2023+ 'The_Garden',
2024+ 'The_Gift_of_the_Gun',
2025+ 'The_Gimblians',
2026+ 'The_Goblin_Apprentice',
2027+ 'The_Gods_are_Laughing_at_us',
2028+ 'The_Gods_of_ArrKelaan',
2029+ 'The_Golden_Sun_Struggle',
2030+ 'The_Green_Room',
2031+ 'The_Greener_Side',
2032+ 'The_Harvest_Lottery',
2033+ 'The_Heist',
2034+ 'The_Holiday_Doctor',
2035+ 'The_Hollow',
2036+ 'The_Horribles',
2037+ 'The_House_of_Other_Worlds',
2038+ 'The_House_of_Sonic',
2039+ 'The_Hub',
2040+ 'The_Hunting',
2041+ 'The_Impractical_Mr_Imp',
2042+ 'The_JDL',
2043+ 'The_KAMics',
2044+ 'The_Kick_Assers',
2045+ 'The_Lamp',
2046+ 'The_Last_Days_of_War',
2047+ 'The_Leftovers',
2048+ 'The_Legend_of_Ample_Alison',
2049+ 'The_Legend_of_Zelda_Echoes_of_Time',
2050+ 'The_Legend_of_Zelda_Palace_of_the_Clockwork_Martinet',
2051+ 'The_Legend_of_Zelda_Souls_of_Darkness',
2052+ 'The_Legend_of_Zelda_The_Sun_Cat',
2053+ 'The_Life_Death_and_Rebirth_of_Elicia',
2054+ 'The_Life_and_Times_of_Copa',
2055+ 'The_Life_of_a_Young_WoW_Addict',
2056+ 'The_Mage_Did_It',
2057+ 'The_Magic_Flute',
2058+ 'The_Magnificent_Misadventures_of_Mustardo',
2059+ 'The_Many_Misfortunes_of_Lady_Luck',
2060+ 'The_Many_Stories_of_Sonic_the_Hedgehog',
2061+ 'The_MatFkkinRix',
2062+ 'The_Meaning_Of_Life',
2063+ 'The_Mighty_Omega',
2064+ 'The_Minimal_Adventures_of_Pippa_and_Cici',
2065+ 'The_Misadventures_Of_Metalix',
2066+ 'The_Misadventures_of_Suicidary_Man',
2067+ 'The_Mobius_Chronicles',
2068+ 'The_Mugen_Comic_Club',
2069+ 'The_Mystery_of_the_Golden_Edge',
2070+ 'The_NEW_Life_Of_TimmY',
2071+ 'The_Nameless_Double_Authored_Comic',
2072+ 'The_NanKan_Agency',
2073+ 'The_New_Amy_Rose',
2074+ 'The_Nineteenth_Century_Industrialist',
2075+ 'The_Ninth_Doctor',
2076+ 'The_Omega_Key',
2077+ 'The_Onett_Suite',
2078+ 'The_Oozer',
2079+ 'The_Open_Minded',
2080+ 'The_Order_vol_1',
2081+ 'The_Other_Side_of_High_School',
2082+ 'The_Pen_is_Mightier',
2083+ 'The_People_That_Melt_in_The_Rain',
2084+ 'The_Perfect_Love_letter',
2085+ 'The_Perfect_Score',
2086+ 'The_Pirate_Terminators',
2087+ 'The_Planet_Closest_To_Heaven',
2088+ 'The_Pond_of_Realms',
2089+ 'The_Pools_of_Zara',
2090+ 'The_Prime_of_Ambition',
2091+ 'The_Princess',
2092+ 'The_Princess_and_the_Giant',
2093+ 'The_Queen_of_Hearts',
2094+ 'The_Railyard',
2095+ 'The_Rambling_Crazy_Man',
2096+ 'The_Random_Stick_Show',
2097+ 'The_Reborn',
2098+ 'The_Red_Prince',
2099+ 'The_Reluctant_Catalyst',
2100+ 'The_Renagades',
2101+ 'The_Repository_of_Dangerous_Things',
2102+ 'The_Retributionist',
2103+ 'The_Return_of_the_Blobs_in_Blue_and_Green',
2104+ 'The_Revenger_Tradgedy',
2105+ 'The_Revolution',
2106+ 'The_Rose_Killer',
2107+ 'The_Rube_Goldberg_Machine',
2108+ 'The_SSA',
2109+ 'The_Savior_of_Hell',
2110+ 'The_Secret_Files_of_MAX',
2111+ 'The_Secret_Lives_Of_Penguins',
2112+ 'The_Secret_life_of_a_Teenage_Sprite_Comic',
2113+ 'The_Sevii_Island_Saga',
2114+ 'The_Shadow_Pokemon_Revived',
2115+ 'The_Shape_of_the_Heart',
2116+ 'The_Ski_Mask_Thug',
2117+ 'The_Sok_Comic',
2118+ 'The_Sonic_Saga',
2119+ 'The_Star_Droids',
2120+ 'The_Stuff_Zone',
2121+ 'The_Stupid_Adventures',
2122+ 'The_Stupid_Adventures_Year_Two',
2123+ 'The_SuperFogeys',
2124+ 'The_Surgeon',
2125+ 'The_Surreal_Adventures_of_Edgar_Allan_Poo',
2126+ 'The_Surrealist',
2127+ 'The_Symbolocity',
2128+ 'The_Symmetrical_Breadpazoid',
2129+ 'The_Thesaian_killers',
2130+ 'The_Traveling_Assist',
2131+ 'The_Trouble_With_Martians',
2132+ 'The_Truth_About_Corey_Strode',
2133+ 'The_Twisted_Life_of_Clifford_Robotnik',
2134+ 'The_Uncanny_Uper_Dave',
2135+ 'The_Unnamed_Fellowship',
2136+ 'The_Untold_Legends_of_Ice',
2137+ 'The_Urban_Knight',
2138+ 'The_Urban_Legends',
2139+ 'The_Water_Phoenix_King',
2140+ 'The_Way_of_the_Flaim',
2141+ 'The_Weapon',
2142+ 'The_Webcomic_Review_Comic_On_The_Web',
2143+ 'The_Weekly_Life_in_Simons_Basement',
2144+ 'The_Winged_One',
2145+ 'The_Wonderful_Adventures_of_Everyday_Life',
2146+ 'The_World_According_to_Mongruels',
2147+ 'The_World_Robot_Competition',
2148+ 'The_World_Tournament',
2149+ 'The_World_of_Higal',
2150+ 'The_Wrong_Hero',
2151+ 'The_Y_Team',
2152+ 'The_Young_Defenders',
2153+ 'The__Flea',
2154+ 'The_lost_boys_of_hometown',
2155+ 'The_most_random_sprite_comic_in_the_whole_entire_world',
2156+ 'The_new_Megaman',
2157+ 'The_story_of_Quark',
2158+ 'The_true_Kingdom_Hearts',
2159+ 'The_world_of_Stickmen',
2160+ 'There_Life',
2161+ 'They_All_Bleed_the_Same',
2162+ 'Thing_Thing_The_comic',
2163+ 'Things_I_Did_Recently',
2164+ 'Third_World_Think_Tank',
2165+ 'Third_World_Truth',
2166+ 'Thirteen_Under_Seven_The_Manga',
2167+ 'This_Ego_of_Mine',
2168+ 'This_Is_What_I_Do',
2169+ 'Thistil_Mistil_Kistil',
2170+ 'Thog_Infinitron',
2171+ 'Thorns_on_a_Rose',
2172+ 'Thoughts_Of_the_Judicous',
2173+ 'Threshold',
2174+ 'Tides_of_Hopes',
2175+ 'Tim_and_Steph_get_married',
2176+ 'Time_Breakers',
2177+ 'Time_Killers',
2178+ 'Times_Like_This',
2179+ 'Timestone',
2180+ 'Timothy_Green',
2181+ 'TnT_the_Comic',
2182+ 'To_Be_Loved',
2183+ 'TogetherInMind',
2184+ 'Tokyo_101',
2185+ 'Tomb_of_the_King',
2186+ 'Tomb_of_the_King_2',
2187+ 'Toshubis_pinup_and_fanart',
2188+ 'Total_Immersion',
2189+ 'Totally_Cool_Comic',
2190+ 'Touch_and_Go_Tommy',
2191+ 'Toy_Story_X',
2192+ 'Toys_vs_Toys',
2193+ 'Tozzer',
2194+ 'Tracking_Inspiration',
2195+ 'Trail_Mix',
2196+ 'Travesty_of_the_Night',
2197+ 'Triangular_Hats',
2198+ 'Trinity_Legends_of_Zevera',
2199+ 'Trip',
2200+ 'Trolling_Around',
2201+ 'Troop_37',
2202+ 'Troop_of_Bad_Angels',
2203+ 'True_Power',
2204+ 'Try_Everything_Once',
2205+ 'Tsubasa_Randomness',
2206+ 'Tsubomi_Blue_Dreams',
2207+ 'Tweedledum',
2208+ 'Twisted_Chronicles',
2209+ 'Twisted_Logic',
2210+ 'Twisted_Mirrors',
2211+ 'TwoMoons',
2212+ 'Two_Faces_One_Coin',
2213+ 'Two_Strings',
2214+ 'Two_Weeks_Notice',
2215+ 'Two_pods_in_a_pea',
2216+ 'Twonks_and_Plonkers',
2217+ 'Tygar',
2218+ 'Tyler_This_is_Your_Life',
2219+ 'Tylerth',
2220+ 'USB',
2221+ 'USB_Extras',
2222+ 'U_Chuu_No_Hoshi_Hotoshi_Tsuko',
2223+ 'Uber1337',
2224+ 'Ukeke_and_Shyguys_Adventures_and_Stuff',
2225+ 'Ultimate_tourny_of_ultimate_fighting',
2226+ 'UnNatural_Order',
2227+ 'Under_CONstruction',
2228+ 'Under_an_Alien_Star',
2229+ 'Under_the_Helmet',
2230+ 'Unfunny_comics',
2231+ 'Unicorns_and_Razorblades',
2232+ 'Unique',
2233+ 'University_Plus_1',
2234+ 'Unknown_Experiement',
2235+ 'Unknown_Feathers',
2236+ 'Unlife_is_Unfair',
2237+ 'Unlucky_In_A_Tin_Can',
2238+ 'Unmature',
2239+ 'Unplotful',
2240+ 'Unsound_of_Mind',
2241+ 'Unsung_Heroes_Of_Subtlety',
2242+ 'Untitled_Comic',
2243+ 'Urban_Legends',
2244+ 'Used_Books',
2245+ 'Used_Books_Bios',
2246+ 'VP_Fancomics',
2247+ 'VUS',
2248+ 'Vampire_Phantasm_X',
2249+ 'Vampire_Rising',
2250+ 'VampyrFetal',
2251+ 'Vanguard',
2252+ 'Vegetarian_Zombies',
2253+ 'Verge_the_Paranormal_Detective',
2254+ 'Versus',
2255+ 'Vi_is_Manor',
2256+ 'Vibes_And_The_OtherKinds',
2257+ 'Vic_and_Edwards',
2258+ 'Vice_and_Virtue',
2259+ 'Victory_Theme',
2260+ 'Vieil_Etang',
2261+ 'Viera_Dimension',
2262+ 'Vigil_1to_4',
2263+ 'Vile_Withering',
2264+ 'Villainy_Minor',
2265+ 'Villans_Untld',
2266+ 'Villian_Next_Door',
2267+ 'Vinnie_and_Debrah',
2268+ 'Vinny_the_Villain',
2269+ 'Virtual_reality',
2270+ 'Visible_Invaders_From_Beyond',
2271+ 'Vivid_Imagery',
2272+ 'Vultures_Eat_the_Dead',
2273+ 'WGO',
2274+ 'WHACKED',
2275+ 'WIRES',
2276+ 'WIRES_2',
2277+ 'WIRES_3',
2278+ 'WWE_The_Comic',
2279+ 'W_V_W',
2280+ 'Wakon_Yosai',
2281+ 'Wallys',
2282+ 'Warped_Archive',
2283+ 'WarriorBorn',
2284+ 'Warriors_of_the_night',
2285+ 'Wasteland',
2286+ 'Wave',
2287+ 'Way_the_Cookie_Crumbles',
2288+ 'Wayfinder',
2289+ 'Weave',
2290+ 'WeirdStar',
2291+ 'Weird_Adventures_in_Unemployment',
2292+ 'Weird_Void',
2293+ 'Welcome_To_Border_City',
2294+ 'Well_crap',
2295+ 'Wer_Carastrix_Thaczil',
2296+ 'WetComa',
2297+ 'What_I_Learned_Today',
2298+ 'What_The_Fucking_Shit_Fuck_Ass_Fuck_Is_Mario_Gonna_Do_Now',
2299+ 'What_You_Dont_See',
2300+ 'What_happens_when_theyre_not_working',
2301+ 'What_is_Super',
2302+ 'What_is_this',
2303+ 'Whateverland_USA',
2304+ 'When_Sunlight_Skips',
2305+ 'White_Noise',
2306+ 'Why_Not',
2307+ 'Wibble',
2308+ 'WiffleWorld',
2309+ 'Wild_Heart',
2310+ 'William_Feist__Paranormal_Investigator',
2311+ 'Willow_And_Timothy',
2312+ 'Wind_Riders',
2313+ 'Wintergreen',
2314+ 'Wish',
2315+ 'With_All_Your_Might',
2316+ 'Within_Shadows',
2317+ 'Woah_Roscoe',
2318+ 'Wolf',
2319+ 'Wolfeye_City',
2320+ 'Wolfies_World',
2321+ 'Women',
2322+ 'Wonkedo',
2323+ 'WoolleyComix',
2324+ 'Woolley_Thinking',
2325+ 'Workdays',
2326+ 'World_Domination_Plan_Z',
2327+ 'World_One',
2328+ 'World_of_Orenda',
2329+ 'Wrinkles',
2330+ 'WyrmLaird',
2331+ 'XAZ_A_Megaman_X_Fancomic',
2332+ 'Xenoes_313',
2333+ 'Xiomania',
2334+ 'Xs_everyday_life',
2335+ 'YO_Comix',
2336+ 'YU_GI_OH_NL',
2337+ 'Yamase',
2338+ 'Yamete_Kudasai',
2339+ 'Yaoi_Seth',
2340+ 'Year_of_the_Turtle',
2341+ 'Yheilm_Wide_Tragedy',
2342+ 'Yoshi_Saga',
2343+ 'Young_Studs',
2344+ 'Your_Number_One_Bishounen',
2345+ 'Youre_So_Gay',
2346+ 'Youre_mine',
2347+ 'ZODIAC_An_Anthropomorphic_Web_Comic',
2348+ 'ZaWorld_Zero',
2349+ 'Zephyr_of_Fate',
2350+ 'Zero7',
2351+ 'Zero_G',
2352+ 'Zo__Adventures',
2353+ 'ZomBen',
2354+ 'Zombi_Minacity',
2355+ 'Zombie_Mojo',
2356+ 'Zombiepocalypse',
2357+ 'Zombies_Are_People_Too',
2358+ 'Zuber_Zakari',
2359+ 'a_devils_life',
2360+ 'action',
2361+ 'amoebaville',
2362+ 'an_unencumbered_postbox',
2363+ 'and_Id',
2364+ 'andilire',
2365+ 'binary_cupcakes',
2366+ 'blackheart',
2367+ 'buski_and_shnop',
2368+ 'civil_war',
2369+ 'delightfully_evil',
2370+ 'desolation_angel_tango',
2371+ 'devil_grass',
2372+ 'dickandfart',
2373+ 'digimon_break',
2374+ 'disaffection',
2375+ 'disorder_and_disarray',
2376+ 'ePUNKS',
2377+ 'eliada',
2378+ 'estuche_patito_cuakman',
2379+ 'eternal_darkness',
2380+ 'featuring_Talking_Guinea_Pigs',
2381+ 'geebo',
2382+ 'girl_robot',
2383+ 'greenbrook',
2384+ 'greys_journey',
2385+ 'hardKORE_Legends',
2386+ 'hiro',
2387+ 'just_junk',
2388+ 'just_random',
2389+ 'kAI',
2390+ 'l_Anachrotist',
2391+ 'laughAlittle',
2392+ 'light_within_shadow',
2393+ 'mr_Sandman',
2394+ 'mr_red_and_mr_blue',
2395+ 'my_bloody_nobelen',
2396+ 'nerdStrip',
2397+ 'nicola_and_belmondo',
2398+ 'oldguy_and_young_guy',
2399+ 'operation_blakck_sun',
2400+ 'planet_of_the_sonic',
2401+ 'pokemon_war',
2402+ 'project_kokiro',
2403+ 'prophecy',
2404+ 'public_humiliation',
2405+ 'pyroicon',
2406+ 'random_anime_fanart_comics',
2407+ 'random_ass_friday_comics',
2408+ 'say_hello',
2409+ 'shinji_the_great_freak',
2410+ 'shonenpunk',
2411+ 'signifikat',
2412+ 'simply_sarah',
2413+ 'sonic_vs_life',
2414+ 'sonicsomething',
2415+ 'soulflare',
2416+ 'stickhappens',
2417+ 'story_irc',
2418+ 'stupid_machine_comics',
2419+ 'superSUPER',
2420+ 'super_smash_bros_omega',
2421+ 'te_quiero_____matar',
2422+ 'the_Grim_Sibz',
2423+ 'the_kibble_legion',
2424+ 'the_life_and_times_of_tammie',
2425+ 'the_milkyway',
2426+ 'the_random_archives_of_TJ',
2427+ 'the_untold_legend_of_pokemon',
2428+ 'toolagged',
2429+ 'trythesoup',
2430+ 'umm',
2431+ 'unlingual',
2432+ 'wanderblue_shorts',
2433+ 'watchdogs',
2434+ 'what_errant_beast',
2435+ 'word',
2436+ 'xAll_Things_Consideredx',
2437+ 'yay_ponys',
2438+ 'yoshi_freaks_real_life',
2439+ 'zuchini',
2440+ ]
2441+
2442+for shortName in duckComics:
2443+ globals()[shortName] = drunkDuck(shortName)
2444
2445=== modified file 'dosage/plugins/k.py'
2446--- dosage/plugins/k.py 2010-01-12 04:38:29 +0000
2447+++ dosage/plugins/k.py 2010-01-17 19:41:09 +0000
2448@@ -33,6 +33,13 @@
2449 help = 'Index format: yyyymmdd'
2450
2451
2452+class Kukuburi(BasicScraper):
2453+ latestUrl = 'http://www.kukuburi.com/current/'
2454+ imageUrl = 'http://thaumic.net/%s'
2455+ imageSearch = compile(r'img src="(http://www.kukuburi.com/../comics/.+?)"')
2456+ prevSearch = compile(r'nav-previous.+?"(http.+?)"')
2457+ help = 'Index format: non'
2458+
2459
2460 class KevinAndKell(BasicScraper):
2461 latestUrl = 'http://www.kevinandkell.com/'
2462
2463=== modified file 'dosage/plugins/m.py'
2464--- dosage/plugins/m.py 2010-01-12 03:55:53 +0000
2465+++ dosage/plugins/m.py 2010-01-17 19:41:09 +0000
2466@@ -38,6 +38,13 @@
2467 help = 'Index format: good luck !'
2468
2469
2470+class Meek(BasicScraper):
2471+ latestUrl = 'http://www.meekcomic.com/'
2472+ imageUrl = 'http://www.meekcomic.com/%s'
2473+ imageSearch = compile(r'meekcomic.com(/comics/.+?)"')
2474+ prevSearch = compile(r'\s.+?(http://www.meekcomic.com/.+?)".+?Previous<')
2475+ help = 'Index format: yyyy/mm/dd/ch-p/'
2476+
2477
2478 class MegaTokyo(BasicScraper):
2479 latestUrl = 'http://www.megatokyo.com/'
2480
2481=== modified file 'dosage/plugins/p.py'
2482--- dosage/plugins/p.py 2010-01-12 03:06:22 +0000
2483+++ dosage/plugins/p.py 2010-01-17 19:41:09 +0000
2484@@ -86,6 +86,13 @@
2485 namer = queryNamer('comicid', usePageUrl=True)
2486
2487
2488+class Precocious(BasicScraper):
2489+ latestUrl = 'http://www.precociouscomic.com/'
2490+ imageUrl = 'http://www.precociouscomic.com/comic.php?page=%s'
2491+ imageSearch = compile(r'(archive/strips/.+?)"')
2492+ prevSearch = compile(r'First.+?(comic.php\?page=.+?)">Previous<')
2493+ help = 'Index format: n (unpadded)'
2494+
2495
2496 class PvPonline(BasicScraper):
2497 latestUrl = 'http://www.pvponline.com/'
2498
2499=== modified file 'dosage/plugins/z.py'
2500--- dosage/plugins/z.py 2010-01-15 06:17:39 +0000
2501+++ dosage/plugins/z.py 2010-01-17 19:41:09 +0000
2502@@ -1,7 +1,6 @@
2503-import urllib
2504 from re import compile
2505
2506-from dosage.helpers import BasicScraper, indirectStarter
2507+from dosage.helpers import BasicScraper
2508
2509
2510 class Zapiro(BasicScraper):

Subscribers

People subscribed via source and target branches