PennyDreadfulMTG / Penny-Dreadful-Tools

A suite of tools for the Penny Dreadful MTGO community
https://pennydreadfulmagic.com
MIT License
40 stars 28 forks source link

Deadlock on /about/pd updating legality #4300

Closed bakert closed 6 years ago

bakert commented 6 years ago

I don't know why this happens and why it specifically happens on /about/pd. It's something to do with loading the list of interesting cards? It's intermittent but I had four reports in quick succession just now.

Failed to execute INSERT INTO card_legality (format_id, card_id, legality) SELECT 34, bq.id, 'Legal' FROM ( SELECTu.idASid,u.layoutASlayout,u.idAS face_id, CASE WHEN layout = 'double-faced' OR layout = 'flip' THEN GROUP_CONCAT(CASE WHENu.position = 1 THEN face_name ELSE '' END SEPARATOR '') WHEN layout = 'meld' THEN GROUP_CONCAT(CASE WHENu.position = 1 ORu.position = 2 THEN face_name ELSE '' END SEPARATOR '') ELSE GROUP_CONCAT(face_name SEPARATOR ' // ' ) END AS name, GROUP_CONCAT(u.mana_costSEPARATOR '|') ASmana_cost, CASE WHEN layout = 'split' OR layout = 'aftermath' THEN SUM(u.cmc) WHEN layout = 'meld' THEN SUM(CASE WHENu.position = 1 ORu.position = 2 THEN cmc ELSE 0 END) ELSE SUM(CASE WHENu.position = 1 THENu.cmc ELSE 0 END) END AS cmc, GROUP_CONCAT(CASE WHENu.position = 1 THENu.powerELSE '' END SEPARATOR '') ASpower, GROUP_CONCAT(CASE WHENu.position = 1 THENu.toughnessELSE '' END SEPARATOR '') AStoughness, GROUP_CONCAT(CASE WHENu.position = 1 THENu.loyaltyELSE '' END SEPARATOR '') ASloyalty, CASE WHEN layout = 'meld' THEN GROUP_CONCAT(CASE WHENu.position = 1 ORu.position = 2 THEN type ELSE '' END SEPARATOR '') ELSE GROUP_CONCAT(CASE WHENu.position = 1 THEN type ELSE '' END SEPARATOR '') END AS type, GROUP_CONCAT(u.text` SEPARATOR '
') AS text, GROUP_CONCAT(u.search_text SEPARATOR '
') AS search_text, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.image_name ELSE '' END SEPARATOR '') AS image_name, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.hand ELSE '' END SEPARATOR '') AS hand, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.life ELSE '' END SEPARATOR '') AS life, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.starter ELSE '' END SEPARATOR '') AS starter, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.position ELSE '' END SEPARATOR '') AS position,
CASE
WHEN layout = 'double-faced' OR layout = 'flip' THEN
GROUP_CONCAT(CASE WHEN u.position = 1 THEN name_ascii ELSE '' END SEPARATOR '')
WHEN layout = 'meld' THEN
GROUP_CONCAT(CASE WHEN u.position = 1 OR u.position = 2 THEN name_ascii ELSE '' END SEPARATOR '')
ELSE
GROUP_CONCAT(name_ascii SEPARATOR ' // ' )
END
AS name_ascii, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.card_id ELSE '' END SEPARATOR '') AS card_id,
GROUP_CONCAT(face_name SEPARATOR '|') AS names,
legalities,
pd_legal,
bugs
FROM (
SELECT c.id, c.layout, f.mana_cost, f.cmc, f.power, f.toughness, f.loyalty, f.type, f.text, f.search_text, f.image_name, f.hand, f.life, f.starter, f.position, f.name_ascii, f.card_id, f.name AS face_name,
pd_legal,
legalities
FROM
card AS c
INNER JOIN
face AS f ON c.id = f.card_id
LEFT JOIN (
SELECT
cl.card_id,
SUM(CASE WHEN cl.format_id = 34 THEN 1 ELSE 0 END) > 0 AS pd_legal,
GROUP_CONCAT(CONCAT(fo.name, ':', cl.legality)) AS legalities
FROM
card_legality AS cl
LEFT JOIN
format AS fo ON cl.format_id = fo.id
GROUP BY
cl.card_id
) AS cl ON cl.card_id = c.id
GROUP BY
f.id
ORDER BY
f.card_id, f.position
) AS u
LEFT JOIN (
SELECT
cb.card_id,
GROUP_CONCAT(CONCAT(cb.description, '|', cb.classification, '|', cb.last_confirmed, '|', cb.url, '|', cb.from_bug_blog) SEPARATOR 'SEPARATOR') AS bugs
FROM
card_bug AS cb
GROUP BY
cb.card_id
) AS bugs ON u.id = bugs.card_id
WHERE u.id IN (SELECT c.id FROM card AS c INNER JOIN face AS f ON c.id = f.card_id WHERE (1 = 1))
GROUP BY u.id
) AS bq
WHERE name IN ('Nemesis Trap', 'Skirk Prospector', 'Airborne Aid', 'Runaway Carriage', 'Woolly Spider', 'Zarichi Tiger', 'Skittering Invasion', 'Paragon of Fierce Defiance', 'Flayed Nim', 'Foot Soldiers', 'Dragonsoul Knight', 'Springsage Ritual', 'Temur Ascendancy', 'Fresh Volunteers', 'Heirs of Stromkirk', 'Hunting Kavu', 'Hearthcage Giant', 'Sigil of Distinction', 'Alley Evasion', 'Hypnotic Siren', 'Briarpack Alpha', 'Clone Shell', 'Lightning Elemental', 'Pulsating Illusion', 'Gleam of Battle', 'Conclave''s Blessing', 'Ulcerate', 'Bull Rush', 'Stensia Innkeeper', 'Dwarven Ruins', 'Bronze Sable', 'Sangrophage', 'Valleymaker', 'Sleeper Agent', 'Angelic Protector', 'Obscuring Aether', 'Gaea''s Revenge', 'Chimeric Coils', 'Brothers of Fire', 'Misguided Rage', 'Demonfire', 'Gravebind', 'Carnifex Demon', 'Scab-Clan Mauler', 'Circu, Dimir Lobotomist', 'Riot Control', 'Goblin Fireslinger', 'Radiant''s Dragoons', 'Mistform Ultimus', 'Lightning Cloud', 'Moonring Island', 'Wine of Blood and Iron', 'Frost Lynx', 'Herald of the Host', 'Illusionary Forces', 'Séance', 'Psychotic Episode', 'Cliffrunner Behemoth', 'Korozda Monitor', 'Watcher of the Roost', 'Emmara Tandris', 'Frontline Medic', 'Lay Waste', 'Coax from the Blind Eternities', 'Magus of the Arena', 'Gemhide Sliver', 'Battleground Geist', 'Dispeller''s Capsule', 'Eyeblight''s Ending', 'Treasure Keeper', 'Nature''s Ruin', 'Dunerider Outlaw', 'Reduce in Stature', 'Bone Harvest', 'Amoeboid Changeling', 'Ordeal of Erebos', 'Charnelhoard Wurm', 'Blood Celebrant', 'Metal Fatigue', 'Iona''s Judgment', 'Sylvan Basilisk', 'Flurry of Wings', 'Eater of Hope', 'Shinen of Life''s Roar', 'Forge Devil', 'Chlorophant', 'Seismic Strike', 'Angel of Flight Alabaster', 'Thunderous Wrath', 'Corrosive Mentor', 'Endless Ranks of the Dead', 'Keepsake Gorgon', 'Hired Torturer', 'Speedway Fanatic', 'Cowed by Wisdom', 'Seeker of Insight', 'Orzhov Euthanist', 'Nim Devourer', 'Brink of Disaster', 'Djeru, With Eyes Open', 'Beacon Hawk', 'Frontline Devastator', 'Skarrgan Skybreaker', 'Shu General', 'Rhonas''s Stalwart', 'Crawling Sensation', 'Hyalopterous Lemure', 'Sisay''s Ring', 'Chasm Guide', 'Urbis Protector', 'Thirst', 'Grappling Hook', 'Spectral Flight', 'Exava, Rakdos Blood Witch', 'Firefiend Elemental', 'Hunted Wumpus', 'Mana Leech', 'Utvara Scalper', 'Masked Gorgon', 'Spikeshot Goblin', 'Merfolk Looter', 'Colos Yearling', 'Voice of Reason', 'Armored Transport', 'Flamekin Bladewhirl', 'Krark-Clan Ogre', 'Bog Wraith', 'Bitter Revelation', 'Hell-Bent Raider', 'Gatecreeper Vine', 'Mudhole', 'Arctic Aven', 'War Priest of Thune', 'Infiltration Lens', 'Hisoka''s Guard', 'Dread Slaver', 'Kulrath Knight', 'Mishra''s Groundbreaker', 'Artisan of Forms', 'Peregrine Mask', 'Ruthless Disposal', 'Eyes of the Watcher', 'Dead Drop', 'Glissa''s Courier', 'Frostburn Weird', 'Tangle Mantis', 'Nyxborn Shieldmate', 'Victory''s Herald', 'Pyrrhic Revival', 'Infuse', 'Melira''s Keepers', 'Bogbrew Witch', 'Mortuary', 'Dwynen, Gilt-Leaf Daen', 'Veilborn Ghoul', 'Banshee', 'Aetherborn Marauder', 'Calculated Dismissal', 'Embalmer''s Tools', 'Vile Requiem', 'Sluggishness', 'Gustrider Exuberant', 'Falkenrath Exterminator', 'Cultist''s Staff', 'Stealer of Secrets', 'Rushwood Herbalist', 'Skyshroud Archer', 'Reap the Seagraf', 'Balshan Beguiler', 'Magosi, the Waterveil', 'Dying Wail', 'Unconventional Tactics', 'Dragonlord''s Prerogative', 'Volcanic Upheaval', 'Oakheart Dryads', 'Mortuary Mire', 'Erdwal Illuminator', 'Alchor''s Tomb', 'Rootwalla', 'Phobian Phantasm', 'Pyromancer''s Assault', 'Daru Stinger', 'Cankerous Thirst', 'Orcish Artillery', 'Cryptic Serpent', 'Skyclaw Thrash', 'Zealous Guardian', 'Falkenrath Reaver', 'Kozilek''s Sentinel', 'Valakut Invoker', 'Axegrinder Giant', 'Pious Warrior', 'Wiitigo', 'Unnerving Assault', 'Howlgeist', 'Stag Beetle', 'Force of Savagery', 'Jinxed Idol', 'Convulsing Licid', 'Sphinx of Lost Truths', 'Rain of Rust', 'Blanchwood Armor', 'Scourge Wolf', 'Throne of Empires', 'Azure Mage', 'Slither Blade', 'Razor Swine', 'Leechridden Swamp', 'Blaze Commando', 'Hazardous Conditions', 'Mwonvuli Beast Tracker', 'Brass Gnat', 'Kederekt Parasite', 'Scroll of Griselbrand', 'Gustcloak Sentinel', 'Savage Twister', 'Krosan Groundshaker', 'Oracle of Bones', 'Signal the Clans', 'Awaken the Bear', 'Halfdane', 'Strongarm Tactics', 'Craw Giant', 'Sunken Hope', 'Djeru''s Resolve', 'Putrefax', 'Bond of Agony', 'Elf Replica', 'Flowstone Overseer', 'Thundering Spineback', 'Phyrexian Grimoire', 'Gobhobbler Rats', 'Centaur Courser', 'Dawnbringer Charioteers', 'Belligerent Brontodon', 'Shell Skulkin', 'Fog Bank', 'Bazaar Krovod', 'Martyr''s Cry', 'Warfire Javelineer', 'Firemind''s Foresight', 'Geist of the Lonely Vigil', 'Pulling Teeth', 'Evangelize', 'Fathom Feeder', 'Hoarding Dragon', 'Tempting Licid', 'Waves of Aggression', 'Iron Myr', 'Alms Beast', 'Ulrich''s Kindred', 'Skittish Valesk', 'Sliversmith', 'Feast of Flesh', 'Rigging Runner', 'Shield of the Ages', 'Twinstrike', 'Rust Scarab', 'Beacon Behemoth', 'Alpha Authority', 'Goblin Assault', 'Llanowar Mentor', 'Dreadwaters', 'Angry Mob', 'Trusty Machete', 'Skulking Ghost', 'Wicked Pact', 'Frontier Mastodon', 'Eldrazi Obligator', 'Asphyxiate', 'Miner''s Bane', 'Branching Bolt', 'Kor Duelist', 'Treetop Bracers', 'Spectra Ward', 'Thoughtrender Lamia', 'Master the Way', 'Elemental Uprising', 'Infectious Bloodlust', 'Merfolk Mesmerist', 'Savage Stomp', 'Master Decoy', 'Aetherling', 'Goblin Raider', 'Spawnsire of Ulamog', 'Gremlin Mine', 'Prowler''s Helm', 'Universal Solvent', 'Long Road Home', 'Deadeye Harpooner', 'Gorehorn Minotaurs', 'Street Spasm', 'Mire''s Malice', 'Dawnfeather Eagle', 'Yixlid Jailer', 'Fallow Earth', 'Reverse Engineer', 'Burning Vengeance', 'Door to Nothingness', 'Thran Golem', 'Juju Bubble', 'Blood Frenzy', 'Ebony Treefolk', 'Galvanic Alchemist', 'Artisan''s Sorrow', 'Macetail Hystrodon', 'Sokenzan Renegade', 'Canyon Wildcat', 'Giant Spider', 'Mistblade Shinobi', 'Weaver of Currents', 'Traitor''s Roar', 'Arrogant Bloodlord', 'Falling Timber', 'Phyrexian Hulk', 'Weathered Bodyguards', 'Birthing Hulk', 'Icatian Lieutenant', 'Certain Death', 'Aether Snap', 'Ovinize', 'Goblin Digging Team', 'Illuminate', 'Totem-Guide Hartebeest', 'Keldon Berserker', 'Razorfoot Griffin', 'Troll Ascetic', 'Swashbuckling', 'Aspect of Mongoose', 'Discordant Dirge', 'Nef-Crop Entangler', 'Munda, Ambush Leader', 'Nessian Demolok', 'Mindmelter', 'Ghitu Firebreathing', 'Aphotic Wisps', 'Phyrexian Ingester', 'Dauthi Cutthroat', 'Long-Finned Skywhale', 'Garrulous Sycophant', 'Desolation Twin', 'Eyeblight Assassin', 'Ronom Serpent', 'Howling Wolf', 'Goblin Sky Raider', 'Cetavolver', 'Akroan Line Breaker', 'Forsaken Sanctuary', 'Gideon''s Lawkeeper', 'Aeronaut Admiral', 'Outnumber', 'Damping Engine', 'Elvish Pathcutter', 'Soul Shred', 'Captain''s Claws', 'Chub Toad', 'Wakestone Gargoyle', 'Scion of Ugin', 'Dromosaur', 'Turn the Tables', 'Manglehorn', 'Defensive Maneuvers', 'Timbermare', 'Suffer the Past', 'Disaster Radius', 'Blood Ogre', 'Cloistered Youth', 'Power of Fire', 'Trace of Abundance', 'Sunhome Enforcer', 'Highspire Infusion', 'Autumnal Gloom', 'Archmage Ascension', 'By Force', 'Sedraxis Alchemist', 'Primeval Light', 'Fathom Fleet Cutthroat', 'Kavu Aggressor', 'Snake Cult Initiation', 'Segmented Krotiq', 'Ramroller', 'Stonecloaker', 'Noxious Dragon', 'Hellraiser Goblin', 'Axebane Guardian', 'Undercity Plague', 'Evangel of Heliod', 'Pride Guardian', 'Bitterblade Warrior', 'Diabolic Revelation', 'Petradon', 'Flame-Kin War Scout', 'Seek the Wilds', 'Banshee of the Dread Choir', 'Hidden Horror', 'Vulshok Battlemaster', 'Putrid Cyclops', 'Coral Helm', 'Killer Bees', 'Chandra''s Revolution', 'Frost Walker', 'Guardian of Tazeem', 'Zulaport Enforcer', 'Flesh-Eater Imp', 'Indulgent Tormentor', 'Press into Service', 'Bringer of the Green Dawn', 'Air Elemental', 'Farbog Revenant', 'Mundungu', 'Phyrexian Prowler', 'Willow Priestess', 'Enraging Licid', 'Plains', 'Forge Armor', 'Daxos of Meletis', 'Drifting Shade', 'Near-Death Experience', 'Sentinel Totem', 'Broodstar', 'Stonebrow, Krosan Hero', 'Ignite Disorder', 'Outrage Shaman', 'Joraga Auxiliary', 'Electrostatic Bolt', 'Stormchaser Chimera', 'Corpse Traders', 'Undying Rage', 'Rubblehulk', 'Savage Knuckleblade', 'Devils'' Playground', 'Tooth and Claw', 'Feral Animist', 'Ulvenwald Observer', 'Waterfront Bouncer', 'Driven // Despair', 'Tangle Hulk', 'Rorix Bladewing', 'Mountain', 'Quicksand', 'Thumbscrews', 'Fated Conflagration', 'Winged Sliver', 'Guardian of Vitu-Ghazi', 'Swell of Courage', 'Imps'' Taunt', 'Desperate Ravings', 'Gilded Cerodon', 'Gilt-Leaf Seer', 'Teroh''s Faithful', 'Cemetery Puca', 'Dusk Imp', 'Ainok Artillerist', 'Dutiful Servants', 'Surging Might', 'Guan Yu''s 1,000-Li March', 'Sidisi''s Pet', 'Goliath Beetle', 'Vizkopa Confessor', 'Looming Altisaur', 'Iceberg', 'Selesnya Charm', 'Hag Hedge-Mage', 'Geistblast', 'Strange Augmentation', 'Razia, Boros Archangel', 'Telim''Tor''s Darts', 'Mindscour Dragon', 'Viashino Fangtail', 'Resourceful Return', 'Mistmeadow Skulk', 'Denizen of the Deep', 'Flametongue Kavu', 'Mind Control', 'Hillcomber Giant', 'Wander in Death', 'Chasm Drake', 'Slate Street Ruffian', 'Dream Prowler', 'Wildsize', 'Mind Bend', 'Cabal Patriarch', 'Countless Gears Renegade', 'Leave No Trace', 'Shivan Hellkite', 'Crocanura', 'Vedalken Plotter', 'Loamdragger Giant', 'Implement of Ferocity', 'Skull Catapult', 'Jwar Isle Avenger', 'Oppressive Rays', 'Clockwork Beetle', 'Domineer', 'Instill Furor', 'Spontaneous Mutation', 'Savage Surge', 'Predatory Nightstalker', 'One-Eyed Scarecrow', 'Mistform Stalker', 'Skywise Teachings', 'Kabuto Moth', 'Dragon-Scarred Bear', 'Wolfkin Bond', 'Hedron Crawler', 'Theft of Dreams', 'Nearheath Chaplain', 'Mina and Denn, Wildborn', 'Firefist Striker', 'Spirit Away', 'Depala, Pilot Exemplar', 'Molting Snakeskin', 'Highborn Ghoul', 'Graverobber Spider', 'Desperate Stand', 'Sword Dancer', 'Gang of Elk', 'Vineweft', 'Nameless One', 'Inspired Sprite', 'Hidden Stag', 'Serum Tank', 'Warden of Geometries', 'Icatian Phalanx', 'Shipwreck Moray', 'Luxa River Shrine', 'Brigid, Hero of Kinsbaile', 'Stolen Goods', 'Barkhide Mauler', 'Mask of Riddles', 'Geist of the Archives', 'Giant Oyster', 'Touch of the Eternal', 'Sewer Rats', 'Essence Depleter', 'Spawning Bed', 'Titan''s Revenge', 'Words of War', 'Skirk Ridge Exhumer', 'Nissa''s Judgment', 'Crossbow Ambush', 'Konda''s Hatamoto', 'Faith Healer', 'Fomori Nomad', 'Reave Soul', 'Dichotomancy', 'Watchful Naga', 'Crescendo of War', 'Furious Reprisal', 'Aether Mutation', 'Sol''kanar the Swamp King', 'Verdant Touch', 'Vine Snare', 'Disciple of Griselbrand', 'Avacynian Missionaries', 'Woodlurker Mimic', 'River Heralds'' Boon', 'Skyshroud Troopers', 'Ritual of Steel', 'Goliath Sphinx', 'Viridian Claw', 'Blinding Souleater', 'Sage of Ancient Lore', 'Vampire''s Bite', 'Unnatural Aggression', 'Shipwreck Looter', 'Orzhova, the Church of Deals', 'Seraph of the Masses', 'Tel-Jilad Fallen', 'Daring Skyjek', 'Scion of Glaciers', 'Razor Barrier', 'Enlisted Wurm', 'Mardu Heart-Piercer', 'Aether Tradewinds', 'Drownyard Explorers', 'Circle of Flame', 'Thundercloud Shaman', 'Morsel Theft', 'Zhur-Taa Swine', 'Caustic Tar', 'Duskborne Skymarcher', 'Necrogenesis', 'Silverchase Fox', 'Tumble Magnet', 'Flame Jab', 'Bull Cerodon', 'Deadly Insect', 'Goblin Spelunkers', 'Contagion Engine', 'Sifter Wurm', 'Immolating Glare', 'Goblin Outlander', 'Ghoultree', 'Silhana Starfletcher', 'Noxious Vapors', 'Hieroglyphic Illumination', 'Sun Clasp', 'Bishop of the Bloodstained', 'Locust Miser', 'Unbender Tine', 'Smelt-Ward Gatekeepers', 'Typhoid Rats', 'Borrowed Malevolence', 'Obsessive Search', 'Flesh Reaver', 'Jaya Ballard, Task Mage', 'Angelic Purge', 'Staunch Defenders', 'Extractor Demon', 'Reckless Fireweaver', 'Gift of Paradise', 'Hapatra, Vizier of Poisons', 'Strandwalker', 'Dragon Throne of Tarkir', 'Breaker of Armies', 'Flensermite', 'Search Warrant', 'Nature''s Way', 'Vampiric Embrace', 'Eyeblight Massacre', 'Restless Apparition', 'Paragon of the Amesha', 'Throne of Bone', 'Trestle Troll', 'Yotian Soldier', 'Riding the Dilu Horse', 'Puppet Conjurer', 'Shatter', 'Deep-Slumber Titan', 'Slayer''s Cleaver', 'Highland Weald', 'Deranged Hermit', 'Firewing Phoenix', 'Garruk''s Companion', 'Goblin Glider', 'Veilstone Amulet', 'Pack Guardian', 'Deadly Wanderings', 'Ground Assault', 'Culling Mark', 'Lifesmith', 'Burning Anger', 'Captivating Glance', 'Viper''s Kiss', 'Primal Rage', 'Tower of Eons', 'Scatter Arc', 'Bituminous Blast', 'Fierce Invocation', 'Sudden Strength', 'Spectral Searchlight', 'Scrib Nibblers', 'Kolaghan Forerunners', 'Gruul Turf', 'Tablet of Epityr', 'Ghitu War Cry', 'Rugged Highlands', 'Dark Banishing', 'Sylvan Primordial', 'Night Dealings', 'Fertile Thicket', 'Krovikan Sorcerer', 'Essence Backlash', 'The Hive', 'Coastal Discovery', 'Pulse of the Fields', 'Thirsting Axe', 'Breakneck Rider', 'Altac Bloodseeker', 'Pious Kitsune', 'Volcanic Hammer', 'Shriveling Rot', 'Old-Growth Dryads', 'Battlewand Oak', 'Bottled Cloister', 'Bloodshot Cyclops', 'Stream of Unconsciousness', 'Hellcarver Demon', 'Dementia Bat', 'Morkrut Necropod', 'Wizard Replica', 'Not Forgotten', 'Gorgon''s Head', 'Tuktuk Grunts', 'Daggerdrome Imp', 'Deviant Glee', 'Cathar''s Shield', 'Thornweald Archer', 'Fleeting Aven', 'Dauntless Cathar', 'Infantry Veteran', 'Marsh Threader', 'Mystifying Maze', 'Qarsi Sadist', 'Selkie Hedge-Mage', 'Fleshgrafter', 'Cytospawn Shambler', 'Undead Leotau', 'Spectral Shift', 'Staff of Zegon', 'Insight', 'Cystbearer', 'Geosurge', 'Salvage Scuttler', 'Shambling Shell', 'Blade-Tribe Berserkers', 'Lotus-Eye Mystics', 'Scrapper Champion', 'Burning-Tree Bloodscale', 'Felhide Minotaur', 'Soul Exchange', 'Golden Urn', 'Temporal Fissure', 'Soldier of the Pantheon', 'Gorgon Flail', 'Barrage of Boulders', 'Animal Magnetism', 'Trophy Mage', 'Weakstone', 'Drake-Skull Cameo', 'Afflict', 'Skirsdag Supplicant', 'Choking Fumes', 'Turntimber Basilisk', 'Hollowhenge Spirit', 'Nimbus Swimmer', 'Courier Griffin', 'Delaying Shield', 'Flesh Allergy', 'Gutter Skulk', 'Thrashing Mossdog', 'Grapple with the Past', 'Devour in Flames', 'Guul Draz Overseer', 'Feast of Dreams', 'Reverse Damage', 'Hold the Gates', 'Blisterpod', 'Reckless Scholar', 'Scepter of Dominance', 'Foundry Assembler', 'Phantasmal Terrain', 'Rocky Tar Pit', 'Bloated Toad', 'Narnam Cobra', 'Harsh Justice', 'Brassclaw Orcs', 'Goblin Festival', 'Endless Swarm', 'Ghoulsteed', 'Wakedancer', 'Fen Hauler', 'Gaea''s Bounty', 'Perplex', 'Infest', 'Dauntless Aven', 'Highland Berserker', 'Brazen Scourge', 'Dramatic Rescue', 'Stoic Ephemera', 'Wu Longbowman', 'Despise', 'Aetherplasm', 'Corpulent Corpse', 'Mugging', 'Keldon Marauders', 'Glorious Anthem', 'Loam Dryad', 'Sharding Sphinx', 'Silverstrike', 'Brood Keeper', 'Neglected Heirloom', 'Bloodrage Brawler', 'Minister of Impediments', 'Trap Essence', 'Hundred-Talon Strike', 'Tribute to Hunger', 'Tunneling Geopede', 'Spire Serpent', 'Moorland Haunt', 'Rubbleback Rhino', 'Dawnray Archer', 'Hulking Ogre', 'Roiling Terrain', 'Grab the Reins', 'Minion of Tevesh Szat', 'Muse Vessel', 'Eyes of the Wisent', 'Sacred Prey', 'Elvish Fury', 'Think Tank', 'Titanic Bulvox', 'Spirit en-Dal', 'Nightsnare', 'Chandra''s Pyrohelix', 'Thelonite Druid', 'Reverberate', 'Titania''s Boon', 'Emissary of Despair', 'Evil Eye of Urborg', 'Sosuke, Son of Seshiro', 'Freejam Regent', 'Dimir Cutpurse', 'Silence the Believers', 'Devouring Light', 'Spread the Sickness', 'Courier''s Capsule', 'Teneb, the Harvester', 'Run Aground', 'Plea for Power', 'Barishi', 'Maulfist Revolutionary', 'Pendelhaven Elder', 'Gore-House Chainwalker', 'Debilitating Injury', 'Kaervek''s Hex', 'Loxodon Mender', 'Ivory Guardians', 'Fungal Shambler', 'Kavu Primarch', 'Mogg Flunkies', 'Iron League Steed', 'Absolute Law', 'Ink-Treader Nephilim', 'Breach', 'Primal Whisperer', 'Urban Evolution', 'Wily Goblin', 'Destroy the Evidence', 'Pitiless Vizier', 'War-Torch Goblin', 'Quill-Slinger Boggart', 'Furor of the Bitten', 'Sage of Fables', 'Skullmead Cauldron', 'Second Guess', 'Samite Healer', 'Hidden Herbalists', 'Relentless Hunter', 'Lavaball Trap', 'Voice of the Provinces', 'Orzhov Guildgate', 'Spectral Shield', 'Shadow Slice', 'Psionic Sliver', 'Blistergrub', 'Warlord''s Axe', 'Death of a Thousand Stings', 'Gorilla Chieftain', 'Stormcrag Elemental', 'Ainok Guide', 'Beetleform Mage', 'Commander''s Authority', 'Swat', 'Kami of the Painted Road', 'Peacewalker Colossus', 'Flame Wave', 'Dreams of the Dead', 'Gelectrode', 'Void', 'Discombobulate', 'Thing from the Deep', 'Dream Cache', 'Alpha Tyrranax', 'Hardened Berserker', 'Elkin Bottle', 'Mage-Ring Network', 'Jungle Weaver', 'Patchwork Gnomes', 'Triumph of Ferocity', 'Endless Wurm', 'Firecat Blitz', 'Poultice Sliver', 'Bloodscale Prowler', 'Wingcrafter', 'Invisibility', 'Mortipede', 'Perilous Voyage', 'Confusion in the Ranks', 'Lightning Volley', 'Viashino Runner', 'Thunder Strike', 'Return to the Earth', 'Furnace Celebration', 'Angelic Page', 'Vulshok War Boar', 'Dubious Challenge', 'Obsessive Skinner', 'Centaur Omenreader', 'Magus of the Abyss', 'Abzan Charm', 'High Sentinels of Arashin', 'Soltari Priest', 'Pontiff of Blight', 'Choice of Damnations', 'Adventuring Gear', 'Heedless One', 'Consuming Bonfire', 'Truefire Paladin', 'Kazuul''s Toll Collector', 'Druid of the Cowl', 'Scepter of Insight', 'Consulate Dreadnought', 'Ascended Lawmage', 'Aven Tactician', 'Aurochs', 'Drelnoch', 'Petra Sphinx', 'Into the Wilds', 'Sturdy Hatchling', 'Essence Flare', 'Vector Asp', 'Skarrg Goliath', 'Skyship Plunderer', 'Hungering Yeti', 'Marauding Boneslasher', 'Basandra, Battle Seraph', 'Void Stalker', 'Soul Swallower', 'Red Sun''s Zenith', 'Giant Harbinger', 'Gravelgill Duo', 'Mystic Enforcer', 'Ouphe Vandals', 'Plague Fiend', 'War Report', 'Cabal Archon', 'Aethertow', 'Weakness', 'Titania''s Chosen', 'Spell Contortion', 'Plasm Capture', 'Neurok Hoversail', 'Goblin Mountaineer', 'Goblin Tunneler', 'Mistform Skyreaver', 'Markov Blademaster', 'Manic Scribe', 'Cabal Conditioning', 'Auriok Bladewarden', 'Invert the Skies', 'Adverse Conditions', 'Indrik Stomphowler', 'Cultbrand Cinder', 'Beetleback Chief', 'Brain Pry', 'Psychic Miasma', 'Dirtwater Wraith', 'Pentarch Paladin', 'Child of Night', 'Graceful Antelope', 'Honden of Seeing Winds', 'Roaring Slagwurm', 'Feeding Frenzy', 'Chaos Imps', 'Inner-Flame Acolyte', 'Enclave Elite', 'Fendeep Summoner', 'Territorial Hammerskull', 'Enhanced Awareness', 'Spectral Gateguards', 'Soul Summons', 'Viashino Firstblade', 'Arashin War Beast', 'Simic Ragworm', 'Dragon Whelp', 'Ghosthelm Courier', 'Gift of the Gargantuan', 'Ambush Viper', 'Ugin''s Insight', 'Wei Elite Companions', 'Insatiable Souleater', 'Giant Spectacle', 'Necrogen Scudder', 'Festering Wound', 'Gloomlance', 'Thunder Totem', 'Makindi Shieldmate', 'Wrecking Ball', 'Lingering Tormentor', 'Counterlash', 'Koth''s Courier', 'Kheru Dreadmaw', 'Wrecking Ogre', 'Griffin Protector', 'Mardu Skullhunter', 'Rathi Dragon', 'Forced Worship', 'Frontier Guide', 'Naya Battlemage', 'Pledge of Loyalty', 'Recurring Insight', 'Robe of Mirrors', 'Slash Panther', 'Three Tragedies', 'Slaughterhorn', 'Spike Rogue', 'Call to Mind', 'Legion Conquistador', 'Nessian Asp', 'Brazen Wolves', 'Leonin Snarecaster', 'Whelming Wave', 'Parasitic Strix', 'Pelakka Wurm', 'Ondu Champion', 'Wild Instincts', 'Phyrexian Driver', 'Stabilizer', 'Imi Statue', 'Archwing Dragon', 'Evolution Charm', 'Cylian Sunsinger', 'Manticore of the Gauntlet', 'Horizon Seed', 'Sanguine Sacrament', 'Rhox Brute', 'Marrow Bats', 'Grimoire of the Dead', 'Keeper of the Dead', 'Consumptive Goo', 'Cogwork Assembler', 'Boon Satyr', 'Desert of the Indomitable', 'Burn from Within', 'Lawless Broker', 'Wayward Angel', 'Doubtless One', 'Esper Cormorants', 'Whispering Specter', 'Wingsteed Rider', 'Resupply', 'Mountain Yeti', 'Glory Seeker', 'Retreat to Valakut', 'Cognivore', 'Thallid', 'Deft Duelist', 'Thornhide Wolves', 'Pristine Angel', 'Zombie Musher', 'Instigator Gang', 'Uninvited Geist', 'Bioshift', 'Purify the Grave', 'Mistform Wakecaster', 'Infused Arrows', 'Skeletal Grimace', 'Gravedigger', 'Swift Kick', 'Gemini Engine', 'Woodland Guidance', 'Remember the Fallen', 'Durkwood Baloth', 'Rakdos Keyrune', 'Ground Rift', 'Spikeshot Elder', 'Drove of Elves', 'Melt Terrain', 'Staff of the Death Magus', 'Goblin Bully', 'Rhet-Crop Spearmaster', 'World Queller', 'Foresee', 'Smite', 'Grotesque Mutation', 'Orchard Warden', 'Sivitri Scarzam', 'Shaman''s Trance', 'Research Assistant', 'Hawkeater Moth', 'Higure, the Still Wind', 'Walking Atlas', 'Amrou Kithkin', 'Ivorytusk Fortress', 'Street Savvy', 'Death-Hood Cobra', 'Foul Orchard', 'Reroute', 'Elite Cat Warrior', 'Dinrova Horror', 'Wall of Spears', 'Canopy Cover', 'Graven Abomination', 'Budoka Gardener', 'Goblin Furrier', 'Brain Gorgers', 'Revive the Fallen', 'Goblin Elite Infantry', 'Madblind Mountain', 'Undead Slayer', 'Quirion Trailblazer', 'Rakdos Ickspitter', 'Volley of Boulders', 'Char', 'Skyknight Legionnaire', 'Nulltread Gargantuan', 'Merfolk Seastalkers', 'Blastoderm', 'Prophet of Distortion', 'Vow of Flight', 'Resolute Archangel', 'Dark Temper', 'Plague Boiler', 'Jacques le Vert', 'Nebuchadnezzar', 'Azorius Keyrune', 'Hunting Drake', 'Display of Dominance', 'Deadeye Tormentor', 'Isleback Spawn', 'Mtenda Herder', 'Kalastria Healer', 'Wirewood Elf', 'Falter', 'Form of the Dragon', 'Nomad Mythmaker', 'Time Stop', 'Sluiceway Scorpion', 'Incendiary Flow', 'Lightmine Field', 'Ruthless Instincts', 'Storm Spirit', 'Venarian Glimmer', 'Jasmine Boreal', 'Vent Sentinel', 'Windstorm', 'Just the Wind', 'Meandering River', 'Aura Barbs', 'Elvish Warrior', 'Lunar Mystic', 'Evershrike', 'Azimaet Drake', 'Azorius Guildmage', 'Ring of Kalonia', 'Mage-Ring Bully', 'Void Snare', 'Sleeper''s Robe', 'Haazda Exonerator', 'Boggart Brute', 'Hisoka, Minamo Sensei', 'Rootwater Depths', 'Summit Prowler', 'Disposal Mummy', 'Ferocious Charge', 'Otarian Juggernaut', 'Craw Wurm', 'Hammerfist Giant', 'Arrogant Wurm', 'Rune of Protection: Artifacts', 'Ragged Veins', 'Patrol Signaler', 'Rebellion of the Flamekin', 'Hightide Hermit', 'Squealing Devil', 'Firefright Mage', 'Suppression Bonds', 'Golden Hind', 'Frostwielder', 'Mental Vapors', 'Labyrinth Guardian', 'Darksteel Juggernaut', 'Full Moon''s Rise', 'Dormant Gomazoa', 'Mystic Decree', 'Quest for Pure Flame', 'Festering Newt', 'Synod Centurion', 'Phantom Nantuko', 'Scaldkin', 'Outmaneuver', 'Psychic Barrier', 'Inexorable Blob', 'Coralhelm Commander', 'Call to Serve', 'Territorial Baloth', 'Seller of Songbirds', 'Selesnya Keyrune', 'Adarkar Windform', 'Natural Connection', 'Goldmeadow Dodger', 'Lifespring Druid', 'Brighthearth Banneret', 'Convalescent Care', 'Deepchannel Mentor', 'Somberwald Spider', 'Godtracker of Jund', 'Lich''s Tomb', 'Siren of the Silent Song', 'Shinen of Fury''s Fire', 'Heat Ray', 'Ritual of the Returned', 'Hitchclaw Recluse', 'Ink Dissolver', 'Man-o''-War', 'Dream Chisel', 'Skull Rend', 'Pressure Point', 'Last Gasp', 'Forgotten Creation', 'Spike Cannibal', 'Woodwraith Strangler', 'Cruel Edict', 'High Priest of Penance', 'Imminent Doom', 'Elegant Edgecrafters', 'Runic Repetition', 'Corrupted Grafstone', 'Flowstone Giant', 'Reprocess', 'Grassland Crusader', 'Chandra''s Ignition', 'Drudge Reavers', 'Atarka Monument', 'Predator''s Gambit', 'Kitsune Blademaster', 'Fallow Wurm', 'Etched Monstrosity', 'Repeal', 'Weaver of Lies', 'Force Away', 'Ice Cage', 'Dakra Mystic', 'Slobad, Goblin Tinkerer', 'Duty-Bound Dead', 'Geralf''s Mindcrusher', 'Mausoleum Guard', 'Worm Harvest', 'Tragic Poet', 'Myojin of Cleansing Fire', 'Vorosh, the Hunter', 'Spike Hatcher', 'Harmonic Convergence', 'Trumpeting Armodon', 'Solidarity', 'Muck Drubb', 'Goblin Deathraiders', 'Skyshroud Sentinel', 'Pharika''s Chosen', 'Dark Betrayal', 'Mycoid Shepherd', 'Cosi''s Ravager', 'Krosan Tusker', 'Altered Ego', 'Wall of Tanglecord', 'Viridescent Wisps', 'Elixir of Immortality', 'Icatian Priest', 'Boggart Arsonists', 'Kor Scythemaster', 'Ulvenwald Mysteries', 'Woodcutter''s Grit', 'Phyrexian Furnace', 'Bonethorn Valesk', 'Reaper of Sheoldred', 'Gravel Slinger', 'Vertigo Spawn', 'Stasis Cocoon', 'Crop Sigil', 'Inaction Injunction', 'Bushi Tenderfoot', 'Research the Deep', 'Incurable Ogre', 'Alhammarret, High Arbiter', 'Clockwork Avian', 'Oreskos Sun Guide', 'Mournwillow', 'Bring Low', 'Ramosian Revivalist', 'Looter il-Kor', 'Mindreaver', 'Imperial Hellkite', 'Alarum', 'Cadaver Imp', 'Izzet Keyrune', 'Torch Gauntlet', 'Storm Fleet Arsonist', 'Orzhov Signet', 'Akroma''s Blessing', 'Civilized Scholar', 'Anurid Scavenger', 'Urza''s Chalice', 'Leveler', 'Marked by Honor', 'Topplegeist', 'Frenzied Fugue', 'Druidic Satchel', 'Wild Mongrel', 'Panic Spellbomb', 'Absorb Vis', 'Feral Throwback', 'Tranquil Cove', 'Gateway Shade', 'Looming Shade', 'Skulking Knight', 'Ephemeral Shields', 'Disappearing Act', 'Frilled Sandwalla', 'Dreamcatcher', 'Sickle Ripper', 'Tin Street Market', 'Heliod''s Emissary', 'Undercity Troll', 'Primal Boost', 'Wall of Bone', 'Purphoros''s Emissary', 'Predator, Flagship', 'Chill of Foreboding', 'Minamo Scrollkeeper', 'Viashino Cutthroat', 'Azorius First-Wing', 'Lash Out', 'Urza''s Guilt', 'Bog Hoodlums', 'Mind Extraction', 'Maw of the Obzedat', 'Clear a Path', 'Serendib Efreet', 'Gaea''s Embrace', 'Empty-Shrine Kannushi', 'Beacon of Immortality', 'Tornado Elemental', 'Granite Shard', 'Sins of the Past', 'Air Servant', 'Rush of Adrenaline', 'Yore-Tiller Nephilim', 'Rebound', 'Aboshan, Cephalid Emperor', 'Overwhelm', 'Filigree Crawler', 'Inescapable Brute', 'Sygg, River Guide', 'Cryptwailing', 'Dreamspoiler Witches', 'Vorstclaw', 'Kiora''s Dismissal', 'Polymorphous Rush', 'Lava Burst', 'Prognostic Sphinx', 'Wild Evocation', 'Haunted Plate Mail', 'Narcolepsy', 'Haunter of Nightveil', 'Savage Alliance', 'Sandbar Serpent', 'Tempest Drake', 'Smothering Abomination', 'Rhox War Monk', 'Vildin-Pack Outcast', 'Captivating Crew', 'Great Teacher''s Decree', 'Plague Witch', 'Feral Invocation', 'Strength of Night', 'Launch', 'Volcanic Spray', 'Setessan Starbreaker', 'Sacred Mesa', 'Akroan Sergeant', 'Disentomb', 'Gaea''s Avenger', 'Taste of Blood', 'Daru Encampment', 'Life Chisel', 'Rage of Purphoros', 'Fledgling Djinn', 'Lightwielder Paladin', 'Wave of Indifference', 'Spidery Grasp', 'Buoyancy', 'Clockwork Beast', 'Hooded Horror', 'Perilous Shadow', 'Sigiled Paladin', 'Rootwater Mystic', 'Urza''s Miter', 'Skyshroud War Beast', 'Archfiend of Ifnir', 'Psychic Drain', 'Onulet', 'Tower Geist', 'Shelter', 'Tangleroot', 'Blood-Chin Rager', 'Winterflame', 'Tar Pitcher', 'Master of Diversion', 'Battering Wurm', 'Torment of Venom', 'Boros Cluestone', 'Wonder', 'Rogue Kavu', 'Cursed Monstrosity', 'Agoraphobia', 'Ronom Unicorn', 'Wall of Essence', 'Fleshpulper Giant', 'Phyrexian Digester', 'Gust Walker', 'Jalum Tome', 'Cabal Interrogator', 'Ranging Raptors', 'Corpse Blockade', 'Vectis Silencers', 'Pheres-Band Centaurs', 'Baku Altar', 'Auriok Replica', 'Plated Seastrider', 'Floodchaser', 'Embodiment of Spring', 'Thorntooth Witch', 'Accomplished Automaton', 'Cloven Casting', 'Arsenal Thresher', 'Perilous Predicament', 'Renegade''s Getaway', 'Leeching Licid', 'Taj-Nar Swordsmith', 'Leaden Fists', 'Hekma Sentinels', 'Brilliant Halo', 'Golgari Germination', 'Salt Road Ambushers', 'Crystal Spray', 'Boros Guildgate', 'Cult of the Waxing Moon', 'Walking Corpse', 'Moss Monster', 'Elvish Soultiller', 'Looming Hoverguard', 'Dauthi Embrace', 'Phantasmal Fiend', 'Yavimaya Granger', 'Swarmborn Giant', 'Peema Aether-Seer', 'Stab Wound', 'Hero''s Demise', 'Swift Silence', 'Nyxborn Triton', 'Rewind', 'Manriki-Gusari', 'Reach of Shadows', 'Supreme Exemplar', 'Gyre Sage', 'Boonweaver Giant', 'Erdwal Ripper', 'Rukh Egg', 'Triton Shorethief', 'Greater Forgeling', 'Zuran Spellcaster', 'Devil''s Play', 'Inkfathom Witch', 'Djinn of Wishes', 'Midnight Entourage', 'Trained Armodon', 'Marsh Casualties', 'Petals of Insight', 'Barbed Shocker', 'Mass Calcify', 'Primal Plasma', 'Dryad Sophisticate', 'Sandsteppe Citadel', 'Congregate', 'Rootwater Matriarch', 'Thoughts of Ruin', 'Righteousness', 'Molten Slagheap', 'Aysen Crusader', 'Icefeather Aven', 'Scrapyard Mongrel', 'Rumbling Aftershocks', 'Rancid Rats', 'Forbidden Lore', 'Benalish Hero', 'Tidings', 'Battering Sliver', 'Voyager Drake', 'Bartel Runeaxe', 'Unliving Psychopath', 'Fatespinner', 'Pain Magnification', 'The Fallen', 'Ankh of Mishra', 'Soaring Seacliff', 'Simic Basilisk', 'Shuriken', 'Rockslide Ambush', 'Vampire Bats', 'Kami of the Waning Moon', 'Keeper of the Flame', 'Blackcleave Goblin', 'Tobias Andrion', 'Tainted Specter', 'Fire Whip', 'Scorchwalker', 'Sylvan Messenger', 'Starlight', 'Kathari Bomber', 'Unstable Footing', 'Sinister Possession', 'Howl from Beyond', 'Fleetfeather Cockatrice', 'Architect of the Untamed', 'Hero of Iroas', 'Weight of Conscience', 'Krosan Warchief', 'Howltooth Hollow', 'Lumengrid Gargoyle', 'Stratus Walk', 'Lantern Kami', 'Makindi Sliderunner', 'Tremor', 'Sphinx of the Chimes', 'Jund Hackblade', 'Simoon', 'Vorrac Battlehorns', 'Hope Tender', 'Tajuru Stalwart', 'Sentinel Spider', 'Hopeful Eidolon', 'Mobilization', 'Renegade Krasis', 'Trial // Error', 'Feeling of Dread', 'Kessig Prowler', 'Inventor''s Goggles', 'Molten Birth', 'Wirewood Guardian', 'Scrounger of Souls', 'Thought Prison', 'Kashi-Tribe Elite', 'Traitorous Instinct', 'Crater''s Claws', 'Corrupted Roots', 'March of the Drowned', 'Scour', 'Rot Farm Skeleton', 'Benthic Behemoth', 'Ire Shaman', 'Benalish Commander', 'Anathemancer', 'Tunnel Vision', 'Anthroplasm', 'Broken Ambitions', 'Immerwolf', 'Torsten Von Ursus', 'Charm Peddler', 'Sphinx of Magosi', 'Screeching Skaab', 'Valiant Guard', 'Gaea''s Anthem', 'Dragon''s Eye Sentry', 'Landslide', 'Clockwork Swarm', 'Surge of Thoughtweft', 'Hinterland Hermit', 'Greater Stone Spirit', 'Sideswipe', 'Soldevi Digger', 'Fairgrounds Trumpeter', 'Nightshade Peddler', 'Gibbering Fiend', 'Nucklavee', 'Bloodlust Inciter', 'Herald of War', 'Bamboozle', 'Soulcatcher', 'Evolution Vat', 'Honor Guard', 'Kozilek''s Translator', 'Dream Fighter', 'Spite // Malice', 'Craven Giant', 'Carnassid', 'Breath of Life', 'Trolls of Tel-Jilad', 'Time of Heroes', 'Monk Realist', 'Flamekin Spitfire', 'Destructive Tampering', 'Wilderness Hypnotist', 'Vitu-Ghazi Guildmage', 'Wort, the Raidmother', 'Palace Familiar', 'Tor Wauki', 'Skywing Aven', 'Dread Drone', 'Sink into Takenuma', 'Dagger of the Worthy', 'Royal Trooper', 'Kuro, Pitlord', 'Goblin Ski Patrol', 'Steadfast Guard', 'Soratami Mirror-Mage', 'Altar Golem', 'Changeling Hero', 'Knight of Cliffhaven', 'Dire Fleet Captain', 'Goblin Warchief', 'Infernal Caretaker', 'Amrou Seekers', 'Banewhip Punisher', 'Arcbound Hybrid', 'Thallid Shell-Dweller', 'D''Avenant Healer', 'Tuktuk Scrapper', 'Baloth Null', 'Viscerid Deepwalker', 'Night // Day', 'Witch Hunter', 'Tracker''s Instincts', 'Penumbra Spider', 'Aphetto Exterminator', 'Avacynian Priest', 'Moment of Heroism', 'Ironwright''s Cleansing', 'Veteran Armorer', 'Quicksilver Behemoth', 'Hound of the Farbogs', 'Gloomwidow', 'Goldnight Commander', 'Soulbound Guardians', 'Scourge Devil', 'Gemstone Array', 'Zulaport Chainmage', 'Vaultbreaker', 'Runewing', 'Clear Shot', 'Henchfiend of Ukor', 'Might Makes Right', 'Ankle Shanker', 'Heartwood Giant', 'Rusted Sentinel', 'Slaughter Drone', 'Planar Guide', 'Epochrasite', 'Cage of Hands', 'Solar Blast', 'Goblin Archaeologist', 'Infinite Reflection', 'Fleeting Image', 'Personal Incarnation', 'Firefly', 'Brave the Sands', 'Cascading Cataracts', 'Farrel''s Zealot', 'Locket of Yesterdays', 'Riftwing Cloudskate', 'Wall of Resurgence', 'Sphinx of Uthuun', 'Sylvan Echoes', 'Hostility', 'Kiora''s Follower', 'Wirefly Hive', 'Caribou Range', 'Soulsworn Spirit', 'Void Maw', 'Voidwielder', 'Zendikar''s Roil', 'Lavacore Elemental', 'Assault Zeppelid', 'Sandwurm Convergence', 'Leafdrake Roost', 'Gods'' Eye, Gate to the Reikai', 'Cyclical Evolution', 'Rotted Hystrix', 'Bonehoard', 'Gurmag Swiftwing', 'Mad Auntie', 'Ornery Kudu', 'Mark for Death', 'Ethercaste Knight', 'Sanity Grinding', 'Guma', 'Extract from Darkness', 'Battleflight Eagle', 'Nightshade Assassin', 'Crocodile of the Crossing', 'Praetor''s Grasp', 'Nivix Barrier', 'Pillar of Origins', 'Rockcaster Platoon', 'Stoke the Flames', 'Seasinger', 'Magnetic Flux', 'Spellshock', 'Auratouched Mage', 'Ivory Crane Netsuke', 'Iron Will', 'Echoing Courage', 'Eldrazi Devastator', 'Ballynock Cohort', 'Cabal Shrine', 'Moonglove Changeling', 'Spike Soldier', 'Spiritmonger', 'Drownyard Behemoth', 'Fodder Cannon', 'Bleak Coven Vampires', 'Grizzled Angler', 'Propeller Pioneer', 'Knotvine Paladin', 'Sand Strangler', 'Gruul Signet', 'Ember Hauler', 'Shielded Aether Thief', 'Bloodsoaked Champion', 'Flayer Drone', 'Straw Golem', 'Brilliant Spectrum', 'Frenzied Raptor', 'Ashcloud Phoenix', 'Dwarven Nomad', 'Skulltap', 'Nightguard Patrol', 'Sabertooth Alley Cat', 'Spike Feeder', 'Scavenging Scarab', 'Dimir House Guard', 'Call the Bloodline', 'Wildest Dreams', 'Spurred Wolverine', 'Sentinels of Glen Elendra', 'Dukhara Scavenger', 'Ingenious Skaab', 'Rain of Daggers', 'Liliana''s Defeat', 'God-Favored General', 'Deathspore Thallid', 'Rageform', 'Grim Captain''s Call', 'Griffin Dreamfinder', 'Screeching Sliver', 'Harrier Naga', 'Bojuka Brigand', 'Restoration Specialist', 'Cobra Trap', 'Hedonist''s Trove', 'Dark Salvation', 'Bloodthrone Vampire', 'Phyrexian Snowcrusher', 'Vanishment', 'Murderous Cut', 'Wanderlust', 'Bitterbow Sharpshooters', 'Ghost Tactician', 'Rolling Thunder', 'Furnace Brood', 'Empyreal Voyager', 'Veil of Secrecy', 'Roar of Challenge', 'Venser''s Diffusion', 'Imprisoned in the Moon', 'Foratog', 'Cut the Tethers', 'Horror of the Broken Lands', 'Akoum Flameseeker', 'Ravenous Intruder', 'Null Champion', 'Scragnoth', 'Streambed Aquitects', 'Spirit Weaver', 'Opal Champion', 'Nurturer Initiate', 'Desert of the True', 'Ebony Horse', 'Auger Spree', 'Homing Lightning', 'Spitting Drake', 'Unruly Mob', 'Assembled Alphas', 'Heavy Ballista', 'Zendikar Incarnate', 'Wind-Kin Raiders', 'Monk Idealist', 'Crumbling Colossus', 'Swarm Intelligence', 'Peema Outrider', 'Death Charmer', 'Seed the Land', 'Imperial Lancer', 'Monastery Loremaster', 'Malakir Bloodwitch', 'Felhide Spiritbinder', 'Blood Rites', 'Horizon Scholar', 'Melancholy', 'Lifecraft Awakening', 'Glade Watcher', 'Storm Front', 'Carrion Beetles', 'Encase in Ice', 'Guul Draz Specter', 'Degavolver', 'Valeron Wardens', 'Reiver Demon', 'Oboro Breezecaller', 'Bitterheart Witch', 'Angelic Skirmisher', 'Enlarge', 'Orcish Oriflamme', 'Disciple of Tevesh Szat', 'Encircling Fissure', 'Belltower Sphinx', 'Cache Raiders', 'Revenge of the Hunted', 'Timecrafting', 'Stalker Hag', 'Septic Rats', 'Fiery Conclusion', 'Restock', 'Pygmy Pyrosaur', 'Final Revels', 'Nullify', 'Rakka Mar', 'Steeple Roc', 'Mobile Fort', 'Bloodfray Giant', 'Impeccable Timing', 'Sorrow''s Path', 'Benalish Trapper', 'Freyalise''s Radiance', 'Eternal Thirst', 'Screamreach Brawler', 'Dormant Volcano', 'Voyage''s End', 'Seal of Doom', 'Cavalry Master', 'Artificer''s Epiphany', 'Deadbridge Shaman', 'Carnivorous Moss-Beast', 'Lyzolda, the Blood Witch', 'Wei Night Raiders', 'Smokestack', 'Desert''s Hold', 'Vicious Shadows', 'Icefall', 'Dimir Signet', 'Nefarious Lich', 'Witherscale Wurm', 'Pardic Firecat', 'Vinelasher Kudzu', 'Witness the End', 'Trade Routes', 'Orator of Ojutai', 'Brimstone Volley', 'Sakiko, Mother of Summer', 'Revoke Privileges', 'Grazing Whiptail', 'Cannibalize', 'Zodiac Monkey', 'Rites of Reaping', 'Voldaren Duelist', 'Sage-Eye Avengers', 'Debtor''s Pulpit', 'Imperiosaur', 'Thorncaster Sliver', 'Temur Charm', 'Ballista Charger', 'Fated Infatuation', 'Skyline Cascade', 'Acolyte of the Inferno', 'Oona''s Gatewarden', 'Tower of Fortunes', 'Spawnbroker', 'Deranged Whelp', 'Treasury Thrull', 'Azorius Aethermage', 'Flameblast Dragon', 'Seraph of the Sword', 'Jade Statue', 'Ruination Wurm', 'Corpsehatch', 'Watcher in the Web', 'Watchers of the Dead', 'Planeswalker''s Fury', 'Natural Obsolescence', 'Soul Manipulation', 'Stormrider Rig', 'Woodborn Behemoth', 'Jungle Barrier', 'Tracker', 'Oath of the Ancient Wood', 'Gruul Keyrune', 'Kraken of the Straits', 'Zhalfirin Crusader', 'Lightning Crafter', 'Planar Cleansing', 'Shadow Sliver', 'Mind Spring', 'Ojutai''s Breath', 'Trail of Evidence', 'Polis Crusher', 'Bygone Bishop', 'Defeat', 'Abzan Ascendancy', 'Linessa, Zephyr Mage', 'Skyreaping', 'Skeleton Scavengers', 'Arcbound Stinger', 'In Garruk''s Wake', 'Sylvok Replica', 'Scale Blessing', 'Nissa''s Renewal', 'Abyssal Horror', 'Droning Bureaucrats', 'Blight Sickle', 'Drowner of Secrets', 'Cover of Winter', 'Holdout Settlement', 'Khabál Ghoul', 'Gryff''s Boon', 'Pursuit of Flight', 'Cultivator of Blades', 'Emmessi Tome', 'Hooded Assassin', 'Reality Anchor', 'Call of the Herd', 'Moorish Cavalry', 'City in a Bottle', 'Giant Caterpillar', 'Boros Swiftblade', 'Spineless Thug', 'Spectral Shepherd', 'Jade Mage', 'Torch Slinger', 'Paralyze', 'Cautery Sliver', 'Warrior''s Honor', 'Glint-Eye Nephilim', 'Diviner''s Wand', 'Ogre Slumlord', 'Goblin Flectomancer', 'Desecration Plague', 'Roil''s Retribution', 'Alpha Status', 'Spinal Parasite', 'Flameblade Angel', 'Gatherer of Graces', 'Johtull Wurm', 'Hidden Ancients', 'Banshee''s Blade', 'Paranoid Delusions', 'Rabid Bloodsucker', 'Weight of the Underworld', 'Lightning-Rig Crew', 'Blighted Cataract', 'Costly Plunder', 'Cinder Pyromancer', 'Alchemist''s Apprentice', 'Ruinous Path', 'Mystic Zealot', 'Research // Development', 'Zameck Guildmage', 'Sorcerer''s Strongbox', 'Knight of the Pilgrim''s Road', 'Sands of Delirium', 'Silkbind Faerie', 'Riptide Pilferer', 'Stormblood Berserker', 'Wall of Fire', 'Flight', 'Heroes'' Reunion', 'Kithkin Mourncaller', 'Sphere of Law', 'Sylvan Ranger', 'Giant Crab', 'Floodbringer', 'Belligerent Hatchling', 'Sultai Charm', 'Chosen of Markov', 'Glacial Plating', 'Stone Golem', 'Death Stroke', 'Order of the Stars', 'Greater Mossdog', 'Rallying Roar', 'Roar of the Wurm', 'Rage Forger', 'Walker of the Wastes', 'Sootstoke Kindler', 'Perpetual Timepiece', 'Nimble Innovator', 'Thunderheads', 'New Prahv Guildmage', 'Flatten', 'Fleeting Distraction', 'Sea Gate Loremaster', 'Necroskitter', 'The Wretched', 'Undo', 'Cloudheath Drake', 'Cutthroat Maneuver', 'Bronze Bombshell', 'Multiform Wonder', 'Defiant Khenra', 'Accorder''s Shield', 'Sunstrike Legionnaire', 'Tribal Unity', 'Endure', 'Raving Oni-Slave', 'Burn the Impure', 'Colossal Whale', 'Kithkin Spellduster', 'Village Messenger', 'Vampire Lacerator', 'Starstorm', 'Fang Skulkin', 'Moriok Reaver', 'Ashenmoor Gouger', 'Watchwolf', 'Pyroclast Consul', 'Phantom Warrior', 'Wishmonger', 'Phantom General', 'In the Web of War', 'Viashino Outrider', 'Breath of Malfegor', 'Zephyr Scribe', 'Ivy Dancer', 'Hammer of Ruin', 'Cloud Djinn', 'Spiraling Embers', 'Kessig Wolf', 'Gather Specimens', 'Ghitu Fire', 'Ardent Recruit', 'Raiders'' Wake', 'Distorting Lens', 'Hunting Pack', 'Coal Golem', 'Heart of Bogardan', 'Shattering Blow', 'Benthic Giant', 'Guildscorn Ward', 'Ovalchase Dragster', 'Sisters of Stone Death', 'Reassembling Skeleton', 'Phyrexian Plaguelord', 'Wall of Frost', 'Down // Dirty', 'Riptide Chronologist', 'Archery Training', 'Stymied Hopes', 'Spring // Mind', 'Cunning Lethemancer', 'Lady Caleria', 'Mindclaw Shaman', 'Goblin Shortcutter', 'Suture Spirit', 'Lurking Arynx', 'Crown of Fury', 'Bearer of the Heavens', 'Planar Outburst', 'Crown of Empires', 'Incendiary', 'Wandering Eye', 'Scorned Villager', 'Shifting Borders', 'Mitotic Manipulation', 'Dune-Brood Nephilim', 'Shrouded Lore', 'Gold Myr', 'Walker of Secret Ways', 'Eyeless Watcher', 'The Lady of the Mountain', 'Izzet Guildmage', 'Sacellum Archers', 'Okina Nightwatch', 'Bloodcrazed Neonate', 'Scoria Elemental', 'Consulate Crackdown', 'Pavel Maliki', 'Last Word', 'Wyluli Wolf', 'Krumar Bond-Kin', 'Take Up Arms', 'Gnarled Scarhide', 'Dragonlord''s Servant', 'Stream of Life', 'Canopy Spider', 'Serene Remembrance', 'Horobi''s Whisper', 'Oran-Rief Hydra', 'Ondu Rising', 'Reborn Hope', 'Trygon Predator', 'Tower Defense', 'Hell''s Thunder', 'Lambholt Elder', 'Favored Hoplite', 'Voiceless Spirit', 'Wei Strike Force', 'Arcbound Fiend', 'Bellowing Fiend', 'Pheres-Band Raiders', 'Setessan Battle Priest', 'Ashes of the Fallen', 'Hazoret''s Monument', 'Reap', 'Borderland Ranger', 'Skyshooter', 'Sparkspitter', 'Detritivore', 'Hinterland Logger', 'Mirozel', 'Lightning Blast', 'Killer Whale', 'Night Market Guard', 'Arcane Adaptation', 'Nirkana Cutthroat', 'Silver Knight', 'Wild Wanderer', 'Zealous Inquisitor', 'Cragganwick Cremator', 'Serpent Skin', 'Kodama of the North Tree', 'Kitesail', 'Bassara Tower Archer', 'Plea for Guidance', 'Jaws of Stone', 'Mortal''s Ardor', 'Silburlind Snapper', 'Army Ants', 'Mystic Melting', 'Elven Warhounds', 'Selhoff Occultist', 'Will-Forged Golem', 'Chronatog Totem', 'Cartouche of Ambition', 'Jarad''s Orders', 'Phyrexian Denouncer', 'Narwhal', 'Gruul Scrapper', 'Bog-Strider Ash', 'Revoke Existence', 'Kaijin of the Vanishing Touch', 'Fettergeist', 'Ranger''s Guile', 'Dragon Arch', 'Nezumi Cutthroat', 'Drana''s Chosen', 'Spike Jester', 'Heroes'' Podium', 'Measure of Wickedness', 'Rolling Spoil', 'Holy Mantle', 'Spoils of Victory', 'Manaforge Cinder', 'Sultai Runemark', 'Quicksilver Dragon', 'Azorius Guildgate', 'Incandescent Soulstoke', 'Dragon Mantle', 'Cradle to Grave', 'Ghazbán Ogre', 'Voidmage Husher', 'Viashino Slasher', 'Statute of Denial', 'Unlicensed Disintegration', 'Grizzly Bears', 'Nantuko Shade', 'Clockspinning', 'Storage Matrix', 'Ghoulcaller''s Chant', 'Talrand''s Invocation', 'Deputy of Acquittals', 'Righteous Avengers', 'Mortal''s Resolve', 'Redirect', 'Flowstone Salamander', 'Havengul Vampire', 'Despondency', 'Waking Nightmare', 'Vile Aggregate', 'Ogre Recluse', 'Start Your Engines', 'Revolutionary Rebuff', 'Knight of Dawn', 'Dregscape Zombie', 'Overrule', 'Creeping Dread', 'Cumber Stone', 'Rhonas''s Monument', 'Sarcomancy', 'Lu Bu, Master-at-Arms', 'Wurm''s Tooth', 'Stoic Angel', 'Oak Street Innkeeper', 'Natural Spring', 'Soul Net', 'Pallid Mycoderm', 'Venomspout Brackus', 'Angelic Armaments', 'Neutralizing Blast', 'Reduce to Ashes', 'Lightbringer', 'Fiddlehead Kami', 'Azorius Ploy', 'Goblin Pyromancer', 'Butcher Orgg', 'Shifting Loyalties', 'Lord of the Pit', 'Servant of Volrath', 'Valor in Akros', 'Oakenform', 'Slipstream Eel', 'Winds of Qal Sisma', 'Rivalry', 'Pharagax Giant', 'Thunder Wall', 'Dimir Cluestone', 'Retribution of the Ancients', 'Rabid Wombat', 'Vedalken Engineer', 'Scorched Rusalka', 'Scarblade Elite', 'Creepy Doll', 'Zhang Fei, Fierce Warrior', 'Siege Wurm', 'Elgaud Shieldmate', 'Genju of the Cedars', 'Squee''s Embrace', 'Angelic Gift', 'Thunderclap', 'Manta Ray', 'Paragon of Gathering Mists', 'Aven Mimeomancer', 'Aven Shrine', 'Liege of the Pit', 'Academy Raider', 'Deepwood Wolverine', 'Xenograft', 'Drunau Corpse Trawler', 'Ambuscade Shaman', 'Redwood Treefolk', 'Brutalizer Exarch', 'Apocalypse Hydra', 'Scrapyard Salvo', 'Honored Hierarch', 'Durkwood Tracker', 'Mana Clash', 'Hibernation''s End', 'Siren Song Lyre', 'Battle-Rattle Shaman', 'Binding Grasp', 'Reaver Drone', 'Brood Birthing', 'Nacatl War-Pride', 'Hunt Down', 'Murasa Pyromancer', 'Mindless Automaton', 'Ribbons of Night', 'Rough // Tumble', 'Scepter of Fugue', 'In Oketra''s Name', 'Furnace Whelp', 'Bastion Enforcer', 'Accorder Paladin', 'Carbonize', 'Demon''s Jester', 'Fleet Swallower', 'Amulet of Kroog', 'Whispering Madness', 'Burden of Guilt', 'Last Thoughts', 'Oaken Brawler', 'Aerial Maneuver', 'Volunteer Reserves', 'Stalwart Aven', 'Noble Stand', 'Predatory Urge', 'Veteran Motorist', 'Sneaky Homunculus', 'Psychic Membrane', 'Aven Envoy', 'Foundry Screecher', 'Mirri, Cat Warrior', 'Rain of Thorns', 'Ice Over', 'Amphin Pathmage', 'Cowl Prowler', 'Back from the Brink', 'Glissa Sunseeker', 'Meadowboon', 'Wall of Junk', 'Sunset Pyramid', 'Brute Force', 'Havoc Demon', 'Coralhelm Guide', 'Filigree Sages', 'Kazandu Tuskcaller', 'Adaptive Snapjaw', 'Magmatic Core', 'Honored Crop-Captain', 'Woodland Sleuth', 'Ironclad Revolutionary', 'Riptide Mangler', 'Crater Elemental', 'Kraul Warrior', 'Celestial Dawn', 'Search the City', 'Obelisk Spider', 'Mask of Memory', 'Centaur Archer', 'Cyclops of One-Eyed Pass', 'Sejiri Merfolk', 'Clip Wings', 'Tooth of Chiss-Goria', 'Elemental Mastery', 'Blinding Beam', 'Igneous Pouncer', 'Wolfir Avenger', 'Kei Takahashi', 'Rust Tick', 'Messenger''s Speed', 'Ubul Sar Gatekeepers', 'Natural Affinity', 'Cached Defenses', 'Lord of the Accursed', 'Bloodline Shaman', 'Phyrexian Ghoul', 'Spiteflame Witch', 'Merfolk Observer', 'Tormentor Exarch', 'Contagious Nim', 'Noyan Dar, Roil Shaper', 'Phantasmagorian', 'Keeper of the Light', 'Congregation at Dawn', 'Capashen Knight', 'Doubling Chant', 'Crystal Rod', 'Goblin Burrows', 'Worldpurge', 'Vow of Malice', 'Dampening Pulse', 'Hornet Sting', 'Guerrilla Tactics', 'Cerulean Sphinx', 'Righteous Charge', 'Vigilant Martyr', 'Razing Snidd', 'Vex', 'Nimbus Naiad', 'Martyrs of Korlis', 'Voracious Dragon', 'Hidetsugu''s Second Rite', 'Myr Mindservant', 'Burst of Strength', 'Sighted-Caste Sorcerer', 'Barrenton Cragtreads', 'Nim Lasher', 'Grozoth', 'Butcher''s Glee', 'Sulfuric Vapors', 'Kor Entanglers', 'Orochi Sustainer', 'Divine Transformation', 'Zuran Orb', 'Satyr Firedancer', 'Tibor and Lumia', 'Ordered Migration', 'Lost Hours', 'Soratami Mirror-Guard', 'Blastfire Bolt', 'Avenging Angel', 'Shore Snapper', 'Stand // Deliver', 'Fathom Mage', 'Warren-Scourge Elf', 'Vastwood Gorger', 'Grim Flowering', 'Ravenous Skirge', 'Tawnos''s Coffin', 'Tribal Flames', 'Skeleton Key', 'Sanguine Bond', 'Whimwader', 'Profane Prayers', 'Sewerdreg', 'Zephyr Spirit', 'Wanderguard Sentry', 'Magmaw', 'Guardian of the Gateless', 'Ravaging Blaze', 'Surrakar Spellblade', 'Starlit Sanctum', 'Guile', 'Siren of the Fanged Coast', 'Blind-Spot Giant', 'Crush Underfoot', 'Furtive Homunculus', 'Knight of the Skyward Eye', 'Quilled Wolf', 'Blunt the Assault', 'Fold into Aether', 'Vengeful Rebel', 'Untethered Express', 'Skirk Volcanist', 'Steam Spitter', 'Filigree Angel', 'Basilica Guards', 'Alive // Well', 'Font of Fertility', 'Viashino Sandswimmer', 'Sleek Schooner', 'Entomber Exarch', 'Branded Brawlers', 'Fiery Hellhound', 'Shimmering Barrier', 'Bloodhusk Ritualist', 'Neurok Invisimancer', 'Govern the Guildless', 'Whitewater Naiads', 'Sultai Skullkeeper', 'Skyshroud Troll', 'Gruesome Slaughter', 'Hewed Stone Retainers', 'Cosmic Horror', 'Fusion Elemental', 'Mouth // Feed', 'Soldier Replica', 'Shipwreck Singer', 'Darksteel Brute', 'Way of the Thief', 'Skyrider Trainee', 'Kodama''s Might', 'Ostracize', 'Walking Archive', 'Thran Lens', 'Sacred Nectar', 'Goblin Dirigible', 'Shape Anew', 'Thoughtweft Trio', 'Uktabi Faerie', 'Treefolk Harbinger', 'Claws of Valakut', 'Woodland Patrol', 'Multani''s Acolyte', 'Crown of Suspicion', 'Rags // Riches', 'Treespring Lorian', 'Jeskai Student', 'Wasteland Scorpion', 'Bone Splinters', 'Oracle''s Insight', 'Encampment Keeper', 'Duskmantle, House of Shadow', 'Boros Keyrune', 'Lavinia of the Tenth', 'Quest for Ancient Secrets', 'Pitfall Trap', 'Scroll Thief', 'Deicide', 'Accursed Spirit', 'Sunrise Sovereign', 'Kor Outfitter', 'King Crab', 'Withstand', 'Grinning Ignus', 'Unyaro Bees', 'Flesh // Blood', 'Revenant Patriarch', 'Shade of Trokair', 'Evil Presence', 'Pyre Hound', 'Heartless Pillage', 'Akki Underminer', 'Scoria Wurm', 'Vitaspore Thallid', 'Mannichi, the Fevered Dream', 'Apothecary Geist', 'Peregrine Drake', 'Ith, High Arcanist', 'Cruel Revival', 'Ghoulcaller''s Bell', 'Eerie Procession', 'Kavu Scout', 'Liliana''s Reaver', 'Tidy Conclusion', 'Youthful Scholar', 'Avarax', 'Wandering Stream', 'Daru Sanctifier', 'Emperor''s Vanguard', 'Uktabi Drake', 'Demonic Taskmaster', 'Anvilwrought Raptor', 'Reckless Racer', 'Dogged Hunter', 'Quilled Slagwurm', 'War-Spike Changeling', 'Mystic Crusader', 'Dark Withering', 'Mana Breach', 'Dual Casting', 'Oketra''s Avenger', 'Outwit', 'Hoarder''s Greed', 'Draining Whelk', 'Cloud Sprite', 'Lightning Rift', 'Thought Courier', 'Steel Wall', 'Windbrisk Raptor', 'Dreg Mangler', 'Drogskol Cavalry', 'Sophic Centaur', 'Blessing of Leeches', 'Squall Line', 'Grixis Grimblade', 'Heir of the Wilds', 'Pouncing Cheetah', 'Squall', 'Sacellum Godspeaker', 'Havengul Runebinder', 'Hunting Cheetah', 'Mighty Leap', 'Mosquito Guard', 'Overgrown Estate', 'Aladdin''s Ring', 'Strangling Soot', 'Kjeldoran War Cry', 'Azorius Justiciar', 'Neko-Te', 'Abundant Maw', 'Roar of Jukai', 'Serene Offering', 'Hearth Kami', 'Cyclopean Snare', 'Rhox Pikemaster', 'Simic Guildmage', 'Veteran Cavalier', 'Shared Fate', 'Lull', 'Predator Dragon', 'Goblin Cavaliers', 'Wolf-Skull Shaman', 'Relic Putrescence', 'Skullmulcher', 'Dawning Purist', 'Plated Pegasus', 'Setessan Tactics', 'Shadowfeed', 'Distemper of the Blood', 'Distended Mindbender', 'Arcbound Slith', 'Impromptu Raid', 'Charging Badger', 'Buried Alive', 'Consume Spirit', 'Wrangle', 'Pull Under', 'Fortify', 'Spike Tiller', 'Bloodfire Enforcers', 'Vampire Outcasts', 'Frightful Delusion', 'Silent Artisan', 'Plover Knights', 'Hurloon Shaman', 'Breezekeeper', 'Security Blockade', 'Split-Tail Miko', 'Rustmouth Ogre', 'Mirari', 'Auramancer', 'Keeper of the Nine Gales', 'Prosperous Pirates', 'Spire Patrol', 'Griffin Sentinel', 'Prison Barricade', 'Reckless Spite', 'Scavenger Folk', 'Psychic Purge', 'Assassinate', 'Sea Drake', 'Murmurs from Beyond', 'Changeling Sentinel', 'Revealing Wind', 'Valakut Fireboar', 'Tromp the Domains', 'Keldon Champion', 'Tomorrow, Azami''s Familiar', 'Weldfast Wingsmith', 'Kitsune Diviner', 'Resounding Roar', 'Alluring Siren', 'Aether Inspector', 'Headwater Sentries', 'Archon of Justice', 'Chief of the Foundry', 'Benthic Infiltrator', 'Profaner of the Dead', 'Dance of Many', 'Turn Aside', 'Recollect', 'Kiri-Onna', 'Viashino Warrior', 'Diminishing Returns', 'Triskelavus', 'Sekki, Seasons'' Guide', 'Fists of Ironwood', 'Roiling Horror', 'Hidden Retreat', 'Succumb to Temptation', 'Rite of Undoing', 'Leave in the Dust', 'Flamespeaker''s Will', 'Plummet', 'Imperious Perfect', 'Keiga, the Tide Star', 'Glare of Heresy', 'Ghoulflesh', 'Thunderblade Charge', 'Kraken Hatchling', 'Dragon Grip', 'Lesser Werewolf', 'Terashi''s Cry', 'Cinderhaze Wretch', 'Felidar Cub', 'Cephalid Constable', 'Ire of Kaminari', 'Pyrohemia', 'Moroii', 'Cursed Minotaur', 'Swift Warkite', 'Vitu-Ghazi, the City-Tree', 'Telepathy', 'Dread Slag', 'Angler Drake', 'Nekrataal', 'Kezzerdrix', 'Kodama of the Center Tree', 'Midnight Duelist', 'Blinding Mage', 'Caravan Hurda', 'Ghost Warden', 'Nectar Faerie', 'Relic Ward', 'Graf Harvest', 'Mightstone', 'Knight of Infamy', 'Death Frenzy', 'Jolt', 'Kheru Spellsnatcher', 'Mad Prophet', 'Meltdown', 'Wand of the Elements', 'Falkenrath Gorger', 'Dormant Sliver', 'Scornful Aether-Lich', 'Untamed Hunger', 'Wu Elite Cavalry', 'Predatory Rampage', 'Briarknit Kami', 'Sprout', 'Cloak of Confusion', 'Twins of Maurer Estate', 'Dreadship Reef', 'Jade Leech', 'Wind Dancer', 'Steam Catapult', 'Angelheart Vial', 'Splinter', 'Abuna Acolyte', 'Thornscape Master', 'Memory Erosion', 'Brain Freeze', 'Kami of the Honored Dead', 'Lashknife Barrier', 'Core Prowler', 'Flashfreeze', 'Righteous Blow', 'Deflection', 'Change of Heart', 'Mind Sludge', 'Pheres-Band Tromper', 'Disowned Ancestor', 'Necromaster Dragon', 'Fungal Behemoth', 'Cartouche of Zeal', 'Gamekeeper', 'Pardic Miner', 'Rock Slide', 'Ivory Tower', 'Ghostly Wings', 'Nephalia Moondrakes', 'Zada, Hedron Grinder', 'Artful Maneuver', 'Stormwatch Eagle', 'Phyresis', 'Spiketail Drakeling', 'Sift', 'Soulcatchers'' Aerie', 'Aerial Modification', 'Mountain Valley', 'Runeboggle', 'Mesa Enchantress', 'Stinkdrinker Daredevil', 'Sunweb', 'Kithkin Healer', 'Kruin Striker', 'Boros Guildmage', 'Paragon of New Dawns', 'Sandstone Warrior', 'Demonmail Hauberk', 'Polluted Dead', 'Void Squall', 'Shatterskull Recruit', 'Defiant Salvager', 'Manaforce Mace', 'Time Bomb', 'Arcbound Lancer', 'Ephara''s Radiance', 'Gatstaf Arsonists', 'Struggle for Sanity', 'Disease Carriers', 'Bonded Fetch', 'Release the Ants', 'Standing Troops', 'Greenweaver Druid', 'Bone Flute', 'Isperia the Inscrutable', 'Rally the Righteous', 'Oath of Liliana', 'Raise Dead', 'Paraselene', 'Strength of Arms', 'Ogre Shaman', 'Leshrac''s Rite', 'Symbiotic Wurm', 'Treefolk Mystic', 'Life and Limb', 'Briarberry Cohort', 'Recuperate', 'Into the Void', 'Ravenous Bloodseeker', 'Endangered Armodon', 'Blessings of Nature', 'Soul Strings', 'Wailing Ghoul', 'Postmortem Lunge', 'Felhide Petrifier', 'Grim Contest', 'Kindle the Carnage', 'Daily Regimen', 'Nomads'' Assembly', 'Healing Salve', 'Graceful Adept', 'Dissipate', 'Fertile Imagination', 'Candles'' Glow', 'Reversal of Fortune', 'Mask of Avacyn', 'Limits of Solidarity', 'Sangrite Surge', 'Animate Artifact', 'Opal-Eye, Konda''s Yojimbo', 'Ghoulcaller''s Accomplice', 'Stone Quarry', 'Riot Ringleader', 'Circle of Solace', 'Illusory Demon', 'Rakshasa''s Secret', 'Merfolk Skyscout', 'Compost', 'Frenzied Tilling', 'Ivory Cup', 'Barren Glory', 'Rolling Temblor', 'Jeskai Infiltrator', 'Crusader of Odric', 'Flaying Tendrils', 'Selesnya Sanctuary', 'Master Healer', 'Takeno''s Cavalry', 'Lightning Prowess', 'Stensia Banquet', 'Urborg Uprising', 'Solemn Offering', 'Aether Figment', 'Myr Propagator', 'Sandskin', 'Grizzled Leotau', 'Swordwise Centaur', 'Necromancer''s Assistant', 'Executioner''s Swing', 'Helm of the Ghastlord', 'Blighted Steppe', 'Compelling Deterrence', 'Burning-Eye Zubera', 'Scuttlemutt', 'Renegade Wheelsmith', 'Highland Game', 'Tel-Jilad Outrider', 'Encroach', 'Sosuke''s Summons', 'Fate Unraveler', 'Horror of the Dim', 'Wild Guess', 'Fire Juggler', 'Ruthless Knave', 'Guise of Fire', 'Scars of the Veteran', 'Saproling Burst', 'Wall of Mulch', 'Surging Dementia', 'Jhessian Infiltrator', 'Fyndhorn Elves', 'Dawnstrike Paladin', 'War Oracle', 'Pore Over the Pages', 'Countermand', 'Champion of Arashin', 'Thopter Squadron', 'Arcbound Wanderer', 'Griffin Guide', 'Warbreak Trumpeter', 'Fiery Temper', 'Retaliator Griffin', 'Weed-Pruner Poplar', 'Conifer Strider', 'Sixth Sense', 'Merieke Ri Berit', 'Rend Flesh', 'Aspect of Gorgon', 'Ritual of Rejuvenation', 'Kaervek the Merciless', 'Pilgrim of the Fires', 'Stoic Rebuttal', 'Infectious Horror', 'Jangling Automaton', 'Grovetender Druids', 'Banners Raised', 'Bala Ged Thief', 'Cunning', 'Rock Jockey', 'Decision Paralysis', 'Aquastrand Spider', 'Snapping Drake', 'Surge of Righteousness', 'Hundroog', 'Purge the Profane', 'Kozilek''s Shrieker', 'Menacing Ogre', 'Whirlwind Adept', 'Phyrexia''s Core', 'Elemental Bond', 'Safehold Duo', 'Felidar Sovereign', 'Bubbling Cauldron', 'Curse of Echoes', 'Stoneforge Acolyte', 'Olivia''s Dragoon', 'Advanced Stitchwing', 'Krosan Beast', 'Warren Pilferers', 'Necromantic Thirst', 'Bellowing Aegisaur', 'Second Harvest', 'Village Elder', 'Fire Tempest', 'Riddlesmith', 'Crawling Filth', 'Voidwalk', 'Shipbreaker Kraken', 'Ghost Council of Orzhova', 'Coral Trickster', 'Crib Swap', 'Thrull Champion', 'Battle-Mad Ronin', 'Jwari Shapeshifter', 'Glaring Spotlight', 'Travel Preparations', 'Awakener Druid', 'Scattershot', 'Web', 'Workshop Assistant', 'Aethertorch Renegade', 'Tears of Rage', 'Goblin Gardener', 'Healing Hands', 'Guardian of Solitude', 'Gruesome Encore', 'Pilfered Plans', 'Kytheon''s Irregulars', 'Mage-Ring Responder', 'Barktooth Warbeard', 'Exorcist', 'Cantivore', 'Cavern Lampad', 'Auriok Sunchaser', 'Mistmeadow Witch', 'Suicidal Charge', 'Manaplasm', 'Specter''s Wail', 'Shrewd Hatchling', 'Moldervine Cloak', 'Resounding Silence', 'Sultai Banner', 'Conversion Chamber', 'Akron Legionnaire', 'Pinpoint Avalanche', 'Synchronized Strike', 'Kithkin Harbinger', 'Ainok Bond-Kin', 'Scavenger Drake', 'Proteus Machine', 'Balduvian Dead', 'Revered Dead', 'Cloak and Dagger', 'Gruesome Deformity', 'Fortitude', 'Rakdos Guildmage', 'Turtleshell Changeling', 'Frontline Sage', 'Assault // Battery', 'Karametra''s Favor', 'Crowd''s Favor', 'Ring of Evos Isle', 'Dauthi Trapper', 'Mournwhelk', 'Putrefy', 'Blinding Powder', 'Radiant Purge', 'Drowner Initiate', 'Frontline Rebel', 'Faerie Tauntings', 'Broken Visage', 'Warped Devotion', 'Overblaze', 'Psychic Surgery', 'Dreampod Druid', 'Paladin of Prahv', 'Trip Wire', 'Disharmony', 'Hall of Triumph', 'Salivating Gremlins', 'Python', 'Test of Faith', 'Glacial Crasher', 'Bosh, Iron Golem', 'Stalwart Shield-Bearers', 'Secrets of the Dead', 'Goblin Psychopath', 'Scion of the Ur-Dragon', 'Ice Floe', 'Stalking Yeti', 'Spider Spawning', 'Ripscale Predator', 'Angelic Captain', 'Shaper Parasite', 'Sidar Jabari', 'Crimson Muckwader', 'Precise Strike', 'Razorfield Rhino', 'Flayer of the Hatebound', 'Tuktuk the Explorer', 'Careful Consideration', 'Scarecrow', 'Swirling Spriggan', 'Knighthood', 'Talisman of Impulse', 'Tyrant''s Choice', 'Drowned Rusalka', 'Hunting Moa', 'Anoint', 'Priests of Norn', 'Elvish Branchbender', 'Mindsparker', 'Aeolipile', 'Orb of Dreams', 'Lurking Crocodile', 'Spire Owl', 'Unnatural Endurance', 'Returned Reveler', 'Shadow Alley Denizen', 'Cockatrice', 'Oran-Rief Invoker', 'Mardu Blazebringer', 'Kessig Forgemaster', 'Three Dreams', 'Assert Authority', 'Warriors'' Lesson', 'Brawler''s Plate', 'Golem-Skin Gauntlets', 'Devoted Retainer', 'Conquering Manticore', 'Deathbringer Regent', 'Moonsilver Spear', 'Pin to the Earth', 'Hidden Dragonslayer', 'Venerable Monk', 'Siege Dragon', 'Dispersal Shield', 'Auriok Glaivemaster', 'Deem Worthy', 'Thrull Parasite', 'Disrupting Scepter', 'Shimian Specter', 'Sway of the Stars', 'Grazing Gladehart', 'Wake of Vultures', 'Wild Aesthir', 'Vulshok Morningstar', 'Enigma Sphinx', 'Bewilder', 'Angel of Light', 'Ikiral Outrider', 'Wight of Precinct Six', 'Hundred-Handed One', 'Nightwing Shade', 'Silk Net', 'Arctic Wolves', 'Walking Desecration', 'Sage of the Inward Eye', 'Crackdown Construct', 'Firebreathing', 'Dread Defiler', 'Pathway Arrows', 'Thopter Assembly', 'Preeminent Captain', 'Brink of Madness', 'Safe Passage', 'Apathy', 'Cytoplast Manipulator', 'Mnemonic Nexus', 'Puppeteer', 'Bellowing Tanglewurm', 'Blinding Light', 'Kozilek''s Predator', 'Twincast', 'Stormfront Riders', 'Bloodbond Vampire', 'Kite Shield', 'Subterranean Shambler', 'Spiritual Visit', 'Phyrexian Vatmother', 'Night Market Aeronaut', 'Kithkin Daggerdare', 'Dread', 'Skeletonize', 'Kashi-Tribe Warriors', 'Ludevic''s Test Subject', 'Contradict', 'Tah-Crop Skirmisher', 'Canyon Lurkers', 'Verdant Rebirth', 'Izzet Chronarch', 'Uncle Istvan', 'Crabapple Cohort', 'Blighted Woodland', 'Celestial Flare', 'Dwarven Vigilantes', 'Lunk Errant', 'Rolling Stones', 'Sporeback Troll', 'Lava Flow', 'Sabertooth Outrider', 'Qarsi Deceiver', 'Hammerheim Deadeye', 'Vermiculos', 'Hope Against Hope', 'Treetop Sentinel', 'Tajuru Warcaller', 'Lim-Dûl''s High Guard', 'Naga Oracle', 'Distant Memories', 'Glassblower''s Puzzleknot', 'Durable Handicraft', 'Waterwhirl', 'Horror of Horrors', 'Heroic Defiance', 'Hussar Patrol', 'Izzet Guildgate', 'Stalking Assassin', 'Moonring Mirror', 'Prowess of the Fair', 'Cradle Guard', 'Benefaction of Rhonas', 'Harbinger of Spring', 'Walker of the Grove', 'Lonely Sandbar', 'Sparkmage''s Gambit', 'Viridian Revel', 'Fervent Cathar', 'Goblin Dynamo', 'Curiosity', 'Highland Lake', 'Fallen Angel', 'Premature Burial', 'Dread Specter', 'Thalia''s Lancers', 'Kjeldoran Gargoyle', 'Brood Monitor', 'Tomb of the Spirit Dragon', 'Cobalt Golem', 'Noggin Whack', 'Mana Seism', 'Staff of the Flame Magus', 'Yukora, the Prisoner', 'Battle Mastery', 'Spike-Tailed Ceratops', 'Sanctum Guardian', 'Blade of the Sixth Pride', 'Pulse of the Forge', 'Aven Farseer', 'Rapacious One', 'Chilling Grasp', 'Filigree Familiar', 'Ajani''s Mantra', 'Dromad Purebred', 'Fated Intervention', 'Stonefury', 'Magma Phoenix', 'Fog', 'Woolly Razorback', 'Quest for the Goblin Lord', 'Wandering Wolf', 'Make a Stand', 'Akoum Firebird', 'Volatile Rig', 'Manalith', 'Gargoyle Sentinel', 'Ooze Garden', 'Nagging Thoughts', 'Slash of Talons', 'Dragon Mask', 'Demolition Stomper', 'Helm of the Gods', 'Burning Shield Askari', 'Retreat to Hagra', 'Deconstruct', 'Wall of Swords', 'Scryb Sprites', 'Unnatural Predation', 'Soldevi Golem', 'Darksteel Sentinel', 'Inquisitor''s Flail', 'Quicksmith Genius', 'Drumhunter', 'Stallion of Ashmouth', 'Master of Pearls', 'Soratami Seer', 'Spiteful Returned', 'Sword of the Ages', 'Kobold Taskmaster', 'Wreak Havoc', 'Hotheaded Giant', 'Looming Spires', 'Skitter of Lizards', 'Sky Skiff', 'Morgue Burst', 'Snowhorn Rider', 'Fall of the Titans', 'Dance with Devils', 'Wispweaver Angel', 'Lurking Chupacabra', 'Glowering Rogon', 'Violent Ultimatum', 'Dauthi Marauder', 'Wayward Giant', 'Pack''s Disdain', 'Rampant Growth', 'Mishra, Artificer Prodigy', 'Circle of Elders', 'Fa''adiyah Seer', 'Marshmist Titan', 'Dark Revenant', 'Odunos River Trawler', 'Inferno Jet', 'Mana Geyser', 'Myr Landshaper', 'Feebleness', 'Fuel for the Cause', 'Emissary of Hope', 'Oath of Jace', 'Rummaging Wizard', 'Counterflux', 'Ekundu Cyclops', 'Fog of Gnats', 'Nest Robber', 'Channel the Suns', 'Bounding Krasis', 'Stampeding Rhino', 'Echo Tracer', 'Disarm', 'River Bear', 'Weirding Wood', 'Favorable Destiny', 'Stonehewer Giant', 'Crow of Dark Tidings', 'Longshot Squad', 'Fiery Mantle', 'Rakdos Guildgate', 'Cry of Contrition', 'Furnace Spirit', 'Kjeldoran Elite Guard', 'Village Cannibals', 'Skeletal Changeling', 'Barkshell Blessing', 'Woodweaver''s Puzzleknot', 'Portent of Betrayal', 'Visionary Augmenter', 'Lyev Decree', 'Skyblinder Staff', 'Frenetic Raptor', 'Banishment Decree', 'Jeskai Windscout', 'Due Respect', 'Canyon Minotaur', 'Hold at Bay', 'Shock Troops', 'Ruinous Gremlin', 'Hinder', 'Alabaster Mage', 'Reservoir Walker', 'Call to Arms', 'Nebelgast Herald', 'Timid Drake', 'Foe-Razer Regent', 'Anchor to the Aether', 'Geier Reach Bandit', 'Power Conduit', 'Viridian Shaman', 'Orzhov Cluestone', 'Glintwing Invoker', 'Titanium Golem', 'Open into Wonder', 'Magnetic Mine', 'Temporal Isolation', 'Deluge', 'Ethereal Guidance', 'Overwhelming Stampede', 'Purity', 'Retribution', 'Aegis of Honor', 'Sibsig Muckdraggers', 'Crash of Rhinos', 'Ashnod''s Cylix', 'Phosphorescent Feast', 'Into the Fray', 'Deadbridge Goliath', 'Illusionist''s Stratagem', 'Conclave Phalanx', 'Fiery Cannonade', 'Kumano, Master Yamabushi', 'Psychotic Fury', 'Elite Archers', 'Dragon Engine', 'Oboro Envoy', 'Highway Robber', 'Copperhoof Vorrac', 'Induce Paranoia', 'Inner-Flame Igniter', 'Honden of Life''s Web', 'Diluvian Primordial', 'Clay Statue', 'Altar of the Brood', 'Sight of the Scalelords', 'Serra''s Boon', 'Crater Hellion', 'Dimir Infiltrator', 'Archon of the Triumvirate', 'Bone Saw', 'Blinkmoth Well', 'Honed Khopesh', 'Siren Lookout', 'Tatterkite', 'Ruthless Cullblade', 'From Under the Floorboards', 'Maulfist Doorbuster', 'Iron-Heart Chimera', 'Sanctuary Cat', 'Trostani''s Summoner', 'Glyph Keeper', 'Neurok Transmuter', 'Nettling Curse', 'Ember Gale', 'Builder''s Blessing', 'Wandering Mage', 'Thought Dissector', 'Turn Against', 'Ruthless Sniper', 'Sidewinder Naga', 'Gilt-Leaf Ambush', 'Vengeful Archon', 'Gallows at Willow Hill', 'Avatar of Might', 'Scabland', 'Sanctifier of Souls', 'Citanul Centaurs', 'Dromoka Warrior', 'Giant Ambush Beetle', 'Runeclaw Bear', 'Pentavus', 'Mark of the Vampire', 'Fighting Chance', 'Pentarch Ward', 'Lady Orca', 'Endless Sands', 'Cursebreak', 'Soul Collector', 'War Behemoth', 'False Cure', 'Spinebiter', 'Kytheon''s Tactics', 'Break Open', 'Festerhide Boar', 'Vortex Elemental', 'Delirium Skeins', 'Cruel Finality', 'Marshdrinker Giant', 'Archetype of Imagination', 'Horribly Awry', 'Water Elemental', 'Font of Fortunes', 'Necratog', 'Powerstone Minefield', 'Shadow Lance', 'Piranha Marsh', 'Tezzeret''s Ambition', 'Splinterfright', 'Saheeli''s Artistry', 'Lavastep Raider', 'Final Reward', 'Stir the Pride', 'Carrion Thrash', 'Shoreline Ranger', 'Barbed Lightning', 'Spire Monitor', 'Moonglove Extract', 'Demystify', 'Smother', 'Vanguard of Brimaz', 'Necrogen Spellbomb', 'Sandstone Bridge', 'Intimidator Initiate', 'Greenseeker', 'Swooping Talon', 'Tormented Angel', 'Embraal Bruiser', 'Knight of Stromgald', 'Goblin Settler', 'Spontaneous Combustion', 'Icy Blast', 'Wojek Embermage', 'Frozen Solid', 'Nomad Outpost', 'Ronom Hulk', 'Ironclaw Orcs', 'Sinister Concoction', 'Ancient Amphitheater', 'Sokenzan Spellblade', 'Comparative Analysis', 'Greenhilt Trainee', 'Raven Guild Initiate', 'Spirit Mirror', 'Savage Summoning', 'Fyndhorn Elder', 'Culling Sun', 'Voidstone Gargoyle', 'Corpsejack Menace', 'Shock', 'Barony Vampire', 'Welcome to the Fold', 'Karoo Meerkat', 'Keeper of the Beasts', 'Pull from Eternity', 'True-Faith Censer', 'Kinsbaile Skirmisher', 'Ashling''s Prerogative', 'Waterspout Djinn', 'Resolute Blademaster', 'Stone Haven Medic', 'Infernal Scarring', 'Divination', 'Magnifying Glass', 'Sarcomite Myr', 'Spined Basher', 'Viashino Slaughtermaster', 'Stream Hopper', 'Angelic Overseer', 'Calciform Pools', 'Chandra''s Fury', 'Nim Shrieker', 'Jace''s Sanctum', 'Encroaching Wastes', 'Hamlet Captain', 'Selective Memory', 'Merciless Resolve', 'Moonlight Geist', 'Trespassing Souleater', 'Autumn''s Veil', 'Oath of Chandra', 'Enormous Baloth', 'Kingfisher', 'Cliff Threader', 'Necrite', 'Shiv''s Embrace', 'Battlewise Valor', 'Elaborate Firecannon', 'Chartooth Cougar', 'Tribal Forcemage', 'Grave Bramble', 'Devouring Rage', 'Stonybrook Angler', 'Clutch of Undeath', 'Port Inspector', 'Lush Growth', 'Bringer of the Red Dawn', 'Slumbering Tora', 'Dauntless Dourbark', 'Panther Warriors', 'Soul Tithe', 'Demon''s Grasp', 'Staff of the Wild Magus', 'Repopulate', 'Reaper of the Wilds', 'Thassa''s Rebuff', 'Staff of the Sun Magus', 'Avacyn''s Pilgrim', 'Fylamarid', 'Nissa''s Pilgrimage', 'Kitesail Scout', 'Teardrop Kami', 'Trial of Knowledge', 'Dawntreader Elk', 'Rise from the Tides', 'Viscerid Armor', 'Boneyard Wurm', 'Energy Arc', 'Gnawing Zombie', 'Mitotic Slime', 'Wastes', 'Boggart Birth Rite', 'Bred for the Hunt', 'Gibbering Descent', 'Oni of Wild Places', 'Cellar Door', 'Howling Banshee', 'Belfry Spirit', 'Zenith Seeker', 'Damping Matrix', 'King Macar, the Gold-Cursed', 'Ihsan''s Shade', 'Scout the Borders', 'Duskhunter Bat', 'Grafted Exoskeleton', 'Glare of Subdual', 'Ogre Savant', 'Goblin Grenadiers', 'Aven Augur', 'Coiling Oracle', 'Elder Land Wurm', 'Scour from Existence', 'Magus of the Candelabra', 'Stoic Builder', 'Foriysian Interceptor', 'Raised by Wolves', 'Tah-Crop Elite', 'Tectonic Rift', 'Skyhunter Prowler', 'Citanul Druid', 'Ravaging Riftwurm', 'Flowstone Hellion', 'Sultai Soothsayer', 'Daring Sleuth', 'Sootfeather Flock', 'Crossway Vampire', 'Tandem Tactics', 'Implement of Examination', 'Teferi''s Honor Guard', 'Thraben Sentry', 'Scab-Clan Giant', 'Castle', 'Syncopate', 'Nearheath Pilgrim', 'White Shield Crusader', 'Stonewood Invoker', 'Heliophial', 'Kavu Mauler', 'Krovikan Fetish', 'Eternal Dragon', 'Hellkite Charger', 'To the Slaughter', 'Altar of Shadows', 'Jhessian Thief', 'Failed Inspection', 'Golem Foundry', 'Urborg Mindsucker', 'Xathrid Gorgon', 'Divine Offering', 'Storm Entity', 'Launch Party', 'Docent of Perfection', 'Venomous Fangs', 'Gaze of Justice', 'Interdict', 'Mounted Archers', 'Vital Surge', 'Gate Hound', 'Exotic Disease', 'Concerted Effort', 'Mindshrieker', 'Invasion Plans', 'Lava Zombie', 'Maggot Carrier', 'Goblin Battle Jester', 'Ring of Xathrid', 'Improvised Armor', 'Mantle of Leadership', 'Sabertooth Wyvern', 'Chorus of the Tides', 'Makeshift Mannequin', 'Krosan Cloudscraper', 'Radiant, Archangel', 'Rush of Battle', 'Holy Strength', 'Kessig Cagebreakers', 'Dragon Fodder', 'Xathrid Slyblade', 'Excoriate', 'Rattleblaze Scarecrow', 'Unstoppable Ash', 'Brass-Talon Chimera', 'Overrun', 'Raptor Hatchling', 'Priest of Iroas', 'Endoskeleton', 'Wall of Kelp', 'Grixis Slavedriver', 'Argent Mutation', 'Thassa''s Bounty', 'Flameborn Viron', 'Megantic Sliver', 'Telepathic Spies', 'Bog Raiders', 'Stabbing Pain', 'Aysen Bureaucrats', 'Ragnar', 'Risen Sanctuary', 'Sunseed Nurturer', 'Overeager Apprentice', 'Cartographer', 'Mindstab Thrull', 'Fatal Attraction', 'Cave Tiger', 'Ogre Marauder', 'Grasp of the Hieromancer', 'Permafrost Trap', 'Kuldotha Phoenix', 'Arcbound Bruiser', 'Species Gorger', 'Blood Tribute', 'Skarrg, the Rage Pits', 'Desperate Sentry', 'Razormane Masticore', 'Gilded Sentinel', 'Stensia Bloodhall', 'Dark Favor', 'Icatian Crier', 'Argent Sphinx', 'Lamplighter of Selhoff', 'Promised Kannushi', 'Untamed Wilds', 'Vampire Cutthroat', 'Hollow Dogs', 'Vengeful Firebrand', 'Aligned Hedron Network', 'Titanic Growth', 'Nantuko Husk', 'Entropic Eidolon', 'Archdemon of Unx', 'Living Lore', 'Aquitect''s Will', 'Convincing Mirage', 'Hanweir Lancer', 'Mask of the Mimic', 'Tresserhorn Sinks', 'Simian Grunts', 'Plague Belcher', 'Identity Crisis', 'Fathom Fleet Firebrand', 'Dromoka Dunecaster', 'Redeem the Lost', 'Ovalchase Daredevil', 'Shivan Wurm', 'Ondu Giant', 'Unravel the Aether', 'Goblin War Paint', 'Prophet of Kruphix', 'Angel''s Mercy', 'Tangle Angler', 'Darkthicket Wolf', 'Defiant Greatmaw', 'Ursapine', 'Heap Doll', 'Staunch-Hearted Warrior', 'Shape the Sands', 'Akoum Boulderfoot', 'Expedition Raptor', 'Leery Fogbeast', 'Repentance', 'Festercreep', 'Changeling Berserker', 'Severed Legion', 'Hostile Realm', 'Indigo Faerie', 'Naga Vitalist', 'Hanweir Watchkeep', 'Mesmeric Fiend', 'Purify', 'Stinging Licid', 'Ferropede', 'Nature''s Wrath', 'Nissa''s Chosen', 'Goblin Lackey', 'Nullstone Gargoyle', 'Roterothopter', 'Rabble-Rouser', 'Scatter the Seeds', 'Yawgmoth Demon', 'Gathan Raiders', 'Virulent Swipe', 'Call to the Feast', 'Arbalest Elite', 'Fortified Rampart', 'Mourning Thrull', 'Tel-Jilad Justice', 'Drownyard Temple', 'Thriving Rhino', 'Youthful Knight', 'Khenra Charioteer', 'Village Bell-Ringer', 'Icatian Scout', 'Grind // Dust', 'Thundersong Trumpeter', 'Eye of the Storm', 'Hail of Arrows', 'Mesmeric Trance', 'Harvest Mage', 'Kinsbaile Borderguard', 'Ethereal Ambush', 'Lose Hope', 'Warmonger', 'Words of Wind', 'Flowstone Channeler', 'Diplomacy of the Wastes', 'Send to Sleep', 'Goldnight Redeemer', 'Herald of Kozilek', 'Stronghold Rats', 'Protection of the Hekma', 'Forced Retreat', 'Nettletooth Djinn', 'Hazoret''s Undying Fury', 'Fade from Memory', 'Anaba Shaman', 'Fire Drake', 'Curse of the Swine', 'Knight of Dusk', 'Jokulmorder', 'Rusted Relic', 'Bronze Horse', 'Slayer''s Plate', 'Hunted Phantasm', 'Tangle', 'Naya Sojourners', 'Aven Fisher', 'Reflex Sliver', 'Changeling Titan', 'Spark Jolt', 'Fanning the Flames', 'Jungle Shrine', 'Nessian Game Warden', 'Ogre Menial', 'Vengeance', 'Behind the Scenes', 'Wildfire Cerberus', 'Fortress Cyclops', 'Stave Off', 'Defiant Ogre', 'Bomber Corps', 'Kitsune Mystic', 'Floodwater Dam', 'War Barge', 'Dazzling Reflection', 'Minion of Leshrac', 'Steal Enchantment', 'Thorned Moloch', 'First Response', 'Clockwork Hydra', 'Wind Drake', 'Warthog', 'Char-Rumbler', 'Field Creeper', 'Arms Dealer', 'Rise to the Challenge', 'Goblin Artillery', 'Ambush Party', 'Turntimber Ranger', 'Rip-Clan Crasher', 'Ondu War Cleric', 'Ignorant Bliss', 'Zhalfirin Commander', 'Bladetusk Boar', 'Downpour', 'Uncovered Clues', 'Reckless Waif', 'Thalakos Scout', 'Kin-Tree Warden', 'Serra''s Blessing', 'Ordruun Veteran', 'Goblin Legionnaire', 'Falkenrath Torturer', 'Golgari Guildgate', 'Vanishing', 'Kongming, "Sleeping Dragon"', 'Sea God''s Revenge', 'Dross Scorpion', 'Wild Nacatl', 'Ersatz Gnomes', 'Scrounging Bandar', 'Scatter to the Winds', 'Beastbreaker of Bala Ged', 'Fork in the Road', 'Nissa''s Defeat', 'Sunblade Elf', 'Incursion Specialist', 'Kabira Vindicator', 'Cavern Thoctar', 'Copper Carapace', 'Dissenter''s Deliverance', 'Illusionary Servant', 'Vebulid', 'Astral Steel', 'Hair-Strung Koto', 'Cloaked Siren', 'Fissure', 'Call to Heel', 'Struggle // Survive', 'Stingmoggie', 'Kjeldoran Outpost', 'Sage of Shaila''s Claim', 'Grave Betrayal', 'Nova Pentacle', 'Rescue from the Underworld', 'Fogwalker', 'Living Totem', 'Treasure Trove', 'Fists of the Demigod', 'Kill Shot', 'Murderer''s Axe', 'Metalspinner''s Puzzleknot', 'Fire Imp', 'Ancient Ooze', 'Magus of the Library', 'Jackal Pup', 'Halimar Excavator', 'Corpse Connoisseur', 'Sibsig Host', 'Opportunity', 'Dream Tides', 'Sagu Mauler', 'Bellows Lizard', 'Consuming Ferocity', 'Legacy Weapon', 'Grasslands', 'Steadfast Armasaur', 'Implement of Improvement', 'Vengeful Rebirth', 'Ifh-Bíff Efreet', 'Pensive Minotaur', 'Zur''s Weirding', 'Blind Hunter', 'Chameleon Blur', 'Opportunist', 'Shambling Ghoul', 'Bloodbriar', 'Dryad''s Favor', 'Contempt', 'Electrify', 'Orim, Samite Healer', 'Erhnam Djinn', 'Write into Being', 'Elgaud Inquisitor', 'Swerve', 'Might Beyond Reason', 'Aven Reedstalker', 'Slingbow Trap', 'Bladed Pinions', 'Fangren Pathcutter', 'Gwyllion Hedge-Mage', 'Shamble Back', 'Gearshift Ace', 'Retreat to Emeria', 'Combust', 'Impelled Giant', 'Icatian Town', 'Vessel of Paramnesia', 'Shackles', 'Stern Constable', 'Keldon Halberdier', 'Spring Cleaning', 'Omenspeaker', 'Clock of Omens', 'Broodmate Dragon', 'Cloudcrest Lake', 'Axebane Stag', 'Traitor''s Clutch', 'Colossus of Akros', 'Talas Researcher', 'Dimensional Breach', 'Expedition Envoy', 'Pious Evangel', 'Deny Reality', 'Scepter of Empires', 'Blinding Fog', 'Aether Membrane', 'Poisonbelly Ogre', 'Wild Ricochet', 'Golgari Cluestone', 'Sight Beyond Sight', 'Yawning Fissure', 'Sadistic Sacrament', 'Crime // Punishment', 'Petrahydrox', 'Bonds of Quicksilver', 'Fling', 'Pyreheart Wolf', 'Blinding Flare', 'Reckless Imp', 'Viashino Racketeer', 'Windrider Patrol', 'Capricious Efreet', 'Sigiled Skink', 'Vedalken Blademaster', 'Iname, Death Aspect', 'Dewdrop Spy', 'Cursed Rack', 'Sacred Wolf', 'Dauthi Jackal', 'Orchard Spirit', 'Staff of the Mind Magus', 'Albino Troll', 'Searing Touch', 'Scythe of the Wretched', 'March of the Returned', 'Geist-Fueled Scarecrow', 'Cackling Flames', 'Fiery Justice', 'Gliding Licid', 'Bioplasm', 'Junún Efreet', 'Moonhold', 'Hollowborn Barghest', 'Resolute Survivors', 'Ceaseless Searblades', 'Repay in Kind', 'Defiant Bloodlord', 'Ongoing Investigation', 'Messenger Falcons', 'Living Wall', 'Resize', 'Reprisal', 'Weed Strangle', 'Sultai Ascendancy', 'Rakavolver', 'Ghost-Lit Stalker', 'The Unspeakable', 'Fear', 'Skirk Shaman', 'Lay Claim', 'Pierce Strider', 'Coiled Tinviper', 'Wanted Scoundrels', 'Teller of Tales', 'Coalition Victory', 'Bishop of Rebirth', 'Runeflare Trap', 'Clockwork Steed', 'Make Obsolete', 'Clutch of the Undercity', 'Essence Feed', 'Wily Bandar', 'Skyscribing', 'Woebringer Demon', 'Inventor''s Apprentice', 'Fleeting Memories', 'Corrupted Crossroads', 'Realm Seekers', 'Healer of the Pride', 'March from the Tomb', 'Fatigue', 'Extinguish All Hope', 'Avarice Totem', 'General''s Kabuto', 'Safewright Quest', 'Rumbling Baloth', 'Wormwood Dryad', 'Initiate''s Companion', 'Tainted Strike', 'Sunhome Guildmage', 'Cerebral Eruption', 'Armorer Guildmage', 'Chamber of Manipulation', 'Martyred Rusalka', 'Warmind Infantry', 'Gorger Wurm', 'Lowland Tracker', 'Selesnya Evangel', 'Stromkirk Mentor', 'Screeching Drake', 'Akuta, Born of Ash', 'Servo Exhibition', 'Slashing Tiger', 'Charging Slateback', 'Plaxcaster Frogling', 'Earthbrawn', 'Inertia Bubble', 'Acrobatic Maneuver', 'Thunder Spirit', 'Exalted Dragon', 'Merfolk of the Depths', 'Reaping the Rewards', 'Hikari, Twilight Guardian', 'Steal Artifact', 'Wit''s End', 'Tideshaper Mystic', 'Kobold Overlord', 'Audacious Infiltrator', 'Heed the Mists', 'Monstrous Onslaught', 'Chaotic Backlash', 'Renegade Doppelganger', 'Sage''s Row Denizen', 'Stormwing Dragon', 'Daybreak Ranger', 'Ghitu Slinger', 'Faith''s Fetters', 'Abhorrent Overlord', 'Simic Keyrune', 'Reef Shaman', 'Wooden Sphere', 'Mirran Mettle', 'Ana Battlemage', 'Abandon Hope', 'Terraformer', 'Hixus, Prison Warden', 'Rending Vines', 'Nature''s Spiral', 'Nimbus of the Isles', 'Font of Vigor', 'Cateran Brute', 'Failure // Comply', 'Putrid Warrior', 'Nimbus Wings', 'Scaled Behemoth', 'Fencer''s Magemark', 'Jelenn Sphinx', 'Steadfast Sentinel', 'Epic Proportions', 'Ordeal of Purphoros', 'Carnage Wurm', 'Slavering Nulls', 'Demonic Torment', 'Offering to Asha', 'Thunder Brute', 'Voodoo Doll', 'Halo Hunter', 'Cloudcrown Oak', 'Skymark Roc', 'Withering Wisps', 'Cephalid Retainer', 'Tromokratis', 'Ixalli''s Diviner', 'Jungle Basin', 'Elite Skirmisher', 'Ghosts of the Innocent', 'Piety Charm', 'Reverent Hunter', 'Minion of the Wastes', 'Nomads en-Kor', 'Frenetic Sliver', 'Death''s Duet', 'Witch-Maw Nephilim', 'Winding Wurm', 'Final Punishment', 'Quest for Ula''s Temple', 'Boon of Erebos', 'Stormcloud Djinn', 'Sharpened Pitchfork', 'Wildslayer Elves', 'Qasali Ambusher', 'Twist Allegiance', 'Expose Evil', 'Angel''s Trumpet', 'Earthen Arms', 'Airdrop Condor', 'Unified Strike', 'Firemane Angel', 'Slice in Twain', 'Scavenging Ghoul', 'False Defeat', 'Grief Tyrant', 'Noggle Bandit', 'Honored Hydra', 'Feast on the Fallen', 'Hunding Gjornersen', 'Talonrend', 'Runed Servitor', 'Aerial Formation', 'Cabal Ritual', 'Rofellos, Llanowar Emissary', 'Unyielding Krumar', 'Befoul', 'Flowstone Charger', 'Fervent Denial', 'Toils of Night and Day', 'Rakshasa Vizier', 'Brazen Buccaneers', 'Keldon Mantle', 'Otherworldly Journey', 'Din of the Fireherd', 'Death by Dragons', 'Altar of the Lost', 'Uktabi Orangutan', 'Reckless Charge', 'Visions of Brutality', 'Goblin General', 'Watchdog', 'Thopter Engineer', 'Shinen of Fear''s Chill', 'Vile Deacon', 'Nightbird''s Clutches', 'Juggernaut', 'Roiling Waters', 'Stingscourger', 'Oblivion Strike', 'Augmenting Automaton', 'Heart-Piercer Manticore', 'Stingerfling Spider', 'Crypsis', 'Planeswalker''s Scorn', 'Exultant Cultist', 'Ghirapur Orrery', 'Sporemound', 'Forgotten Lore', 'Favor of the Woods', 'Scouring Sands', 'Reincarnation', 'Nantuko Disciple', 'Rhox', 'Wall of Limbs', 'Tenacity', 'Prodigal Sorcerer', 'Reach Through Mists', 'Traveler''s Amulet', 'Jade Monolith', 'Contract Killing', 'Chronosavant', 'Stitchwing Skaab', 'Towering Baloth', 'Aether Adept', 'Writ of Passage', 'Mine Excavation', 'Orcish Squatters', 'Overwhelming Intellect', 'Alchemist''s Greeting', 'Akki Rockspeaker', 'Brine Seer', 'Whipcorder', 'Sword-Point Diplomacy', 'Black Knight', 'Wayward Soul', 'Words of Wilding', 'Turbulent Dreams', 'All Suns'' Dawn', 'Bad River', 'Swell of Growth', 'Slith Predator', 'Carrion Call', 'Lowland Basilisk', 'Vampire Aristocrat', 'Gilt-Leaf Winnower', 'Seraph of the Suns', 'Withstand Death', 'Duskdale Wurm', 'Shivan Phoenix', 'Meletis Charlatan', 'Lupine Prototype', 'Volcano Imp', 'Cower in Fear', 'Viridian Betrayers', 'Adamaro, First to Desire', 'Bright Reprisal', 'Grisly Survivor', 'Momentum', 'Ophidian Eye', 'Font of Ire', 'Touch of the Void', 'Hold the Line', 'Skeletal Vampire', 'Blinding Drone', 'Alabaster Potion', 'Granite Grip', 'Hex', 'Aetherstream Leopard', 'Forgeborn Oreads', 'Vigilante Justice', 'Toil // Trouble', 'Stuffy Doll', 'Heartseeker', 'Butcher of the Horde', 'Triskelion', 'Chronomaton', 'Cliffhaven Vampire', 'Drana, Kalastria Bloodchief', 'Black Oak of Odunos', 'Take Inventory', 'Carrion Crow', 'Soltari Trooper', 'Eron the Relentless', 'Dead // Gone', 'Haunted Dead', 'Leonin Den-Guard', 'Knotvine Mystic', 'Heir of Falkenrath', 'Implement of Combustion', 'Yoked Ox', 'Solitary Hunter', 'Seaside Citadel', 'Extricator of Sin', 'Electryte', 'Shriekhorn', 'Scrapdiver Serpent', 'Chain of Silence', 'Storm Sculptor', 'Drudge Skeletons', 'Filigree Fracture', 'Riot Piker', 'Umbra Stalker', 'Tolarian Sentinel', 'Vineshaper Mystic', 'Supernatural Stamina', 'Steel Golem', 'Valakut Predator', 'Stromkirk Condemned', 'Might of the Nephilim', 'Sage of Epityr', 'Devout Witness', 'Uncontrollable Anger', 'Petalmane Baku', 'Sentry of the Underworld', 'Primal Clay', 'Sanctum Plowbeast', 'Evil Eye of Orms-by-Gore', 'Quirion Dryad', 'Ohran Yeti', 'Woeleecher', 'Safeguard', 'Valor Made Real', 'Force Bubble', 'Faceless Devourer', 'Faerie Noble', 'Moltensteel Dragon', 'Allied Strategies', 'Skaab Goliath', 'Disorder', 'Crushing Canopy', 'Makeshift Munitions', 'Prized Unicorn', 'Simic Guildgate', 'Echoing Calm', 'Duergar Assailant', 'Varchild''s Crusader', 'Aeon Chronicler', 'Gerrard''s Battle Cry', 'Fire Servant', 'Break of Day', 'Millikin', 'Heat Shimmer', 'Bludgeon Brawl', 'Phyrexian Colossus', 'Possessed Aven', 'Gruul War Chant', 'Tormented Hero', 'Vedalken Dismisser', 'Scapegoat', 'Dampen Thought', 'Quest for the Gemblades', 'Mage Slayer', 'Radiant Flames', 'Necrobite', 'Greater Harvester', 'Sirocco', 'Nightmarish End', 'Mist Leopard', 'Wooden Stake', 'Paradox Haze', 'Unflinching Courage', 'Viral Drake', 'Simic Cluestone', 'Broodwarden', 'Might Weaver', 'Burst of Speed', 'Luminous Wake', 'Execute', 'Searing Meditation', 'Palinchron', 'Vizier of Deferment', 'Rock Badger', 'Stomp and Howl', 'Swift Justice', 'Veteran Bodyguard', 'Thunderblust', 'Borderland Marauder', 'Chorus of Might', 'Leech Bonder', 'Incendiary Command', 'Set Adrift', 'Haze Frog', 'Wojek Halberdiers', 'Iname, Life Aspect', 'Embodiment of Fury', 'Circle of Protection: Shadow', 'Infiltrator il-Kor', 'Quiet Contemplation', 'Lantern Scout', 'Viscid Lemures', 'Apothecary Initiate', 'Bonded Construct', 'Tezzeret''s Touch', 'Magma Mine', 'Journey of Discovery', 'Arcane Melee', 'Ark of Blight', 'Lost Leonin', 'Gift of Orzhova', 'Tortoise Formation', 'Flight Spellbomb', 'Omen Machine', 'Vastwood Animist', 'Aven Flock', 'Brilliant Ultimatum', 'Duskmantle Prowler', 'Haunting Apparition', 'Glacial Ray', 'Vivisection', 'Lose Calm', 'Sly Requisitioner', 'Chimeric Idol', 'Colfenor''s Plans', 'Ironclad Slayer', 'Grove Rumbler', 'Goblin Bangchuckers', 'Engineered Might', 'Wall of Torches', 'Riot Gear', 'Stampeding Elk Herd', 'Yavimaya Kavu', 'Juniper Order Advocate', 'Lyev Skyknight', 'Cranial Archive', 'Homarid Spawning Bed', 'Lodestone Myr', 'Conundrum Sphinx', 'Gravity Well', 'Kurkesh, Onakke Ancient', 'Skyshroud Ranger', 'Crucible of Fire', 'Body of Jukai', 'Noble Quarry', 'Antler Skulkin', 'Cloud Manta', 'Arcades Sabboth', 'Fires of Yavimaya', 'Raiders'' Spoils', 'Voracious Null', 'Wretched Camel', 'Worldgorger Dragon', 'Ever After', 'Dawn to Dusk', 'Miasmic Mummy', 'Fearsome Temper', 'Contingency Plan', 'Pterodon Knight', 'Vedalken Certarch', 'Refuse // Cooperate', 'Last Stand', 'Slay', 'Bounty of the Luxa', 'Accursed Witch', 'Defender of Law', 'Quarry Hauler', 'Neurok Stealthsuit', 'Sparkmage Apprentice', 'Overwhelming Denial', 'Keening Stone', 'Aerial Predation', 'Kederekt Creeper', 'Urborg Stalker', 'Honorable Passage', 'Lady Evangela', 'Illuminated Wings', 'Skirsdag High Priest', 'Ovinomancer', 'Carnage Gladiator', 'Karplusan Giant', 'Uncaged Fury', 'Bloodrock Cyclops', 'Skeleton Shard', 'Necromancer''s Covenant', 'Sacred Excavation', 'Storm Crow', 'Arc Runner', 'Shadow Rider', 'Blightwidow', 'Vial of Dragonfire', 'Stupefying Touch', 'Seismic Spike', 'Baton of Courage', 'Ambassador Oak', 'Shattered Dreams', 'Coral Fighters', 'Fiery Impulse', 'Avenging Druid', 'Razortip Whip', 'Peace and Quiet', 'Scrounge', 'Kudzu', 'Archetype of Finality', 'Yavimaya Scion', 'Grid Monitor', 'Sunscape Battlemage', 'Dromoka''s Gift', 'Captain''s Call', 'Orcish Bloodpainter', 'Reliquary Monk', 'Soul Conduit', 'Dimir Machinations', 'Infuse with the Elements', 'Yeva''s Forcemage', 'Faithbearer Paladin', 'Violent Impact', 'Canopy Gorger', 'Faerie Mechanist', 'Embersmith', 'Familiar''s Ruse', 'Predatory Focus', 'Aven Liberator', 'Override', 'Cream of the Crop', 'Doomgape', 'Elusive Spellfist', 'Borderland Behemoth', 'Faultgrinder', 'Sanguinary Mage', 'Junktroller', 'Sapphire Drake', 'Jaddi Offshoot', 'Havenwood Wurm', 'Sweep Away', 'Serra Aviary', 'Ranger''s Path', 'Scribe of the Mindful', 'Knollspine Dragon', 'Thrill of the Hunt', 'Sporoloth Ancient', 'Zombie Scavengers', 'Bound // Determined', 'Barbed Sliver', 'Ally Encampment', 'Heartlash Cinder', 'Void Shatter', 'Trove of Temptation', 'Sell-Sword Brute', 'Balduvian Barbarians', 'Explosive Revelation', 'Gnathosaur', 'Biovisionary', 'Aerie Bowmasters', 'Stand Together', 'Instill Infection', 'Watchful Automaton', 'Rimewind Cryomancer', 'Spectral Bears', 'Loxodon Mystic', 'Shivan Emissary', 'Magmatic Insight', 'Tower Above', 'Trigon of Thought', 'Wilt-Leaf Cavaliers', 'Emissary of Sunrise', 'Rakdos Riteknife', 'Savage Lands', 'Nahiri''s Machinations', 'Sedge Troll', 'Slith Firewalker', 'Escape Routes', 'Canopy Crawler', 'Leonin Iconoclast', 'Harvest Hand', 'Crackling Doom', 'Merfolk of the Pearl Trident', 'Haze of Pollen', 'Witch''s Familiar', 'Brain in a Jar', 'Root Greevil', 'Gangrenous Goliath', 'Silvergill Douser', 'Grave Peril', 'Fleetwheel Cruiser', 'Tasseled Dromedary', 'Angel''s Feather', 'Eternal of Harsh Truths', 'Fencing Ace', 'Azor''s Elocutors', 'Sealock Monster', 'Grasp of Darkness', 'Mossbridge Troll', 'Nylea''s Disciple', 'Dissipation Field', 'Bestial Menace', 'Living Destiny', 'Transmogrifying Licid', 'Scent of Ivy', 'Simic Fluxmage', 'Corrupted Zendikon', 'Quash', 'Neurok Prodigy', 'Fugitive Druid', 'Angelic Accord', 'Havoc Sower', 'Volt Charge', 'Nezumi Ronin', 'Grixis Charm', 'Death Watch', 'Detainment Spell', 'Dynavolt Tower', 'Krosan Drover', 'Orzhov Guildmage', 'Wreath of Geists', 'Lifespark Spellbomb', 'Anurid Murkdiver', 'Death Grasp', 'Simian Brawler', 'Equestrian Skill', 'Kami of the Tended Garden', 'Floodtide Serpent', 'Temporal Eddy', 'Blood-Chin Fanatic', 'Phyrexian Swarmlord', 'Remorseless Punishment', 'Sigiled Behemoth', 'Surge of Zeal', 'Avacyn''s Judgment', 'Scuttling Death', 'Watertrap Weaver', 'Fiery Fall', 'Temple of Mystery', 'Shard Convergence', 'Dismal Failure', 'Psychic Trance', 'Druid''s Deliverance', 'Needle Storm', 'Yavimaya Wurm', 'Ib Halfheart, Goblin Tactician', 'Kithkin Zephyrnaut', 'Starved Rusalka', 'Leaf Gilder', 'Force of Nature', 'Mul Daya Channelers', 'Coastal Hornclaw', 'Villagers of Estwald', 'Kuldotha Flamefiend', 'Silkweaver Elite', 'Auriok Survivors', 'Insatiable Gorgers', 'Thrull Surgeon', 'Scent of Nightshade', 'Steppe Glider', 'Academy Elite', 'Root-Kin Ally', 'Indebted Samurai', 'Spawnwrithe', 'Reverence', 'Absolver Thrull', 'Wojek Siren', 'Necrotic Sliver', 'Miming Slime', 'Brine Elemental', 'Fretwork Colony', 'Viashino Bladescout', 'Flesh to Dust', 'Rain of Embers', 'Carnage Altar', 'Silverback Ape', 'Zombie Infestation', 'Sleep Paralysis', 'Silumgar Spell-Eater', 'Survive the Night', 'Bloodpyre Elemental', 'Aethermage''s Touch', 'Arachnus Spinner', 'Akki Lavarunner', 'Tivadar of Thorn', 'Skeletal Wurm', 'Krark''s Thumb', 'Sentinel of the Eternal Watch', 'Flowstone Wyvern', 'Living Inferno', 'Death''s Presence', 'Swarm of Bloodflies', 'Unforge', 'Flowstone Flood', 'Warden of the Beyond', 'Rack and Ruin', 'Golgari Rotwurm', 'Snare Thopter', 'Disempower', 'Felhide Brawler', 'Peregrination', 'Fugitive Wizard', 'Warped Researcher', 'Mortal Obstinacy', 'Masako the Humorless', 'Candles of Leng', 'Joraga Invocation', 'Permeating Mass', 'Salt Road Quartermasters', 'Animation Module', 'Forcemage Advocate', 'Surging Sentinels', 'Immolation', 'Charging Cinderhorn', 'Mirri the Cursed', 'Dwarven Bloodboiler', 'Skullmane Baku', 'Soul Seizer', 'Basal Thrull', 'Boneknitter', 'Drake Hatchling', 'Gild', 'Soot Imp', 'Rooftop Storm', 'Scald', 'Battlegrace Angel', 'Drogskol Shieldmate', 'Aven Fleetwing', 'Spellshift', 'Blistering Barrier', 'Ordeal of Heliod', 'Merrow Commerce', 'Temur Banner', 'Telekinetic Sliver', 'Shanodin Dryads', 'Oreskos Swiftclaw', 'Ogre Enforcer', 'Ebon Dragon', 'Soulmender', 'Goblin Roughrider', 'Mardu Hordechief', 'Ruin Rat', 'Haunted Angel', 'Quilled Sliver', 'Dross Hopper', 'Splatter Thug', 'Repentant Vampire', 'Crowned Ceratok', 'Lurching Rotbeast', 'Faerie Harbinger', 'Lightning Blow', 'Hellkite Hatchling', 'Defang', 'Giant Dustwasp', 'Soul of Magma', 'Dramatic Reversal', 'Oath of Gideon', 'Broodhunter Wurm', 'Rogue''s Gloves', 'Malevolent Whispers', 'Heartwood Treefolk', 'Rile', 'Disruption Aura', 'Skyshroud Elite', 'Ekundu Griffin', 'Tribute to the Wild', 'Oxidda Golem', 'Souls of the Faultless', 'Nightveil Specter', 'Guardian Automaton', 'Advanced Hoverguard', 'Ghostly Changeling', 'Stitcher''s Apprentice', 'Volcanic Rambler', 'Twinblade Slasher', 'Reach of Branches', 'Ghirapur Guide', 'Scarab Feast', 'Serra Bestiary', 'Wildfire Eternal', 'Sorin''s Thirst', 'Sifter of Skulls', 'Divine Congregation', 'Mind Raker', 'Qumulox', 'Minotaur Aggressor', 'Fate Transfer', 'Sunspring Expedition', 'Battlegate Mimic', 'Dark Intimations', 'Pearl Shard', 'Giant Badger', 'Heavy Infantry', 'Civic Wayfinder', 'Lunarch Mantle', 'Jhoira''s Timebug', 'Servant of Nefarox', 'Moonlit Strider', 'Pedantic Learning', 'Complete Disregard', 'Nessian Courser', 'Take Possession', 'Deathreap Ritual', 'Rites of Initiation', 'Festering Evil', 'Crimson Mage', 'Incorrigible Youths', 'Spiny Starfish', 'Volcanic Rush', 'Temporal Cascade', 'Switcheroo', 'Aeronaut Tinkerer', 'Ballyrush Banneret', 'Bouncing Beebles', 'Crowd of Cinders', 'Bound in Silence', 'Captured Sunlight', 'Exiled Doomsayer', 'Faith of the Devoted', 'Witches'' Eye', 'Wei Infantry', 'Thrummingbird', 'Marang River Skeleton', 'Gate to the Afterlife', 'Claim of Erebos', 'Novijen, Heart of Progress', 'Krosan Vorine', 'Coral Merfolk', 'Observant Alseid', 'Howlpack Wolf', 'Squallmonger', 'Wydwen, the Biting Gale', 'Thriving Ibex', 'Magmaquake', 'Rollick of Abandon', 'Thieves'' Auction', 'Crookclaw Transmuter', 'Spectral Reserves', 'Thran Forge', 'Scalebane''s Elite', 'Gnarled Mass', 'Chitinous Cloak', 'Niblis of the Urn', 'Hedron Blade', 'Snapping Sailback', 'Isolation Zone', 'Kitsune Loreweaver', 'Terrifying Presence', 'Bonds of Faith', 'Pit Fight', 'Seraph', 'Root Out', 'Fissure Vent', 'Fall of the Gavel', 'Panic', 'Triangle of War', 'Whip-Spine Drake', 'Thassa''s Ire', 'War Horn', 'Dunes of the Dead', 'Kapsho Kitefins', 'Ghostly Touch', 'Wavecrash Triton', 'Ballynock Trapper', 'Akroan Conscriptor', 'Malfunction', 'Hate Weaver', 'Curse of Thirst', 'Needlepeak Spider', 'Darksteel Myr', 'Sea Monster', 'Beacon of Destruction', 'Teleportal', 'Noggle Ransacker', 'Tombfire', 'Vessel of Nascency', 'Liu Bei, Lord of Shu', 'Opal Avenger', 'Slave of Bolas', 'Monastery Flock', 'Mindcrank', 'Mothdust Changeling', 'Bloodcrazed Hoplite', 'Archangel', 'Deepcavern Imp', 'Diabolic Vision', 'Thrive', 'Beneath the Sands', 'Ashenmoor Cohort', 'Suq''Ata Assassin', 'Numot, the Devastator', 'Sawtooth Thresher', 'Fractured Loyalty', 'Akroan Mastiff', 'Elite Vanguard', 'Treva''s Ruins', 'Engulf the Shore', 'Skylasher', 'Yavimaya''s Embrace', 'Ward of Piety', 'Krovikan Rot', 'Salvage Drone', 'Biomass Mutation', 'Gideon''s Defeat', 'Elite Arcanist', 'Savage Conception', 'Mistform Sliver', 'Showstopper', 'Phyrexian Gargantua', 'Kessig Recluse', 'Dark Hatchling', 'Venomous Dragonfly', 'Guardian Shield-Bearer', 'Irontread Crusher', 'Inspired Charge', 'Goblin Berserker', 'Samite Censer-Bearer', 'Riverwheel Aerialists', 'Seedcradle Witch', 'Nighthowler', 'Verdant Haven', 'Rage Nimbus', 'Call of the Conclave', 'Niblis of Dusk', 'Rumbling Crescendo', 'Nagao, Bound by Honor', 'Pooling Venom', 'Downsize', 'Oathkeeper, Takeno''s Daisho', 'Cephalid Sage', 'Soul Foundry', 'Unsummon', 'Jace''s Ingenuity', 'Steward of Valeron', 'Dash Hopes', 'Tar Fiend', 'Destined // Lead', 'Twisted Abomination', 'Calciderm', 'Terminal Moraine', 'Primal Forcemage', 'Coat with Venom', 'Deathless Behemoth', 'Brawn', 'Aven Squire', 'Sun''s Bounty', 'Creeperhulk', 'Golgari Guildmage', 'Nema Siltlurker', 'Aether Sting', 'Harvest Pyre', 'Sandcrafter Mage', 'Monomania', 'Cruel Sadist', 'Femeref Knight', 'Novijen Sages', 'Splitting Slime', 'Baleful Eidolon', 'Frenzied Goblin', 'Sedge Scorpion', 'Burnout', 'Wizard Mentor', 'Vithian Stinger', 'Neurok Commando', 'Null Caller', 'Ezuri''s Brigade', 'Curse of Wizardry', 'Dive Bomber', 'Peace Strider', 'Emeria Shepherd', 'Rootgrapple', 'Goblin Mutant', 'Lightning Coils', 'Ophidian', 'Shrike Harpy', 'Owl Familiar', 'Arc Blade', 'Odric, Master Tactician', 'Foul Spirit', 'Human Frailty', 'Hollowsage', 'Keening Banshee', 'Reminisce', 'Solitary Camel', 'Flitterstep Eidolon', 'Voice of All', 'Slum Reaper', 'Raking Canopy', 'Thunderous Might', 'Consul''s Shieldguard', 'Odylic Wraith', 'Goldenglow Moth', 'River''s Grasp', 'Griptide', 'Sage Owl', 'Dispense Justice', 'Subtle Strike', 'Vindictive Mob', 'Ulvenwald Bear', 'Drana''s Emissary', 'Polluted Bonds', 'Bladed Bracers', 'Ephara''s Enlightenment', 'Elvish Herder', 'Verdant Eidolon', 'Walking Wall', 'Psychotrope Thallid', 'Order of the Golden Cricket', 'Resounding Scream', 'Femeref Scouts', 'Gustcloak Harrier', 'Vulturous Zombie', 'Vampiric Spirit', 'Phantom Monster', 'Sunbeam Spellbomb', 'Illusionary Wall', 'Ronin Warclub', 'Trusted Advisor', 'Demolish', 'Hovermyr', 'Ardent Militia', 'Oath of Ajani', 'Rootrunner', 'Seer''s Lantern', 'Lawbringer', 'One Dozen Eyes', 'Oracle of Nectars', 'Tar Pit Warrior', 'Blinking Spirit', 'Apprentice Wizard', 'Hideous Laughter', 'Torment of Scarabs', 'Mobile Garrison', 'Rescue', 'Ashnod''s Transmogrant', 'Giltspire Avenger', 'Halimar Wavewatch', 'Shriekgeist', 'Pyric Salamander', 'Rag Man', 'Fog Elemental', 'Soulscour', 'Sandsteppe Scavenger', 'Hunt the Hunter', 'Kavu Climber', 'Jhoira''s Toolbox', 'Where Ancients Tread', 'Goblin Arsonist', 'River Hoopoe', 'Giant Tortoise', 'Shadowed Caravel', 'Vedalken Mastermind', 'Smokebraider', 'Sickening Dreams', 'Frazzle', 'Undercity Shade', 'Boggart Shenanigans', 'Spellweaver Eternal', 'Coordinated Assault', 'Daggerback Basilisk', 'Boros Elite', 'Duergar Hedge-Mage', 'Displacement Wave', 'Hoverguard Sweepers', 'Curse of Bloodletting', 'Talruum Piper', 'Cloud Elemental', 'Oxidize', 'Hobgoblin Dragoon', 'Welkin Guide', 'Circle of Protection: White', 'Immolating Souleater', 'Deathbellow Raider', 'Ronin Cavekeeper', 'Tukatongue Thallid', 'Abzan Guide', 'Malakir Familiar', 'Morinfen', 'Take into Custody', 'Paranoid Parish-Blade', 'Divine Reckoning', 'Disperse', 'Aven Cloudchaser', 'Yavimaya Dryad', 'Titan''s Presence', 'Treefolk Seedlings', 'Forsaken Drifters', 'Reap What Is Sown', 'Argothian Swine', 'Invulnerability', 'Wall of Denial', 'Vintara Snapper', 'Strata Scythe', 'Mogg Hollows', 'Tishana''s Wayfinder', 'Ooze Flux', 'Flowstone Sculpture', 'Emberhorn Minotaur', 'Labyrinth Minotaur', 'Terrus Wurm', 'Chosen by Heliod', 'Ordruun Commando', 'Those Who Serve', 'Soltari Emissary', 'Centaur Safeguard', 'Tolarian Serpent', 'Glint Hawk Idol', 'Trained Caracal', 'Auratog', 'Orzhov Keyrune', 'Survivors'' Encampment', 'Cursed Flesh', 'Children of Korlis', 'Murderous Compulsion', 'Loxodon Hierarch', 'Rimehorn Aurochs', 'Flamebreak', 'Reins of the Vinesteed', 'Tricks of the Trade', 'Liquimetal Coating', 'Bonded Horncrest', 'Painsmith', 'Thieving Magpie', 'Silent Departure', 'Sunastian Falconer', 'Training Drone', 'Defiant Elf', 'Doom Cannon', 'Mogg Bombers', 'Needle Specter', 'Dream''s Grip', 'Incite War', 'Palliation Accord', 'Ahn-Crop Champion', 'Aegis Angel', 'Forced Fruition', 'Stonewright', 'Guard Duty', 'Taste for Mayhem', 'Riptide Shapeshifter', 'Plated Spider', 'Shielding Plax', 'Skirk Alarmist', 'Goblin Boom Keg', 'Angel of Mercy', 'Archetype of Courage', 'Leaping Master', 'Shield Mate', 'Dominaria''s Judgment', 'Foul Renewal', 'Krenko''s Enforcer', 'Surging Flame', 'Mardu Ascendancy', 'Amugaba', 'Caldera Lake', 'Toxic Nim', 'Eyes in the Skies', 'No-Dachi', 'Temporal Adept', 'Plague Sliver', 'White Knight', 'Jayemdae Tome', 'Chaos Maw', 'Regeneration', 'Cultivator''s Caravan', 'Warden of the Eye', 'Incremental Growth', 'Galepowder Mage', 'Immortal Coil', 'Origin Spellbomb', 'Oppressive Will', 'Wildgrowth Walker', 'Silent Attendant', 'Sheltering Light', 'Metathran Elite', 'Bereavement', 'Indomitable Archangel', 'Galvanoth', 'Kavu Predator', 'Somberwald Alpha', 'Battering Krasis', 'Wurmskin Forger', 'Gonti''s Machinations', 'Ticking Gnomes', 'Bounteous Kirin', 'Sure Strike', 'Call to the Kindred', 'Scalpelexis', 'Graceblade Artisan', 'Conviction', 'Shapers of Nature', 'Afflicted Deserter', 'Champion of Rhonas', 'Minotaur Abomination', 'Niblis of the Breath', 'Shivan Dragon', 'Academy Researchers', 'Savage Thallid', 'Death''s-Head Buzzard', 'Frontier Bivouac', 'Orbweaver Kumo', 'Oblivion Crown', 'Commune with Dinosaurs', 'Thought Eater', 'Ivory Charm', 'Burn Away', 'Giant Strength', 'Khenra Scrapper', 'Cryptoplasm', 'Mossfire Egg', 'Sailor of Means', 'Affa Protector', 'Font of Return', 'Malakir Soothsayer', 'Splendid Agony', 'Voltaic Construct', 'Warning', 'Fight to the Death', 'Raging Minotaur', 'Scarred Puma', 'Unknown Shores', 'Galvanic Juggernaut', 'Circling Vultures', 'Mercurial Chemister', 'Peace of Mind', 'Raging Swordtooth', 'Returned Phalanx', 'Nantuko Cultivator', 'Corrupt Eunuchs', 'Center Soul', 'Shrine of Loyal Legions', 'Ring of Ma''rûf', 'Bant Sojourners', 'Cloudskate', 'Marsh Lurker', 'Aim High', 'Mizzium Mortars', 'Momentous Fall', 'Wasp Lancer', 'Haunted Cadaver', 'Haunting Hymn', 'Groundshaker Sliver', 'Roaring Primadox', 'Scalding Tongs', 'Llanowar Sentinel', 'Doomwake Giant', 'Flourishing Defenses', 'Daraja Griffin', 'Dimir Guildgate', 'Turn to Frog', 'Blaze', 'Uproot', 'Magmatic Chasm', 'Smash', 'Spell Rupture', 'Cerulean Wisps', 'Battlewise Hoplite', 'Battle Hurda', 'Spirespine', 'Warchief Giant', 'Balduvian Rage', 'Thundering Giant', 'Shrine of Piercing Vision', 'Steward of Solidarity', 'Tajuru Preserver', 'Pillar of Light', 'Leonin Scimitar', 'Sky Terror', 'Binding Mummy', 'Ravenous Daggertooth', 'Cyclone Sire', 'Mawcor', 'Nephalia Academy', 'Consulate Turret', 'Madrush Cyclops', 'Rally the Forces', 'Strength in Numbers', 'Warrior Angel', 'Pyromancer''s Swath', 'Make Mischief', 'Abzan Advantage', 'Archivist', 'Liliana''s Shade', 'Foriysian Totem', 'Liliana''s Mastery', 'Sowing Salt', 'Duergar Cave-Guard', 'Makindi Patrol', 'Tavern Swindler', 'Snapping Creeper', 'Conclave Naturalists', 'Silverstorm Samurai', 'Zombie Goliath', 'Everglove Courier', 'Aberrant Researcher', 'Shrink', 'Voice of Duty', 'Foxfire Oak', 'Fervor', 'Regress', 'Moon Heron', 'Mirror Golem', 'Desert of the Fervent', 'Fire Ants', 'Start // Finish', 'Gatstaf Shepherd', 'Cruel Feeding', 'Corrupt', 'Nightshade Stinger', 'Exert Influence', 'Smoldering Efreet', 'Conduit of Ruin', 'Goldmeadow Harrier', 'Magebane Armor', 'Screaming Fury', 'Venerated Teacher', 'Moriok Scavenger', 'Lumberknot', 'Eidolon of Countless Battles', 'Ponyback Brigade', 'Shadowcloak Vampire', 'Steam Blast', 'Viashino Sandscout', 'Hand of Justice', 'Serra Avenger', 'Rakshasa Deathdealer', 'Dreamscape Artist', 'Worldslayer', 'Yavimaya Ancients', 'Runechanter''s Pike', 'Blessed Reversal', 'Myr Adapter', 'Wake the Reflections', 'Annex', 'Shapeshifter', 'Yamabushi''s Storm', 'Crumble', 'Coordinated Barrage', 'Pulse of Llanowar', 'Blades of Velis Vel', 'Sinister Strength', 'Epitaph Golem', 'Sweatworks Brawler', 'Ancestral Memories', 'Screaming Seahawk', 'Akroma''s Devoted', 'Orgg', 'Animate Dead', 'Sandbar Crocodile', 'Simic Initiate', 'Manakin', 'Frostwind Invoker', 'Anaconda', 'Eon Hub', 'Silver Seraph', 'Wild Leotau', 'Cathartic Adept', 'Fire Sprites', 'Goliath Spider', 'Thousand Winds', 'Midnight Guard', 'Shrine of the Forsaken Gods', 'Aven Smokeweaver', 'Blind Creeper', 'Gleam of Resistance', 'Humble Budoka', 'Saruli Gatekeepers', 'Thundermare', 'Barl''s Cage', 'Lava Hounds', 'Embraal Gear-Smasher', 'Faithful Squire', 'Smoldering Butcher', 'Anodet Lurker', 'Dying Wish', 'Siegecraft', 'Grove of the Guardian', 'Snapping Thragg', 'Faceless Butcher', 'Ignite Memories', 'Ephemeron', 'Scuzzback Marauders', 'Trostani''s Judgment', 'Viridian Harvest', 'Rod of Ruin', 'Opaline Unicorn', 'New Benalia', 'Woolly Thoctar', 'Angel of Salvation', 'Spitebellows', 'Torch Fiend', 'Captain of the Mists', 'Gossamer Phantasm', 'Palladium Myr', 'Cyclopean Mummy', 'Winter Blast', 'Obelisk of Alara', 'Phyrexian Juggernaut', 'Prakhata Club Security', 'Open Fire', 'Mind Shatter', 'Imagecrafter', 'Sequestered Stash', 'Metathran Soldier', 'Medicine Runner', 'Vedalken Outlander', 'Unholy Hunger', 'Wall of Blood', 'Wild Swing', 'Goldmeadow Lookout', 'Nocturnal Raid', 'Mire''s Toll', 'Tallowisp', 'Glint-Sleeve Artisan', 'Scent of Brine', 'Burrenton Shield-Bearers', 'Lavafume Invoker', 'Twisted Image', 'Pit Trap', 'Grim Strider', 'Cemetery Reaper', 'Arcbound Worker', 'Winged Coatl', 'Wild-Field Scarecrow', 'Deadly Recluse', 'Gaze of Adamaro', 'Flow of Ideas', 'Timely Hordemate', 'Sunflare Shaman', 'Safehold Sentry', 'Fresh Meat', 'Torch Song', 'Su-Chi', 'Whipgrass Entangler', 'Nephalia Smuggler', 'Mardu Roughrider', 'Tiger Claws', 'Slayer of the Wicked', 'Dispersal Technician', 'Entangling Vines', 'Hum of the Radix', 'Scathe Zombies', 'Detonate', 'Hornet Harasser', 'Secret Salvage', 'Recantation', 'Glistening Oil', 'Planeswalker''s Mirth', 'Alchemist''s Vial', 'Haunted Cloak', 'Stromgald Cabal', 'Strength from the Fallen', 'Prickleboar', 'Perplexing Chimera', 'Withering Hex', 'Lethal Sting', 'Bloodcurdler', 'Anaba Spirit Crafter', 'Pollenbright Wings', 'Cutthroat il-Dal', 'Horned Troll', 'Thalakos Seer', 'Skarrg Guildmage', 'Herald of the Fair', 'Gomazoa', 'Emperor Crocodile', 'Rude Awakening', 'Court Street Denizen', 'Molten Primordial', 'Mark of Eviction', 'Manta Riders', 'Citanul Woodreaders', 'Chimeric Mass', 'Starlight Invoker', 'Underworld Dreams', 'Elves of Deep Shadow', 'Benevolent Ancestor', 'Defender of the Order', 'Ydwen Efreet', 'Merfolk Raiders', 'Markov Warlord', 'Skill Borrower', 'Magmasaur', 'Stampeding Wildebeests', 'Expendable Troops', 'Soultether Golem', 'Vagrant Plowbeasts', 'Undergrowth Scavenger', 'Matsu-Tribe Decoy', 'Gelatinous Genesis', 'Errand of Duty', 'Goldmeadow Stalwart', 'Gruul Guildmage', 'Glass Golem', 'Blood Reckoning', 'Terashi''s Grasp', 'Phalanx Formation', 'Magmaroth', 'Lowland Giant', 'Agony Warp', 'Spectral Sliver', 'Ancient Brontodon', 'Defender of Chaos', 'Put Away', 'Skinshifter', 'Firewake Sliver', 'Phantasmal Bear', 'Puncturing Blow', 'Myrsmith', 'Misinformation', 'Shadow Glider', 'Sanguine Praetor', 'Eradicate', 'Naturalize', 'Desert of the Mindful', 'Nivix, Aerie of the Firemind', 'Rix Maadi, Dungeon Palace', 'Thalakos Dreamsower', 'Azorius Charm', 'Unstable Frontier', 'Triskaidekaphobia', 'Riddle of Lightning', 'Ogre Leadfoot', 'Carnival Hellsteed', 'Takenuma Bleeder', 'Spell Blast', 'Ivory Gargoyle', 'Abomination of Gudul', 'Sensor Splicer', 'Vampiric Rites', 'Drainpipe Vermin', 'Cobblebrute', 'Chancellor of the Dross', 'Blur of Blades', 'Nikko-Onna', 'Goblin Clearcutter', 'Lumengrid Warden', 'Earthblighter', 'Benthic Explorers', 'Harpoon Sniper', 'Horrifying Revelation', 'Centaur Battlemaster', 'Goblin Trenches', 'Part the Veil', 'Gravespawn Sovereign', 'Ghostfire Blade', 'Herald of Anafenza', 'Dragonscale Boon', 'Lammastide Weave', 'Harbinger of the Hunt', 'Quicksilver Geyser', 'Consign to Dream', 'Magus of the Future', 'Infiltrator''s Magemark', 'Springing Tiger', 'Capashen Standard', 'Repel the Abominable', 'Consign // Oblivion', 'Fevered Strength', 'Azorius Arrester', 'Commando Raid', 'Daring Thief', 'Might of Alara', 'Volcanic Awakening', 'Lurking Skirge', 'Sky Scourer', 'Gossamer Chains', 'Disappear', 'Armament of Nyx', 'Vampiric Link', 'Contraband Kingpin', 'Stone-Tongue Basilisk', 'Padeem, Consul of Innovation', 'Disciple of Grace', 'Cinder Marsh', 'Cloak of Invisibility', 'Heartwood Shard', 'Humble the Brute', 'Temur War Shaman', 'Eldrazi Skyspawner', 'Stensia Masquerade', 'Gutless Ghoul', 'Centaur Healer', 'Elder Druid', 'Forerunner of Slaughter', 'Troll-Horn Cameo', 'Earthshaker', 'Keeper of Progenitus', 'Haazda Snare Squad', 'Sphere of Purity', 'Blightcaster', 'Ghost Ship', 'Wanderwine Prophets', 'Minamo Sightbender', 'Lead-Belly Chimera', 'Weight of Spires', 'Tree Monkey', 'Etherwrought Page', 'Soliton', 'Shizuko, Caller of Autumn', 'Leyline of Vitality', 'Tandem Lookout', 'Vaevictis Asmadi', 'Genju of the Fens', 'Call the Skybreaker', 'Skullsnatcher', 'Tine Shrike', 'Gutter Grime', 'Enlightened Maniac', 'Mass of Ghouls', 'Kindled Fury', 'Liliana''s Indignation', 'Sewn-Eye Drake', 'Welkin Tern', 'Angelic Edict', 'Archon of Redemption', 'Flameborn Hellion', 'Retreat to Coralhelm', 'Chimeric Staff', 'Needlebite Trap', 'Keeper of the Lens', 'First Volley', 'Necromancer''s Stockpile', 'Mire Boa', 'Wood Elemental', 'Magma Vein', 'Spike Breeder', 'Militia''s Pride', 'Chronic Flooding', 'Firemane Avenger', 'Molten Disaster', 'Foundry Champion', 'Sporesower Thallid', 'Without Weakness', 'Time and Tide', 'Kitsune Dawnblade', 'Fall of the Hammer', 'Quicksilver Elemental', 'Nephalia Drownyard', 'Fourth Bridge Prowler', 'Jund Sojourners', 'Everbark Shaman', 'Darkwatch Elves', 'Aesthir Glider', 'Nivmagus Elemental', 'Drain the Well', 'Alms of the Vein', 'Flailing Manticore', 'Reckless Cohort', 'Profound Journey', 'True Conviction', 'Savage Gorilla', 'Esperzoa', 'Canker Abomination', 'Darksteel Axe', 'Giant Octopus', 'Cinder Wall', 'Charmbreaker Devils', 'Rootbreaker Wurm', 'Gaea''s Liege', 'Dune Diviner', 'Purging Scythe', 'Elephant Guide', 'Mistform Seaswift', 'Invasive Species', 'Evanescent Intellect', 'Desecrator Hag', 'Compulsory Rest', 'Soul Reap', 'Contemplation', 'Norwood Ranger', 'Osai Vultures', 'Carrion Ants', 'Scute Mob', 'Trade Secrets', 'Vedalken Infuser', 'Thunder-Thrash Elder', 'Echoes of the Kin Tree', 'Chandra''s Phoenix', 'Cat Burglar', 'Heart-Piercer Bow', 'Victorious Destruction', 'Myr Galvanizer', 'Garruk''s Horde', 'Crown of Convergence', 'Psychic Intrusion', 'Gargoyle Castle', 'Shoulder to Shoulder', 'Knights of Thorn', 'Riftmarked Knight', 'Gluttonous Zombie', 'Grim Reminder', 'Gift of Immortality', 'Lurebound Scarecrow', 'Providence', 'Nature''s Panoply', 'Cloudgoat Ranger', 'Campaign of Vengeance', 'Protect // Serve', 'Jhessian Lookout', 'Biomantic Mastery', 'Agent of the Fates', 'Hero of Goma Fada', 'Disembowel', 'Crackleburr', 'Dragon Appeasement', 'Greater Sandwurm', 'Burning Earth', 'Zombie Apocalypse', 'Selesnya Cluestone', 'Wall of Souls', 'Seafloor Debris', 'Dross Harvester', 'Boris Devilboon', 'Endless Scream', 'Nest of Scarabs', 'Vendetta', 'Emancipation Angel', 'Alaborn Trooper', 'Torii Watchward', 'Giant Solifuge', 'Kemba, Kha Regent', 'Voracious Wurm', 'Hunter''s Ambush', 'Pain Seer', 'Soulsworn Jury', 'Mist Intruder', 'Mogg Sentry', 'Fire Elemental', 'Valor', 'Tail Slash', 'Path of Anger''s Flame', 'Phantasmal Dragon', 'Tapestry of the Ages', 'Festering Goblin', 'Izzet Cluestone', 'Doomed Dissenter', 'Elvish Lookout', 'Brainbite', 'Shard of Broken Glass', 'Dazzling Beauty', 'Time Ebb', 'Dreadwing', 'Murasa Ranger', 'Swamp Mosquito', 'Warchanter of Mogis', 'Shrewd Negotiation', 'Troubled Healer', 'Dutiful Attendant', 'Blood Tithe', 'Raid Bombardment', 'Cloudthresher', 'Siren''s Ruse', 'Steelshaper Apprentice', 'Far // Away', 'Trueheart Duelist', 'Arctic Merfolk', 'Chandra''s Spitfire', 'Ordeal of Thassa', 'Embermaw Hellion', 'Tusked Colossodon', 'Shape of the Wiitigo', 'Malakir Cullblade', 'Chimeric Egg', 'Tarox Bladewing', 'Righteous Authority', 'Chariot of Victory', 'Snapping Gnarlid', 'Needleshot Gourna', 'Levitation', 'Hammerheim', 'Baloth Pup', 'Keldon Vandals', 'Kami of Empty Graves', 'Drinker of Sorrow', 'Shape Stealer', 'Kill-Suit Cultist', 'Nirkana Assassin', 'Spurnmage Advocate', 'Spore Flower', 'Brion Stoutarm', 'Grotag Thrasher', 'Snake of the Golden Grove', 'Pyre Charger', 'Scryb Ranger', 'Ezuri''s Archers', 'Wildcall', 'Vampire Interloper', 'Skybind', 'Elven Lyre', 'Warpath Ghoul', 'Warleader''s Helix', 'Roar of the Crowd', 'Resistance Fighter', 'Hooded Brawler', 'Savage Firecat', 'Molimo, Maro-Sorcerer', 'Horizon Drake', 'Chief of the Edge', 'Boiling Earth', 'Armament Corps', 'Livewire Lash', 'Battletide Alchemist', 'Hallowed Ground', 'Consuming Fervor', 'Cenn''s Tactician', 'Vexing Arcanix', 'Cinder Shade', 'Brightflame', 'Opaline Sliver', 'Prepare // Fight', 'Ironclaw Buzzardiers', 'Graf Rats', 'Slipstream Serpent', 'Soulless Revival', 'Meletis Astronomer', 'Unholy Strength', 'Ashling the Pilgrim', 'Horizon Spellbomb', 'Arachnus Web', 'Silumgar Assassin', 'Geist-Honored Monk', 'Bearer of Silence', 'Eager Construct', 'Evolutionary Escalation', 'Dust Stalker', 'Hollowhenge Scavenger', 'Cone of Flame', 'Read the Bones', 'Fires of Undeath', 'Horn of Deafening', 'Sarkhan''s Rage', 'Battle Brawler', 'Coercion', 'Retaliation', 'Steelclad Serpent', 'Fury Sliver', 'Simic Manipulator', 'Tidal Surge', 'Flameblade Adept', 'Drakestown Forgotten', 'D''Avenant Archer', 'Quiet Purity', 'Midnight Recovery', 'Betrothed of Fire', 'Brass Squire', 'Deathless Ancient', 'Throne of Geth', 'Siege of Towers', 'Conclave Equenaut', 'Awe Strike', 'Ring of Valkas', 'Western Paladin', 'Cavern Crawler', 'Orcish Librarian', 'Lava Axe', 'Makindi Aeronaut', 'Myr Moonvessel', 'Hapatra''s Mark', 'Inspiring Captain', 'Tahngarth''s Rage', 'Mortician Beetle', 'Prowling Pangolin', 'Moaning Wall', 'Clash of Wills', 'Urza''s Factory', 'Cruel Deceiver', 'Favorable Winds', 'Inner-Chamber Guard', 'Woodland Wanderer', 'Bloodthirsty Ogre', 'Five-Alarm Fire', 'Gangrenous Zombies', 'Jedit Ojanen of Efrava', 'Island', 'Markov Patrician', 'Triad of Fates', 'Banewasp Affliction', 'Cremate', 'Dauntless Onslaught', 'Veteran Cathar', 'Primal Huntbeast', 'Ancient Runes', 'Nightshade Schemers', 'Splitting Headache', 'Wojek Apothecary', 'Brain Weevil', 'Khenra Eternal', 'Chariot of the Sun', 'Thaumatic Compass', 'Captured by the Consulate', 'Repel', 'Urge to Feed', 'Firedrinker Satyr', 'Acid-Spewer Dragon', 'Time of Need', 'Rift Elemental', 'Acquire', 'Singing Bell Strike', 'Vodalian Knights', 'Krasis Incubation', 'Atarka Pummeler', 'Sea Eagle', 'Fishliver Oil', 'Rakdos Cluestone', 'Exiled Boggart', 'Crackling Triton', 'Blood Mist', 'Dire Fleet Interloper', 'Spined Wurm', 'Battlefield Scavenger', 'Jasmine Seer', 'Sundering Vitae', 'Plague Beetle', 'Summoner''s Bane', 'Realmwright', 'Blood Speaker', 'Tephraderm', 'Thalakos Drifters', 'Krovikan Scoundrel', 'Dissolve', 'Mardu Warshrieker', 'Inexorable Tide', 'Electropotence', 'Murderous Redcap', 'Tidal Courier', 'Peach Garden Oath', 'Voracious Cobra', 'Pyrewild Shaman', 'Syndic of Tithes', 'Silver-Inlaid Dagger', 'Lashknife', 'Woodwraith Corrupter', 'Deathforge Shaman', 'Mistfire Weaver', 'Quicksilver Dagger', 'Armament Master', 'Squeaking Pie Sneak', 'Browse', 'Coal Stoker', 'Curious Homunculus', 'Call the Gatewatch', 'Shambling Goblin', 'From Beyond', 'Kolaghan Aspirant', 'Stonewood Invocation', 'Battlefield Medic', 'Necromantic Summons', 'Kagemaro''s Clutch', 'Mizzium Skin', 'Shadows of the Past', 'Mummy Paramount', 'Ichor Rats', 'Warmth', 'Cerebral Vortex', 'Wing Puncture', 'Jeskai Charm', 'Hope Charm', 'Kindle', 'Krakilin', 'Sutured Ghoul', 'Gideon''s Reproach', 'Catch // Release', 'Master Warcraft', 'Shimmering Wings', 'Stolen Identity', 'Sigiled Starfish', 'Nylea''s Presence', 'Verdant Sun''s Avatar', 'Secretkeeper', 'Goldenhide Ox', 'Consul''s Lieutenant', 'Soul Shepherd', 'Tempest Caller', 'Fallen Ferromancer', 'Lullmage Mentor', 'Foreshadow', 'Razortooth Rats', 'Landbind Ritual', 'Vulshok Sorcerer', 'Tidewalker', 'Orim''s Prayer', 'Spellbook', 'Sigardian Priest', 'Tendrils of Agony', 'Arbiter of the Ideal', 'Soul Snuffers', 'Timebender', 'Dragon Egg', 'Slith Ascendant', 'Possessed Skaab', 'Reviving Vapors', 'Matsu-Tribe Birdstalker', 'Shivan Meteor', 'Cloud Crusader', 'Armed // Dangerous', 'Scrapskin Drake', 'Life // Death', 'Requiem Angel', 'Sprinting Warbrute', 'Reweave', 'Culling Drone', 'Dragon Roost', 'Elite Inquisitor', 'Wistful Thinking', 'Iwamori of the Open Fist', 'Spitting Sliver', 'Die Young', 'Murmuring Phantasm', 'Ancient Hydra', 'Riparian Tiger', 'Hagra Diabolist', 'Chronicler of Heroes', 'Trueheart Twins', 'Leonin Squire', 'Geist of the Moors', 'Prey''s Vengeance', 'Bloodmark Mentor', 'Amphin Cutthroat', 'Millstone', 'Inspiration', 'Thoughtflare', 'Thermopod', 'Zoetic Cavern', 'Water Servant', 'Ironfist Crusher', 'Seekers'' Squire', 'Realms Uncharted', 'Satyr Piper', 'Victual Sliver', 'Dark Dabbling', 'Dack''s Duplicate', 'Volcanic Strength', 'Outrider en-Kor', 'Aethersquall Ancient', 'Personal Sanctuary', 'Dralnu''s Pet', 'Kaleidostone', 'Soratami Cloudskater', 'Neurok Replica', 'Xenic Poltergeist', 'Clutch of Currents', 'Harrier Griffin', 'Nyx Infusion', 'Elven Rite', 'Spiraling Duelist', 'Corpse Cur', 'Feroz''s Ban', 'Rite of the Serpent', 'Grollub', 'Nath of the Gilt-Leaf', 'Flowstone Mauler', 'Torrent of Souls', 'Sanctified Charge', 'Shore Keeper', 'Chronomantic Escape', 'Veteran of the Depths', 'Ravenous Baloth', 'Consulate Surveillance', 'Gust-Skimmer', 'Bond Beetle', 'Luminous Angel', 'Weapon Surge', 'Temur Runemark', 'Pirate''s Prize', 'Dodecapod', 'Netherborn Phalanx', 'Erase', 'Boreal Griffin', 'Guardian of Pilgrims', 'Tidal Kraken', 'Bastion Mastodon', 'Polar Kraken', 'Phytotitan', 'Ethereal Usher', 'Trusted Forcemage', 'Perilous Forays', 'Overcome', 'Urban Burgeoning', 'Metathran Aerostat', 'Pariah''s Shield', 'Gravebane Zombie', 'Resuscitate', 'Celestial Crusader', 'Tilonalli''s Skinshifter', 'Fallowsage', 'Gremlin Infestation', 'Clockwork Dragon', 'Tears of Valakut', 'Regathan Firecat', 'Day of Destiny', 'Court Homunculus', 'Sunken City', 'Desperate Charge', 'Flickering Spirit', 'Deathcap Cultivator', 'Byway Courier', 'Shield of the Oversoul', 'Airdrop Aeronauts', 'Ruthless Deathfang', 'Gauntlets of Chaos', 'Unscythe, Killer of Kings', 'Sludge Crawler', 'Magma Giant', 'Slaughter', 'Patron of the Kitsune', 'Pandemonium', 'Storm Fleet Pyromancer', 'Elite Javelineer', 'Arrest', 'Sea Spirit', 'Psychic Puppetry', 'Phantom Nomad', 'Bishop''s Soldier', 'Wren''s Run Vanquisher', 'Reduce to Dreams', 'Angel of Condemnation', 'Martyr of Frost', 'Skyshroud Condor', 'Trepanation Blade', 'Radha, Heir to Keld', 'Spawnbinder Mage', 'Caravan Vigil', 'Commencement of Festivities', 'Plow Through Reito', 'Boros Signet', 'Tamiyo''s Journal', 'Ghoulraiser', 'Satyr Hedonist', 'Nefashu', 'Even the Odds', 'Harvester Troll', 'Ion Storm', 'Puca''s Mischief', 'Akroan Hoplite', 'Caldera Hellion', 'Devotee of Strength', 'Pyroconvergence', 'Forlorn Pseudamma', 'Kjeldoran Royal Guard', 'Mistform Shrieker', 'Might of the Masses', 'Vulshok Refugee', 'Mausoleum Turnkey', 'Dross Crocodile', 'Abbey Gargoyles', 'Recover', 'Cruel Bargain', 'Throne Warden', 'Brutal Deceiver', 'Orochi Eggwatcher', 'Rockslide Elemental', 'Manor Gargoyle', 'Navigator''s Ruin', 'Hematite Golem', 'Krovikan Whispers', 'Maze Behemoth', 'Jungle Wurm', 'Reknit', 'Meng Huo''s Horde', 'Sphinx''s Tutelage', 'Topan Ascetic', 'Akoum Stonewaker', 'Release the Gremlins', 'Kavu Recluse', 'Order of Whiteclay', 'Oathsworn Giant', 'Phytohydra', 'Prophetic Bolt', 'Salvage Slasher', 'Goblin Rally', 'Mindstab', 'Interpret the Signs', 'Rakdos Drake', 'Blinding Spray', 'Deceiver of Form', 'Call for Unity', 'Ruination Guide', 'Reckless Reveler', 'Cloudreach Cavalry', 'Mistform Mutant', 'Augury Owl', 'Ur-Golem''s Eye', 'Curio Vendor', 'Coma Veil', 'Windseeker Centaur', 'Spitfire Handler', 'Zendikar Resurgent', 'Caller of the Pack', 'Ninth Bridge Patrol', 'Behemoth Sledge', 'Plaxmanta', 'Pain // Suffering', 'Kor Bladewhirl', 'Hellspark Elemental', 'Outrider of Jhess', 'Dungeon Geists', 'Divergent Growth', 'Channel Harm', 'Lightning Hounds', 'Weatherseed Elf', 'Clinging Anemones', 'Beloved Chaplain', 'Cyclops Gladiator', 'Circle of Protection: Artifacts', 'Daru Healer', 'Szadek, Lord of Secrets', 'Deathrender', 'Cinder Seer', 'Morbid Curiosity', 'Manabarbs', 'Stoneforge Masterwork', 'Elder Pine of Jukai', 'Sinuous Striker', 'Rewards of Diversity', 'Sulfurous Blast', 'Cradle of Vitality', 'Drooling Ogre', 'Oakgnarl Warrior', 'Mulch', 'Squelching Leeches', 'Vizier of Remedies', 'Scorch the Fields', 'Child of Gaea', 'Forbidding Watchtower', 'Kranioceros', 'Rime Transfusion', 'Errant Ephemeron', 'Soar', 'Animist''s Awakening', 'Weapons Trainer', 'Somber Hoverguard', 'Kiyomaro, First to Stand', 'View from Above', 'Kozilek''s Channeler', 'Cryptic Annelid', 'Aviary Mechanic', 'Haunting Echoes', 'Kurgadon', 'Fervent Paincaster', 'Spirit Loop', 'Brimstone Mage', 'War-Name Aspirant', 'Fool''s Demise', 'Ghirapur Aether Grid', 'Wilderness Elemental', 'Seaside Haven', 'Somberwald Stag', 'Singing Tree', 'Cinder Hellion', 'Ramirez DePietro', 'Mass Appeal', 'Cloud Spirit', 'Pollen Lullaby', 'Blighted Bat', 'Spell Syphon', 'Shade''s Breath', 'Sedraxis Specter', 'Bound by Moonsilver', 'Endless Whispers', 'Giant Cockroach', 'Curse of Oblivion', 'Brace for Impact', 'Rimefeather Owl', 'Quest for Renewal', 'Dismantle', 'Obelisk of Jund', 'Blast of Genius', 'Unsubstantiate', 'Synchronous Sliver', 'Nostalgic Dreams', 'Gerrard''s Irregulars', 'Voices from the Void', 'Expedite', 'Fiend Binder', 'Glory of Warfare', 'Scornful Egotist', 'Scale of Chiss-Goria', 'Diabolic Machine', 'Loam Dweller', 'Glacial Stalker', 'March of the Machines', 'Summoning Station', 'Blight Herder', 'Harmless Offering', 'Skywatcher Adept', 'Carrier Thrall', 'Prophetic Ravings', 'Winds of Rath', 'Sigil Captain', 'Elder Cathar', 'Blessed Spirits', 'Word of Undoing', 'Celestial Mantle', 'Thrull Retainer', 'Reclusive Wight', 'Circle of Protection: Black', 'Chained Throatseeker', 'Wildheart Invoker', 'Lurking Jackals', 'Hedron-Field Purists', 'Wort, Boggart Auntie', 'Skirk Marauder', 'Isperia''s Skywatch', 'Ember Swallower', 'Floodwaters', 'Skyshroud Blessing', 'Select for Inspection', 'Brood Butcher', 'Angelic Arbiter', 'Armored Ascension', 'Skitterskin', 'Second Sight', 'Inheritance', 'Bala Ged Scorpion', 'Guardian of the Ages', 'Shivan Sand-Mage', 'Primeval Force', 'Murk Strider', 'Order // Chaos', 'Mudbutton Clanger', 'Advocate of the Beast', 'Maul Splicer', 'Karplusan Strider', 'Essence Bottle', 'Soulbright Flamekin', 'Lightning Surge', 'Illness in the Ranks', 'Thassa''s Devourer', 'Trip Noose', 'Stomping Slabs', 'Orc Sureshot', 'Final-Sting Faerie', 'Setessan Oathsworn', 'Vedalken Ghoul', 'Warbringer', 'Jerrard of the Closed Fist', 'Nyxborn Wolf', 'Weldfast Engineer', 'Feral Krushok', 'Unraveling Mummy', 'Lost in the Mist', 'Daring Saboteur', 'Daru Lancer', 'Gorgon Recluse', 'Multani''s Presence', 'Kami of Lunacy', 'Storm Elemental', 'Skyblade of the Legion', 'Basal Sliver', 'Elvish Harbinger', 'Agent of Erebos', 'Will of the Naga', 'Abzan Falconer', 'Finest Hour', 'Goblin Brawler', 'Boros Recruit', 'Soulblade Djinn', 'River Merfolk', 'Bloodscent', 'Rebuke', 'Shower of Sparks', 'Wormfang Manta', 'Mycosynth Fiend', 'Jump', 'Back to Nature', 'Collective Effort', 'Toxic Iguanar', 'Cavalry Pegasus', 'Benalish Cavalry', 'Path of Bravery', 'Sudden Impact', 'Crystal Shard', 'Dire Fleet Hoarder', 'Batwing Brume', 'Sigil of Valor', 'Rot Shambler', 'Trickery Charm', 'Insult // Injury', 'Runes of the Deus', 'Lumengrid Drake', 'Void Grafter', 'Sin Collector', 'Valley Rannet', 'Moonlight Hunt', 'Tezzeret''s Gambit', 'Riven Turnbull', 'Jinxed Choker', 'Crab Umbra', 'Rustrazor Butcher', 'Acolyte''s Reward', 'Mastery of the Unseen', 'Balance of Power', 'Revel in Riches', 'Bog Smugglers', 'Grizzly Fate', 'Scourglass', 'Domestication', 'Scourgemark', 'Brine Shaman', 'Aven Riftwatcher', 'Consult the Necrosages', 'Ashiok''s Adept', 'Neurok Familiar', 'Drowner of Hope', 'Thunder of Hooves', 'Flaring Flame-Kin', 'Screeching Griffin', 'Flameshadow Conjuring', 'Champion Lancer', 'Streetbreaker Wurm', 'Mindstatic', 'Slip Through Space', 'Smoldering Werewolf', 'Beastmaster''s Magemark', 'Summit Apes', 'Teetering Peaks', 'Mark of Mutiny', 'Genesis Hydra', 'Harness by Force', 'Breath of Darigaaz', 'Mistfire Adept', 'Book of Rass', 'Woodland Changeling', 'Homing Sliver', 'Lab Rats', 'Femeref Healer', 'Archers'' Parapet', 'Hellion Eruption', 'Borrowed Hostility', 'Ray of Command', 'Grand Melee', 'Auriok Salvagers', 'Tel-Jilad Archers', 'Twin Bolt', 'Windwright Mage', 'Roilmage''s Trick', 'Kuro''s Taken', 'Healing Leaves', 'Dandân', 'Colossal Dreadmaw', 'Grindclock', 'Legion''s Judgment', 'Macabre Waltz', 'Storm Fleet Aerialist', 'Vassal''s Duty', 'Enshrouding Mist', 'Lay of the Land', 'Kinsbaile Balloonist', 'Knollspine Invocation', 'Dwarven Shrine', 'Grixis Sojourners', 'Grave Birthing', 'Schismotivate', 'Runner''s Bane', 'Illusory Angel', 'Kithkin Rabble', 'Kjeldoran Dead', 'Martial Law', 'Skyraker Giant', 'Woodland Stream', 'Foundry of the Consuls', 'Dark Nourishment', 'Auntie''s Hovel', 'Rats of Rath', 'Slime Molding', 'Jedit''s Dragoons', 'Sengir Vampire', 'Elusive Krasis', 'Goblin Test Pilot', 'Senseless Rage', 'Spirit en-Kor', 'Tatsumasa, the Dragon''s Fang', 'Solemn Recruit', 'Baleful Ammit', 'Deathmark Prelate', 'Paladin of the Bloodstained', 'Ego Erasure', 'Vesper Ghoul', 'Gisa''s Bidding', 'Ember-Eye Wolf', 'Icy Manipulator', 'Nihilistic Glee', 'Affa Guard Hound', 'Wild Hunger', 'Synod Sanctum', 'Blockade Runner', 'Nyxborn Eidolon', 'Carrion Rats', 'Blossom Dryad', 'Bloodrite Invoker', 'Wayward Servant', 'Ley Druid', 'Groundling Pouncer', 'Roil Elemental', 'Watercourser', 'Scroll of Origins', 'Bloodthorn Taunter', 'Fighting Drake', 'Gather the Pack', 'Antagonism', 'Loxodon Punisher', 'Eland Umbra', 'Vibrating Sphere', 'Savage Punch', 'Merciless Eternal', 'Indomitable Ancients', 'Hearthfire Hobgoblin', 'Surprise Deployment', 'Wanderbrine Rootcutters', 'Acridian', 'Repulse', 'Gavony Unhallowed', 'Dictate of Karametra', 'Depths of Desire', 'Snakeform', 'Solarion', 'Odric, Lunarch Marshal', 'Military Intelligence', 'Groffskithur', 'Rush of Blood', 'Wolfbriar Elemental', 'Coerced Confession', 'Hypersonic Dragon', 'Herbal Poultice', 'Supply // Demand', 'Liar''s Pendulum', 'Viridian Acolyte', 'Extruder', 'Ornate Kanzashi', 'Kiku, Night''s Flower', 'Telemin Performance', 'Unquenchable Thirst', 'Shaman of the Pack', 'Thraben Standard Bearer', 'Midnight Charm', 'Enclave Cryptologist', 'Give // Take', 'Pallimud', 'Balduvian Warlord', 'Warp Artifact', 'Priest of the Blood Rite', 'Shard Phoenix', 'Aegis Automaton', 'Pacifism', 'Pale Rider of Trostad', 'Thraben Foulbloods', 'Strongarm Monk', 'Southern Paladin', 'Quag Vampires', 'Kitsune Palliator', 'Samite Archer', 'Kobold Drill Sergeant', 'Hunting Triad', 'Moonmist', 'Nightscape Battlemage', 'Gift of the Deity', 'Magewright''s Stone', 'Butcher''s Cleaver', 'Heron''s Grace Champion', 'Profit // Loss', 'Rain of Salt', 'Leonin Battlemage', 'Slate of Ancestry', 'Roar of Reclamation', 'Kami of Ancient Law', 'Knight of the Mists', 'Weatherseed Treefolk', 'Oona''s Grace', 'Thrash of Raptors', 'Rebuff the Wicked', 'Untamed Might', 'Laboratory Brute', 'Faerie Invaders', 'Excavator', 'Phyrexian Defiler', 'Foul Imp', 'Utopia Vow', 'Fountain of Youth', 'Messenger Drake', 'Flowstone Blade', 'Woodripper', 'Mesa Pegasus', 'Sliver Construct', 'Dimir Guildmage', 'Inspirit', 'Meglonoth', 'Hail Storm', 'Satyr Grovedancer', 'Cyclops of Eternal Fury', 'Spiderwig Boggart', 'Seek the Horizon', 'Vile Manifestation', 'Infected Vermin', 'Greatsword', 'Null Profusion', 'Grisly Transformation', 'Disciple of Phenax', 'Conduit of Storms', 'Verdeloth the Ancient', 'Shockmaw Dragon', 'Visara the Dreadful', 'Kemba''s Skyguard', 'Mana Skimmer', 'Primal Druid', 'Siege Mastodon', 'Fumarole', 'Mending Hands', 'Rakdos Cackler', 'Corrosive Gale', 'Fugue', 'Salvage Titan', 'Cunning Breezedancer', 'Ferocity', 'Triton Fortune Hunter', 'Living Tsunami', 'Village Survivors', 'Psychic Possession', 'Uktabi Efreet', 'Arc-Slogger', 'Qal Sisma Behemoth', 'Pure // Simple', 'Armory of Iroas', 'Smoke Teller', 'Corrupted Resolve', 'Knowledge and Power', 'Nightmare Incursion', 'Mind Maggots', 'Vhati il-Dal', 'Krark-Clan Engineers', 'Staggershock', 'Two-Headed Sliver', 'Warmonger''s Chariot', 'Tilonalli''s Knight', 'Coral Atoll', 'Flickerform', 'Whiptail Wurm', 'Fiend of the Shadows', 'Gargantuan Gorilla', 'Cloudpost', 'Truth or Tale', 'Jeskai Banner', 'Scent of Jasmine', 'Juxtapose', 'Heart Warden', 'Elvish Hexhunter', 'Tattered Haunter', 'Viridian Emissary', 'Thorn Thallid', 'Deathmark', 'Wanderer''s Twig', 'Olivia''s Bloodsworn', 'Weatherseed Totem', 'Mistmoon Griffin', 'Lim-Dûl''s Cohort', 'Open the Armory', 'Bloodstone Cameo', 'Dragon Bell Monk', 'Cast into Darkness', 'Lockjaw Snapper', 'Herdchaser Dragon', 'Furystoke Giant', 'Boros Battleshaper', 'Psychatog', 'Veteran Warleader', 'Wizened Cenn', 'Vizkopa Guildmage', 'Aven Battle Priest', 'Bower Passage', 'Inner Struggle', 'Sadistic Augermage', 'Frost Ogre', 'Squeaking Pie Grubfellows', 'Deranged Assistant', 'Ixalli''s Keeper', 'Plated Slagwurm', 'Paleoloth', 'Creeping Mold', 'Wings of Aesthir', 'Jhessian Zombies', 'Shaman of Spring', 'Idle Thoughts', 'Blood Lust', 'Grave Strength', 'Niblis of Frost', 'Ixidron', 'Impatience', 'Deftblade Elite', 'Hellhole Rats', 'Consulate Skygate', 'Ringskipper', 'Topan Freeblade', 'Tajuru Archer', 'Hero of Leina Tower', 'Bravado', 'Growing Ranks', 'Mana Bloom', 'Shadow Guildmage', 'Valeron Outlander', 'Halimar Tidecaller', 'Stern Mentor', 'Stream of Consciousness', 'Ancestral Statue', 'Sheer Drop', 'Kor Castigator', 'Dimensional Infiltrator', 'Confiscate', 'Sickleslicer', 'Reborn Hero', 'Infernal Kirin', 'Grim Return', 'Myr Prototype', 'Corrupted Conscience', 'Unified Front', 'Dreg Reaver', 'Nimble-Blade Khenra', 'Cyclopean Tomb', 'Gate Smasher', 'Turn // Burn', 'Chisei, Heart of Oceans', 'Flamespeaker Adept', 'Summoning Trap', 'Ghost-Lit Raider', 'Lightning Reflexes', 'Sage Aven', 'Golgari Keyrune', 'Indestructibility', 'Drown in Filth', 'Wandering Champion', 'Suspension Field', 'Junkyo Bell', 'Serpentine Spike', 'Tablet of the Guilds', 'Adarkar Sentinel', 'Krark-Clan Grunt', 'Stoneshaker Shaman', 'Molder Slug', 'Demonspine Whip', 'Lifespinner', 'Goblin Cadets', 'Tainted Remedy', 'Imperial Aerosaur', 'Barbed Sextant', 'Arashi, the Sky Asunder', 'Enslave', 'Patron of the Valiant', 'Reduce // Rubble', 'Sudden Spoiling', 'Frostweb Spider', 'Elvish Lyrist', 'Fleshbag Marauder', 'Parapet', 'Desolation Giant', 'Wetland Sambar', 'Kalonian Twingrove', 'Weirded Vampire', 'Lashweed Lurker', 'Eternity Snare', 'Djeru''s Renunciation', 'Obsianus Golem', 'Pillaging Horde', 'Tower of Murmurs', 'Trench Wurm', 'Waterveil Cavern', 'Loyal Pegasus', 'Mahamoti Djinn', 'Brown Ouphe', 'Mark of the Oni', 'Necropouncer', 'Priest of the Wakening Sun', 'Tidal Wave', 'Alluring Scent', 'Jade Guardian', 'Convicted Killer', 'Dross Prowler', 'Separatist Voidmage', 'Shimatsu the Bloodcloaked', 'Horned Cheetah', 'Villainous Wealth', 'Geyserfield Stalker', 'Puncturing Light', 'Angelic Benediction', 'Exemplar of Strength', 'Nightcreep', 'Goring Ceratops', 'Curse of Stalked Prey', 'Dragonshift', 'Brindle Boar', 'Mistform Dreamer', 'Desert Cerodon', 'Burning-Fist Minotaur', 'God-Pharaoh''s Faithful', 'Mardu Hateblade', 'Parallectric Feedback', 'Leave // Chance', 'Bident of Thassa', 'Appetite for Brains', 'Stenchskipper', 'Devout Chaplain', 'Sphere of Truth', 'Hexplate Golem', 'Ulvenwald Mystics', 'Cenn''s Heir', 'Vastwood Zendikon', 'Taigam''s Scheming', 'Nyxborn Rollicker', 'Dhund Operative', 'Grasping Dunes', 'Peel from Reality', 'Serra''s Embrace', 'Noble Templar', 'Darksteel Relic', 'Steelform Sliver', 'Goblin Glory Chaser', 'Reflexes', 'Grim Discovery', 'Oketra''s Last Mercy', 'Jeskai Elder', 'Feral Prowler', 'Fyndhorn Pollen', 'Soltari Monk', 'Dizzying Gaze', 'Murderous Spoils', 'Brutal Expulsion', 'Aerie Ouphes', 'Scourge of the Nobilis', 'Nightscape Familiar', 'Death Mutation', 'Bull Aurochs', 'Wood Sage', 'Aven Wind Guide', 'Kjeldoran Outrider', 'Thorn Elemental', 'Scourge of Fleets', 'Windreaver', 'Hyena Pack', 'Viashino Spearhunter', 'Syndicate Enforcer', 'Aura Finesse', 'Renowned Weaver', 'Talisman of Unity', 'Skyswirl Harrier', 'Coursers'' Accord', 'False Dawn', 'Feat of Resistance', 'King Cheetah', 'Torchling', 'Verdant Embrace', 'Skywhaler''s Shot', 'Blizzard Elemental', 'Flurry of Horns', 'Demonic Appetite', 'Ride Down', 'Horned Turtle', 'Dungeon Shade', 'That Which Was Taken', 'Legerdemain', 'Thelon of Havenwood', 'Woebearer', 'Magus of the Jar', 'Thriving Grubs', 'Sages of the Anima', 'Deranged Outcast', 'Foundry Inspector', 'Mirrorworks', 'Enraged Giant', 'Karametra''s Acolyte', 'Merfolk Assassin', 'Yawgmoth''s Edict', 'Radiant''s Judgment', 'Bloodhall Ooze', 'Conqueror''s Pledge', 'Hover Barrier', 'Laquatus''s Champion', 'Patron of the Orochi', 'Reverse the Sands', 'Dementia Sliver', 'About Face', 'Shivan Raptor', 'Bonebreaker Giant', 'Nosy Goblin', 'Slaughterhouse Bouncer', 'Guardians of Meletis', 'Keldon Necropolis', 'Stormfront Pegasus', 'Balduvian Frostwaker', 'Khalni Gem', 'Explosive Apparatus', 'Second Thoughts', 'Gruul War Plow', 'Baloth Woodcrasher', 'Dance of Shadows', 'Gelid Shackles', 'Imaginary Threats', 'Pit Spawn', 'Djinn Illuminatus', 'Necravolver', 'Smoldering Spires', 'Vanquish the Weak', 'Wind Strider', 'Rune-Cervin Rider', 'Pillory of the Sleepless', 'Seal of Primordium', 'Devilthorn Fox', 'Alloy Myr', 'Elvish Berserker', 'Unnerve', 'Zealot il-Vec', 'Agility', 'Thornbite Staff', 'Mutant''s Prey', 'Gwafa Hazid, Profiteer', 'Soltari Crusader', 'Head Games', 'Volcano Hellion', 'Flood Plain', 'Drake Familiar', 'Dissension in the Ranks', 'Claws of Wirewood', 'Angel of Glory''s Rise', 'Scion of the Wild', 'Bloodbond March', 'Stolen Grain', 'Samite Pilgrim', 'Serpent Generator', 'Dauthi Warlord', 'Riptide Chimera', 'Scion of Vitu-Ghazi', 'Advance Scout', 'Phyrexian War Beast', 'Aether Flash', 'Thraben Purebloods', 'Ghostfire', 'Traitorous Blood', 'Titan''s Strength', 'Orcish Veteran', 'Raging Goblin', 'Chromeshell Crab', 'Belltoll Dragon', 'Poison the Well', 'Mind Grind', 'Mischievous Poltergeist', 'Mesmeric Sliver', 'Culling Dais', 'Faerie Impostor', 'Gold-Forged Sentinel', 'Blazing Blade Askari', 'Barrage Ogre', 'Marhault Elsdragon', 'Deny Existence', 'Cabal Executioner', 'Saltfield Recluse', 'Flames of the Firebrand', 'Aether Tide', 'Restless Dead', 'Prickly Boggart', 'Azorius Herald', 'Rootborn Defenses', 'Cosmic Larva', 'Drill-Skimmer', 'Sunforger', 'Call the Scions', 'Reveka, Wizard Savant', 'Rushing-Tide Zubera', 'Invader Parasite', 'Kathari Remnant', 'Clash of Realities', 'Unbreathing Horde', 'Shefet Monitor', 'Predatory Hunger', 'Run Wild', 'Alesha''s Vanguard', 'Fetid Horror', 'Erebos''s Emissary', 'Rhox Meditant', 'Stinging Shot', 'Wall of Forgotten Pharaohs', 'Stormscale Anarch', 'Magma Spray', 'Surrakar Marauder', 'Prodigal Pyromancer', 'Crackling Perimeter', 'Belligerent Sliver', 'Grixis Illusionist', 'Hydra Broodmaster', 'Silkwing Scout', 'Caustic Crawler', 'Duergar Mine-Captain', 'Act of Treason', 'Ambuscade', 'Specter''s Shroud', 'Colossapede', 'Precognition', 'Undying Flames', 'Manic Vandal', 'Agent of Masks', 'Warren Weirding', 'Cytoplast Root-Kin', 'Death''s Approach', 'Akki Blizzard-Herder', 'Graceful Reprieve', 'Ageless Sentinels', 'Spellheart Chimera', 'Astral Cornucopia', 'Tymaret, the Murder King', 'Tideforce Elemental', 'Mercurial Kite', 'Astral Slide', 'Seizan, Perverter of Truth', 'Myr Incubator', 'Goblin Grappler', 'Roofstalker Wight', 'Amrou Scout', 'Beastcaller Savant', 'Bullwhip', 'Vestige of Emrakul', 'Thought Hemorrhage', 'Crushing Vines', 'Assemble the Legion', 'Lightkeeper of Emeria', 'Seething Anger', 'Plunder', 'Molder Beast', 'Awe for the Guilds', 'Conjured Currency', 'Mudbutton Torchrunner', 'Jötun Owl Keeper', 'Angelic Blessing', 'Battering Craghorn', 'Ojutai''s Summons', 'Insidious Will', 'Unhallowed Pact', 'Tragic Lesson', 'Boggart Ram-Gang', 'Lathnu Sailback', 'Skirsdag Cultist', 'Asphodel Wanderer', 'Toil to Renown', 'Kothophed, Soul Hoarder', 'Emergent Growth', 'Carven Caryatid', 'Mystic Monastery', 'Fatal Blow', 'Razorfin Abolisher', 'Loxodon Peacekeeper', 'Heroes Remembered', 'Steppe Lynx', 'Cylian Elf', 'Death Wind', 'Allied Reinforcements', 'Festergloom', 'Impetuous Sunchaser', 'Obelisk of Esper', 'Trusty Companion', 'Volition Reins', 'Temple Acolyte', 'Lotleth Troll', 'Servant of Tymaret', 'Wellgabber Apothecary', 'Tin Street Hooligan', 'Burr Grafter', 'Stun Sniper', 'Tower of Calamities', 'Mindleech Mass', 'Juvenile Gloomwidow', 'Persuasion', 'Moriok Rigger', 'Samurai of the Pale Curtain', 'Talus Paladin', 'Sphinx''s Disciple', 'Artificer''s Hex', 'Rest for the Weary', 'Eastern Paladin', 'Last-Ditch Effort', 'Mogis''s Marauder', 'Sicken', 'Aid from the Cowl', 'Rush of Ice', 'Drift of the Dead', 'Rattleclaw Mystic', 'Provoke', 'Bathe in Dragonfire', 'Rising Miasma', 'Razor Hippogriff', 'Bloodfire Expert', 'Stonybrook Schoolmaster', 'Black Cat', 'Defend the Hearth', 'Nim Shambler', 'Goblinslide', 'Hungry Mist', 'Dega Sanctuary', 'Inspiring Cleric', 'Gorilla Warrior', 'Fetid Imp', 'Outland Boar', 'Ghostly Visit', 'Cancel', 'Inferno', 'Plated Crusher', 'Sunspire Gatekeepers', 'Sir Shandlar of Eberyn', 'Grasp of Phantoms', 'Magister of Worth', 'Commander Greven il-Vec', 'Spincrusher', 'Deadly Allure', 'Mirror of Fate', 'Soul Ransom', 'Marsh Flitter', 'Storm Fleet Spy', 'Glen Elendra Pranksters', 'Lost Auramancers', 'Tel-Jilad Chosen', 'Zombie Brute', 'Titan of Eternal Fire', 'Sphere of the Suns', 'Pious Interdiction', 'Rakdos Shred-Freak', 'Hindering Touch', 'Sift Through Sands', 'Wicker Witch', 'Stronghold Overseer', 'Engulfing Slagwurm', 'Hedron Alignment', 'Burrenton Bombardier', 'Skyshaper', 'Vizier of the Anointed', 'Pine Walker', 'Leap of Flame', 'Fit of Rage', 'Unstable Hulk', 'Coral Eel', 'Kris Mage', 'Siege Modification', 'Stonewise Fortifier', 'Batterhorn', 'Twiddle', 'Thraben Gargoyle', 'Bandage', 'Bull Hippo', 'Volrath''s Laboratory', 'Puresight Merrow', 'Sanctum Gargoyle', 'Phyrexian Portal', 'Thassa''s Emissary', 'Thermal Navigator', 'Structural Distortion', 'Femeref Archers', 'Blighted Gorge', 'Rotfeaster Maggot', 'Bruna, the Fading Light', 'Wayfaring Temple', 'Thoughtpicker Witch', 'Mythic Proportions', 'Chronozoa', 'Whitemane Lion', 'Ghastly Remains', 'Mirran Spy', 'Renegade Warlord', 'Wave-Wing Elemental', 'Militant Inquisitor', 'Mist Raven', 'Game-Trail Changeling', 'Farm // Market', 'Honor''s Reward', 'Briarbridge Patrol', 'Balloon Peddler', 'Thriss, Nantuko Primus', 'Bog Tatters', 'Leonin Bola', 'Rush of Vitality', 'Gallows Warden', 'Flying Carpet', 'Vessel of Malignity', 'Blood Tyrant', 'Ugin''s Construct', 'Prahv, Spires of Order', 'Dragonscale General', 'Seeker of the Way', 'Volrath''s Shapeshifter', 'Sacred Boon', 'Rage Extractor', 'Rotting Legion', 'Talon of Pain', 'Primitive Justice', 'Twitch', 'Early Frost', 'Ribbons of the Reikai', 'Angelic Voices', 'Tranquil Garden', 'Revenant', 'Zerapa Minotaur', 'Crusher Zendikon', 'Terra Stomper', 'Temporal Distortion', 'Phyrexian Rebirth', 'Immobilizer Eldrazi', 'Returned Centaur', 'Eviscerator', 'Darklit Gargoyle', 'Zealots en-Dal', 'Advice from the Fae', 'Weirding Shaman', 'Pestilent Souleater', 'Sibsig Icebreakers', 'Cloudhoof Kirin', 'Geistflame', 'Lost Order of Jarkeld', 'Riddleform', 'Controvert', 'Shredding Winds', 'Spinal Villain', 'Lys Alana Bowmaster', 'Crypt Ripper', 'Phantasmal Forces', 'Fate Foretold', 'Akoum Hellkite', 'Fledgling Dragon', 'Fend Off', 'Rosheen Meanderer', 'Drekavac', 'Pyromatics', 'Indulgent Aristocrat', 'Lurking Informant', 'Skin Invasion', 'Prison Term', 'Fabrication Module', 'Silent Sentinel', 'Eddytrail Hawk', 'Vandalize', 'Shadowstorm Vizier', 'Dictate of the Twin Gods', 'Whirlpool Whelm', 'Ragemonger', 'Dust Elemental', 'Rushing River', 'Survey the Wreckage', 'Gather Courage', 'Spark Trooper', 'Mystic Genesis', 'Aerie Worshippers', 'Animal Boneyard', 'Edifice of Authority', 'Kami of Tattered Shoji', 'Spatial Contortion', 'Briber''s Purse', 'Hour of Need', 'Bomat Bazaar Barge', 'Fury Charm', 'Pardic Dragon', 'Ghirapur Gearcrafter', 'Meditation Puzzle', 'Araba Mothrider', 'Opal Guardian', 'Spined Thopter', 'Confirm Suspicions', 'Whiteout', 'Timesifter', 'Obelisk of Grixis', 'Traumatize', 'Fossil Find', 'Dauthi Mindripper', 'Crown of Ascension', 'Wall of Deceit', 'Deserter''s Quarters', 'Clan Defiance', 'Wild Ox', 'Pia''s Revolution', 'Temur Charger', 'Ogre Geargrabber', 'Flying Men', 'Gristleback', 'Mimeofacture', 'Shambling Remains', 'Ajani''s Chosen', 'Champion''s Drake', 'Warden of Evos Isle', 'Shu Elite Companions', 'Tanglebloom', 'Path of Peace', 'Restless Bones', 'Sorin''s Vengeance', 'Ghitu Fire-Eater', 'Razorjaw Oni', 'Shunt', 'Yoked Plowbeast', 'Armory Guard', 'Uyo, Silent Prophet', 'Final Judgment', 'Fungal Sprouting', 'Undead Alchemist', 'Meandering Towershell', 'Crimson Roc', 'Battle of Wits', 'Blessed Breath', 'Gloryscale Viashino', 'Gruul Ragebeast', 'Dream Twist', 'Phyrexian Splicer', 'Tidewater Minion', 'Spellbound Dragon', 'Fill with Fright', 'Sigil Blessing', 'Roc Egg', 'Ebony Rhino', 'Whiptail Moloch', 'Unbridled Growth', 'Fanatic of Mogis', 'Feral Lightning', 'Shuko', 'Jackal Familiar', 'Prescient Chimera', 'Consecrate Land', 'Infinite Obliteration', 'Whirlermaker', 'Galvanic Bombardment', 'Reality Hemorrhage', 'Student of Ojutai', 'Spare from Evil', 'Rabid Wolverines', 'Pit Keeper', 'Mudbrawler Raiders', 'Murder Investigation', 'Clone', 'Symbiosis', 'Ringwarden Owl', 'Matopi Golem', 'Makeshift Mauler', 'Esper Battlemage', 'Fated Return', 'Matsu-Tribe Sniper', 'Lunar Avenger', 'One Thousand Lashes', 'Wirecat', 'Nearheath Stalker', 'Azorius Cluestone', 'Avarice Amulet', 'Sever Soul', 'Mind Peel', 'Armored Pegasus', 'Armor Sliver', 'Giant Growth', 'Quicksmith Spy', 'Roots', 'Living Hive', 'Waterspout Weavers', 'Death Pits of Rath', 'Bear''s Companion', 'Shambling Strider', 'Hazy Homunculus', 'Hoofprints of the Stag', 'Courageous Outrider', 'Sightless Brawler', 'Goblin Goon', 'Mycologist', 'Tightening Coils', 'Silverblade Paladin', 'Geyser Glider', 'Mercurial Pretender', 'Wall of Distortion', 'World at War', 'Jawbone Skulkin', 'Live Fast', 'Alabaster Kirin', 'Vivid Marsh', 'Dimir Keyrune', 'Oasis Ritualist', 'Headstrong Brute', 'Tolarian Drake', 'Hideous End', 'Crystal Golem', 'Vedalken Heretic', 'Crystal Seer', 'Bramblecrush', 'Dead Weight', 'Alms', 'Needlebug', 'Leaden Myr', 'Arbor Colossus', 'Gurmag Drowner', 'Kashi-Tribe Reaver', 'Nav Squad Commandos', 'Merfolk Spy', 'Underworld Coinsmith', 'Latulla''s Orders', 'Pale Recluse', 'Abzan Battle Priest', 'Planar Despair', 'Lu Meng, Wu General', 'Kaervek''s Torch', 'Hesitation', 'Sudden Death', 'Penance', 'Possessed Nomad', 'Deathgaze Cockatrice', 'Nim Grotesque', 'Shrapnel Blast', 'Devouring Greed', 'Stone Haven Outfitter', 'Pacification Array', 'Prismwake Merrow', 'Vision Skeins', 'Dominator Drone', 'Wolfir Silverheart', 'Jeskai Runemark', 'Mindculling', 'Halcyon Glaze', 'Spreading Algae', 'Vessel of Endless Rest', 'Mind Rot', 'Undead Minotaur', 'Master of Predicaments', 'Kyren Glider', 'Lys Alana Scarblade', 'Unblinking Bleb', 'Cryptborn Horror', 'Terror of the Fairgrounds', 'Brute Strength', 'Dreadbringer Lampads', 'Civic Guildmage', 'Honden of Cleansing Fire', 'Lavamancer''s Skill', 'Tresserhorn Skyknight', 'Guan Yu, Sainted Warrior', 'Zealous Strike', 'Pinecrest Ridge', 'Patron of the Wild', 'Zhur-Taa Ancient', 'Accursed Horde', 'Orcish Lumberjack', 'Plague Dogs', 'Woolly Loxodon', 'Vampiric Sliver', 'Bold Impaler', 'Relentless Skaabs', 'Goblin Taskmaster', 'Aerial Responder', 'Treasure Cruise', 'Master Trinketeer', 'To Arms!', 'Celestial Archon', 'War Falcon', 'Runed Stalactite', 'Gearseeker Serpent', 'Vampire Warlord', 'Swarm Surge', 'Day of the Dragons', 'Pull from the Deep', 'Rites of Refusal', 'Guardians of Akrasa', 'Battered Golem', 'Fortune Thief', 'Goblin Ringleader', 'Lapse of Certainty', 'Spearbreaker Behemoth', 'Concentrate', 'Betrayal of Flesh', 'Vampirism', 'Glitterfang', 'Refraction Trap', 'Nimana Sell-Sword', 'Illusory Wrappings', 'Heavy Arbalest', 'Cathar''s Companion', 'Madcap Skills', 'Spire Tracer', 'Counterbore', 'Thicket Basilisk', 'Paragon of Eternal Wilds', 'Erg Raiders', 'Flamecore Elemental', 'Swift Reckoning', 'Fertilid', 'Gluttonous Slime', 'Cinder Elemental', 'Wall of Diffusion', 'Maulfist Squad', 'Ramunap Hydra', 'Death Rattle', 'Maelstrom Djinn', 'Hissing Miasma', 'Tormenting Voice', 'Defiant Vanguard', 'Prism Ring', 'Rhystic Deluge', 'Leering Emblem', 'Vault Skyward', 'Arena Athlete', 'Outland Colossus', 'Rakdos Ragemutt', 'Bloodfire Mentor', 'Upwelling', 'Thought Devourer', 'Kyren Sniper', 'Maggot Therapy', 'Mirrorweave', 'Latch Seeker', 'Stasis Snare', 'Reclusive Artificer', 'Umbral Mantle', 'Insatiable Harpy', 'Soul''s Majesty', 'Asha''s Favor', 'Lone Revenant', 'Gruul Nodorog', 'Circle of Affliction', 'Wild Griffin', 'Thoughtweft Gambit', 'Dismiss into Dream', 'Frogtosser Banneret', 'Nettlevine Blight', 'Flying Crane Technique', 'Grave-Shell Scarab', 'Nature''s Lore', 'Spell Snip', 'Pulse of the Dross', 'Avian Changeling', 'Raksha Golden Cub', 'Sea Sprite', 'Sage''s Dousing', 'Karma', 'Ritual of Restoration', 'Ogre Jailbreaker', 'Vedalken Anatomist', 'Megrim', 'Onward // Victory', 'Blighted Fen', 'Silklash Spider', 'Reality Strobe', 'Tuknir Deathlock', 'Mystic Meditation', 'Lagac Lizard', 'Neheb, the Worthy', 'Sanctimony', 'Ghost-Lit Warder', 'Wing Splicer', 'Gloomhunter', 'Liturgy of Blood', 'Train of Thought', 'Thornbow Archer', 'Aven Skirmisher', 'Voyaging Satyr', 'Angrath''s Marauders', 'Dauntless River Marshal', 'Harm''s Way', 'Teremko Griffin', 'Cartouche of Strength', 'Molten Nursery', 'Dogpile', 'Quest for the Gravelord', 'Songstitcher', 'Crystalline Nautilus', 'Saving Grasp', 'Cryptic Cruiser', 'New Horizons', 'Rogue Skycaptain', 'Mirror Sheen', 'Agrus Kos, Wojek Veteran', 'Nightmare Void', 'Wear Away', 'Boggart Harbinger', 'Baloth Cage Trap', 'Hunted Dragon', 'Drake Umbra', 'Cemetery Recruitment', 'Natural End', 'Ajani''s Sunstriker', 'Cut the Earthly Bond', 'Leonin Skyhunter', 'Treacherous Link', 'Vigor Mortis', 'Last Kiss', 'Furyblade Vampire', 'Putrid Leech', 'Junk Golem', 'Wail of the Nim', 'Crash', 'Guardian Seraph', 'Rotting Mastodon', 'Salt Flats', 'Wandering Graybeard', 'Moonbow Illusionist', 'Kor Hookmaster', 'Weave Fate', 'Innocence Kami', 'Deep-Sea Kraken', 'Saltcrusted Steppe', 'Pinion Feast', 'Savannah Lions', 'Decorated Griffin', 'Cloak of Mists', 'Hamletback Goliath', 'Panic Attack', 'Iroas''s Champion', 'Verdant Force', 'Infectious Host', 'Firemaw Kavu', 'Spidersilk Net', 'Raptor Companion', 'Skarrgan Firebird', 'Isolation Cell', 'Pyromancer''s Gauntlet', 'Soul Stair Expedition', 'Binding Agony', 'Rend Spirit', 'Nylea''s Emissary', 'Deglamer', 'Homicidal Seclusion', 'Commune with Nature', 'Skyreach Manta', 'Mnemonic Wall', 'Reckless One', 'Fathom Seer', 'Peppersmoke', 'Hill Giant', 'Duskrider Falcon', 'Ravenous Demon', 'Grim Haruspex', 'Aethergeode Miner', 'Drowned', 'Sand Golem', 'Waterspout Elemental', 'Acid Web Spider', 'Tawnos''s Wand', 'Angelic Chorus', 'Colossus of Sardia', 'Custodian of the Trove', 'Rootwater Hunter', 'Kami of Fire''s Roar', 'Avacyn, Guardian Angel', 'Arm with Aether', 'Darigaaz''s Charm', 'Boggart Loggers', 'Satyr Nyx-Smith', 'Ant Queen', 'Transguild Courier', 'Reaper of Flight Moonsilver', 'Reason // Believe', 'Glint', 'Capashen Unicorn', 'Karoo', 'Wall of Light', 'Hibernation', 'Stampeding Serow', 'Gift of Tusks', 'Bastion Inventor', 'Armored Griffin', 'Sphinx-Bone Wand', 'Sibilant Spirit', 'Ruin Ghost', 'Lat-Nam''s Legacy', 'Petrified Plating', 'Clinging Mists', 'Press the Advantage', 'Empty the Catacombs', 'Vampiric Fury', 'Nantuko Monastery', 'Stomper Cub', 'Bonds of Mortality', 'Wall of Razors', 'Wring Flesh', 'Vile Rebirth', 'Suncrusher', 'Boltwing Marauder', 'Ballista Squad', 'Stasis Cell', 'Nobilis of War', 'Dune Beetle', 'Havoc Festival', 'Deathknell Kami', 'Crafty Pathmage', 'Titan Forge', 'Razor Golem', 'Tyrant of Valakut', 'Renegade Map', 'Radiant Kavu', 'Uba Mask', 'Aven Surveyor', 'Biting Rain', 'Zof Shade', 'Driver of the Dead', 'Evil Twin', 'Helium Squirter', 'Cathedral Sanctifier', 'Ruin in Their Wake', 'Ghost-Lit Redeemer', 'Proven Combatant', 'Giant Scorpion', 'Shaper Apprentice', 'Inferno Fist', 'Knight Watch', 'Headless Skaab', 'Boulder Salvo', 'Tattermunge Witch', 'Towering Indrik', 'Jor Kadeen, the Prevailer', 'Crypt Creeper', 'Jolrael, Empress of Beasts', 'Tar Snare', 'Vizier of Tumbling Sands', 'Deep Spawn', 'Lucent Liminid', 'Pitchburn Devils', 'Whip Sergeant', 'Vastwood Hydra', 'Nighthaze', 'Wild Beastmaster', 'Leonin Sun Standard', 'Celestial Sword', 'Kragma Butcher', 'Feudkiller''s Verdict', 'Hint of Insanity', 'Kitsune Bonesetter', 'Avacyn''s Collar', 'Bow of Nylea', 'Hunt the Weak', 'Talon Trooper', 'Fatal Frenzy', 'Stitched Drake', 'Jungle Delver', 'Order of Yawgmoth', 'Gnarled Effigy', 'Surestrike Trident', 'Hubris', 'Mardu Banner', 'Seismic Elemental', 'Benediction of Moons', 'Quarry Beetle', 'Whirling Catapult', 'Dong Zhou, the Tyrant', 'Falkenrath Noble', 'Charging Monstrosaur', 'Banishing Stroke', 'Nuisance Engine', 'Thieving Sprite', 'Stormscape Battlemage', 'Mirror Mockery', 'Consign to Dust', 'Momentary Blink', 'Boros Mastiff', 'Silent Observer', 'Disciple of Law', 'Telethopter', 'Possessed Barbarian', 'Declaration of Naught', 'Realm Razer', 'Conqueror''s Galleon', 'Scholar of Athreos', 'Bloodhunter Bat', 'Expunge', 'Blockbuster', 'Hypnotic Specter', 'Bonesplitter Sliver', 'Mystic Speculation', 'Clickslither', 'Festering Mummy', 'Kolaghan Monument', 'Mondronen Shaman', 'Phyrexian Monitor', 'Spiteful Bully', 'Awaken the Ancient', 'Stromkirk Patrol', 'Aurora Griffin', 'Rotcrown Ghoul', 'Rekindled Flame', 'Crossroads Consecrator', 'Cinder Barrens', 'Seraph of Dawn', 'Spite of Mogis', 'Jedit Ojanen', 'Auntie''s Snitch', 'Beacon of Destiny', 'Bloodletter Quill', 'Judge Unworthy', 'Vanquish', 'Aftershock', 'Wildwood Rebirth', 'Cairn Wanderer', 'Battlefield Thaumaturge', 'Trial of Ambition', 'Jalira, Master Polymorphist', 'Double Negative', 'Maw of Kozilek', 'Sylvan Bounty', 'Rakdos Pit Dragon', 'Maniacal Rage', 'Seagraf Skaab', 'Red Cliffs Armada', 'Mirror-Mad Phantasm', 'Psychic Spiral', 'Shielded Passage', 'Salt Road Patrol', 'Gibbering Kami', 'Dragon Blood', 'Lim-Dûl the Necromancer', 'Throat Slitter', 'Defensive Stance', 'Dazzling Ramparts', 'Resurrection', 'Echo Mage', 'Heal the Scars', 'Piston Sledge', 'Smokespew Invoker', 'Harbor Serpent', 'Chant of Vitu-Ghazi', 'Obelisk of Bant', 'Merfolk Seer', 'Conquer', 'Tormented Soul', 'Ring of Thune', 'Ulvenwald Captive', 'Haunted Guardian', 'Give No Ground', 'Cackling Imp', 'Warclamp Mastiff', 'Dread Wight', 'Graypelt Hunter', 'Cloudblazer', 'Mistform Mask', 'Boar Umbra', 'Mantle of Webs', 'Defy Death', 'Gang of Devils', 'Carapace', 'Esper Stormblade', 'Psychogenic Probe', 'Pick the Brain', 'Ronin Cliffrider', 'Ancient Silverback', 'Brothers Yamazaki', 'Burning Oil', 'Deadeye Quartermaster', 'Sacred Armory', 'Corrupted Harvester', 'Contaminated Ground', 'Intimidation Bolt', 'Broodhatch Nantuko', 'Hammerhand', 'Charge Across the Araba', 'Rakshasa''s Disdain', 'Spiketail Hatchling', 'Stonehands', 'Predator''s Rapport', 'Kessig Dire Swine', 'Kavu Titan', 'Skulduggery', 'Skymarch Bloodletter', 'Moldgraf Monstrosity', 'Reinforcements', 'Agent of Horizons', 'Hydrolash', 'Skittering Skirge', 'Court Archers', 'Dispossess', 'Sapseep Forest', 'Deepwater Hypnotist', 'Constricting Sliver', 'Briarhorn', 'Rubblebelt Maaka', 'Leashling', 'Marble Chalice', 'Backlash', 'Counsel of the Soratami', 'Manor Skeleton', 'Voldaren Pariah', 'Spitting Hydra', 'Anointed Deacon', 'Palladia-Mors', 'Mortarpod', 'Ulamog''s Despoiler', 'Ruthless Ripper', 'Symbol of Unsummoning', 'Battlegrowth', 'Spreading Flames', 'Patron of the Nezumi', 'Grazing Kelpie', 'Killing Glare', 'Retromancer', 'Blazing Volley', 'Rustspore Ram', 'Faerie Swarm', 'Epiphany Storm', 'Mogis''s Warhound', 'Strength of the Tajuru', 'Spiteful Motives', 'Hanabi Blast', 'Arc Trail', 'Maze Rusher', 'Remove Soul', 'Merciless Javelineer', 'Waylay', 'Faerie Trickery', 'Relic Crush', 'Skittering Heartstopper', 'Convalescence', 'Lay Bare the Heart', 'Hellion Crucible', 'Aether Swooper', 'Addle', 'Quillmane Baku', 'Vein Drinker', 'Razorfield Thresher', 'Caustic Hound', 'Blood Host', 'Afterlife', 'Warp World', 'Drag Under', 'Skullcage', 'Marisi''s Twinclaws', 'Gurzigost', 'Sundering Growth', 'Pyrotechnics', 'Hammer of Purphoros', 'Thunderstaff', 'Zektar Shrine Expedition', 'Nacatl Outlander', 'Quickchange', 'Spell Shrivel', 'Goblin Machinist', 'Bogardan Phoenix', 'Bane of Bala Ged', 'Feed the Pack', 'Razaketh''s Rite', 'Dread Reaper', 'Whispersilk Cloak', 'Heavy Mattock', 'Bog Imp', 'Fan Bearer', 'Knight of Obligation', 'Bloodhall Priest', 'Shed Weakness', 'Crash the Ramparts', 'Courier Hawk', 'Minotaur Sureshot', 'Ursine Fylgja', 'Silumgar Butcher', 'Heat of Battle', 'Pennon Blade', 'Saberclaw Golem', 'Invincible Hymn', 'Allay', 'Turn the Tide', 'Spin into Myth', 'Crimson Manticore', 'Might of Oaks', 'Boggart Mob', 'Centaur Glade', 'Sylvan Might', 'Coral Barrier', 'Intangible Virtue', 'Desperate Castaways', 'Dakmor Lancer', 'Bazaar Trader', 'Patron of the Moon', 'Grapeshot Catapult', 'Thawing Glaciers', 'Latchkey Faerie', 'Ulasht, the Hate Seed', 'Aven of Enduring Hope', 'Sabretooth Tiger', 'Craterize', 'Spirit of the Hunt', 'Self-Inflicted Wound', 'Fireslinger', 'Doorkeeper', 'Defensive Formation', 'Kraken''s Eye', 'Town Gossipmonger', 'Aether Charge', 'Mephitic Ooze', 'Drooling Groodion', 'Spectral Rider', 'Grim Guardian', 'Burst of Energy', 'Brain Maggot', 'Ready // Willing', 'Dingus Egg', 'Silkenfist Fighter', 'Plagiarize', 'Ice Storm', 'Vigean Hydropon', 'Fervent Charge', 'Stromkirk Occultist', 'Nullmage Shepherd', 'Mizzium Meddler', 'Fog Patch', 'Noble Purpose', 'Crippling Blight', 'Throttle', 'Queen''s Bay Soldier', 'Patagia Viper', 'Bane Alley Broker', 'Clockwork Gnomes', 'Waning Wurm', 'Elvish Hunter', 'Winged Shepherd', 'Pristine Talisman', 'Smoldering Tar', 'Goblin Firebug', 'Mangara of Corondor', 'Presence of the Wise', 'Searing Light', 'Sengir Nosferatu', 'Sakura-Tribe Springcaller', 'Hammerhead Shark', 'Terror', 'Scrambleverse', 'Cobbled Wings', 'Genju of the Spires', 'Processor Assault', 'Thriving Rats', 'Amok', 'Trail of Mystery', 'Storm Shaman', 'Nezumi Graverobber', 'Molten Psyche', 'Kefnet''s Last Word', 'Crash Landing', 'Soulstinger', 'Disruptive Pitmage', 'Stone Idol Trap', 'Empyrial Armor', 'Kird Chieftain', 'Copperhorn Scout', 'Puncture Blast', 'Brainspoil', 'Vampire Envoy', 'Divine Verdict', 'Dryad''s Caress', 'Dark Privilege', 'Hypervolt Grasp', 'Squall Drifter', 'Ayumi, the Last Visitor', 'Treasured Find', 'Oros, the Avenger', 'Pteron Ghost', 'Mardu Runemark', 'Gravetiller Wurm', 'Souldrinker', 'Insubordination', 'Cloudseeder', 'Tidal Bore', 'Stone Giant', 'Rise of Eagles', 'Ridge Rannet', 'Kiln Walker', 'Song of Blood', 'Moonglove Winnower', 'Gnarlid Pack', 'Scuttling Doom Engine', 'Enatu Golem', 'Tanglewalker', 'Punish Ignorance', 'Headhunter', 'Prey Upon', 'Confront the Unknown', 'Shining Aerosaur', 'Ruinous Minotaur', 'Silver Wyvern', 'Kaho, Minamo Historian', 'Dwarven Demolition Team', 'Snarling Undorak', 'Avenging Arrow', 'Grimclaw Bats', 'Squelch', 'Seer of the Last Tomorrow', 'Millennial Gargoyle', 'Hagra Sharpshooter', 'Martyr''s Cause', 'Loxodon Gatekeeper', 'Wildfire Emissary', 'Cyclopean Giant', 'Lead Golem', 'Vine Kami', 'Catalog', 'Paralyzing Grasp', 'Pirate''s Cutlass', 'Mycosynth Wellspring', 'Accursed Centaur', 'Stitcher''s Graft', 'Misfortune''s Gain', 'Mogg Squad', 'Angel''s Tomb', 'Verdant Automaton', 'Peer Through Depths', 'Aerie Mystics', 'Aven Sunstriker', 'Surge Node', 'Putrid Imp', 'Knowledge Pool', 'Disturbed Burial', 'Wardscale Dragon', 'Lake of the Dead', 'Leonin Armorguard', 'Waker of the Wilds', 'Updraft Elemental', 'Moan of the Unhallowed', 'Chancellor of the Spires', 'Godo''s Irregulars', 'Marker Beetles', 'Vow of Wildness', 'Humbler of Mortals', 'Kor Cartographer', 'Grip of Desolation', 'Teferi''s Drake', 'Spark of Creativity', 'Stalking Bloodsucker', 'Herald of Torment', 'Ainok Tracker', 'Divine Deflection', 'Blood-Cursed Knight', 'Aethersnipe', 'Hand of the Praetors', 'Granulate', 'Crosswinds', 'Voidmage Apprentice', 'Hunter''s Insight', 'Light of Sanction', 'Teferi''s Moat', 'Vizier of the True', 'Maw of the Mire', 'Viashivan Dragon', 'Seismic Rupture', 'Galvanic Arc', 'Eel Umbra', 'Angelic Favor', 'Broken Fall', 'One with Nothing', 'Order of the White Shield', 'Dragon Hatchling', 'Caregiver', 'Ancient Crab', 'Swamp', 'Aerial Volley', 'Redeem', 'Gobbling Ooze', 'Kolaghan Stormsinger', 'Vexing Scuttler', 'Kozilek''s Pathfinder', 'Hissing Iguanar', 'Duneblast', 'Thought Harvester', 'Turntimber Grove', 'Ronin Houndmaster', 'Ornamental Courage', 'Qarsi High Priest', 'Spell Burst', 'Daredevil Dragster', 'Fallen Cleric', 'Merfolk Traders', 'Thriving Turtle', 'Brimstone Dragon', 'Neverending Torment', 'Scythe Tiger', 'Tide Drifter', 'Rush of Knowledge', 'Seismic Stomp', 'Molten Ravager', 'Skulking Fugitive', 'Skirk Outrider', 'Dragonloft Idol', 'Nemesis Mask', 'Gift of Strength', 'Empyrial Plate', 'Tethmos High Priest', 'Claim // Fame', 'Skyspear Cavalry', 'Spitting Gourna', 'Hand of Silumgar', 'Lurking Evil', 'Surveilling Sprite', 'Cinder Crawler', 'Flowstone Shambler', 'Scourge of Skola Vale', 'Skirge Familiar', 'Sun-Crowned Hunters', 'Aether Storm', 'Baneful Omen', 'Summary Dismissal', 'Relic Barrier', 'Raven''s Run Dragoon', 'Aquamorph Entity', 'Restore the Peace', 'Fluxcharger', 'Suntail Hawk', 'Lantern-Lit Graveyard', 'Flailing Drake', 'Scourge of Numai', 'Curse of the Nightly Hunt', 'Ebon Stronghold', 'Thick-Skinned Goblin', 'Selesnya Guildgate', 'Torment', 'Douse in Gloom', 'Grizzled Outcasts', 'Flinthoof Boar', 'Sphinx''s Herald', 'Lightning Dragon', 'Kazuul Warlord', 'Inkfathom Infiltrator', 'Call for Blood', 'Oracle of Dust', 'Alley Strangler', 'Keymaster Rogue', 'Break Asunder', 'Crypt of the Eternals', 'Barrage of Expendables', 'Arcane Spyglass', 'Thunderclap Wyvern', 'Biting Tether', 'Ichor Slick', 'Deadwood Treefolk', 'Shield Bearer', 'Masked Admirers', 'Quiet Speculation', 'Hermit of the Natterknolls', 'Terrarion', 'Harness the Storm', 'Dizzy Spell', 'Skeletal Kathari', 'Bant Battlemage', 'Minotaur Skullcleaver', 'Chemister''s Trick', 'Pincher Beetles', 'Steam Augury', 'Crazed Goblin', 'Savra, Queen of the Golgari', 'Learn from the Past', 'Wall of Stone', 'Whims of the Fates', 'Luminesce', 'Fodder Launch', 'Gainsay', 'Reviving Dose', 'Cryoclasm', 'Abzan Kin-Guard', 'One with Nature', 'Revive', 'Manacles of Decay', 'Aphetto Vulture', 'Tower Gargoyle', 'Royal Assassin', 'Herald of Dromoka', 'Hindervines', 'Anax and Cymede', 'Brood of Cockroaches', 'Enchantment Alteration', 'Death Pulse', 'Molten Frame', 'Anticipate', 'Nezumi Bone-Reader', 'Ring of Renewal', 'Rejuvenate', 'Molten Sentry', 'Snapsail Glider', 'Recumbent Bliss', 'Built to Last', 'Shieldhide Dragon', 'Sphinx Summoner', 'Borrowed Grace', 'Ember-Fist Zubera', 'Tajic, Blade of the Legion', 'Moonlace', 'Skyfire Kirin', 'Dawnglow Infusion', 'Greenside Watcher', 'Oashra Cultivator', 'Dakmor Plague', 'Vexing Beetle', 'Watcher Sliver', 'Thopter Spy Network', 'Plated Geopede', 'Embalmed Brawler', 'Abandon Reason', 'Wall of Vines', 'Silumgar Monument', 'Unnatural Speed', 'Anthousa, Setessan Hero', 'Steady Progress', 'Marjhan', 'Thelonite Hermit', 'Honden of Infinite Rage', 'Angelic Wall', 'Trap Digger', 'Bramblesnap', 'Takklemaggot', 'Disciple of Deceit', 'Shrine of Boundless Growth', 'Despoiler of Souls', 'Merfolk Sovereign', 'Glacial Crevasses', 'Noggle Hedge-Mage', 'Topple', 'Ensouled Scimitar', 'Lone Rider', 'Soltari Champion', 'Fireshrieker', 'Fortune''s Favor', 'Charging Rhino', 'Keldon Megaliths', 'Akki Underling', 'Kederekt Leviathan', 'Firemantle Mage', 'Autumn Willow', 'Colfenor''s Urn', 'Nightfire Giant', 'Death Denied', 'Lymph Sliver', 'Porcelain Legionnaire', 'Joraga Bard', 'Barrage Tyrant', 'Hana Kami', 'Akki Avalanchers', 'Goblin Gaveleer', 'Strider Harness', 'Trespasser''s Curse', 'Fade into Antiquity', 'Desolation', 'Grave Defiler', 'Oraxid', 'Wicked Akuba', 'Calcite Snapper', 'Paperfin Rascal', 'Mortus Strider', 'Brass Man', 'Vital Splicer', 'Bloodwater Entity', 'Darksteel Gargoyle', 'Soldevi Machinist', 'Heaven // Earth', 'Soothing Balm', 'Keening Apparition', 'Sultai Flayer', 'Jareth, Leonine Titan', 'Markov Dreadknight', 'Stronghold Discipline', 'Annihilating Fire', 'Revelsong Horn', 'Winds of Rebuke', 'Dynacharge', 'Murderous Betrayal', 'Tasigur''s Cruelty', 'Bulwark', 'Goblin Freerunner', 'Hermit Druid', 'Displace', 'Temmet, Vizier of Naktamun', 'Angel of Fury', 'Spirit Shackle', 'Tower Drake', 'Tuskguard Captain', 'Zephid', 'Chain of Acid', 'Stone Calendar', 'Dehydration', 'Pounce', 'Spear of Heliod', 'Corpse Churn', 'Covenant of Minds', 'Pursue Glory', 'Dual Shot', 'Trophy Hunter', 'Rimebound Dead', 'Trait Doctoring', 'Whipstitched Zombie', 'Plumeveil', 'Bayou Dragonfly', 'Dross Golem', 'Dust of Moments', 'Knightly Valor', 'Pyxis of Pandemonium', 'Reito Lantern', 'Long-Forgotten Gohei', 'Lifecraft Cavalry', 'Shield Wall', 'Elvish Skysweeper', 'Rith''s Grove', 'Laccolith Rig', 'Whetwheel', 'Gnarlroot Trapper', 'Aven Initiate', 'Wurmcalling', 'Blitz Hellion', 'Maze of Shadows', 'Bog Serpent', 'Pain Kami', 'Rathi Trapper', 'Fists of the Anvil', 'Harvest Season', 'Rage Reflection', 'Soulcage Fiend', 'Furnace of Rath', 'Prizefighter Construct', 'Light of Day', 'Markov Crusader', 'Goblin War Wagon', 'Jace''s Mindseeker', 'Incite Hysteria', 'Firehoof Cavalry', 'Torrent of Stone', 'Emeria Angel', 'Metallurgeon', 'Metropolis Sprite', 'Nim Replica', 'Spitting Earth', 'Sky Ruin Drake', 'Pyramid of the Pantheon', 'Arcbound Crusher', 'Wipe Clean', 'Okk', 'Terashi''s Verdict', 'Summon the School', 'Seize the Soul', 'Cloudchaser Kestrel', 'Vulshok Gauntlets', 'Ghostly Possession', 'Paragon of Open Graves', 'Tyrranax', 'Forest', 'Humble', 'Vengeful Vampire', 'Disciple of Malice', 'Umbra Mystic', 'Magnetic Theft', 'Graven Dominator', 'Ghitu Encampment', 'Jar of Eyeballs', 'Intervene', 'Seashell Cameo', 'Funeral March', 'Molten Firebird', 'Flamecast Wheel', 'Hunting Wilds', 'Suntouched Myr', 'Nissa''s Revelation', 'Sungrace Pegasus', 'Jamuraan Lion', 'Hasran Ogress', 'Umara Entangler', 'Gristle Grinner', 'Midnight Scavengers', 'Murder', 'Eldrazi Aggressor', 'Bar the Door', 'Urza''s Armor', 'Trigon of Mending', 'Biorhythm', 'Sandsteppe Mastodon', 'Tajuru Beastmaster', 'Market Festival', 'Viridian Joiner', 'Breath of Fury', 'Jund Panorama', 'Vile Redeemer', 'Abyssal Nocturnus', 'Lens of Clarity', 'Skinbrand Goblin', 'Lagonna-Band Elder', 'Quicksmith Rebel', 'Armed Response', 'Booby Trap', 'Folk of the Pines', 'Dosan''s Oldest Chant', 'Blind Phantasm', 'Decommission', 'Sanitarium Skeleton', 'Nightmare', 'Hurricane', 'Two-Headed Cerberus', 'Vigean Graftmage', 'Caustic Rain', 'Boros Fury-Shield', 'Whirling Dervish', 'Molting Skin', 'Saltskitter', 'Orcish Cannoneers', 'Ambush Commander', 'Copper Myr', 'Wormwood Treefolk', 'Twinning Glass', 'Ferrovore', 'Pendrell Flux', 'Arborback Stomper', 'Tolsimir Wolfblood', 'Wildwood Geist', 'Artisan of Kozilek', 'Act on Impulse', 'Mer-Ek Nightblade', 'Grip of the Roil', 'Veteran''s Sidearm', 'Lingering Death', 'Forced Adaptation', 'Mindlock Orb', 'Quagnoth', 'Volcanic Geyser', 'Planar Overlay', 'Coast Watcher', 'Grisly Spectacle', 'Lifecrafter''s Gift', 'Zhalfirin Knight', 'Self-Assembler', 'Deadeye Plunderers', 'Bile Urchin', 'Gale Force', 'Slinking Giant', 'Kami of the Hunt', 'Vessel of Ephemera', 'Dragonrage', 'Timberpack Wolf', 'Queen''s Agent', 'Ethersworn Shieldmage', 'Nemesis of Mortals', 'Seer''s Sundial', 'Grandmother Sengir', 'Regenerate', 'Viashino Sandstalker', 'Prism Array', 'Tyrannize', 'Rakish Heir', 'Ancient Carp', 'Priest of Urabrask', 'Howl of the Horde', 'Tradewind Rider', 'Thief of Hope', 'Oath of Scholars', 'Wee Dragonauts', 'Joven''s Ferrets', 'Aphetto Dredging', 'Shah of Naar Isle', 'Excommunicate', 'Helldozer', 'Swift Spinner', 'Ghostblade Eidolon', 'Ragamuffyn', 'Cleric of the Forward Order', 'Silverfur Partisan', 'Aurora Eidolon', 'Crystal Ball', 'Homura, Human Ascendant', 'Thran Weaponry', 'Renegade Tactics', 'Basilica Screecher', 'Chaos Charm', 'Fire-Belly Changeling', 'Spectral Lynx', 'Dromoka Monument', 'Desecration Elemental', 'Thoughtcutter Agent', 'Trespasser il-Vec', 'Death Match', 'Shifty Doppelganger', 'Predatory Advantage', 'Storm Herd', 'Inferno Trap', 'Tormented Thoughts', 'Volrath''s Dungeon', 'Sewer Shambler', 'Village Ironsmith', 'Kor Sky Climber', 'Broken Concentration', 'Soltari Lancer', 'Reciprocate', 'Inquisitor Exarch', 'Thunderbolt', 'Bull Elephant', 'New Perspectives', 'Act of Aggression', 'Yavimaya Ants', 'Gladehart Cavalry', 'Glimpse the Future', 'Epiphany at the Drownyard', 'Tenacious Dead', 'Witness of the Ages', 'Retreat to Kazandu', 'Serendib Sorcerer', 'Trial of Solidarity', 'Rubblebelt Raiders', 'Fireball', 'Boulderfall', 'Snapback', 'Silver Myr', 'Unmake the Graves', 'Wall of Air', 'Phyrexian Hydra', 'Guard Gomazoa', 'Wharf Infiltrator', 'Volcanic Dragon', 'Dark Tutelage', 'Serpentine Basilisk', 'Torture Chamber', 'Unwavering Initiate', 'Bee Sting', 'Welder Automaton', 'Stroke of Genius', 'Death Cultist', 'Precinct Captain', 'Valley Dasher', 'Smelt', 'Goblin Brigand', 'Shields of Velis Vel', 'Goblin Cannon', 'Leyline Phantom', 'Mizzium Transreliquat', 'Endless Obedience', 'Fate Forgotten', 'Drastic Revelation', 'Leaping Lizard', 'Triton Cavalry', 'Blightsoil Druid', 'Gridlock', 'Voyager Staff', 'Pentagram of the Ages', 'Intrepid Hero', 'Skinthinner', 'Squire', 'Gruul Charm', 'Frontline Strategist', 'Seedguide Ash', 'Chandra''s Outrage', 'Thousand-legged Kami', 'Odds // Ends', 'Time to Reflect', 'Metamorphose', 'Moldgraf Scavenger', 'Savage Hunger', 'Skirsdag Flayer', 'Incubator Drone', 'Mossdog', 'Sire of the Storm', 'Wingbeat Warrior', 'Crash Through', 'Guild Feud', 'Glimpse the Sun God', 'Boldwyr Intimidator', 'Fleshwrither', 'Ranger en-Vec', 'Blood Bairn', 'Decompose', 'Stalking Stones', 'Sunder from Within', 'Stir the Sands', 'Stern Proctor', 'Marauding Looter', 'Chalice of Life', 'Gempalm Strider', 'Lightning Talons', 'Oviya Pashiri, Sage Lifecrafter', 'Skyhunter Cub', 'Baleful Stare', 'Fen Stalker', 'Sanguine Guard', 'Rotted Hulk', 'Galestrike', 'Frozen Aether', 'Scroll of Avacyn', 'Sparring Mummy', 'Aether Meltdown', 'Dragonstorm', 'Arrow Storm', 'Mistral Charger', 'Ambitious Aetherborn', 'Blood Seeker', 'Gigapede', 'Descendant of Kiyomaro', 'Wings of Velis Vel', 'Implement of Malice', 'Voice of Law', 'Sudden Storm', 'Chilling Shade', 'Tormented Pariah', 'End Hostilities', 'Karn, Silver Golem', 'Amass the Components', 'Turn to Mist', 'Anavolver', 'Divine Favor', 'Formless Nurturing', 'Fateful Showdown', 'Meloku the Clouded Mirror', 'Rakshasa Gravecaller', 'Bloodmad Vampire', 'Henge Guardian', 'Arbiter of Knollridge', 'Knight Errant', 'Spawning Breath', 'Nacatl Hunt-Pride', 'Shambling Attendants', 'Catapult Squad', 'Watchwing Scarecrow', 'Seal of Cleansing', 'Shimmer Myr', 'Kin-Tree Invocation', 'Compelling Argument', 'Flamewave Invoker', 'Wicker Warcrawler', 'Favor of the Mighty', 'Livonya Silone', 'Rally the Horde', 'Goblin Piker', 'Elven Cache', 'Seed Guardian', 'Private Research', 'Spontaneous Artist', 'Collective Blessing', 'Skyship Stalker', 'Southern Elephant', 'Necrologia', 'Battlefront Krushok', 'Protective Bubble', 'Korozda Guildmage', 'Soul Feast', 'Seascape Aerialist', 'Minion Reflector', 'It of the Horrid Swarm', 'Tattermunge Maniac', 'Cephalid Pathmage', 'Agonizing Memories', 'Eliminate the Competition', 'Hellhole Flailer', 'Archetype of Aggression', 'Enervate', 'Putrid Raptor', 'Spore Burst', 'Spelltwine', 'Secret Plans', 'Ghastly Discovery', 'Nevermaker', 'Storm Seeker', 'Fireforger''s Puzzleknot', 'Golgari Decoy', 'Lobber Crew', 'Malachite Golem', 'Knight-Captain of Eos', 'Dusk Legion Dreadnought', 'Ominous Sphinx', 'Stangg', 'Borderland Minotaur', 'Petrified Wood-Kin', 'Serene Steward', 'Circular Logic', 'Caravan Escort', 'Repel Intruders', 'Ruins of Oran-Rief', 'Llanowar Empath', 'Abzan Skycaptain', 'Treacherous Urge', 'Merchant''s Dockhand', 'Consume the Meek', 'Drudge Beetle', 'Hurloon Minotaur', 'Swirl the Mists', 'Warped Landscape', 'Lone Wolf', 'Phantom Wings', 'Trigon of Rage', 'Ojutai Interceptor', 'Incremental Blight', 'Snow Fortress', 'Soratami Savant', 'Goblin Turncoat', 'Skull Fracture', 'Hired Giant', 'Time to Feed', 'Unchecked Growth', 'Trained Orgg', 'Willbender', 'Weatherseed Faeries', 'Skyhunter Skirmisher', 'Weldfast Monitor', 'Plumes of Peace', 'Omnibian', 'Inquisitor''s Ox', 'Hulking Goblin', 'Gaseous Form', 'Two-Headed Giant of Foriys', 'Master Thief', 'Painted Bluffs', 'Cathedral Membrane', 'Morkrut Banshee', 'Shaper Guildmage', 'Golem''s Heart', 'Precursor Golem', 'Ghostly Sentinel', 'Otherworldly Outburst', 'Angel of the God-Pharaoh', 'Rockshard Elemental', 'Reinforced Bulwark', 'Hijack', 'Thundering Tanadon', 'Tragic Arrogance', 'Walking Dream', 'Blaze of Glory', 'Knight of Sursi', 'Sadistic Glee', 'Concordia Pegasus', 'Arc Lightning', 'Misery Charm', 'Pygmy Troll', 'Fungal Reaches', 'Spotted Griffin', 'Raven Familiar', 'Familiar Ground', 'Talruum Champion', 'Combat Medic', 'Knight of the Holy Nimbus', 'Cradle of the Accursed', 'Myr Turbine', 'Elvish Promenade', 'Prying Blade', 'Maze Abomination', 'Ascending Aven', 'Abzan Runemark', 'Nantuko Vigilante', 'Hundred-Talon Kami', 'Phantom Wurm', 'Shriek Raptor', 'Welding Sparks', 'Talent of the Telepath', 'Unfriendly Fire', 'Feast of Blood', 'Whispers of Emrakul', 'Muzzle', 'Yosei, the Morning Star', 'Unity of Purpose', 'Rain of Blades', 'War Flare', 'Hazoret''s Favor', 'Jötun Grunt', 'Exclusion Ritual', 'Dusk Feaster', 'Chief of the Scale', 'Shadow of the Grave', 'Crag Puca', 'War Dance', 'Torrent of Fire', 'Rhox Charger', 'Niveous Wisps', 'Clearwater Goblet', 'Feral Incarnation', 'Gilded Light', 'Ior Ruin Expedition', 'Assault Griffin', 'Iridescent Drake', 'Diregraf Ghoul', 'Sprouting Thrinax', 'Act of Heroism', 'Scourge of Kher Ridges', 'Scythe Leopard', 'Hour of Eternity', 'Tooth Collector', 'Basalt Gargoyle', 'Heartstabber Mosquito', 'Pegasus Stampede', 'Browbeat', 'Rootwater Alligator', 'Quarry Colossus', 'Midnight Oil', 'Hermetic Study', 'Demon''s Horn', 'Vanguard''s Shield', 'Intrepid Provisioner', 'Key to the City', 'Survival Cache', 'Graveblade Marauder', 'Princess Lucrezia', 'Crovax, Ascendant Hero', 'Root Elemental', 'Boggart Forager', 'Enthralling Victor', 'Groundskeeper', 'Fleshformer', 'Blazing Specter', 'Brush with Death', 'Illuminated Folio', 'Venerable Lammasu', 'Timber Gorge', 'Pitiless Horde', 'Kujar Seedsculptor', 'Zephid''s Embrace', 'Loafing Giant', 'Zhur-Taa Druid', 'Rhys the Exiled', 'Shreds of Sanity', 'Hydroform', 'Repeating Barrage', 'Flame Javelin', 'Ghirapur Osprey', 'Primal Bellow', 'Enshrined Memories', 'Skygames', 'Brittle Effigy', 'Rakdos Augermage', 'Implode', 'Erratic Mutation', 'Encrust', 'Thrill-Kill Assassin', 'Elemental Resonance', 'Fangren Hunter', 'Unwilling Recruit', 'Waxing Moon', 'Naya Hushblade', 'Cleansing Beam', 'Noosegraf Mob', 'Forsake the Worldly', 'Bloodfire Dwarf', 'Shinen of Flight''s Wings', 'Fire Dragon', 'Utopia Mycon', 'Pheres-Band Thunderhoof', 'Sunrise Seeker', 'Cinder Storm', 'Elvish Scrapper', 'Duskworker', 'Chronostutter', 'Wild Dogs', 'Sylvan Hierophant', 'Turnabout', 'Hunted Ghoul', 'Rakdos Ringleader', 'Mana Prism', 'Strafe', 'Assembly-Worker', 'Hedron Matrix', 'Barter in Blood', 'Myr Sire', 'Era of Innovation', 'Mindless Null', 'Future Sight', 'Trapjaw Kelpie', 'Elemental Appeal', 'Chaplain''s Blessing', 'Phylactery Lich', 'Jolrael''s Centaur', 'Selfless Cathar', 'Ancient Hellkite', 'Woolly Mammoths', 'Wurmweaver Coil', 'Lotus Path Djinn', 'Hydrosurge', 'Avalanche Tusker', 'Mercy Killing', 'Trigon of Infestation', 'Vampire Noble', 'Blessing', 'Join the Ranks', 'Ambush Krotiq', 'Plague of Vermin', 'Wild Pair', 'Falkenrath Marauders', 'Gideon''s Avenger', 'Attended Knight', 'Nivix Guildmage', 'Blistercoil Weird', 'Servo Schematic', 'Windborne Charge', 'Kefnet''s Monument', 'Plague Wind', 'Vigilant Drake', 'Curse of Misfortunes', 'Revel of the Fallen God', 'Goblin Commando', 'Jagged Lightning', 'Jushi Apprentice', 'Searing Flesh', 'Deadlock Trap', 'Serpent Warrior', 'Shinewend', 'Vedalken Archmage', 'Dwarven Patrol', 'Anointer Priest', 'Tin-Wing Chimera', 'Magus of the Scroll', 'Boreal Centaur', 'Goblin Chariot', 'Twilight Shepherd', 'Stir the Grave', 'Last Breath', 'Shell of the Last Kappa', 'Pulmonic Sliver', 'Numbing Dose', 'Flame-Kin Zealot', 'Vines of the Recluse', 'Leonin Elder', 'Earth Surge', 'Stormtide Leviathan', 'Tower of Champions', 'Ring of Gix', 'Cateran Persuader', 'Glassdust Hulk', 'Blizzard Specter', 'Elder of Laurels', 'Forked-Branch Garami', 'Vow of Lightning', 'Bolt of Keranos', 'Perilous Research', 'Zephyr Net', 'Armistice', 'Lead by Example', 'Pulsemage Advocate', 'Whirler Rogue', 'Callous Giant', 'Ratcatcher', 'Desecration Demon', 'Astrolabe', 'Glamerdye', 'Lore Broker', 'Skysnare Spider', 'Undead Servant', 'Masticore', 'Trial of Strength', 'Daru Cavalier', 'Lambholt Pacifist', 'Rummaging Goblin', 'Trailblazer''s Boots', 'Blessed Orator', 'Sprite Noble', 'Jori En, Ruin Diver', 'Mark of Fury', 'Iname as One', 'Ogre''s Cleaver', 'Forgestoker Dragon', 'Dromoka Captain', 'Maze Glider', 'Phalanx Leader', 'Spireside Infiltrator', 'Baleful Force', 'Sindbad', 'Dire Undercurrents', 'Simic Sky Swallower', 'Flowstone Crusher', 'Hunger of the Nim', 'Balustrade Spy', 'Druid''s Familiar', 'Aradara Express', 'Bathe in Light', 'Silvercoat Lion', 'Map the Wastes', 'Sagu Archer', 'Gigantiform', 'Ironhoof Ox', 'Invasive Surgery', 'Loxodon Convert', 'Sunscorched Desert', 'Primitive Etchings', 'Spined Sliver', 'Umara Raptor', 'Master''s Call', 'Soul Nova', 'Gustcloak Cavalier', 'Dread Return', 'Blustersquall', 'Godtoucher', 'Ivy Lane Denizen', 'Reality Spasm', 'Foundry Hornet', 'Goblin Medics', 'Graf Mole', 'Fabled Hero', 'Cogworker''s Puzzleknot', 'Blazing Torch', 'Howlpack Resurgence', 'Decoction Module', 'Scrying Glass', 'Citadel Castellan', 'Midnight Banshee', 'Horde of Notions', 'Duct Crawler', 'Screeching Silcaw', 'Morselhoarder', 'Offalsnout', 'Sunbringer''s Touch', 'Nettle Drone', 'Shorecrasher Mimic', 'Palace Guard', 'Acidic Sliver', 'Chromescale Drake', 'Psychic Rebuttal', 'Seething Pathblazer', 'Skywinder Drake', 'Clarion Ultimatum', 'Merrow Harbinger', 'Soul Link', 'Highspire Mantis', 'Feral Contest', 'Sentry Oak', 'Serra''s Hymn', 'Keldon Arsonist', 'Evernight Shade', 'Shu Soldier-Farmers', 'Shattered Angel', 'Arcbound Overseer', 'Ancestor''s Prophet', 'Giantbaiting', 'Eye Gouge', 'Moorland Drifter', 'Enigma Drake', 'Kuldotha Ringleader', 'Haru-Onna', 'Sword of Kaldra', 'Nightsoil Kami', 'Soulquake', 'Tread Upon', 'Basking Rootwalla', 'Life''s Legacy', 'Tajuru Pathwarden', 'Aerial Guide', 'Grenzo, Dungeon Warden', 'Armored Cancrix', 'Braids, Conjurer Adept', 'Barricade Breaker', 'Scrapbasket', 'Wayfarer''s Bauble', 'Loyal Cathar', 'Glasses of Urza', 'Sleep', 'Claustrophobia', 'Viashino Weaponsmith', 'Might Sliver', 'Reclaim', 'Elephant Graveyard', 'Feral Shadow', 'Reviving Melody', 'Slith Strider', 'Mordant Dragon', 'Nessian Wilds Ravager', 'Sandblast', 'Andradite Leech', 'Tethered Skirge', 'Kruin Outlaw', 'Charging Griffin', 'Golgari Signet', 'Garruk''s Packleader', 'Mistform Warchief', 'Merrow Witsniper', 'Call of the Full Moon', 'Artillerize', 'Aspiring Aeronaut', 'Court Hussar', 'Battle Sliver', 'Kazuul, Tyrant of the Cliffs', 'Marshaling Cry', 'Misthoof Kirin', 'Kinjalli''s Caller', 'Rootwater Diver', 'Contaminated Bond', 'Rise from the Grave', 'Zombie Cutthroat', 'Harvest Gwyllion', 'Auriok Edgewright', 'Hand of Cruelty', 'Skirk Drill Sergeant', 'Ghostform', 'Vedalken Entrancer', 'Grixis Battlemage', 'Lightning Reaver', 'Everflame Eidolon', 'Phage the Untouchable', 'Kookus', 'Rite of Ruin', 'Crippling Chill', 'One With the Wind', 'Serum Raker', 'Loam Lion', 'Howl of the Night Pack', 'Ukud Cobra', 'Fortuitous Find', 'Gravity Negator', 'Pillar of War', 'Deathcult Rogue', 'Trumpet Blast', 'Incite', 'Smolder Initiate', 'Skyline Predator', 'Scion Summoner', 'Maro', 'Relic Seeker', 'Deepfathom Skulker', 'Cunning Survivor', 'Withering Gaze', 'Nature''s Kiss', 'Nova Chaser', 'Faith Unbroken', 'Scrivener', 'Hand of Honor', 'Gloom Surgeon', 'Magnivore', 'Transluminant', 'Pale Wayfarer', 'Choking Restraints', 'Opal Lake Gatekeepers', 'Skyshroud Elf', 'Master Splicer', 'Giant Mantis', 'Wind Spirit', 'Blight Keeper', 'Spore Cloud', 'Naked Singularity', 'Thistledown Duo', 'Common Bond', 'Lavaborn Muse', 'Greatbow Doyen', 'Selvala, Explorer Returned', 'Feral Thallid', 'Dream Thief', 'Devouring Swarm', 'Aven Windreader', 'Mold Adder', 'Shimmerscale Drake', 'Retraction Helix', 'Enfeeblement', 'Selesnya Sagittars', 'Seeds of Strength', 'Carrion Screecher', 'Aether Poisoner', 'Balduvian Horde', 'Traveling Plague', 'Veteran''s Reflexes', 'Farrel''s Mantle', 'Maverick Thopterist', 'Prowling Nightstalker', 'Highspire Artisan', 'Grim Affliction', 'Mindmoil', 'Ondu Greathorn', 'Nameless Inversion', 'Holy Justiciar', 'Skyshroud Forest', 'Cytoshape', 'Nakaya Shade', 'Scaleguard Sentinels', 'Corpse Hauler', 'Crown of Awe', 'Gruul Guildgate', 'Dukhara Peafowl', 'Spirit Cairn', 'Wu Warship', 'Descendant of Soramaro', 'Yomiji, Who Bars the Way', 'Warrior en-Kor', 'Chain of Plasma', 'Enlightened Ascetic', 'Incendiary Sabotage', 'Riptide Biologist', 'Carom', 'Iona''s Blessing', 'Famine', 'Furnace Dragon', 'Vedalken Aethermage', 'Sulfur Elemental', 'Sheltered Aerie', 'Manticore Eternal', 'Noble Elephant', 'Gigantomancer', 'Aven Redeemer', 'Shambleshark', 'Ornitharch', 'Hoard-Smelter Dragon', 'Sludge Strider', 'Telling Time', 'Voice of the Woods', 'Gideon''s Phalanx', 'Clergy en-Vec', 'Abattoir Ghoul', 'Rakalite', 'Thorn-Thrash Viashino', 'Pewter Golem', 'Hedron Scrabbler', 'Mass Polymorph', 'Blood Knight', 'Magus of the Disk', 'Thallid Devourer', 'Spark Spray', 'Riftsweeper', 'Explorer''s Scope', 'Bold Defense', 'Pristine Skywise', 'Renounce the Guilds', 'Tireless Missionaries', 'Horizon Chimera', 'Tempest of Light', 'Skinrender', 'Serra Angel', 'Death Bomb', 'Identity Thief', 'Pharika''s Cure', 'Ichor Explosion', 'Massive Raid', 'Enrage', 'Seed Spark', 'Armored Wolf-Rider', 'Blazing Hellhound', 'Kalonian Behemoth', 'Zombify', 'Festering March', 'Pestilence Demon', 'Colossal Heroics', 'Carnivorous Plant', 'Increasing Savagery', 'Oketra''s Attendant', 'Horseshoe Crab', 'Phthisis', 'Merrow Bonegnawer', 'Queen''s Commission', 'Serra Advocate', 'Wandering Goblins', 'Bloodrage Vampire', 'Heartmender', 'Yavimaya Enchantress', 'Bloodgift Demon', 'Unburden', 'Spearpoint Oread', 'Halt Order', 'Dancing Scimitar', 'Nature''s Blessing', 'Kalastria Nightwatch', 'Sudden Reclamation', 'Luminate Primordial', 'Aetherstorm Roc', 'Bramblewood Paragon', 'Threaten', 'Harmless Assault', 'Just Fate', 'Containment Membrane', 'Shivan Oasis', 'Wind Shear', 'Thalakos Mistfolk', 'Abstruse Interference', 'Tangle Spider', 'Rogue''s Passage', 'Sturmgeist', 'Dawn Gryff', 'Diminish', 'Vanquish the Foul', 'Hinterland Drake', 'Gruul Cluestone', 'Glarecaster', 'Sigil of the Nayan Gods', 'Keldon Warlord', 'Sandsower', 'Horned Helm', 'Leaf Arrow', 'Genesis', 'Ogre Gatecrasher', 'Vampire''s Zeal', 'Duskmantle Guildmage', 'Cackling Counterpart', 'Gnarlwood Dryad', 'Yuki-Onna', 'Sarpadian Empires, Vol. VII', 'Excise', 'Dripping Dead', 'Quest for the Nihil Stone', 'Renegade Demon', 'Decimator Web', 'Leafcrown Dryad', 'Cultivator Drone', 'Efreet Weaponmaster', 'Underhanded Designs', 'Emissary of the Sleepless', 'Vessel of Volatility', 'Press for Answers', 'Memory''s Journey', 'Eager Cadet', 'Orochi Leafcaller', 'Claws of Gix', 'Mageta''s Boon', 'Cho-Manno, Revolutionary', 'Jagged-Scar Archers', 'Meteorite', 'Sudden Disappearance', 'Rampaging Hippo', 'Consuming Sinkhole', 'Soulblast', 'Into the Core', 'Abzan Banner', 'Wingrattle Scarecrow', 'Fallen Ideal', 'Spike Colony', 'Altar''s Reap', 'Domesticated Hydra', 'Honden of Night''s Reach', 'Sway of Illusion', 'Skillful Lunge', 'Stormrider Spirit', 'Bellowing Saddlebrute', 'Steadfast Cathar', 'Touch of Moonglove', 'Crumbling Vestige', 'Fated Retribution', 'Sachi, Daughter of Seshiro', 'Mystic Penitent', 'Squirming Mass', 'Cryptolith Fragment', 'Endemic Plague', 'Etched Oracle', 'Mammoth Umbra', 'Wild Wurm', 'Hymn of Rebirth', 'Dawn''s Reflection', 'Flamekin Brawler', 'Necrogen Mists', 'Adarkar Valkyrie', 'Tyrant''s Machine', 'Fiery Bombardment', 'Mystic of the Hidden Way', 'Diabolic Tutor', 'Mardu Charm', 'Spinal Graft', 'Spire Barrage', 'Illusory Gains', 'Saltblast', 'Perimeter Captain', 'Angelic Curator', 'Elvish Aberration', 'Keeneye Aven', 'Sandbar Merfolk', 'Razia''s Purification', 'Blood Funnel', 'Goblin Shrine', 'Impulsive Maneuvers', 'Dwarven Soldier', 'Spiteful Shadows', 'Pathmaker Initiate', 'Joyous Respite', 'Kheru Bloodsucker', 'Tranquil Path', 'Silver Drake', 'Supply Caravan', 'Appeal // Authority', 'Viridian Lorebearers', 'Lightning Runner', 'Explosive Growth', 'Index', 'Mindlash Sliver', 'Harrowing Journey', 'Rhox Maulers', 'Ashen Ghoul', 'Flowstone Slide', 'Maritime Guard', 'Alpine Grizzly', 'Wall of Wood', 'Netcaster Spider', 'Power Sink', 'Mirko Vosk, Mind Drinker', 'Fire at Will', 'Lathnu Hellion', 'Emblem of the Warmind', 'Krovikan Vampire', 'Shyft', 'Kitesail Apprentice', 'Cosi''s Trickster', 'Scare Tactics', 'Dinosaur Stampede', 'Sigil of the New Dawn', 'Trial of Zeal', 'Soldevi Simulacrum', 'Fangren Firstborn', 'Autochthon Wurm', 'Glacial Wall', 'Ashcoat Bear', 'Shattered Perception', 'Civic Saber', 'Selesnya Guildmage', 'Balduvian Conjurer', 'Aether Spellbomb', 'Cloud Dragon', 'Rage Weaver', 'Structural Collapse', 'Primal Visitation', 'Genju of the Realm', 'Augur il-Vec', 'Midnight Haunting', 'Fleetfeather Sandals', 'River Serpent', 'Vanish into Memory', 'Joiner Adept', 'Disciple of the Old Ways', 'Ghosts of the Damned', 'Alaborn Musketeer', 'Knucklebone Witch', 'Solar Tide', 'Voice of Truth', 'Stalking Tiger', 'Tangle Asp', 'Child of Thorns', 'Devastating Summons', 'Angel of Renewal', 'Exploding Borders', 'Moriok Replica', 'Convolute', 'Ampryn Tactician', 'Pay No Heed', 'Stun', 'Riverfall Mimic', 'Sol Grail', 'Chimney Imp', 'Cudgel Troll', 'Jagged Poppet', 'Kragma Warcaller', 'Boon of Emrakul', 'Dingus Staff', 'Peak Eruption', 'Tide of War', 'Stitched Mangler', 'Promise of Power', 'Kjeldoran Javelineer', 'Breeding Pit', 'Heat Wave', 'Healer''s Headdress', 'Slab Hammer', 'Shatterskull Giant', 'Kukemssa Serpent', 'Fell Flagship', 'Samite Blessing', 'Callow Jushi', 'Aether Theorist', 'Illusion // Reality', 'Hot Soup', 'Phyrexian Totem', 'Mark of Sakiko', 'Consuming Vortex', 'Lightning Javelin', 'Rabid Bite', 'Twinflame', 'Tangle Golem', 'Orochi Ranger', 'Spreading Rot', 'Rhox Bodyguard', 'Mortal Combat', 'Weaver of Lightning', 'Cackling Fiend', 'Abyssal Specter', 'Grinning Demon', 'Selesnya Signet', 'Kjeldoran Frostbeast', 'Angelic Shield', 'War-Wing Siren', 'Hivestone', 'Belligerent Whiptail', 'Shimmering Grotto', 'Elusive Tormentor', 'Stalking Drone', 'Molder', 'Goblin Razerunners', 'Sage-Eye Harrier', 'Merfolk Thaumaturgist', 'Drag Down', 'Blightspeaker', 'Pirate Ship', 'Bloodstoke Howler', 'Ramses Overdark', 'Lunar Force', 'Silumgar Sorcerer', 'Voice of Grace', 'Shield of the Righteous', 'Marshal''s Anthem', 'Screeching Bat', 'Armorcraft Judge', 'Blessing of the Nephilim', 'Sea Serpent', 'Seasoned Marshal', 'Igneous Golem', 'Granitic Titan', 'Winnower Patrol', 'Spur Grappler', 'Nantuko Blightcutter', 'Hierophant''s Chalice', 'Ruin Processor', 'Golgari Longlegs', 'Ether Well', 'Oracle''s Vault', 'Pilgrim''s Eye', 'Survivor of the Unseen', 'Esper Sojourners', 'Palisade Giant', 'Abzan Beastmaster', 'Hound of Griselbrand', 'Restoration Gearsmith', 'Rebuking Ceremony', 'Void Attendant', 'Rescind', 'Jorubai Murk Lurker', 'Tel-Jilad Defiance', 'Taigam''s Strike', 'Borrowing 100,000 Arrows', 'Liliana''s Elite', 'Bottle Gnomes', 'Noose Constrictor', 'Vicious Betrayal', 'Relief Captain', 'Stormscape Familiar', 'Aether Herder', 'Magus of the Mirror', 'Aquamoeba', 'Glimmerdust Nap', 'Shieldmage Elder', 'Elvish Eulogist', 'Gaea''s Blessing', 'Dutiful Return', 'Crude Rampart', 'Take Down', 'Shrouded Serpent', 'Warped Physique', 'Invocation of Saint Traft', 'Desert of the Glorified', 'Alpha Myr', 'Glimmerpoint Stag', 'Thallid Germinator', 'Transguild Promenade', 'Mortis Dogs', 'Ultimate Price', 'Devoted Crop-Mate', 'Deep-Sea Terror', 'Hungry Flames', 'Gate to the Aether', 'Zombie Cannibal', 'Tenacious Hunter', 'Terra Eternal', 'Ulamog''s Nullifier', 'Essence Flux', 'Jace''s Scrutiny', 'Dark Heart of the Wood', 'Pharika''s Mender', 'Braidwood Sextant', 'Taunting Elf', 'Unworthy Dead', 'Gravepurge', 'Heartwood Dryad', 'Slagwurm Armor', 'Shadowblood Egg', 'Exile', 'Order of the Sacred Bell', 'Furnace Scamp', 'Bronzebeak Moa', 'Matca Rioters', 'Tangleclaw Werewolf', 'Opulent Palace', 'Gone Missing', 'Undercity Informer', 'Yew Spirit', 'Catacomb Sifter', 'Nantuko Shaman', 'Sanity Gnawers', 'Jagwasp Swarm', 'Mindswipe', 'Aetherize', 'Painful Lesson', 'Renewed Faith', 'Throwing Knife', 'Wing Snare', 'Experimental Aviator', 'Primal Cocoon', 'Pharika''s Disciple', 'Young Wei Recruits', 'Mistcutter Hydra', 'Caught in the Brights', 'Hulking Devil', 'Word of Seizing', 'Dead Reveler', 'Sootwalkers', 'Inflame', 'Morbid Bloom', 'Consecrated by Blood', 'Rock Hydra', 'Dragon-Style Twins', 'Lost in a Labyrinth', 'Centaur''s Herald', 'Cliffside Lookout', 'Reclaiming Vines', 'Anointer of Champions', 'Mighty Emergence', 'Vampire Nighthawk', 'Kjeldoran Skycaptain', 'Irradiate', 'Wasteland Viper', 'Rottenheart Ghoul', 'Orcish Farmer', 'Lorescale Coatl', 'Spellwild Ouphe', 'Flash Flood', 'Fledgling Griffin', 'Magefire Wings', 'Merrow Grimeblotter', 'Efficient Construction', 'Burning Sun''s Avatar', 'Marsh Hulk', 'Genju of the Falls', 'Puppeteer Clique', 'Executioner''s Hood', 'Horncaller''s Chant', 'Renegade Freighter', 'Disdainful Stroke', 'Odious Trow', 'Mob Mentality', 'Saving Grace', 'Gabriel Angelfire', 'Seacoast Drake', 'Loam Larva', 'Darkling Stalker', 'Slag Fiend', 'Backwoods Survivalists', 'Aether Chaser', 'Guttersnipe', 'Sunbond', 'Radiant Essence', 'Ageless Entity', 'Advent of the Wurm', 'Crypt Champion', 'Blowfly Infestation', 'Daring Demolition', 'No Rest for the Wicked', 'Pheres-Band Warchief', 'Flash Conscription', 'Ridgetop Raptor', 'Screeching Harpy', 'Killer Instinct', 'Nissa''s Expedition', 'Korozda Gorgon', 'Call to Glory', 'Emrakul''s Influence', 'Hunted Troll', 'Stonework Puma', 'Sepulchral Primordial', 'Rouse the Mob', 'Cunning Strike', 'Seal of Fire', 'Noble Vestige', 'Kindly Stranger', 'Armor Thrull', 'Swarm of Rats', 'Penumbra Kavu', 'Kami of the Palace Fields', 'Radjan Spirit', 'Dry Spell', 'Stitch in Time', 'Ghor-Clan Rampager', 'Sunspear Shikari', 'Wren''s Run Packmaster', 'Skyrider Elf', 'Waxmane Baku', 'Prying Questions', 'Argothian Pixies', 'Rathi Intimidator', 'Torpor Dust', 'Embodiment of Insight', 'Dive Down', 'Lobotomy', 'Hunter''s Prowess', 'Algae Gharial', 'Brass Herald', 'Triclopean Sight', 'Bloodcrazed Paladin', 'Bramble Elemental', 'Serpentine Kavu', 'Ulamog''s Reclaimer', 'Roil Spout', 'Cursed Scroll', 'Longbow Archer', 'Traproot Kami', 'Thornscape Battlemage', 'Obsidian Battle-Axe', 'Ashen Firebeast', 'Burst Lightning', 'Tenza, Godo''s Maul', 'Knowledge Vault', 'Grim Backwoods', 'Transgress the Mind', 'Paladin en-Vec', 'Barrin''s Codex', 'Planar Gate', 'Dance of the Skywise', 'Plagued Rusalka', 'Whiplash Trap', 'Creeping Renaissance', 'Firecannon Blast', 'Shrill Howler', 'Ghor-Clan Bloodscale', 'Sunhome, Fortress of the Legion', 'Hythonia the Cruel', 'Keeper of the Mind', 'Orcish Mechanics', 'Silvos, Rogue Elemental', 'Necropolis Fiend', 'Caress of Phyrexia', 'Alpha Brawl', 'Slitherhead', 'Atzocan Archer', 'Axelrod Gunnarson', 'Suq''Ata Lancer', 'Judge of Currents', 'Crown of Vigor', 'Arachnoid', 'Cowardice', 'Firestorm Phoenix', 'Peregrine Griffin', 'Leatherback Baloth', 'Dauthi Mercenary', 'Hit // Run', 'Bone to Ash', 'Emrakul''s Evangel', 'Riptide Crab', 'Armored Skaab', 'Built to Smash', 'Cessation', 'Catacomb Slug', 'Pianna, Nomad Captain', 'Jackalope Herd', 'Entangling Trap', 'Wandering Ones', 'Ghostflame Sliver', 'Scuzzback Scrapper', 'Righteous Aura', 'Shirei, Shizo''s Caretaker', 'Auramancer''s Guise', 'Punish the Enemy', 'Elfhame Sanctuary', 'Sanguimancy', 'Goblin Striker', 'Prakhata Pillar-Bug', 'Jeering Instigator', 'Annihilate', 'Echoing Ruin', 'Kamahl, Pit Fighter', 'Angel of Deliverance', 'Into the Maw of Hell', 'Fire Shrine Keeper', 'Field of Souls', 'Horde of Boggarts', 'Herald of Serra', 'Mindwarper', 'Appetite for the Unnatural', 'Svogthos, the Restless Tomb', 'Frantic Salvage', 'Deeproot Warrior', 'Metallic Mastery', 'Chainbreaker', 'Triton Tactics', 'Pith Driller', 'Jetting Glasskite', 'Animate Wall', 'Kheru Lich Lord', 'Akroan Jailer', 'Midsummer Revel', 'Sever the Bloodline', 'Smite the Monstrous', 'Flame Fusillade', 'Fanatic of Xenagos', 'Decimator Beetle', 'Divebomber Griffin', 'Thresher Lizard', 'Benalish Veteran', 'Agadeem Occultist', 'Merfolk Wayfinder', 'Veiled Crocodile', 'Glorifier of Dusk', 'Haazda Shield Mate', 'Goblin Snowman', 'Solfatara', 'Aura Fracture', 'Tranquil Expanse', 'Sizzle', 'Hopping Automaton', 'Dearly Departed', 'Hordeling Outburst', 'Throne of the God-Pharaoh', 'Thran Turbine', 'Penumbra Wurm', 'Black Poplar Shaman', 'Plaguemaw Beast', 'Mercurial Geists', 'Obelisk of Naya', 'Crossbow Infantry', 'Painful Quandary', 'Sengir Autocrat', 'Argothian Treefolk', 'Hunter of Eyeblights', 'Ordeal of Nylea', 'Janjeet Sentry', 'Ridgescale Tusker', 'Sphinx of Jwar Isle', 'Silent Skimmer', 'Irresistible Prey', 'Call of the Nightwing', 'Cathodion', 'Caterwauling Boggart', 'Facevaulter', 'Akroan Phalanx', 'Minions'' Murmurs', 'Blind Zealot', 'Fungus Sliver', 'Woodcloaker', 'Leyline of Lightning', 'Sunspire Griffin', 'Heavy Fog', 'Augury Adept', 'Hunted Lammasu', 'Ancestral Vengeance', 'Takeno, Samurai General', 'Mana Cylix', 'Harvestguard Alseids', 'Legacy''s Allure', 'Blanchwood Treefolk', 'Revered Elder', 'Cunning Sparkmage', 'Miraculous Recovery', 'Tattermunge Duo', 'Essence Drain', 'Martial Glory', 'Pouncing Wurm', 'Mage il-Vec', 'Tivadar''s Crusade', 'Virulent Wound', 'Custodi Soulbinders', 'Mending Touch', 'Hungry Spriggan', 'Kitsune Riftwalker', 'Arctic Nishoba', 'Daring Apprentice', 'Grim Roustabout', 'Isao, Enlightened Bushi', 'Composite Golem', 'Spiteful Blow', 'Battle Squadron', 'Hands of Binding', 'Masumaro, First to Live', 'Saddleback Lagac', 'Forerunner of the Legion', 'Soul of the Rapids', 'Needletooth Raptor', 'Knight of the Stampede', 'Sanguine Glorifier', 'Frilled Deathspitter', 'Jungle Creeper', 'Fathom Fleet Boarder', 'Dark Inquiry', 'Giltgrove Stalker', 'Swift Warden', 'Champion of Dusk', 'Forerunner of the Coalition', 'Crashing Tide', 'Famished Paladin', 'Spire Winder', 'Protean Raider', 'Release to the Wind', 'World Shaper', 'Dire Fleet Neckbreaker', 'Etali, Primal Storm', 'Secrets of the Golden City', 'Zetalpa, Primal Dawn', 'Grasping Scoundrel', 'Forerunner of the Empire', 'Cherished Hatchling', 'Slippery Scoundrel', 'Vampire Champion', 'Gruesome Fate', 'Strength of the Pack', 'Jade Bearer', 'Raging Regisaur', 'Sun-Crested Pterodon', 'Goblin Trailblazer', 'Orazca Relic', 'Crested Herdcaller', 'Mist-Cloaked Herald', 'Storm Fleet Sprinter', 'Hardy Veteran', 'Jungleborn Pioneer', 'Tomb Robber', 'Pirate''s Pillage', 'Waterknot', 'Sphinx''s Decree', 'Orazca Frillback', 'Cacophodon', 'Hornswoggle', 'Bishop of Binding', 'Majestic Heliopterus', 'Forerunner of the Heralds', 'Canal Monitor', 'Blazing Hope', 'Luminous Bonds', 'Exultant Skymarcher', 'Charging Tuskodon', 'Kumena''s Awakening', 'Resplendent Griffin', 'Relentless Raptor', 'Golden Guardian', 'Shake the Foundations', 'Voracious Vampire', 'Form of the Dinosaur', 'River Darter', 'Dead Man''s Chest', 'Swab Goblin', 'Dusk Charger', 'Swaggering Corsair', 'Brazen Freebooter', 'Buccaneer''s Bravado', 'Jadecraft Artisan', 'Reckless Rage', 'Deadeye Rig-Hauler', 'Aquatic Incursion', 'Orazca Raptor', 'Fanatical Firebrand', 'Reaver Ambush', 'Oathsworn Vampire', 'Tilonalli''s Crown', 'Induced Amnesia', 'Snubhorn Sentry', 'Overgrown Armasaur', 'Brass''s Bounty', 'Flood of Recollection', 'See Red', 'Cleansing Ray', 'Deadeye Brawler', 'Gleaming Barrier', 'Stampeding Horncrest', 'Bombard', 'Pitiless Plunderer', 'Moment of Triumph', 'Impale', 'Aggressive Urge', 'Kitesail Corsair', 'Sworn Guardian', 'Daring Buccaneer', 'Storm Fleet Swashbuckler', 'Mutiny', 'Riverwise Augur', 'Evolving Wilds', 'Sea Legs', 'Martyr of Dusk', 'Captain''s Hook', 'Enter the Unknown', 'Vampire Revenant', 'Expel from Orazca', 'Mausoleum Harpy', 'Siren Reaver', 'Imperial Ceratops', 'Sun Sentinel', 'Everdawn Champion', 'Legion Lieutenant', 'Sadistic Skymarcher', 'Squire''s Devotion', 'Silverclad Ferocidons', 'Pride of Conquerors', 'Awakened Amalgam', 'Atzocan Seer', 'Arterial Flow', 'Sun-Collared Raptor', 'Dinosaur Hunter', 'Crafty Cutpurse', 'Temple Altisaur')
with[]because of(1213, 'Deadlock found when trying to get lock; try restarting transaction')`

Reported on decksite by logged_out
Request Method: GET
Path: /about/pd/?
Cookies: {'__cfduid': 'd2a721f2163bc383f9bb2215b59a6a05c1518746337', '_ga': 'GA1.2.340083715.1518746342', '_gid': 'GA1.2.446666163.1518746342', '_gat_gtag_UA_109131120_1': '1'}
Endpoint: about
View Args: {}
Person: logged_out
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36
Referrer: https://pennydreadfulmagic.com/about/pd/?src=gp
Request Data: {}
DatabaseException
Stack Trace:
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1997, in call
return self.wsgi_app(environ, start_response)
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1985, in wsgi_app
response = self.handle_exception(e)
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/discord/.local/lib/python3.6/site-packages/flask/_compat.py", line 33, in reraise
raise value
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1598, in dispatch_request
return self.view_functionsrule.endpoint
File "./decksite/cache.py", line 66, in decorated_function
response = make_response(f(*args, **kwargs))
File "./decksite/main.py", line 172, in about
view = About(request.args.get('src'))
File "./decksite/views/about.py", line 15, in init
self.cards = exciting_cards()
File "./decksite/views/about.py", line 22, in exciting_cards
cards = fancy_cards()
File "./decksite/views/about.py", line 60, in fancy_cards
]), 'Penny Dreadful')
File "./magic/legality.py", line 56, in cards_legal_in_format
init()
File "./magic/legality.py", line 86, in init
assert len(oracle.legal_cards()) > 0
File "./magic/oracle.py", line 81, in legal_cards
new_list = multiverse.set_legal_cards(force)
File "./magic/multiverse.py", line 328, in set_legal_cards
db().execute(sql)
File "./shared/database_mysql.py", line 57, in execute
raise DatabaseException('Failed to execute {sql} with {args} because of {e}'.format(sql=sql, args=args, e=e))
bakert commented 6 years ago

/about/pd continues to suffer dealing with legality, which it should not be touching?

Failed to execute INSERT INTO card_legality (format_id, card_id, legality) SELECT 34, bq.id, 'Legal' FROM ( SELECTu.idASid,u.layoutASlayout,u.idAS face_id, CASE WHEN layout = 'double-faced' OR layout = 'flip' THEN GROUP_CONCAT(CASE WHENu.position = 1 THEN face_name ELSE '' END SEPARATOR '') WHEN layout = 'meld' THEN GROUP_CONCAT(CASE WHENu.position = 1 ORu.position = 2 THEN face_name ELSE '' END SEPARATOR '') ELSE GROUP_CONCAT(face_name SEPARATOR ' // ' ) END AS name, GROUP_CONCAT(u.mana_costSEPARATOR '|') ASmana_cost, CASE WHEN layout = 'split' OR layout = 'aftermath' THEN SUM(u.cmc) WHEN layout = 'meld' THEN SUM(CASE WHENu.position = 1 ORu.position = 2 THEN cmc ELSE 0 END) ELSE SUM(CASE WHENu.position = 1 THENu.cmc ELSE 0 END) END AS cmc, GROUP_CONCAT(CASE WHENu.position = 1 THENu.powerELSE '' END SEPARATOR '') ASpower, GROUP_CONCAT(CASE WHENu.position = 1 THENu.toughnessELSE '' END SEPARATOR '') AStoughness, GROUP_CONCAT(CASE WHENu.position = 1 THENu.loyaltyELSE '' END SEPARATOR '') ASloyalty, CASE WHEN layout = 'meld' THEN GROUP_CONCAT(CASE WHENu.position = 1 ORu.position = 2 THEN type ELSE '' END SEPARATOR '') ELSE GROUP_CONCAT(CASE WHENu.position = 1 THEN type ELSE '' END SEPARATOR '') END AS type, GROUP_CONCAT(u.text` SEPARATOR '
') AS text, GROUP_CONCAT(u.search_text SEPARATOR '
') AS search_text, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.image_name ELSE '' END SEPARATOR '') AS image_name, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.hand ELSE '' END SEPARATOR '') AS hand, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.life ELSE '' END SEPARATOR '') AS life, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.starter ELSE '' END SEPARATOR '') AS starter, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.position ELSE '' END SEPARATOR '') AS position,
CASE
WHEN layout = 'double-faced' OR layout = 'flip' THEN
GROUP_CONCAT(CASE WHEN u.position = 1 THEN name_ascii ELSE '' END SEPARATOR '')
WHEN layout = 'meld' THEN
GROUP_CONCAT(CASE WHEN u.position = 1 OR u.position = 2 THEN name_ascii ELSE '' END SEPARATOR '')
ELSE
GROUP_CONCAT(name_ascii SEPARATOR ' // ' )
END
AS name_ascii, GROUP_CONCAT(CASE WHEN u.position = 1 THEN u.card_id ELSE '' END SEPARATOR '') AS card_id,
GROUP_CONCAT(face_name SEPARATOR '|') AS names,
legalities,
pd_legal,
bugs
FROM (
SELECT c.id, c.layout, f.mana_cost, f.cmc, f.power, f.toughness, f.loyalty, f.type, f.text, f.search_text, f.image_name, f.hand, f.life, f.starter, f.position, f.name_ascii, f.card_id, f.name AS face_name,
pd_legal,
legalities
FROM
card AS c
INNER JOIN
face AS f ON c.id = f.card_id
LEFT JOIN (
SELECT
cl.card_id,
SUM(CASE WHEN cl.format_id = 34 THEN 1 ELSE 0 END) > 0 AS pd_legal,
GROUP_CONCAT(CONCAT(fo.name, ':', cl.legality)) AS legalities
FROM
card_legality AS cl
LEFT JOIN
format AS fo ON cl.format_id = fo.id
GROUP BY
cl.card_id
) AS cl ON cl.card_id = c.id
GROUP BY
f.id
ORDER BY
f.card_id, f.position
) AS u
LEFT JOIN (
SELECT
cb.card_id,
GROUP_CONCAT(CONCAT(cb.description, '|', cb.classification, '|', cb.last_confirmed, '|', cb.url, '|', cb.from_bug_blog) SEPARATOR 'SEPARATOR') AS bugs
FROM
card_bug AS cb
GROUP BY
cb.card_id
) AS bugs ON u.id = bugs.card_id
WHERE u.id IN (SELECT c.id FROM card AS c INNER JOIN face AS f ON c.id = f.card_id WHERE (1 = 1))
GROUP BY u.id
) AS bq
WHERE name IN ('Nemesis Trap', 'Skirk Prospector', 'Airborne Aid', 'Runaway Carriage', 'Woolly Spider', 'Zarichi Tiger', 'Skittering Invasion', 'Paragon of Fierce Defiance', 'Flayed Nim', 'Foot Soldiers', 'Dragonsoul Knight', 'Springsage Ritual', 'Temur Ascendancy', 'Fresh Volunteers', 'Heirs of Stromkirk', 'Hunting Kavu', 'Hearthcage Giant', 'Sigil of Distinction', 'Alley Evasion', 'Hypnotic Siren', 'Briarpack Alpha', 'Clone Shell', 'Lightning Elemental', 'Pulsating Illusion', 'Gleam of Battle', 'Conclave''s Blessing', 'Ulcerate', 'Bull Rush', 'Stensia Innkeeper', 'Dwarven Ruins', 'Bronze Sable', 'Sangrophage', 'Valleymaker', 'Sleeper Agent', 'Angelic Protector', 'Obscuring Aether', 'Gaea''s Revenge', 'Chimeric Coils', 'Brothers of Fire', 'Misguided Rage', 'Demonfire', 'Gravebind', 'Carnifex Demon', 'Scab-Clan Mauler', 'Circu, Dimir Lobotomist', 'Riot Control', 'Goblin Fireslinger', 'Radiant''s Dragoons', 'Mistform Ultimus', 'Lightning Cloud', 'Moonring Island', 'Wine of Blood and Iron', 'Frost Lynx', 'Herald of the Host', 'Illusionary Forces', 'Séance', 'Psychotic Episode', 'Cliffrunner Behemoth', 'Korozda Monitor', 'Watcher of the Roost', 'Emmara Tandris', 'Frontline Medic', 'Lay Waste', 'Coax from the Blind Eternities', 'Magus of the Arena', 'Gemhide Sliver', 'Battleground Geist', 'Dispeller''s Capsule', 'Eyeblight''s Ending', 'Treasure Keeper', 'Nature''s Ruin', 'Dunerider Outlaw', 'Reduce in Stature', 'Bone Harvest', 'Amoeboid Changeling', 'Ordeal of Erebos', 'Charnelhoard Wurm', 'Blood Celebrant', 'Metal Fatigue', 'Iona''s Judgment', 'Sylvan Basilisk', 'Flurry of Wings', 'Eater of Hope', 'Shinen of Life''s Roar', 'Forge Devil', 'Chlorophant', 'Seismic Strike', 'Angel of Flight Alabaster', 'Thunderous Wrath', 'Corrosive Mentor', 'Endless Ranks of the Dead', 'Keepsake Gorgon', 'Hired Torturer', 'Speedway Fanatic', 'Cowed by Wisdom', 'Seeker of Insight', 'Orzhov Euthanist', 'Nim Devourer', 'Brink of Disaster', 'Djeru, With Eyes Open', 'Beacon Hawk', 'Frontline Devastator', 'Skarrgan Skybreaker', 'Shu General', 'Rhonas''s Stalwart', 'Crawling Sensation', 'Hyalopterous Lemure', 'Sisay''s Ring', 'Chasm Guide', 'Urbis Protector', 'Thirst', 'Grappling Hook', 'Spectral Flight', 'Exava, Rakdos Blood Witch', 'Firefiend Elemental', 'Hunted Wumpus', 'Mana Leech', 'Utvara Scalper', 'Masked Gorgon', 'Spikeshot Goblin', 'Merfolk Looter', 'Colos Yearling', 'Voice of Reason', 'Armored Transport', 'Flamekin Bladewhirl', 'Krark-Clan Ogre', 'Bog Wraith', 'Bitter Revelation', 'Hell-Bent Raider', 'Gatecreeper Vine', 'Mudhole', 'Arctic Aven', 'War Priest of Thune', 'Infiltration Lens', 'Hisoka''s Guard', 'Dread Slaver', 'Kulrath Knight', 'Mishra''s Groundbreaker', 'Artisan of Forms', 'Peregrine Mask', 'Ruthless Disposal', 'Eyes of the Watcher', 'Dead Drop', 'Glissa''s Courier', 'Frostburn Weird', 'Tangle Mantis', 'Nyxborn Shieldmate', 'Victory''s Herald', 'Pyrrhic Revival', 'Infuse', 'Melira''s Keepers', 'Bogbrew Witch', 'Mortuary', 'Dwynen, Gilt-Leaf Daen', 'Veilborn Ghoul', 'Banshee', 'Aetherborn Marauder', 'Calculated Dismissal', 'Embalmer''s Tools', 'Vile Requiem', 'Sluggishness', 'Gustrider Exuberant', 'Falkenrath Exterminator', 'Cultist''s Staff', 'Stealer of Secrets', 'Rushwood Herbalist', 'Skyshroud Archer', 'Reap the Seagraf', 'Balshan Beguiler', 'Magosi, the Waterveil', 'Dying Wail', 'Unconventional Tactics', 'Dragonlord''s Prerogative', 'Volcanic Upheaval', 'Oakheart Dryads', 'Mortuary Mire', 'Erdwal Illuminator', 'Alchor''s Tomb', 'Rootwalla', 'Phobian Phantasm', 'Pyromancer''s Assault', 'Daru Stinger', 'Cankerous Thirst', 'Orcish Artillery', 'Cryptic Serpent', 'Skyclaw Thrash', 'Zealous Guardian', 'Falkenrath Reaver', 'Kozilek''s Sentinel', 'Valakut Invoker', 'Axegrinder Giant', 'Pious Warrior', 'Wiitigo', 'Unnerving Assault', 'Howlgeist', 'Stag Beetle', 'Force of Savagery', 'Jinxed Idol', 'Convulsing Licid', 'Sphinx of Lost Truths', 'Rain of Rust', 'Blanchwood Armor', 'Scourge Wolf', 'Throne of Empires', 'Azure Mage', 'Slither Blade', 'Razor Swine', 'Leechridden Swamp', 'Blaze Commando', 'Hazardous Conditions', 'Mwonvuli Beast Tracker', 'Brass Gnat', 'Kederekt Parasite', 'Scroll of Griselbrand', 'Gustcloak Sentinel', 'Savage Twister', 'Krosan Groundshaker', 'Oracle of Bones', 'Signal the Clans', 'Awaken the Bear', 'Halfdane', 'Strongarm Tactics', 'Craw Giant', 'Sunken Hope', 'Djeru''s Resolve', 'Putrefax', 'Bond of Agony', 'Elf Replica', 'Flowstone Overseer', 'Thundering Spineback', 'Phyrexian Grimoire', 'Gobhobbler Rats', 'Centaur Courser', 'Dawnbringer Charioteers', 'Belligerent Brontodon', 'Shell Skulkin', 'Fog Bank', 'Bazaar Krovod', 'Martyr''s Cry', 'Warfire Javelineer', 'Firemind''s Foresight', 'Geist of the Lonely Vigil', 'Pulling Teeth', 'Evangelize', 'Fathom Feeder', 'Hoarding Dragon', 'Tempting Licid', 'Waves of Aggression', 'Iron Myr', 'Alms Beast', 'Ulrich''s Kindred', 'Skittish Valesk', 'Sliversmith', 'Feast of Flesh', 'Rigging Runner', 'Shield of the Ages', 'Twinstrike', 'Rust Scarab', 'Beacon Behemoth', 'Alpha Authority', 'Goblin Assault', 'Llanowar Mentor', 'Dreadwaters', 'Angry Mob', 'Trusty Machete', 'Skulking Ghost', 'Wicked Pact', 'Frontier Mastodon', 'Eldrazi Obligator', 'Asphyxiate', 'Miner''s Bane', 'Branching Bolt', 'Kor Duelist', 'Treetop Bracers', 'Spectra Ward', 'Thoughtrender Lamia', 'Master the Way', 'Elemental Uprising', 'Infectious Bloodlust', 'Merfolk Mesmerist', 'Savage Stomp', 'Master Decoy', 'Aetherling', 'Goblin Raider', 'Spawnsire of Ulamog', 'Gremlin Mine', 'Prowler''s Helm', 'Universal Solvent', 'Long Road Home', 'Deadeye Harpooner', 'Gorehorn Minotaurs', 'Street Spasm', 'Mire''s Malice', 'Dawnfeather Eagle', 'Yixlid Jailer', 'Fallow Earth', 'Reverse Engineer', 'Burning Vengeance', 'Door to Nothingness', 'Thran Golem', 'Juju Bubble', 'Blood Frenzy', 'Ebony Treefolk', 'Galvanic Alchemist', 'Artisan''s Sorrow', 'Macetail Hystrodon', 'Sokenzan Renegade', 'Canyon Wildcat', 'Giant Spider', 'Mistblade Shinobi', 'Weaver of Currents', 'Traitor''s Roar', 'Arrogant Bloodlord', 'Falling Timber', 'Phyrexian Hulk', 'Weathered Bodyguards', 'Birthing Hulk', 'Icatian Lieutenant', 'Certain Death', 'Aether Snap', 'Ovinize', 'Goblin Digging Team', 'Illuminate', 'Totem-Guide Hartebeest', 'Keldon Berserker', 'Razorfoot Griffin', 'Troll Ascetic', 'Swashbuckling', 'Aspect of Mongoose', 'Discordant Dirge', 'Nef-Crop Entangler', 'Munda, Ambush Leader', 'Nessian Demolok', 'Mindmelter', 'Ghitu Firebreathing', 'Aphotic Wisps', 'Phyrexian Ingester', 'Dauthi Cutthroat', 'Long-Finned Skywhale', 'Garrulous Sycophant', 'Desolation Twin', 'Eyeblight Assassin', 'Ronom Serpent', 'Howling Wolf', 'Goblin Sky Raider', 'Cetavolver', 'Akroan Line Breaker', 'Forsaken Sanctuary', 'Gideon''s Lawkeeper', 'Aeronaut Admiral', 'Outnumber', 'Damping Engine', 'Elvish Pathcutter', 'Soul Shred', 'Captain''s Claws', 'Chub Toad', 'Wakestone Gargoyle', 'Scion of Ugin', 'Dromosaur', 'Turn the Tables', 'Manglehorn', 'Defensive Maneuvers', 'Timbermare', 'Suffer the Past', 'Disaster Radius', 'Blood Ogre', 'Cloistered Youth', 'Power of Fire', 'Trace of Abundance', 'Sunhome Enforcer', 'Highspire Infusion', 'Autumnal Gloom', 'Archmage Ascension', 'By Force', 'Sedraxis Alchemist', 'Primeval Light', 'Fathom Fleet Cutthroat', 'Kavu Aggressor', 'Snake Cult Initiation', 'Segmented Krotiq', 'Ramroller', 'Stonecloaker', 'Noxious Dragon', 'Hellraiser Goblin', 'Axebane Guardian', 'Undercity Plague', 'Evangel of Heliod', 'Pride Guardian', 'Bitterblade Warrior', 'Diabolic Revelation', 'Petradon', 'Flame-Kin War Scout', 'Seek the Wilds', 'Banshee of the Dread Choir', 'Hidden Horror', 'Vulshok Battlemaster', 'Putrid Cyclops', 'Coral Helm', 'Killer Bees', 'Chandra''s Revolution', 'Frost Walker', 'Guardian of Tazeem', 'Zulaport Enforcer', 'Flesh-Eater Imp', 'Indulgent Tormentor', 'Press into Service', 'Bringer of the Green Dawn', 'Air Elemental', 'Farbog Revenant', 'Mundungu', 'Phyrexian Prowler', 'Willow Priestess', 'Enraging Licid', 'Plains', 'Forge Armor', 'Daxos of Meletis', 'Drifting Shade', 'Near-Death Experience', 'Sentinel Totem', 'Broodstar', 'Stonebrow, Krosan Hero', 'Ignite Disorder', 'Outrage Shaman', 'Joraga Auxiliary', 'Electrostatic Bolt', 'Stormchaser Chimera', 'Corpse Traders', 'Undying Rage', 'Rubblehulk', 'Savage Knuckleblade', 'Devils'' Playground', 'Tooth and Claw', 'Feral Animist', 'Ulvenwald Observer', 'Waterfront Bouncer', 'Driven // Despair', 'Tangle Hulk', 'Rorix Bladewing', 'Mountain', 'Quicksand', 'Thumbscrews', 'Fated Conflagration', 'Winged Sliver', 'Guardian of Vitu-Ghazi', 'Swell of Courage', 'Imps'' Taunt', 'Desperate Ravings', 'Gilded Cerodon', 'Gilt-Leaf Seer', 'Teroh''s Faithful', 'Cemetery Puca', 'Dusk Imp', 'Ainok Artillerist', 'Dutiful Servants', 'Surging Might', 'Guan Yu''s 1,000-Li March', 'Sidisi''s Pet', 'Goliath Beetle', 'Vizkopa Confessor', 'Looming Altisaur', 'Iceberg', 'Selesnya Charm', 'Hag Hedge-Mage', 'Geistblast', 'Strange Augmentation', 'Razia, Boros Archangel', 'Telim''Tor''s Darts', 'Mindscour Dragon', 'Viashino Fangtail', 'Resourceful Return', 'Mistmeadow Skulk', 'Denizen of the Deep', 'Flametongue Kavu', 'Mind Control', 'Hillcomber Giant', 'Wander in Death', 'Chasm Drake', 'Slate Street Ruffian', 'Dream Prowler', 'Wildsize', 'Mind Bend', 'Cabal Patriarch', 'Countless Gears Renegade', 'Leave No Trace', 'Shivan Hellkite', 'Crocanura', 'Vedalken Plotter', 'Loamdragger Giant', 'Implement of Ferocity', 'Skull Catapult', 'Jwar Isle Avenger', 'Oppressive Rays', 'Clockwork Beetle', 'Domineer', 'Instill Furor', 'Spontaneous Mutation', 'Savage Surge', 'Predatory Nightstalker', 'One-Eyed Scarecrow', 'Mistform Stalker', 'Skywise Teachings', 'Kabuto Moth', 'Dragon-Scarred Bear', 'Wolfkin Bond', 'Hedron Crawler', 'Theft of Dreams', 'Nearheath Chaplain', 'Mina and Denn, Wildborn', 'Firefist Striker', 'Spirit Away', 'Depala, Pilot Exemplar', 'Molting Snakeskin', 'Highborn Ghoul', 'Graverobber Spider', 'Desperate Stand', 'Sword Dancer', 'Gang of Elk', 'Vineweft', 'Nameless One', 'Inspired Sprite', 'Hidden Stag', 'Serum Tank', 'Warden of Geometries', 'Icatian Phalanx', 'Shipwreck Moray', 'Luxa River Shrine', 'Brigid, Hero of Kinsbaile', 'Stolen Goods', 'Barkhide Mauler', 'Mask of Riddles', 'Geist of the Archives', 'Giant Oyster', 'Touch of the Eternal', 'Sewer Rats', 'Essence Depleter', 'Spawning Bed', 'Titan''s Revenge', 'Words of War', 'Skirk Ridge Exhumer', 'Nissa''s Judgment', 'Crossbow Ambush', 'Konda''s Hatamoto', 'Faith Healer', 'Fomori Nomad', 'Reave Soul', 'Dichotomancy', 'Watchful Naga', 'Crescendo of War', 'Furious Reprisal', 'Aether Mutation', 'Sol''kanar the Swamp King', 'Verdant Touch', 'Vine Snare', 'Disciple of Griselbrand', 'Avacynian Missionaries', 'Woodlurker Mimic', 'River Heralds'' Boon', 'Skyshroud Troopers', 'Ritual of Steel', 'Goliath Sphinx', 'Viridian Claw', 'Blinding Souleater', 'Sage of Ancient Lore', 'Vampire''s Bite', 'Unnatural Aggression', 'Shipwreck Looter', 'Orzhova, the Church of Deals', 'Seraph of the Masses', 'Tel-Jilad Fallen', 'Daring Skyjek', 'Scion of Glaciers', 'Razor Barrier', 'Enlisted Wurm', 'Mardu Heart-Piercer', 'Aether Tradewinds', 'Drownyard Explorers', 'Circle of Flame', 'Thundercloud Shaman', 'Morsel Theft', 'Zhur-Taa Swine', 'Caustic Tar', 'Duskborne Skymarcher', 'Necrogenesis', 'Silverchase Fox', 'Tumble Magnet', 'Flame Jab', 'Bull Cerodon', 'Deadly Insect', 'Goblin Spelunkers', 'Contagion Engine', 'Sifter Wurm', 'Immolating Glare', 'Goblin Outlander', 'Ghoultree', 'Silhana Starfletcher', 'Noxious Vapors', 'Hieroglyphic Illumination', 'Sun Clasp', 'Bishop of the Bloodstained', 'Locust Miser', 'Unbender Tine', 'Smelt-Ward Gatekeepers', 'Typhoid Rats', 'Borrowed Malevolence', 'Obsessive Search', 'Flesh Reaver', 'Jaya Ballard, Task Mage', 'Angelic Purge', 'Staunch Defenders', 'Extractor Demon', 'Reckless Fireweaver', 'Gift of Paradise', 'Hapatra, Vizier of Poisons', 'Strandwalker', 'Dragon Throne of Tarkir', 'Breaker of Armies', 'Flensermite', 'Search Warrant', 'Nature''s Way', 'Vampiric Embrace', 'Eyeblight Massacre', 'Restless Apparition', 'Paragon of the Amesha', 'Throne of Bone', 'Trestle Troll', 'Yotian Soldier', 'Riding the Dilu Horse', 'Puppet Conjurer', 'Shatter', 'Deep-Slumber Titan', 'Slayer''s Cleaver', 'Highland Weald', 'Deranged Hermit', 'Firewing Phoenix', 'Garruk''s Companion', 'Goblin Glider', 'Veilstone Amulet', 'Pack Guardian', 'Deadly Wanderings', 'Ground Assault', 'Culling Mark', 'Lifesmith', 'Burning Anger', 'Captivating Glance', 'Viper''s Kiss', 'Primal Rage', 'Tower of Eons', 'Scatter Arc', 'Bituminous Blast', 'Fierce Invocation', 'Sudden Strength', 'Spectral Searchlight', 'Scrib Nibblers', 'Kolaghan Forerunners', 'Gruul Turf', 'Tablet of Epityr', 'Ghitu War Cry', 'Rugged Highlands', 'Dark Banishing', 'Sylvan Primordial', 'Night Dealings', 'Fertile Thicket', 'Krovikan Sorcerer', 'Essence Backlash', 'The Hive', 'Coastal Discovery', 'Pulse of the Fields', 'Thirsting Axe', 'Breakneck Rider', 'Altac Bloodseeker', 'Pious Kitsune', 'Volcanic Hammer', 'Shriveling Rot', 'Old-Growth Dryads', 'Battlewand Oak', 'Bottled Cloister', 'Bloodshot Cyclops', 'Stream of Unconsciousness', 'Hellcarver Demon', 'Dementia Bat', 'Morkrut Necropod', 'Wizard Replica', 'Not Forgotten', 'Gorgon''s Head', 'Tuktuk Grunts', 'Daggerdrome Imp', 'Deviant Glee', 'Cathar''s Shield', 'Thornweald Archer', 'Fleeting Aven', 'Dauntless Cathar', 'Infantry Veteran', 'Marsh Threader', 'Mystifying Maze', 'Qarsi Sadist', 'Selkie Hedge-Mage', 'Fleshgrafter', 'Cytospawn Shambler', 'Undead Leotau', 'Spectral Shift', 'Staff of Zegon', 'Insight', 'Cystbearer', 'Geosurge', 'Salvage Scuttler', 'Shambling Shell', 'Blade-Tribe Berserkers', 'Lotus-Eye Mystics', 'Scrapper Champion', 'Burning-Tree Bloodscale', 'Felhide Minotaur', 'Soul Exchange', 'Golden Urn', 'Temporal Fissure', 'Soldier of the Pantheon', 'Gorgon Flail', 'Barrage of Boulders', 'Animal Magnetism', 'Trophy Mage', 'Weakstone', 'Drake-Skull Cameo', 'Afflict', 'Skirsdag Supplicant', 'Choking Fumes', 'Turntimber Basilisk', 'Hollowhenge Spirit', 'Nimbus Swimmer', 'Courier Griffin', 'Delaying Shield', 'Flesh Allergy', 'Gutter Skulk', 'Thrashing Mossdog', 'Grapple with the Past', 'Devour in Flames', 'Guul Draz Overseer', 'Feast of Dreams', 'Reverse Damage', 'Hold the Gates', 'Blisterpod', 'Reckless Scholar', 'Scepter of Dominance', 'Foundry Assembler', 'Phantasmal Terrain', 'Rocky Tar Pit', 'Bloated Toad', 'Narnam Cobra', 'Harsh Justice', 'Brassclaw Orcs', 'Goblin Festival', 'Endless Swarm', 'Ghoulsteed', 'Wakedancer', 'Fen Hauler', 'Gaea''s Bounty', 'Perplex', 'Infest', 'Dauntless Aven', 'Highland Berserker', 'Brazen Scourge', 'Dramatic Rescue', 'Stoic Ephemera', 'Wu Longbowman', 'Despise', 'Aetherplasm', 'Corpulent Corpse', 'Mugging', 'Keldon Marauders', 'Glorious Anthem', 'Loam Dryad', 'Sharding Sphinx', 'Silverstrike', 'Brood Keeper', 'Neglected Heirloom', 'Bloodrage Brawler', 'Minister of Impediments', 'Trap Essence', 'Hundred-Talon Strike', 'Tribute to Hunger', 'Tunneling Geopede', 'Spire Serpent', 'Moorland Haunt', 'Rubbleback Rhino', 'Dawnray Archer', 'Hulking Ogre', 'Roiling Terrain', 'Grab the Reins', 'Minion of Tevesh Szat', 'Muse Vessel', 'Eyes of the Wisent', 'Sacred Prey', 'Elvish Fury', 'Think Tank', 'Titanic Bulvox', 'Spirit en-Dal', 'Nightsnare', 'Chandra''s Pyrohelix', 'Thelonite Druid', 'Reverberate', 'Titania''s Boon', 'Emissary of Despair', 'Evil Eye of Urborg', 'Sosuke, Son of Seshiro', 'Freejam Regent', 'Dimir Cutpurse', 'Silence the Believers', 'Devouring Light', 'Spread the Sickness', 'Courier''s Capsule', 'Teneb, the Harvester', 'Run Aground', 'Plea for Power', 'Barishi', 'Maulfist Revolutionary', 'Pendelhaven Elder', 'Gore-House Chainwalker', 'Debilitating Injury', 'Kaervek''s Hex', 'Loxodon Mender', 'Ivory Guardians', 'Fungal Shambler', 'Kavu Primarch', 'Mogg Flunkies', 'Iron League Steed', 'Absolute Law', 'Ink-Treader Nephilim', 'Breach', 'Primal Whisperer', 'Urban Evolution', 'Wily Goblin', 'Destroy the Evidence', 'Pitiless Vizier', 'War-Torch Goblin', 'Quill-Slinger Boggart', 'Furor of the Bitten', 'Sage of Fables', 'Skullmead Cauldron', 'Second Guess', 'Samite Healer', 'Hidden Herbalists', 'Relentless Hunter', 'Lavaball Trap', 'Voice of the Provinces', 'Orzhov Guildgate', 'Spectral Shield', 'Shadow Slice', 'Psionic Sliver', 'Blistergrub', 'Warlord''s Axe', 'Death of a Thousand Stings', 'Gorilla Chieftain', 'Stormcrag Elemental', 'Ainok Guide', 'Beetleform Mage', 'Commander''s Authority', 'Swat', 'Kami of the Painted Road', 'Peacewalker Colossus', 'Flame Wave', 'Dreams of the Dead', 'Gelectrode', 'Void', 'Discombobulate', 'Thing from the Deep', 'Dream Cache', 'Alpha Tyrranax', 'Hardened Berserker', 'Elkin Bottle', 'Mage-Ring Network', 'Jungle Weaver', 'Patchwork Gnomes', 'Triumph of Ferocity', 'Endless Wurm', 'Firecat Blitz', 'Poultice Sliver', 'Bloodscale Prowler', 'Wingcrafter', 'Invisibility', 'Mortipede', 'Perilous Voyage', 'Confusion in the Ranks', 'Lightning Volley', 'Viashino Runner', 'Thunder Strike', 'Return to the Earth', 'Furnace Celebration', 'Angelic Page', 'Vulshok War Boar', 'Dubious Challenge', 'Obsessive Skinner', 'Centaur Omenreader', 'Magus of the Abyss', 'Abzan Charm', 'High Sentinels of Arashin', 'Soltari Priest', 'Pontiff of Blight', 'Choice of Damnations', 'Adventuring Gear', 'Heedless One', 'Consuming Bonfire', 'Truefire Paladin', 'Kazuul''s Toll Collector', 'Druid of the Cowl', 'Scepter of Insight', 'Consulate Dreadnought', 'Ascended Lawmage', 'Aven Tactician', 'Aurochs', 'Drelnoch', 'Petra Sphinx', 'Into the Wilds', 'Sturdy Hatchling', 'Essence Flare', 'Vector Asp', 'Skarrg Goliath', 'Skyship Plunderer', 'Hungering Yeti', 'Marauding Boneslasher', 'Basandra, Battle Seraph', 'Void Stalker', 'Soul Swallower', 'Red Sun''s Zenith', 'Giant Harbinger', 'Gravelgill Duo', 'Mystic Enforcer', 'Ouphe Vandals', 'Plague Fiend', 'War Report', 'Cabal Archon', 'Aethertow', 'Weakness', 'Titania''s Chosen', 'Spell Contortion', 'Plasm Capture', 'Neurok Hoversail', 'Goblin Mountaineer', 'Goblin Tunneler', 'Mistform Skyreaver', 'Markov Blademaster', 'Manic Scribe', 'Cabal Conditioning', 'Auriok Bladewarden', 'Invert the Skies', 'Adverse Conditions', 'Indrik Stomphowler', 'Cultbrand Cinder', 'Beetleback Chief', 'Brain Pry', 'Psychic Miasma', 'Dirtwater Wraith', 'Pentarch Paladin', 'Child of Night', 'Graceful Antelope', 'Honden of Seeing Winds', 'Roaring Slagwurm', 'Feeding Frenzy', 'Chaos Imps', 'Inner-Flame Acolyte', 'Enclave Elite', 'Fendeep Summoner', 'Territorial Hammerskull', 'Enhanced Awareness', 'Spectral Gateguards', 'Soul Summons', 'Viashino Firstblade', 'Arashin War Beast', 'Simic Ragworm', 'Dragon Whelp', 'Ghosthelm Courier', 'Gift of the Gargantuan', 'Ambush Viper', 'Ugin''s Insight', 'Wei Elite Companions', 'Insatiable Souleater', 'Giant Spectacle', 'Necrogen Scudder', 'Festering Wound', 'Gloomlance', 'Thunder Totem', 'Makindi Shieldmate', 'Wrecking Ball', 'Lingering Tormentor', 'Counterlash', 'Koth''s Courier', 'Kheru Dreadmaw', 'Wrecking Ogre', 'Griffin Protector', 'Mardu Skullhunter', 'Rathi Dragon', 'Forced Worship', 'Frontier Guide', 'Naya Battlemage', 'Pledge of Loyalty', 'Recurring Insight', 'Robe of Mirrors', 'Slash Panther', 'Three Tragedies', 'Slaughterhorn', 'Spike Rogue', 'Call to Mind', 'Legion Conquistador', 'Nessian Asp', 'Brazen Wolves', 'Leonin Snarecaster', 'Whelming Wave', 'Parasitic Strix', 'Pelakka Wurm', 'Ondu Champion', 'Wild Instincts', 'Phyrexian Driver', 'Stabilizer', 'Imi Statue', 'Archwing Dragon', 'Evolution Charm', 'Cylian Sunsinger', 'Manticore of the Gauntlet', 'Horizon Seed', 'Sanguine Sacrament', 'Rhox Brute', 'Marrow Bats', 'Grimoire of the Dead', 'Keeper of the Dead', 'Consumptive Goo', 'Cogwork Assembler', 'Boon Satyr', 'Desert of the Indomitable', 'Burn from Within', 'Lawless Broker', 'Wayward Angel', 'Doubtless One', 'Esper Cormorants', 'Whispering Specter', 'Wingsteed Rider', 'Resupply', 'Mountain Yeti', 'Glory Seeker', 'Retreat to Valakut', 'Cognivore', 'Thallid', 'Deft Duelist', 'Thornhide Wolves', 'Pristine Angel', 'Zombie Musher', 'Instigator Gang', 'Uninvited Geist', 'Bioshift', 'Purify the Grave', 'Mistform Wakecaster', 'Infused Arrows', 'Skeletal Grimace', 'Gravedigger', 'Swift Kick', 'Gemini Engine', 'Woodland Guidance', 'Remember the Fallen', 'Durkwood Baloth', 'Rakdos Keyrune', 'Ground Rift', 'Spikeshot Elder', 'Drove of Elves', 'Melt Terrain', 'Staff of the Death Magus', 'Goblin Bully', 'Rhet-Crop Spearmaster', 'World Queller', 'Foresee', 'Smite', 'Grotesque Mutation', 'Orchard Warden', 'Sivitri Scarzam', 'Shaman''s Trance', 'Research Assistant', 'Hawkeater Moth', 'Higure, the Still Wind', 'Walking Atlas', 'Amrou Kithkin', 'Ivorytusk Fortress', 'Street Savvy', 'Death-Hood Cobra', 'Foul Orchard', 'Reroute', 'Elite Cat Warrior', 'Dinrova Horror', 'Wall of Spears', 'Canopy Cover', 'Graven Abomination', 'Budoka Gardener', 'Goblin Furrier', 'Brain Gorgers', 'Revive the Fallen', 'Goblin Elite Infantry', 'Madblind Mountain', 'Undead Slayer', 'Quirion Trailblazer', 'Rakdos Ickspitter', 'Volley of Boulders', 'Char', 'Skyknight Legionnaire', 'Nulltread Gargantuan', 'Merfolk Seastalkers', 'Blastoderm', 'Prophet of Distortion', 'Vow of Flight', 'Resolute Archangel', 'Dark Temper', 'Plague Boiler', 'Jacques le Vert', 'Nebuchadnezzar', 'Azorius Keyrune', 'Hunting Drake', 'Display of Dominance', 'Deadeye Tormentor', 'Isleback Spawn', 'Mtenda Herder', 'Kalastria Healer', 'Wirewood Elf', 'Falter', 'Form of the Dragon', 'Nomad Mythmaker', 'Time Stop', 'Sluiceway Scorpion', 'Incendiary Flow', 'Lightmine Field', 'Ruthless Instincts', 'Storm Spirit', 'Venarian Glimmer', 'Jasmine Boreal', 'Vent Sentinel', 'Windstorm', 'Just the Wind', 'Meandering River', 'Aura Barbs', 'Elvish Warrior', 'Lunar Mystic', 'Evershrike', 'Azimaet Drake', 'Azorius Guildmage', 'Ring of Kalonia', 'Mage-Ring Bully', 'Void Snare', 'Sleeper''s Robe', 'Haazda Exonerator', 'Boggart Brute', 'Hisoka, Minamo Sensei', 'Rootwater Depths', 'Summit Prowler', 'Disposal Mummy', 'Ferocious Charge', 'Otarian Juggernaut', 'Craw Wurm', 'Hammerfist Giant', 'Arrogant Wurm', 'Rune of Protection: Artifacts', 'Ragged Veins', 'Patrol Signaler', 'Rebellion of the Flamekin', 'Hightide Hermit', 'Squealing Devil', 'Firefright Mage', 'Suppression Bonds', 'Golden Hind', 'Frostwielder', 'Mental Vapors', 'Labyrinth Guardian', 'Darksteel Juggernaut', 'Full Moon''s Rise', 'Dormant Gomazoa', 'Mystic Decree', 'Quest for Pure Flame', 'Festering Newt', 'Synod Centurion', 'Phantom Nantuko', 'Scaldkin', 'Outmaneuver', 'Psychic Barrier', 'Inexorable Blob', 'Coralhelm Commander', 'Call to Serve', 'Territorial Baloth', 'Seller of Songbirds', 'Selesnya Keyrune', 'Adarkar Windform', 'Natural Connection', 'Goldmeadow Dodger', 'Lifespring Druid', 'Brighthearth Banneret', 'Convalescent Care', 'Deepchannel Mentor', 'Somberwald Spider', 'Godtracker of Jund', 'Lich''s Tomb', 'Siren of the Silent Song', 'Shinen of Fury''s Fire', 'Heat Ray', 'Ritual of the Returned', 'Hitchclaw Recluse', 'Ink Dissolver', 'Man-o''-War', 'Dream Chisel', 'Skull Rend', 'Pressure Point', 'Last Gasp', 'Forgotten Creation', 'Spike Cannibal', 'Woodwraith Strangler', 'Cruel Edict', 'High Priest of Penance', 'Imminent Doom', 'Elegant Edgecrafters', 'Runic Repetition', 'Corrupted Grafstone', 'Flowstone Giant', 'Reprocess', 'Grassland Crusader', 'Chandra''s Ignition', 'Drudge Reavers', 'Atarka Monument', 'Predator''s Gambit', 'Kitsune Blademaster', 'Fallow Wurm', 'Etched Monstrosity', 'Repeal', 'Weaver of Lies', 'Force Away', 'Ice Cage', 'Dakra Mystic', 'Slobad, Goblin Tinkerer', 'Duty-Bound Dead', 'Geralf''s Mindcrusher', 'Mausoleum Guard', 'Worm Harvest', 'Tragic Poet', 'Myojin of Cleansing Fire', 'Vorosh, the Hunter', 'Spike Hatcher', 'Harmonic Convergence', 'Trumpeting Armodon', 'Solidarity', 'Muck Drubb', 'Goblin Deathraiders', 'Skyshroud Sentinel', 'Pharika''s Chosen', 'Dark Betrayal', 'Mycoid Shepherd', 'Cosi''s Ravager', 'Krosan Tusker', 'Altered Ego', 'Wall of Tanglecord', 'Viridescent Wisps', 'Elixir of Immortality', 'Icatian Priest', 'Boggart Arsonists', 'Kor Scythemaster', 'Ulvenwald Mysteries', 'Woodcutter''s Grit', 'Phyrexian Furnace', 'Bonethorn Valesk', 'Reaper of Sheoldred', 'Gravel Slinger', 'Vertigo Spawn', 'Stasis Cocoon', 'Crop Sigil', 'Inaction Injunction', 'Bushi Tenderfoot', 'Research the Deep', 'Incurable Ogre', 'Alhammarret, High Arbiter', 'Clockwork Avian', 'Oreskos Sun Guide', 'Mournwillow', 'Bring Low', 'Ramosian Revivalist', 'Looter il-Kor', 'Mindreaver', 'Imperial Hellkite', 'Alarum', 'Cadaver Imp', 'Izzet Keyrune', 'Torch Gauntlet', 'Storm Fleet Arsonist', 'Orzhov Signet', 'Akroma''s Blessing', 'Civilized Scholar', 'Anurid Scavenger', 'Urza''s Chalice', 'Leveler', 'Marked by Honor', 'Topplegeist', 'Frenzied Fugue', 'Druidic Satchel', 'Wild Mongrel', 'Panic Spellbomb', 'Absorb Vis', 'Feral Throwback', 'Tranquil Cove', 'Gateway Shade', 'Looming Shade', 'Skulking Knight', 'Ephemeral Shields', 'Disappearing Act', 'Frilled Sandwalla', 'Dreamcatcher', 'Sickle Ripper', 'Tin Street Market', 'Heliod''s Emissary', 'Undercity Troll', 'Primal Boost', 'Wall of Bone', 'Purphoros''s Emissary', 'Predator, Flagship', 'Chill of Foreboding', 'Minamo Scrollkeeper', 'Viashino Cutthroat', 'Azorius First-Wing', 'Lash Out', 'Urza''s Guilt', 'Bog Hoodlums', 'Mind Extraction', 'Maw of the Obzedat', 'Clear a Path', 'Serendib Efreet', 'Gaea''s Embrace', 'Empty-Shrine Kannushi', 'Beacon of Immortality', 'Tornado Elemental', 'Granite Shard', 'Sins of the Past', 'Air Servant', 'Rush of Adrenaline', 'Yore-Tiller Nephilim', 'Rebound', 'Aboshan, Cephalid Emperor', 'Overwhelm', 'Filigree Crawler', 'Inescapable Brute', 'Sygg, River Guide', 'Cryptwailing', 'Dreamspoiler Witches', 'Vorstclaw', 'Kiora''s Dismissal', 'Polymorphous Rush', 'Lava Burst', 'Prognostic Sphinx', 'Wild Evocation', 'Haunted Plate Mail', 'Narcolepsy', 'Haunter of Nightveil', 'Savage Alliance', 'Sandbar Serpent', 'Tempest Drake', 'Smothering Abomination', 'Rhox War Monk', 'Vildin-Pack Outcast', 'Captivating Crew', 'Great Teacher''s Decree', 'Plague Witch', 'Feral Invocation', 'Strength of Night', 'Launch', 'Volcanic Spray', 'Setessan Starbreaker', 'Sacred Mesa', 'Akroan Sergeant', 'Disentomb', 'Gaea''s Avenger', 'Taste of Blood', 'Daru Encampment', 'Life Chisel', 'Rage of Purphoros', 'Fledgling Djinn', 'Lightwielder Paladin', 'Wave of Indifference', 'Spidery Grasp', 'Buoyancy', 'Clockwork Beast', 'Hooded Horror', 'Perilous Shadow', 'Sigiled Paladin', 'Rootwater Mystic', 'Urza''s Miter', 'Skyshroud War Beast', 'Archfiend of Ifnir', 'Psychic Drain', 'Onulet', 'Tower Geist', 'Shelter', 'Tangleroot', 'Blood-Chin Rager', 'Winterflame', 'Tar Pitcher', 'Master of Diversion', 'Battering Wurm', 'Torment of Venom', 'Boros Cluestone', 'Wonder', 'Rogue Kavu', 'Cursed Monstrosity', 'Agoraphobia', 'Ronom Unicorn', 'Wall of Essence', 'Fleshpulper Giant', 'Phyrexian Digester', 'Gust Walker', 'Jalum Tome', 'Cabal Interrogator', 'Ranging Raptors', 'Corpse Blockade', 'Vectis Silencers', 'Pheres-Band Centaurs', 'Baku Altar', 'Auriok Replica', 'Plated Seastrider', 'Floodchaser', 'Embodiment of Spring', 'Thorntooth Witch', 'Accomplished Automaton', 'Cloven Casting', 'Arsenal Thresher', 'Perilous Predicament', 'Renegade''s Getaway', 'Leeching Licid', 'Taj-Nar Swordsmith', 'Leaden Fists', 'Hekma Sentinels', 'Brilliant Halo', 'Golgari Germination', 'Salt Road Ambushers', 'Crystal Spray', 'Boros Guildgate', 'Cult of the Waxing Moon', 'Walking Corpse', 'Moss Monster', 'Elvish Soultiller', 'Looming Hoverguard', 'Dauthi Embrace', 'Phantasmal Fiend', 'Yavimaya Granger', 'Swarmborn Giant', 'Peema Aether-Seer', 'Stab Wound', 'Hero''s Demise', 'Swift Silence', 'Nyxborn Triton', 'Rewind', 'Manriki-Gusari', 'Reach of Shadows', 'Supreme Exemplar', 'Gyre Sage', 'Boonweaver Giant', 'Erdwal Ripper', 'Rukh Egg', 'Triton Shorethief', 'Greater Forgeling', 'Zuran Spellcaster', 'Devil''s Play', 'Inkfathom Witch', 'Djinn of Wishes', 'Midnight Entourage', 'Trained Armodon', 'Marsh Casualties', 'Petals of Insight', 'Barbed Shocker', 'Mass Calcify', 'Primal Plasma', 'Dryad Sophisticate', 'Sandsteppe Citadel', 'Congregate', 'Rootwater Matriarch', 'Thoughts of Ruin', 'Righteousness', 'Molten Slagheap', 'Aysen Crusader', 'Icefeather Aven', 'Scrapyard Mongrel', 'Rumbling Aftershocks', 'Rancid Rats', 'Forbidden Lore', 'Benalish Hero', 'Tidings', 'Battering Sliver', 'Voyager Drake', 'Bartel Runeaxe', 'Unliving Psychopath', 'Fatespinner', 'Pain Magnification', 'The Fallen', 'Ankh of Mishra', 'Soaring Seacliff', 'Simic Basilisk', 'Shuriken', 'Rockslide Ambush', 'Vampire Bats', 'Kami of the Waning Moon', 'Keeper of the Flame', 'Blackcleave Goblin', 'Tobias Andrion', 'Tainted Specter', 'Fire Whip', 'Scorchwalker', 'Sylvan Messenger', 'Starlight', 'Kathari Bomber', 'Unstable Footing', 'Sinister Possession', 'Howl from Beyond', 'Fleetfeather Cockatrice', 'Architect of the Untamed', 'Hero of Iroas', 'Weight of Conscience', 'Krosan Warchief', 'Howltooth Hollow', 'Lumengrid Gargoyle', 'Stratus Walk', 'Lantern Kami', 'Makindi Sliderunner', 'Tremor', 'Sphinx of the Chimes', 'Jund Hackblade', 'Simoon', 'Vorrac Battlehorns', 'Hope Tender', 'Tajuru Stalwart', 'Sentinel Spider', 'Hopeful Eidolon', 'Mobilization', 'Renegade Krasis', 'Trial // Error', 'Feeling of Dread', 'Kessig Prowler', 'Inventor''s Goggles', 'Molten Birth', 'Wirewood Guardian', 'Scrounger of Souls', 'Thought Prison', 'Kashi-Tribe Elite', 'Traitorous Instinct', 'Crater''s Claws', 'Corrupted Roots', 'March of the Drowned', 'Scour', 'Rot Farm Skeleton', 'Benthic Behemoth', 'Ire Shaman', 'Benalish Commander', 'Anathemancer', 'Tunnel Vision', 'Anthroplasm', 'Broken Ambitions', 'Immerwolf', 'Torsten Von Ursus', 'Charm Peddler', 'Sphinx of Magosi', 'Screeching Skaab', 'Valiant Guard', 'Gaea''s Anthem', 'Dragon''s Eye Sentry', 'Landslide', 'Clockwork Swarm', 'Surge of Thoughtweft', 'Hinterland Hermit', 'Greater Stone Spirit', 'Sideswipe', 'Soldevi Digger', 'Fairgrounds Trumpeter', 'Nightshade Peddler', 'Gibbering Fiend', 'Nucklavee', 'Bloodlust Inciter', 'Herald of War', 'Bamboozle', 'Soulcatcher', 'Evolution Vat', 'Honor Guard', 'Kozilek''s Translator', 'Dream Fighter', 'Spite // Malice', 'Craven Giant', 'Carnassid', 'Breath of Life', 'Trolls of Tel-Jilad', 'Time of Heroes', 'Monk Realist', 'Flamekin Spitfire', 'Destructive Tampering', 'Wilderness Hypnotist', 'Vitu-Ghazi Guildmage', 'Wort, the Raidmother', 'Palace Familiar', 'Tor Wauki', 'Skywing Aven', 'Dread Drone', 'Sink into Takenuma', 'Dagger of the Worthy', 'Royal Trooper', 'Kuro, Pitlord', 'Goblin Ski Patrol', 'Steadfast Guard', 'Soratami Mirror-Mage', 'Altar Golem', 'Changeling Hero', 'Knight of Cliffhaven', 'Dire Fleet Captain', 'Goblin Warchief', 'Infernal Caretaker', 'Amrou Seekers', 'Banewhip Punisher', 'Arcbound Hybrid', 'Thallid Shell-Dweller', 'D''Avenant Healer', 'Tuktuk Scrapper', 'Baloth Null', 'Viscerid Deepwalker', 'Night // Day', 'Witch Hunter', 'Tracker''s Instincts', 'Penumbra Spider', 'Aphetto Exterminator', 'Avacynian Priest', 'Moment of Heroism', 'Ironwright''s Cleansing', 'Veteran Armorer', 'Quicksilver Behemoth', 'Hound of the Farbogs', 'Gloomwidow', 'Goldnight Commander', 'Soulbound Guardians', 'Scourge Devil', 'Gemstone Array', 'Zulaport Chainmage', 'Vaultbreaker', 'Runewing', 'Clear Shot', 'Henchfiend of Ukor', 'Might Makes Right', 'Ankle Shanker', 'Heartwood Giant', 'Rusted Sentinel', 'Slaughter Drone', 'Planar Guide', 'Epochrasite', 'Cage of Hands', 'Solar Blast', 'Goblin Archaeologist', 'Infinite Reflection', 'Fleeting Image', 'Personal Incarnation', 'Firefly', 'Brave the Sands', 'Cascading Cataracts', 'Farrel''s Zealot', 'Locket of Yesterdays', 'Riftwing Cloudskate', 'Wall of Resurgence', 'Sphinx of Uthuun', 'Sylvan Echoes', 'Hostility', 'Kiora''s Follower', 'Wirefly Hive', 'Caribou Range', 'Soulsworn Spirit', 'Void Maw', 'Voidwielder', 'Zendikar''s Roil', 'Lavacore Elemental', 'Assault Zeppelid', 'Sandwurm Convergence', 'Leafdrake Roost', 'Gods'' Eye, Gate to the Reikai', 'Cyclical Evolution', 'Rotted Hystrix', 'Bonehoard', 'Gurmag Swiftwing', 'Mad Auntie', 'Ornery Kudu', 'Mark for Death', 'Ethercaste Knight', 'Sanity Grinding', 'Guma', 'Extract from Darkness', 'Battleflight Eagle', 'Nightshade Assassin', 'Crocodile of the Crossing', 'Praetor''s Grasp', 'Nivix Barrier', 'Pillar of Origins', 'Rockcaster Platoon', 'Stoke the Flames', 'Seasinger', 'Magnetic Flux', 'Spellshock', 'Auratouched Mage', 'Ivory Crane Netsuke', 'Iron Will', 'Echoing Courage', 'Eldrazi Devastator', 'Ballynock Cohort', 'Cabal Shrine', 'Moonglove Changeling', 'Spike Soldier', 'Spiritmonger', 'Drownyard Behemoth', 'Fodder Cannon', 'Bleak Coven Vampires', 'Grizzled Angler', 'Propeller Pioneer', 'Knotvine Paladin', 'Sand Strangler', 'Gruul Signet', 'Ember Hauler', 'Shielded Aether Thief', 'Bloodsoaked Champion', 'Flayer Drone', 'Straw Golem', 'Brilliant Spectrum', 'Frenzied Raptor', 'Ashcloud Phoenix', 'Dwarven Nomad', 'Skulltap', 'Nightguard Patrol', 'Sabertooth Alley Cat', 'Spike Feeder', 'Scavenging Scarab', 'Dimir House Guard', 'Call the Bloodline', 'Wildest Dreams', 'Spurred Wolverine', 'Sentinels of Glen Elendra', 'Dukhara Scavenger', 'Ingenious Skaab', 'Rain of Daggers', 'Liliana''s Defeat', 'God-Favored General', 'Deathspore Thallid', 'Rageform', 'Grim Captain''s Call', 'Griffin Dreamfinder', 'Screeching Sliver', 'Harrier Naga', 'Bojuka Brigand', 'Restoration Specialist', 'Cobra Trap', 'Hedonist''s Trove', 'Dark Salvation', 'Bloodthrone Vampire', 'Phyrexian Snowcrusher', 'Vanishment', 'Murderous Cut', 'Wanderlust', 'Bitterbow Sharpshooters', 'Ghost Tactician', 'Rolling Thunder', 'Furnace Brood', 'Empyreal Voyager', 'Veil of Secrecy', 'Roar of Challenge', 'Venser''s Diffusion', 'Imprisoned in the Moon', 'Foratog', 'Cut the Tethers', 'Horror of the Broken Lands', 'Akoum Flameseeker', 'Ravenous Intruder', 'Null Champion', 'Scragnoth', 'Streambed Aquitects', 'Spirit Weaver', 'Opal Champion', 'Nurturer Initiate', 'Desert of the True', 'Ebony Horse', 'Auger Spree', 'Homing Lightning', 'Spitting Drake', 'Unruly Mob', 'Assembled Alphas', 'Heavy Ballista', 'Zendikar Incarnate', 'Wind-Kin Raiders', 'Monk Idealist', 'Crumbling Colossus', 'Swarm Intelligence', 'Peema Outrider', 'Death Charmer', 'Seed the Land', 'Imperial Lancer', 'Monastery Loremaster', 'Malakir Bloodwitch', 'Felhide Spiritbinder', 'Blood Rites', 'Horizon Scholar', 'Melancholy', 'Lifecraft Awakening', 'Glade Watcher', 'Storm Front', 'Carrion Beetles', 'Encase in Ice', 'Guul Draz Specter', 'Degavolver', 'Valeron Wardens', 'Reiver Demon', 'Oboro Breezecaller', 'Bitterheart Witch', 'Angelic Skirmisher', 'Enlarge', 'Orcish Oriflamme', 'Disciple of Tevesh Szat', 'Encircling Fissure', 'Belltower Sphinx', 'Cache Raiders', 'Revenge of the Hunted', 'Timecrafting', 'Stalker Hag', 'Septic Rats', 'Fiery Conclusion', 'Restock', 'Pygmy Pyrosaur', 'Final Revels', 'Nullify', 'Rakka Mar', 'Steeple Roc', 'Mobile Fort', 'Bloodfray Giant', 'Impeccable Timing', 'Sorrow''s Path', 'Benalish Trapper', 'Freyalise''s Radiance', 'Eternal Thirst', 'Screamreach Brawler', 'Dormant Volcano', 'Voyage''s End', 'Seal of Doom', 'Cavalry Master', 'Artificer''s Epiphany', 'Deadbridge Shaman', 'Carnivorous Moss-Beast', 'Lyzolda, the Blood Witch', 'Wei Night Raiders', 'Smokestack', 'Desert''s Hold', 'Vicious Shadows', 'Icefall', 'Dimir Signet', 'Nefarious Lich', 'Witherscale Wurm', 'Pardic Firecat', 'Vinelasher Kudzu', 'Witness the End', 'Trade Routes', 'Orator of Ojutai', 'Brimstone Volley', 'Sakiko, Mother of Summer', 'Revoke Privileges', 'Grazing Whiptail', 'Cannibalize', 'Zodiac Monkey', 'Rites of Reaping', 'Voldaren Duelist', 'Sage-Eye Avengers', 'Debtor''s Pulpit', 'Imperiosaur', 'Thorncaster Sliver', 'Temur Charm', 'Ballista Charger', 'Fated Infatuation', 'Skyline Cascade', 'Acolyte of the Inferno', 'Oona''s Gatewarden', 'Tower of Fortunes', 'Spawnbroker', 'Deranged Whelp', 'Treasury Thrull', 'Azorius Aethermage', 'Flameblast Dragon', 'Seraph of the Sword', 'Jade Statue', 'Ruination Wurm', 'Corpsehatch', 'Watcher in the Web', 'Watchers of the Dead', 'Planeswalker''s Fury', 'Natural Obsolescence', 'Soul Manipulation', 'Stormrider Rig', 'Woodborn Behemoth', 'Jungle Barrier', 'Tracker', 'Oath of the Ancient Wood', 'Gruul Keyrune', 'Kraken of the Straits', 'Zhalfirin Crusader', 'Lightning Crafter', 'Planar Cleansing', 'Shadow Sliver', 'Mind Spring', 'Ojutai''s Breath', 'Trail of Evidence', 'Polis Crusher', 'Bygone Bishop', 'Defeat', 'Abzan Ascendancy', 'Linessa, Zephyr Mage', 'Skyreaping', 'Skeleton Scavengers', 'Arcbound Stinger', 'In Garruk''s Wake', 'Sylvok Replica', 'Scale Blessing', 'Nissa''s Renewal', 'Abyssal Horror', 'Droning Bureaucrats', 'Blight Sickle', 'Drowner of Secrets', 'Cover of Winter', 'Holdout Settlement', 'Khabál Ghoul', 'Gryff''s Boon', 'Pursuit of Flight', 'Cultivator of Blades', 'Emmessi Tome', 'Hooded Assassin', 'Reality Anchor', 'Call of the Herd', 'Moorish Cavalry', 'City in a Bottle', 'Giant Caterpillar', 'Boros Swiftblade', 'Spineless Thug', 'Spectral Shepherd', 'Jade Mage', 'Torch Slinger', 'Paralyze', 'Cautery Sliver', 'Warrior''s Honor', 'Glint-Eye Nephilim', 'Diviner''s Wand', 'Ogre Slumlord', 'Goblin Flectomancer', 'Desecration Plague', 'Roil''s Retribution', 'Alpha Status', 'Spinal Parasite', 'Flameblade Angel', 'Gatherer of Graces', 'Johtull Wurm', 'Hidden Ancients', 'Banshee''s Blade', 'Paranoid Delusions', 'Rabid Bloodsucker', 'Weight of the Underworld', 'Lightning-Rig Crew', 'Blighted Cataract', 'Costly Plunder', 'Cinder Pyromancer', 'Alchemist''s Apprentice', 'Ruinous Path', 'Mystic Zealot', 'Research // Development', 'Zameck Guildmage', 'Sorcerer''s Strongbox', 'Knight of the Pilgrim''s Road', 'Sands of Delirium', 'Silkbind Faerie', 'Riptide Pilferer', 'Stormblood Berserker', 'Wall of Fire', 'Flight', 'Heroes'' Reunion', 'Kithkin Mourncaller', 'Sphere of Law', 'Sylvan Ranger', 'Giant Crab', 'Floodbringer', 'Belligerent Hatchling', 'Sultai Charm', 'Chosen of Markov', 'Glacial Plating', 'Stone Golem', 'Death Stroke', 'Order of the Stars', 'Greater Mossdog', 'Rallying Roar', 'Roar of the Wurm', 'Rage Forger', 'Walker of the Wastes', 'Sootstoke Kindler', 'Perpetual Timepiece', 'Nimble Innovator', 'Thunderheads', 'New Prahv Guildmage', 'Flatten', 'Fleeting Distraction', 'Sea Gate Loremaster', 'Necroskitter', 'The Wretched', 'Undo', 'Cloudheath Drake', 'Cutthroat Maneuver', 'Bronze Bombshell', 'Multiform Wonder', 'Defiant Khenra', 'Accorder''s Shield', 'Sunstrike Legionnaire', 'Tribal Unity', 'Endure', 'Raving Oni-Slave', 'Burn the Impure', 'Colossal Whale', 'Kithkin Spellduster', 'Village Messenger', 'Vampire Lacerator', 'Starstorm', 'Fang Skulkin', 'Moriok Reaver', 'Ashenmoor Gouger', 'Watchwolf', 'Pyroclast Consul', 'Phantom Warrior', 'Wishmonger', 'Phantom General', 'In the Web of War', 'Viashino Outrider', 'Breath of Malfegor', 'Zephyr Scribe', 'Ivy Dancer', 'Hammer of Ruin', 'Cloud Djinn', 'Spiraling Embers', 'Kessig Wolf', 'Gather Specimens', 'Ghitu Fire', 'Ardent Recruit', 'Raiders'' Wake', 'Distorting Lens', 'Hunting Pack', 'Coal Golem', 'Heart of Bogardan', 'Shattering Blow', 'Benthic Giant', 'Guildscorn Ward', 'Ovalchase Dragster', 'Sisters of Stone Death', 'Reassembling Skeleton', 'Phyrexian Plaguelord', 'Wall of Frost', 'Down // Dirty', 'Riptide Chronologist', 'Archery Training', 'Stymied Hopes', 'Spring // Mind', 'Cunning Lethemancer', 'Lady Caleria', 'Mindclaw Shaman', 'Goblin Shortcutter', 'Suture Spirit', 'Lurking Arynx', 'Crown of Fury', 'Bearer of the Heavens', 'Planar Outburst', 'Crown of Empires', 'Incendiary', 'Wandering Eye', 'Scorned Villager', 'Shifting Borders', 'Mitotic Manipulation', 'Dune-Brood Nephilim', 'Shrouded Lore', 'Gold Myr', 'Walker of Secret Ways', 'Eyeless Watcher', 'The Lady of the Mountain', 'Izzet Guildmage', 'Sacellum Archers', 'Okina Nightwatch', 'Bloodcrazed Neonate', 'Scoria Elemental', 'Consulate Crackdown', 'Pavel Maliki', 'Last Word', 'Wyluli Wolf', 'Krumar Bond-Kin', 'Take Up Arms', 'Gnarled Scarhide', 'Dragonlord''s Servant', 'Stream of Life', 'Canopy Spider', 'Serene Remembrance', 'Horobi''s Whisper', 'Oran-Rief Hydra', 'Ondu Rising', 'Reborn Hope', 'Trygon Predator', 'Tower Defense', 'Hell''s Thunder', 'Lambholt Elder', 'Favored Hoplite', 'Voiceless Spirit', 'Wei Strike Force', 'Arcbound Fiend', 'Bellowing Fiend', 'Pheres-Band Raiders', 'Setessan Battle Priest', 'Ashes of the Fallen', 'Hazoret''s Monument', 'Reap', 'Borderland Ranger', 'Skyshooter', 'Sparkspitter', 'Detritivore', 'Hinterland Logger', 'Mirozel', 'Lightning Blast', 'Killer Whale', 'Night Market Guard', 'Arcane Adaptation', 'Nirkana Cutthroat', 'Silver Knight', 'Wild Wanderer', 'Zealous Inquisitor', 'Cragganwick Cremator', 'Serpent Skin', 'Kodama of the North Tree', 'Kitesail', 'Bassara Tower Archer', 'Plea for Guidance', 'Jaws of Stone', 'Mortal''s Ardor', 'Silburlind Snapper', 'Army Ants', 'Mystic Melting', 'Elven Warhounds', 'Selhoff Occultist', 'Will-Forged Golem', 'Chronatog Totem', 'Cartouche of Ambition', 'Jarad''s Orders', 'Phyrexian Denouncer', 'Narwhal', 'Gruul Scrapper', 'Bog-Strider Ash', 'Revoke Existence', 'Kaijin of the Vanishing Touch', 'Fettergeist', 'Ranger''s Guile', 'Dragon Arch', 'Nezumi Cutthroat', 'Drana''s Chosen', 'Spike Jester', 'Heroes'' Podium', 'Measure of Wickedness', 'Rolling Spoil', 'Holy Mantle', 'Spoils of Victory', 'Manaforge Cinder', 'Sultai Runemark', 'Quicksilver Dragon', 'Azorius Guildgate', 'Incandescent Soulstoke', 'Dragon Mantle', 'Cradle to Grave', 'Ghazbán Ogre', 'Voidmage Husher', 'Viashino Slasher', 'Statute of Denial', 'Unlicensed Disintegration', 'Grizzly Bears', 'Nantuko Shade', 'Clockspinning', 'Storage Matrix', 'Ghoulcaller''s Chant', 'Talrand''s Invocation', 'Deputy of Acquittals', 'Righteous Avengers', 'Mortal''s Resolve', 'Redirect', 'Flowstone Salamander', 'Havengul Vampire', 'Despondency', 'Waking Nightmare', 'Vile Aggregate', 'Ogre Recluse', 'Start Your Engines', 'Revolutionary Rebuff', 'Knight of Dawn', 'Dregscape Zombie', 'Overrule', 'Creeping Dread', 'Cumber Stone', 'Rhonas''s Monument', 'Sarcomancy', 'Lu Bu, Master-at-Arms', 'Wurm''s Tooth', 'Stoic Angel', 'Oak Street Innkeeper', 'Natural Spring', 'Soul Net', 'Pallid Mycoderm', 'Venomspout Brackus', 'Angelic Armaments', 'Neutralizing Blast', 'Reduce to Ashes', 'Lightbringer', 'Fiddlehead Kami', 'Azorius Ploy', 'Goblin Pyromancer', 'Butcher Orgg', 'Shifting Loyalties', 'Lord of the Pit', 'Servant of Volrath', 'Valor in Akros', 'Oakenform', 'Slipstream Eel', 'Winds of Qal Sisma', 'Rivalry', 'Pharagax Giant', 'Thunder Wall', 'Dimir Cluestone', 'Retribution of the Ancients', 'Rabid Wombat', 'Vedalken Engineer', 'Scorched Rusalka', 'Scarblade Elite', 'Creepy Doll', 'Zhang Fei, Fierce Warrior', 'Siege Wurm', 'Elgaud Shieldmate', 'Genju of the Cedars', 'Squee''s Embrace', 'Angelic Gift', 'Thunderclap', 'Manta Ray', 'Paragon of Gathering Mists', 'Aven Mimeomancer', 'Aven Shrine', 'Liege of the Pit', 'Academy Raider', 'Deepwood Wolverine', 'Xenograft', 'Drunau Corpse Trawler', 'Ambuscade Shaman', 'Redwood Treefolk', 'Brutalizer Exarch', 'Apocalypse Hydra', 'Scrapyard Salvo', 'Honored Hierarch', 'Durkwood Tracker', 'Mana Clash', 'Hibernation''s End', 'Siren Song Lyre', 'Battle-Rattle Shaman', 'Binding Grasp', 'Reaver Drone', 'Brood Birthing', 'Nacatl War-Pride', 'Hunt Down', 'Murasa Pyromancer', 'Mindless Automaton', 'Ribbons of Night', 'Rough // Tumble', 'Scepter of Fugue', 'In Oketra''s Name', 'Furnace Whelp', 'Bastion Enforcer', 'Accorder Paladin', 'Carbonize', 'Demon''s Jester', 'Fleet Swallower', 'Amulet of Kroog', 'Whispering Madness', 'Burden of Guilt', 'Last Thoughts', 'Oaken Brawler', 'Aerial Maneuver', 'Volunteer Reserves', 'Stalwart Aven', 'Noble Stand', 'Predatory Urge', 'Veteran Motorist', 'Sneaky Homunculus', 'Psychic Membrane', 'Aven Envoy', 'Foundry Screecher', 'Mirri, Cat Warrior', 'Rain of Thorns', 'Ice Over', 'Amphin Pathmage', 'Cowl Prowler', 'Back from the Brink', 'Glissa Sunseeker', 'Meadowboon', 'Wall of Junk', 'Sunset Pyramid', 'Brute Force', 'Havoc Demon', 'Coralhelm Guide', 'Filigree Sages', 'Kazandu Tuskcaller', 'Adaptive Snapjaw', 'Magmatic Core', 'Honored Crop-Captain', 'Woodland Sleuth', 'Ironclad Revolutionary', 'Riptide Mangler', 'Crater Elemental', 'Kraul Warrior', 'Celestial Dawn', 'Search the City', 'Obelisk Spider', 'Mask of Memory', 'Centaur Archer', 'Cyclops of One-Eyed Pass', 'Sejiri Merfolk', 'Clip Wings', 'Tooth of Chiss-Goria', 'Elemental Mastery', 'Blinding Beam', 'Igneous Pouncer', 'Wolfir Avenger', 'Kei Takahashi', 'Rust Tick', 'Messenger''s Speed', 'Ubul Sar Gatekeepers', 'Natural Affinity', 'Cached Defenses', 'Lord of the Accursed', 'Bloodline Shaman', 'Phyrexian Ghoul', 'Spiteflame Witch', 'Merfolk Observer', 'Tormentor Exarch', 'Contagious Nim', 'Noyan Dar, Roil Shaper', 'Phantasmagorian', 'Keeper of the Light', 'Congregation at Dawn', 'Capashen Knight', 'Doubling Chant', 'Crystal Rod', 'Goblin Burrows', 'Worldpurge', 'Vow of Malice', 'Dampening Pulse', 'Hornet Sting', 'Guerrilla Tactics', 'Cerulean Sphinx', 'Righteous Charge', 'Vigilant Martyr', 'Razing Snidd', 'Vex', 'Nimbus Naiad', 'Martyrs of Korlis', 'Voracious Dragon', 'Hidetsugu''s Second Rite', 'Myr Mindservant', 'Burst of Strength', 'Sighted-Caste Sorcerer', 'Barrenton Cragtreads', 'Nim Lasher', 'Grozoth', 'Butcher''s Glee', 'Sulfuric Vapors', 'Kor Entanglers', 'Orochi Sustainer', 'Divine Transformation', 'Zuran Orb', 'Satyr Firedancer', 'Tibor and Lumia', 'Ordered Migration', 'Lost Hours', 'Soratami Mirror-Guard', 'Blastfire Bolt', 'Avenging Angel', 'Shore Snapper', 'Stand // Deliver', 'Fathom Mage', 'Warren-Scourge Elf', 'Vastwood Gorger', 'Grim Flowering', 'Ravenous Skirge', 'Tawnos''s Coffin', 'Tribal Flames', 'Skeleton Key', 'Sanguine Bond', 'Whimwader', 'Profane Prayers', 'Sewerdreg', 'Zephyr Spirit', 'Wanderguard Sentry', 'Magmaw', 'Guardian of the Gateless', 'Ravaging Blaze', 'Surrakar Spellblade', 'Starlit Sanctum', 'Guile', 'Siren of the Fanged Coast', 'Blind-Spot Giant', 'Crush Underfoot', 'Furtive Homunculus', 'Knight of the Skyward Eye', 'Quilled Wolf', 'Blunt the Assault', 'Fold into Aether', 'Vengeful Rebel', 'Untethered Express', 'Skirk Volcanist', 'Steam Spitter', 'Filigree Angel', 'Basilica Guards', 'Alive // Well', 'Font of Fertility', 'Viashino Sandswimmer', 'Sleek Schooner', 'Entomber Exarch', 'Branded Brawlers', 'Fiery Hellhound', 'Shimmering Barrier', 'Bloodhusk Ritualist', 'Neurok Invisimancer', 'Govern the Guildless', 'Whitewater Naiads', 'Sultai Skullkeeper', 'Skyshroud Troll', 'Gruesome Slaughter', 'Hewed Stone Retainers', 'Cosmic Horror', 'Fusion Elemental', 'Mouth // Feed', 'Soldier Replica', 'Shipwreck Singer', 'Darksteel Brute', 'Way of the Thief', 'Skyrider Trainee', 'Kodama''s Might', 'Ostracize', 'Walking Archive', 'Thran Lens', 'Sacred Nectar', 'Goblin Dirigible', 'Shape Anew', 'Thoughtweft Trio', 'Uktabi Faerie', 'Treefolk Harbinger', 'Claws of Valakut', 'Woodland Patrol', 'Multani''s Acolyte', 'Crown of Suspicion', 'Rags // Riches', 'Treespring Lorian', 'Jeskai Student', 'Wasteland Scorpion', 'Bone Splinters', 'Oracle''s Insight', 'Encampment Keeper', 'Duskmantle, House of Shadow', 'Boros Keyrune', 'Lavinia of the Tenth', 'Quest for Ancient Secrets', 'Pitfall Trap', 'Scroll Thief', 'Deicide', 'Accursed Spirit', 'Sunrise Sovereign', 'Kor Outfitter', 'King Crab', 'Withstand', 'Grinning Ignus', 'Unyaro Bees', 'Flesh // Blood', 'Revenant Patriarch', 'Shade of Trokair', 'Evil Presence', 'Pyre Hound', 'Heartless Pillage', 'Akki Underminer', 'Scoria Wurm', 'Vitaspore Thallid', 'Mannichi, the Fevered Dream', 'Apothecary Geist', 'Peregrine Drake', 'Ith, High Arcanist', 'Cruel Revival', 'Ghoulcaller''s Bell', 'Eerie Procession', 'Kavu Scout', 'Liliana''s Reaver', 'Tidy Conclusion', 'Youthful Scholar', 'Avarax', 'Wandering Stream', 'Daru Sanctifier', 'Emperor''s Vanguard', 'Uktabi Drake', 'Demonic Taskmaster', 'Anvilwrought Raptor', 'Reckless Racer', 'Dogged Hunter', 'Quilled Slagwurm', 'War-Spike Changeling', 'Mystic Crusader', 'Dark Withering', 'Mana Breach', 'Dual Casting', 'Oketra''s Avenger', 'Outwit', 'Hoarder''s Greed', 'Draining Whelk', 'Cloud Sprite', 'Lightning Rift', 'Thought Courier', 'Steel Wall', 'Windbrisk Raptor', 'Dreg Mangler', 'Drogskol Cavalry', 'Sophic Centaur', 'Blessing of Leeches', 'Squall Line', 'Grixis Grimblade', 'Heir of the Wilds', 'Pouncing Cheetah', 'Squall', 'Sacellum Godspeaker', 'Havengul Runebinder', 'Hunting Cheetah', 'Mighty Leap', 'Mosquito Guard', 'Overgrown Estate', 'Aladdin''s Ring', 'Strangling Soot', 'Kjeldoran War Cry', 'Azorius Justiciar', 'Neko-Te', 'Abundant Maw', 'Roar of Jukai', 'Serene Offering', 'Hearth Kami', 'Cyclopean Snare', 'Rhox Pikemaster', 'Simic Guildmage', 'Veteran Cavalier', 'Shared Fate', 'Lull', 'Predator Dragon', 'Goblin Cavaliers', 'Wolf-Skull Shaman', 'Relic Putrescence', 'Skullmulcher', 'Dawning Purist', 'Plated Pegasus', 'Setessan Tactics', 'Shadowfeed', 'Distemper of the Blood', 'Distended Mindbender', 'Arcbound Slith', 'Impromptu Raid', 'Charging Badger', 'Buried Alive', 'Consume Spirit', 'Wrangle', 'Pull Under', 'Fortify', 'Spike Tiller', 'Bloodfire Enforcers', 'Vampire Outcasts', 'Frightful Delusion', 'Silent Artisan', 'Plover Knights', 'Hurloon Shaman', 'Breezekeeper', 'Security Blockade', 'Split-Tail Miko', 'Rustmouth Ogre', 'Mirari', 'Auramancer', 'Keeper of the Nine Gales', 'Prosperous Pirates', 'Spire Patrol', 'Griffin Sentinel', 'Prison Barricade', 'Reckless Spite', 'Scavenger Folk', 'Psychic Purge', 'Assassinate', 'Sea Drake', 'Murmurs from Beyond', 'Changeling Sentinel', 'Revealing Wind', 'Valakut Fireboar', 'Tromp the Domains', 'Keldon Champion', 'Tomorrow, Azami''s Familiar', 'Weldfast Wingsmith', 'Kitsune Diviner', 'Resounding Roar', 'Alluring Siren', 'Aether Inspector', 'Headwater Sentries', 'Archon of Justice', 'Chief of the Foundry', 'Benthic Infiltrator', 'Profaner of the Dead', 'Dance of Many', 'Turn Aside', 'Recollect', 'Kiri-Onna', 'Viashino Warrior', 'Diminishing Returns', 'Triskelavus', 'Sekki, Seasons'' Guide', 'Fists of Ironwood', 'Roiling Horror', 'Hidden Retreat', 'Succumb to Temptation', 'Rite of Undoing', 'Leave in the Dust', 'Flamespeaker''s Will', 'Plummet', 'Imperious Perfect', 'Keiga, the Tide Star', 'Glare of Heresy', 'Ghoulflesh', 'Thunderblade Charge', 'Kraken Hatchling', 'Dragon Grip', 'Lesser Werewolf', 'Terashi''s Cry', 'Cinderhaze Wretch', 'Felidar Cub', 'Cephalid Constable', 'Ire of Kaminari', 'Pyrohemia', 'Moroii', 'Cursed Minotaur', 'Swift Warkite', 'Vitu-Ghazi, the City-Tree', 'Telepathy', 'Dread Slag', 'Angler Drake', 'Nekrataal', 'Kezzerdrix', 'Kodama of the Center Tree', 'Midnight Duelist', 'Blinding Mage', 'Caravan Hurda', 'Ghost Warden', 'Nectar Faerie', 'Relic Ward', 'Graf Harvest', 'Mightstone', 'Knight of Infamy', 'Death Frenzy', 'Jolt', 'Kheru Spellsnatcher', 'Mad Prophet', 'Meltdown', 'Wand of the Elements', 'Falkenrath Gorger', 'Dormant Sliver', 'Scornful Aether-Lich', 'Untamed Hunger', 'Wu Elite Cavalry', 'Predatory Rampage', 'Briarknit Kami', 'Sprout', 'Cloak of Confusion', 'Twins of Maurer Estate', 'Dreadship Reef', 'Jade Leech', 'Wind Dancer', 'Steam Catapult', 'Angelheart Vial', 'Splinter', 'Abuna Acolyte', 'Thornscape Master', 'Memory Erosion', 'Brain Freeze', 'Kami of the Honored Dead', 'Lashknife Barrier', 'Core Prowler', 'Flashfreeze', 'Righteous Blow', 'Deflection', 'Change of Heart', 'Mind Sludge', 'Pheres-Band Tromper', 'Disowned Ancestor', 'Necromaster Dragon', 'Fungal Behemoth', 'Cartouche of Zeal', 'Gamekeeper', 'Pardic Miner', 'Rock Slide', 'Ivory Tower', 'Ghostly Wings', 'Nephalia Moondrakes', 'Zada, Hedron Grinder', 'Artful Maneuver', 'Stormwatch Eagle', 'Phyresis', 'Spiketail Drakeling', 'Sift', 'Soulcatchers'' Aerie', 'Aerial Modification', 'Mountain Valley', 'Runeboggle', 'Mesa Enchantress', 'Stinkdrinker Daredevil', 'Sunweb', 'Kithkin Healer', 'Kruin Striker', 'Boros Guildmage', 'Paragon of New Dawns', 'Sandstone Warrior', 'Demonmail Hauberk', 'Polluted Dead', 'Void Squall', 'Shatterskull Recruit', 'Defiant Salvager', 'Manaforce Mace', 'Time Bomb', 'Arcbound Lancer', 'Ephara''s Radiance', 'Gatstaf Arsonists', 'Struggle for Sanity', 'Disease Carriers', 'Bonded Fetch', 'Release the Ants', 'Standing Troops', 'Greenweaver Druid', 'Bone Flute', 'Isperia the Inscrutable', 'Rally the Righteous', 'Oath of Liliana', 'Raise Dead', 'Paraselene', 'Strength of Arms', 'Ogre Shaman', 'Leshrac''s Rite', 'Symbiotic Wurm', 'Treefolk Mystic', 'Life and Limb', 'Briarberry Cohort', 'Recuperate', 'Into the Void', 'Ravenous Bloodseeker', 'Endangered Armodon', 'Blessings of Nature', 'Soul Strings', 'Wailing Ghoul', 'Postmortem Lunge', 'Felhide Petrifier', 'Grim Contest', 'Kindle the Carnage', 'Daily Regimen', 'Nomads'' Assembly', 'Healing Salve', 'Graceful Adept', 'Dissipate', 'Fertile Imagination', 'Candles'' Glow', 'Reversal of Fortune', 'Mask of Avacyn', 'Limits of Solidarity', 'Sangrite Surge', 'Animate Artifact', 'Opal-Eye, Konda''s Yojimbo', 'Ghoulcaller''s Accomplice', 'Stone Quarry', 'Riot Ringleader', 'Circle of Solace', 'Illusory Demon', 'Rakshasa''s Secret', 'Merfolk Skyscout', 'Compost', 'Frenzied Tilling', 'Ivory Cup', 'Barren Glory', 'Rolling Temblor', 'Jeskai Infiltrator', 'Crusader of Odric', 'Flaying Tendrils', 'Selesnya Sanctuary', 'Master Healer', 'Takeno''s Cavalry', 'Lightning Prowess', 'Stensia Banquet', 'Urborg Uprising', 'Solemn Offering', 'Aether Figment', 'Myr Propagator', 'Sandskin', 'Grizzled Leotau', 'Swordwise Centaur', 'Necromancer''s Assistant', 'Executioner''s Swing', 'Helm of the Ghastlord', 'Blighted Steppe', 'Compelling Deterrence', 'Burning-Eye Zubera', 'Scuttlemutt', 'Renegade Wheelsmith', 'Highland Game', 'Tel-Jilad Outrider', 'Encroach', 'Sosuke''s Summons', 'Fate Unraveler', 'Horror of the Dim', 'Wild Guess', 'Fire Juggler', 'Ruthless Knave', 'Guise of Fire', 'Scars of the Veteran', 'Saproling Burst', 'Wall of Mulch', 'Surging Dementia', 'Jhessian Infiltrator', 'Fyndhorn Elves', 'Dawnstrike Paladin', 'War Oracle', 'Pore Over the Pages', 'Countermand', 'Champion of Arashin', 'Thopter Squadron', 'Arcbound Wanderer', 'Griffin Guide', 'Warbreak Trumpeter', 'Fiery Temper', 'Retaliator Griffin', 'Weed-Pruner Poplar', 'Conifer Strider', 'Sixth Sense', 'Merieke Ri Berit', 'Rend Flesh', 'Aspect of Gorgon', 'Ritual of Rejuvenation', 'Kaervek the Merciless', 'Pilgrim of the Fires', 'Stoic Rebuttal', 'Infectious Horror', 'Jangling Automaton', 'Grovetender Druids', 'Banners Raised', 'Bala Ged Thief', 'Cunning', 'Rock Jockey', 'Decision Paralysis', 'Aquastrand Spider', 'Snapping Drake', 'Surge of Righteousness', 'Hundroog', 'Purge the Profane', 'Kozilek''s Shrieker', 'Menacing Ogre', 'Whirlwind Adept', 'Phyrexia''s Core', 'Elemental Bond', 'Safehold Duo', 'Felidar Sovereign', 'Bubbling Cauldron', 'Curse of Echoes', 'Stoneforge Acolyte', 'Olivia''s Dragoon', 'Advanced Stitchwing', 'Krosan Beast', 'Warren Pilferers', 'Necromantic Thirst', 'Bellowing Aegisaur', 'Second Harvest', 'Village Elder', 'Fire Tempest', 'Riddlesmith', 'Crawling Filth', 'Voidwalk', 'Shipbreaker Kraken', 'Ghost Council of Orzhova', 'Coral Trickster', 'Crib Swap', 'Thrull Champion', 'Battle-Mad Ronin', 'Jwari Shapeshifter', 'Glaring Spotlight', 'Travel Preparations', 'Awakener Druid', 'Scattershot', 'Web', 'Workshop Assistant', 'Aethertorch Renegade', 'Tears of Rage', 'Goblin Gardener', 'Healing Hands', 'Guardian of Solitude', 'Gruesome Encore', 'Pilfered Plans', 'Kytheon''s Irregulars', 'Mage-Ring Responder', 'Barktooth Warbeard', 'Exorcist', 'Cantivore', 'Cavern Lampad', 'Auriok Sunchaser', 'Mistmeadow Witch', 'Suicidal Charge', 'Manaplasm', 'Specter''s Wail', 'Shrewd Hatchling', 'Moldervine Cloak', 'Resounding Silence', 'Sultai Banner', 'Conversion Chamber', 'Akron Legionnaire', 'Pinpoint Avalanche', 'Synchronized Strike', 'Kithkin Harbinger', 'Ainok Bond-Kin', 'Scavenger Drake', 'Proteus Machine', 'Balduvian Dead', 'Revered Dead', 'Cloak and Dagger', 'Gruesome Deformity', 'Fortitude', 'Rakdos Guildmage', 'Turtleshell Changeling', 'Frontline Sage', 'Assault // Battery', 'Karametra''s Favor', 'Crowd''s Favor', 'Ring of Evos Isle', 'Dauthi Trapper', 'Mournwhelk', 'Putrefy', 'Blinding Powder', 'Radiant Purge', 'Drowner Initiate', 'Frontline Rebel', 'Faerie Tauntings', 'Broken Visage', 'Warped Devotion', 'Overblaze', 'Psychic Surgery', 'Dreampod Druid', 'Paladin of Prahv', 'Trip Wire', 'Disharmony', 'Hall of Triumph', 'Salivating Gremlins', 'Python', 'Test of Faith', 'Glacial Crasher', 'Bosh, Iron Golem', 'Stalwart Shield-Bearers', 'Secrets of the Dead', 'Goblin Psychopath', 'Scion of the Ur-Dragon', 'Ice Floe', 'Stalking Yeti', 'Spider Spawning', 'Ripscale Predator', 'Angelic Captain', 'Shaper Parasite', 'Sidar Jabari', 'Crimson Muckwader', 'Precise Strike', 'Razorfield Rhino', 'Flayer of the Hatebound', 'Tuktuk the Explorer', 'Careful Consideration', 'Scarecrow', 'Swirling Spriggan', 'Knighthood', 'Talisman of Impulse', 'Tyrant''s Choice', 'Drowned Rusalka', 'Hunting Moa', 'Anoint', 'Priests of Norn', 'Elvish Branchbender', 'Mindsparker', 'Aeolipile', 'Orb of Dreams', 'Lurking Crocodile', 'Spire Owl', 'Unnatural Endurance', 'Returned Reveler', 'Shadow Alley Denizen', 'Cockatrice', 'Oran-Rief Invoker', 'Mardu Blazebringer', 'Kessig Forgemaster', 'Three Dreams', 'Assert Authority', 'Warriors'' Lesson', 'Brawler''s Plate', 'Golem-Skin Gauntlets', 'Devoted Retainer', 'Conquering Manticore', 'Deathbringer Regent', 'Moonsilver Spear', 'Pin to the Earth', 'Hidden Dragonslayer', 'Venerable Monk', 'Siege Dragon', 'Dispersal Shield', 'Auriok Glaivemaster', 'Deem Worthy', 'Thrull Parasite', 'Disrupting Scepter', 'Shimian Specter', 'Sway of the Stars', 'Grazing Gladehart', 'Wake of Vultures', 'Wild Aesthir', 'Vulshok Morningstar', 'Enigma Sphinx', 'Bewilder', 'Angel of Light', 'Ikiral Outrider', 'Wight of Precinct Six', 'Hundred-Handed One', 'Nightwing Shade', 'Silk Net', 'Arctic Wolves', 'Walking Desecration', 'Sage of the Inward Eye', 'Crackdown Construct', 'Firebreathing', 'Dread Defiler', 'Pathway Arrows', 'Thopter Assembly', 'Preeminent Captain', 'Brink of Madness', 'Safe Passage', 'Apathy', 'Cytoplast Manipulator', 'Mnemonic Nexus', 'Puppeteer', 'Bellowing Tanglewurm', 'Blinding Light', 'Kozilek''s Predator', 'Twincast', 'Stormfront Riders', 'Bloodbond Vampire', 'Kite Shield', 'Subterranean Shambler', 'Spiritual Visit', 'Phyrexian Vatmother', 'Night Market Aeronaut', 'Kithkin Daggerdare', 'Dread', 'Skeletonize', 'Kashi-Tribe Warriors', 'Ludevic''s Test Subject', 'Contradict', 'Tah-Crop Skirmisher', 'Canyon Lurkers', 'Verdant Rebirth', 'Izzet Chronarch', 'Uncle Istvan', 'Crabapple Cohort', 'Blighted Woodland', 'Celestial Flare', 'Dwarven Vigilantes', 'Lunk Errant', 'Rolling Stones', 'Sporeback Troll', 'Lava Flow', 'Sabertooth Outrider', 'Qarsi Deceiver', 'Hammerheim Deadeye', 'Vermiculos', 'Hope Against Hope', 'Treetop Sentinel', 'Tajuru Warcaller', 'Lim-Dûl''s High Guard', 'Naga Oracle', 'Distant Memories', 'Glassblower''s Puzzleknot', 'Durable Handicraft', 'Waterwhirl', 'Horror of Horrors', 'Heroic Defiance', 'Hussar Patrol', 'Izzet Guildgate', 'Stalking Assassin', 'Moonring Mirror', 'Prowess of the Fair', 'Cradle Guard', 'Benefaction of Rhonas', 'Harbinger of Spring', 'Walker of the Grove', 'Lonely Sandbar', 'Sparkmage''s Gambit', 'Viridian Revel', 'Fervent Cathar', 'Goblin Dynamo', 'Curiosity', 'Highland Lake', 'Fallen Angel', 'Premature Burial', 'Dread Specter', 'Thalia''s Lancers', 'Kjeldoran Gargoyle', 'Brood Monitor', 'Tomb of the Spirit Dragon', 'Cobalt Golem', 'Noggin Whack', 'Mana Seism', 'Staff of the Flame Magus', 'Yukora, the Prisoner', 'Battle Mastery', 'Spike-Tailed Ceratops', 'Sanctum Guardian', 'Blade of the Sixth Pride', 'Pulse of the Forge', 'Aven Farseer', 'Rapacious One', 'Chilling Grasp', 'Filigree Familiar', 'Ajani''s Mantra', 'Dromad Purebred', 'Fated Intervention', 'Stonefury', 'Magma Phoenix', 'Fog', 'Woolly Razorback', 'Quest for the Goblin Lord', 'Wandering Wolf', 'Make a Stand', 'Akoum Firebird', 'Volatile Rig', 'Manalith', 'Gargoyle Sentinel', 'Ooze Garden', 'Nagging Thoughts', 'Slash of Talons', 'Dragon Mask', 'Demolition Stomper', 'Helm of the Gods', 'Burning Shield Askari', 'Retreat to Hagra', 'Deconstruct', 'Wall of Swords', 'Scryb Sprites', 'Unnatural Predation', 'Soldevi Golem', 'Darksteel Sentinel', 'Inquisitor''s Flail', 'Quicksmith Genius', 'Drumhunter', 'Stallion of Ashmouth', 'Master of Pearls', 'Soratami Seer', 'Spiteful Returned', 'Sword of the Ages', 'Kobold Taskmaster', 'Wreak Havoc', 'Hotheaded Giant', 'Looming Spires', 'Skitter of Lizards', 'Sky Skiff', 'Morgue Burst', 'Snowhorn Rider', 'Fall of the Titans', 'Dance with Devils', 'Wispweaver Angel', 'Lurking Chupacabra', 'Glowering Rogon', 'Violent Ultimatum', 'Dauthi Marauder', 'Wayward Giant', 'Pack''s Disdain', 'Rampant Growth', 'Mishra, Artificer Prodigy', 'Circle of Elders', 'Fa''adiyah Seer', 'Marshmist Titan', 'Dark Revenant', 'Odunos River Trawler', 'Inferno Jet', 'Mana Geyser', 'Myr Landshaper', 'Feebleness', 'Fuel for the Cause', 'Emissary of Hope', 'Oath of Jace', 'Rummaging Wizard', 'Counterflux', 'Ekundu Cyclops', 'Fog of Gnats', 'Nest Robber', 'Channel the Suns', 'Bounding Krasis', 'Stampeding Rhino', 'Echo Tracer', 'Disarm', 'River Bear', 'Weirding Wood', 'Favorable Destiny', 'Stonehewer Giant', 'Crow of Dark Tidings', 'Longshot Squad', 'Fiery Mantle', 'Rakdos Guildgate', 'Cry of Contrition', 'Furnace Spirit', 'Kjeldoran Elite Guard', 'Village Cannibals', 'Skeletal Changeling', 'Barkshell Blessing', 'Woodweaver''s Puzzleknot', 'Portent of Betrayal', 'Visionary Augmenter', 'Lyev Decree', 'Skyblinder Staff', 'Frenetic Raptor', 'Banishment Decree', 'Jeskai Windscout', 'Due Respect', 'Canyon Minotaur', 'Hold at Bay', 'Shock Troops', 'Ruinous Gremlin', 'Hinder', 'Alabaster Mage', 'Reservoir Walker', 'Call to Arms', 'Nebelgast Herald', 'Timid Drake', 'Foe-Razer Regent', 'Anchor to the Aether', 'Geier Reach Bandit', 'Power Conduit', 'Viridian Shaman', 'Orzhov Cluestone', 'Glintwing Invoker', 'Titanium Golem', 'Open into Wonder', 'Magnetic Mine', 'Temporal Isolation', 'Deluge', 'Ethereal Guidance', 'Overwhelming Stampede', 'Purity', 'Retribution', 'Aegis of Honor', 'Sibsig Muckdraggers', 'Crash of Rhinos', 'Ashnod''s Cylix', 'Phosphorescent Feast', 'Into the Fray', 'Deadbridge Goliath', 'Illusionist''s Stratagem', 'Conclave Phalanx', 'Fiery Cannonade', 'Kumano, Master Yamabushi', 'Psychotic Fury', 'Elite Archers', 'Dragon Engine', 'Oboro Envoy', 'Highway Robber', 'Copperhoof Vorrac', 'Induce Paranoia', 'Inner-Flame Igniter', 'Honden of Life''s Web', 'Diluvian Primordial', 'Clay Statue', 'Altar of the Brood', 'Sight of the Scalelords', 'Serra''s Boon', 'Crater Hellion', 'Dimir Infiltrator', 'Archon of the Triumvirate', 'Bone Saw', 'Blinkmoth Well', 'Honed Khopesh', 'Siren Lookout', 'Tatterkite', 'Ruthless Cullblade', 'From Under the Floorboards', 'Maulfist Doorbuster', 'Iron-Heart Chimera', 'Sanctuary Cat', 'Trostani''s Summoner', 'Glyph Keeper', 'Neurok Transmuter', 'Nettling Curse', 'Ember Gale', 'Builder''s Blessing', 'Wandering Mage', 'Thought Dissector', 'Turn Against', 'Ruthless Sniper', 'Sidewinder Naga', 'Gilt-Leaf Ambush', 'Vengeful Archon', 'Gallows at Willow Hill', 'Avatar of Might', 'Scabland', 'Sanctifier of Souls', 'Citanul Centaurs', 'Dromoka Warrior', 'Giant Ambush Beetle', 'Runeclaw Bear', 'Pentavus', 'Mark of the Vampire', 'Fighting Chance', 'Pentarch Ward', 'Lady Orca', 'Endless Sands', 'Cursebreak', 'Soul Collector', 'War Behemoth', 'False Cure', 'Spinebiter', 'Kytheon''s Tactics', 'Break Open', 'Festerhide Boar', 'Vortex Elemental', 'Delirium Skeins', 'Cruel Finality', 'Marshdrinker Giant', 'Archetype of Imagination', 'Horribly Awry', 'Water Elemental', 'Font of Fortunes', 'Necratog', 'Powerstone Minefield', 'Shadow Lance', 'Piranha Marsh', 'Tezzeret''s Ambition', 'Splinterfright', 'Saheeli''s Artistry', 'Lavastep Raider', 'Final Reward', 'Stir the Pride', 'Carrion Thrash', 'Shoreline Ranger', 'Barbed Lightning', 'Spire Monitor', 'Moonglove Extract', 'Demystify', 'Smother', 'Vanguard of Brimaz', 'Necrogen Spellbomb', 'Sandstone Bridge', 'Intimidator Initiate', 'Greenseeker', 'Swooping Talon', 'Tormented Angel', 'Embraal Bruiser', 'Knight of Stromgald', 'Goblin Settler', 'Spontaneous Combustion', 'Icy Blast', 'Wojek Embermage', 'Frozen Solid', 'Nomad Outpost', 'Ronom Hulk', 'Ironclaw Orcs', 'Sinister Concoction', 'Ancient Amphitheater', 'Sokenzan Spellblade', 'Comparative Analysis', 'Greenhilt Trainee', 'Raven Guild Initiate', 'Spirit Mirror', 'Savage Summoning', 'Fyndhorn Elder', 'Culling Sun', 'Voidstone Gargoyle', 'Corpsejack Menace', 'Shock', 'Barony Vampire', 'Welcome to the Fold', 'Karoo Meerkat', 'Keeper of the Beasts', 'Pull from Eternity', 'True-Faith Censer', 'Kinsbaile Skirmisher', 'Ashling''s Prerogative', 'Waterspout Djinn', 'Resolute Blademaster', 'Stone Haven Medic', 'Infernal Scarring', 'Divination', 'Magnifying Glass', 'Sarcomite Myr', 'Spined Basher', 'Viashino Slaughtermaster', 'Stream Hopper', 'Angelic Overseer', 'Calciform Pools', 'Chandra''s Fury', 'Nim Shrieker', 'Jace''s Sanctum', 'Encroaching Wastes', 'Hamlet Captain', 'Selective Memory', 'Merciless Resolve', 'Moonlight Geist', 'Trespassing Souleater', 'Autumn''s Veil', 'Oath of Chandra', 'Enormous Baloth', 'Kingfisher', 'Cliff Threader', 'Necrite', 'Shiv''s Embrace', 'Battlewise Valor', 'Elaborate Firecannon', 'Chartooth Cougar', 'Tribal Forcemage', 'Grave Bramble', 'Devouring Rage', 'Stonybrook Angler', 'Clutch of Undeath', 'Port Inspector', 'Lush Growth', 'Bringer of the Red Dawn', 'Slumbering Tora', 'Dauntless Dourbark', 'Panther Warriors', 'Soul Tithe', 'Demon''s Grasp', 'Staff of the Wild Magus', 'Repopulate', 'Reaper of the Wilds', 'Thassa''s Rebuff', 'Staff of the Sun Magus', 'Avacyn''s Pilgrim', 'Fylamarid', 'Nissa''s Pilgrimage', 'Kitesail Scout', 'Teardrop Kami', 'Trial of Knowledge', 'Dawntreader Elk', 'Rise from the Tides', 'Viscerid Armor', 'Boneyard Wurm', 'Energy Arc', 'Gnawing Zombie', 'Mitotic Slime', 'Wastes', 'Boggart Birth Rite', 'Bred for the Hunt', 'Gibbering Descent', 'Oni of Wild Places', 'Cellar Door', 'Howling Banshee', 'Belfry Spirit', 'Zenith Seeker', 'Damping Matrix', 'King Macar, the Gold-Cursed', 'Ihsan''s Shade', 'Scout the Borders', 'Duskhunter Bat', 'Grafted Exoskeleton', 'Glare of Subdual', 'Ogre Savant', 'Goblin Grenadiers', 'Aven Augur', 'Coiling Oracle', 'Elder Land Wurm', 'Scour from Existence', 'Magus of the Candelabra', 'Stoic Builder', 'Foriysian Interceptor', 'Raised by Wolves', 'Tah-Crop Elite', 'Tectonic Rift', 'Skyhunter Prowler', 'Citanul Druid', 'Ravaging Riftwurm', 'Flowstone Hellion', 'Sultai Soothsayer', 'Daring Sleuth', 'Sootfeather Flock', 'Crossway Vampire', 'Tandem Tactics', 'Implement of Examination', 'Teferi''s Honor Guard', 'Thraben Sentry', 'Scab-Clan Giant', 'Castle', 'Syncopate', 'Nearheath Pilgrim', 'White Shield Crusader', 'Stonewood Invoker', 'Heliophial', 'Kavu Mauler', 'Krovikan Fetish', 'Eternal Dragon', 'Hellkite Charger', 'To the Slaughter', 'Altar of Shadows', 'Jhessian Thief', 'Failed Inspection', 'Golem Foundry', 'Urborg Mindsucker', 'Xathrid Gorgon', 'Divine Offering', 'Storm Entity', 'Launch Party', 'Docent of Perfection', 'Venomous Fangs', 'Gaze of Justice', 'Interdict', 'Mounted Archers', 'Vital Surge', 'Gate Hound', 'Exotic Disease', 'Concerted Effort', 'Mindshrieker', 'Invasion Plans', 'Lava Zombie', 'Maggot Carrier', 'Goblin Battle Jester', 'Ring of Xathrid', 'Improvised Armor', 'Mantle of Leadership', 'Sabertooth Wyvern', 'Chorus of the Tides', 'Makeshift Mannequin', 'Krosan Cloudscraper', 'Radiant, Archangel', 'Rush of Battle', 'Holy Strength', 'Kessig Cagebreakers', 'Dragon Fodder', 'Xathrid Slyblade', 'Excoriate', 'Rattleblaze Scarecrow', 'Unstoppable Ash', 'Brass-Talon Chimera', 'Overrun', 'Raptor Hatchling', 'Priest of Iroas', 'Endoskeleton', 'Wall of Kelp', 'Grixis Slavedriver', 'Argent Mutation', 'Thassa''s Bounty', 'Flameborn Viron', 'Megantic Sliver', 'Telepathic Spies', 'Bog Raiders', 'Stabbing Pain', 'Aysen Bureaucrats', 'Ragnar', 'Risen Sanctuary', 'Sunseed Nurturer', 'Overeager Apprentice', 'Cartographer', 'Mindstab Thrull', 'Fatal Attraction', 'Cave Tiger', 'Ogre Marauder', 'Grasp of the Hieromancer', 'Permafrost Trap', 'Kuldotha Phoenix', 'Arcbound Bruiser', 'Species Gorger', 'Blood Tribute', 'Skarrg, the Rage Pits', 'Desperate Sentry', 'Razormane Masticore', 'Gilded Sentinel', 'Stensia Bloodhall', 'Dark Favor', 'Icatian Crier', 'Argent Sphinx', 'Lamplighter of Selhoff', 'Promised Kannushi', 'Untamed Wilds', 'Vampire Cutthroat', 'Hollow Dogs', 'Vengeful Firebrand', 'Aligned Hedron Network', 'Titanic Growth', 'Nantuko Husk', 'Entropic Eidolon', 'Archdemon of Unx', 'Living Lore', 'Aquitect''s Will', 'Convincing Mirage', 'Hanweir Lancer', 'Mask of the Mimic', 'Tresserhorn Sinks', 'Simian Grunts', 'Plague Belcher', 'Identity Crisis', 'Fathom Fleet Firebrand', 'Dromoka Dunecaster', 'Redeem the Lost', 'Ovalchase Daredevil', 'Shivan Wurm', 'Ondu Giant', 'Unravel the Aether', 'Goblin War Paint', 'Prophet of Kruphix', 'Angel''s Mercy', 'Tangle Angler', 'Darkthicket Wolf', 'Defiant Greatmaw', 'Ursapine', 'Heap Doll', 'Staunch-Hearted Warrior', 'Shape the Sands', 'Akoum Boulderfoot', 'Expedition Raptor', 'Leery Fogbeast', 'Repentance', 'Festercreep', 'Changeling Berserker', 'Severed Legion', 'Hostile Realm', 'Indigo Faerie', 'Naga Vitalist', 'Hanweir Watchkeep', 'Mesmeric Fiend', 'Purify', 'Stinging Licid', 'Ferropede', 'Nature''s Wrath', 'Nissa''s Chosen', 'Goblin Lackey', 'Nullstone Gargoyle', 'Roterothopter', 'Rabble-Rouser', 'Scatter the Seeds', 'Yawgmoth Demon', 'Gathan Raiders', 'Virulent Swipe', 'Call to the Feast', 'Arbalest Elite', 'Fortified Rampart', 'Mourning Thrull', 'Tel-Jilad Justice', 'Drownyard Temple', 'Thriving Rhino', 'Youthful Knight', 'Khenra Charioteer', 'Village Bell-Ringer', 'Icatian Scout', 'Grind // Dust', 'Thundersong Trumpeter', 'Eye of the Storm', 'Hail of Arrows', 'Mesmeric Trance', 'Harvest Mage', 'Kinsbaile Borderguard', 'Ethereal Ambush', 'Lose Hope', 'Warmonger', 'Words of Wind', 'Flowstone Channeler', 'Diplomacy of the Wastes', 'Send to Sleep', 'Goldnight Redeemer', 'Herald of Kozilek', 'Stronghold Rats', 'Protection of the Hekma', 'Forced Retreat', 'Nettletooth Djinn', 'Hazoret''s Undying Fury', 'Fade from Memory', 'Anaba Shaman', 'Fire Drake', 'Curse of the Swine', 'Knight of Dusk', 'Jokulmorder', 'Rusted Relic', 'Bronze Horse', 'Slayer''s Plate', 'Hunted Phantasm', 'Tangle', 'Naya Sojourners', 'Aven Fisher', 'Reflex Sliver', 'Changeling Titan', 'Spark Jolt', 'Fanning the Flames', 'Jungle Shrine', 'Nessian Game Warden', 'Ogre Menial', 'Vengeance', 'Behind the Scenes', 'Wildfire Cerberus', 'Fortress Cyclops', 'Stave Off', 'Defiant Ogre', 'Bomber Corps', 'Kitsune Mystic', 'Floodwater Dam', 'War Barge', 'Dazzling Reflection', 'Minion of Leshrac', 'Steal Enchantment', 'Thorned Moloch', 'First Response', 'Clockwork Hydra', 'Wind Drake', 'Warthog', 'Char-Rumbler', 'Field Creeper', 'Arms Dealer', 'Rise to the Challenge', 'Goblin Artillery', 'Ambush Party', 'Turntimber Ranger', 'Rip-Clan Crasher', 'Ondu War Cleric', 'Ignorant Bliss', 'Zhalfirin Commander', 'Bladetusk Boar', 'Downpour', 'Uncovered Clues', 'Reckless Waif', 'Thalakos Scout', 'Kin-Tree Warden', 'Serra''s Blessing', 'Ordruun Veteran', 'Goblin Legionnaire', 'Falkenrath Torturer', 'Golgari Guildgate', 'Vanishing', 'Kongming, "Sleeping Dragon"', 'Sea God''s Revenge', 'Dross Scorpion', 'Wild Nacatl', 'Ersatz Gnomes', 'Scrounging Bandar', 'Scatter to the Winds', 'Beastbreaker of Bala Ged', 'Fork in the Road', 'Nissa''s Defeat', 'Sunblade Elf', 'Incursion Specialist', 'Kabira Vindicator', 'Cavern Thoctar', 'Copper Carapace', 'Dissenter''s Deliverance', 'Illusionary Servant', 'Vebulid', 'Astral Steel', 'Hair-Strung Koto', 'Cloaked Siren', 'Fissure', 'Call to Heel', 'Struggle // Survive', 'Stingmoggie', 'Kjeldoran Outpost', 'Sage of Shaila''s Claim', 'Grave Betrayal', 'Nova Pentacle', 'Rescue from the Underworld', 'Fogwalker', 'Living Totem', 'Treasure Trove', 'Fists of the Demigod', 'Kill Shot', 'Murderer''s Axe', 'Metalspinner''s Puzzleknot', 'Fire Imp', 'Ancient Ooze', 'Magus of the Library', 'Jackal Pup', 'Halimar Excavator', 'Corpse Connoisseur', 'Sibsig Host', 'Opportunity', 'Dream Tides', 'Sagu Mauler', 'Bellows Lizard', 'Consuming Ferocity', 'Legacy Weapon', 'Grasslands', 'Steadfast Armasaur', 'Implement of Improvement', 'Vengeful Rebirth', 'Ifh-Bíff Efreet', 'Pensive Minotaur', 'Zur''s Weirding', 'Blind Hunter', 'Chameleon Blur', 'Opportunist', 'Shambling Ghoul', 'Bloodbriar', 'Dryad''s Favor', 'Contempt', 'Electrify', 'Orim, Samite Healer', 'Erhnam Djinn', 'Write into Being', 'Elgaud Inquisitor', 'Swerve', 'Might Beyond Reason', 'Aven Reedstalker', 'Slingbow Trap', 'Bladed Pinions', 'Fangren Pathcutter', 'Gwyllion Hedge-Mage', 'Shamble Back', 'Gearshift Ace', 'Retreat to Emeria', 'Combust', 'Impelled Giant', 'Icatian Town', 'Vessel of Paramnesia', 'Shackles', 'Stern Constable', 'Keldon Halberdier', 'Spring Cleaning', 'Omenspeaker', 'Clock of Omens', 'Broodmate Dragon', 'Cloudcrest Lake', 'Axebane Stag', 'Traitor''s Clutch', 'Colossus of Akros', 'Talas Researcher', 'Dimensional Breach', 'Expedition Envoy', 'Pious Evangel', 'Deny Reality', 'Scepter of Empires', 'Blinding Fog', 'Aether Membrane', 'Poisonbelly Ogre', 'Wild Ricochet', 'Golgari Cluestone', 'Sight Beyond Sight', 'Yawning Fissure', 'Sadistic Sacrament', 'Crime // Punishment', 'Petrahydrox', 'Bonds of Quicksilver', 'Fling', 'Pyreheart Wolf', 'Blinding Flare', 'Reckless Imp', 'Viashino Racketeer', 'Windrider Patrol', 'Capricious Efreet', 'Sigiled Skink', 'Vedalken Blademaster', 'Iname, Death Aspect', 'Dewdrop Spy', 'Cursed Rack', 'Sacred Wolf', 'Dauthi Jackal', 'Orchard Spirit', 'Staff of the Mind Magus', 'Albino Troll', 'Searing Touch', 'Scythe of the Wretched', 'March of the Returned', 'Geist-Fueled Scarecrow', 'Cackling Flames', 'Fiery Justice', 'Gliding Licid', 'Bioplasm', 'Junún Efreet', 'Moonhold', 'Hollowborn Barghest', 'Resolute Survivors', 'Ceaseless Searblades', 'Repay in Kind', 'Defiant Bloodlord', 'Ongoing Investigation', 'Messenger Falcons', 'Living Wall', 'Resize', 'Reprisal', 'Weed Strangle', 'Sultai Ascendancy', 'Rakavolver', 'Ghost-Lit Stalker', 'The Unspeakable', 'Fear', 'Skirk Shaman', 'Lay Claim', 'Pierce Strider', 'Coiled Tinviper', 'Wanted Scoundrels', 'Teller of Tales', 'Coalition Victory', 'Bishop of Rebirth', 'Runeflare Trap', 'Clockwork Steed', 'Make Obsolete', 'Clutch of the Undercity', 'Essence Feed', 'Wily Bandar', 'Skyscribing', 'Woebringer Demon', 'Inventor''s Apprentice', 'Fleeting Memories', 'Corrupted Crossroads', 'Realm Seekers', 'Healer of the Pride', 'March from the Tomb', 'Fatigue', 'Extinguish All Hope', 'Avarice Totem', 'General''s Kabuto', 'Safewright Quest', 'Rumbling Baloth', 'Wormwood Dryad', 'Initiate''s Companion', 'Tainted Strike', 'Sunhome Guildmage', 'Cerebral Eruption', 'Armorer Guildmage', 'Chamber of Manipulation', 'Martyred Rusalka', 'Warmind Infantry', 'Gorger Wurm', 'Lowland Tracker', 'Selesnya Evangel', 'Stromkirk Mentor', 'Screeching Drake', 'Akuta, Born of Ash', 'Servo Exhibition', 'Slashing Tiger', 'Charging Slateback', 'Plaxcaster Frogling', 'Earthbrawn', 'Inertia Bubble', 'Acrobatic Maneuver', 'Thunder Spirit', 'Exalted Dragon', 'Merfolk of the Depths', 'Reaping the Rewards', 'Hikari, Twilight Guardian', 'Steal Artifact', 'Wit''s End', 'Tideshaper Mystic', 'Kobold Overlord', 'Audacious Infiltrator', 'Heed the Mists', 'Monstrous Onslaught', 'Chaotic Backlash', 'Renegade Doppelganger', 'Sage''s Row Denizen', 'Stormwing Dragon', 'Daybreak Ranger', 'Ghitu Slinger', 'Faith''s Fetters', 'Abhorrent Overlord', 'Simic Keyrune', 'Reef Shaman', 'Wooden Sphere', 'Mirran Mettle', 'Ana Battlemage', 'Abandon Hope', 'Terraformer', 'Hixus, Prison Warden', 'Rending Vines', 'Nature''s Spiral', 'Nimbus of the Isles', 'Font of Vigor', 'Cateran Brute', 'Failure // Comply', 'Putrid Warrior', 'Nimbus Wings', 'Scaled Behemoth', 'Fencer''s Magemark', 'Jelenn Sphinx', 'Steadfast Sentinel', 'Epic Proportions', 'Ordeal of Purphoros', 'Carnage Wurm', 'Slavering Nulls', 'Demonic Torment', 'Offering to Asha', 'Thunder Brute', 'Voodoo Doll', 'Halo Hunter', 'Cloudcrown Oak', 'Skymark Roc', 'Withering Wisps', 'Cephalid Retainer', 'Tromokratis', 'Ixalli''s Diviner', 'Jungle Basin', 'Elite Skirmisher', 'Ghosts of the Innocent', 'Piety Charm', 'Reverent Hunter', 'Minion of the Wastes', 'Nomads en-Kor', 'Frenetic Sliver', 'Death''s Duet', 'Witch-Maw Nephilim', 'Winding Wurm', 'Final Punishment', 'Quest for Ula''s Temple', 'Boon of Erebos', 'Stormcloud Djinn', 'Sharpened Pitchfork', 'Wildslayer Elves', 'Qasali Ambusher', 'Twist Allegiance', 'Expose Evil', 'Angel''s Trumpet', 'Earthen Arms', 'Airdrop Condor', 'Unified Strike', 'Firemane Angel', 'Slice in Twain', 'Scavenging Ghoul', 'False Defeat', 'Grief Tyrant', 'Noggle Bandit', 'Honored Hydra', 'Feast on the Fallen', 'Hunding Gjornersen', 'Talonrend', 'Runed Servitor', 'Aerial Formation', 'Cabal Ritual', 'Rofellos, Llanowar Emissary', 'Unyielding Krumar', 'Befoul', 'Flowstone Charger', 'Fervent Denial', 'Toils of Night and Day', 'Rakshasa Vizier', 'Brazen Buccaneers', 'Keldon Mantle', 'Otherworldly Journey', 'Din of the Fireherd', 'Death by Dragons', 'Altar of the Lost', 'Uktabi Orangutan', 'Reckless Charge', 'Visions of Brutality', 'Goblin General', 'Watchdog', 'Thopter Engineer', 'Shinen of Fear''s Chill', 'Vile Deacon', 'Nightbird''s Clutches', 'Juggernaut', 'Roiling Waters', 'Stingscourger', 'Oblivion Strike', 'Augmenting Automaton', 'Heart-Piercer Manticore', 'Stingerfling Spider', 'Crypsis', 'Planeswalker''s Scorn', 'Exultant Cultist', 'Ghirapur Orrery', 'Sporemound', 'Forgotten Lore', 'Favor of the Woods', 'Scouring Sands', 'Reincarnation', 'Nantuko Disciple', 'Rhox', 'Wall of Limbs', 'Tenacity', 'Prodigal Sorcerer', 'Reach Through Mists', 'Traveler''s Amulet', 'Jade Monolith', 'Contract Killing', 'Chronosavant', 'Stitchwing Skaab', 'Towering Baloth', 'Aether Adept', 'Writ of Passage', 'Mine Excavation', 'Orcish Squatters', 'Overwhelming Intellect', 'Alchemist''s Greeting', 'Akki Rockspeaker', 'Brine Seer', 'Whipcorder', 'Sword-Point Diplomacy', 'Black Knight', 'Wayward Soul', 'Words of Wilding', 'Turbulent Dreams', 'All Suns'' Dawn', 'Bad River', 'Swell of Growth', 'Slith Predator', 'Carrion Call', 'Lowland Basilisk', 'Vampire Aristocrat', 'Gilt-Leaf Winnower', 'Seraph of the Suns', 'Withstand Death', 'Duskdale Wurm', 'Shivan Phoenix', 'Meletis Charlatan', 'Lupine Prototype', 'Volcano Imp', 'Cower in Fear', 'Viridian Betrayers', 'Adamaro, First to Desire', 'Bright Reprisal', 'Grisly Survivor', 'Momentum', 'Ophidian Eye', 'Font of Ire', 'Touch of the Void', 'Hold the Line', 'Skeletal Vampire', 'Blinding Drone', 'Alabaster Potion', 'Granite Grip', 'Hex', 'Aetherstream Leopard', 'Forgeborn Oreads', 'Vigilante Justice', 'Toil // Trouble', 'Stuffy Doll', 'Heartseeker', 'Butcher of the Horde', 'Triskelion', 'Chronomaton', 'Cliffhaven Vampire', 'Drana, Kalastria Bloodchief', 'Black Oak of Odunos', 'Take Inventory', 'Carrion Crow', 'Soltari Trooper', 'Eron the Relentless', 'Dead // Gone', 'Haunted Dead', 'Leonin Den-Guard', 'Knotvine Mystic', 'Heir of Falkenrath', 'Implement of Combustion', 'Yoked Ox', 'Solitary Hunter', 'Seaside Citadel', 'Extricator of Sin', 'Electryte', 'Shriekhorn', 'Scrapdiver Serpent', 'Chain of Silence', 'Storm Sculptor', 'Drudge Skeletons', 'Filigree Fracture', 'Riot Piker', 'Umbra Stalker', 'Tolarian Sentinel', 'Vineshaper Mystic', 'Supernatural Stamina', 'Steel Golem', 'Valakut Predator', 'Stromkirk Condemned', 'Might of the Nephilim', 'Sage of Epityr', 'Devout Witness', 'Uncontrollable Anger', 'Petalmane Baku', 'Sentry of the Underworld', 'Primal Clay', 'Sanctum Plowbeast', 'Evil Eye of Orms-by-Gore', 'Quirion Dryad', 'Ohran Yeti', 'Woeleecher', 'Safeguard', 'Valor Made Real', 'Force Bubble', 'Faceless Devourer', 'Faerie Noble', 'Moltensteel Dragon', 'Allied Strategies', 'Skaab Goliath', 'Disorder', 'Crushing Canopy', 'Makeshift Munitions', 'Prized Unicorn', 'Simic Guildgate', 'Echoing Calm', 'Duergar Assailant', 'Varchild''s Crusader', 'Aeon Chronicler', 'Gerrard''s Battle Cry', 'Fire Servant', 'Break of Day', 'Millikin', 'Heat Shimmer', 'Bludgeon Brawl', 'Phyrexian Colossus', 'Possessed Aven', 'Gruul War Chant', 'Tormented Hero', 'Vedalken Dismisser', 'Scapegoat', 'Dampen Thought', 'Quest for the Gemblades', 'Mage Slayer', 'Radiant Flames', 'Necrobite', 'Greater Harvester', 'Sirocco', 'Nightmarish End', 'Mist Leopard', 'Wooden Stake', 'Paradox Haze', 'Unflinching Courage', 'Viral Drake', 'Simic Cluestone', 'Broodwarden', 'Might Weaver', 'Burst of Speed', 'Luminous Wake', 'Execute', 'Searing Meditation', 'Palinchron', 'Vizier of Deferment', 'Rock Badger', 'Stomp and Howl', 'Swift Justice', 'Veteran Bodyguard', 'Thunderblust', 'Borderland Marauder', 'Chorus of Might', 'Leech Bonder', 'Incendiary Command', 'Set Adrift', 'Haze Frog', 'Wojek Halberdiers', 'Iname, Life Aspect', 'Embodiment of Fury', 'Circle of Protection: Shadow', 'Infiltrator il-Kor', 'Quiet Contemplation', 'Lantern Scout', 'Viscid Lemures', 'Apothecary Initiate', 'Bonded Construct', 'Tezzeret''s Touch', 'Magma Mine', 'Journey of Discovery', 'Arcane Melee', 'Ark of Blight', 'Lost Leonin', 'Gift of Orzhova', 'Tortoise Formation', 'Flight Spellbomb', 'Omen Machine', 'Vastwood Animist', 'Aven Flock', 'Brilliant Ultimatum', 'Duskmantle Prowler', 'Haunting Apparition', 'Glacial Ray', 'Vivisection', 'Lose Calm', 'Sly Requisitioner', 'Chimeric Idol', 'Colfenor''s Plans', 'Ironclad Slayer', 'Grove Rumbler', 'Goblin Bangchuckers', 'Engineered Might', 'Wall of Torches', 'Riot Gear', 'Stampeding Elk Herd', 'Yavimaya Kavu', 'Juniper Order Advocate', 'Lyev Skyknight', 'Cranial Archive', 'Homarid Spawning Bed', 'Lodestone Myr', 'Conundrum Sphinx', 'Gravity Well', 'Kurkesh, Onakke Ancient', 'Skyshroud Ranger', 'Crucible of Fire', 'Body of Jukai', 'Noble Quarry', 'Antler Skulkin', 'Cloud Manta', 'Arcades Sabboth', 'Fires of Yavimaya', 'Raiders'' Spoils', 'Voracious Null', 'Wretched Camel', 'Worldgorger Dragon', 'Ever After', 'Dawn to Dusk', 'Miasmic Mummy', 'Fearsome Temper', 'Contingency Plan', 'Pterodon Knight', 'Vedalken Certarch', 'Refuse // Cooperate', 'Last Stand', 'Slay', 'Bounty of the Luxa', 'Accursed Witch', 'Defender of Law', 'Quarry Hauler', 'Neurok Stealthsuit', 'Sparkmage Apprentice', 'Overwhelming Denial', 'Keening Stone', 'Aerial Predation', 'Kederekt Creeper', 'Urborg Stalker', 'Honorable Passage', 'Lady Evangela', 'Illuminated Wings', 'Skirsdag High Priest', 'Ovinomancer', 'Carnage Gladiator', 'Karplusan Giant', 'Uncaged Fury', 'Bloodrock Cyclops', 'Skeleton Shard', 'Necromancer''s Covenant', 'Sacred Excavation', 'Storm Crow', 'Arc Runner', 'Shadow Rider', 'Blightwidow', 'Vial of Dragonfire', 'Stupefying Touch', 'Seismic Spike', 'Baton of Courage', 'Ambassador Oak', 'Shattered Dreams', 'Coral Fighters', 'Fiery Impulse', 'Avenging Druid', 'Razortip Whip', 'Peace and Quiet', 'Scrounge', 'Kudzu', 'Archetype of Finality', 'Yavimaya Scion', 'Grid Monitor', 'Sunscape Battlemage', 'Dromoka''s Gift', 'Captain''s Call', 'Orcish Bloodpainter', 'Reliquary Monk', 'Soul Conduit', 'Dimir Machinations', 'Infuse with the Elements', 'Yeva''s Forcemage', 'Faithbearer Paladin', 'Violent Impact', 'Canopy Gorger', 'Faerie Mechanist', 'Embersmith', 'Familiar''s Ruse', 'Predatory Focus', 'Aven Liberator', 'Override', 'Cream of the Crop', 'Doomgape', 'Elusive Spellfist', 'Borderland Behemoth', 'Faultgrinder', 'Sanguinary Mage', 'Junktroller', 'Sapphire Drake', 'Jaddi Offshoot', 'Havenwood Wurm', 'Sweep Away', 'Serra Aviary', 'Ranger''s Path', 'Scribe of the Mindful', 'Knollspine Dragon', 'Thrill of the Hunt', 'Sporoloth Ancient', 'Zombie Scavengers', 'Bound // Determined', 'Barbed Sliver', 'Ally Encampment', 'Heartlash Cinder', 'Void Shatter', 'Trove of Temptation', 'Sell-Sword Brute', 'Balduvian Barbarians', 'Explosive Revelation', 'Gnathosaur', 'Biovisionary', 'Aerie Bowmasters', 'Stand Together', 'Instill Infection', 'Watchful Automaton', 'Rimewind Cryomancer', 'Spectral Bears', 'Loxodon Mystic', 'Shivan Emissary', 'Magmatic Insight', 'Tower Above', 'Trigon of Thought', 'Wilt-Leaf Cavaliers', 'Emissary of Sunrise', 'Rakdos Riteknife', 'Savage Lands', 'Nahiri''s Machinations', 'Sedge Troll', 'Slith Firewalker', 'Escape Routes', 'Canopy Crawler', 'Leonin Iconoclast', 'Harvest Hand', 'Crackling Doom', 'Merfolk of the Pearl Trident', 'Haze of Pollen', 'Witch''s Familiar', 'Brain in a Jar', 'Root Greevil', 'Gangrenous Goliath', 'Silvergill Douser', 'Grave Peril', 'Fleetwheel Cruiser', 'Tasseled Dromedary', 'Angel''s Feather', 'Eternal of Harsh Truths', 'Fencing Ace', 'Azor''s Elocutors', 'Sealock Monster', 'Grasp of Darkness', 'Mossbridge Troll', 'Nylea''s Disciple', 'Dissipation Field', 'Bestial Menace', 'Living Destiny', 'Transmogrifying Licid', 'Scent of Ivy', 'Simic Fluxmage', 'Corrupted Zendikon', 'Quash', 'Neurok Prodigy', 'Fugitive Druid', 'Angelic Accord', 'Havoc Sower', 'Volt Charge', 'Nezumi Ronin', 'Grixis Charm', 'Death Watch', 'Detainment Spell', 'Dynavolt Tower', 'Krosan Drover', 'Orzhov Guildmage', 'Wreath of Geists', 'Lifespark Spellbomb', 'Anurid Murkdiver', 'Death Grasp', 'Simian Brawler', 'Equestrian Skill', 'Kami of the Tended Garden', 'Floodtide Serpent', 'Temporal Eddy', 'Blood-Chin Fanatic', 'Phyrexian Swarmlord', 'Remorseless Punishment', 'Sigiled Behemoth', 'Surge of Zeal', 'Avacyn''s Judgment', 'Scuttling Death', 'Watertrap Weaver', 'Fiery Fall', 'Temple of Mystery', 'Shard Convergence', 'Dismal Failure', 'Psychic Trance', 'Druid''s Deliverance', 'Needle Storm', 'Yavimaya Wurm', 'Ib Halfheart, Goblin Tactician', 'Kithkin Zephyrnaut', 'Starved Rusalka', 'Leaf Gilder', 'Force of Nature', 'Mul Daya Channelers', 'Coastal Hornclaw', 'Villagers of Estwald', 'Kuldotha Flamefiend', 'Silkweaver Elite', 'Auriok Survivors', 'Insatiable Gorgers', 'Thrull Surgeon', 'Scent of Nightshade', 'Steppe Glider', 'Academy Elite', 'Root-Kin Ally', 'Indebted Samurai', 'Spawnwrithe', 'Reverence', 'Absolver Thrull', 'Wojek Siren', 'Necrotic Sliver', 'Miming Slime', 'Brine Elemental', 'Fretwork Colony', 'Viashino Bladescout', 'Flesh to Dust', 'Rain of Embers', 'Carnage Altar', 'Silverback Ape', 'Zombie Infestation', 'Sleep Paralysis', 'Silumgar Spell-Eater', 'Survive the Night', 'Bloodpyre Elemental', 'Aethermage''s Touch', 'Arachnus Spinner', 'Akki Lavarunner', 'Tivadar of Thorn', 'Skeletal Wurm', 'Krark''s Thumb', 'Sentinel of the Eternal Watch', 'Flowstone Wyvern', 'Living Inferno', 'Death''s Presence', 'Swarm of Bloodflies', 'Unforge', 'Flowstone Flood', 'Warden of the Beyond', 'Rack and Ruin', 'Golgari Rotwurm', 'Snare Thopter', 'Disempower', 'Felhide Brawler', 'Peregrination', 'Fugitive Wizard', 'Warped Researcher', 'Mortal Obstinacy', 'Masako the Humorless', 'Candles of Leng', 'Joraga Invocation', 'Permeating Mass', 'Salt Road Quartermasters', 'Animation Module', 'Forcemage Advocate', 'Surging Sentinels', 'Immolation', 'Charging Cinderhorn', 'Mirri the Cursed', 'Dwarven Bloodboiler', 'Skullmane Baku', 'Soul Seizer', 'Basal Thrull', 'Boneknitter', 'Drake Hatchling', 'Gild', 'Soot Imp', 'Rooftop Storm', 'Scald', 'Battlegrace Angel', 'Drogskol Shieldmate', 'Aven Fleetwing', 'Spellshift', 'Blistering Barrier', 'Ordeal of Heliod', 'Merrow Commerce', 'Temur Banner', 'Telekinetic Sliver', 'Shanodin Dryads', 'Oreskos Swiftclaw', 'Ogre Enforcer', 'Ebon Dragon', 'Soulmender', 'Goblin Roughrider', 'Mardu Hordechief', 'Ruin Rat', 'Haunted Angel', 'Quilled Sliver', 'Dross Hopper', 'Splatter Thug', 'Repentant Vampire', 'Crowned Ceratok', 'Lurching Rotbeast', 'Faerie Harbinger', 'Lightning Blow', 'Hellkite Hatchling', 'Defang', 'Giant Dustwasp', 'Soul of Magma', 'Dramatic Reversal', 'Oath of Gideon', 'Broodhunter Wurm', 'Rogue''s Gloves', 'Malevolent Whispers', 'Heartwood Treefolk', 'Rile', 'Disruption Aura', 'Skyshroud Elite', 'Ekundu Griffin', 'Tribute to the Wild', 'Oxidda Golem', 'Souls of the Faultless', 'Nightveil Specter', 'Guardian Automaton', 'Advanced Hoverguard', 'Ghostly Changeling', 'Stitcher''s Apprentice', 'Volcanic Rambler', 'Twinblade Slasher', 'Reach of Branches', 'Ghirapur Guide', 'Scarab Feast', 'Serra Bestiary', 'Wildfire Eternal', 'Sorin''s Thirst', 'Sifter of Skulls', 'Divine Congregation', 'Mind Raker', 'Qumulox', 'Minotaur Aggressor', 'Fate Transfer', 'Sunspring Expedition', 'Battlegate Mimic', 'Dark Intimations', 'Pearl Shard', 'Giant Badger', 'Heavy Infantry', 'Civic Wayfinder', 'Lunarch Mantle', 'Jhoira''s Timebug', 'Servant of Nefarox', 'Moonlit Strider', 'Pedantic Learning', 'Complete Disregard', 'Nessian Courser', 'Take Possession', 'Deathreap Ritual', 'Rites of Initiation', 'Festering Evil', 'Crimson Mage', 'Incorrigible Youths', 'Spiny Starfish', 'Volcanic Rush', 'Temporal Cascade', 'Switcheroo', 'Aeronaut Tinkerer', 'Ballyrush Banneret', 'Bouncing Beebles', 'Crowd of Cinders', 'Bound in Silence', 'Captured Sunlight', 'Exiled Doomsayer', 'Faith of the Devoted', 'Witches'' Eye', 'Wei Infantry', 'Thrummingbird', 'Marang River Skeleton', 'Gate to the Afterlife', 'Claim of Erebos', 'Novijen, Heart of Progress', 'Krosan Vorine', 'Coral Merfolk', 'Observant Alseid', 'Howlpack Wolf', 'Squallmonger', 'Wydwen, the Biting Gale', 'Thriving Ibex', 'Magmaquake', 'Rollick of Abandon', 'Thieves'' Auction', 'Crookclaw Transmuter', 'Spectral Reserves', 'Thran Forge', 'Scalebane''s Elite', 'Gnarled Mass', 'Chitinous Cloak', 'Niblis of the Urn', 'Hedron Blade', 'Snapping Sailback', 'Isolation Zone', 'Kitsune Loreweaver', 'Terrifying Presence', 'Bonds of Faith', 'Pit Fight', 'Seraph', 'Root Out', 'Fissure Vent', 'Fall of the Gavel', 'Panic', 'Triangle of War', 'Whip-Spine Drake', 'Thassa''s Ire', 'War Horn', 'Dunes of the Dead', 'Kapsho Kitefins', 'Ghostly Touch', 'Wavecrash Triton', 'Ballynock Trapper', 'Akroan Conscriptor', 'Malfunction', 'Hate Weaver', 'Curse of Thirst', 'Needlepeak Spider', 'Darksteel Myr', 'Sea Monster', 'Beacon of Destruction', 'Teleportal', 'Noggle Ransacker', 'Tombfire', 'Vessel of Nascency', 'Liu Bei, Lord of Shu', 'Opal Avenger', 'Slave of Bolas', 'Monastery Flock', 'Mindcrank', 'Mothdust Changeling', 'Bloodcrazed Hoplite', 'Archangel', 'Deepcavern Imp', 'Diabolic Vision', 'Thrive', 'Beneath the Sands', 'Ashenmoor Cohort', 'Suq''Ata Assassin', 'Numot, the Devastator', 'Sawtooth Thresher', 'Fractured Loyalty', 'Akroan Mastiff', 'Elite Vanguard', 'Treva''s Ruins', 'Engulf the Shore', 'Skylasher', 'Yavimaya''s Embrace', 'Ward of Piety', 'Krovikan Rot', 'Salvage Drone', 'Biomass Mutation', 'Gideon''s Defeat', 'Elite Arcanist', 'Savage Conception', 'Mistform Sliver', 'Showstopper', 'Phyrexian Gargantua', 'Kessig Recluse', 'Dark Hatchling', 'Venomous Dragonfly', 'Guardian Shield-Bearer', 'Irontread Crusher', 'Inspired Charge', 'Goblin Berserker', 'Samite Censer-Bearer', 'Riverwheel Aerialists', 'Seedcradle Witch', 'Nighthowler', 'Verdant Haven', 'Rage Nimbus', 'Call of the Conclave', 'Niblis of Dusk', 'Rumbling Crescendo', 'Nagao, Bound by Honor', 'Pooling Venom', 'Downsize', 'Oathkeeper, Takeno''s Daisho', 'Cephalid Sage', 'Soul Foundry', 'Unsummon', 'Jace''s Ingenuity', 'Steward of Valeron', 'Dash Hopes', 'Tar Fiend', 'Destined // Lead', 'Twisted Abomination', 'Calciderm', 'Terminal Moraine', 'Primal Forcemage', 'Coat with Venom', 'Deathless Behemoth', 'Brawn', 'Aven Squire', 'Sun''s Bounty', 'Creeperhulk', 'Golgari Guildmage', 'Nema Siltlurker', 'Aether Sting', 'Harvest Pyre', 'Sandcrafter Mage', 'Monomania', 'Cruel Sadist', 'Femeref Knight', 'Novijen Sages', 'Splitting Slime', 'Baleful Eidolon', 'Frenzied Goblin', 'Sedge Scorpion', 'Burnout', 'Wizard Mentor', 'Vithian Stinger', 'Neurok Commando', 'Null Caller', 'Ezuri''s Brigade', 'Curse of Wizardry', 'Dive Bomber', 'Peace Strider', 'Emeria Shepherd', 'Rootgrapple', 'Goblin Mutant', 'Lightning Coils', 'Ophidian', 'Shrike Harpy', 'Owl Familiar', 'Arc Blade', 'Odric, Master Tactician', 'Foul Spirit', 'Human Frailty', 'Hollowsage', 'Keening Banshee', 'Reminisce', 'Solitary Camel', 'Flitterstep Eidolon', 'Voice of All', 'Slum Reaper', 'Raking Canopy', 'Thunderous Might', 'Consul''s Shieldguard', 'Odylic Wraith', 'Goldenglow Moth', 'River''s Grasp', 'Griptide', 'Sage Owl', 'Dispense Justice', 'Subtle Strike', 'Vindictive Mob', 'Ulvenwald Bear', 'Drana''s Emissary', 'Polluted Bonds', 'Bladed Bracers', 'Ephara''s Enlightenment', 'Elvish Herder', 'Verdant Eidolon', 'Walking Wall', 'Psychotrope Thallid', 'Order of the Golden Cricket', 'Resounding Scream', 'Femeref Scouts', 'Gustcloak Harrier', 'Vulturous Zombie', 'Vampiric Spirit', 'Phantom Monster', 'Sunbeam Spellbomb', 'Illusionary Wall', 'Ronin Warclub', 'Trusted Advisor', 'Demolish', 'Hovermyr', 'Ardent Militia', 'Oath of Ajani', 'Rootrunner', 'Seer''s Lantern', 'Lawbringer', 'One Dozen Eyes', 'Oracle of Nectars', 'Tar Pit Warrior', 'Blinking Spirit', 'Apprentice Wizard', 'Hideous Laughter', 'Torment of Scarabs', 'Mobile Garrison', 'Rescue', 'Ashnod''s Transmogrant', 'Giltspire Avenger', 'Halimar Wavewatch', 'Shriekgeist', 'Pyric Salamander', 'Rag Man', 'Fog Elemental', 'Soulscour', 'Sandsteppe Scavenger', 'Hunt the Hunter', 'Kavu Climber', 'Jhoira''s Toolbox', 'Where Ancients Tread', 'Goblin Arsonist', 'River Hoopoe', 'Giant Tortoise', 'Shadowed Caravel', 'Vedalken Mastermind', 'Smokebraider', 'Sickening Dreams', 'Frazzle', 'Undercity Shade', 'Boggart Shenanigans', 'Spellweaver Eternal', 'Coordinated Assault', 'Daggerback Basilisk', 'Boros Elite', 'Duergar Hedge-Mage', 'Displacement Wave', 'Hoverguard Sweepers', 'Curse of Bloodletting', 'Talruum Piper', 'Cloud Elemental', 'Oxidize', 'Hobgoblin Dragoon', 'Welkin Guide', 'Circle of Protection: White', 'Immolating Souleater', 'Deathbellow Raider', 'Ronin Cavekeeper', 'Tukatongue Thallid', 'Abzan Guide', 'Malakir Familiar', 'Morinfen', 'Take into Custody', 'Paranoid Parish-Blade', 'Divine Reckoning', 'Disperse', 'Aven Cloudchaser', 'Yavimaya Dryad', 'Titan''s Presence', 'Treefolk Seedlings', 'Forsaken Drifters', 'Reap What Is Sown', 'Argothian Swine', 'Invulnerability', 'Wall of Denial', 'Vintara Snapper', 'Strata Scythe', 'Mogg Hollows', 'Tishana''s Wayfinder', 'Ooze Flux', 'Flowstone Sculpture', 'Emberhorn Minotaur', 'Labyrinth Minotaur', 'Terrus Wurm', 'Chosen by Heliod', 'Ordruun Commando', 'Those Who Serve', 'Soltari Emissary', 'Centaur Safeguard', 'Tolarian Serpent', 'Glint Hawk Idol', 'Trained Caracal', 'Auratog', 'Orzhov Keyrune', 'Survivors'' Encampment', 'Cursed Flesh', 'Children of Korlis', 'Murderous Compulsion', 'Loxodon Hierarch', 'Rimehorn Aurochs', 'Flamebreak', 'Reins of the Vinesteed', 'Tricks of the Trade', 'Liquimetal Coating', 'Bonded Horncrest', 'Painsmith', 'Thieving Magpie', 'Silent Departure', 'Sunastian Falconer', 'Training Drone', 'Defiant Elf', 'Doom Cannon', 'Mogg Bombers', 'Needle Specter', 'Dream''s Grip', 'Incite War', 'Palliation Accord', 'Ahn-Crop Champion', 'Aegis Angel', 'Forced Fruition', 'Stonewright', 'Guard Duty', 'Taste for Mayhem', 'Riptide Shapeshifter', 'Plated Spider', 'Shielding Plax', 'Skirk Alarmist', 'Goblin Boom Keg', 'Angel of Mercy', 'Archetype of Courage', 'Leaping Master', 'Shield Mate', 'Dominaria''s Judgment', 'Foul Renewal', 'Krenko''s Enforcer', 'Surging Flame', 'Mardu Ascendancy', 'Amugaba', 'Caldera Lake', 'Toxic Nim', 'Eyes in the Skies', 'No-Dachi', 'Temporal Adept', 'Plague Sliver', 'White Knight', 'Jayemdae Tome', 'Chaos Maw', 'Regeneration', 'Cultivator''s Caravan', 'Warden of the Eye', 'Incremental Growth', 'Galepowder Mage', 'Immortal Coil', 'Origin Spellbomb', 'Oppressive Will', 'Wildgrowth Walker', 'Silent Attendant', 'Sheltering Light', 'Metathran Elite', 'Bereavement', 'Indomitable Archangel', 'Galvanoth', 'Kavu Predator', 'Somberwald Alpha', 'Battering Krasis', 'Wurmskin Forger', 'Gonti''s Machinations', 'Ticking Gnomes', 'Bounteous Kirin', 'Sure Strike', 'Call to the Kindred', 'Scalpelexis', 'Graceblade Artisan', 'Conviction', 'Shapers of Nature', 'Afflicted Deserter', 'Champion of Rhonas', 'Minotaur Abomination', 'Niblis of the Breath', 'Shivan Dragon', 'Academy Researchers', 'Savage Thallid', 'Death''s-Head Buzzard', 'Frontier Bivouac', 'Orbweaver Kumo', 'Oblivion Crown', 'Commune with Dinosaurs', 'Thought Eater', 'Ivory Charm', 'Burn Away', 'Giant Strength', 'Khenra Scrapper', 'Cryptoplasm', 'Mossfire Egg', 'Sailor of Means', 'Affa Protector', 'Font of Return', 'Malakir Soothsayer', 'Splendid Agony', 'Voltaic Construct', 'Warning', 'Fight to the Death', 'Raging Minotaur', 'Scarred Puma', 'Unknown Shores', 'Galvanic Juggernaut', 'Circling Vultures', 'Mercurial Chemister', 'Peace of Mind', 'Raging Swordtooth', 'Returned Phalanx', 'Nantuko Cultivator', 'Corrupt Eunuchs', 'Center Soul', 'Shrine of Loyal Legions', 'Ring of Ma''rûf', 'Bant Sojourners', 'Cloudskate', 'Marsh Lurker', 'Aim High', 'Mizzium Mortars', 'Momentous Fall', 'Wasp Lancer', 'Haunted Cadaver', 'Haunting Hymn', 'Groundshaker Sliver', 'Roaring Primadox', 'Scalding Tongs', 'Llanowar Sentinel', 'Doomwake Giant', 'Flourishing Defenses', 'Daraja Griffin', 'Dimir Guildgate', 'Turn to Frog', 'Blaze', 'Uproot', 'Magmatic Chasm', 'Smash', 'Spell Rupture', 'Cerulean Wisps', 'Battlewise Hoplite', 'Battle Hurda', 'Spirespine', 'Warchief Giant', 'Balduvian Rage', 'Thundering Giant', 'Shrine of Piercing Vision', 'Steward of Solidarity', 'Tajuru Preserver', 'Pillar of Light', 'Leonin Scimitar', 'Sky Terror', 'Binding Mummy', 'Ravenous Daggertooth', 'Cyclone Sire', 'Mawcor', 'Nephalia Academy', 'Consulate Turret', 'Madrush Cyclops', 'Rally the Forces', 'Strength in Numbers', 'Warrior Angel', 'Pyromancer''s Swath', 'Make Mischief', 'Abzan Advantage', 'Archivist', 'Liliana''s Shade', 'Foriysian Totem', 'Liliana''s Mastery', 'Sowing Salt', 'Duergar Cave-Guard', 'Makindi Patrol', 'Tavern Swindler', 'Snapping Creeper', 'Conclave Naturalists', 'Silverstorm Samurai', 'Zombie Goliath', 'Everglove Courier', 'Aberrant Researcher', 'Shrink', 'Voice of Duty', 'Foxfire Oak', 'Fervor', 'Regress', 'Moon Heron', 'Mirror Golem', 'Desert of the Fervent', 'Fire Ants', 'Start // Finish', 'Gatstaf Shepherd', 'Cruel Feeding', 'Corrupt', 'Nightshade Stinger', 'Exert Influence', 'Smoldering Efreet', 'Conduit of Ruin', 'Goldmeadow Harrier', 'Magebane Armor', 'Screaming Fury', 'Venerated Teacher', 'Moriok Scavenger', 'Lumberknot', 'Eidolon of Countless Battles', 'Ponyback Brigade', 'Shadowcloak Vampire', 'Steam Blast', 'Viashino Sandscout', 'Hand of Justice', 'Serra Avenger', 'Rakshasa Deathdealer', 'Dreamscape Artist', 'Worldslayer', 'Yavimaya Ancients', 'Runechanter''s Pike', 'Blessed Reversal', 'Myr Adapter', 'Wake the Reflections', 'Annex', 'Shapeshifter', 'Yamabushi''s Storm', 'Crumble', 'Coordinated Barrage', 'Pulse of Llanowar', 'Blades of Velis Vel', 'Sinister Strength', 'Epitaph Golem', 'Sweatworks Brawler', 'Ancestral Memories', 'Screaming Seahawk', 'Akroma''s Devoted', 'Orgg', 'Animate Dead', 'Sandbar Crocodile', 'Simic Initiate', 'Manakin', 'Frostwind Invoker', 'Anaconda', 'Eon Hub', 'Silver Seraph', 'Wild Leotau', 'Cathartic Adept', 'Fire Sprites', 'Goliath Spider', 'Thousand Winds', 'Midnight Guard', 'Shrine of the Forsaken Gods', 'Aven Smokeweaver', 'Blind Creeper', 'Gleam of Resistance', 'Humble Budoka', 'Saruli Gatekeepers', 'Thundermare', 'Barl''s Cage', 'Lava Hounds', 'Embraal Gear-Smasher', 'Faithful Squire', 'Smoldering Butcher', 'Anodet Lurker', 'Dying Wish', 'Siegecraft', 'Grove of the Guardian', 'Snapping Thragg', 'Faceless Butcher', 'Ignite Memories', 'Ephemeron', 'Scuzzback Marauders', 'Trostani''s Judgment', 'Viridian Harvest', 'Rod of Ruin', 'Opaline Unicorn', 'New Benalia', 'Woolly Thoctar', 'Angel of Salvation', 'Spitebellows', 'Torch Fiend', 'Captain of the Mists', 'Gossamer Phantasm', 'Palladium Myr', 'Cyclopean Mummy', 'Winter Blast', 'Obelisk of Alara', 'Phyrexian Juggernaut', 'Prakhata Club Security', 'Open Fire', 'Mind Shatter', 'Imagecrafter', 'Sequestered Stash', 'Metathran Soldier', 'Medicine Runner', 'Vedalken Outlander', 'Unholy Hunger', 'Wall of Blood', 'Wild Swing', 'Goldmeadow Lookout', 'Nocturnal Raid', 'Mire''s Toll', 'Tallowisp', 'Glint-Sleeve Artisan', 'Scent of Brine', 'Burrenton Shield-Bearers', 'Lavafume Invoker', 'Twisted Image', 'Pit Trap', 'Grim Strider', 'Cemetery Reaper', 'Arcbound Worker', 'Winged Coatl', 'Wild-Field Scarecrow', 'Deadly Recluse', 'Gaze of Adamaro', 'Flow of Ideas', 'Timely Hordemate', 'Sunflare Shaman', 'Safehold Sentry', 'Fresh Meat', 'Torch Song', 'Su-Chi', 'Whipgrass Entangler', 'Nephalia Smuggler', 'Mardu Roughrider', 'Tiger Claws', 'Slayer of the Wicked', 'Dispersal Technician', 'Entangling Vines', 'Hum of the Radix', 'Scathe Zombies', 'Detonate', 'Hornet Harasser', 'Secret Salvage', 'Recantation', 'Glistening Oil', 'Planeswalker''s Mirth', 'Alchemist''s Vial', 'Haunted Cloak', 'Stromgald Cabal', 'Strength from the Fallen', 'Prickleboar', 'Perplexing Chimera', 'Withering Hex', 'Lethal Sting', 'Bloodcurdler', 'Anaba Spirit Crafter', 'Pollenbright Wings', 'Cutthroat il-Dal', 'Horned Troll', 'Thalakos Seer', 'Skarrg Guildmage', 'Herald of the Fair', 'Gomazoa', 'Emperor Crocodile', 'Rude Awakening', 'Court Street Denizen', 'Molten Primordial', 'Mark of Eviction', 'Manta Riders', 'Citanul Woodreaders', 'Chimeric Mass', 'Starlight Invoker', 'Underworld Dreams', 'Elves of Deep Shadow', 'Benevolent Ancestor', 'Defender of the Order', 'Ydwen Efreet', 'Merfolk Raiders', 'Markov Warlord', 'Skill Borrower', 'Magmasaur', 'Stampeding Wildebeests', 'Expendable Troops', 'Soultether Golem', 'Vagrant Plowbeasts', 'Undergrowth Scavenger', 'Matsu-Tribe Decoy', 'Gelatinous Genesis', 'Errand of Duty', 'Goldmeadow Stalwart', 'Gruul Guildmage', 'Glass Golem', 'Blood Reckoning', 'Terashi''s Grasp', 'Phalanx Formation', 'Magmaroth', 'Lowland Giant', 'Agony Warp', 'Spectral Sliver', 'Ancient Brontodon', 'Defender of Chaos', 'Put Away', 'Skinshifter', 'Firewake Sliver', 'Phantasmal Bear', 'Puncturing Blow', 'Myrsmith', 'Misinformation', 'Shadow Glider', 'Sanguine Praetor', 'Eradicate', 'Naturalize', 'Desert of the Mindful', 'Nivix, Aerie of the Firemind', 'Rix Maadi, Dungeon Palace', 'Thalakos Dreamsower', 'Azorius Charm', 'Unstable Frontier', 'Triskaidekaphobia', 'Riddle of Lightning', 'Ogre Leadfoot', 'Carnival Hellsteed', 'Takenuma Bleeder', 'Spell Blast', 'Ivory Gargoyle', 'Abomination of Gudul', 'Sensor Splicer', 'Vampiric Rites', 'Drainpipe Vermin', 'Cobblebrute', 'Chancellor of the Dross', 'Blur of Blades', 'Nikko-Onna', 'Goblin Clearcutter', 'Lumengrid Warden', 'Earthblighter', 'Benthic Explorers', 'Harpoon Sniper', 'Horrifying Revelation', 'Centaur Battlemaster', 'Goblin Trenches', 'Part the Veil', 'Gravespawn Sovereign', 'Ghostfire Blade', 'Herald of Anafenza', 'Dragonscale Boon', 'Lammastide Weave', 'Harbinger of the Hunt', 'Quicksilver Geyser', 'Consign to Dream', 'Magus of the Future', 'Infiltrator''s Magemark', 'Springing Tiger', 'Capashen Standard', 'Repel the Abominable', 'Consign // Oblivion', 'Fevered Strength', 'Azorius Arrester', 'Commando Raid', 'Daring Thief', 'Might of Alara', 'Volcanic Awakening', 'Lurking Skirge', 'Sky Scourer', 'Gossamer Chains', 'Disappear', 'Armament of Nyx', 'Vampiric Link', 'Contraband Kingpin', 'Stone-Tongue Basilisk', 'Padeem, Consul of Innovation', 'Disciple of Grace', 'Cinder Marsh', 'Cloak of Invisibility', 'Heartwood Shard', 'Humble the Brute', 'Temur War Shaman', 'Eldrazi Skyspawner', 'Stensia Masquerade', 'Gutless Ghoul', 'Centaur Healer', 'Elder Druid', 'Forerunner of Slaughter', 'Troll-Horn Cameo', 'Earthshaker', 'Keeper of Progenitus', 'Haazda Snare Squad', 'Sphere of Purity', 'Blightcaster', 'Ghost Ship', 'Wanderwine Prophets', 'Minamo Sightbender', 'Lead-Belly Chimera', 'Weight of Spires', 'Tree Monkey', 'Etherwrought Page', 'Soliton', 'Shizuko, Caller of Autumn', 'Leyline of Vitality', 'Tandem Lookout', 'Vaevictis Asmadi', 'Genju of the Fens', 'Call the Skybreaker', 'Skullsnatcher', 'Tine Shrike', 'Gutter Grime', 'Enlightened Maniac', 'Mass of Ghouls', 'Kindled Fury', 'Liliana''s Indignation', 'Sewn-Eye Drake', 'Welkin Tern', 'Angelic Edict', 'Archon of Redemption', 'Flameborn Hellion', 'Retreat to Coralhelm', 'Chimeric Staff', 'Needlebite Trap', 'Keeper of the Lens', 'First Volley', 'Necromancer''s Stockpile', 'Mire Boa', 'Wood Elemental', 'Magma Vein', 'Spike Breeder', 'Militia''s Pride', 'Chronic Flooding', 'Firemane Avenger', 'Molten Disaster', 'Foundry Champion', 'Sporesower Thallid', 'Without Weakness', 'Time and Tide', 'Kitsune Dawnblade', 'Fall of the Hammer', 'Quicksilver Elemental', 'Nephalia Drownyard', 'Fourth Bridge Prowler', 'Jund Sojourners', 'Everbark Shaman', 'Darkwatch Elves', 'Aesthir Glider', 'Nivmagus Elemental', 'Drain the Well', 'Alms of the Vein', 'Flailing Manticore', 'Reckless Cohort', 'Profound Journey', 'True Conviction', 'Savage Gorilla', 'Esperzoa', 'Canker Abomination', 'Darksteel Axe', 'Giant Octopus', 'Cinder Wall', 'Charmbreaker Devils', 'Rootbreaker Wurm', 'Gaea''s Liege', 'Dune Diviner', 'Purging Scythe', 'Elephant Guide', 'Mistform Seaswift', 'Invasive Species', 'Evanescent Intellect', 'Desecrator Hag', 'Compulsory Rest', 'Soul Reap', 'Contemplation', 'Norwood Ranger', 'Osai Vultures', 'Carrion Ants', 'Scute Mob', 'Trade Secrets', 'Vedalken Infuser', 'Thunder-Thrash Elder', 'Echoes of the Kin Tree', 'Chandra''s Phoenix', 'Cat Burglar', 'Heart-Piercer Bow', 'Victorious Destruction', 'Myr Galvanizer', 'Garruk''s Horde', 'Crown of Convergence', 'Psychic Intrusion', 'Gargoyle Castle', 'Shoulder to Shoulder', 'Knights of Thorn', 'Riftmarked Knight', 'Gluttonous Zombie', 'Grim Reminder', 'Gift of Immortality', 'Lurebound Scarecrow', 'Providence', 'Nature''s Panoply', 'Cloudgoat Ranger', 'Campaign of Vengeance', 'Protect // Serve', 'Jhessian Lookout', 'Biomantic Mastery', 'Agent of the Fates', 'Hero of Goma Fada', 'Disembowel', 'Crackleburr', 'Dragon Appeasement', 'Greater Sandwurm', 'Burning Earth', 'Zombie Apocalypse', 'Selesnya Cluestone', 'Wall of Souls', 'Seafloor Debris', 'Dross Harvester', 'Boris Devilboon', 'Endless Scream', 'Nest of Scarabs', 'Vendetta', 'Emancipation Angel', 'Alaborn Trooper', 'Torii Watchward', 'Giant Solifuge', 'Kemba, Kha Regent', 'Voracious Wurm', 'Hunter''s Ambush', 'Pain Seer', 'Soulsworn Jury', 'Mist Intruder', 'Mogg Sentry', 'Fire Elemental', 'Valor', 'Tail Slash', 'Path of Anger''s Flame', 'Phantasmal Dragon', 'Tapestry of the Ages', 'Festering Goblin', 'Izzet Cluestone', 'Doomed Dissenter', 'Elvish Lookout', 'Brainbite', 'Shard of Broken Glass', 'Dazzling Beauty', 'Time Ebb', 'Dreadwing', 'Murasa Ranger', 'Swamp Mosquito', 'Warchanter of Mogis', 'Shrewd Negotiation', 'Troubled Healer', 'Dutiful Attendant', 'Blood Tithe', 'Raid Bombardment', 'Cloudthresher', 'Siren''s Ruse', 'Steelshaper Apprentice', 'Far // Away', 'Trueheart Duelist', 'Arctic Merfolk', 'Chandra''s Spitfire', 'Ordeal of Thassa', 'Embermaw Hellion', 'Tusked Colossodon', 'Shape of the Wiitigo', 'Malakir Cullblade', 'Chimeric Egg', 'Tarox Bladewing', 'Righteous Authority', 'Chariot of Victory', 'Snapping Gnarlid', 'Needleshot Gourna', 'Levitation', 'Hammerheim', 'Baloth Pup', 'Keldon Vandals', 'Kami of Empty Graves', 'Drinker of Sorrow', 'Shape Stealer', 'Kill-Suit Cultist', 'Nirkana Assassin', 'Spurnmage Advocate', 'Spore Flower', 'Brion Stoutarm', 'Grotag Thrasher', 'Snake of the Golden Grove', 'Pyre Charger', 'Scryb Ranger', 'Ezuri''s Archers', 'Wildcall', 'Vampire Interloper', 'Skybind', 'Elven Lyre', 'Warpath Ghoul', 'Warleader''s Helix', 'Roar of the Crowd', 'Resistance Fighter', 'Hooded Brawler', 'Savage Firecat', 'Molimo, Maro-Sorcerer', 'Horizon Drake', 'Chief of the Edge', 'Boiling Earth', 'Armament Corps', 'Livewire Lash', 'Battletide Alchemist', 'Hallowed Ground', 'Consuming Fervor', 'Cenn''s Tactician', 'Vexing Arcanix', 'Cinder Shade', 'Brightflame', 'Opaline Sliver', 'Prepare // Fight', 'Ironclaw Buzzardiers', 'Graf Rats', 'Slipstream Serpent', 'Soulless Revival', 'Meletis Astronomer', 'Unholy Strength', 'Ashling the Pilgrim', 'Horizon Spellbomb', 'Arachnus Web', 'Silumgar Assassin', 'Geist-Honored Monk', 'Bearer of Silence', 'Eager Construct', 'Evolutionary Escalation', 'Dust Stalker', 'Hollowhenge Scavenger', 'Cone of Flame', 'Read the Bones', 'Fires of Undeath', 'Horn of Deafening', 'Sarkhan''s Rage', 'Battle Brawler', 'Coercion', 'Retaliation', 'Steelclad Serpent', 'Fury Sliver', 'Simic Manipulator', 'Tidal Surge', 'Flameblade Adept', 'Drakestown Forgotten', 'D''Avenant Archer', 'Quiet Purity', 'Midnight Recovery', 'Betrothed of Fire', 'Brass Squire', 'Deathless Ancient', 'Throne of Geth', 'Siege of Towers', 'Conclave Equenaut', 'Awe Strike', 'Ring of Valkas', 'Western Paladin', 'Cavern Crawler', 'Orcish Librarian', 'Lava Axe', 'Makindi Aeronaut', 'Myr Moonvessel', 'Hapatra''s Mark', 'Inspiring Captain', 'Tahngarth''s Rage', 'Mortician Beetle', 'Prowling Pangolin', 'Moaning Wall', 'Clash of Wills', 'Urza''s Factory', 'Cruel Deceiver', 'Favorable Winds', 'Inner-Chamber Guard', 'Woodland Wanderer', 'Bloodthirsty Ogre', 'Five-Alarm Fire', 'Gangrenous Zombies', 'Jedit Ojanen of Efrava', 'Island', 'Markov Patrician', 'Triad of Fates', 'Banewasp Affliction', 'Cremate', 'Dauntless Onslaught', 'Veteran Cathar', 'Primal Huntbeast', 'Ancient Runes', 'Nightshade Schemers', 'Splitting Headache', 'Wojek Apothecary', 'Brain Weevil', 'Khenra Eternal', 'Chariot of the Sun', 'Thaumatic Compass', 'Captured by the Consulate', 'Repel', 'Urge to Feed', 'Firedrinker Satyr', 'Acid-Spewer Dragon', 'Time of Need', 'Rift Elemental', 'Acquire', 'Singing Bell Strike', 'Vodalian Knights', 'Krasis Incubation', 'Atarka Pummeler', 'Sea Eagle', 'Fishliver Oil', 'Rakdos Cluestone', 'Exiled Boggart', 'Crackling Triton', 'Blood Mist', 'Dire Fleet Interloper', 'Spined Wurm', 'Battlefield Scavenger', 'Jasmine Seer', 'Sundering Vitae', 'Plague Beetle', 'Summoner''s Bane', 'Realmwright', 'Blood Speaker', 'Tephraderm', 'Thalakos Drifters', 'Krovikan Scoundrel', 'Dissolve', 'Mardu Warshrieker', 'Inexorable Tide', 'Electropotence', 'Murderous Redcap', 'Tidal Courier', 'Peach Garden Oath', 'Voracious Cobra', 'Pyrewild Shaman', 'Syndic of Tithes', 'Silver-Inlaid Dagger', 'Lashknife', 'Woodwraith Corrupter', 'Deathforge Shaman', 'Mistfire Weaver', 'Quicksilver Dagger', 'Armament Master', 'Squeaking Pie Sneak', 'Browse', 'Coal Stoker', 'Curious Homunculus', 'Call the Gatewatch', 'Shambling Goblin', 'From Beyond', 'Kolaghan Aspirant', 'Stonewood Invocation', 'Battlefield Medic', 'Necromantic Summons', 'Kagemaro''s Clutch', 'Mizzium Skin', 'Shadows of the Past', 'Mummy Paramount', 'Ichor Rats', 'Warmth', 'Cerebral Vortex', 'Wing Puncture', 'Jeskai Charm', 'Hope Charm', 'Kindle', 'Krakilin', 'Sutured Ghoul', 'Gideon''s Reproach', 'Catch // Release', 'Master Warcraft', 'Shimmering Wings', 'Stolen Identity', 'Sigiled Starfish', 'Nylea''s Presence', 'Verdant Sun''s Avatar', 'Secretkeeper', 'Goldenhide Ox', 'Consul''s Lieutenant', 'Soul Shepherd', 'Tempest Caller', 'Fallen Ferromancer', 'Lullmage Mentor', 'Foreshadow', 'Razortooth Rats', 'Landbind Ritual', 'Vulshok Sorcerer', 'Tidewalker', 'Orim''s Prayer', 'Spellbook', 'Sigardian Priest', 'Tendrils of Agony', 'Arbiter of the Ideal', 'Soul Snuffers', 'Timebender', 'Dragon Egg', 'Slith Ascendant', 'Possessed Skaab', 'Reviving Vapors', 'Matsu-Tribe Birdstalker', 'Shivan Meteor', 'Cloud Crusader', 'Armed // Dangerous', 'Scrapskin Drake', 'Life // Death', 'Requiem Angel', 'Sprinting Warbrute', 'Reweave', 'Culling Drone', 'Dragon Roost', 'Elite Inquisitor', 'Wistful Thinking', 'Iwamori of the Open Fist', 'Spitting Sliver', 'Die Young', 'Murmuring Phantasm', 'Ancient Hydra', 'Riparian Tiger', 'Hagra Diabolist', 'Chronicler of Heroes', 'Trueheart Twins', 'Leonin Squire', 'Geist of the Moors', 'Prey''s Vengeance', 'Bloodmark Mentor', 'Amphin Cutthroat', 'Millstone', 'Inspiration', 'Thoughtflare', 'Thermopod', 'Zoetic Cavern', 'Water Servant', 'Ironfist Crusher', 'Seekers'' Squire', 'Realms Uncharted', 'Satyr Piper', 'Victual Sliver', 'Dark Dabbling', 'Dack''s Duplicate', 'Volcanic Strength', 'Outrider en-Kor', 'Aethersquall Ancient', 'Personal Sanctuary', 'Dralnu''s Pet', 'Kaleidostone', 'Soratami Cloudskater', 'Neurok Replica', 'Xenic Poltergeist', 'Clutch of Currents', 'Harrier Griffin', 'Nyx Infusion', 'Elven Rite', 'Spiraling Duelist', 'Corpse Cur', 'Feroz''s Ban', 'Rite of the Serpent', 'Grollub', 'Nath of the Gilt-Leaf', 'Flowstone Mauler', 'Torrent of Souls', 'Sanctified Charge', 'Shore Keeper', 'Chronomantic Escape', 'Veteran of the Depths', 'Ravenous Baloth', 'Consulate Surveillance', 'Gust-Skimmer', 'Bond Beetle', 'Luminous Angel', 'Weapon Surge', 'Temur Runemark', 'Pirate''s Prize', 'Dodecapod', 'Netherborn Phalanx', 'Erase', 'Boreal Griffin', 'Guardian of Pilgrims', 'Tidal Kraken', 'Bastion Mastodon', 'Polar Kraken', 'Phytotitan', 'Ethereal Usher', 'Trusted Forcemage', 'Perilous Forays', 'Overcome', 'Urban Burgeoning', 'Metathran Aerostat', 'Pariah''s Shield', 'Gravebane Zombie', 'Resuscitate', 'Celestial Crusader', 'Tilonalli''s Skinshifter', 'Fallowsage', 'Gremlin Infestation', 'Clockwork Dragon', 'Tears of Valakut', 'Regathan Firecat', 'Day of Destiny', 'Court Homunculus', 'Sunken City', 'Desperate Charge', 'Flickering Spirit', 'Deathcap Cultivator', 'Byway Courier', 'Shield of the Oversoul', 'Airdrop Aeronauts', 'Ruthless Deathfang', 'Gauntlets of Chaos', 'Unscythe, Killer of Kings', 'Sludge Crawler', 'Magma Giant', 'Slaughter', 'Patron of the Kitsune', 'Pandemonium', 'Storm Fleet Pyromancer', 'Elite Javelineer', 'Arrest', 'Sea Spirit', 'Psychic Puppetry', 'Phantom Nomad', 'Bishop''s Soldier', 'Wren''s Run Vanquisher', 'Reduce to Dreams', 'Angel of Condemnation', 'Martyr of Frost', 'Skyshroud Condor', 'Trepanation Blade', 'Radha, Heir to Keld', 'Spawnbinder Mage', 'Caravan Vigil', 'Commencement of Festivities', 'Plow Through Reito', 'Boros Signet', 'Tamiyo''s Journal', 'Ghoulraiser', 'Satyr Hedonist', 'Nefashu', 'Even the Odds', 'Harvester Troll', 'Ion Storm', 'Puca''s Mischief', 'Akroan Hoplite', 'Caldera Hellion', 'Devotee of Strength', 'Pyroconvergence', 'Forlorn Pseudamma', 'Kjeldoran Royal Guard', 'Mistform Shrieker', 'Might of the Masses', 'Vulshok Refugee', 'Mausoleum Turnkey', 'Dross Crocodile', 'Abbey Gargoyles', 'Recover', 'Cruel Bargain', 'Throne Warden', 'Brutal Deceiver', 'Orochi Eggwatcher', 'Rockslide Elemental', 'Manor Gargoyle', 'Navigator''s Ruin', 'Hematite Golem', 'Krovikan Whispers', 'Maze Behemoth', 'Jungle Wurm', 'Reknit', 'Meng Huo''s Horde', 'Sphinx''s Tutelage', 'Topan Ascetic', 'Akoum Stonewaker', 'Release the Gremlins', 'Kavu Recluse', 'Order of Whiteclay', 'Oathsworn Giant', 'Phytohydra', 'Prophetic Bolt', 'Salvage Slasher', 'Goblin Rally', 'Mindstab', 'Interpret the Signs', 'Rakdos Drake', 'Blinding Spray', 'Deceiver of Form', 'Call for Unity', 'Ruination Guide', 'Reckless Reveler', 'Cloudreach Cavalry', 'Mistform Mutant', 'Augury Owl', 'Ur-Golem''s Eye', 'Curio Vendor', 'Coma Veil', 'Windseeker Centaur', 'Spitfire Handler', 'Zendikar Resurgent', 'Caller of the Pack', 'Ninth Bridge Patrol', 'Behemoth Sledge', 'Plaxmanta', 'Pain // Suffering', 'Kor Bladewhirl', 'Hellspark Elemental', 'Outrider of Jhess', 'Dungeon Geists', 'Divergent Growth', 'Channel Harm', 'Lightning Hounds', 'Weatherseed Elf', 'Clinging Anemones', 'Beloved Chaplain', 'Cyclops Gladiator', 'Circle of Protection: Artifacts', 'Daru Healer', 'Szadek, Lord of Secrets', 'Deathrender', 'Cinder Seer', 'Morbid Curiosity', 'Manabarbs', 'Stoneforge Masterwork', 'Elder Pine of Jukai', 'Sinuous Striker', 'Rewards of Diversity', 'Sulfurous Blast', 'Cradle of Vitality', 'Drooling Ogre', 'Oakgnarl Warrior', 'Mulch', 'Squelching Leeches', 'Vizier of Remedies', 'Scorch the Fields', 'Child of Gaea', 'Forbidding Watchtower', 'Kranioceros', 'Rime Transfusion', 'Errant Ephemeron', 'Soar', 'Animist''s Awakening', 'Weapons Trainer', 'Somber Hoverguard', 'Kiyomaro, First to Stand', 'View from Above', 'Kozilek''s Channeler', 'Cryptic Annelid', 'Aviary Mechanic', 'Haunting Echoes', 'Kurgadon', 'Fervent Paincaster', 'Spirit Loop', 'Brimstone Mage', 'War-Name Aspirant', 'Fool''s Demise', 'Ghirapur Aether Grid', 'Wilderness Elemental', 'Seaside Haven', 'Somberwald Stag', 'Singing Tree', 'Cinder Hellion', 'Ramirez DePietro', 'Mass Appeal', 'Cloud Spirit', 'Pollen Lullaby', 'Blighted Bat', 'Spell Syphon', 'Shade''s Breath', 'Sedraxis Specter', 'Bound by Moonsilver', 'Endless Whispers', 'Giant Cockroach', 'Curse of Oblivion', 'Brace for Impact', 'Rimefeather Owl', 'Quest for Renewal', 'Dismantle', 'Obelisk of Jund', 'Blast of Genius', 'Unsubstantiate', 'Synchronous Sliver', 'Nostalgic Dreams', 'Gerrard''s Irregulars', 'Voices from the Void', 'Expedite', 'Fiend Binder', 'Glory of Warfare', 'Scornful Egotist', 'Scale of Chiss-Goria', 'Diabolic Machine', 'Loam Dweller', 'Glacial Stalker', 'March of the Machines', 'Summoning Station', 'Blight Herder', 'Harmless Offering', 'Skywatcher Adept', 'Carrier Thrall', 'Prophetic Ravings', 'Winds of Rath', 'Sigil Captain', 'Elder Cathar', 'Blessed Spirits', 'Word of Undoing', 'Celestial Mantle', 'Thrull Retainer', 'Reclusive Wight', 'Circle of Protection: Black', 'Chained Throatseeker', 'Wildheart Invoker', 'Lurking Jackals', 'Hedron-Field Purists', 'Wort, Boggart Auntie', 'Skirk Marauder', 'Isperia''s Skywatch', 'Ember Swallower', 'Floodwaters', 'Skyshroud Blessing', 'Select for Inspection', 'Brood Butcher', 'Angelic Arbiter', 'Armored Ascension', 'Skitterskin', 'Second Sight', 'Inheritance', 'Bala Ged Scorpion', 'Guardian of the Ages', 'Shivan Sand-Mage', 'Primeval Force', 'Murk Strider', 'Order // Chaos', 'Mudbutton Clanger', 'Advocate of the Beast', 'Maul Splicer', 'Karplusan Strider', 'Essence Bottle', 'Soulbright Flamekin', 'Lightning Surge', 'Illness in the Ranks', 'Thassa''s Devourer', 'Trip Noose', 'Stomping Slabs', 'Orc Sureshot', 'Final-Sting Faerie', 'Setessan Oathsworn', 'Vedalken Ghoul', 'Warbringer', 'Jerrard of the Closed Fist', 'Nyxborn Wolf', 'Weldfast Engineer', 'Feral Krushok', 'Unraveling Mummy', 'Lost in the Mist', 'Daring Saboteur', 'Daru Lancer', 'Gorgon Recluse', 'Multani''s Presence', 'Kami of Lunacy', 'Storm Elemental', 'Skyblade of the Legion', 'Basal Sliver', 'Elvish Harbinger', 'Agent of Erebos', 'Will of the Naga', 'Abzan Falconer', 'Finest Hour', 'Goblin Brawler', 'Boros Recruit', 'Soulblade Djinn', 'River Merfolk', 'Bloodscent', 'Rebuke', 'Shower of Sparks', 'Wormfang Manta', 'Mycosynth Fiend', 'Jump', 'Back to Nature', 'Collective Effort', 'Toxic Iguanar', 'Cavalry Pegasus', 'Benalish Cavalry', 'Path of Bravery', 'Sudden Impact', 'Crystal Shard', 'Dire Fleet Hoarder', 'Batwing Brume', 'Sigil of Valor', 'Rot Shambler', 'Trickery Charm', 'Insult // Injury', 'Runes of the Deus', 'Lumengrid Drake', 'Void Grafter', 'Sin Collector', 'Valley Rannet', 'Moonlight Hunt', 'Tezzeret''s Gambit', 'Riven Turnbull', 'Jinxed Choker', 'Crab Umbra', 'Rustrazor Butcher', 'Acolyte''s Reward', 'Mastery of the Unseen', 'Balance of Power', 'Revel in Riches', 'Bog Smugglers', 'Grizzly Fate', 'Scourglass', 'Domestication', 'Scourgemark', 'Brine Shaman', 'Aven Riftwatcher', 'Consult the Necrosages', 'Ashiok''s Adept', 'Neurok Familiar', 'Drowner of Hope', 'Thunder of Hooves', 'Flaring Flame-Kin', 'Screeching Griffin', 'Flameshadow Conjuring', 'Champion Lancer', 'Streetbreaker Wurm', 'Mindstatic', 'Slip Through Space', 'Smoldering Werewolf', 'Beastmaster''s Magemark', 'Summit Apes', 'Teetering Peaks', 'Mark of Mutiny', 'Genesis Hydra', 'Harness by Force', 'Breath of Darigaaz', 'Mistfire Adept', 'Book of Rass', 'Woodland Changeling', 'Homing Sliver', 'Lab Rats', 'Femeref Healer', 'Archers'' Parapet', 'Hellion Eruption', 'Borrowed Hostility', 'Ray of Command', 'Grand Melee', 'Auriok Salvagers', 'Tel-Jilad Archers', 'Twin Bolt', 'Windwright Mage', 'Roilmage''s Trick', 'Kuro''s Taken', 'Healing Leaves', 'Dandân', 'Colossal Dreadmaw', 'Grindclock', 'Legion''s Judgment', 'Macabre Waltz', 'Storm Fleet Aerialist', 'Vassal''s Duty', 'Enshrouding Mist', 'Lay of the Land', 'Kinsbaile Balloonist', 'Knollspine Invocation', 'Dwarven Shrine', 'Grixis Sojourners', 'Grave Birthing', 'Schismotivate', 'Runner''s Bane', 'Illusory Angel', 'Kithkin Rabble', 'Kjeldoran Dead', 'Martial Law', 'Skyraker Giant', 'Woodland Stream', 'Foundry of the Consuls', 'Dark Nourishment', 'Auntie''s Hovel', 'Rats of Rath', 'Slime Molding', 'Jedit''s Dragoons', 'Sengir Vampire', 'Elusive Krasis', 'Goblin Test Pilot', 'Senseless Rage', 'Spirit en-Kor', 'Tatsumasa, the Dragon''s Fang', 'Solemn Recruit', 'Baleful Ammit', 'Deathmark Prelate', 'Paladin of the Bloodstained', 'Ego Erasure', 'Vesper Ghoul', 'Gisa''s Bidding', 'Ember-Eye Wolf', 'Icy Manipulator', 'Nihilistic Glee', 'Affa Guard Hound', 'Wild Hunger', 'Synod Sanctum', 'Blockade Runner', 'Nyxborn Eidolon', 'Carrion Rats', 'Blossom Dryad', 'Bloodrite Invoker', 'Wayward Servant', 'Ley Druid', 'Groundling Pouncer', 'Roil Elemental', 'Watercourser', 'Scroll of Origins', 'Bloodthorn Taunter', 'Fighting Drake', 'Gather the Pack', 'Antagonism', 'Loxodon Punisher', 'Eland Umbra', 'Vibrating Sphere', 'Savage Punch', 'Merciless Eternal', 'Indomitable Ancients', 'Hearthfire Hobgoblin', 'Surprise Deployment', 'Wanderbrine Rootcutters', 'Acridian', 'Repulse', 'Gavony Unhallowed', 'Dictate of Karametra', 'Depths of Desire', 'Snakeform', 'Solarion', 'Odric, Lunarch Marshal', 'Military Intelligence', 'Groffskithur', 'Rush of Blood', 'Wolfbriar Elemental', 'Coerced Confession', 'Hypersonic Dragon', 'Herbal Poultice', 'Supply // Demand', 'Liar''s Pendulum', 'Viridian Acolyte', 'Extruder', 'Ornate Kanzashi', 'Kiku, Night''s Flower', 'Telemin Performance', 'Unquenchable Thirst', 'Shaman of the Pack', 'Thraben Standard Bearer', 'Midnight Charm', 'Enclave Cryptologist', 'Give // Take', 'Pallimud', 'Balduvian Warlord', 'Warp Artifact', 'Priest of the Blood Rite', 'Shard Phoenix', 'Aegis Automaton', 'Pacifism', 'Pale Rider of Trostad', 'Thraben Foulbloods', 'Strongarm Monk', 'Southern Paladin', 'Quag Vampires', 'Kitsune Palliator', 'Samite Archer', 'Kobold Drill Sergeant', 'Hunting Triad', 'Moonmist', 'Nightscape Battlemage', 'Gift of the Deity', 'Magewright''s Stone', 'Butcher''s Cleaver', 'Heron''s Grace Champion', 'Profit // Loss', 'Rain of Salt', 'Leonin Battlemage', 'Slate of Ancestry', 'Roar of Reclamation', 'Kami of Ancient Law', 'Knight of the Mists', 'Weatherseed Treefolk', 'Oona''s Grace', 'Thrash of Raptors', 'Rebuff the Wicked', 'Untamed Might', 'Laboratory Brute', 'Faerie Invaders', 'Excavator', 'Phyrexian Defiler', 'Foul Imp', 'Utopia Vow', 'Fountain of Youth', 'Messenger Drake', 'Flowstone Blade', 'Woodripper', 'Mesa Pegasus', 'Sliver Construct', 'Dimir Guildmage', 'Inspirit', 'Meglonoth', 'Hail Storm', 'Satyr Grovedancer', 'Cyclops of Eternal Fury', 'Spiderwig Boggart', 'Seek the Horizon', 'Vile Manifestation', 'Infected Vermin', 'Greatsword', 'Null Profusion', 'Grisly Transformation', 'Disciple of Phenax', 'Conduit of Storms', 'Verdeloth the Ancient', 'Shockmaw Dragon', 'Visara the Dreadful', 'Kemba''s Skyguard', 'Mana Skimmer', 'Primal Druid', 'Siege Mastodon', 'Fumarole', 'Mending Hands', 'Rakdos Cackler', 'Corrosive Gale', 'Fugue', 'Salvage Titan', 'Cunning Breezedancer', 'Ferocity', 'Triton Fortune Hunter', 'Living Tsunami', 'Village Survivors', 'Psychic Possession', 'Uktabi Efreet', 'Arc-Slogger', 'Qal Sisma Behemoth', 'Pure // Simple', 'Armory of Iroas', 'Smoke Teller', 'Corrupted Resolve', 'Knowledge and Power', 'Nightmare Incursion', 'Mind Maggots', 'Vhati il-Dal', 'Krark-Clan Engineers', 'Staggershock', 'Two-Headed Sliver', 'Warmonger''s Chariot', 'Tilonalli''s Knight', 'Coral Atoll', 'Flickerform', 'Whiptail Wurm', 'Fiend of the Shadows', 'Gargantuan Gorilla', 'Cloudpost', 'Truth or Tale', 'Jeskai Banner', 'Scent of Jasmine', 'Juxtapose', 'Heart Warden', 'Elvish Hexhunter', 'Tattered Haunter', 'Viridian Emissary', 'Thorn Thallid', 'Deathmark', 'Wanderer''s Twig', 'Olivia''s Bloodsworn', 'Weatherseed Totem', 'Mistmoon Griffin', 'Lim-Dûl''s Cohort', 'Open the Armory', 'Bloodstone Cameo', 'Dragon Bell Monk', 'Cast into Darkness', 'Lockjaw Snapper', 'Herdchaser Dragon', 'Furystoke Giant', 'Boros Battleshaper', 'Psychatog', 'Veteran Warleader', 'Wizened Cenn', 'Vizkopa Guildmage', 'Aven Battle Priest', 'Bower Passage', 'Inner Struggle', 'Sadistic Augermage', 'Frost Ogre', 'Squeaking Pie Grubfellows', 'Deranged Assistant', 'Ixalli''s Keeper', 'Plated Slagwurm', 'Paleoloth', 'Creeping Mold', 'Wings of Aesthir', 'Jhessian Zombies', 'Shaman of Spring', 'Idle Thoughts', 'Blood Lust', 'Grave Strength', 'Niblis of Frost', 'Ixidron', 'Impatience', 'Deftblade Elite', 'Hellhole Rats', 'Consulate Skygate', 'Ringskipper', 'Topan Freeblade', 'Tajuru Archer', 'Hero of Leina Tower', 'Bravado', 'Growing Ranks', 'Mana Bloom', 'Shadow Guildmage', 'Valeron Outlander', 'Halimar Tidecaller', 'Stern Mentor', 'Stream of Consciousness', 'Ancestral Statue', 'Sheer Drop', 'Kor Castigator', 'Dimensional Infiltrator', 'Confiscate', 'Sickleslicer', 'Reborn Hero', 'Infernal Kirin', 'Grim Return', 'Myr Prototype', 'Corrupted Conscience', 'Unified Front', 'Dreg Reaver', 'Nimble-Blade Khenra', 'Cyclopean Tomb', 'Gate Smasher', 'Turn // Burn', 'Chisei, Heart of Oceans', 'Flamespeaker Adept', 'Summoning Trap', 'Ghost-Lit Raider', 'Lightning Reflexes', 'Sage Aven', 'Golgari Keyrune', 'Indestructibility', 'Drown in Filth', 'Wandering Champion', 'Suspension Field', 'Junkyo Bell', 'Serpentine Spike', 'Tablet of the Guilds', 'Adarkar Sentinel', 'Krark-Clan Grunt', 'Stoneshaker Shaman', 'Molder Slug', 'Demonspine Whip', 'Lifespinner', 'Goblin Cadets', 'Tainted Remedy', 'Imperial Aerosaur', 'Barbed Sextant', 'Arashi, the Sky Asunder', 'Enslave', 'Patron of the Valiant', 'Reduce // Rubble', 'Sudden Spoiling', 'Frostweb Spider', 'Elvish Lyrist', 'Fleshbag Marauder', 'Parapet', 'Desolation Giant', 'Wetland Sambar', 'Kalonian Twingrove', 'Weirded Vampire', 'Lashweed Lurker', 'Eternity Snare', 'Djeru''s Renunciation', 'Obsianus Golem', 'Pillaging Horde', 'Tower of Murmurs', 'Trench Wurm', 'Waterveil Cavern', 'Loyal Pegasus', 'Mahamoti Djinn', 'Brown Ouphe', 'Mark of the Oni', 'Necropouncer', 'Priest of the Wakening Sun', 'Tidal Wave', 'Alluring Scent', 'Jade Guardian', 'Convicted Killer', 'Dross Prowler', 'Separatist Voidmage', 'Shimatsu the Bloodcloaked', 'Horned Cheetah', 'Villainous Wealth', 'Geyserfield Stalker', 'Puncturing Light', 'Angelic Benediction', 'Exemplar of Strength', 'Nightcreep', 'Goring Ceratops', 'Curse of Stalked Prey', 'Dragonshift', 'Brindle Boar', 'Mistform Dreamer', 'Desert Cerodon', 'Burning-Fist Minotaur', 'God-Pharaoh''s Faithful', 'Mardu Hateblade', 'Parallectric Feedback', 'Leave // Chance', 'Bident of Thassa', 'Appetite for Brains', 'Stenchskipper', 'Devout Chaplain', 'Sphere of Truth', 'Hexplate Golem', 'Ulvenwald Mystics', 'Cenn''s Heir', 'Vastwood Zendikon', 'Taigam''s Scheming', 'Nyxborn Rollicker', 'Dhund Operative', 'Grasping Dunes', 'Peel from Reality', 'Serra''s Embrace', 'Noble Templar', 'Darksteel Relic', 'Steelform Sliver', 'Goblin Glory Chaser', 'Reflexes', 'Grim Discovery', 'Oketra''s Last Mercy', 'Jeskai Elder', 'Feral Prowler', 'Fyndhorn Pollen', 'Soltari Monk', 'Dizzying Gaze', 'Murderous Spoils', 'Brutal Expulsion', 'Aerie Ouphes', 'Scourge of the Nobilis', 'Nightscape Familiar', 'Death Mutation', 'Bull Aurochs', 'Wood Sage', 'Aven Wind Guide', 'Kjeldoran Outrider', 'Thorn Elemental', 'Scourge of Fleets', 'Windreaver', 'Hyena Pack', 'Viashino Spearhunter', 'Syndicate Enforcer', 'Aura Finesse', 'Renowned Weaver', 'Talisman of Unity', 'Skyswirl Harrier', 'Coursers'' Accord', 'False Dawn', 'Feat of Resistance', 'King Cheetah', 'Torchling', 'Verdant Embrace', 'Skywhaler''s Shot', 'Blizzard Elemental', 'Flurry of Horns', 'Demonic Appetite', 'Ride Down', 'Horned Turtle', 'Dungeon Shade', 'That Which Was Taken', 'Legerdemain', 'Thelon of Havenwood', 'Woebearer', 'Magus of the Jar', 'Thriving Grubs', 'Sages of the Anima', 'Deranged Outcast', 'Foundry Inspector', 'Mirrorworks', 'Enraged Giant', 'Karametra''s Acolyte', 'Merfolk Assassin', 'Yawgmoth''s Edict', 'Radiant''s Judgment', 'Bloodhall Ooze', 'Conqueror''s Pledge', 'Hover Barrier', 'Laquatus''s Champion', 'Patron of the Orochi', 'Reverse the Sands', 'Dementia Sliver', 'About Face', 'Shivan Raptor', 'Bonebreaker Giant', 'Nosy Goblin', 'Slaughterhouse Bouncer', 'Guardians of Meletis', 'Keldon Necropolis', 'Stormfront Pegasus', 'Balduvian Frostwaker', 'Khalni Gem', 'Explosive Apparatus', 'Second Thoughts', 'Gruul War Plow', 'Baloth Woodcrasher', 'Dance of Shadows', 'Gelid Shackles', 'Imaginary Threats', 'Pit Spawn', 'Djinn Illuminatus', 'Necravolver', 'Smoldering Spires', 'Vanquish the Weak', 'Wind Strider', 'Rune-Cervin Rider', 'Pillory of the Sleepless', 'Seal of Primordium', 'Devilthorn Fox', 'Alloy Myr', 'Elvish Berserker', 'Unnerve', 'Zealot il-Vec', 'Agility', 'Thornbite Staff', 'Mutant''s Prey', 'Gwafa Hazid, Profiteer', 'Soltari Crusader', 'Head Games', 'Volcano Hellion', 'Flood Plain', 'Drake Familiar', 'Dissension in the Ranks', 'Claws of Wirewood', 'Angel of Glory''s Rise', 'Scion of the Wild', 'Bloodbond March', 'Stolen Grain', 'Samite Pilgrim', 'Serpent Generator', 'Dauthi Warlord', 'Riptide Chimera', 'Scion of Vitu-Ghazi', 'Advance Scout', 'Phyrexian War Beast', 'Aether Flash', 'Thraben Purebloods', 'Ghostfire', 'Traitorous Blood', 'Titan''s Strength', 'Orcish Veteran', 'Raging Goblin', 'Chromeshell Crab', 'Belltoll Dragon', 'Poison the Well', 'Mind Grind', 'Mischievous Poltergeist', 'Mesmeric Sliver', 'Culling Dais', 'Faerie Impostor', 'Gold-Forged Sentinel', 'Blazing Blade Askari', 'Barrage Ogre', 'Marhault Elsdragon', 'Deny Existence', 'Cabal Executioner', 'Saltfield Recluse', 'Flames of the Firebrand', 'Aether Tide', 'Restless Dead', 'Prickly Boggart', 'Azorius Herald', 'Rootborn Defenses', 'Cosmic Larva', 'Drill-Skimmer', 'Sunforger', 'Call the Scions', 'Reveka, Wizard Savant', 'Rushing-Tide Zubera', 'Invader Parasite', 'Kathari Remnant', 'Clash of Realities', 'Unbreathing Horde', 'Shefet Monitor', 'Predatory Hunger', 'Run Wild', 'Alesha''s Vanguard', 'Fetid Horror', 'Erebos''s Emissary', 'Rhox Meditant', 'Stinging Shot', 'Wall of Forgotten Pharaohs', 'Stormscale Anarch', 'Magma Spray', 'Surrakar Marauder', 'Prodigal Pyromancer', 'Crackling Perimeter', 'Belligerent Sliver', 'Grixis Illusionist', 'Hydra Broodmaster', 'Silkwing Scout', 'Caustic Crawler', 'Duergar Mine-Captain', 'Act of Treason', 'Ambuscade', 'Specter''s Shroud', 'Colossapede', 'Precognition', 'Undying Flames', 'Manic Vandal', 'Agent of Masks', 'Warren Weirding', 'Cytoplast Root-Kin', 'Death''s Approach', 'Akki Blizzard-Herder', 'Graceful Reprieve', 'Ageless Sentinels', 'Spellheart Chimera', 'Astral Cornucopia', 'Tymaret, the Murder King', 'Tideforce Elemental', 'Mercurial Kite', 'Astral Slide', 'Seizan, Perverter of Truth', 'Myr Incubator', 'Goblin Grappler', 'Roofstalker Wight', 'Amrou Scout', 'Beastcaller Savant', 'Bullwhip', 'Vestige of Emrakul', 'Thought Hemorrhage', 'Crushing Vines', 'Assemble the Legion', 'Lightkeeper of Emeria', 'Seething Anger', 'Plunder', 'Molder Beast', 'Awe for the Guilds', 'Conjured Currency', 'Mudbutton Torchrunner', 'Jötun Owl Keeper', 'Angelic Blessing', 'Battering Craghorn', 'Ojutai''s Summons', 'Insidious Will', 'Unhallowed Pact', 'Tragic Lesson', 'Boggart Ram-Gang', 'Lathnu Sailback', 'Skirsdag Cultist', 'Asphodel Wanderer', 'Toil to Renown', 'Kothophed, Soul Hoarder', 'Emergent Growth', 'Carven Caryatid', 'Mystic Monastery', 'Fatal Blow', 'Razorfin Abolisher', 'Loxodon Peacekeeper', 'Heroes Remembered', 'Steppe Lynx', 'Cylian Elf', 'Death Wind', 'Allied Reinforcements', 'Festergloom', 'Impetuous Sunchaser', 'Obelisk of Esper', 'Trusty Companion', 'Volition Reins', 'Temple Acolyte', 'Lotleth Troll', 'Servant of Tymaret', 'Wellgabber Apothecary', 'Tin Street Hooligan', 'Burr Grafter', 'Stun Sniper', 'Tower of Calamities', 'Mindleech Mass', 'Juvenile Gloomwidow', 'Persuasion', 'Moriok Rigger', 'Samurai of the Pale Curtain', 'Talus Paladin', 'Sphinx''s Disciple', 'Artificer''s Hex', 'Rest for the Weary', 'Eastern Paladin', 'Last-Ditch Effort', 'Mogis''s Marauder', 'Sicken', 'Aid from the Cowl', 'Rush of Ice', 'Drift of the Dead', 'Rattleclaw Mystic', 'Provoke', 'Bathe in Dragonfire', 'Rising Miasma', 'Razor Hippogriff', 'Bloodfire Expert', 'Stonybrook Schoolmaster', 'Black Cat', 'Defend the Hearth', 'Nim Shambler', 'Goblinslide', 'Hungry Mist', 'Dega Sanctuary', 'Inspiring Cleric', 'Gorilla Warrior', 'Fetid Imp', 'Outland Boar', 'Ghostly Visit', 'Cancel', 'Inferno', 'Plated Crusher', 'Sunspire Gatekeepers', 'Sir Shandlar of Eberyn', 'Grasp of Phantoms', 'Magister of Worth', 'Commander Greven il-Vec', 'Spincrusher', 'Deadly Allure', 'Mirror of Fate', 'Soul Ransom', 'Marsh Flitter', 'Storm Fleet Spy', 'Glen Elendra Pranksters', 'Lost Auramancers', 'Tel-Jilad Chosen', 'Zombie Brute', 'Titan of Eternal Fire', 'Sphere of the Suns', 'Pious Interdiction', 'Rakdos Shred-Freak', 'Hindering Touch', 'Sift Through Sands', 'Wicker Witch', 'Stronghold Overseer', 'Engulfing Slagwurm', 'Hedron Alignment', 'Burrenton Bombardier', 'Skyshaper', 'Vizier of the Anointed', 'Pine Walker', 'Leap of Flame', 'Fit of Rage', 'Unstable Hulk', 'Coral Eel', 'Kris Mage', 'Siege Modification', 'Stonewise Fortifier', 'Batterhorn', 'Twiddle', 'Thraben Gargoyle', 'Bandage', 'Bull Hippo', 'Volrath''s Laboratory', 'Puresight Merrow', 'Sanctum Gargoyle', 'Phyrexian Portal', 'Thassa''s Emissary', 'Thermal Navigator', 'Structural Distortion', 'Femeref Archers', 'Blighted Gorge', 'Rotfeaster Maggot', 'Bruna, the Fading Light', 'Wayfaring Temple', 'Thoughtpicker Witch', 'Mythic Proportions', 'Chronozoa', 'Whitemane Lion', 'Ghastly Remains', 'Mirran Spy', 'Renegade Warlord', 'Wave-Wing Elemental', 'Militant Inquisitor', 'Mist Raven', 'Game-Trail Changeling', 'Farm // Market', 'Honor''s Reward', 'Briarbridge Patrol', 'Balloon Peddler', 'Thriss, Nantuko Primus', 'Bog Tatters', 'Leonin Bola', 'Rush of Vitality', 'Gallows Warden', 'Flying Carpet', 'Vessel of Malignity', 'Blood Tyrant', 'Ugin''s Construct', 'Prahv, Spires of Order', 'Dragonscale General', 'Seeker of the Way', 'Volrath''s Shapeshifter', 'Sacred Boon', 'Rage Extractor', 'Rotting Legion', 'Talon of Pain', 'Primitive Justice', 'Twitch', 'Early Frost', 'Ribbons of the Reikai', 'Angelic Voices', 'Tranquil Garden', 'Revenant', 'Zerapa Minotaur', 'Crusher Zendikon', 'Terra Stomper', 'Temporal Distortion', 'Phyrexian Rebirth', 'Immobilizer Eldrazi', 'Returned Centaur', 'Eviscerator', 'Darklit Gargoyle', 'Zealots en-Dal', 'Advice from the Fae', 'Weirding Shaman', 'Pestilent Souleater', 'Sibsig Icebreakers', 'Cloudhoof Kirin', 'Geistflame', 'Lost Order of Jarkeld', 'Riddleform', 'Controvert', 'Shredding Winds', 'Spinal Villain', 'Lys Alana Bowmaster', 'Crypt Ripper', 'Phantasmal Forces', 'Fate Foretold', 'Akoum Hellkite', 'Fledgling Dragon', 'Fend Off', 'Rosheen Meanderer', 'Drekavac', 'Pyromatics', 'Indulgent Aristocrat', 'Lurking Informant', 'Skin Invasion', 'Prison Term', 'Fabrication Module', 'Silent Sentinel', 'Eddytrail Hawk', 'Vandalize', 'Shadowstorm Vizier', 'Dictate of the Twin Gods', 'Whirlpool Whelm', 'Ragemonger', 'Dust Elemental', 'Rushing River', 'Survey the Wreckage', 'Gather Courage', 'Spark Trooper', 'Mystic Genesis', 'Aerie Worshippers', 'Animal Boneyard', 'Edifice of Authority', 'Kami of Tattered Shoji', 'Spatial Contortion', 'Briber''s Purse', 'Hour of Need', 'Bomat Bazaar Barge', 'Fury Charm', 'Pardic Dragon', 'Ghirapur Gearcrafter', 'Meditation Puzzle', 'Araba Mothrider', 'Opal Guardian', 'Spined Thopter', 'Confirm Suspicions', 'Whiteout', 'Timesifter', 'Obelisk of Grixis', 'Traumatize', 'Fossil Find', 'Dauthi Mindripper', 'Crown of Ascension', 'Wall of Deceit', 'Deserter''s Quarters', 'Clan Defiance', 'Wild Ox', 'Pia''s Revolution', 'Temur Charger', 'Ogre Geargrabber', 'Flying Men', 'Gristleback', 'Mimeofacture', 'Shambling Remains', 'Ajani''s Chosen', 'Champion''s Drake', 'Warden of Evos Isle', 'Shu Elite Companions', 'Tanglebloom', 'Path of Peace', 'Restless Bones', 'Sorin''s Vengeance', 'Ghitu Fire-Eater', 'Razorjaw Oni', 'Shunt', 'Yoked Plowbeast', 'Armory Guard', 'Uyo, Silent Prophet', 'Final Judgment', 'Fungal Sprouting', 'Undead Alchemist', 'Meandering Towershell', 'Crimson Roc', 'Battle of Wits', 'Blessed Breath', 'Gloryscale Viashino', 'Gruul Ragebeast', 'Dream Twist', 'Phyrexian Splicer', 'Tidewater Minion', 'Spellbound Dragon', 'Fill with Fright', 'Sigil Blessing', 'Roc Egg', 'Ebony Rhino', 'Whiptail Moloch', 'Unbridled Growth', 'Fanatic of Mogis', 'Feral Lightning', 'Shuko', 'Jackal Familiar', 'Prescient Chimera', 'Consecrate Land', 'Infinite Obliteration', 'Whirlermaker', 'Galvanic Bombardment', 'Reality Hemorrhage', 'Student of Ojutai', 'Spare from Evil', 'Rabid Wolverines', 'Pit Keeper', 'Mudbrawler Raiders', 'Murder Investigation', 'Clone', 'Symbiosis', 'Ringwarden Owl', 'Matopi Golem', 'Makeshift Mauler', 'Esper Battlemage', 'Fated Return', 'Matsu-Tribe Sniper', 'Lunar Avenger', 'One Thousand Lashes', 'Wirecat', 'Nearheath Stalker', 'Azorius Cluestone', 'Avarice Amulet', 'Sever Soul', 'Mind Peel', 'Armored Pegasus', 'Armor Sliver', 'Giant Growth', 'Quicksmith Spy', 'Roots', 'Living Hive', 'Waterspout Weavers', 'Death Pits of Rath', 'Bear''s Companion', 'Shambling Strider', 'Hazy Homunculus', 'Hoofprints of the Stag', 'Courageous Outrider', 'Sightless Brawler', 'Goblin Goon', 'Mycologist', 'Tightening Coils', 'Silverblade Paladin', 'Geyser Glider', 'Mercurial Pretender', 'Wall of Distortion', 'World at War', 'Jawbone Skulkin', 'Live Fast', 'Alabaster Kirin', 'Vivid Marsh', 'Dimir Keyrune', 'Oasis Ritualist', 'Headstrong Brute', 'Tolarian Drake', 'Hideous End', 'Crystal Golem', 'Vedalken Heretic', 'Crystal Seer', 'Bramblecrush', 'Dead Weight', 'Alms', 'Needlebug', 'Leaden Myr', 'Arbor Colossus', 'Gurmag Drowner', 'Kashi-Tribe Reaver', 'Nav Squad Commandos', 'Merfolk Spy', 'Underworld Coinsmith', 'Latulla''s Orders', 'Pale Recluse', 'Abzan Battle Priest', 'Planar Despair', 'Lu Meng, Wu General', 'Kaervek''s Torch', 'Hesitation', 'Sudden Death', 'Penance', 'Possessed Nomad', 'Deathgaze Cockatrice', 'Nim Grotesque', 'Shrapnel Blast', 'Devouring Greed', 'Stone Haven Outfitter', 'Pacification Array', 'Prismwake Merrow', 'Vision Skeins', 'Dominator Drone', 'Wolfir Silverheart', 'Jeskai Runemark', 'Mindculling', 'Halcyon Glaze', 'Spreading Algae', 'Vessel of Endless Rest', 'Mind Rot', 'Undead Minotaur', 'Master of Predicaments', 'Kyren Glider', 'Lys Alana Scarblade', 'Unblinking Bleb', 'Cryptborn Horror', 'Terror of the Fairgrounds', 'Brute Strength', 'Dreadbringer Lampads', 'Civic Guildmage', 'Honden of Cleansing Fire', 'Lavamancer''s Skill', 'Tresserhorn Skyknight', 'Guan Yu, Sainted Warrior', 'Zealous Strike', 'Pinecrest Ridge', 'Patron of the Wild', 'Zhur-Taa Ancient', 'Accursed Horde', 'Orcish Lumberjack', 'Plague Dogs', 'Woolly Loxodon', 'Vampiric Sliver', 'Bold Impaler', 'Relentless Skaabs', 'Goblin Taskmaster', 'Aerial Responder', 'Treasure Cruise', 'Master Trinketeer', 'To Arms!', 'Celestial Archon', 'War Falcon', 'Runed Stalactite', 'Gearseeker Serpent', 'Vampire Warlord', 'Swarm Surge', 'Day of the Dragons', 'Pull from the Deep', 'Rites of Refusal', 'Guardians of Akrasa', 'Battered Golem', 'Fortune Thief', 'Goblin Ringleader', 'Lapse of Certainty', 'Spearbreaker Behemoth', 'Concentrate', 'Betrayal of Flesh', 'Vampirism', 'Glitterfang', 'Refraction Trap', 'Nimana Sell-Sword', 'Illusory Wrappings', 'Heavy Arbalest', 'Cathar''s Companion', 'Madcap Skills', 'Spire Tracer', 'Counterbore', 'Thicket Basilisk', 'Paragon of Eternal Wilds', 'Erg Raiders', 'Flamecore Elemental', 'Swift Reckoning', 'Fertilid', 'Gluttonous Slime', 'Cinder Elemental', 'Wall of Diffusion', 'Maulfist Squad', 'Ramunap Hydra', 'Death Rattle', 'Maelstrom Djinn', 'Hissing Miasma', 'Tormenting Voice', 'Defiant Vanguard', 'Prism Ring', 'Rhystic Deluge', 'Leering Emblem', 'Vault Skyward', 'Arena Athlete', 'Outland Colossus', 'Rakdos Ragemutt', 'Bloodfire Mentor', 'Upwelling', 'Thought Devourer', 'Kyren Sniper', 'Maggot Therapy', 'Mirrorweave', 'Latch Seeker', 'Stasis Snare', 'Reclusive Artificer', 'Umbral Mantle', 'Insatiable Harpy', 'Soul''s Majesty', 'Asha''s Favor', 'Lone Revenant', 'Gruul Nodorog', 'Circle of Affliction', 'Wild Griffin', 'Thoughtweft Gambit', 'Dismiss into Dream', 'Frogtosser Banneret', 'Nettlevine Blight', 'Flying Crane Technique', 'Grave-Shell Scarab', 'Nature''s Lore', 'Spell Snip', 'Pulse of the Dross', 'Avian Changeling', 'Raksha Golden Cub', 'Sea Sprite', 'Sage''s Dousing', 'Karma', 'Ritual of Restoration', 'Ogre Jailbreaker', 'Vedalken Anatomist', 'Megrim', 'Onward // Victory', 'Blighted Fen', 'Silklash Spider', 'Reality Strobe', 'Tuknir Deathlock', 'Mystic Meditation', 'Lagac Lizard', 'Neheb, the Worthy', 'Sanctimony', 'Ghost-Lit Warder', 'Wing Splicer', 'Gloomhunter', 'Liturgy of Blood', 'Train of Thought', 'Thornbow Archer', 'Aven Skirmisher', 'Voyaging Satyr', 'Angrath''s Marauders', 'Dauntless River Marshal', 'Harm''s Way', 'Teremko Griffin', 'Cartouche of Strength', 'Molten Nursery', 'Dogpile', 'Quest for the Gravelord', 'Songstitcher', 'Crystalline Nautilus', 'Saving Grasp', 'Cryptic Cruiser', 'New Horizons', 'Rogue Skycaptain', 'Mirror Sheen', 'Agrus Kos, Wojek Veteran', 'Nightmare Void', 'Wear Away', 'Boggart Harbinger', 'Baloth Cage Trap', 'Hunted Dragon', 'Drake Umbra', 'Cemetery Recruitment', 'Natural End', 'Ajani''s Sunstriker', 'Cut the Earthly Bond', 'Leonin Skyhunter', 'Treacherous Link', 'Vigor Mortis', 'Last Kiss', 'Furyblade Vampire', 'Putrid Leech', 'Junk Golem', 'Wail of the Nim', 'Crash', 'Guardian Seraph', 'Rotting Mastodon', 'Salt Flats', 'Wandering Graybeard', 'Moonbow Illusionist', 'Kor Hookmaster', 'Weave Fate', 'Innocence Kami', 'Deep-Sea Kraken', 'Saltcrusted Steppe', 'Pinion Feast', 'Savannah Lions', 'Decorated Griffin', 'Cloak of Mists', 'Hamletback Goliath', 'Panic Attack', 'Iroas''s Champion', 'Verdant Force', 'Infectious Host', 'Firemaw Kavu', 'Spidersilk Net', 'Raptor Companion', 'Skarrgan Firebird', 'Isolation Cell', 'Pyromancer''s Gauntlet', 'Soul Stair Expedition', 'Binding Agony', 'Rend Spirit', 'Nylea''s Emissary', 'Deglamer', 'Homicidal Seclusion', 'Commune with Nature', 'Skyreach Manta', 'Mnemonic Wall', 'Reckless One', 'Fathom Seer', 'Peppersmoke', 'Hill Giant', 'Duskrider Falcon', 'Ravenous Demon', 'Grim Haruspex', 'Aethergeode Miner', 'Drowned', 'Sand Golem', 'Waterspout Elemental', 'Acid Web Spider', 'Tawnos''s Wand', 'Angelic Chorus', 'Colossus of Sardia', 'Custodian of the Trove', 'Rootwater Hunter', 'Kami of Fire''s Roar', 'Avacyn, Guardian Angel', 'Arm with Aether', 'Darigaaz''s Charm', 'Boggart Loggers', 'Satyr Nyx-Smith', 'Ant Queen', 'Transguild Courier', 'Reaper of Flight Moonsilver', 'Reason // Believe', 'Glint', 'Capashen Unicorn', 'Karoo', 'Wall of Light', 'Hibernation', 'Stampeding Serow', 'Gift of Tusks', 'Bastion Inventor', 'Armored Griffin', 'Sphinx-Bone Wand', 'Sibilant Spirit', 'Ruin Ghost', 'Lat-Nam''s Legacy', 'Petrified Plating', 'Clinging Mists', 'Press the Advantage', 'Empty the Catacombs', 'Vampiric Fury', 'Nantuko Monastery', 'Stomper Cub', 'Bonds of Mortality', 'Wall of Razors', 'Wring Flesh', 'Vile Rebirth', 'Suncrusher', 'Boltwing Marauder', 'Ballista Squad', 'Stasis Cell', 'Nobilis of War', 'Dune Beetle', 'Havoc Festival', 'Deathknell Kami', 'Crafty Pathmage', 'Titan Forge', 'Razor Golem', 'Tyrant of Valakut', 'Renegade Map', 'Radiant Kavu', 'Uba Mask', 'Aven Surveyor', 'Biting Rain', 'Zof Shade', 'Driver of the Dead', 'Evil Twin', 'Helium Squirter', 'Cathedral Sanctifier', 'Ruin in Their Wake', 'Ghost-Lit Redeemer', 'Proven Combatant', 'Giant Scorpion', 'Shaper Apprentice', 'Inferno Fist', 'Knight Watch', 'Headless Skaab', 'Boulder Salvo', 'Tattermunge Witch', 'Towering Indrik', 'Jor Kadeen, the Prevailer', 'Crypt Creeper', 'Jolrael, Empress of Beasts', 'Tar Snare', 'Vizier of Tumbling Sands', 'Deep Spawn', 'Lucent Liminid', 'Pitchburn Devils', 'Whip Sergeant', 'Vastwood Hydra', 'Nighthaze', 'Wild Beastmaster', 'Leonin Sun Standard', 'Celestial Sword', 'Kragma Butcher', 'Feudkiller''s Verdict', 'Hint of Insanity', 'Kitsune Bonesetter', 'Avacyn''s Collar', 'Bow of Nylea', 'Hunt the Weak', 'Talon Trooper', 'Fatal Frenzy', 'Stitched Drake', 'Jungle Delver', 'Order of Yawgmoth', 'Gnarled Effigy', 'Surestrike Trident', 'Hubris', 'Mardu Banner', 'Seismic Elemental', 'Benediction of Moons', 'Quarry Beetle', 'Whirling Catapult', 'Dong Zhou, the Tyrant', 'Falkenrath Noble', 'Charging Monstrosaur', 'Banishing Stroke', 'Nuisance Engine', 'Thieving Sprite', 'Stormscape Battlemage', 'Mirror Mockery', 'Consign to Dust', 'Momentary Blink', 'Boros Mastiff', 'Silent Observer', 'Disciple of Law', 'Telethopter', 'Possessed Barbarian', 'Declaration of Naught', 'Realm Razer', 'Conqueror''s Galleon', 'Scholar of Athreos', 'Bloodhunter Bat', 'Expunge', 'Blockbuster', 'Hypnotic Specter', 'Bonesplitter Sliver', 'Mystic Speculation', 'Clickslither', 'Festering Mummy', 'Kolaghan Monument', 'Mondronen Shaman', 'Phyrexian Monitor', 'Spiteful Bully', 'Awaken the Ancient', 'Stromkirk Patrol', 'Aurora Griffin', 'Rotcrown Ghoul', 'Rekindled Flame', 'Crossroads Consecrator', 'Cinder Barrens', 'Seraph of Dawn', 'Spite of Mogis', 'Jedit Ojanen', 'Auntie''s Snitch', 'Beacon of Destiny', 'Bloodletter Quill', 'Judge Unworthy', 'Vanquish', 'Aftershock', 'Wildwood Rebirth', 'Cairn Wanderer', 'Battlefield Thaumaturge', 'Trial of Ambition', 'Jalira, Master Polymorphist', 'Double Negative', 'Maw of Kozilek', 'Sylvan Bounty', 'Rakdos Pit Dragon', 'Maniacal Rage', 'Seagraf Skaab', 'Red Cliffs Armada', 'Mirror-Mad Phantasm', 'Psychic Spiral', 'Shielded Passage', 'Salt Road Patrol', 'Gibbering Kami', 'Dragon Blood', 'Lim-Dûl the Necromancer', 'Throat Slitter', 'Defensive Stance', 'Dazzling Ramparts', 'Resurrection', 'Echo Mage', 'Heal the Scars', 'Piston Sledge', 'Smokespew Invoker', 'Harbor Serpent', 'Chant of Vitu-Ghazi', 'Obelisk of Bant', 'Merfolk Seer', 'Conquer', 'Tormented Soul', 'Ring of Thune', 'Ulvenwald Captive', 'Haunted Guardian', 'Give No Ground', 'Cackling Imp', 'Warclamp Mastiff', 'Dread Wight', 'Graypelt Hunter', 'Cloudblazer', 'Mistform Mask', 'Boar Umbra', 'Mantle of Webs', 'Defy Death', 'Gang of Devils', 'Carapace', 'Esper Stormblade', 'Psychogenic Probe', 'Pick the Brain', 'Ronin Cliffrider', 'Ancient Silverback', 'Brothers Yamazaki', 'Burning Oil', 'Deadeye Quartermaster', 'Sacred Armory', 'Corrupted Harvester', 'Contaminated Ground', 'Intimidation Bolt', 'Broodhatch Nantuko', 'Hammerhand', 'Charge Across the Araba', 'Rakshasa''s Disdain', 'Spiketail Hatchling', 'Stonehands', 'Predator''s Rapport', 'Kessig Dire Swine', 'Kavu Titan', 'Skulduggery', 'Skymarch Bloodletter', 'Moldgraf Monstrosity', 'Reinforcements', 'Agent of Horizons', 'Hydrolash', 'Skittering Skirge', 'Court Archers', 'Dispossess', 'Sapseep Forest', 'Deepwater Hypnotist', 'Constricting Sliver', 'Briarhorn', 'Rubblebelt Maaka', 'Leashling', 'Marble Chalice', 'Backlash', 'Counsel of the Soratami', 'Manor Skeleton', 'Voldaren Pariah', 'Spitting Hydra', 'Anointed Deacon', 'Palladia-Mors', 'Mortarpod', 'Ulamog''s Despoiler', 'Ruthless Ripper', 'Symbol of Unsummoning', 'Battlegrowth', 'Spreading Flames', 'Patron of the Nezumi', 'Grazing Kelpie', 'Killing Glare', 'Retromancer', 'Blazing Volley', 'Rustspore Ram', 'Faerie Swarm', 'Epiphany Storm', 'Mogis''s Warhound', 'Strength of the Tajuru', 'Spiteful Motives', 'Hanabi Blast', 'Arc Trail', 'Maze Rusher', 'Remove Soul', 'Merciless Javelineer', 'Waylay', 'Faerie Trickery', 'Relic Crush', 'Skittering Heartstopper', 'Convalescence', 'Lay Bare the Heart', 'Hellion Crucible', 'Aether Swooper', 'Addle', 'Quillmane Baku', 'Vein Drinker', 'Razorfield Thresher', 'Caustic Hound', 'Blood Host', 'Afterlife', 'Warp World', 'Drag Under', 'Skullcage', 'Marisi''s Twinclaws', 'Gurzigost', 'Sundering Growth', 'Pyrotechnics', 'Hammer of Purphoros', 'Thunderstaff', 'Zektar Shrine Expedition', 'Nacatl Outlander', 'Quickchange', 'Spell Shrivel', 'Goblin Machinist', 'Bogardan Phoenix', 'Bane of Bala Ged', 'Feed the Pack', 'Razaketh''s Rite', 'Dread Reaper', 'Whispersilk Cloak', 'Heavy Mattock', 'Bog Imp', 'Fan Bearer', 'Knight of Obligation', 'Bloodhall Priest', 'Shed Weakness', 'Crash the Ramparts', 'Courier Hawk', 'Minotaur Sureshot', 'Ursine Fylgja', 'Silumgar Butcher', 'Heat of Battle', 'Pennon Blade', 'Saberclaw Golem', 'Invincible Hymn', 'Allay', 'Turn the Tide', 'Spin into Myth', 'Crimson Manticore', 'Might of Oaks', 'Boggart Mob', 'Centaur Glade', 'Sylvan Might', 'Coral Barrier', 'Intangible Virtue', 'Desperate Castaways', 'Dakmor Lancer', 'Bazaar Trader', 'Patron of the Moon', 'Grapeshot Catapult', 'Thawing Glaciers', 'Latchkey Faerie', 'Ulasht, the Hate Seed', 'Aven of Enduring Hope', 'Sabretooth Tiger', 'Craterize', 'Spirit of the Hunt', 'Self-Inflicted Wound', 'Fireslinger', 'Doorkeeper', 'Defensive Formation', 'Kraken''s Eye', 'Town Gossipmonger', 'Aether Charge', 'Mephitic Ooze', 'Drooling Groodion', 'Spectral Rider', 'Grim Guardian', 'Burst of Energy', 'Brain Maggot', 'Ready // Willing', 'Dingus Egg', 'Silkenfist Fighter', 'Plagiarize', 'Ice Storm', 'Vigean Hydropon', 'Fervent Charge', 'Stromkirk Occultist', 'Nullmage Shepherd', 'Mizzium Meddler', 'Fog Patch', 'Noble Purpose', 'Crippling Blight', 'Throttle', 'Queen''s Bay Soldier', 'Patagia Viper', 'Bane Alley Broker', 'Clockwork Gnomes', 'Waning Wurm', 'Elvish Hunter', 'Winged Shepherd', 'Pristine Talisman', 'Smoldering Tar', 'Goblin Firebug', 'Mangara of Corondor', 'Presence of the Wise', 'Searing Light', 'Sengir Nosferatu', 'Sakura-Tribe Springcaller', 'Hammerhead Shark', 'Terror', 'Scrambleverse', 'Cobbled Wings', 'Genju of the Spires', 'Processor Assault', 'Thriving Rats', 'Amok', 'Trail of Mystery', 'Storm Shaman', 'Nezumi Graverobber', 'Molten Psyche', 'Kefnet''s Last Word', 'Crash Landing', 'Soulstinger', 'Disruptive Pitmage', 'Stone Idol Trap', 'Empyrial Armor', 'Kird Chieftain', 'Copperhorn Scout', 'Puncture Blast', 'Brainspoil', 'Vampire Envoy', 'Divine Verdict', 'Dryad''s Caress', 'Dark Privilege', 'Hypervolt Grasp', 'Squall Drifter', 'Ayumi, the Last Visitor', 'Treasured Find', 'Oros, the Avenger', 'Pteron Ghost', 'Mardu Runemark', 'Gravetiller Wurm', 'Souldrinker', 'Insubordination', 'Cloudseeder', 'Tidal Bore', 'Stone Giant', 'Rise of Eagles', 'Ridge Rannet', 'Kiln Walker', 'Song of Blood', 'Moonglove Winnower', 'Gnarlid Pack', 'Scuttling Doom Engine', 'Enatu Golem', 'Tanglewalker', 'Punish Ignorance', 'Headhunter', 'Prey Upon', 'Confront the Unknown', 'Shining Aerosaur', 'Ruinous Minotaur', 'Silver Wyvern', 'Kaho, Minamo Historian', 'Dwarven Demolition Team', 'Snarling Undorak', 'Avenging Arrow', 'Grimclaw Bats', 'Squelch', 'Seer of the Last Tomorrow', 'Millennial Gargoyle', 'Hagra Sharpshooter', 'Martyr''s Cause', 'Loxodon Gatekeeper', 'Wildfire Emissary', 'Cyclopean Giant', 'Lead Golem', 'Vine Kami', 'Catalog', 'Paralyzing Grasp', 'Pirate''s Cutlass', 'Mycosynth Wellspring', 'Accursed Centaur', 'Stitcher''s Graft', 'Misfortune''s Gain', 'Mogg Squad', 'Angel''s Tomb', 'Verdant Automaton', 'Peer Through Depths', 'Aerie Mystics', 'Aven Sunstriker', 'Surge Node', 'Putrid Imp', 'Knowledge Pool', 'Disturbed Burial', 'Wardscale Dragon', 'Lake of the Dead', 'Leonin Armorguard', 'Waker of the Wilds', 'Updraft Elemental', 'Moan of the Unhallowed', 'Chancellor of the Spires', 'Godo''s Irregulars', 'Marker Beetles', 'Vow of Wildness', 'Humbler of Mortals', 'Kor Cartographer', 'Grip of Desolation', 'Teferi''s Drake', 'Spark of Creativity', 'Stalking Bloodsucker', 'Herald of Torment', 'Ainok Tracker', 'Divine Deflection', 'Blood-Cursed Knight', 'Aethersnipe', 'Hand of the Praetors', 'Granulate', 'Crosswinds', 'Voidmage Apprentice', 'Hunter''s Insight', 'Light of Sanction', 'Teferi''s Moat', 'Vizier of the True', 'Maw of the Mire', 'Viashivan Dragon', 'Seismic Rupture', 'Galvanic Arc', 'Eel Umbra', 'Angelic Favor', 'Broken Fall', 'One with Nothing', 'Order of the White Shield', 'Dragon Hatchling', 'Caregiver', 'Ancient Crab', 'Swamp', 'Aerial Volley', 'Redeem', 'Gobbling Ooze', 'Kolaghan Stormsinger', 'Vexing Scuttler', 'Kozilek''s Pathfinder', 'Hissing Iguanar', 'Duneblast', 'Thought Harvester', 'Turntimber Grove', 'Ronin Houndmaster', 'Ornamental Courage', 'Qarsi High Priest', 'Spell Burst', 'Daredevil Dragster', 'Fallen Cleric', 'Merfolk Traders', 'Thriving Turtle', 'Brimstone Dragon', 'Neverending Torment', 'Scythe Tiger', 'Tide Drifter', 'Rush of Knowledge', 'Seismic Stomp', 'Molten Ravager', 'Skulking Fugitive', 'Skirk Outrider', 'Dragonloft Idol', 'Nemesis Mask', 'Gift of Strength', 'Empyrial Plate', 'Tethmos High Priest', 'Claim // Fame', 'Skyspear Cavalry', 'Spitting Gourna', 'Hand of Silumgar', 'Lurking Evil', 'Surveilling Sprite', 'Cinder Crawler', 'Flowstone Shambler', 'Scourge of Skola Vale', 'Skirge Familiar', 'Sun-Crowned Hunters', 'Aether Storm', 'Baneful Omen', 'Summary Dismissal', 'Relic Barrier', 'Raven''s Run Dragoon', 'Aquamorph Entity', 'Restore the Peace', 'Fluxcharger', 'Suntail Hawk', 'Lantern-Lit Graveyard', 'Flailing Drake', 'Scourge of Numai', 'Curse of the Nightly Hunt', 'Ebon Stronghold', 'Thick-Skinned Goblin', 'Selesnya Guildgate', 'Torment', 'Douse in Gloom', 'Grizzled Outcasts', 'Flinthoof Boar', 'Sphinx''s Herald', 'Lightning Dragon', 'Kazuul Warlord', 'Inkfathom Infiltrator', 'Call for Blood', 'Oracle of Dust', 'Alley Strangler', 'Keymaster Rogue', 'Break Asunder', 'Crypt of the Eternals', 'Barrage of Expendables', 'Arcane Spyglass', 'Thunderclap Wyvern', 'Biting Tether', 'Ichor Slick', 'Deadwood Treefolk', 'Shield Bearer', 'Masked Admirers', 'Quiet Speculation', 'Hermit of the Natterknolls', 'Terrarion', 'Harness the Storm', 'Dizzy Spell', 'Skeletal Kathari', 'Bant Battlemage', 'Minotaur Skullcleaver', 'Chemister''s Trick', 'Pincher Beetles', 'Steam Augury', 'Crazed Goblin', 'Savra, Queen of the Golgari', 'Learn from the Past', 'Wall of Stone', 'Whims of the Fates', 'Luminesce', 'Fodder Launch', 'Gainsay', 'Reviving Dose', 'Cryoclasm', 'Abzan Kin-Guard', 'One with Nature', 'Revive', 'Manacles of Decay', 'Aphetto Vulture', 'Tower Gargoyle', 'Royal Assassin', 'Herald of Dromoka', 'Hindervines', 'Anax and Cymede', 'Brood of Cockroaches', 'Enchantment Alteration', 'Death Pulse', 'Molten Frame', 'Anticipate', 'Nezumi Bone-Reader', 'Ring of Renewal', 'Rejuvenate', 'Molten Sentry', 'Snapsail Glider', 'Recumbent Bliss', 'Built to Last', 'Shieldhide Dragon', 'Sphinx Summoner', 'Borrowed Grace', 'Ember-Fist Zubera', 'Tajic, Blade of the Legion', 'Moonlace', 'Skyfire Kirin', 'Dawnglow Infusion', 'Greenside Watcher', 'Oashra Cultivator', 'Dakmor Plague', 'Vexing Beetle', 'Watcher Sliver', 'Thopter Spy Network', 'Plated Geopede', 'Embalmed Brawler', 'Abandon Reason', 'Wall of Vines', 'Silumgar Monument', 'Unnatural Speed', 'Anthousa, Setessan Hero', 'Steady Progress', 'Marjhan', 'Thelonite Hermit', 'Honden of Infinite Rage', 'Angelic Wall', 'Trap Digger', 'Bramblesnap', 'Takklemaggot', 'Disciple of Deceit', 'Shrine of Boundless Growth', 'Despoiler of Souls', 'Merfolk Sovereign', 'Glacial Crevasses', 'Noggle Hedge-Mage', 'Topple', 'Ensouled Scimitar', 'Lone Rider', 'Soltari Champion', 'Fireshrieker', 'Fortune''s Favor', 'Charging Rhino', 'Keldon Megaliths', 'Akki Underling', 'Kederekt Leviathan', 'Firemantle Mage', 'Autumn Willow', 'Colfenor''s Urn', 'Nightfire Giant', 'Death Denied', 'Lymph Sliver', 'Porcelain Legionnaire', 'Joraga Bard', 'Barrage Tyrant', 'Hana Kami', 'Akki Avalanchers', 'Goblin Gaveleer', 'Strider Harness', 'Trespasser''s Curse', 'Fade into Antiquity', 'Desolation', 'Grave Defiler', 'Oraxid', 'Wicked Akuba', 'Calcite Snapper', 'Paperfin Rascal', 'Mortus Strider', 'Brass Man', 'Vital Splicer', 'Bloodwater Entity', 'Darksteel Gargoyle', 'Soldevi Machinist', 'Heaven // Earth', 'Soothing Balm', 'Keening Apparition', 'Sultai Flayer', 'Jareth, Leonine Titan', 'Markov Dreadknight', 'Stronghold Discipline', 'Annihilating Fire', 'Revelsong Horn', 'Winds of Rebuke', 'Dynacharge', 'Murderous Betrayal', 'Tasigur''s Cruelty', 'Bulwark', 'Goblin Freerunner', 'Hermit Druid', 'Displace', 'Temmet, Vizier of Naktamun', 'Angel of Fury', 'Spirit Shackle', 'Tower Drake', 'Tuskguard Captain', 'Zephid', 'Chain of Acid', 'Stone Calendar', 'Dehydration', 'Pounce', 'Spear of Heliod', 'Corpse Churn', 'Covenant of Minds', 'Pursue Glory', 'Dual Shot', 'Trophy Hunter', 'Rimebound Dead', 'Trait Doctoring', 'Whipstitched Zombie', 'Plumeveil', 'Bayou Dragonfly', 'Dross Golem', 'Dust of Moments', 'Knightly Valor', 'Pyxis of Pandemonium', 'Reito Lantern', 'Long-Forgotten Gohei', 'Lifecraft Cavalry', 'Shield Wall', 'Elvish Skysweeper', 'Rith''s Grove', 'Laccolith Rig', 'Whetwheel', 'Gnarlroot Trapper', 'Aven Initiate', 'Wurmcalling', 'Blitz Hellion', 'Maze of Shadows', 'Bog Serpent', 'Pain Kami', 'Rathi Trapper', 'Fists of the Anvil', 'Harvest Season', 'Rage Reflection', 'Soulcage Fiend', 'Furnace of Rath', 'Prizefighter Construct', 'Light of Day', 'Markov Crusader', 'Goblin War Wagon', 'Jace''s Mindseeker', 'Incite Hysteria', 'Firehoof Cavalry', 'Torrent of Stone', 'Emeria Angel', 'Metallurgeon', 'Metropolis Sprite', 'Nim Replica', 'Spitting Earth', 'Sky Ruin Drake', 'Pyramid of the Pantheon', 'Arcbound Crusher', 'Wipe Clean', 'Okk', 'Terashi''s Verdict', 'Summon the School', 'Seize the Soul', 'Cloudchaser Kestrel', 'Vulshok Gauntlets', 'Ghostly Possession', 'Paragon of Open Graves', 'Tyrranax', 'Forest', 'Humble', 'Vengeful Vampire', 'Disciple of Malice', 'Umbra Mystic', 'Magnetic Theft', 'Graven Dominator', 'Ghitu Encampment', 'Jar of Eyeballs', 'Intervene', 'Seashell Cameo', 'Funeral March', 'Molten Firebird', 'Flamecast Wheel', 'Hunting Wilds', 'Suntouched Myr', 'Nissa''s Revelation', 'Sungrace Pegasus', 'Jamuraan Lion', 'Hasran Ogress', 'Umara Entangler', 'Gristle Grinner', 'Midnight Scavengers', 'Murder', 'Eldrazi Aggressor', 'Bar the Door', 'Urza''s Armor', 'Trigon of Mending', 'Biorhythm', 'Sandsteppe Mastodon', 'Tajuru Beastmaster', 'Market Festival', 'Viridian Joiner', 'Breath of Fury', 'Jund Panorama', 'Vile Redeemer', 'Abyssal Nocturnus', 'Lens of Clarity', 'Skinbrand Goblin', 'Lagonna-Band Elder', 'Quicksmith Rebel', 'Armed Response', 'Booby Trap', 'Folk of the Pines', 'Dosan''s Oldest Chant', 'Blind Phantasm', 'Decommission', 'Sanitarium Skeleton', 'Nightmare', 'Hurricane', 'Two-Headed Cerberus', 'Vigean Graftmage', 'Caustic Rain', 'Boros Fury-Shield', 'Whirling Dervish', 'Molting Skin', 'Saltskitter', 'Orcish Cannoneers', 'Ambush Commander', 'Copper Myr', 'Wormwood Treefolk', 'Twinning Glass', 'Ferrovore', 'Pendrell Flux', 'Arborback Stomper', 'Tolsimir Wolfblood', 'Wildwood Geist', 'Artisan of Kozilek', 'Act on Impulse', 'Mer-Ek Nightblade', 'Grip of the Roil', 'Veteran''s Sidearm', 'Lingering Death', 'Forced Adaptation', 'Mindlock Orb', 'Quagnoth', 'Volcanic Geyser', 'Planar Overlay', 'Coast Watcher', 'Grisly Spectacle', 'Lifecrafter''s Gift', 'Zhalfirin Knight', 'Self-Assembler', 'Deadeye Plunderers', 'Bile Urchin', 'Gale Force', 'Slinking Giant', 'Kami of the Hunt', 'Vessel of Ephemera', 'Dragonrage', 'Timberpack Wolf', 'Queen''s Agent', 'Ethersworn Shieldmage', 'Nemesis of Mortals', 'Seer''s Sundial', 'Grandmother Sengir', 'Regenerate', 'Viashino Sandstalker', 'Prism Array', 'Tyrannize', 'Rakish Heir', 'Ancient Carp', 'Priest of Urabrask', 'Howl of the Horde', 'Tradewind Rider', 'Thief of Hope', 'Oath of Scholars', 'Wee Dragonauts', 'Joven''s Ferrets', 'Aphetto Dredging', 'Shah of Naar Isle', 'Excommunicate', 'Helldozer', 'Swift Spinner', 'Ghostblade Eidolon', 'Ragamuffyn', 'Cleric of the Forward Order', 'Silverfur Partisan', 'Aurora Eidolon', 'Crystal Ball', 'Homura, Human Ascendant', 'Thran Weaponry', 'Renegade Tactics', 'Basilica Screecher', 'Chaos Charm', 'Fire-Belly Changeling', 'Spectral Lynx', 'Dromoka Monument', 'Desecration Elemental', 'Thoughtcutter Agent', 'Trespasser il-Vec', 'Death Match', 'Shifty Doppelganger', 'Predatory Advantage', 'Storm Herd', 'Inferno Trap', 'Tormented Thoughts', 'Volrath''s Dungeon', 'Sewer Shambler', 'Village Ironsmith', 'Kor Sky Climber', 'Broken Concentration', 'Soltari Lancer', 'Reciprocate', 'Inquisitor Exarch', 'Thunderbolt', 'Bull Elephant', 'New Perspectives', 'Act of Aggression', 'Yavimaya Ants', 'Gladehart Cavalry', 'Glimpse the Future', 'Epiphany at the Drownyard', 'Tenacious Dead', 'Witness of the Ages', 'Retreat to Kazandu', 'Serendib Sorcerer', 'Trial of Solidarity', 'Rubblebelt Raiders', 'Fireball', 'Boulderfall', 'Snapback', 'Silver Myr', 'Unmake the Graves', 'Wall of Air', 'Phyrexian Hydra', 'Guard Gomazoa', 'Wharf Infiltrator', 'Volcanic Dragon', 'Dark Tutelage', 'Serpentine Basilisk', 'Torture Chamber', 'Unwavering Initiate', 'Bee Sting', 'Welder Automaton', 'Stroke of Genius', 'Death Cultist', 'Precinct Captain', 'Valley Dasher', 'Smelt', 'Goblin Brigand', 'Shields of Velis Vel', 'Goblin Cannon', 'Leyline Phantom', 'Mizzium Transreliquat', 'Endless Obedience', 'Fate Forgotten', 'Drastic Revelation', 'Leaping Lizard', 'Triton Cavalry', 'Blightsoil Druid', 'Gridlock', 'Voyager Staff', 'Pentagram of the Ages', 'Intrepid Hero', 'Skinthinner', 'Squire', 'Gruul Charm', 'Frontline Strategist', 'Seedguide Ash', 'Chandra''s Outrage', 'Thousand-legged Kami', 'Odds // Ends', 'Time to Reflect', 'Metamorphose', 'Moldgraf Scavenger', 'Savage Hunger', 'Skirsdag Flayer', 'Incubator Drone', 'Mossdog', 'Sire of the Storm', 'Wingbeat Warrior', 'Crash Through', 'Guild Feud', 'Glimpse the Sun God', 'Boldwyr Intimidator', 'Fleshwrither', 'Ranger en-Vec', 'Blood Bairn', 'Decompose', 'Stalking Stones', 'Sunder from Within', 'Stir the Sands', 'Stern Proctor', 'Marauding Looter', 'Chalice of Life', 'Gempalm Strider', 'Lightning Talons', 'Oviya Pashiri, Sage Lifecrafter', 'Skyhunter Cub', 'Baleful Stare', 'Fen Stalker', 'Sanguine Guard', 'Rotted Hulk', 'Galestrike', 'Frozen Aether', 'Scroll of Avacyn', 'Sparring Mummy', 'Aether Meltdown', 'Dragonstorm', 'Arrow Storm', 'Mistral Charger', 'Ambitious Aetherborn', 'Blood Seeker', 'Gigapede', 'Descendant of Kiyomaro', 'Wings of Velis Vel', 'Implement of Malice', 'Voice of Law', 'Sudden Storm', 'Chilling Shade', 'Tormented Pariah', 'End Hostilities', 'Karn, Silver Golem', 'Amass the Components', 'Turn to Mist', 'Anavolver', 'Divine Favor', 'Formless Nurturing', 'Fateful Showdown', 'Meloku the Clouded Mirror', 'Rakshasa Gravecaller', 'Bloodmad Vampire', 'Henge Guardian', 'Arbiter of Knollridge', 'Knight Errant', 'Spawning Breath', 'Nacatl Hunt-Pride', 'Shambling Attendants', 'Catapult Squad', 'Watchwing Scarecrow', 'Seal of Cleansing', 'Shimmer Myr', 'Kin-Tree Invocation', 'Compelling Argument', 'Flamewave Invoker', 'Wicker Warcrawler', 'Favor of the Mighty', 'Livonya Silone', 'Rally the Horde', 'Goblin Piker', 'Elven Cache', 'Seed Guardian', 'Private Research', 'Spontaneous Artist', 'Collective Blessing', 'Skyship Stalker', 'Southern Elephant', 'Necrologia', 'Battlefront Krushok', 'Protective Bubble', 'Korozda Guildmage', 'Soul Feast', 'Seascape Aerialist', 'Minion Reflector', 'It of the Horrid Swarm', 'Tattermunge Maniac', 'Cephalid Pathmage', 'Agonizing Memories', 'Eliminate the Competition', 'Hellhole Flailer', 'Archetype of Aggression', 'Enervate', 'Putrid Raptor', 'Spore Burst', 'Spelltwine', 'Secret Plans', 'Ghastly Discovery', 'Nevermaker', 'Storm Seeker', 'Fireforger''s Puzzleknot', 'Golgari Decoy', 'Lobber Crew', 'Malachite Golem', 'Knight-Captain of Eos', 'Dusk Legion Dreadnought', 'Ominous Sphinx', 'Stangg', 'Borderland Minotaur', 'Petrified Wood-Kin', 'Serene Steward', 'Circular Logic', 'Caravan Escort', 'Repel Intruders', 'Ruins of Oran-Rief', 'Llanowar Empath', 'Abzan Skycaptain', 'Treacherous Urge', 'Merchant''s Dockhand', 'Consume the Meek', 'Drudge Beetle', 'Hurloon Minotaur', 'Swirl the Mists', 'Warped Landscape', 'Lone Wolf', 'Phantom Wings', 'Trigon of Rage', 'Ojutai Interceptor', 'Incremental Blight', 'Snow Fortress', 'Soratami Savant', 'Goblin Turncoat', 'Skull Fracture', 'Hired Giant', 'Time to Feed', 'Unchecked Growth', 'Trained Orgg', 'Willbender', 'Weatherseed Faeries', 'Skyhunter Skirmisher', 'Weldfast Monitor', 'Plumes of Peace', 'Omnibian', 'Inquisitor''s Ox', 'Hulking Goblin', 'Gaseous Form', 'Two-Headed Giant of Foriys', 'Master Thief', 'Painted Bluffs', 'Cathedral Membrane', 'Morkrut Banshee', 'Shaper Guildmage', 'Golem''s Heart', 'Precursor Golem', 'Ghostly Sentinel', 'Otherworldly Outburst', 'Angel of the God-Pharaoh', 'Rockshard Elemental', 'Reinforced Bulwark', 'Hijack', 'Thundering Tanadon', 'Tragic Arrogance', 'Walking Dream', 'Blaze of Glory', 'Knight of Sursi', 'Sadistic Glee', 'Concordia Pegasus', 'Arc Lightning', 'Misery Charm', 'Pygmy Troll', 'Fungal Reaches', 'Spotted Griffin', 'Raven Familiar', 'Familiar Ground', 'Talruum Champion', 'Combat Medic', 'Knight of the Holy Nimbus', 'Cradle of the Accursed', 'Myr Turbine', 'Elvish Promenade', 'Prying Blade', 'Maze Abomination', 'Ascending Aven', 'Abzan Runemark', 'Nantuko Vigilante', 'Hundred-Talon Kami', 'Phantom Wurm', 'Shriek Raptor', 'Welding Sparks', 'Talent of the Telepath', 'Unfriendly Fire', 'Feast of Blood', 'Whispers of Emrakul', 'Muzzle', 'Yosei, the Morning Star', 'Unity of Purpose', 'Rain of Blades', 'War Flare', 'Hazoret''s Favor', 'Jötun Grunt', 'Exclusion Ritual', 'Dusk Feaster', 'Chief of the Scale', 'Shadow of the Grave', 'Crag Puca', 'War Dance', 'Torrent of Fire', 'Rhox Charger', 'Niveous Wisps', 'Clearwater Goblet', 'Feral Incarnation', 'Gilded Light', 'Ior Ruin Expedition', 'Assault Griffin', 'Iridescent Drake', 'Diregraf Ghoul', 'Sprouting Thrinax', 'Act of Heroism', 'Scourge of Kher Ridges', 'Scythe Leopard', 'Hour of Eternity', 'Tooth Collector', 'Basalt Gargoyle', 'Heartstabber Mosquito', 'Pegasus Stampede', 'Browbeat', 'Rootwater Alligator', 'Quarry Colossus', 'Midnight Oil', 'Hermetic Study', 'Demon''s Horn', 'Vanguard''s Shield', 'Intrepid Provisioner', 'Key to the City', 'Survival Cache', 'Graveblade Marauder', 'Princess Lucrezia', 'Crovax, Ascendant Hero', 'Root Elemental', 'Boggart Forager', 'Enthralling Victor', 'Groundskeeper', 'Fleshformer', 'Blazing Specter', 'Brush with Death', 'Illuminated Folio', 'Venerable Lammasu', 'Timber Gorge', 'Pitiless Horde', 'Kujar Seedsculptor', 'Zephid''s Embrace', 'Loafing Giant', 'Zhur-Taa Druid', 'Rhys the Exiled', 'Shreds of Sanity', 'Hydroform', 'Repeating Barrage', 'Flame Javelin', 'Ghirapur Osprey', 'Primal Bellow', 'Enshrined Memories', 'Skygames', 'Brittle Effigy', 'Rakdos Augermage', 'Implode', 'Erratic Mutation', 'Encrust', 'Thrill-Kill Assassin', 'Elemental Resonance', 'Fangren Hunter', 'Unwilling Recruit', 'Waxing Moon', 'Naya Hushblade', 'Cleansing Beam', 'Noosegraf Mob', 'Forsake the Worldly', 'Bloodfire Dwarf', 'Shinen of Flight''s Wings', 'Fire Dragon', 'Utopia Mycon', 'Pheres-Band Thunderhoof', 'Sunrise Seeker', 'Cinder Storm', 'Elvish Scrapper', 'Duskworker', 'Chronostutter', 'Wild Dogs', 'Sylvan Hierophant', 'Turnabout', 'Hunted Ghoul', 'Rakdos Ringleader', 'Mana Prism', 'Strafe', 'Assembly-Worker', 'Hedron Matrix', 'Barter in Blood', 'Myr Sire', 'Era of Innovation', 'Mindless Null', 'Future Sight', 'Trapjaw Kelpie', 'Elemental Appeal', 'Chaplain''s Blessing', 'Phylactery Lich', 'Jolrael''s Centaur', 'Selfless Cathar', 'Ancient Hellkite', 'Woolly Mammoths', 'Wurmweaver Coil', 'Lotus Path Djinn', 'Hydrosurge', 'Avalanche Tusker', 'Mercy Killing', 'Trigon of Infestation', 'Vampire Noble', 'Blessing', 'Join the Ranks', 'Ambush Krotiq', 'Plague of Vermin', 'Wild Pair', 'Falkenrath Marauders', 'Gideon''s Avenger', 'Attended Knight', 'Nivix Guildmage', 'Blistercoil Weird', 'Servo Schematic', 'Windborne Charge', 'Kefnet''s Monument', 'Plague Wind', 'Vigilant Drake', 'Curse of Misfortunes', 'Revel of the Fallen God', 'Goblin Commando', 'Jagged Lightning', 'Jushi Apprentice', 'Searing Flesh', 'Deadlock Trap', 'Serpent Warrior', 'Shinewend', 'Vedalken Archmage', 'Dwarven Patrol', 'Anointer Priest', 'Tin-Wing Chimera', 'Magus of the Scroll', 'Boreal Centaur', 'Goblin Chariot', 'Twilight Shepherd', 'Stir the Grave', 'Last Breath', 'Shell of the Last Kappa', 'Pulmonic Sliver', 'Numbing Dose', 'Flame-Kin Zealot', 'Vines of the Recluse', 'Leonin Elder', 'Earth Surge', 'Stormtide Leviathan', 'Tower of Champions', 'Ring of Gix', 'Cateran Persuader', 'Glassdust Hulk', 'Blizzard Specter', 'Elder of Laurels', 'Forked-Branch Garami', 'Vow of Lightning', 'Bolt of Keranos', 'Perilous Research', 'Zephyr Net', 'Armistice', 'Lead by Example', 'Pulsemage Advocate', 'Whirler Rogue', 'Callous Giant', 'Ratcatcher', 'Desecration Demon', 'Astrolabe', 'Glamerdye', 'Lore Broker', 'Skysnare Spider', 'Undead Servant', 'Masticore', 'Trial of Strength', 'Daru Cavalier', 'Lambholt Pacifist', 'Rummaging Goblin', 'Trailblazer''s Boots', 'Blessed Orator', 'Sprite Noble', 'Jori En, Ruin Diver', 'Mark of Fury', 'Iname as One', 'Ogre''s Cleaver', 'Forgestoker Dragon', 'Dromoka Captain', 'Maze Glider', 'Phalanx Leader', 'Spireside Infiltrator', 'Baleful Force', 'Sindbad', 'Dire Undercurrents', 'Simic Sky Swallower', 'Flowstone Crusher', 'Hunger of the Nim', 'Balustrade Spy', 'Druid''s Familiar', 'Aradara Express', 'Bathe in Light', 'Silvercoat Lion', 'Map the Wastes', 'Sagu Archer', 'Gigantiform', 'Ironhoof Ox', 'Invasive Surgery', 'Loxodon Convert', 'Sunscorched Desert', 'Primitive Etchings', 'Spined Sliver', 'Umara Raptor', 'Master''s Call', 'Soul Nova', 'Gustcloak Cavalier', 'Dread Return', 'Blustersquall', 'Godtoucher', 'Ivy Lane Denizen', 'Reality Spasm', 'Foundry Hornet', 'Goblin Medics', 'Graf Mole', 'Fabled Hero', 'Cogworker''s Puzzleknot', 'Blazing Torch', 'Howlpack Resurgence', 'Decoction Module', 'Scrying Glass', 'Citadel Castellan', 'Midnight Banshee', 'Horde of Notions', 'Duct Crawler', 'Screeching Silcaw', 'Morselhoarder', 'Offalsnout', 'Sunbringer''s Touch', 'Nettle Drone', 'Shorecrasher Mimic', 'Palace Guard', 'Acidic Sliver', 'Chromescale Drake', 'Psychic Rebuttal', 'Seething Pathblazer', 'Skywinder Drake', 'Clarion Ultimatum', 'Merrow Harbinger', 'Soul Link', 'Highspire Mantis', 'Feral Contest', 'Sentry Oak', 'Serra''s Hymn', 'Keldon Arsonist', 'Evernight Shade', 'Shu Soldier-Farmers', 'Shattered Angel', 'Arcbound Overseer', 'Ancestor''s Prophet', 'Giantbaiting', 'Eye Gouge', 'Moorland Drifter', 'Enigma Drake', 'Kuldotha Ringleader', 'Haru-Onna', 'Sword of Kaldra', 'Nightsoil Kami', 'Soulquake', 'Tread Upon', 'Basking Rootwalla', 'Life''s Legacy', 'Tajuru Pathwarden', 'Aerial Guide', 'Grenzo, Dungeon Warden', 'Armored Cancrix', 'Braids, Conjurer Adept', 'Barricade Breaker', 'Scrapbasket', 'Wayfarer''s Bauble', 'Loyal Cathar', 'Glasses of Urza', 'Sleep', 'Claustrophobia', 'Viashino Weaponsmith', 'Might Sliver', 'Reclaim', 'Elephant Graveyard', 'Feral Shadow', 'Reviving Melody', 'Slith Strider', 'Mordant Dragon', 'Nessian Wilds Ravager', 'Sandblast', 'Andradite Leech', 'Tethered Skirge', 'Kruin Outlaw', 'Charging Griffin', 'Golgari Signet', 'Garruk''s Packleader', 'Mistform Warchief', 'Merrow Witsniper', 'Call of the Full Moon', 'Artillerize', 'Aspiring Aeronaut', 'Court Hussar', 'Battle Sliver', 'Kazuul, Tyrant of the Cliffs', 'Marshaling Cry', 'Misthoof Kirin', 'Kinjalli''s Caller', 'Rootwater Diver', 'Contaminated Bond', 'Rise from the Grave', 'Zombie Cutthroat', 'Harvest Gwyllion', 'Auriok Edgewright', 'Hand of Cruelty', 'Skirk Drill Sergeant', 'Ghostform', 'Vedalken Entrancer', 'Grixis Battlemage', 'Lightning Reaver', 'Everflame Eidolon', 'Phage the Untouchable', 'Kookus', 'Rite of Ruin', 'Crippling Chill', 'One With the Wind', 'Serum Raker', 'Loam Lion', 'Howl of the Night Pack', 'Ukud Cobra', 'Fortuitous Find', 'Gravity Negator', 'Pillar of War', 'Deathcult Rogue', 'Trumpet Blast', 'Incite', 'Smolder Initiate', 'Skyline Predator', 'Scion Summoner', 'Maro', 'Relic Seeker', 'Deepfathom Skulker', 'Cunning Survivor', 'Withering Gaze', 'Nature''s Kiss', 'Nova Chaser', 'Faith Unbroken', 'Scrivener', 'Hand of Honor', 'Gloom Surgeon', 'Magnivore', 'Transluminant', 'Pale Wayfarer', 'Choking Restraints', 'Opal Lake Gatekeepers', 'Skyshroud Elf', 'Master Splicer', 'Giant Mantis', 'Wind Spirit', 'Blight Keeper', 'Spore Cloud', 'Naked Singularity', 'Thistledown Duo', 'Common Bond', 'Lavaborn Muse', 'Greatbow Doyen', 'Selvala, Explorer Returned', 'Feral Thallid', 'Dream Thief', 'Devouring Swarm', 'Aven Windreader', 'Mold Adder', 'Shimmerscale Drake', 'Retraction Helix', 'Enfeeblement', 'Selesnya Sagittars', 'Seeds of Strength', 'Carrion Screecher', 'Aether Poisoner', 'Balduvian Horde', 'Traveling Plague', 'Veteran''s Reflexes', 'Farrel''s Mantle', 'Maverick Thopterist', 'Prowling Nightstalker', 'Highspire Artisan', 'Grim Affliction', 'Mindmoil', 'Ondu Greathorn', 'Nameless Inversion', 'Holy Justiciar', 'Skyshroud Forest', 'Cytoshape', 'Nakaya Shade', 'Scaleguard Sentinels', 'Corpse Hauler', 'Crown of Awe', 'Gruul Guildgate', 'Dukhara Peafowl', 'Spirit Cairn', 'Wu Warship', 'Descendant of Soramaro', 'Yomiji, Who Bars the Way', 'Warrior en-Kor', 'Chain of Plasma', 'Enlightened Ascetic', 'Incendiary Sabotage', 'Riptide Biologist', 'Carom', 'Iona''s Blessing', 'Famine', 'Furnace Dragon', 'Vedalken Aethermage', 'Sulfur Elemental', 'Sheltered Aerie', 'Manticore Eternal', 'Noble Elephant', 'Gigantomancer', 'Aven Redeemer', 'Shambleshark', 'Ornitharch', 'Hoard-Smelter Dragon', 'Sludge Strider', 'Telling Time', 'Voice of the Woods', 'Gideon''s Phalanx', 'Clergy en-Vec', 'Abattoir Ghoul', 'Rakalite', 'Thorn-Thrash Viashino', 'Pewter Golem', 'Hedron Scrabbler', 'Mass Polymorph', 'Blood Knight', 'Magus of the Disk', 'Thallid Devourer', 'Spark Spray', 'Riftsweeper', 'Explorer''s Scope', 'Bold Defense', 'Pristine Skywise', 'Renounce the Guilds', 'Tireless Missionaries', 'Horizon Chimera', 'Tempest of Light', 'Skinrender', 'Serra Angel', 'Death Bomb', 'Identity Thief', 'Pharika''s Cure', 'Ichor Explosion', 'Massive Raid', 'Enrage', 'Seed Spark', 'Armored Wolf-Rider', 'Blazing Hellhound', 'Kalonian Behemoth', 'Zombify', 'Festering March', 'Pestilence Demon', 'Colossal Heroics', 'Carnivorous Plant', 'Increasing Savagery', 'Oketra''s Attendant', 'Horseshoe Crab', 'Phthisis', 'Merrow Bonegnawer', 'Queen''s Commission', 'Serra Advocate', 'Wandering Goblins', 'Bloodrage Vampire', 'Heartmender', 'Yavimaya Enchantress', 'Bloodgift Demon', 'Unburden', 'Spearpoint Oread', 'Halt Order', 'Dancing Scimitar', 'Nature''s Blessing', 'Kalastria Nightwatch', 'Sudden Reclamation', 'Luminate Primordial', 'Aetherstorm Roc', 'Bramblewood Paragon', 'Threaten', 'Harmless Assault', 'Just Fate', 'Containment Membrane', 'Shivan Oasis', 'Wind Shear', 'Thalakos Mistfolk', 'Abstruse Interference', 'Tangle Spider', 'Rogue''s Passage', 'Sturmgeist', 'Dawn Gryff', 'Diminish', 'Vanquish the Foul', 'Hinterland Drake', 'Gruul Cluestone', 'Glarecaster', 'Sigil of the Nayan Gods', 'Keldon Warlord', 'Sandsower', 'Horned Helm', 'Leaf Arrow', 'Genesis', 'Ogre Gatecrasher', 'Vampire''s Zeal', 'Duskmantle Guildmage', 'Cackling Counterpart', 'Gnarlwood Dryad', 'Yuki-Onna', 'Sarpadian Empires, Vol. VII', 'Excise', 'Dripping Dead', 'Quest for the Nihil Stone', 'Renegade Demon', 'Decimator Web', 'Leafcrown Dryad', 'Cultivator Drone', 'Efreet Weaponmaster', 'Underhanded Designs', 'Emissary of the Sleepless', 'Vessel of Volatility', 'Press for Answers', 'Memory''s Journey', 'Eager Cadet', 'Orochi Leafcaller', 'Claws of Gix', 'Mageta''s Boon', 'Cho-Manno, Revolutionary', 'Jagged-Scar Archers', 'Meteorite', 'Sudden Disappearance', 'Rampaging Hippo', 'Consuming Sinkhole', 'Soulblast', 'Into the Core', 'Abzan Banner', 'Wingrattle Scarecrow', 'Fallen Ideal', 'Spike Colony', 'Altar''s Reap', 'Domesticated Hydra', 'Honden of Night''s Reach', 'Sway of Illusion', 'Skillful Lunge', 'Stormrider Spirit', 'Bellowing Saddlebrute', 'Steadfast Cathar', 'Touch of Moonglove', 'Crumbling Vestige', 'Fated Retribution', 'Sachi, Daughter of Seshiro', 'Mystic Penitent', 'Squirming Mass', 'Cryptolith Fragment', 'Endemic Plague', 'Etched Oracle', 'Mammoth Umbra', 'Wild Wurm', 'Hymn of Rebirth', 'Dawn''s Reflection', 'Flamekin Brawler', 'Necrogen Mists', 'Adarkar Valkyrie', 'Tyrant''s Machine', 'Fiery Bombardment', 'Mystic of the Hidden Way', 'Diabolic Tutor', 'Mardu Charm', 'Spinal Graft', 'Spire Barrage', 'Illusory Gains', 'Saltblast', 'Perimeter Captain', 'Angelic Curator', 'Elvish Aberration', 'Keeneye Aven', 'Sandbar Merfolk', 'Razia''s Purification', 'Blood Funnel', 'Goblin Shrine', 'Impulsive Maneuvers', 'Dwarven Soldier', 'Spiteful Shadows', 'Pathmaker Initiate', 'Joyous Respite', 'Kheru Bloodsucker', 'Tranquil Path', 'Silver Drake', 'Supply Caravan', 'Appeal // Authority', 'Viridian Lorebearers', 'Lightning Runner', 'Explosive Growth', 'Index', 'Mindlash Sliver', 'Harrowing Journey', 'Rhox Maulers', 'Ashen Ghoul', 'Flowstone Slide', 'Maritime Guard', 'Alpine Grizzly', 'Wall of Wood', 'Netcaster Spider', 'Power Sink', 'Mirko Vosk, Mind Drinker', 'Fire at Will', 'Lathnu Hellion', 'Emblem of the Warmind', 'Krovikan Vampire', 'Shyft', 'Kitesail Apprentice', 'Cosi''s Trickster', 'Scare Tactics', 'Dinosaur Stampede', 'Sigil of the New Dawn', 'Trial of Zeal', 'Soldevi Simulacrum', 'Fangren Firstborn', 'Autochthon Wurm', 'Glacial Wall', 'Ashcoat Bear', 'Shattered Perception', 'Civic Saber', 'Selesnya Guildmage', 'Balduvian Conjurer', 'Aether Spellbomb', 'Cloud Dragon', 'Rage Weaver', 'Structural Collapse', 'Primal Visitation', 'Genju of the Realm', 'Augur il-Vec', 'Midnight Haunting', 'Fleetfeather Sandals', 'River Serpent', 'Vanish into Memory', 'Joiner Adept', 'Disciple of the Old Ways', 'Ghosts of the Damned', 'Alaborn Musketeer', 'Knucklebone Witch', 'Solar Tide', 'Voice of Truth', 'Stalking Tiger', 'Tangle Asp', 'Child of Thorns', 'Devastating Summons', 'Angel of Renewal', 'Exploding Borders', 'Moriok Replica', 'Convolute', 'Ampryn Tactician', 'Pay No Heed', 'Stun', 'Riverfall Mimic', 'Sol Grail', 'Chimney Imp', 'Cudgel Troll', 'Jagged Poppet', 'Kragma Warcaller', 'Boon of Emrakul', 'Dingus Staff', 'Peak Eruption', 'Tide of War', 'Stitched Mangler', 'Promise of Power', 'Kjeldoran Javelineer', 'Breeding Pit', 'Heat Wave', 'Healer''s Headdress', 'Slab Hammer', 'Shatterskull Giant', 'Kukemssa Serpent', 'Fell Flagship', 'Samite Blessing', 'Callow Jushi', 'Aether Theorist', 'Illusion // Reality', 'Hot Soup', 'Phyrexian Totem', 'Mark of Sakiko', 'Consuming Vortex', 'Lightning Javelin', 'Rabid Bite', 'Twinflame', 'Tangle Golem', 'Orochi Ranger', 'Spreading Rot', 'Rhox Bodyguard', 'Mortal Combat', 'Weaver of Lightning', 'Cackling Fiend', 'Abyssal Specter', 'Grinning Demon', 'Selesnya Signet', 'Kjeldoran Frostbeast', 'Angelic Shield', 'War-Wing Siren', 'Hivestone', 'Belligerent Whiptail', 'Shimmering Grotto', 'Elusive Tormentor', 'Stalking Drone', 'Molder', 'Goblin Razerunners', 'Sage-Eye Harrier', 'Merfolk Thaumaturgist', 'Drag Down', 'Blightspeaker', 'Pirate Ship', 'Bloodstoke Howler', 'Ramses Overdark', 'Lunar Force', 'Silumgar Sorcerer', 'Voice of Grace', 'Shield of the Righteous', 'Marshal''s Anthem', 'Screeching Bat', 'Armorcraft Judge', 'Blessing of the Nephilim', 'Sea Serpent', 'Seasoned Marshal', 'Igneous Golem', 'Granitic Titan', 'Winnower Patrol', 'Spur Grappler', 'Nantuko Blightcutter', 'Hierophant''s Chalice', 'Ruin Processor', 'Golgari Longlegs', 'Ether Well', 'Oracle''s Vault', 'Pilgrim''s Eye', 'Survivor of the Unseen', 'Esper Sojourners', 'Palisade Giant', 'Abzan Beastmaster', 'Hound of Griselbrand', 'Restoration Gearsmith', 'Rebuking Ceremony', 'Void Attendant', 'Rescind', 'Jorubai Murk Lurker', 'Tel-Jilad Defiance', 'Taigam''s Strike', 'Borrowing 100,000 Arrows', 'Liliana''s Elite', 'Bottle Gnomes', 'Noose Constrictor', 'Vicious Betrayal', 'Relief Captain', 'Stormscape Familiar', 'Aether Herder', 'Magus of the Mirror', 'Aquamoeba', 'Glimmerdust Nap', 'Shieldmage Elder', 'Elvish Eulogist', 'Gaea''s Blessing', 'Dutiful Return', 'Crude Rampart', 'Take Down', 'Shrouded Serpent', 'Warped Physique', 'Invocation of Saint Traft', 'Desert of the Glorified', 'Alpha Myr', 'Glimmerpoint Stag', 'Thallid Germinator', 'Transguild Promenade', 'Mortis Dogs', 'Ultimate Price', 'Devoted Crop-Mate', 'Deep-Sea Terror', 'Hungry Flames', 'Gate to the Aether', 'Zombie Cannibal', 'Tenacious Hunter', 'Terra Eternal', 'Ulamog''s Nullifier', 'Essence Flux', 'Jace''s Scrutiny', 'Dark Heart of the Wood', 'Pharika''s Mender', 'Braidwood Sextant', 'Taunting Elf', 'Unworthy Dead', 'Gravepurge', 'Heartwood Dryad', 'Slagwurm Armor', 'Shadowblood Egg', 'Exile', 'Order of the Sacred Bell', 'Furnace Scamp', 'Bronzebeak Moa', 'Matca Rioters', 'Tangleclaw Werewolf', 'Opulent Palace', 'Gone Missing', 'Undercity Informer', 'Yew Spirit', 'Catacomb Sifter', 'Nantuko Shaman', 'Sanity Gnawers', 'Jagwasp Swarm', 'Mindswipe', 'Aetherize', 'Painful Lesson', 'Renewed Faith', 'Throwing Knife', 'Wing Snare', 'Experimental Aviator', 'Primal Cocoon', 'Pharika''s Disciple', 'Young Wei Recruits', 'Mistcutter Hydra', 'Caught in the Brights', 'Hulking Devil', 'Word of Seizing', 'Dead Reveler', 'Sootwalkers', 'Inflame', 'Morbid Bloom', 'Consecrated by Blood', 'Rock Hydra', 'Dragon-Style Twins', 'Lost in a Labyrinth', 'Centaur''s Herald', 'Cliffside Lookout', 'Reclaiming Vines', 'Anointer of Champions', 'Mighty Emergence', 'Vampire Nighthawk', 'Kjeldoran Skycaptain', 'Irradiate', 'Wasteland Viper', 'Rottenheart Ghoul', 'Orcish Farmer', 'Lorescale Coatl', 'Spellwild Ouphe', 'Flash Flood', 'Fledgling Griffin', 'Magefire Wings', 'Merrow Grimeblotter', 'Efficient Construction', 'Burning Sun''s Avatar', 'Marsh Hulk', 'Genju of the Falls', 'Puppeteer Clique', 'Executioner''s Hood', 'Horncaller''s Chant', 'Renegade Freighter', 'Disdainful Stroke', 'Odious Trow', 'Mob Mentality', 'Saving Grace', 'Gabriel Angelfire', 'Seacoast Drake', 'Loam Larva', 'Darkling Stalker', 'Slag Fiend', 'Backwoods Survivalists', 'Aether Chaser', 'Guttersnipe', 'Sunbond', 'Radiant Essence', 'Ageless Entity', 'Advent of the Wurm', 'Crypt Champion', 'Blowfly Infestation', 'Daring Demolition', 'No Rest for the Wicked', 'Pheres-Band Warchief', 'Flash Conscription', 'Ridgetop Raptor', 'Screeching Harpy', 'Killer Instinct', 'Nissa''s Expedition', 'Korozda Gorgon', 'Call to Glory', 'Emrakul''s Influence', 'Hunted Troll', 'Stonework Puma', 'Sepulchral Primordial', 'Rouse the Mob', 'Cunning Strike', 'Seal of Fire', 'Noble Vestige', 'Kindly Stranger', 'Armor Thrull', 'Swarm of Rats', 'Penumbra Kavu', 'Kami of the Palace Fields', 'Radjan Spirit', 'Dry Spell', 'Stitch in Time', 'Ghor-Clan Rampager', 'Sunspear Shikari', 'Wren''s Run Packmaster', 'Skyrider Elf', 'Waxmane Baku', 'Prying Questions', 'Argothian Pixies', 'Rathi Intimidator', 'Torpor Dust', 'Embodiment of Insight', 'Dive Down', 'Lobotomy', 'Hunter''s Prowess', 'Algae Gharial', 'Brass Herald', 'Triclopean Sight', 'Bloodcrazed Paladin', 'Bramble Elemental', 'Serpentine Kavu', 'Ulamog''s Reclaimer', 'Roil Spout', 'Cursed Scroll', 'Longbow Archer', 'Traproot Kami', 'Thornscape Battlemage', 'Obsidian Battle-Axe', 'Ashen Firebeast', 'Burst Lightning', 'Tenza, Godo''s Maul', 'Knowledge Vault', 'Grim Backwoods', 'Transgress the Mind', 'Paladin en-Vec', 'Barrin''s Codex', 'Planar Gate', 'Dance of the Skywise', 'Plagued Rusalka', 'Whiplash Trap', 'Creeping Renaissance', 'Firecannon Blast', 'Shrill Howler', 'Ghor-Clan Bloodscale', 'Sunhome, Fortress of the Legion', 'Hythonia the Cruel', 'Keeper of the Mind', 'Orcish Mechanics', 'Silvos, Rogue Elemental', 'Necropolis Fiend', 'Caress of Phyrexia', 'Alpha Brawl', 'Slitherhead', 'Atzocan Archer', 'Axelrod Gunnarson', 'Suq''Ata Lancer', 'Judge of Currents', 'Crown of Vigor', 'Arachnoid', 'Cowardice', 'Firestorm Phoenix', 'Peregrine Griffin', 'Leatherback Baloth', 'Dauthi Mercenary', 'Hit // Run', 'Bone to Ash', 'Emrakul''s Evangel', 'Riptide Crab', 'Armored Skaab', 'Built to Smash', 'Cessation', 'Catacomb Slug', 'Pianna, Nomad Captain', 'Jackalope Herd', 'Entangling Trap', 'Wandering Ones', 'Ghostflame Sliver', 'Scuzzback Scrapper', 'Righteous Aura', 'Shirei, Shizo''s Caretaker', 'Auramancer''s Guise', 'Punish the Enemy', 'Elfhame Sanctuary', 'Sanguimancy', 'Goblin Striker', 'Prakhata Pillar-Bug', 'Jeering Instigator', 'Annihilate', 'Echoing Ruin', 'Kamahl, Pit Fighter', 'Angel of Deliverance', 'Into the Maw of Hell', 'Fire Shrine Keeper', 'Field of Souls', 'Horde of Boggarts', 'Herald of Serra', 'Mindwarper', 'Appetite for the Unnatural', 'Svogthos, the Restless Tomb', 'Frantic Salvage', 'Deeproot Warrior', 'Metallic Mastery', 'Chainbreaker', 'Triton Tactics', 'Pith Driller', 'Jetting Glasskite', 'Animate Wall', 'Kheru Lich Lord', 'Akroan Jailer', 'Midsummer Revel', 'Sever the Bloodline', 'Smite the Monstrous', 'Flame Fusillade', 'Fanatic of Xenagos', 'Decimator Beetle', 'Divebomber Griffin', 'Thresher Lizard', 'Benalish Veteran', 'Agadeem Occultist', 'Merfolk Wayfinder', 'Veiled Crocodile', 'Glorifier of Dusk', 'Haazda Shield Mate', 'Goblin Snowman', 'Solfatara', 'Aura Fracture', 'Tranquil Expanse', 'Sizzle', 'Hopping Automaton', 'Dearly Departed', 'Hordeling Outburst', 'Throne of the God-Pharaoh', 'Thran Turbine', 'Penumbra Wurm', 'Black Poplar Shaman', 'Plaguemaw Beast', 'Mercurial Geists', 'Obelisk of Naya', 'Crossbow Infantry', 'Painful Quandary', 'Sengir Autocrat', 'Argothian Treefolk', 'Hunter of Eyeblights', 'Ordeal of Nylea', 'Janjeet Sentry', 'Ridgescale Tusker', 'Sphinx of Jwar Isle', 'Silent Skimmer', 'Irresistible Prey', 'Call of the Nightwing', 'Cathodion', 'Caterwauling Boggart', 'Facevaulter', 'Akroan Phalanx', 'Minions'' Murmurs', 'Blind Zealot', 'Fungus Sliver', 'Woodcloaker', 'Leyline of Lightning', 'Sunspire Griffin', 'Heavy Fog', 'Augury Adept', 'Hunted Lammasu', 'Ancestral Vengeance', 'Takeno, Samurai General', 'Mana Cylix', 'Harvestguard Alseids', 'Legacy''s Allure', 'Blanchwood Treefolk', 'Revered Elder', 'Cunning Sparkmage', 'Miraculous Recovery', 'Tattermunge Duo', 'Essence Drain', 'Martial Glory', 'Pouncing Wurm', 'Mage il-Vec', 'Tivadar''s Crusade', 'Virulent Wound', 'Custodi Soulbinders', 'Mending Touch', 'Hungry Spriggan', 'Kitsune Riftwalker', 'Arctic Nishoba', 'Daring Apprentice', 'Grim Roustabout', 'Isao, Enlightened Bushi', 'Composite Golem', 'Spiteful Blow', 'Battle Squadron', 'Hands of Binding', 'Masumaro, First to Live', 'Saddleback Lagac', 'Forerunner of the Legion', 'Soul of the Rapids', 'Needletooth Raptor', 'Knight of the Stampede', 'Sanguine Glorifier', 'Frilled Deathspitter', 'Jungle Creeper', 'Fathom Fleet Boarder', 'Dark Inquiry', 'Giltgrove Stalker', 'Swift Warden', 'Champion of Dusk', 'Forerunner of the Coalition', 'Crashing Tide', 'Famished Paladin', 'Spire Winder', 'Protean Raider', 'Release to the Wind', 'World Shaper', 'Dire Fleet Neckbreaker', 'Etali, Primal Storm', 'Secrets of the Golden City', 'Zetalpa, Primal Dawn', 'Grasping Scoundrel', 'Forerunner of the Empire', 'Cherished Hatchling', 'Slippery Scoundrel', 'Vampire Champion', 'Gruesome Fate', 'Strength of the Pack', 'Jade Bearer', 'Raging Regisaur', 'Sun-Crested Pterodon', 'Goblin Trailblazer', 'Orazca Relic', 'Crested Herdcaller', 'Mist-Cloaked Herald', 'Storm Fleet Sprinter', 'Hardy Veteran', 'Jungleborn Pioneer', 'Tomb Robber', 'Pirate''s Pillage', 'Waterknot', 'Sphinx''s Decree', 'Orazca Frillback', 'Cacophodon', 'Hornswoggle', 'Bishop of Binding', 'Majestic Heliopterus', 'Forerunner of the Heralds', 'Canal Monitor', 'Blazing Hope', 'Luminous Bonds', 'Exultant Skymarcher', 'Charging Tuskodon', 'Kumena''s Awakening', 'Resplendent Griffin', 'Relentless Raptor', 'Golden Guardian', 'Shake the Foundations', 'Voracious Vampire', 'Form of the Dinosaur', 'River Darter', 'Dead Man''s Chest', 'Swab Goblin', 'Dusk Charger', 'Swaggering Corsair', 'Brazen Freebooter', 'Buccaneer''s Bravado', 'Jadecraft Artisan', 'Reckless Rage', 'Deadeye Rig-Hauler', 'Aquatic Incursion', 'Orazca Raptor', 'Fanatical Firebrand', 'Reaver Ambush', 'Oathsworn Vampire', 'Tilonalli''s Crown', 'Induced Amnesia', 'Snubhorn Sentry', 'Overgrown Armasaur', 'Brass''s Bounty', 'Flood of Recollection', 'See Red', 'Cleansing Ray', 'Deadeye Brawler', 'Gleaming Barrier', 'Stampeding Horncrest', 'Bombard', 'Pitiless Plunderer', 'Moment of Triumph', 'Impale', 'Aggressive Urge', 'Kitesail Corsair', 'Sworn Guardian', 'Daring Buccaneer', 'Storm Fleet Swashbuckler', 'Mutiny', 'Riverwise Augur', 'Evolving Wilds', 'Sea Legs', 'Martyr of Dusk', 'Captain''s Hook', 'Enter the Unknown', 'Vampire Revenant', 'Expel from Orazca', 'Mausoleum Harpy', 'Siren Reaver', 'Imperial Ceratops', 'Sun Sentinel', 'Everdawn Champion', 'Legion Lieutenant', 'Sadistic Skymarcher', 'Squire''s Devotion', 'Silverclad Ferocidons', 'Pride of Conquerors', 'Awakened Amalgam', 'Atzocan Seer', 'Arterial Flow', 'Sun-Collared Raptor', 'Dinosaur Hunter', 'Crafty Cutpurse', 'Temple Altisaur')
with[]because of(1213, 'Deadlock found when trying to get lock; try restarting transaction')`

Reported on decksite by logged_out
Request Method: GET
Path: /about/pd/?
Cookies: {'__cfduid': 'd6f36e7d2afb8ebe6a19237a0e60a05981520286347', '_ga': 'GA1.2.157075360.1520286348', '_gid': 'GA1.2.1140333167.1520286348', '_gat_gtag_UA_109131120_1': '1'}
Endpoint: about
View Args: {}
Person: logged_out
User-Agent: Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.137 Mobile Safari/537.36
Referrer: https://pennydreadfulmagic.com/
Request Data: {}
DatabaseException
Stack Trace:
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1997, in call
return self.wsgi_app(environ, start_response)
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1985, in wsgi_app
response = self.handle_exception(e)
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/discord/.local/lib/python3.6/site-packages/flask/_compat.py", line 33, in reraise
raise value
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "/home/discord/.local/lib/python3.6/site-packages/flask/app.py", line 1598, in dispatch_request
return self.view_functionsrule.endpoint
File "./decksite/cache.py", line 65, in decorated_function
response = make_response(f(*args, **kwargs))
File "./decksite/main.py", line 190, in about
view = About(request.args.get('src'))
File "./decksite/views/about.py", line 16, in init
self.cards = exciting_cards()
File "./decksite/views/about.py", line 23, in exciting_cards
cards = fancy_cards()
File "./decksite/views/about.py", line 60, in fancy_cards
]), 'Penny Dreadful')
File "./magic/legality.py", line 56, in cards_legal_in_format
init()
File "./magic/legality.py", line 86, in init
assert len(oracle.legal_cards()) > 0
File "./magic/oracle.py", line 67, in legal_cards
new_list = multiverse.set_legal_cards(force)
File "./magic/multiverse.py", line 307, in set_legal_cards
db().execute(sql)
File "./shared/database_mysql.py", line 52, in execute
raise DatabaseException('Failed to execute {sql} with {args} because of {e}'.format(sql=sql, args=args, e=e))
bakert commented 6 years ago

Pretty sure @jgabrielygalan fixed this.