diff --git a/Aufgabe1/Cards.cpp b/Aufgabe1/Cards.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..1de8f62a8c43fa9e758697e3eeb39a484ded8b21
--- /dev/null
+++ b/Aufgabe1/Cards.cpp
@@ -0,0 +1,58 @@
+
+//Aufgabe 2
+
+#include <iostream>
+
+using namespace std;
+
+class Cards {
+
+private:
+    string name;
+    string mana;
+    string cmc;
+    string type;
+    string count;
+
+public:
+    //setter
+    void setName(string name) {
+        this->name = name;
+    }
+    //getter Name
+    string getName() {
+        return name;
+    }
+
+    void setMana(string mana) {
+        this->mana = mana;
+    }
+
+    string getMana() {
+        return mana;
+    }
+
+    void setCount(string count) {
+        this->count = count;
+    }
+
+    string getCount() {
+        return count;
+    }
+
+    void setCmc(string cmc) {
+        this->cmc = cmc;
+    }
+
+    string getCmc() {
+        return cmc;
+    }
+
+    void setType(string type) {
+        this->type = type;
+    }
+
+    string getType() {
+        return type;
+    }
+};
diff --git a/Aufgabe1/helpMethods.cpp b/Aufgabe1/helpMethods.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..9a186a30a6f5bbd9d6919dad6a3d025125988403
--- /dev/null
+++ b/Aufgabe1/helpMethods.cpp
@@ -0,0 +1,11 @@
+
+//from https://www.techiedelight.com/check-if-a-string-ends-with-another-string-in-cpp/
+#include <iostream>
+#include <string>
+ 
+bool endsWith(std::string const &str, std::string const &suffix) {
+    if (str.length() < suffix.length()) {
+        return false;
+    }
+    return std::equal(suffix.rbegin(), suffix.rend(), str.rbegin());
+}
\ No newline at end of file
diff --git a/Aufgabe1/main b/Aufgabe1/main
new file mode 100644
index 0000000000000000000000000000000000000000..97c805eeb91050e0f919b60c9880caaec2e548c7
Binary files /dev/null and b/Aufgabe1/main differ
diff --git a/Aufgabe1/main.cpp b/Aufgabe1/main.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..2b07b7bf6730e36cda71635d7f4bc2269f3ab6b2
--- /dev/null
+++ b/Aufgabe1/main.cpp
@@ -0,0 +1,14 @@
+#include <iostream>
+#include <fstream>
+
+#include "restoreCards.cpp"
+
+using namespace std;
+
+int main() {
+
+    restoreCards r("scrambled.txt", "reference.txt");
+    r.restore();
+
+
+}
\ No newline at end of file
diff --git a/Aufgabe1/reference.txt b/Aufgabe1/reference.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a933703dea1e294cb5221ce901e1bb14cba70e5e
--- /dev/null
+++ b/Aufgabe1/reference.txt
@@ -0,0 +1,6757 @@
+Lapse of Certainty
+Artificer's Epiphany
+Moonglove Extract
+Mighty Leap
+Barbed Sextant
+Death Stroke
+Jhoira of the Ghitu Avatar
+Halimar Depths
+Highland Lake
+Colossal Might
+Common Courtesy
+Enervate
+Aggressive Mining
+Greed
+Metamorphosis
+Massacre
+Forgotten Harvest
+Planeswalker's Favor
+Gruul Turf
+Vampire Nocturnus Avatar
+Cloud Cover
+Reality Anchor
+Swarmyard
+Purgatory
+Doubling Cube
+Vernal Equinox
+Unfulfilled Desires
+Underground River
+Capsize
+No Mercy
+Nahiri's Wrath
+Silverstrike
+Cover of Winter
+Blind Fury
+Flashfreeze
+Tolaria
+Seafarer's Quay
+Force Spike
+Into the Roil
+Minamo's Meddling
+Origin Spellbomb
+Kraken's Eye
+Death Frenzy
+Bring Low
+Plow Under
+Nature's Cloak
+Implement of Examination
+Chastise
+Nine-Ringed Bo
+Secret Salvage
+Astral Slide
+Peach Garden Oath
+Arenson's Aura
+Dust of Moments
+Mana Echoes
+Shallow Grave
+Testament of Faith
+Misery Charm
+Heretic's Punishment
+Ancient Craving
+Scouring Sands
+Leap
+Mastery of the Unseen
+Phosphorescent Feast
+Denying Wind
+Dragonskull Summit
+Scorching Missile
+Spelltwine
+Leyline of Punishment
+Arcane Sanctum
+Steal Strength
+Ramosian Rally
+Hydrolash
+Introductions Are in Order
+Invoke Prejudice
+Mortuary Mire
+Simoon
+Ancestral Memories
+Final Punishment
+Roar of Challenge
+Ambush
+Searing Spear
+Gideon's Resolve
+Spectral Shift
+Waxing Moon
+Defeat
+Oath of Scholars
+Seal of Doom
+Fearsome Awakening
+Misdirection
+Magnetic Web
+Arena
+Friendly Fire
+Plague Wind
+Precise Strike
+Spellshock
+Destructive Force
+Inferno
+To the Slaughter
+Evaporate
+Howling Gale
+Grim Contest
+Animist's Awakening
+Anarchy
+Prohibit
+Mind Stone
+Screams of the Damned
+Foreshadow
+Urborg
+Westvale Abbey
+Veiled Crocodile
+Sea Kings' Blessing
+Mass Polymorph
+Land Equilibrium
+Botanical Sanctum
+Spidery Grasp
+A Display of My Dark Power
+Blackcleave Cliffs
+Grip of Amnesia
+Blighted Gorge
+Debt of Loyalty
+Black Lotus
+Mouth
+Totally Lost
+Duplicity
+Fated Infatuation
+Dwarven Armory
+Second Chance
+Overwhelming Instinct
+Rune of Protection: Blue
+Fire at Will
+Battle Frenzy
+Gruul Cluestone
+Devour in Flames
+Dovescape
+Necromancy
+Crash
+Hour of Need
+Steelshaper's Gift
+Steel Sabotage
+Awe Strike
+Bronze Calendar
+Tangleroot
+Mogg Cannon
+Kiku's Shadow
+Spirit Cairn
+Temporal Eddy
+Dance of Many
+Library of Leng
+Funeral Charm
+Gauntlet of Might
+Arcanis, the Omnipotent Avatar
+Eiganjo Castle
+Holistic Wisdom
+Death by Dragons
+Winter Orb
+White Mana Battery
+Wandering Stream
+Ghirapur Orrery
+Char
+Seedling Charm
+Mizzium Mortars
+Mirri the Cursed Avatar
+Drop of Honey
+Adarkar Wastes
+Security Detail
+Unburial Rites
+Ertai
+Gibbering Descent
+Blasphemous Act
+Voices from the Void
+Finest Hour
+Nivix, Aerie of the Firemind
+Mirrorpool
+Acidic Soil
+Psychic Strike
+Psychic Trance
+Illusionist's Stratagem
+Inner Struggle
+Maze's End
+Liliana's Influence
+Baton of Courage
+Life and Limb
+Psychic Battle
+Artifact Blast
+Guardians' Pledge
+Karoo
+Reminisce
+Kessig Wolf Run
+Guild Feud
+Price of Knowledge
+Unspeakable Symbol
+Punishing Fire
+Saheeli's Artistry
+Demonic Rising
+Redeem
+Jade Monolith
+Forgotten Lore
+Island Sanctuary
+Betrayal of Flesh
+Open the Vaults
+Rakdos Carnarium
+Emeria, the Sky Ruin
+Ongoing Investigation
+Cloud Key
+Searing Blaze
+Spell Contortion
+Impact Tremors
+Pox
+Braidwood Sextant
+Lightning Axe
+Reflect Damage
+Mana Breach
+Mire's Malice
+Languish
+Inner Sanctum
+Staff of the Wild Magus
+Goblin Scouts
+Fight to the Death
+Rebound
+Thoughtflare
+Descent of the Dragons
+Natural End
+Turn the Tables
+Moonlit Wake
+Hinterland Harbor
+Purging Scythe
+Ward of Bones
+Rath's Edge
+Virulent Wound
+Displace
+Havoc Festival
+Recall
+Hydroblast
+Orim's Touch
+Ultimate Price
+Marsh Gas
+Pearl Medallion
+Mystic Genesis
+Nephalia Drownyard
+Rushing River
+Conflagrate
+Death Spark
+Restless Dreams
+Quest for Ula's Temple
+Enter the Dungeon
+Nature's Will
+Oracle's Vault
+Flash
+Henge of Ramos
+Jack-in-the-Mox
+Mischief and Mayhem
+Chaotic Strike
+Absorb Vis
+Glacial Fortress
+Strategic Planning
+Kor Chant
+Turn to Mist
+Supply
+Noble Steeds
+Elephant Grass
+Infused Arrows
+Stand Firm
+Blue Elemental Blast
+Sirocco
+Dictate of Karametra
+Wave of Terror
+Need for Speed
+Miraculous Recovery
+Lifeforce
+Righteous Aura
+Topsy Turvy
+Bounty of the Luxa
+Ice Cave
+Reviving Dose
+Light from Within
+Lumbering Falls
+Flurry of Horns
+Tomb Hex
+Savage Lands
+Time Walk
+Buried Alive
+Barrage of Expendables
+Gloom
+Goblin Charbelcher
+Ghastly Conscription
+Flameshot
+Mindlock Orb
+Triskaidekaphobia
+Artificer's Intuition
+Planar Cleansing
+Din of the Fireherd
+Deflecting Palm
+Serum Visions
+Echoing Courage
+Dictate of Kruphix
+Rush of Vitality
+Splinter
+Terminus
+Conspiracy
+Realms Uncharted
+Asphyxiate
+Mindblaze
+Write into Being
+Glaciers
+Swirling Sandstorm
+Otherworld Atlas
+Ashling, the Extinguisher Avatar
+Conjured Currency
+Sarcomancy
+Collective Blessing
+Temporary Truce
+Dreadwaters
+Global Ruin
+Enduring Ideal
+Coastal Discovery
+Delirium
+Pendulum of Patterns
+Shriek of Dread
+Crash Landing
+Invigorate
+Gnarled Effigy
+Scroll of Avacyn
+Flaccify
+Call to Mind
+Battle Cry
+Tranquil Cove
+Red Mana Battery
+Obelisk of Naya
+Mycosynth Lattice
+Starke
+Dream Fracture
+Springjack Pasture
+Escape Routes
+Soul Foundry
+Dawn of the Dead
+Pendrell Mists
+Gamble
+Pyramids
+Ancestral Recall
+Thermal Flux
+Fork
+Unnerving Assault
+Living End
+Portent
+Magistrate's Veto
+Panic Spellbomb
+Blacker Lotus
+Protection of the Hekma
+Searing Wind
+Ribbons of Night
+Ether Well
+To Arms!
+Metamorphose
+Ion Storm
+Vanquish
+Wind Shear
+Tidal Influence
+Mana Vault
+Smite
+First Response
+Exploding Borders
+Chain Reaction
+Vengeful Dreams
+Volcanic Hammer
+Seedtime
+Goblin Kites
+Spread the Sickness
+Predator's Rapport
+Psychic Allergy
+Rapid Fire
+Dramatic Rescue
+Phyrexian Processor
+Hornet Cannon
+Restore the Peace
+Aysen Highway
+Flare
+Creeping Dread
+Moratorium Stone
+Sword of the Chosen
+Orochi Hatchery
+Final Judgment
+Argivian Find
+Splendid Reclamation
+Blasting Station
+Paradox Engine
+Taigam's Scheming
+Paradise Plume
+Thought Prison
+Spatial Binding
+Bribery
+Marshaling Cry
+Moonlace
+Agonizing Memories
+Cauldron Dance
+Chronostutter
+Seeds of Renewal
+Prey's Vengeance
+War Horn
+Lotus Bloom
+Spirit Shield
+Naughty
+Relic Crush
+Sea God's Revenge
+Stensia Bloodhall
+Gruesome Slaughter
+Honor's Reward
+Starlight
+Lurking Jackals
+Banners Raised
+Glassblower's Puzzleknot
+Violent Impact
+Forbidden Alchemy
+Dragon Arch
+Cast Through Time
+Font of Fortunes
+Spite of Mogis
+Mystic Remora
+Twisted Image
+Arrows of Justice
+Hallow
+Kry Shield
+Carnage Altar
+Consulate Turret
+Flame Wave
+Tamiyo's Journal
+Gruesome Discovery
+Treacherous Urge
+Revive the Fallen
+Siren's Call
+Resurrection
+Dispersing Orb
+Ravaged Highlands
+Absolute Law
+Seismic Spike
+Feral Lightning
+Split Decision
+Dust to Dust
+Lightning Strike
+Maraxus
+Raka Sanctuary
+Rivalry
+Impatience
+Preemptive Strike
+Mana Cylix
+Regenerate
+Tainted Pact
+Stolen Goods
+Drought
+Praetor's Grasp
+Sustenance
+Absorb
+Echo Chamber
+Primal Bellow
+Dance with Devils
+Divine Retribution
+Liturgy of Blood
+Chain Stasis
+Monstrous Growth
+Down
+Corpse Churn
+Deploy the Gatewatch
+Destructive Flow
+Gifts Ungiven
+Aura Fracture
+Condemn
+Ill-Gotten Gains
+Personal Sanctuary
+As Foretold
+Kaervek's Purge
+Beck
+Pendelhaven
+Daring Leap
+Supernatural Stamina
+Roiling Terrain
+Resupply
+Storm Front
+Ankh of Mishra
+Marble Diamond
+Brave the Sands
+Live Fast
+Hedron Alignment
+Sphinx-Bone Wand
+Shaman's Trance
+Grove of the Burnwillows
+Mystical Teachings
+Aegis of the Meek
+Opportunity
+Night Dealings
+Ancestral Knowledge
+Selesnya Cluestone
+Hurricane
+Sacrifice
+Lay Bare
+Mind Over Matter
+Death's Presence
+Omen
+Hollow Trees
+Ornamental Courage
+Nahiri's Machinations
+Hammerheim
+Extirpate
+Hanna
+Svogthos, the Restless Tomb
+Azorius Signet
+Prismatic Geoscope
+Aftershock
+Rally the Ancestors
+Feed the Pack
+Holy Day
+Blatant Thievery
+Pyretic Ritual
+Fire Ambush
+Hope and Glory
+Gerrard's Verdict
+Chalice of Life
+Eldritch Evolution
+Living Lands
+Setessan Tactics
+Borrowing the East Wind
+Cyclopean Snare
+Sunfire Balm
+Aura Graft
+Feed the Clan
+Vivid Creek
+Gleam of Battle
+Stench of Evil
+Distorting Wake
+Into the Void
+Clear Shot
+Evincar's Justice
+Hindering Touch
+Scour the Laboratory
+Rakalite
+Chill Haunting
+Explore
+Swat
+Scepter of Insight
+Quest for the Gravelord
+Guan Yu's 1,000-Li March
+Deadly Tempest
+Mine, Mine, Mine!
+Vapor Snag
+Call to Heel
+Fire and Brimstone
+Bee Sting
+Bubble Matrix
+Lightning Helix
+Tempt with Vengeance
+Harsh Justice
+Reality Ripple
+Ignite the Cloneforge!
+Pandemonium
+Call the Gatewatch
+Fable of Wolf and Owl
+Planar Gate
+False Orders
+Lifeline
+Drain Power
+Temple of Plenty
+Sway of Illusion
+Tainted Aether
+Farsight Mask
+World-Bottling Kit
+Serenity
+Bonfire of the Damned
+Cryoclasm
+Forge Armor
+Autumnal Gloom
+Grasp of Phantoms
+Red Elemental Blast
+Trigon of Infestation
+Tormenting Voice
+Diminishing Returns
+Terminal Moraine
+Wasteland
+Acolyte's Reward
+Index
+Bident of Thassa
+Dragon Mask
+Rageform
+Rule of Law
+Logic Knot
+Soul Summons
+Dread Statuary
+Increasing Vengeance
+Grafted Skullcap
+Spatula of the Ages
+Temur Banner
+Sorrow's Path
+Reduce to Ashes
+Strategy, Schmategy
+Icy Manipulator
+Retreat to Emeria
+Form of the Dragon
+Volt Charge
+Pinnacle of Rage
+Snake Basket
+Maro Avatar
+Shivan Gorge
+Sex Appeal
+Armillary Sphere
+Enhanced Awareness
+Clear the Land
+Living Wish
+Attunement
+Underworld Dreams
+Decompose
+Embargo
+Shared Fate
+Reap
+Magma Burst
+Elvish Champion Avatar
+Dispense Justice
+Haunted Crossroads
+Natural Emergence
+Magmaquake
+Time of Heroes
+Whisk Away
+Springsage Ritual
+Shared Trauma
+Stonehewer Giant Avatar
+Dark Ritual
+Orcish Squatters Avatar
+Kolaghan Monument
+Drake-Skull Cameo
+Tooth, Claw, and Tail
+Demonic Tutor
+Befoul
+Eladamri's Vineyard
+Timely Reinforcements
+Graceful Reprieve
+Uphill Battle
+Crumbling Ashes
+Mercadia's Downfall
+Joraga Invocation
+Caverns of Despair
+Visions of Beyond
+Tainted Peak
+Benefaction of Rhonas
+Intangible Virtue
+Hell Swarm
+Force of Will
+Stoic Rebuttal
+Akroma's Vengeance
+Diamond Faerie Avatar
+Reverse Damage
+Volcanic Eruption
+Copy Artifact
+Aliban's Tower
+Blunt the Assault
+Scroll of Griselbrand
+Rumbling Crescendo
+Flusterstorm
+Magmatic Core
+Choke
+Fatigue
+Barbed Foliage
+Plunder
+Mimeofacture
+Oran-Rief, the Vastwood
+Urza
+Agony Warp
+Day's Undoing
+Titanic Ultimatum
+Panic
+Legacy's Allure
+Mirrorworks
+Gilded Lotus
+Mishra's Workshop
+Greater Auramancy
+Eldrazi Monument
+Impending Disaster
+Spider Spawning
+Lyzolda, the Blood Witch Avatar
+Repel Intruders
+Wipe Clean
+Moan of the Unhallowed
+Deal Damage
+Gelatinous Genesis
+Dark Prophecy
+Nihil Spellbomb
+Spitting Earth
+Boros Cluestone
+Pia's Revolution
+Jeskai Banner
+Incinerate
+Descent into Madness
+Dazzling Beauty
+Restore Balance
+Vexing Arcanix
+Fiery Fall
+Shattered Crypt
+Purge the Profane
+Rishadan Pawnshop
+Soul Burn
+Dauthi Embrace
+Halcyon Glaze
+Fortified Area
+Plague of Vermin
+Pure Reflection
+Last Caress
+Waste Away
+Spoils of Blood
+Urborg Uprising
+Rescue from the Underworld
+Mogg Hollows
+Borrowing 100,000 Arrows
+Resize
+Liability
+Psychotic Haze
+Censor
+Geth's Verdict
+Vanish into Memory
+Bred for the Hunt
+Sweep Away
+Incendiary Flow
+Spire Barrage
+Deadfall
+Blood Tribute
+Dissenter's Deliverance
+Healing Hands
+Reality Twist
+Scattershot
+Rage of Purphoros
+Root Cage
+Capital Punishment
+All in Good Time
+Diabolic Vision
+Fireblast
+Sandstone Bridge
+Go for the Throat
+Lay Bare the Heart
+Shatter
+Dizzy Spell
+Calciform Pools
+Gigadrowse
+Test of Faith
+Gut Shot
+Cleansing
+Blue Mana Battery
+Crescendo of War
+Muraganda Petroglyphs
+Jabari's Banner
+Sphere of Reason
+Borrowed Grace
+Price of Glory
+Blossoming Wreath
+Gate to the Aether
+Excise
+Scepter of Dominance
+Patriarch's Bidding
+Luxa River Shrine
+Aerial Predation
+Attune with Aether
+Steadfastness
+Touch of the Void
+Starfield of Nyx
+Foresee
+Shadowblood Egg
+Stonefury
+Firewild Borderpost
+Ground Rift
+Drowned Catacomb
+Far Wanderings
+Altar of the Lost
+Unexpected Potential
+Skywise Teachings
+Samite Ministration
+Rest in Peace
+Mystic Monastery
+Kyren Negotiations
+Sanguine Bond
+Teferi's Puzzle Box
+Neverending Torment
+Crucible of Fire
+Mudslide
+Grand Coliseum
+Natural Spring
+Orcish Oriflamme
+Well of Discovery
+Rhystic Deluge
+Cursed Rack
+Nullify
+Cyclone
+Tivadar's Crusade
+Illusionary Terrain
+Crush
+Necrogenesis
+Gaea's Bounty
+Postmortem Lunge
+Profane Memento
+Tears of Valakut
+Survival of the Fittest
+Swift Reckoning
+Gruesome Encore
+Desperate Ravings
+Break Through the Line
+Hypnotic Cloud
+Hymn of Rebirth
+Bontu's Monument
+Sprout Swarm
+Summoner's Bane
+Sundering Growth
+Hunter's Ambush
+Lilting Refrain
+Necrogen Spellbomb
+Ashling the Pilgrim Avatar
+Mystic Denial
+Acquire
+Thopter Foundry
+Pulverize
+Stinging Shot
+Volrath's Laboratory
+Secluded Steppe
+Void Squall
+Shrine of Burning Rage
+Psychotic Episode
+Sasaya's Essence
+Breaking Wave
+Envelop
+Brave the Elements
+Hinder
+Wordmail
+Faerie Conclave
+Roar of Reclamation
+Jihad
+Your Puny Minds Cannot Fathom
+Eternal Flame
+Nephalia Academy
+Circle of Protection: Green
+Splintering Wind
+Homarid Spawning Bed
+Stir the Sands
+Fade into Antiquity
+Bring to Light
+Scarscale Ritual
+Fireball
+Runed Arch
+Gate to Phyrexia
+Ancient Ziggurat
+Ur-Golem's Eye
+Benefactor's Draught
+Duskmantle, House of Shadow
+Hordeling Outburst
+Frozen Aether
+Gaea's Cradle
+Incite Rebellion
+Hunters' Feast
+Bullwhip
+Trade Routes
+Phyrexian Grimoire
+Ruin in Their Wake
+Destructive Tampering
+Sigarda's Aid
+City of Brass
+Sever the Bloodline
+Oath of Liliana
+Tresserhorn Sinks
+Null Rod
+Gravestorm
+Stitch Together
+Rally the Troops
+Blowfly Infestation
+Bitter Ordeal
+Villainous Wealth
+Phyrexian Tyranny
+Disharmony
+Spatial Merging
+Upheaval
+The Tabernacle at Pendrell Vale
+Repel
+Take Inventory
+Endless Whispers
+Copy Enchantment
+Ethereal Ambush
+Assassinate
+Headstone
+Repel the Darkness
+Outnumber
+Mortal's Resolve
+Bearscape
+Restore
+Tower of Champions
+Pinion Feast
+Rustic Clachan
+Purify the Grave
+Warped Landscape
+Far
+Learn from the Past
+Singe
+Jilt
+Mishra's Bauble
+Mystic Compass
+Web of Inertia
+Planeswalker's Scorn
+Declaration of Naught
+Wing Puncture
+Sulfuric Vortex
+Ebony Owl Netsuke
+Howling Mine
+Channel the Suns
+Sign in Blood
+Spoils of Evil
+Wizards' School
+Shivan Reef
+Mizzium Skin
+Gravity Sphere
+Slip Through Space
+Act on Impulse
+Grim Feast
+Panic Attack
+Forbid
+Clip Wings
+Open the Armory
+Rising Waters
+Smash to Smithereens
+Penance
+Liliana's Caress
+Vampiric Rites
+Near-Death Experience
+Armageddon
+Festival of the Guildpact
+Unearth
+Abolish
+Tranquil Domain
+Joven's Tools
+Eye for an Eye
+Raiding Party
+Foul-Tongue Shriek
+Mind Knives
+Rootwater Depths
+Tar Snare
+Harmonize
+Intuition
+Goblin Lyre
+Last Thoughts
+Kefnet's Monument
+Sram's Expertise
+Rhystic Cave
+Words of Wind
+Bureaucracy
+Gonti's Aether Heart
+Angelic Accord
+Flamecast Wheel
+Tradewind Rider Avatar
+Probe
+Lightning Blow
+Jinxed Choker
+Morale
+Swan Song
+Pulling Teeth
+Reborn Hope
+Festival of Trokin
+Reverent Mantra
+Volcanic Fallout
+Aligned Hedron Network
+Songs of the Damned
+Shivan Meteor
+Wand of Denial
+Natural Connection
+Fungal Reaches
+Anchor to the Aether
+Oath of Jace
+Ghostform
+Gorilla War Cry
+Blazing Salvo
+Amulet of Vigor
+Fight
+Wargate
+Invigorating Falls
+Glyph of Doom
+Tortoise Formation
+Peace Talks
+Vines of Vastwood
+Nightmare Incursion
+Mutavault
+Eye of the Storm
+Spring
+Oona's Grace
+Double Dip
+Clay Pigeon
+Dragon Blood
+Spiritual Sanctuary
+Sidar Kondo
+Consult the Necrosages
+Valor in Akros
+Illusion of Choice
+Essence Vortex
+Echoes of the Kin Tree
+Consume Strength
+Mana Tithe
+Shunt
+Pacification Array
+Time of Need
+Mutant's Prey
+Task Mage Assembly
+Wirewood Lodge
+Diabolic Intent
+Goblin Boom Keg
+Captured Sunlight
+Empty City Ruse
+Reach of Shadows
+Fell the Mighty
+Anticipate
+Yet Another Aether Vortex
+Sadistic Sacrament
+Breakthrough
+Dispel
+Titanic Growth
+Discombobulate
+Thornwood Falls
+Fire Tempest
+Flurry of Wings
+Fyndhorn Bow
+Magistrate's Scepter
+Heartwood Storyteller Avatar
+Collective Restraint
+Aeolipile
+Plea for Guidance
+Jinx
+Mana Reflection
+Natural Selection
+Ley Line
+Mana Confluence
+Mercadian Atlas
+Rapid Hybridization
+Evacuation
+Talisman of Progress
+Renounce the Guilds
+Undying Flames
+Renegade Tactics
+Sandstone Deadfall
+Biting Rain
+Rethink
+Copper Tablet
+Mortal Combat
+Stirring Wildwood
+Platinum Angel Avatar
+Mutual Epiphany
+Terramorphic Expanse
+Chain of Smog
+Flame Rift
+Spellbook
+Coral Atoll
+Vindicate
+Temur Battle Rage
+Launch the Fleet
+Choking Tethers
+Two-Headed Giant of Foriys Avatar
+Odds
+Devastating Dreams
+Dynavolt Tower
+Refocus
+Savage Offensive
+Spare from Evil
+Mercadian Bazaar
+Tsunami
+Embalmer's Tools
+Whelming Wave
+Congregation at Dawn
+Temple of Mystery
+Gravity Well
+Infuse
+Blighted Cataract
+Oust
+Roil's Retribution
+Volcanic Geyser
+Crucible of Worlds
+Ends
+Skullcage
+Fecundity
+Theft of Dreams
+Light of Day
+Rakdos Charm
+Crystal Shard
+Insult
+Dueling Grounds
+Distorting Lens
+Defense of the Heart
+Stream of Life
+Double Take
+Spirit Flare
+Biorhythm
+Skullcrack
+Sway of the Stars
+Fires of Yavimaya
+Fit of Rage
+Mutagenic Growth
+Eye to Eye
+Griffin Canyon
+Roiling Waters
+Krosan Verge
+Pillar of the Paruns
+Thrive
+Vial of Dragonfire
+Life Matrix
+Inspiring Call
+Flash of Insight
+Spiteful Blow
+Havenwood Battleground
+Gravitational Shift
+Rage Extractor
+Decree of Annihilation
+Geistblast
+Unstable Obelisk
+Gauntlet of Power
+Scent of Brine
+Weed Strangle
+Spell Burst
+Mana Leak
+Unity of Purpose
+Crushing Vines
+Incremental Growth
+Spreading Flames
+Blastfire Bolt
+Complete Disregard
+Remedy
+Structural Distortion
+Warped Physique
+Dragonrage
+Bamboozle
+Aven Shrine
+Thrumming Stone
+Alluring Scent
+Sungrass Prairie
+Slice in Twain
+Sunbeam Spellbomb
+Splitting Headache
+Demand
+Sands of Delirium
+Graveyard Shovel
+Wheel and Deal
+Oblivion Stone
+Circle of Protection: Blue
+Rollick of Abandon
+Chaos Orb
+Broken Concentration
+Giant Growth
+Uncaged Fury
+Imperial Edict
+Jayemdae Tome
+Hibernation
+Fated Return
+I Bask in Your Silent Awe
+Incremental Blight
+Wild Pair
+Conflux
+Orim's Thunder
+Veldt
+Magma Vein
+Counterbalance
+Wastes
+Resounding Thunder
+Blinding Light
+Aetherflux Reservoir
+Starstorm
+Counterlash
+Backup Plan
+Heartbeat of Spring
+Piper's Melody
+Meltdown
+Thunderbolt
+Deploy to the Front
+Biomantic Mastery
+Gather Courage
+Harvest Pyre
+Lace with Moonglove
+Spell Counter
+Twilight's Call
+Avenging Arrow
+Training Grounds
+Artisan's Sorrow
+Vile Rebirth
+Diabolic Revelation
+Invert the Skies
+Blooming Marsh
+Piety Charm
+Landslide
+Silent Departure
+Waves of Aggression
+Lead Astray
+In Garruk's Wake
+Demonic Pact
+Tranquility
+Fervent Denial
+Clash of Wills
+Extinguish All Hope
+Ember Shot
+Veinfire Borderpost
+Dismiss into Dream
+Spirit Mirror
+Wirefly Hive
+Arachnogenesis
+Warpath
+Urgent Exorcism
+Boros Fury-Shield
+Arena of the Ancients
+Triton Tactics
+Ink-Eyes, Servant of Oni Avatar
+Al-abara's Carpet
+Midnight Oil
+Emerald Charm
+White Sun's Zenith
+Torture Chamber
+Dismal Backwater
+Manamorphose
+Mox Ruby
+Polymorphous Rush
+Etched Oracle Avatar
+Enrage
+Muse Vessel
+Frontier Bivouac
+Mox Pearl
+Sejiri Steppe
+Sunglasses of Urza
+Field of Dreams
+Defy Gravity
+Karakas
+Angel's Tomb
+Peat Bog
+Thunderous Wrath
+Throne of Empires
+Diamond Kaleidoscope
+Firecat Blitz
+Desecrated Earth
+Tangle
+Epic Confrontation
+Beacon of Tomorrows
+Fall of the Hammer
+Acorn Catapult
+Aetherworks Marvel
+Sphere of the Suns
+Rush of Blood
+Cruel Tutor
+Elemental Uprising
+Possessed Portal
+Fatal Fumes
+Mana Flair
+Corrupt
+Face to Face
+Rite of Consumption
+Unnatural Endurance
+Battle Hymn
+Flashfires
+Furious Reprisal
+Scalding Tarn
+Lodestone Bauble
+Savage Conception
+Undergrowth
+Circle of Protection: White
+Volcanic Vision
+Reclaiming Vines
+Diamond Valley
+Long-Forgotten Gohei
+Saltblast
+Wail of the Nim
+Parch
+Rise from the Grave
+Arid Mesa
+Command of Unsummoning
+Harmony of Nature
+Disfigure
+Chord of Calling
+Rite of Ruin
+Cinder Barrens
+Punishment
+Leave in the Dust
+Make Obsolete
+Swift Justice
+Dark Salvation
+Lapis Lazuli Talisman
+Razor Barrier
+Flowstone Slide
+Floodwaters
+Mizzix's Mastery
+Forsaken City
+Traitor's Clutch
+Part Water
+Planeswalker's Mirth
+Murderous Spoils
+Veilstone Amulet
+Marshal's Anthem
+Tendrils of Despair
+Verdant Crescendo
+Feral Contest
+Barren Moor
+Talent of the Telepath
+Fraternal Exaltation
+My Undead Horde Awakens
+Warrior's Oath
+Salt Flats
+Giantbaiting
+Frantic Salvage
+Dregs of Sorrow
+Supreme Verdict
+Altar of Shadows
+Jeweled Torque
+Sacred Boon
+Sliver Queen Avatar
+Baki's Curse
+Quiet Contemplation
+Hatching Plans
+Mist of Stagnation
+Imp's Mischief
+Illumination
+Pay No Heed
+Mana Prism
+Retreat to Coralhelm
+Crucible of the Spirit Dragon
+Formless Nurturing
+Slate of Ancestry
+Sphere of Purity
+Altar's Light
+Subversion
+Loose Lips
+Mortal's Ardor
+Marrow Shards
+Stain the Mind
+Immolating Glare
+Lightning Coils
+Vivid Meadow
+Sunhome, Fortress of the Legion
+Stampede
+Myth Realized
+Stensia Masquerade
+Forsake the Worldly
+Creeping Renaissance
+Black Market
+Goblin Trenches
+Path to Exile
+Ornate Kanzashi
+Blessed Reversal
+Magma Jet
+Oxidize
+Enigma Sphinx Avatar
+Faith of the Devoted
+Volrath
+Lobotomy
+Moss Diamond
+Research the Deep
+Abandon Reason
+Smoldering Tar
+Treasure Hunt
+Kjeldoran Outpost
+Thunder Strike
+Beastmaster Ascension
+Icatian Store
+Asceticism
+Fiery Impulse
+Golgari Charm
+Conqueror's Pledge
+Zealous Strike
+Call to the Netherworld
+Pedantic Learning
+Hermit Druid Avatar
+Strength of the Tajuru
+Morality Shift
+Gemstone Array
+Wave of Reckoning
+Scabland
+Amulet of Quoz
+Winter's Grasp
+Jwar Isle Refuge
+Commune with Nature
+Wheel of Fortune
+Meddle
+Sulfur Falls
+Soul Parry
+Soul Feast
+Selesnya Sanctuary
+Orbs of Warding
+Kormus Bell
+Fork in the Road
+Bloodcurdling Scream
+Sins of the Past
+Arcbound Overseer Avatar
+Medicine Bag
+Might of Oaks
+Breaking Point
+Curse of the Fire Penguin
+Rise to the Challenge
+Koskun Falls
+Take Down
+Pyromatics
+Lose Calm
+Kabira Crossroads
+Desperate Research
+Winter Sky
+Molder
+Tragic Arrogance
+Mind Bend
+Cruel Revival
+Reckless Spite
+Lightning Javelin
+Strength from the Fallen
+Puncture Bolt
+Ghostly Prison
+Reversal of Fortune
+Aethertow
+Jarad's Orders
+Recross the Paths
+Cruel Feeding
+Structural Collapse
+Broken Dam
+Magma Rift
+Confusion in the Ranks
+Rite of the Serpent
+Downpour
+Immediate Action
+Coastal Piracy
+Hide
+Ring of Immortals
+Xanthic Statue
+Raise Dead
+Golgari Rot Farm
+Fathom Trawl
+Vampiric Fury
+Isochron Scepter
+Alabaster Potion
+Tidings
+Shock
+Concordant Crossroads
+Goblin Bombardment
+Dragon's Claw
+Return of the Nightstalkers
+Eldrazi Temple
+Vampiric Tutor
+Hatred
+Brightflame
+Rootbound Crag
+Dauntless Escort Avatar
+Voyage's End
+Booster Tutor
+Total War
+Nova Pentacle
+Demonic Consultation
+Corpse Dance
+Dream Halls
+Sunken Ruins
+Meandering River
+Thought Scour
+Bower Passage
+Day of Destiny
+Failure
+Sporogenesis
+Rhystic Tutor
+Jeskai Ascendancy
+Pulse of Murasa
+Thran Dynamo
+Despoil
+Cinder Storm
+Seachrome Coast
+Chaoslace
+Alhammarret's Archive
+Rift Bolt
+Behind the Scenes
+Soulquake
+Bind
+Furnace of Rath
+Silhouette
+Deluge
+Hissing Miasma
+Sewers of Estark
+Revive
+Sneak Attack
+Locket of Yesterdays
+Opalescence
+Rain of Gore
+School of the Unseen
+Roots of Life
+Roar of the Crowd
+Slaughter Cry
+Flame Jet
+City of Solitude
+Tidal Flats
+Rhystic Syphon
+Scalding Tongs
+Unforge
+Arctic Flats
+Gaze of Pain
+Chimeric Mass
+Excommunicate
+Earthbrawn
+Merciless Resolve
+Words of War
+Zzzyxas's Abyss
+Bubbling Muck
+Open into Wonder
+Lightform
+I Delight in Your Convulsions
+Stolen Identity
+Waiting in the Weeds
+Vivid Grove
+Bojuka Bog
+Rain of Salt
+Sunlance
+Bargaining Table
+Rebuke
+Riptide Replicator
+Homeward Path
+Necromantic Selection
+Corpsehatch
+Ghitu Encampment
+Mind Games
+Show of Valor
+Machinate
+Lifeblood
+Harsh Sustenance
+March from the Tomb
+Inflame
+Porphyry Nodes
+Dread Summons
+Reckless Assault
+Illuminated Folio
+Illicit Auction
+Greener Pastures
+Recycle
+Mind Ravel
+Inquisitor's Snare
+Comeuppance
+Frenzied Tilling
+Hammer of Bogardan
+Feed
+Culling Sun
+Nice
+Shimmering Mirage
+Key to the City
+Mise
+Shadow Rift
+Grizzly Fate
+Mox Diamond
+Enshrined Memories
+Empty the Pits
+Fresh Meat
+Fatal Frenzy
+Doomsday
+Brainbite
+Miren, the Moaning Well
+Scale Blessing
+Take into Custody
+Mortuary
+Rolling Temblor
+Call for Unity
+Rofellos
+Claws of Gix
+Second Harvest
+Rune of Protection: Red
+Draconic Roar
+Landbind Ritual
+Where
+Soldevi Digger
+Kiora's Dismissal
+Temper
+Grasp of Fate
+Trouble
+Undiscovered Paradise
+Feedback Bolt
+Into the Core
+Juxtapose
+Braidwood Cup
+Hazoret's Favor
+Cruel Edict
+Mardu Ascendancy
+Primal Surge
+Violent Ultimatum
+Witch Hunt
+Unmask
+Mishra's Toy Workshop
+Night's Whisper
+Pyromancy
+Aggravate
+Beast Within
+Dark Depths
+Tanglebloom
+Desertion
+Lingering Souls
+Aurelia's Fury
+Ray of Command
+Cursed Scroll
+Contemplation
+Sungrass Egg
+Succumb to Temptation
+Fumarole
+Cackling Counterpart
+Secrets of Paradise
+Destined
+Commune with Lava
+Windstorm
+Flooded Shoreline
+Feeding Frenzy
+Overwhelming Forces
+Psychic Surgery
+Promise of Power
+Collective Unconscious
+Dralnu's Crusade
+Breath of Malfegor
+Magnify
+Blood Rites
+Devastating Summons
+Prismatic Wardrobe
+Crime
+Stalking Tiger Avatar
+Aethersnatch
+Confiscation Coup
+Wit's End
+Bump in the Night
+Approach My Molten Realm
+Font of Return
+Expedite
+The Ultimate Nightmare of Wizards of the Coast® Customer Service
+Flame Lash
+Forbidden Orchard
+Liberating Combustion
+Sick and Tired
+Aid from the Cowl
+Disaster Radius
+Chant of Vitu-Ghazi
+Inspiring Roar
+Cerulean Wisps
+Rites of Refusal
+Tomb of Urami
+Predator's Howl
+Thunder of Hooves
+Homicidal Seclusion
+Bound
+Electrolyze
+Showstopper
+Stronghold Gambit
+Rush of Battle
+Koskun Keep
+Confirm Suspicions
+Mwonvuli Acid-Moss
+Edifice of Authority
+Unbender Tine
+Nissa's Judgment
+Leeching Bite
+Tower of Coireall
+Volley of Boulders
+Thran Lens
+Painful Quandary
+Savor the Moment
+Stomp and Howl
+Mobilize
+Rain of Embers
+Reign of the Pit
+Identity Crisis
+Midsummer Revel
+Melt Terrain
+Decision Paralysis
+Izzet Signet
+Culling Scales
+Tombstone Stairwell
+Circle of Affliction
+Scorching Lava
+Damnation
+Boulderfall
+Sigil of the New Dawn
+Change of Heart
+Primitive Etchings
+Pinecrest Ridge
+Trial of Ambition
+Righteous Blow
+Metal Fatigue
+Fellwar Stone
+Aether Burst
+Blighted Fen
+Door of Destinies
+Night
+Voidslime
+Handcuffs
+Rumbling Slum Avatar
+Price of Progress
+Unnatural Selection
+Horrifying Revelation
+Cleanse
+Radiate
+Morgue Theft
+Horn of Greed
+Fleeting Memories
+Lion's Eye Diamond
+Elemental Appeal
+Steeling Stance
+Trading Post
+Sunspring Expedition
+Ondu Rising
+Early Frost
+Thatcher Revolt
+Wrath of Marit Lage
+Simic Cluestone
+Runesword
+Molten Nursery
+Whirling Catapult
+Midnight Recovery
+Vendetta
+Diabolic Tutor
+Reality Shaping
+Chill to the Bone
+Elixir of Vitality
+Chill of Foreboding
+Rix Maadi, Dungeon Palace
+Advent of the Wurm
+Altar of the Brood
+Martyrdom
+Shadowblood Ridge
+Return to the Earth
+Nature's Spiral
+Heat Wave
+Crackdown
+Famine
+Phyrexia's Core
+Crevasse
+Three Dreams
+Rune of Protection: Artifacts
+Flaming Gambit
+Elven Lyre
+Scatter Arc
+Topple
+Triumph of the Hordes
+Increasing Devotion
+Dimir Charm
+Timberline Ridge
+Cabal Therapy
+Dense Foliage
+Titania
+Form of the Squirrel
+Darkwater Catacombs
+Voltaic Key
+Howlpack Resurgence
+Merchant Scroll
+Tyrant's Choice
+Dimir Aqueduct
+Sandblast
+Welding Jar
+Ritual of Restoration
+Growth Spurt
+Riftstone Portal
+Embolden
+Soul Manipulation
+Scattering Stroke
+Chandra's Revolution
+Dauntless Onslaught
+Punish Ignorance
+Grinding Station
+Your Will Is Not Your Own
+Consign to Dust
+Thoughts of Ruin
+Strength in Numbers
+Unhinge
+Reaping the Rewards
+Canopy Claws
+Grafdigger's Cage
+Altar's Reap
+Dematerialize
+Mental Vapors
+Wrangle
+Zap
+Veiled Apparition
+Spelljack
+Avoid Fate
+Citadel of Pain
+Isolation Cell
+Dread Return
+Reito Lantern
+Verdigris
+Scar
+Reforge the Soul
+Blinkmoth Urn
+Living Destiny
+Liquimetal Coating
+Deicide
+Fyndhorn Pollen
+Hold the Line
+Traveler's Amulet
+Alpha Brawl
+Juntu Stakes
+Stitch in Time
+Abundance
+Infernal Tutor
+Explosive Vegetation
+Tidal Wave
+Lammastide Weave
+Thoughtlace
+Panoptic Mirror
+Haze of Rage
+Verdant Confluence
+Grim Return
+Tempt with Discovery
+Channel
+Carpet of Flowers
+Enduring Victory
+Dark Heart of the Wood
+Give No Ground
+Gargoyle Castle
+Chameleon Blur
+Disrupting Scepter
+Balance of Power
+Dance, Pathetic Marionette
+Ashnod's Battle Gear
+Tithe
+Warleader's Helix
+Wooded Foothills
+Shield of the Ages
+Demolish
+Devouring Light
+Burn at the Stake
+Phyrexian Tribute
+Congregate
+Whir of Invention
+Plagiarize
+Reduce
+Uncanny Speed
+Overlaid Terrain
+Phyrexian Lens
+Raise the Alarm
+Ooze Garden
+Aspect of Hydra
+Gaea's Anthem
+Flash of Defiance
+AWOL
+Molten Vortex
+Hidden Strings
+Shrapnel Blast
+Sovereign's Realm
+Ravaging Blaze
+Wirewood Pride
+Countermand
+Etherwrought Page
+Sentinel Dispatch
+Hull Breach
+Growing Ranks
+Land Aid '04
+Rite of Passage
+Execute
+Endless Obedience
+Armistice
+Temporal Aperture
+Preordain
+Slaughter
+Abjure
+Bant Charm
+Food Chain
+Goblin Cannon
+Unmake the Graves
+Skybind
+Words of Worship
+Tooth and Nail
+Cardboard Carapace
+Mossfire Valley
+Inkmoth Nexus
+Deny Reality
+Call the Scions
+Footbottom Feast
+Obelisk of Alara
+Shriekhorn
+Fury Charm
+Regress
+Immortal Coil
+Squee
+Consulate Surveillance
+Burnout
+Deconstruct
+Searing Flesh
+Dryad's Caress
+Reiterate
+Glacial Chasm
+Familiar Ground
+Whispers of the Muse
+Fabricate
+Chrome Mox
+Soul's Might
+Archaeological Dig
+Blood Feud
+Obelisk of Bant
+Pressure Point
+Remote Isle
+Second Sight
+Barkshell Blessing
+Plague Boiler
+Wet Willie of the Damned
+Daru Encampment
+Spoils of Victory
+Ichor Wellspring
+Break of Day
+Groundswell
+Mogg Alarm
+Parallax Wave
+Yamabushi's Flame
+Endless Swarm
+Abeyance
+Chandra's Pyrohelix
+Nocturnal Raid
+Sword of the Ages
+Mossfire Egg
+Erratic Mutation
+Skull of Orm
+Elven Palisade
+Macabre Waltz
+Thoughtleech
+Horncaller's Chant
+Innocent Blood
+Kolaghan's Command
+Briber's Purse
+Molten Slagheap
+Creeping Corrosion
+Jester's Scepter
+Cryptic Gateway
+Spiritualize
+Wintermoon Mesa
+Negate
+Grotesque Mutation
+Mirri's Guile
+Skyship Weatherlight
+Cremate
+Pull from the Deep
+Painful Truths
+Wreak Havoc
+Sorcerous Sight
+Squelch
+Slaughter Pact
+Seek the Wilds
+Spectral Procession
+Redirect
+Lotus Petal
+Shrine of Loyal Legions
+Shower of Coals
+Defiling Tears
+Swift Maneuver
+Rushwood Grove
+Withering Boon
+Cower in Fear
+Sideswipe
+Nissa's Expedition
+Animation Module
+Arboria
+Martyrs' Tomb
+Rite of Flame
+Deception
+Sowing Salt
+Collapsing Borders
+Shattered Perception
+Distant Memories
+Invulnerability
+Incoming!
+Decaying Soil
+Remove Soul
+Interdict
+Martyr's Cause
+Whispers of Emrakul
+Mugging
+Voidwalk
+Insist
+Heliophial
+Sorin's Thirst
+Energy Vortex
+Boreal Shelf
+Time Ebb
+Efficient Construction
+Grip of the Roil
+Blinding Beam
+Chimeric Coils
+Hero's Demise
+Obliterate
+Cabal Ritual
+Nevermore
+Forgotten Cave
+Lithomancer's Focus
+When
+Winter's Chill
+Echoing Calm
+Magical Hack
+Moonlight Bargain
+Ghoulcaller's Chant
+Opal Titan
+Withering Wisps
+Sandstorm
+Cyclical Evolution
+Luminesce
+Cabal Conditioning
+Ranger's Path
+Ransack
+Harness by Force
+Cream of the Crop
+Safe Haven
+Selvala's Stampede
+Aura Extraction
+Distant Melody
+Festering March
+Coalition Relic
+Reconstruction
+Search for Tomorrow
+Rites of Initiation
+Xantcha
+Turbulent Dreams
+Hidden Stag
+Forked Lightning
+Reckless Abandon
+Time Reversal
+Windswept Heath
+Dingus Staff
+Ashling's Prerogative
+Drudge Spell
+Endoskeleton
+Sudden Disappearance
+Baral's Expertise
+Ring of Gix
+Reshape
+Eye of Singularity
+Kazandu Refuge
+Caustic Rain
+Tezzeret's Betrayal
+Chandra's Ignition
+Rod of Spanking
+Death Mutation
+Corrosion
+Goblin Burrows
+Sift
+Well
+Wildwood Rebirth
+Saproling Burst
+Flying Crane Technique
+Increasing Confusion
+Gods Willing
+Redeem the Lost
+Fulgent Distraction
+Rampant Growth
+Aether Shockwave
+Temur Charm
+Veteran's Reflexes
+Forget
+Warrior's Honor
+Cauldron Haze
+Wheel of Fate
+Keldon Twilight
+Soulscour
+Blinkmoth Nexus
+Wretched Confluence
+Tel-Jilad Defiance
+Unyaro Bee Sting
+Violent Outburst
+Squee's Toy
+Phthisis
+Windfall
+Call to Glory
+Ghost Town
+Witchbane Orb
+Seat of the Synod
+Douse in Gloom
+Forced March
+Blighted Steppe
+Bonds of Mortality
+Grinning Totem
+Mortify
+Shrewd Negotiation
+Serum Tank
+Enshrouding Mist
+Krovikan Rot
+Forced Fruition
+Possibility Storm
+Turn to Slag
+Guardian Angel
+Arc Trail
+Molting Skin
+Glissa's Scorn
+Corrosive Gale
+Brawl
+Guerrilla Tactics
+Soul Stair Expedition
+Morbid Plunder
+Ancient Runes
+Power Sink
+Vault of Whispers
+Titan's Revenge
+Frazzle
+Disarm
+Lim-Dûl's Vault
+Kismet
+Mishra's Helix
+Aysen Abbey
+Psychic Theft
+Whipflare
+Dead Drop
+Electropotence
+Squee, Goblin Nabob Avatar
+Onslaught
+Intimidation Bolt
+Built to Smash
+Typhoon
+Taigam's Strike
+Riches
+Temple of Epiphany
+Opal Acrolith
+Traitorous Instinct
+Muddle the Mixture
+Entreat the Angels
+Fasting
+Hellion Eruption
+Guided Passage
+Double Deal
+Tidal Bore
+Sacred Nectar
+Cover of Darkness
+Dimir Keyrune
+Pulse of the Dross
+Smoke
+Graypelt Refuge
+Feast of Dreams
+Gerrard's Command
+Caravan Vigil
+Spark Jolt
+Duelist's Heritage
+Armed
+Collective Voyage
+Boros Garrison
+Supersize
+Darkslick Shores
+Power Play
+Firestorm
+Flowstone Armor
+Eternal Dominion
+Absolute Grace
+Minion Reflector
+Cave-In
+Death Bomb
+Rocket Launcher
+Expedition Map
+Apostle's Blessing
+Planar Overlay
+Rings of Brighthearth
+Flame Fusillade
+Sunpetal Grove
+Grip of Chaos
+Foul-Tongue Invocation
+Hour of Reckoning
+Grim Discovery
+Unholy Citadel
+Yavimaya Coast
+Victorious Destruction
+Spectral Searchlight
+Mana Short
+Extortion
+Endless Ranks of the Dead
+Temporal Cascade
+Scatter the Seeds
+Shape the Sands
+Ajani's Presence
+Remorseless Punishment
+Dispossess
+Life Burst
+Worthy Cause
+Recantation
+Bold Defense
+Doubling Season
+Shatterstorm
+Leap of Faith
+Break Asunder
+Lightmine Field
+Yahenni's Expertise
+Charcoal Diamond
+Fabrication Module
+Eye Spy
+Time Vault
+Skeleton Shard
+Blinkmoth Infusion
+Hall of Gemstone
+Ruthless Invasion
+Geosurge
+Gift of the Gargantuan
+Great Furnace
+Pillage
+Fire-Lit Thicket
+Triumph of Cruelty
+Path of Bravery
+Compelling Deterrence
+Walk the Aeons
+Squandered Resources
+Reverse Polarity
+Hammer of Purphoros
+Tempt with Immortality
+Land Grant
+Gavony Township
+Sunken City
+Fever Charm
+Heroes' Podium
+Test of Endurance
+Exclude
+Tranquil Expanse
+Luminescent Rain
+Incendiary Sabotage
+Sandstone Needle
+Infernal Contract
+Deny Existence
+Wooden Sphere
+Roar of the Wurm
+Balduvian Rage
+Coordinated Assault
+Dream Salvage
+Distortion Strike
+Druids' Repository
+Renewal
+Ojutai's Breath
+Commander's Sphere
+Increasing Ambition
+Phyrexian Tower
+Broken Fall
+Dissipation Field
+Haunting Misery
+Diabolic Edict
+Poison Arrow
+Laquatus's Creativity
+Abstruse Interference
+Vessel of Nascency
+Rain of Filth
+Shared Discovery
+Vampiric Feast
+Blanket of Night
+Fugue
+Mindcrank
+Reanimate
+Heightened Awareness
+Treacherous Terrain
+An-Zerrin Ruins
+Aetherize
+Viridian Revel
+Grip of Desolation
+Repulse
+Sorry
+Jaws of Stone
+Berserkers' Onslaught
+Gallows at Willow Hill
+Debtors' Knell
+Curse of the Swine
+Tectonic Instability
+Army of Allah
+Griptide
+Necromancer's Stockpile
+Venser's Diffusion
+Savage Punch
+Ghirapur Aether Grid
+Mirror Sheen
+Righteous Cause
+Glittering Wish
+Executioner's Capsule
+Liliana's Indignation
+Assassin's Strike
+Final Fortune
+Rakdos Signet
+Taste of Blood
+Thumbscrews
+Lightning Dart
+Sizzle
+Black Mana Battery
+Counsel of the Soratami
+Condescend
+Arcane Melee
+Sublime Exhalation
+In the Web of War
+Midnight Ritual
+Titan's Presence
+Angelic Shield
+Leeches
+Cloudcrest Lake
+Crux of Fate
+Infinite Obliteration
+Black Vise
+Free-for-All
+Salvaging Station
+Overabundance
+Nature's Wrath
+Burning Earth
+Salvage
+Death Wind
+Piranha Marsh
+Perplex
+Fall of the Gavel
+Pulse of the Forge
+Overrun
+Second Guess
+Demonic Dread
+Miming Slime
+Spawning Pit
+Keep Watch
+Royal Decree
+Aether Rift
+Tribal Flames
+Recoil
+Artillerize
+Sorin's Vengeance
+Signal the Clans
+Sparkmage's Gambit
+Loreseeker's Stone
+Fractured Powerstone
+Ana Sanctuary
+Temporal Distortion
+Creeping Tar Pit
+Imperial Mask
+Shower of Sparks
+Rebirth
+Cranial Archive
+Beast Hunt
+Revealing Wind
+Rush of Ice
+Bosh, Iron Golem Avatar
+Briar Patch
+Mana Screw
+Blind Obedience
+Shieldmate's Blessing
+Tempt with Glory
+Castle
+Death Pit Offering
+Framed!
+Inside Out
+Unholy Grotto
+Lightning Volley
+Ensnare
+Goblin War Drums
+Gutter Grime
+Soul Echo
+Arcane Spyglass
+Shredding Winds
+Hallowed Ground
+Amber Prison
+Jet Medallion
+Hanabi Blast
+Vigil for the Lost
+Oppressive Will
+Stronghold Discipline
+Shreds of Sanity
+Repel the Abominable
+Talisman of Dominance
+Crop Rotation
+War Flare
+Tsabo's Decree
+Kher Keep
+Solar Blast
+Ojutai Monument
+Mask of the Mimic
+Supplant Form
+Avacyn's Judgment
+Pyromancer's Gauntlet
+Chance Encounter
+Bottled Cloister
+Jester's Sombrero
+Magosi, the Waterveil
+Induce Despair
+Phyrexian Altar
+Savage Twister
+Moonlight Hunt
+Spawning Pool
+Hurkyl's Recall
+Magnetic Theft
+Leap of Flame
+Warrior's Stand
+Glasses of Urza
+Primal Command
+Puppet Strings
+Polymorphist's Jest
+Ruinous Path
+Keldon Necropolis
+Unified Front
+Pure
+Oracle
+Everglades
+High Tide
+Legacy Weapon
+Dominate
+Flaring Pain
+Increasing Savagery
+Undying Evil
+Warped Devotion
+Trial of Knowledge
+Wayfarer's Bauble
+Chorus of Might
+Cascading Cataracts
+Ember Gale
+Soul Separator
+Altar of Bone
+Wine of Blood and Iron
+Beacon of Unrest
+Essence Flux
+Wing Shards
+Reaper King Avatar
+Wanderer's Twig
+Trial of Solidarity
+Sculpting Steel
+Dark Offering
+Utter End
+Urza's Rage
+Stone Rain
+Fanning the Flames
+Selvala's Charge
+Searing Light
+Lifelace
+Geier Reach Sanitarium
+Leyline of Singularity
+Jester's Cap
+Resuscitate
+Synod Sanctum
+Polluted Delta
+Elfhame Sanctuary
+Iterative Analysis
+Righteous War
+Vivify
+Dire Undercurrents
+Azorius Chancery
+Rune of Protection: Green
+Holy Light
+Aggressive Urge
+Tome Scour
+Catalog
+Phytoburst
+Pursue Glory
+Delif's Cube
+Rites of Flourishing
+Grave Upheaval
+Team Spirit
+Vivid Marsh
+Bow of Nylea
+Tempt with Reflections
+Zoetic Cavern
+Thunder Totem
+Invigorating Boon
+Barrin's Unmaking
+Lashknife Barrier
+Override
+Decree of Savagery
+Damnable Pact
+Inspirit
+Banishing Light
+Skeletal Scrying
+Blood Lust
+Needle Storm
+Aladdin's Lamp
+Reviving Melody
+Cryptolith Fragment
+Bad River
+Cathars' Crusade
+Desolate Lighthouse
+Dry Spell
+Human Frailty
+Energy Arc
+Grim Flowering
+Infernal Offering
+Encircling Fissure
+Fanatical Devotion
+Magewright's Stone
+Death Pulse
+Aerial Volley
+Pyxis of Pandemonium
+Shimmer
+Fleeting Distraction
+Syphon Soul
+Repeal
+Ashen Powder
+Shell of the Last Kappa
+Quarantine Field
+Builder's Bane
+Volcanic Wind
+Noxious Vapors
+Fact or Fiction
+Recoup
+Ground Seal
+Rupture
+Chalice of the Void
+Selective Memory
+Biomass Mutation
+Prepare
+All Hallow's Eve
+Drown in Filth
+Rise of Eagles
+Burning of Xinye
+Grim Backwoods
+Essence Harvest
+High Ground
+Break Open
+Eradicate
+Pyromancer Ascension
+Dream Twist
+Hickory Woodlot
+Gemstone Mine
+Antagonism
+Izzet Charm
+Mending Touch
+Contested War Zone
+Last-Ditch Effort
+Magnifying Glass
+Steamclaw
+Journey to Nowhere
+Harmonic Convergence
+Squall
+Trip Noose
+Artifact Mutation
+Azorius Keyrune
+Sylvan Library
+Mirror Universe
+Seer's Sundial
+Press the Advantage
+Skyshroud Blessing
+Embrace My Diabolical Vision
+Flooded Woodlands
+Victory
+Failed Inspection
+Elemental Bond
+Planeswalker's Mischief
+Misty Rainforest
+Rowen
+Valakut, the Molten Pinnacle
+Shrine of the Forsaken Gods
+Splendid Agony
+Essence Fracture
+Fog Patch
+Goblin Bomb
+Lethal Vapors
+Lunge
+Sliver Queen, Brood Mother
+Vine Snare
+Will of the Naga
+Dawn
+Night Terrors
+Chain of Silence
+Recurring Insight
+Diplomacy of the Wastes
+Hematite Talisman
+Equal Treatment
+Evasive Action
+Forfend
+Sylvan Offering
+Assemble the Rank and Vile
+Flames of the Blood Hand
+Wicked Pact
+Mosswort Bridge
+Snap
+Scorch the Fields
+Choose Your Champion
+Every Last Vestige Shall Rot
+Rhystic Lightning
+Forcefield
+Culling Mark
+Blossoming Sands
+Sanguimancy
+Rejuvenation Chamber
+Join the Ranks
+Rise of the Dark Realms
+Mindstatic
+Concentrate
+Magnetic Mine
+Refreshing Rain
+Earthquake
+Touch of Death
+Misfortune's Gain
+Praetor's Counsel
+Retaliate
+Doom Blade
+Spinerock Knoll
+Mystic Decree
+Serene Heart
+Abuna's Chant
+Victim of Night
+Flowstone Flood
+No Rest for the Wicked
+Ray of Erasure
+Servo Schematic
+Elfhame Palace
+Prismatic Boon
+Decree of Justice
+Cankerous Thirst
+Sudden Impact
+Sylvan Paradise
+Chimeric Idol
+Grave Exchange
+Hungry Flames
+Portcullis
+Scent of Ivy
+Academy Ruins
+Mishra's Factory
+Bull Rush
+Clarion Ultimatum
+Feral Instinct
+Countersquall
+Military Intelligence
+Back from the Brink
+Heaven's Gate
+Pointy Finger of Doom
+Uncovered Clues
+Prophetic Bolt
+Pact of Negation
+Paraselene
+Smite the Monstrous
+Infernal Plunge
+Ajani's Mantra
+Torrent of Lava
+Goblin Tutor
+Nausea
+Gideon's Phalanx
+Cloudform
+Tinker
+Stormcaller's Boon
+Dwarven Landslide
+Stifle
+Dark Triumph
+Sheltering Prayers
+Engulfing Flames
+Runed Halo
+Hearth Charm
+Saprazzan Cove
+Tunnel Vision
+Remote Farm
+Ashes to Ashes
+Vengeful Rebirth
+Mutilate
+Abandoned Outpost
+Millstone
+Covenant of Minds
+Cryptolith Rite
+Mind Grind
+Lavaclaw Reaches
+Damping Engine
+Witch's Mist
+Urborg Volcano
+Leyline of the Void
+Mistvein Borderpost
+Display of Dominance
+Furnace Celebration
+Golgari Cluestone
+Determined
+Mana Cache
+Yawgmoth's Bargain
+Gifts Given
+Naya Charm
+Exhaustion
+Worms of the Earth
+Rhystic Study
+Dwarven Catapult
+Cruel Fate
+Propaganda
+Heroes Remembered
+Emrakul's Influence
+Obelisk of Undoing
+Toxic Deluge
+Hidden Stockpile
+Vile Requiem
+Clear a Path
+Soul Nova
+Slaughter Games
+Mark of Asylum
+Pyromancer's Swath
+Sarkhan's Triumph
+Iona's Judgment
+Peace of Mind
+Shriveling Rot
+Terror
+Lantern of Insight
+Lost Legacy
+Season's Beatings
+Sapphire Charm
+Amok
+Lux Cannon
+Hold the Gates
+Mind Peel
+Blightning
+Cold Storage
+Even the Odds
+Wild Guess
+Kozilek's Return
+Retether
+Sudden Spoiling
+Etherium Astrolabe
+Number Crunch
+Bone Flute
+Magma Mine
+Herbal Poultice
+Belbe's Armor
+Rockslide Ambush
+Rolling Thunder
+Searing Rays
+Travel Preparations
+Essence Feed
+Thoughtweft Gambit
+Enchantment Alteration
+Zendikar's Roil
+Spreading Plague
+Desperate Stand
+Word of Seizing
+Wildcall
+Crystal Quarry
+Throne of Geth
+Jump
+Death's Duet
+Remand
+Aura Finesse
+Simic Growth Chamber
+Soul Spike
+Timetwister
+Fallow Earth
+Ebon Stronghold
+Murderous Cut
+Commencement of Festivities
+Mind
+Secluded Glen
+Spell Snare
+Emerge Unscathed
+Death Rattle
+Auntie's Hovel
+Grim Reminder
+Tenacity
+Vitu-Ghazi, the City-Tree
+Development
+Butcher's Glee
+Stuffy Doll Avatar
+Search Warrant
+Burn Trail
+Boros Keyrune
+Forked Bolt
+Hisoka's Defiance
+Credit Voucher
+Gaze of the Gorgon
+Dreadbore
+Gaze of Granite
+Wildfire
+Harvest Season
+Woodland Cemetery
+Fruition
+Tempest of Light
+Freyalise's Charm
+Voyager Staff
+Balancing Act
+Tasigur's Cruelty
+Contagion Clasp
+Orzhova, the Church of Deals
+Jungle Basin
+Wojek Siren
+Revoke Existence
+Mirran Mettle
+Clone Legion
+Serra Aviary
+Song of Serenity
+Entomb
+Mercy Killing
+Crusade
+Mass Calcify
+Three Visits
+Mana Vapors
+Lull
+Roots of All Evil
+Centaur Glade
+Thermokarst
+Akroma's Memorial
+Scourglass
+Resounding Scream
+Minions' Murmurs
+Gleam of Resistance
+Scrabbling Claws
+Prey Upon
+Veiled Sentry
+Steam Augury
+Trail of Mystery
+Stymied Hopes
+Shamanic Revelation
+Extinguish
+Festival
+Clifftop Retreat
+Brightstone Ritual
+City of Traitors
+Temple of Enlightenment
+Aethermage's Touch
+Aether Mutation
+Dissolve
+Omniscience
+Gaea's Touch
+Font of Fertility
+Humble the Brute
+Revelation
+Forbidding Watchtower
+Joint Assault
+Jandor's Ring
+Snag
+Moorland Haunt
+Grinning Demon Avatar
+Reflecting Pool
+Mana Web
+Omen Machine
+Land's Edge
+Rhystic Shield
+Scepter of Fugue
+Smelt
+Seal of Fire
+Aurification
+Leyline of Anticipation
+Monastery Siege
+Ancient Stirrings
+Shape Anew
+Cathedral of Serra
+Fierce Invocation
+Triangle of War
+Soul Rend
+Withstand Death
+Burn the Impure
+Touch of Moonglove
+Lifecrafter's Bestiary
+Green Sun's Zenith
+Angelic Favor
+Rancid Earth
+Ignorant Bliss
+Always Watching
+Deep Water
+Ghitu Fire
+Higure, the Still Wind Avatar
+Intellectual Offering
+Kiss of the Amesha
+Prismatic Lace
+Memoricide
+Burning Fields
+Syphon Flesh
+Edge of Autumn
+Ezuri's Predation
+Blood Moon
+Phalanx Formation
+Wave of Indifference
+Thought Lash
+Gods' Eye, Gate to the Reikai
+Twitch
+Airborne Aid
+Healing Leaves
+Manabarbs
+Telemin Performance
+Game of Chaos
+Impeccable Timing
+Slippery Karst
+Teferi's Veil
+Idle Thoughts
+Siege of Towers
+Dimir Machinations
+Divine Deflection
+Winds of Qal Sisma
+Branching Bolt
+Render Silent
+Heat Ray
+Uba Mask
+Broken Ambitions
+Vec Townships
+Concussive Bolt
+Simplify
+Storage Matrix
+Flourishing Defenses
+Malicious Advice
+Barrin's Codex
+Deem Worthy
+Unified Will
+Ranger's Guile
+Pestilence
+The Chain Veil
+Festering Evil
+Nihilistic Glee
+Reciprocate
+Treasure Trove
+Into Thin Air
+Nix
+Brink of Madness
+Besmirch
+Swarm Surge
+Combust
+Austere Command
+Fatal Push
+Cultural Exchange
+Spell Snip
+Martial Law
+Jabari's Influence
+Afflict
+Opal Guardian
+Appetite for the Unnatural
+Mourner's Shield
+Booby Trap
+Soul Snare
+Aether Snap
+Emerald Medallion
+Palliation Accord
+Flagstones of Trokair
+Surge of Righteousness
+Myr Matrix
+Thran Tome
+Dissipate
+Squall Line
+Battlegrowth
+Death Match
+Captain's Call
+Righteous Indignation
+Sauté
+Sapphire Medallion
+Breath of Life
+Swelter
+Tower of Murmurs
+Retribution of the Meek
+Déjà Vu
+Borrowed Malevolence
+Sterling Grove
+Mouth to Mouth
+The Abyss
+Caltrops
+Unravel the Aether
+Era of Innovation
+Inner Fire
+Sensei's Divining Top
+Fortify
+Black Sun's Zenith
+Unwinding Clock
+Unsubstantiate
+Heart of Ramos
+Ribbons
+Seize the Soul
+Repay in Kind
+Kirtar's Wrath
+Myr Reservoir
+Blazing Volley
+Drag Under
+Tainted Remedy
+Just the Wind
+Flesh to Dust
+Crovax
+Burst of Strength
+Spatial Contortion
+Pit Trap
+Curtain of Light
+Revolutionary Rebuff
+Oblation
+Insurrection
+Stunted Growth
+Soul's Fire
+Temple Bell
+Spiteful Visions
+Mayael the Anima Avatar
+Crawlspace
+Mind Rot
+Nimbus Maze
+Boiling Earth
+Hush
+Implement of Improvement
+Dispatch
+Mitotic Manipulation
+Faith's Shield
+Anguished Unmaking
+Akroma's Blessing
+Turn Against
+Assault Strobe
+Dead Ringers
+Nekrataal Avatar
+Into the Earthen Maw
+Tainted Field
+Aether Sting
+Wild Slash
+Grapeshot
+Ashnod
+Urza's Miter
+Arrow Storm
+True Conviction
+Twincast
+Quest for the Holy Relic
+Evolutionary Escalation
+Resounding Silence
+Survive the Night
+Kill Switch
+Teleportal
+Avalanche
+Second Thoughts
+Legerdemain
+Scare Tactics
+Maelstrom Archangel Avatar
+Breath of Darigaaz
+Truth or Tale
+Encroaching Wastes
+Now I Know My ABC's
+Orim's Chant
+Retreat to Valakut
+Eunuchs' Intrigues
+Sylvan Scrying
+Perish
+Blessed Alliance
+Lava Flow
+Swerve
+Extract from Darkness
+Scepter of Empires
+Bone Splinters
+Headlong Rush
+Temporary Insanity
+Hazoret's Monument
+Cursebreak
+Quest for the Gemblades
+War Tax
+Thran Quarry
+Gratuitous Violence
+Touchstone
+Secure the Wastes
+Great Teacher's Decree
+Everflowing Chalice
+Fire Diamond
+Public Execution
+Once More with Feeling
+Wane
+Traumatize
+Contagion Engine
+Last Word
+Tawnos's Weaponry
+Word of Command
+Tower of Eons
+Fireforger's Puzzleknot
+Barreling Attack
+Allied Reinforcements
+Taunting Challenge
+Galvanic Key
+Twilight Mire
+Shard Volley
+Chromatic Sphere
+Artful Dodge
+Hive Stirrings
+Into the Wilds
+Flame Javelin
+Surveyor's Scope
+Crackling Perimeter
+Widespread Panic
+Journeyer's Kite
+Delirium Skeins
+Dubious Challenge
+Horn of Plenty
+Kill Shot
+Tsabo's Web
+Blood of the Martyr
+Folk Medicine
+Dragon Tempest
+Divination
+Surge of Zeal
+Riot Control
+False Summoning
+Campaign of Vengeance
+Ray of Dissolution
+Painful Memories
+Radiant's Judgment
+Evolutionary Leap
+Risky Move
+Hanweir Battlements
+Providence
+Nissa's Renewal
+Consuming Sinkhole
+Demonic Attorney
+Last Rites
+Peek
+Sage's Knowledge
+Pentagram of the Ages
+Acceptable Losses
+Curfew
+Cloven Casting
+Epiphany at the Drownyard
+Turntimber Grove
+Skeletonize
+Ow
+Hum of the Radix
+Llanowar Reborn
+Scorching Winds
+Dark Withering
+Flame Jab
+Commandeer
+Flash Flood
+Overwhelm
+Bioshift
+Shared Animosity
+Mouth of Ronom
+Crosis's Charm
+Subterranean Tremors
+Kaleidostone
+Living Death
+Not Forgotten
+Gideon's Reproach
+Command Tower
+Dangerous Wager
+Hail of Arrows
+Helix Pinnacle
+Urza's Chalice
+Golem's Heart
+Sundering Vitae
+Glare of Subdual
+Mystic Gate
+Ritual of the Returned
+Liar's Pendulum
+Recollect
+Rune-Tail's Essence
+Flatten
+Exclusion Ritual
+Essence Scatter
+Executioner's Swing
+Phyrexian Portal
+Shizo, Death's Storehouse
+Volcanic Upheaval
+Bust
+Sudden Demise
+Guided Strike
+Proper Burial
+Swift Kick
+Bathe in Dragonfire
+Quiet Speculation
+Brute Strength
+Armageddon Clock
+Gone
+Karma
+Hunger of the Nim
+Ambition's Cost
+Stone Calendar
+Terminate
+Sip of Hemlock
+Opal Palace
+Active Volcano
+Amnesia
+No Quarter
+Cruel Finality
+Impromptu Raid
+Diminish
+Press into Service
+Sudden Shock
+Urza's Contact Lenses
+Gerrard's Wisdom
+Strionic Resonator
+Coat with Venom
+Bifurcate
+Drownyard Temple
+Double Cleave
+Mending Hands
+Dark Temper
+Shed Weakness
+Tail Slash
+Shrine of Piercing Vision
+Whitesun's Passage
+I Know All, I See All
+Turf Wound
+Sangrite Surge
+Careful Consideration
+Unified Strike
+Essence Extraction
+Hazardous Conditions
+Hideous Visage
+Energy Storm
+Terrifying Presence
+Coastal Breach
+Yawgmoth's Agenda
+Warp World
+Thermal Blast
+Sulfur Vent
+Ark of Blight
+Mass Hysteria
+Disintegrate
+Molten Disaster
+Choking Fumes
+Oubliette
+Reality
+Hedron Archive
+Hellfire
+Waylay
+Aether Barrier
+Sanctum of Ugin
+Hallowed Burial
+Dictate of Erebos
+Fists of the Anvil
+Scrapyard Salvo
+Woodland Guidance
+Glimmervoid
+Sigil of the Empty Throne
+Saltcrusted Steppe
+Apocalypse
+Scrap
+Grapple with the Past
+Throne of the God-Pharaoh
+Evil Comes to Fruition
+Abzan Charm
+Khalni Gem
+Brain in a Jar
+Pain
+Crown of the Ages
+Impact Resonance
+Engineered Plague
+Verdant Touch
+Phyrexian Furnace
+Trigon of Thought
+Drifting Meadow
+Chronatog Avatar
+Graf Harvest
+Dismantle
+Archmage Ascension
+Past in Flames
+Shelter
+Bloodfell Caves
+Pick the Brain
+Quickchange
+Ignite Memories
+Dead
+Seafloor Debris
+Crumbling Necropolis
+Forethought Amulet
+Staggershock
+Desecration Plague
+Sivvi's Ruse
+Reverse Engineer
+Slave of Bolas
+Woodweaver's Puzzleknot
+Novijen, Heart of Progress
+Fires of Undeath
+Temporal Extortion
+Head Games
+Torrent of Souls
+Only Blood Ends Your Nightmares
+Nameless Race
+Plea for Power
+Vesuva
+Oath of Lieges
+Persecute Artist
+Freyalise's Winds
+Lake of the Dead
+Looming Spires
+The Great Aurora
+Deadly Allure
+Encroach
+Neck Snap
+Nomad Outpost
+Sudden Storm
+Rally the Forces
+Marble Chalice
+Cerebral Eruption
+March of the Returned
+Mind Unbound
+Guardian Idol
+Burst Lightning
+Cogworker's Puzzleknot
+Reality Spasm
+Day of Judgment
+Jinxed Ring
+Side to Side
+Profane Command
+Cursed Totem
+Whispering Madness
+Trip Wire
+Gift of Tusks
+Tomb of the Spirit Dragon
+New Benalia
+Battle Strain
+Culling the Weak
+Collective Brutality
+Wake of Destruction
+Naked Singularity
+Recover
+Incite War
+Reaping the Graves
+Spell Shrivel
+Vigorous Charge
+Twisted Justice
+Orcish Cannonade
+Induce Paranoia
+Political Trickery
+Glory of Warfare
+Maze of Ith
+Restock
+Cyclonic Rift
+Pyrohemia
+Exploration
+Peacekeeper Avatar
+Abzan Advantage
+Forbidden Ritual
+Molten Frame
+Pieces of the Puzzle
+Font of Mythos
+Crypt of Agadeem
+Funeral Pyre
+Void Shatter
+Still Life
+Elkin Bottle
+Kytheon's Tactics
+Ass Whuppin'
+Goblin token card
+Brainspoil
+Sacred Armory
+Aether Vial
+Font of Vigor
+Angelic Blessing
+Synthetic Destiny
+Wicked Reward
+Vile Consumption
+Why
+Overburden
+Angelic Purge
+Living Plane
+Hapatra's Mark
+Shrink
+Lightning Storm
+Rolling Earthquake
+Research
+Soul Barrier
+Rock Lobster
+Hold at Bay
+Mana Geyser
+Ghostly Visit
+Five-Alarm Fire
+Knowledge and Power
+Aerial Formation
+Warden of the Wall
+Reap the Seagraf
+Breach
+Ixidor's Will
+Aegis of Honor
+Viridescent Wisps
+Heaven
+Grave Strength
+Council's Judgment
+Choking Vines
+Eye of Ugin
+Reverence
+Molten Psyche
+Parallax Inhibitor
+Call the Skybreaker
+Razortip Whip
+Wing Snare
+Opt
+Obelisk of Grixis
+Harness the Storm
+Nacre Talisman
+Haunting Hymn
+Vitalize
+Bösium Strip
+Circle of Protection: Artifacts
+Prismatic Circle
+Tragic Slip
+Boon of Erebos
+Search for Survivors
+Cryptic Command
+Call
+Protomatter Powder
+Tower Above
+Fungal Sprouting
+Cold Snap
+Bad Moon
+Burnt Offering
+Circle of Protection: Shadow
+Gustha's Scepter
+Thought Hemorrhage
+Proposal
+Wind-Scarred Crag
+Deadly Wanderings
+Slime Molding
+Scour
+Lantern-Lit Graveyard
+Gruul Keyrune
+Primitive Justice
+Seismic Rupture
+Awaken the Sky Tyrant
+Icatian Town
+Boomerang
+Vessel of Malignity
+Trial of Strength
+Memory
+Lair Delve
+Shadowbane
+Terrain Generator
+Legion's Initiative
+Urborg Justice
+Neutralizing Blast
+Molten Birth
+Night Soil
+Radiant Purge
+Katabatic Winds
+Oath of Ajani
+Burst of Speed
+Pharika's Cure
+Demoralize
+Planar Birth
+Retreat to Kazandu
+Flow of Ideas
+Carom
+Naturalize
+Skulltap
+Renewing Touch
+Portent of Betrayal
+Tectonic Rift
+Servo Exhibition
+Outmaneuver
+Bloodletter Quill
+Parallectric Feedback
+Paper Tiger
+Quicksilver Geyser
+Brainstorm
+Venarian Glimmer
+The Iron Guardian Stirs
+Trap Essence
+Barbarian Ring
+False Dawn
+Dead Reckoning
+Common Cause
+Mages' Contest
+Presence of the Wise
+Fallen Angel Avatar
+Honor of the Pure
+Aim High
+Pull from Tomorrow
+Cateran Summons
+Phyrexian Splicer
+Honor the Fallen
+Grave Pact
+Unifying Theory
+Obscuring Aether
+Ricochet
+Divine Intervention
+Pollen Lullaby
+Roil Spout
+Soul Shred
+Humble
+Perilous Vault
+Lure of Prey
+Nightcreep
+Flight Spellbomb
+Thrill of the Hunt
+Draconian Cylix
+Atarka Monument
+The Pieces Are Coming Together
+Press for Answers
+Storm Seeker
+Ceremonious Rejection
+Heartless Summoning
+Tower Defense
+Seer's Vision
+Ratchet Bomb
+Shifting Loyalties
+Ground Assault
+Might of Old Krosa
+Virtue's Ruin
+Cephalid Coliseum
+Pain's Reward
+Serene Offering
+Saproling Symbiosis
+Vision Charm
+Annihilating Fire
+Energy Tap
+Green Mana Battery
+Staff of the Mind Magus
+Teetering Peaks
+Heroism
+Thoughtbind
+Unnatural Predation
+Puncturing Light
+Rakshasa's Secret
+Goblin Grenade
+Path of Peace
+Irradiate
+Jade Idol
+Defend the Hearth
+Reverberation
+Mind Bomb
+Regrowth
+War Dance
+Mass Appeal
+Bridge from Below
+Pegasus Refuge
+Steady Progress
+Force Bubble
+Paradigm Shift
+Implement of Ferocity
+Benevolent Offering
+Mana Flare
+Shared Triumph
+Arcum's Sleigh
+Well of Knowledge
+Twiddle
+Collateral Damage
+Blizzard
+Foreboding Ruins
+Fall
+Fault Line
+Phyrexian Unlife
+Statute of Denial
+Breeding Pit
+Cannibalize
+See Beyond
+Ghostly Flicker
+Breath of Dreams
+Reign of Chaos
+Curtains' Call
+Inspired Charge
+Standstill
+Skullscorch
+Struggle for Sanity
+Blustersquall
+Moat
+Unsummon
+Disdainful Stroke
+Thought Dissector
+Appetite for Brains
+Horizon Spellbomb
+Rouse the Mob
+Angelic Benediction
+Talon of Pain
+Conjurer's Bauble
+False Defeat
+Safewright Quest
+Stasis Snare
+Dormant Volcano
+Rhystic Scrying
+Controvert
+Death Ward
+Double Cross
+Chaos Charm
+Worldfire
+Scorched Ruins
+Scout's Warning
+Thieves' Auction
+Decimator Web
+Psychic Vortex
+Flood Plain
+Pyrokinesis
+Sultai Charm
+Delif's Cone
+Ruins of Trokair
+Obelisk of Urd
+Common Bond
+Ardent Plea
+Morbid Hunger
+Transmute Artifact
+Sphere of Grace
+Specter's Wail
+Furious Assault
+Aether Spellbomb
+War Chariot
+Birds of Paradise Avatar
+Brood Birthing
+Excoriate
+Mind Warp
+Storm Herd
+Pyromancer's Goggles
+Angel's Feather
+Flood
+Rofellos's Gift
+Sundial of the Infinite
+Spiritual Asylum
+Hydrosurge
+Unlicensed Disintegration
+Infinite Hourglass
+Opal Caryatid
+Ooze Flux
+Mental Discipline
+Clearwater Goblet
+Urza's Science Fair Project
+Plummet
+Bash to Bits
+Thran Foundry
+Living Armor
+Baku Altar
+Fire Covenant
+Just Fate
+Fastbond
+Heal
+Vessel of Endless Rest
+Rune of Protection: Black
+Blood
+Game Trail
+Fend Off
+Rewards of Diversity
+Rune of Protection: White
+Time Warp
+Boil
+Storm Cauldron
+Raiders' Spoils
+Skyline Cascade
+Tawnos's Wand
+Untamed Wilds
+Dreadship Reef
+Poison the Well
+Eladamri
+Flash Foliage
+Temporal Mastery
+Jaya Ballard Avatar
+Predatory Advantage
+Feeling of Dread
+Nest of Scarabs
+Harmless Assault
+Barbed Wire
+Floodwater Dam
+Eladamri, Lord of Leaves Avatar
+Pyrite Spellbomb
+Sandals of Abdallah
+Shoulder to Shoulder
+Time to Feed
+Dazzling Reflection
+Harm's Way
+Divine Reckoning
+Seraph Sanctuary
+Lash of the Whip
+Crossbow Ambush
+Sonic Seizure
+Teferi's Realm
+Downdraft
+Coldsteel Heart
+Certain Death
+Tropical Storm
+Wound Reflection
+Afiya Grove
+Knowledge Pool
+Brimstone Volley
+Opal Gargoyle
+Divine Offering
+Choked Estuary
+Titan Forge
+Skull of Ramos
+Surge of Strength
+Predator's Strike
+Pentad Prism
+Deep Analysis
+Glimpse of Nature
+Cornered Market
+Genesis Wave
+Ghoul's Feast
+Telim'Tor's Darts
+Bar the Door
+Stream of Acid
+Tree of Tales
+Memory Crystal
+Illuminate
+Devils' Playground
+Restrain
+Flame Burst
+Words of Wisdom
+Amass the Components
+Whirlpool Whelm
+Touch of Invisibility
+Ignite Disorder
+Subdue
+Enchantress's Presence
+Errand of Duty
+Hymn to Tourach
+Browbeat
+Lava Dart
+Truce
+Seal of Cleansing
+Fold into Aether
+Trickbind
+Heartstone
+Multani's Decree
+Sudden Reclamation
+Caged Sun
+Howl from Beyond
+Cenn's Enlistment
+Rumbling Aftershocks
+Deep Reconnaissance
+Unexpected Results
+Sisters of Stone Death Avatar
+Disembowel
+Divine Presence
+Duneblast
+Where Ancients Tread
+Orim's Cure
+Urza's Blueprints
+Meteor Blast
+Set Adrift
+Harmless Offering
+Ivory Tower
+Rescind
+Ventifact Bottle
+Aether Storm
+Mishra's Groundbreaker
+Ring of Renewal
+Disorient
+Brilliant Spectrum
+Salt Marsh
+Capture of Jingzhou
+Vial of Poison
+Deserted Temple
+Command Beacon
+Rite of Undoing
+Galvanic Blast
+Belbe's Portal
+Surging Flame
+Conch Horn
+Clockspinning
+Whalebone Glider
+Tawnos
+Barren Glory
+Well of Lost Dreams
+Finish
+Baton of Morale
+Talisman of Indulgence
+Swell of Growth
+Sivvi's Valor
+Life's Finale
+Wrench Mind
+Constant Mists
+Die Young
+Leyline of the Meek
+Dwarven Ruins
+Reins of Power
+Candelabra of Tawnos
+Volcanic Submersion
+Meteor Crater
+Gaea's Balance
+Manabond
+New Perspectives
+Forsaken Wastes
+Chalice of Death
+Grimoire of the Dead
+Warrior's Charge
+Karn
+Alley Evasion
+Denied!
+Expose Evil
+Rejuvenate
+Crumble
+Turn Aside
+Assault
+Panharmonicon
+Leonin Bladetrap
+Lightning Cloud
+Mangara's Tome
+Skyscribing
+Mesmeric Orb
+Time Stop
+Rebuild
+Decree of Pain
+Burden of Greed
+Darksteel Forge
+Hunt Down
+Mask of Intolerance
+Curse of Marit Lage
+Seeds of Innocence
+Massive Raid
+Star Compass
+Thirst for Knowledge
+Liliana's Mastery
+Razia's Purification
+Thwart
+Stir the Pride
+Remembrance
+Well of Ideas
+Moonhold
+Oath of Mages
+Stonewood Invocation
+Iron Will
+Spontaneous Combustion
+Death Grasp
+Glyph of Life
+Untaidake, the Cloud Keeper
+Regicide
+Misers' Cage
+Word of Binding
+Giant Fan
+Natural Balance
+Lightning Rift
+Falter
+Lead by Example
+Sultai Banner
+Mudhole
+Complicate
+Didgeridoo
+Insidious Dreams
+High Market
+Mark of Mutiny
+Venser's Journal
+Golgothian Sylex
+Inquisition
+Downhill Charge
+Nature Demands an Offering
+Part the Waterveil
+Vessel of Paramnesia
+Kruphix's Insight
+Book of Rass
+Graven Cairns
+Seal of Removal
+Start
+Holdout Settlement
+Broken Visage
+Error
+Feat of Resistance
+Chariot of the Sun
+Necromancer's Covenant
+Entrapment Maneuver
+Fist of Suns
+Scroll of the Masters
+Bulwark
+Wild Instincts
+Alter Reality
+Serve
+Mox Jet
+Battle at the Bridge
+Oversold Cemetery
+Hedonist's Trove
+Train of Thought
+Mana Matrix
+Hired Heist
+Heroes' Reunion
+Nantuko Monastery
+Powerstone Minefield
+Warning
+Ring of Ma'rûf
+Darigaaz's Charm
+Soul Net
+Temple of Silence
+Deadbridge Chant
+Exsanguinate
+Into the North
+Snow Mercy
+Juju Bubble
+Desperate Gambit
+Elven Cache
+Leyline of Vitality
+Lurking Predators
+Built to Last
+Authority of the Consuls
+Ghastly Discovery
+Strip Mine
+Larger Than Life
+Cathartic Reunion
+Hall of Triumph
+Spring Cleaning
+Reincarnation
+Wash Out
+Bazaar of Wonders
+Erase
+Chaos
+Fool's Tome
+Whiteout
+Brutal Expulsion
+Injury
+Momentous Fall
+Thelon's Chant
+Yawgmoth's Will
+Tread Upon
+Brutal Suppression
+Citanul Flute
+Indomitable Creativity
+Gaze of Justice
+Banishment Decree
+Veil of Birds
+Howltooth Hollow
+Orzhov Cluestone
+Force Away
+Due Respect
+Barter in Blood
+Enter the Infinite
+Hissing Quagmire
+Highland Weald
+Crown of Convergence
+Scent of Cinder
+Fascination
+Lifecraft Awakening
+Primal Rage
+Rolling Spoil
+Powerleech
+Sealed Fate
+Skycloud Egg
+Reap and Sow
+Do or Die
+River of Tears
+Gather the Townsfolk
+Natural Affinity
+Imps' Taunt
+Retribution
+Stasis
+Deathgrip
+Barbed Lightning
+Contamination
+Natural Obsolescence
+Expropriate
+Bone Harvest
+Rise
+Trumpet Blast
+Wrecking Ball
+Unstable Footing
+Font of Ire
+Homura's Essence
+Conversion Chamber
+Sudden Death
+Sands of Time
+Nomad Stadium
+Foul Orchard
+Death Pits of Rath
+Withering Gaze
+Mangara's Blessing
+When Fluffy Bunnies Attack
+Drain the Well
+Goblin Lore
+Clock of Omens
+Take Up Arms
+Tranquil Garden
+Weakstone
+Call to Arms
+Run Wild
+Mindslaver
+False Peace
+Geistflame
+Frantic Search
+Sacred Excavation
+Hidden Predators
+Abrupt Decay
+Temporal Spring
+Pyromancer's Assault
+Feint
+Fissure Vent
+Tranquil Grove
+Cephalid Shrine
+Dromar's Charm
+Krark-Clan Ironworks
+Rootborn Defenses
+Yawning Fissure
+Ethereal Guidance
+Hunger of the Howlpack
+Razorverge Thicket
+Fling
+Tooth of Ramos
+Deprive
+Coffin Purge
+Fertile Imagination
+Shamble Back
+Murder
+Reap What Is Sown
+Elven Rite
+Sanctified Charge
+Metalspinner's Puzzleknot
+Persecute
+Tendo Ice Bridge
+Sisay's Ring
+Acidic Dagger
+Rith, the Awakener Avatar
+Orim's Prayer
+Dragonlord's Prerogative
+Skullmead Cauldron
+Manalith
+Infest
+Kor Dirge
+March of the Machines
+Grisly Spectacle
+Discordant Dirge
+Lost Hours
+Polymorph
+Greven il-Vec
+Words of Waste
+Double Negative
+Twist Allegiance
+Wrack with Madness
+Righteous Confluence
+Island of Wak-Wak
+Field of Souls
+Lab Rats
+Hunting Wilds
+Goblin War Strike
+Scrying Glass
+Galestrike
+Vandalize
+Thawing Glaciers
+Blinding Spray
+Rough
+Chain of Vapor
+Grasp of Darkness
+Divine Light
+Fire
+Words of Wilding
+Waterwhirl
+Armed Response
+Amulet of Unmaking
+Mana Vortex
+Run
+Oblivion Ring
+Seething Song
+Gale Force
+Demonfire
+Flooded Grove
+Moment of Heroism
+Mikokoro, Center of the Sea
+Dosan's Oldest Chant
+Peak Eruption
+Parallax Tide
+Emissary's Ploy
+Mana Seism
+Ojutai's Command
+Ensnaring Bridge
+Suffocation
+Myr Incubator
+Reverse the Sands
+Death
+Heavy Fog
+Sky Diamond
+Metallurgic Summonings
+Glimpse the Sun God
+Heart of Bogardan
+Wrath of God
+Dirge of Dread
+Starfall
+Aether Tradewinds
+Mortal Flesh Is Weak
+Overmaster
+Brilliant Ultimatum
+Alchor's Tomb
+Elephant Graveyard
+From Beyond
+Cemetery Recruitment
+Ichor Slick
+Golgari Keyrune
+Search the City
+Myriad Landscape
+Outbreak
+Heart of Yavimaya
+Pulse of the Grid
+Crystal Spray
+Mind's Dilation
+Hidden Herd
+Caves of Koilos
+Dream Tides
+Samite Sanctuary
+Beacon of Destruction
+Back to Nature
+Cutthroat Maneuver
+Dimir Cluestone
+Telim'Tor's Edict
+Incendiary Command
+Profane Prayers
+Twinflame
+Jolt
+Psychic Spiral
+Sunken Hope
+Rhystic Circle
+Duh
+Crown of Doom
+Mind's Desire
+Zur's Weirding
+Misguided Rage
+Goblin Festival
+Khalni Heart Expedition
+Perilous Forays
+Close Quarters
+Mindswipe
+Gerrard
+Prying Questions
+Time Bomb
+Hidden Retreat
+Bathe in Light
+Storm World
+Annihilate
+Contagion
+View from Above
+Metallic Rebuke
+Cry of Contrition
+Teferi's Care
+Spirebluff Canal
+Citadel Siege
+Kaervek's Hex
+Crowd's Favor
+Accumulated Knowledge
+Feast of Flesh
+Fuel for the Cause
+Hoodwink
+Sprouting Vines
+Fiery Conclusion
+Jar of Eyeballs
+Stoke the Flames
+Prahv, Spires of Order
+Cathedral of War
+Ovinize
+Pillar Tombs of Aku
+Dirty
+Unstable Frontier
+Contingency Plan
+Crystal Rod
+Essence Drain
+Cloudshift
+Mardu Charm
+The Cheese Stands Alone
+Epic Struggle
+Defiant Strike
+Sulfurous Springs
+Evangelize
+Echoing Boon
+Goblin Assault
+Conjurer's Closet
+Throttle
+Whetstone
+Assembly Hall
+Piety
+Allay
+Think Twice
+Virtuous Charge
+Accelerate
+Telekinetic Bonds
+North Star
+Soul Conduit
+Inspiring Statuary
+Durable Handicraft
+Contradict
+Sosuke's Summons
+Sight Beyond Sight
+Willing
+Gravebind
+Staff of the Ages
+Pyrrhic Revival
+Feast of Blood
+Nightmarish End
+Exile into Darkness
+Orzhov Signet
+Ancient Spring
+Serra
+Brain Freeze
+Skull Rend
+Grave Betrayal
+Suicidal Charge
+Touch of Vitae
+Spin into Myth
+Colfenor's Plans
+Jeweled Bird
+Mirari
+Prism Ring
+Saproling Cluster
+Icy Prison
+Serpentine Spike
+Bubbling Cauldron
+Erhnam Djinn Avatar
+Planar Portal
+Hail Storm
+Triassic Egg
+Angel's Mercy
+Earth
+Takara
+Patrician's Scorn
+Raksha Golden Cub Avatar
+Flaying Tendrils
+Consulate Crackdown
+Roast
+Adventurers' Guildhouse
+Gossamer Chains
+Consume the Meek
+Splendid Genesis
+Venomous Vines
+Yawgmoth's Edict
+Misfortune
+Falling Star
+Genesis Chamber
+Phyrexian Arena
+Midnight Charm
+Angelic Voices
+Mox Sapphire
+Tainted Strike
+Apocalypse Chime
+Dolmen Gate
+Morbid Bloom
+Static Orb
+Isolation Zone
+Dense Canopy
+Iron Star
+Crumbling Vestige
+Snare the Skies
+Ghost Quarter
+Naya Panorama
+Wheel of Torture
+Double Stroke
+Super Secret Tech
+Devastate
+Leaf Arrow
+Mindstorm Crown
+Jace's Sanctum
+Flamebreak
+Thunderheads
+Cascade Bluffs
+Cumber Stone
+Welcome to the Fold
+Pyrotechnics
+Psychic Barrier
+Isolated Chapel
+Curse of Wizardry
+From the Ashes
+Circular Logic
+Arnjlot's Ascent
+Wave of Vitriol
+Maw of the Mire
+Honor-Worn Shaku
+Infiltrate
+Street Spasm
+Celestial Sword
+Scoured Barrens
+Cerebral Vortex
+Flametongue Kavu Avatar
+Bloodbond March
+Scarab of the Unseen
+Ray of Distortion
+Tooth and Claw
+Anvil of Bogardan
+Urborg, Tomb of Yawgmoth
+Mire's Toll
+Relic of Progenitus
+Hypochondria
+Merciless Eviction
+Cabal Pit
+Hoarder's Greed
+Rally the Righteous
+Abzan Banner
+Arc Lightning
+Weapon Surge
+Angelsong
+Whetwheel
+Illusionist's Gambit
+Arcane Laboratory
+Channel Harm
+Promise of Bunrei
+Monstrous Onslaught
+Descend upon the Sinful
+Mycosynth Wellspring
+Null Profusion
+Onyx Talisman
+Scour from Existence
+Trial of Zeal
+Kyren Toy
+Crystal Chimes
+Battery
+Twinstrike
+Statecraft
+Compelling Argument
+Shattered Dreams
+Rolling Stones
+Acid Rain
+Spoils of the Vault
+Censorship
+Approach of the Second Sun
+Presence of the Master
+Customs Depot
+Scent of Jasmine
+Prismatic Omen
+Elemental Augury
+Dramatic Reversal
+Firebolt
+Emmessi Tome
+Deathlace
+Verdant Succession
+Saproling Infestation
+Wurmcalling
+Visions
+Outwit
+Orim
+Karplusan Forest
+Aleatory
+Dictate of Heliod
+Erratic Explosion
+Mage-Ring Network
+Woodland Stream
+Hope Charm
+Unlikely Alliance
+Stolen Grain
+Paranoid Delusions
+Vicious Shadows
+Root Maze
+Remember the Fallen
+Quagmire
+Terra Eternal
+Pyrostatic Pillar
+Rock Slide
+Nightbird's Clutches
+Glacial Crevasses
+Collected Company
+Lurking Evil
+Shifting Sky
+Explosive Revelation
+Whims of the Fates
+Bite of the Black Rose
+Tombfire
+Fate Forgotten
+The Dead Shall Serve
+Pegasus Stampede
+Dimir Signet
+Lim-Dûl's Hex
+Blighted Woodland
+Spell Rupture
+Lifespark Spellbomb
+Time to Reflect
+Drafna's Restoration
+Staff of Nin
+Master Warcraft
+Farseek
+Bitter Revelation
+Wild Hunger
+Mana Maze
+Vitality Charm
+Taste of Paradise
+Catch
+Rogue's Passage
+Last Breath
+Pulse of the Fields
+Toil
+Submerged Boneyard
+Contested Cliffs
+Insight
+Long-Term Plans
+My First Tome
+Disperse
+Crater's Claws
+Cut
+Worldpurge
+Killing Glare
+Cauldron of Souls
+Overload
+Treetop Village
+Foresight
+Eerie Interlude
+Snake Pit
+Lich
+Reave Soul
+Sandwurm Convergence
+Pearl Shard
+Fall of the Titans
+Rats' Feast
+Advice from the Fae
+Ivory Crane Netsuke
+Bone Mask
+Interplanar Tunnel
+Renounce
+Izzet Boilerworks
+Lay of the Land
+Obelisk of Esper
+Dread of Night
+Avarice Totem
+Jace's Scrutiny
+Glorious Charge
+Rousing of Souls
+Inaction Injunction
+Wild Research
+Despotic Scepter
+Swords to Plowshares
+Svyelunite Temple
+Undercity Plague
+Boon Reflection
+Awakening
+Repopulate
+Goblin Game
+Spring of Eternal Peace
+Breathstealer's Crypt
+Fluctuator
+Freyalise's Radiance
+Malice
+Startled Awake
+Icequake
+Arm with Aether
+Chill
+Backslide
+Faces of the Past
+Worst Fears
+All Suns' Dawn
+Mystic Melting
+Dingus Egg
+Rooftop Storm
+Dawn to Dusk
+Think Tank
+Primal Order
+Divine Congregation
+Simulacrum
+Perilous Predicament
+Dark Intimations
+Thassa's Ire
+Harrow
+Forbidden Crypt
+Allied Strategies
+Pillar of Flame
+Raid Bombardment
+Nether Void
+Baleful Stare
+Mind Burst
+Devour in Shadow
+Waste Not
+Arcbond
+Necromantic Summons
+Bandage
+Phyrexian Totem
+Ponder
+Letter Bomb
+Pyroconvergence
+Diabolic Servitude
+Sakashima the Impostor Avatar
+Elvish Fury
+Unnatural Aggression
+Harsh Scrutiny
+Return to Battle
+Opulent Palace
+Seaside Haven
+Fortune's Favor
+Niveous Wisps
+Rouse
+Spitting Image
+Howling Fury
+Talisman of Impulse
+Nature's Panoply
+Feral Incarnation
+False Mourning
+Grisly Salvage
+Whirlermaker
+Rakshasa's Disdain
+Thopter Spy Network
+Brain Pry
+Spore Cloud
+Reap Intellect
+Devour Flesh
+Sun's Bounty
+Dusk
+Virulent Plague
+Parapet
+Time Sieve
+Maralen of the Mornsong Avatar
+Fated Conflagration
+Trigon of Rage
+Long Road Home
+Minds Aglow
+Tanglesap
+My Crushing Masterstroke
+Scrapheap
+Disappearing Act
+Tumble
+Squee's Revenge
+Prismatic Lens
+Calming Verse
+Mimic Vat
+Drake Haven
+Thunderclap
+Monkey Cage
+Flesh Allergy
+General's Regalia
+Extract
+Weird Harvest
+Riptide
+Forced Retreat
+Coerced Confession
+Nature Shields Its Own
+Obzedat's Aid
+Tolarian Winds
+Final Strike
+Sprout
+Undo
+Earthen Arms
+Predatory Focus
+Symbiotic Deployment
+Royal Assassin Avatar
+Burst of Energy
+Searing Blood
+Krenko's Command
+Engineered Explosives
+Flay
+Master of the Wild Hunt Avatar
+Aether Tide
+Quicksand
+Give
+Lava Tubes
+Dichotomancy
+Bottomless Vault
+Staff of the Sun Magus
+Dark Sphere
+Leshrac's Sigil
+Mirror Gallery
+Sigil Blessing
+Constricting Tendrils
+Remodel
+Wildest Dreams
+Temur Ascendancy
+Master the Way
+Replenish
+Mind Sludge
+An-Havva Township
+Argivian Restoration
+Accelerated Mutation
+Proclamation of Rebirth
+Cytoshape
+Crimson Wisps
+Murderous Redcap Avatar
+Yavimaya Hollow
+Chandra's Outrage
+Disenchant
+Reparations
+New Frontiers
+Precognition
+Sleight of Mind
+Chaotic Backlash
+Deliver
+Dromoka's Gift
+Solfatara
+Soratami Cloud Chariot
+Drag Down
+Gonti's Machinations
+Kamahl's Summons
+Bottomless Pit
+Bant Panorama
+Grim Tutor
+Kindle
+Grove of the Guardian
+Feast on the Fallen
+Bludgeon Brawl
+Oath of Lim-Dûl
+Carrion
+End Hostilities
+Inundate
+Downsize
+Hornet Sting
+Power Conduit
+Lotus Blossom
+Mana Bloom
+Triplicate Spirits
+Abzan Ascendancy
+Touch of Brilliance
+Fateful Showdown
+Vanquish the Foul
+Cryptwailing
+Bloodchief Ascension
+Consume Spirit
+Darkpact
+Fevered Convulsions
+Surreal Memoir
+Alive
+Ancestral Vision
+Teleport
+Rupture Spire
+Honorable Passage
+Spite
+Mesmeric Trance
+Urza's Bauble
+Land Tax
+Cradle to Grave
+Tribal Unity
+Moment's Peace
+Scapegoat
+Scorching Spear
+Hunting Pack
+Krosan Grip
+Akoum Refuge
+Morbid Curiosity
+Comet Storm
+Unnerve
+Mighty Emergence
+Trapmaker's Snare
+Oasis
+Seismic Stomp
+Bend or Break
+Burning Inquiry
+Dreams of the Dead
+Izzet Cluestone
+Squirrel Farm
+Vampire's Bite
+Jund Panorama
+Planar Outburst
+Manipulate Fate
+Feed the Machine
+Liquid Fire
+Stun
+Charm School
+Sphinx's Revelation
+Release
+Bog Down
+Memory Erosion
+Boom
+Squeeze
+Diversionary Tactics
+Demystify
+Cone of Flame
+Tendrils of Corruption
+Riding Red Hare
+Divergent Growth
+My Wish Is Your Command
+Relic Barrier
+Crippling Chill
+Rare-B-Gone
+Thorn of Amethyst
+Hysterical Blindness
+Bloodstained Mire
+Fertile Thicket
+Hindering Light
+Quest for the Goblin Lord
+Hidden Ancients
+Rekindled Flame
+Volrath's Dungeon
+Echoing Ruin
+Hint of Insanity
+Song of Blood
+Power Armor
+Silumgar's Scorn
+Champion's Victory
+Marchesa's Decree
+Circle of Solace
+Knighthood
+Worm Harvest
+Ring of Three Wishes
+Last Gasp
+Alliance of Arms
+Empty the Catacombs
+Anthem of Rakdos
+Pristine Talisman
+Scale of Chiss-Goria
+Rest for the Weary
+Harsh Mercy
+Keening Stone
+Iron Lance
+Summoner's Bond
+Goblin Warchief Avatar
+Archangel's Light
+Kavu Lair
+Time and Tide
+Dredge
+Fighting Chance
+Spell Pierce
+Alchemist's Refuge
+Brago's Favor
+Mental Misstep
+Roar of the Kha
+Dismal Failure
+Burning Cinder Fury of Crimson Chaos Fire
+Helm of Possession
+Grixis Charm
+Leonin Sun Standard
+One Dozen Eyes
+Become Immense
+Irrigation Ditch
+Dromoka's Command
+Psychic Purge
+Martyr's Cry
+Ashnod's Coupon
+Tourach's Chant
+Banefire
+Victimize
+Life Chisel
+Howl of the Horde
+Glyph of Delusion
+Mardu Banner
+Call of the Nightwing
+Descendants' Path
+City in a Bottle
+Earthcraft
+Ruby Medallion
+Remove
+Warping Wail
+Tranquil Thicket
+Zombie token card
+Necrogen Mists
+Turn the Tide
+Control of the Court
+Touch and Go
+Frenetic Efreet Avatar
+Dystopia
+Brittle Effigy
+Fated Intervention
+Decoction Module
+Maze of Shadows
+Vigean Intuition
+Scarab Feast
+Pithing Needle
+Earnest Fellowship
+Celestial Flare
+Staff of the Death Magus
+Dual Nature
+Dash Hopes
+Nykthos, Shrine to Nyx
+Burning Vengeance
+Sunscour
+Haunting Echoes
+Void Snare
+Stalking Stones
+Darksteel Ingot
+Magnetic Mountain
+Mark for Death
+Flying Carpet
+Spidersilk Armor
+Alms
+Corrupted Crossroads
+Mountain Valley
+Respite
+Backdraft
+Aphotic Wisps
+Druid's Deliverance
+Gilt-Leaf Palace
+Hall of the Bandit Lord
+Nostalgic Dreams
+Temple of Malady
+Cruel Bargain
+Cleansing Beam
+Eaten by Spiders
+Necropotence
+Metallic Mastery
+Release the Ants
+Ashnod's Altar
+Scars of the Veteran
+Divert
+Unexpectedly Absent
+Glorious Anthem
+Pyramid of the Pantheon
+Call the Bloodline
+Havoc
+Erase (Not the Urza's Legacy One)
+Primeval Light
+Nissa's Pilgrimage
+Call of the Conclave
+Growth Spasm
+Battlewise Valor
+Profound Journey
+Jade Statue
+Dismantling Blow
+Last Laugh
+Psionic Blast
+Grim Monolith
+Rescue
+Overwhelming Denial
+Make Mischief
+Sinister Concoction
+Rocky Tar Pit
+Marshaling the Troops
+Ior Ruin Expedition
+Treasured Find
+Elephant Ambush
+Braingeyser
+Full Moon's Rise
+Energy Flux
+Mogg Salvage
+War Barge
+Crystal Vein
+Away
+Reinforcements
+Meditation Puzzle
+Darkblast
+Tolaria West
+Spellweaver Helix
+Staff of Zegon
+Anointed Procession
+Monsoon
+Volcanic Spray
+Worldknit
+Worry Beads
+Concerted Effort
+Raze
+Gleemax
+Fade Away
+Red Sun's Zenith
+Killing Wave
+Mox Emerald
+Eyes of the Watcher
+Vengeance
+Disturbing Plot
+Weight Advantage
+Pursuit of Knowledge
+Silumgar Monument
+Dragon Fodder
+Syphon Life
+Mobilization
+Blessed Wine
+Phage the Untouchable Avatar
+Upwelling
+Oblivion Strike
+Putrefaction
+Self-Inflicted Wound
+Invoke the Firemind
+Noxious Revival
+Dark Betrayal
+Reprocess
+Granulate
+Every Hope Shall Vanish
+Basalt Monolith
+Celestial Convergence
+Necropotence Avatar
+Taunt
+Look Skyward and Despair
+Wing Storm
+Sunstone
+Entangling Trap
+Blaze of Glory
+Turn
+Suffer the Past
+Counterspell
+Chimeric Staff
+Suppression Field
+Worldly Counsel
+Start Your Engines
+Granny's Payback
+Stormbind
+Surprise Deployment
+Batwing Brume
+May Civilization Collapse
+Three Wishes
+Lava Storm
+Sliver Hive
+Excavator
+Burn Away
+Aluren
+Engulf the Shore
+Profit
+Multani
+Day of the Dragons
+Ruthless Disposal
+Vines of the Recluse
+Soul Exchange
+Seashell Cameo
+Rust
+Shadow of the Grave
+Scrounge
+Ebony Charm
+Devastation Tide
+Shrine of Boundless Growth
+Mind Spring
+Clairvoyance
+Dust Bowl
+Bolt of Keranos
+Feldon's Cane
+Mirror of Fate
+Arcane Lighthouse
+Doubling Chant
+Acorn Harvest
+Fragmentize
+Gloomlance
+Surge Node
+Final Revels
+Peace and Quiet
+Hex
+Chaosphere
+Haakon, Stromgald Scourge Avatar
+Glyph of Reincarnation
+Mirror Entity Avatar
+Landfill
+Squirrel token card
+Convalescence
+Veiled Serpent
+Ad Nauseam
+Pulse of the Tangle
+Might Beyond Reason
+Elephant Resurgence
+Shrivel
+Concealed Courtyard
+Swirl the Mists
+Disentomb
+Commune with the Gods
+Heartwood Shard
+Story Circle
+Meekstone
+Opposition
+Evolution Charm
+Garbage Fire
+Temple of Deceit
+In Oketra's Name
+Candles of Leng
+Scald
+Blasted Landscape
+Exert Influence
+Steam Blast
+Recuperate
+Treasure Cruise
+Karmic Justice
+Great Defender
+Runic Repetition
+Soothsaying
+Foster
+Flicker
+Updraft
+Chaotic Aether
+Reality Strobe
+Pernicious Deed
+Faithless Looting
+Behold the Power of Destruction
+Retribution of the Ancients
+Orb of Dreams
+Epic Experiment
+Urban Evolution
+Ruination
+Grasslands
+Blinkmoth Well
+Tower of Calamities
+Mystifying Maze
+B.F.M. (Big Furry Monster)
+Desert Twister
+Energy Chamber
+Savage Beating
+Kari Zev's Expertise
+Urza's Armor
+Look at Me, I'm the DCI
+Energy Bolt
+Sound the Call
+Savage Alliance
+Ashnod's Transmogrant
+Enlightened Tutor
+"Ach! Hans, Run!"
+Synchronized Strike
+Opal Archangel
+Leave No Trace
+Consuming Vapors
+Altar of Dementia
+Mana Severance
+Gerrard's Battle Cry
+Spawning Breath
+Reign of Terror
+Titania's Song
+Bronze Tablet
+Surrender Your Thoughts
+Karn's Touch
+Rotted Ones, Lay Siege
+Liquify
+Spawning Bed
+Eye Gouge
+Jaded Response
+Stranglehold
+Fervent Charge
+One with Nothing
+Memory Plunder
+Tormod's Crypt
+Benediction of Moons
+Inquisition of Kozilek
+Hymn of the Wilds
+Heal the Scars
+Sever Soul
+Balance
+Erratic Portal
+Reduce to Dreams
+Defy Death
+Turn to Frog
+Valorous Stance
+Behold the Beyond
+Kin-Tree Invocation
+Fervor
+Cached Defenses
+Tawnos's Coffin
+Symbiosis
+Jace's Ingenuity
+Glimmer of Genius
+Serpent's Gift
+Clear
+Painful Lesson
+Predict
+Ugin's Insight
+Orzhov Keyrune
+The Very Soil Shall Shake
+Endemic Plague
+Worship
+Harrowing Journey
+Captive Flame
+Prodigal Sorcerer Avatar
+Myr Turbine
+Geth's Grimoire
+Library of Alexandria
+Seek the Horizon
+Territorial Dispute
+Chains of Mephistopheles
+Cleansing Meditation
+March of Souls
+Brushland
+Mind Slash
+Carbonize
+Make a Wish
+Arc Blade
+Gemstone Caverns
+Adriana's Valor
+Carrion Call
+Offering to Asha
+Braids, Conjurer Adept Avatar
+Reroute
+Endbringer's Revel
+Destructive Revelry
+Slayers' Stronghold
+Ordered Migration
+Whirlwind
+Look at Me, I'm R&D
+Palace Siege
+Thespian's Stage
+Vitalizing Cascade
+Death's Caress
+Incite Hysteria
+Megrim
+In the Eye of Chaos
+Wind Sail
+Norn's Annex
+Wolfcaller's Howl
+Wrap in Vigor
+Celestial Purge
+Corrupted Resolve
+Muzzio's Preparations
+Privileged Position
+Revel of the Fallen God
+Nissa's Revelation
+Crumble to Dust
+Winterflame
+Death Cloud
+Tariff
+Petrified Field
+Trash for Treasure
+Demon's Grasp
+Fevered Visions
+Brute Force
+Balm of Restoration
+Sarkhan's Rage
+Staff of the Flame Magus
+Riding the Dilu Horse
+Infuse with the Elements
+Lightning Surge
+Silumgar's Command
+Dwarven Hold
+Daze
+The Fate of the Flammable
+Coordinated Barrage
+Dual Shot
+Sleep
+Proteus Staff
+Ritual of the Machine
+Deflection
+Assert Authority
+Death or Glory
+Decommission
+Flash Conscription
+Dutiful Return
+Khalni Garden
+Glare of Heresy
+Dread Charge
+Retreat to Hagra
+Limits of Solidarity
+Exotic Disease
+Sure Strike
+Mirror Match
+Staying Power
+Beast Attack
+Threaten
+Thran Forge
+Simic Keyrune
+Scrying Sheets
+Heat of Battle
+Paradoxical Outcome
+Viridian Zealot Avatar
+Akroma, Angel of Wrath Avatar
+Jinxed Idol
+Implements of Sacrifice
+Sinkhole
+Ancient Tomb
+Moonmist
+Seismic Strike
+Canopy Surge
+Parallel Lives
+Crawling Sensation
+I'm Rubber, You're Glue
+Wake the Dead
+Borrowed Hostility
+Rune Snag
+Turnabout
+Essence Bottle
+Hive Mind
+Backlash
+Retract
+Overwhelming Intellect
+Dwarven Shrine
+I Call on the Ancient Magics
+Exquisite Blood
+Circle of Flame
+Slice and Dice
+Mogg Infestation
+Wanderwine Hub
+Rugged Highlands
+Elixir of Immortality
+Evil Presents
+Cast Out
+Cultivate
+Fountain of Cho
+Exile
+Parallel Evolution
+Sphere of Safety
+Vivisection
+Knight Watch
+Stensia Banquet
+Double Play
+Blood Clock
+Pit Fight
+Lost in the Woods
+Putrefy
+Feast or Famine
+Memory's Journey
+Swiftwater Cliffs
+Flamekin Village
+Time Stretch
+Overrule
+Selesnya Charm
+Wooded Bastion
+Dwell on the Past
+Gaea's Might
+Fevered Strength
+Darksteel Brute
+Surging Dementia
+Prototype Portal
+Mirri
+Rise from the Tides
+Simic Signet
+Boros Signet
+Last Stand
+Dakkon Blackblade Avatar
+Mishra
+Djeru's Resolve
+Mental Agony
+Scrambleverse
+Syncopate
+Eternity Vessel
+Kyren Archive
+Angelic Chorus
+Summoning Station
+The Rack
+Warstorm Surge
+Protective Sphere
+Sweltering Suns
+Bewilder
+Fury of the Horde
+Malignant Growth
+Seasons Past
+Cavern of Souls
+Planar Despair
+Mana Crypt
+Subtle Strike
+Disturbed Burial
+Maelstrom Pulse
+Bond of Agony
+Shambling Vent
+Witness the End
+Crosswinds
+Krosan Reclamation
+Manifold Insights
+Cabal Coffers
+Burning Sands
+Simic Charm
+Unerring Sling
+Favorable Winds
+Sylvan Echoes
+Daring Demolition
+Zektar Shrine Expedition
+Celestial Dawn
+Pulse of Llanowar
+Flesh
+Daxos's Torment
+Spell Blast
+Flames of the Firebrand
+Fade from Memory
+Saving Grasp
+Pale Moon
+Gruul Signet
+Cruel Entertainment
+Skull Catapult
+Fistful of Force
+Ancient Amphitheater
+Narrow Escape
+Quest for Ancient Secrets
+Lifegift
+Thopter Arrest
+Mana Clash
+Douse
+Pyromania
+Survival Cache
+Mind Swords
+Dreamstone Hedron
+Urge to Feed
+Astral Steel
+Wildfield Borderpost
+Searing Touch
+Saprazzan Skerry
+Fodder Cannon
+By Force
+Eladamri's Call
+Game Preserve
+Infernal Harvest
+Refurbish
+Orzhov Charm
+War's Toll
+Tower of the Magistrate
+Tear
+Secrets of the Dead
+Lost in a Labyrinth
+Last Kiss
+Divergent Transformations
+Imperial Seal
+Grim Affliction
+Wipe Away
+Skull Fracture
+Library of Lat-Nam
+Imi Statue
+Sylvan Reclamation
+My Genius Knows No Bounds
+Who
+Summer Bloom
+Energy Field
+Reward the Faithful
+Mind Sculpt
+Fumigate
+Death Wish
+Culling Dais
+Chromatic Star
+Chainer's Edict
+Reality Hemorrhage
+Dragonscale Boon
+Implode
+Beckon Apparition
+Advantageous Proclamation
+Aggravated Assault
+Scroll of Origins
+Boiling Blood
+Extinction
+Seer's Lantern
+Magnetic Flux
+Grim Harvest
+Alchemist's Vial
+Ice Storm
+Catalyst Stone
+Trickery Charm
+Null Brooch
+Mirror Mirror
+Lava Axe
+Skyshroud Forest
+Trait Doctoring
+Entering
+Gitaxian Probe
+Volrath's Stronghold
+Enduring Renewal
+Hypergenesis
+Blast of Genius
+Kaervek's Torch
+Autumn's Veil
+Violent Eruption
+Berserk
+Mightstone
+Lavalanche
+Jagged Lightning
+Catastrophe
+Skycloud Expanse
+Circle of Protection: Red
+Irresistible Prey
+Shadowfeed
+Bereavement
+Acrobatic Maneuver
+Hidetsugu's Second Rite
+Sheltered Valley
+Rout
+Defensive Formation
+Hunter's Insight
+Quash
+Spectral Reserves
+Assassin's Blade
+Blessed Reincarnation
+Aladdin's Ring
+Psychotic Fury
+Smash
+Serrated Arrows
+Fatal Blow
+Illness in the Ranks
+Soul Strings
+Back to Basics
+Glamerdye
+Desperate Charge
+Eon Hub
+Hindervines
+Circle of Despair
+Necro-Impotence
+Sacred Rites
+Shinka, the Bloodsoaked Keep
+Knowledge Vault
+Mysteries of the Deep
+Volcanic Rush
+Inspiring Vantage
+Kresh the Bloodbraided Avatar
+Arcum's Weathervane
+Chimeric Sphere
+Revelsong Horn
+Shapeshifter's Marrow
+Reality Shift
+Resounding Roar
+Torpor Orb
+River's Grasp
+Centaur Garden
+Oppression
+Defiant Stand
+City of Ass
+Order of Succession
+Dark Tutelage
+Rite of Replication
+Detention Sphere
+Charmed Pendant
+Festergloom
+Eye of Ramos
+Sorcerer's Strongbox
+Gift of Estates
+Rally the Horde
+Captain's Maneuver
+Repentance
+Sphere of Truth
+Jokulhaups
+Force Void
+Mindculling
+Riptide Laboratory
+Coalition Victory
+Hit
+Rite of the Raging Storm
+Secret Summoning
+Phyrexian Vault
+Anger of the Gods
+Spell Crumple
+Vitalizing Wind
+Colossal Heroics
+Pinpoint Avalanche
+Outpost Siege
+Blessed Wind
+Chemister's Trick
+Kindled Fury
+Jungle Shrine
+Essence Backlash
+Flash Counter
+Rush of Knowledge
+Rally
+Glorious End
+Rabid Bite
+Future Sight
+Planar Void
+Sunbringer's Touch
+Cinder Marsh
+Undertow
+Pollen Remedy
+Fiery Temper
+Counterintelligence
+Chaos Moon
+Tezzeret's Gambit
+Fated Retribution
+Trigon of Corruption
+Might of the Nephilim
+Zendikar Resurgent
+Gallantry
+Hold the Perimeter
+Angel's Grace
+Temporal Trespass
+Levitation
+Well of Life
+Convalescent Care
+Delusions of Mediocrity
+Tablet of the Guilds
+An-Havva Inn
+Assemble the Legion
+Druidic Satchel
+Rapid Decay
+Crown of Empires
+Enlarge
+Sudden Strength
+Highspire Infusion
+Afterlife
+Dega Sanctuary
+Measure of Wickedness
+Scrap Mastery
+Mirrodin's Core
+Devastation
+Perish the Thought
+Invigorated Rampage
+Prosperity
+Opal Avenger
+Jalum Tome
+Intimidation
+Dig Through Time
+Excavation
+Stony Silence
+Deathreap Ritual
+Midnight Haunting
+Animal Magnetism
+Implement of Combustion
+Circle of Protection: Art
+Pyroclasm
+Attrition
+Glint Hawk Idol
+Kuon's Essence
+Beacon of Creation
+Urza's Filter
+Nuisance Engine
+Galvanic Bombardment
+Mind Shatter
+Mystical Tutor
+Boulder Salvo
+Thelon's Curse
+Serene Sunset
+Hanna's Custody
+Glint
+Thought Reflection
+Coral Helm
+Shelldock Isle
+Waterveil Cavern
+Wild Evocation
+Izzet Keyrune
+Esper Charm
+Untamed Might
+Sickening Dreams
+Mind's Eye
+False Memories
+Epicenter
+Seismic Shudder
+Opal Champion
+Lead
+Obsessive Search
+Collective Effort
+Golden Wish
+Martial Glory
+Misstep
+Chorus of Woe
+Malfegor Avatar
+Shadows of the Past
+Night of Souls' Betrayal
+Wring Flesh
+Ivory Charm
+Preferred Selection
+Selenia
+Port Town
+Ash Barrens
+Warriors' Lesson
+Serra's Liturgy
+Empty the Warrens
+Ray of Revelation
+Skred
+Narcissism
+Rod of Ruin
+Hubris
+Rain of Daggers
+Wander in Death
+Volrath's Motion Sensor
+Sol Ring
+Crypsis
+City of Shadows
+Balduvian Trading Post
+Psychic Miasma
+Shattering Spree
+Metrognome
+Covenant of Blood
+Hunting Grounds
+Crippling Fatigue
+Gridlock
+Pistus Strike
+Heat Shimmer
+Winter's Night
+Grand Melee
+Nighthaze
+Mental Note
+Leyline of Lifeforce
+Purelace
+Minamo, School at Water's Edge
+Land Cap
+Builder's Blessing
+Mystic Meditation
+Scout the Borders
+Domineering Will
+Verdant Catacombs
+Ravages of War
+Vision Skeins
+Raging River
+Exhume
+Seek
+Esper Panorama
+Tainted Isle
+Dynacharge
+Zombie Infestation
+Extraplanar Lens
+Vessel of Ephemera
+Gloomwidow's Feast
+Dream Chisel
+Contract from Below
+Teferi's Response
+Crystal Ball
+Hydroform
+Engineered Might
+Necrobite
+Coax from the Blind Eternities
+Boundless Realms
+Rend Spirit
+Scapeshift
+Battle Screech
+Smokestack
+Chilling Grasp
+Lich's Mirror
+Talara's Bane
+Ghostfire
+Divine Verdict
+Assault Formation
+Sand Silos
+Skywhaler's Shot
+Door to Nothingness
+Valor Made Real
+Grixis Panorama
+Commit
+Winds of Change
+Marsh Flats
+Twinning Glass
+Brush with Death
+Inventors' Fair
+Cellar Door
+Fortuitous Find
+Reverent Silence
+Oath of the Ancient Wood
+Caldera Lake
+Lightning Blast
+Mountain Stronghold
+Ancient Excavation
+Goblin Offensive
+Oath of Ghouls
+Incite
+First Come, First Served
+Luminarch Ascension
+Eye of Yawgmoth
+Astrolabe
+Cradle of Vitality
+Coercive Portal
+Safe Passage
+Mindstab
+Rain of Thorns
+Creeping Mold
+Spinning Darkness
+Dakmor Salvage
+Seal of Strength
+Urza's Hot Tub
+Gate to the Afterlife
+Angelheart Vial
+Sphere of Resistance
+Reviving Vapors
+Wandering Fumarole
+Whip of Erebos
+Hurly-Burly
+Dictate of the Twin Gods
+Torch Song
+Disempower
+Kiss of Death
+Infernal Darkness
+Nature's Blessing
+Shred Memory
+Act of Authority
+Sejiri Refuge
+Cease-Fire
+Rewind
+Torrent of Fire
+Ephemeral Shields
+Foil
+Boompile
+Aether Hub
+Barl's Cage
+Bile Blight
+Ebony Horse
+Hidden Gibbons
+Guttural Response
+Oboro, Palace in the Clouds
+Temple of Triumph
+Meteor Shower
+Army of the Damned
+Hibernation's End
+Incendiary Dissent
+Switcheroo
+Unknown Shores
+Howl of the Night Pack
+Infernal Tribute
+Null Chamber
+Melee
+Ivory Mask
+Ulvenwald Mysteries
+Piracy
+Reset
+Granite Shard
+Serene Remembrance
+Snakeform
+Sheep token card
+Eightfold Maze
+Lava Blister
+Puncture Blast
+Hand to Hand
+Thran Turbine
+Vedalken Shackles
+Mana Drain
+Vernal Bloom
+Echoing Decay
+Soldevi Excavations
+Ice Floe
+Aura Blast
+Ruins of Oran-Rief
+Talrand's Invocation
+Vertigo
+Hidden Guerrillas
+Defensive Maneuvers
+Rakdos's Return
+Call of the Herd
+Fiery Bombardment
+Kindle the Carnage
+Temple of Malice
+Gruul Charm
+Ghastly Demise
+Predatory Rampage
+Iron Maiden
+Greater Realm of Preservation
+Electrickery
+Frightful Delusion
+Haze of Pollen
+Tarnished Citadel
+Volrath's Gardens
+Memory Sluice
+Thoughtcast
+Shielded Passage
+Frontier Siege
+Celestial Colonnade
+Fountain of Youth
+Serra's Hymn
+Jester's Mask
+Refresh
+Hunt the Hunter
+Undermine
+Teferi's Isle
+Bottle of Suleiman
+Sphere of Law
+Tolarian Academy
+Atarka's Command
+Psychic Rebuttal
+Mizzium Transreliquat
+Return to the Ranks
+Skyreaping
+Glaring Spotlight
+Shivan Oasis
+Fungal Bloom
+Insidious Will
+Camouflage
+Martyr's Bond
+Seeds of Strength
+Repercussion
+Weight of Spires
+Hardened Scales
+Sheer Drop
+Cunning Wish
+Root Out
+Phyrexian Etchings
+Leyline of Lightning
+Geothermal Crevice
+Tandem Tactics
+Stand or Fall
+Wurm's Tooth
+Goblin Warrens
+Tidal Surge
+Deadlock Trap
+Venomous Breath
+Anoint
+Miscalculation
+Psychic Network
+Furious Resistance
+Burgeoning
+Turn to Dust
+Golem Foundry
+Vault Skyward
+Jovial Evil
+Cruel Ultimatum
+Time Spiral
+Return to Dust
+Boros Charm
+Sphinx's Tutelage
+Vivid Crag
+Necrologia
+Name Dropping
+Nature's Ruin
+Sheltering Word
+Kamahl's Sledge
+Soaring Seacliff
+Never
+Ruthless Instincts
+Haunted Fengraf
+Vault of the Archangel
+Molten Influence
+Figure of Destiny Avatar
+Transmutation
+Inexorable Tide
+Strangling Soot
+Breaking
+Which of You Burns Brightest?
+Melting
+Idyllic Tutor
+Deglamer
+Decimate
+Return
+Necra Sanctuary
+Burn
+Gerrymandering
+Gather the Pack
+Meteorite
+Gilded Light
+Glimpse the Future
+Warmth
+Save Life
+Talisman of Unity
+Worn Powerstone
+Lat-Nam's Legacy
+Superior Numbers
+Eureka
+Horizon Canopy
+Nourish
+Mortiphobia
+Lotus Vale
+Throne of Bone
+Launch Party
+Dimensional Breach
+Moment of Silence
+Oath of Chandra
+Convolute
+Unmake
+Zombie Apocalypse
+Aerial Maneuver
+Vicious Hunger
+Flock of Rabid Sheep
+Mage's Guile
+Planewide Disaster
+Jandor's Saddlebags
+Silk Net
+Duress
+Searing Meditation
+Life's Legacy
+Dromoka Monument
+Sultai Ascendancy
+Onward
+Heat Stroke
+Expunge
+Wild Might
+Dramatic Entrance
+Prismatic Strands
+Detonate
+Judge Unworthy
+Act of Treason
+Rivals' Duel
+Overgrown Estate
+Primal Growth
+Oath of Gideon
+Reprisal
+Explosive Impact
+Tel-Jilad Stylus
+Commando Raid
+Deadly Designs
+Boiling Seas
+Lightning Bolt
+Rags
+Rubble
+Prophecy
+Trailblazer
+Trostani's Judgment
+Quenchable Fire
+Baneful Omen
+Ugin's Nexus
+Tahngarth
+Off Balance
+Bounty of the Hunt
+Mind Funeral
+Gild
+Head to Head
+Riddle of Lightning
+Recurring Nightmare
+Inspiration
+Serra's Blessing
+Day
+Braid of Fire
+Illusions of Grandeur
+Purify
+Thunderblade Charge
+Lumithread Field
+Rebuking Ceremony
+Peregrination
+Timber Gorge
+Life from the Loam
+Ostracize
+Explosive Apparatus
+Wallop
+Azorius Ploy
+Natural Unity
+Winds of Rebuke
+Woodcutter's Grit
+Your Fate Is Thrice Sealed
+Suffering
+Shrouded Lore
+Thran Weaponry
+Memory Jar
+Drown in Sorrow
+Ancient Den
+Kuldotha Rebirth
+Tornado
+Stabbing Pain
+Solemn Offering
+Schismotivate
+Thunderstaff
+Cataclysm
+Might Makes Right
+Bestial Menace
+Shard Convergence
+Aether Gale
+Disallow
+Golgari Signet
+Careful Study
+Shadowstorm
+Morinfen Avatar
+Fog
+Vex
+Momir Vig, Simic Visionary Avatar
+Sleight of Hand
+Hecatomb
+Seal of the Guildpact
+Aura Shards
+Mayael's Aria
+Fight or Flight
+Eye of Doom
+Mox Opal
+Stir the Grave
+Ice Cauldron
+Ghostly Flame
+Gainsay
+Chromatic Lantern
+Put Away
+Soul's Majesty
+Mirrorweave
+Brand
+Get a Life
+Zephyr Charge
+Meishin, the Mind Cage
+Dispersal Shield
+Dance of the Skywise
+Awakening Zone
+Ghitu War Cry
+Ever After
+Counterflux
+Power Matrix
+Memory Lapse
+Tormented Thoughts
+Sol Grail
+Despise
+Stabilizer
+Scroll Rack
+Telling Time
+Falling Timber
+Banishing Knack
+Toil to Renown
+Morgue Burst
+Natural State
+Renewed Faith
+Fetid Heath
+Monomania
+Nightmare Void
+Devout Invocation
+Ajani's Aid
+Séance
+Solidarity of Heroes
+Water Gun Balloon Game
+Rakdos Keyrune
+Send to Sleep
+Vibrating Sphere
+Needle Spires
+Moonring Mirror
+Mystic Confluence
+Traverse the Ulvenwald
+Volcanic Awakening
+Chronatog Totem
+Reliquary Tower
+Symbol Status
+Deft Dismissal
+Seize the Day
+Great Wall
+Surging Aether
+Personal Tutor
+Ashnod's Cylix
+Spark of Creativity
+Solar Tide
+Stupor
+Teferi's Moat
+About Face
+Fortified Village
+Tears of Rage
+Krark's Thumb
+Dream Cache
+Screaming Fury
+Larceny
+Golgari Germination
+Banishing Stroke
+Purge
+Auger Spree
+Conservator
+Phyrexian Rebirth
+Brace for Impact
+Lost in the Mist
+Staff of Domination
+Clinging Mists
+Raven's Crime
+Wistful Thinking
+Rebuff the Wicked
+Fracturing Gust
+Mercadian Lift
+Plasm Capture
+Cinder Cloud
+Molten Rain
+Magmatic Insight
+Wielding the Green Dragon
+Cackling Flames
+Radiant Flames
+Arcum's Whistle
+Harsh Judgment
+Coastal Tower
+Spear of Heliod
+Stop That
+Ancestral Tribute
+Withdraw
+Frantic Purification
+Dampening Pulse
+Flowstone Surge
+Timesifter
+Rise of the Hobgoblins
+Horribly Awry
+False Cure
+Tremble
+Hair-Strung Koto
+Sun Droplet
+Goblin War Cry
+Eliminate the Competition
+Divine Sacrament
+Soulcatchers' Aerie
+Blessings of Nature
+Lead the Stampede
+Sonic Burst
+Meditate
+Sacred Mesa
+Sylvan Tutor
+Silence the Believers
+Phyrexian Purge
+Chaos Warp
+Mass Mutiny
+Rain of Tears
+Eyeblight Massacre
+Mnemonic Nexus
+Circle of Protection: Black
+Flameshadow Conjuring
+Stomping Slabs
+Slay
+Pillar of Light
+Malevolent Whispers
+Earthlink
+Lifetap
+Eight-and-a-Half-Tails Avatar
+Dakmor Plague
+Vedalken Orrery
+Trapfinder's Trick
+Suffocating Blast
+Parting Thoughts
+Snuff Out
+Disorder
+Bloodstone Cameo
+Nothing Can Stop Me Now
+Mirror Strike
+Crypt Incursion
+Simple
+Savage Summoning
+Karona, False God Avatar
+Collective Defiance
+Thassa's Bounty
+Call to the Grave
+Morningtide
+Fatal Lore
+Pact of the Titan
+Rage Reflection
+Limited Resources
+Noble Purpose
+Troll-Horn Cameo
+Tangle Wire
+Lash Out
+Angel's Trumpet
+Worldly Tutor
+Devil's Play
+Crush of Tentacles
+Stave Off
+Deathmark
+Grindclock
+Ride Down
+Act of Aggression
+Murderous Compulsion
+Barrin
+Graphic Violence
+Equipoise
+Kjeldoran War Cry
+Dark Banishing
+Essence Filter
+Seismic Assault
+Traitorous Blood
+Protect
+Onyx Goblet
+Thassa's Rebuff
+Razor Pendulum
+Powder Keg
+Ritual of Subdual
+Wild Swing
+Planeswalker's Fury
+Evolving Wilds
+Parallax Nexus
+Drastic Revelation
+Shivan Harvest
+Seize the Initiative
+Lurking Skirge
+Fiery Gambit
+Mox Lotus
+Peer Pressure
+Rack and Ruin
+Boseiju, Who Shelters All
+Pull from Eternity
+Blood Tithe
+Shrine of Limitless Power
+Seed the Land
+Dragon Appeasement
+Tromp the Domains
+Rusted Relic
+Paliano, the High City
+Ambiguity
+Pack's Disdain
+Loss
+Aura Flux
+Choking Sands
+Hidden Path
+Clutch of the Undercity
+Hellion Crucible
+Punish the Enemy
+Hidden Spider
+Gix
+Twin Bolt
+Hieroglyphic Illumination
+Conjurer's Ban
+Castle Sengir
+Realms Befitting My Majesty
+Destroy the Evidence
+Tapestry of the Ages
+Calculated Dismissal
+Farewell to Arms
+Kill! Destroy!
+Deserter's Quarters
+Sunder
+Rhonas's Monument
+Geist Snatch
+Claws of Wirewood
+Winnow
+Electrify
+Explosive Growth
+Temple of Abandon
+Wretched Banquet
+Standardize
+Firemind's Foresight
+Lay Waste
+Tremor
+Zuran Orb
+Quest for Renewal
+Stand
+Flooded Strand
+Bedlam
+Blood Mist
+Dark Dabbling
+Ertai's Meddling
+Vicious Betrayal
+Submerge
+Mirari's Wake
+Transguild Promenade
+Blackmail
+Lyev Decree
+Darksteel Citadel
+Craterize
+Sylvan Might
+Titan's Strength
+Shrieking Affliction
+Dwarven Song
+Tainted Wood
+Skyshaper
+Strongarm Tactics
+Planar Chaos
+Icy Blast
+Glyph of Destruction
+Summary Dismissal
+Frost Marsh
+Sarpadian Empires, Vol. VII
+Tyrant's Machine
+Valorous Charge
+Implement of Malice
+Whim of Volrath
+Swell of Courage
+Frost Breath
+Ice
+Ready
+Shield Wall
+Snapback
+Soulblast
+Dismember
+Renegade's Getaway
+Damping Field
+Relentless Assault
+Alarum
+Dispeller's Capsule
+Solidarity
+Malicious Affliction
+Rude Awakening
+Hideous End
+Chronomantic Escape
+Wear
+Beacon of Immortality
+Makeshift Mannequin
+Sulfuric Vapors
+Shimmering Grotto
+Resourceful Return
+Roilmage's Trick
+Confront the Unknown
+Touch of the Eternal
+Tectonic Edge
+Sea Gate Wreckage
+Infernal Genesis
+Tempered Steel
+Distress
+Kaervek's Spite
+Lava Burst
+Vessel of Volatility
+Gone Missing
+River Delta
+Silkwrap
+Celestial Prism
+Smoldering Crater
+Shattering Pulse
+Foriysian Totem
+Formation
+Aetherspouts
+Argent Mutation
+Primal Boost
+Seshiro the Anointed Avatar
+Nightsnare
+Helvault
+Strands of Night
+Junkyo Bell
+Reclaim
+Righteousness
+Prophetic Prism
+Chatter of the Squirrel
+See the Unwritten
+Gruul War Chant
+Disrupt
+Final Reward
+Leyline of Sanctity
+Burning Cloak
+Crumbling Sanctuary
+Flame Slash
+Stroke of Genius
+Distemper of the Blood
+Nomads' Assembly
+Tooth of Chiss-Goria
+Greater Good
+Vigor Mortis
+Chaos Confetti
+Skillful Lunge
+Seed Spark
+Impulse
+Magma Spray
+Nature's Way
+Hunt the Weak
+Spiritual Focus
+Transgress the Mind
+Quicksilver Amulet
+Magmatic Chasm
+Artificial Evolution
+Abandon Hope
+Firespout
+Savage Surge
+Telepathy
+Astral Cornucopia
+Starlit Sanctum
+Loxodon Hierarch Avatar
+Vigilante Justice
+Winding Canyons
+Comparative Analysis
+Universal Solvent
+Zombify
+Keldon Megaliths
+Govern the Guildless
+Planar Bridge
+Winds of Rath
+Gather Specimens
+Trigon of Mending
+Virulent Swipe
+Vampiric Touch
+War Cadence
+Dogpile
+Barrin's Spite
+Reckless Charge
+Smother
+Puca's Mischief
+Coursers' Accord
+Demonic Collusion
+Dark Petition
+Trade Secrets
+Helm of Obedience
+Skarrg, the Rage Pits
+Cycle of Life
+Blossoming Defense
+Strength of Arms
+Birthing Pod
+Rites of Reaping
+Phyrexian Reclamation
+Indestructible Aura
+Soulshriek
+Psychic Transfer
+Dismiss
+Mystic Speculation
+Foul Renewal
+Fate Transfer
+Thoughtseize
+Tainted Sigil
+Invincible Hymn
+Resounding Wave
+Righteous Charge
+Debt to the Deathless
+Killer Instinct
+Grave Peril
+Aether Charge
+Gleeful Sabotage
+Compulsive Research
+Jeweled Amulet
+Vandalblast
+Desert Sandstorm
+Bazaar of Baghdad
+Center Soul
+Inheritance
+Conversion
+Safeguard
+Release the Gremlins
+Rainbow Vale
+Wand of the Elements
+Mangara's Equity
+Wrap in Flames
+Cadaverous Bloom
+Fissure
+Hivestone
+Pongify
+Rugged Prairie
+Eyes in the Skies
+Justice
+Foundry of the Consuls
+Remove Enchantments
+Agonizing Demise
+Gremlin Mine
+Vassal's Duty
+Temporal Manipulation
+Comply
+Organ Harvest
+Touch of Darkness
+Might of the Masses
+Ancient Grudge
+Battlefield Forge
+Make a Stand
+Sphere of Duty
+Clutch of Currents
+Okina, Temple to the Grandfathers
+Nevinyrral's Disk
+Vacuumelt
+Nagging Thoughts
+Chain of Plasma
+Thought Vessel
+Tectonic Break
+Blood Funnel
+High Seas
+Mystic Barrier
+Mindmoil
+Misinformation
+Bog Wreckage
+Pilfered Plans
+Grab the Reins
+Carnival of Souls
+Rishadan Port
+Awe for the Guilds
+Rune of Protection: Lands
+Strafe
+Steely Resolve
+Plague Spores
+Dragon Roost
+Perpetual Timepiece
+Shoving Match
+Rith's Charm
+Mind Twist
+Psychic Intrusion
+Spirit of Resistance
+Intruder Alarm
+Fowl Play
+Angelic Edict
+Cabal Shrine
+Marsh Casualties
+Clan Defiance
+Dream's Grip
+Tracker's Instincts
+Crooked Scales
+Haunting Wind
+Lonely Sandbar
+Aura of Silence
+Angelic Renewal
+Artful Maneuver
+Light of Sanction
+Puppet's Verdict
+Nature's Revolt
+Lens of Clarity
+Murderous Betrayal
+Voodoo Doll
+Strength of Night
+Weatherseed Totem
+Zelyon Sword
+Bargain
+Coral Reef
+Power Surge
+Muscle Burst
+Tribute to the Wild
+Addle
+Natural Order
+Suppress
+Seal of Primordium
+Invasive Surgery
+Exotic Orchard
+Fanatical Fever
+Dawn Charm
+Lifecrafter's Gift
+Grenzo's Rebuttal
+Relearn
+Tezzeret's Ambition
+Deadshot
+Ironwright's Cleansing
+Primal Beyond
+Nefarious Lich
+Humility
+Standing Stones
+Temple of the False God
+Chimeric Egg
+Necrogen Censer
+Quicksilver Fountain
+Tendrils of Agony
+Blood Frenzy
+Demon's Horn
+Courier's Capsule
+Halt Order
+Brilliant Plan
+Semblance Anvil
+Unholy Hunger
+Helm of Awakening
+Blast from the Past
+Morphic Tide
+Instill Infection
+Sisay
+Chaplain's Blessing
+Castigate
+Pore Over the Pages
+Rain of Blades
+Pack Hunt
+Darksteel Relic
+Telekinesis
+Liberate
+Premature Burial
+Grip of Phyresis
+Bone to Ash
+Urza's Incubator
+Processor Assault
+Spire of Industry
+Rakdos Cluestone
+Displacement Wave
+Spellshift
+Intervention Pact
+Malachite Talisman
+Rishkar's Expertise
+Ghoulcaller's Bell
+Last Chance
+World at War
+Barrage of Boulders
+Spoils of War
+Aesthetic Consultation
+Pegasus token card
+Read the Bones
+Thousand-Year Elixir
+Harnessed Lightning
+Amulet of Kroog
+Panacea
+Withstand
+Teysa, Orzhov Scion Avatar
+Flowstone Strike
+Deep Wood
+Umbilicus
+Counterbore
+Tahngarth's Glare
+Word of Blasting
+Fossil Find
+Into the Maw of Hell
+Dragonstorm
+Haven of the Spirit Dragon
+Sylvan Bounty
+Quest for the Nihil Stone
+Hunter's Prowess
+Suleiman's Legacy
+Time Distortion
+Lunar Force
+Grave Consequences
+Gisa's Bidding
+Hell's Caretaker Avatar
+Grindstone
+Rain of Rust
+Selesnya Keyrune
+Peel from Reality
+Season of the Witch
+Vanishment
+Selesnya Signet
+Stone Quarry
+Spontaneous Generation
+Hands of Binding
+Gideon's Intervention
+Lyna
+Weave Fate
+Tribute to Hunger
+Ferocious Charge
+Jund Charm
+Knollspine Invocation
+Sight of the Scalelords
+Soul Reap
+Oketra's Monument
+Burning Oil
+Tel-Jilad Justice
+Predator, Flagship
+Rending Volley
+That Which Was Taken
+Burning Wish
+Blockbuster
+Corpse Lunge
+Nature's Lore
+Parallel Thoughts
+Master's Call
+Llanowar Wastes
+Cut the Tethers
+Intervene
+Reverberate
+Mulch
+Windbrisk Heights
+Filigree Fracture
+Scent of Nightshade
+Might of Alara
+Wild Defiance
+Spark Spray
+Monstrify
+Flux
+Retraced Image
+Exquisite Firecraft
+Alchemist's Greeting
+Elsewhere Flask
+Wax
+Wild Ricochet
+Rush of Adrenaline
+Icefall
+Sequestered Stash
+Copperline Gorge
+Primeval Bounty
+Multani's Presence
+Ichor Explosion
+Feroz's Ban
+Golden Urn
+Toxic Stench
+Scorched Earth
+Summoner's Pact
+Homing Lightning
+Book Burning
+Xenograft
+Sacred Ground
+Tower of Fortunes
+Damping Matrix
+Void
+Winter Blast
+Soldier token card
+Underhanded Designs
+Chandra's Fury
+Migratory Route
+Animate Land
+Bramblecrush
+Azorius Cluestone
+Trinisphere
+Dominaria's Judgment
+Forsaken Sanctuary
+Hallowed Moonlight
+Tablet of Epityr
+Pine Barrens
+Gem of Becoming
+Radiant Fountain
+Arcane Denial
+Corpseweft
+Darksteel Pendant
+Endless Horizons
+Erayo's Essence
+Browse
+Dangerous
+Mob Rule
+Planar Collapse
+Enchanted Evening
+Reknit
+Immortal Servitude
+Shade's Breath
+Fieldmist Borderpost
+Cunning Strike
+Fill with Fright
+R&D's Secret Lair
+Zealous Persecution
+Polluted Bonds
+Spinal Embrace
+Hijack
+Paupers' Cage
+Blue Sun's Zenith
+Equilibrium
+Yare
+Rising Miasma
+Shattering Blow
+Blood Oath
+Mine Excavation
+Gush
+Foxfire
+Omen of Fire
+Delay
+Timecrafting
+Scissors Lizard
+Snowfall
+Shahrazad
+Darkest Hour
+Trial
+Aether Flash
+Crush of Wurms
+Coercion
+Ertai's Trickery
+Goblin Rally
+Cloudstone Curio
+Sandsteppe Citadel
+Seething Anger
+Piracy Charm
+Electrostatic Bolt
+Illusion
+Cancel
+Donate
+Oni of Wild Places Avatar
+Darksteel Reactor
+Checks and Balances
+Spine of Ish Sah
+Runeboggle
+Goblinslide
+All Shall Smolder in My Wake
+Echoing Truth
+Drain Life
+Hero's Downfall
+Crop Sigil
+Read the Runes
+Kaboom!
+Aura Mutation
+Caress of Phyrexia
+Nantuko Shrine
+Suspension Field
+Slumbering Tora
+Dark Suspicions
+From Under the Floorboards
+Time Machine
+Deadapult
+Crackling Doom
+Jace's Erasure
+Darkness
+Oath of Druids
+Survey the Wreckage
+Tinder Farm
+Spore Burst
+Delaying Shield
+Quicken
+Stubborn Denial
+Spy Network
+Blaze
+Skyshroud Claim
+Soul's Grace
+Dawnglow Infusion
+What
+Meteor Storm
+Jeskai Charm
+Codex Shredder
+Smoldering Spires
+Illusionary Mask
+Retaliation
+Swift Silence
+Confound
+Burn from Within
+Shadow Slice
+Psychic Drain
+Lich's Tomb
+Timberland Ruins
+Wand of Ith
+Stand Together
+Thalakos Lowlands
+Impulsive Maneuvers
+Shadow of Doubt
+Tide of War
+Know Naught but Fire
+Interpret the Signs
+Chain Lightning
+Perilous Research
+Adverse Conditions
+Coat of Arms
+Ghostway
+Cleaver Riot
+Chain of Acid
+Well-Laid Plans
+Cowardice
+Renegade Map
+Provoke
+Compost
+Polluted Mire
+Clash of Realities
+Noble Stand
+Ashes of the Fallen
+Tranquil Path
+Ivory Cup
+Reconnaissance
+Show and Tell
+Martial Coup
+Throne of the High City
+Tigereye Cameo
+Blood Reckoning
+Spell Syphon
+Iceberg
+Faith's Reward
+Invasion Plans
+Soothing Balm
+Springleaf Drum
+Syphon Mind
+Overwhelming Stampede
+Nature's Resurgence
+Sulfurous Blast
+Plunge into Darkness
+Alms of the Vein
+Serra Angel Avatar
+Scatter to the Winds
+Fiery Confluence
+Solitary Confinement
+Nature's Claim
+Earth Surge
+Laquatus's Disdain
+Second Sunrise
+Titania's Boon
+Churning Eddy
+Gaea's Blessing
+Hand of Death
+Dark Deal
+Wake the Reflections
+Take
+Tumble Magnet
+Darkwater Egg
+Colfenor's Urn
+Malevolent Awakening
+Gnaw to the Bone
+Grave Birthing
+Ojutai's Summons
+Mob Justice
+Volcanic Offering
+Treetop Defense
+Gruul War Plow
+Decree of Silence
+Psychogenic Probe
+Mind Extraction
+Traitor's Roar
+Lose Hope
+Symbol of Unsummoning
+Cloak of Feathers
+Subterranean Hangar
+Prism Array
+Azorius Charm
+Tortured Existence
+Map the Wastes
+Bountiful Harvest
+Stench of Decay
+Serpent Generator
+Treva's Charm
+Ulcerate
+Glimpse the Unthinkable
+Smallpox
+Bituminous Blast
+Awaken the Bear
+Compulsion
+Endure
+Doom Cannon
+Noetic Scales
+Pain Magnification
+Righteous Fury
+Orzhov Basilica
+Retraction Helix
+Aven Warcraft
+Wildsize
+Jungle Hollow
+Aphetto Dredging
+Word of Undoing
+Quest for Pure Flame
+Scouting Trek
+War Report
+Desolation
+Sanctimony
+Unburden
+Needle Drop
+Madcap Experiment
+Gravepurge
+Call of the Wild
+Renewing Dawn
+Terrarion
+Surgical Extraction
+Urza's Guilt
+Mystic Retrieval
+Beseech the Queen
+Temporal Fissure
+The Hive
+Tidy Conclusion
+Horn of Deafening
+Halls of Mist
+Earth Rift
+Everlasting Torment
+Yamabushi's Storm
+Corrupted Grafstone
+Psychic Spear
+Dragonshift
+Punctuate
+Puffer Extract
+Annul
+Triumph of Ferocity
+Welding Sparks
+Declaration in Stone
+Consign to Dream
+Bloodscent
+Serra's Sanctum
+Serum Powder
+Unwilling Recruit
+Ally Encampment
+Seaside Citadel
+Pyroblast
+Evolution Vat
+Battle of Wits
+Windborne Charge
+Kor Haven
+Life
+Dissension in the Ranks
+Raking Canopy
+Defense Grid
+Order
+Revenge of the Hunted
+Helm of Chatzuk
+Oath of Nissa
+Momentary Blink
+Traumatic Visions
+Gauntlets of Chaos
+Elkin Lair
+Heroic Intervention
+Journey of Discovery
+Hesitation
+Bitter Feud
+Reclamation
+Fiery Justice
+Tunnel
+Horror of Horrors
+Cyclopean Tomb
+Ceta Sanctuary
+Primal Vigor
+Obelisk of Jund
+Select for Inspection
+Familiar's Ruse
+Otherworldly Outburst
+Curse of the Cabal
+Trail of Evidence
+Tyrannize
+Maelstrom Nexus
+Blinding Flare
+Secret Plans
+Slagstorm
+Elven Fortress
+Drawn Together
+Raging Ravine
+Buried Ruin
+Reflecting Mirror
+Silence
+Strip Bare
+Transcendence
+Rites of Spring
+Spirit Bonds
+Tidal Control
+Horn of Ramos
+Sanity Grinding
+Early Harvest
+Rally the Peasants
+Healing Salve
\ No newline at end of file
diff --git a/Aufgabe1/repairedCards.txt b/Aufgabe1/repairedCards.txt
new file mode 100644
index 0000000000000000000000000000000000000000..33c66dd4b617ee149890d5a069ee20fd5f93a5a2
--- /dev/null
+++ b/Aufgabe1/repairedCards.txt
@@ -0,0 +1,413 @@
+Blue Elemental Blast|{U}|1|Instant|37
+Crystal Rod|{1}|1|Artifact|4
+Darkpact|{B}{B}{B}|3|Sorcery|1
+Dingus Egg|{4}|4|Artifact|48
+Drain Power|{U}{U}|2|Sorcery|37
+Howl from Beyond|{X}{B}|1|Instant|21
+Illusionary Mask|{2}|2|Artifact|59
+Ivory Cup|{1}|1|Artifact|44
+Jade Monolith|{4}|4|Artifact|40
+Lifetap|{U}{U}|2|Enchantment|45
+Lightning Bolt|{R}|1|Instant|57
+Raise Dead|{B}|1|Sorcery|51
+Stream of Life|{X}{G}|1|Sorcery|49
+Time Vault|{2}|2|Artifact|57
+Piety|{2}{W}|3|Instant|25
+Blue Mana Battery|{4}|4|Artifact|17
+Nova Pentacle|{4}|4|Artifact|2
+Ring of Immortals|{5}|5|Artifact|38
+Seafarer's Quay|1|1|Land|48
+Shield Wall|{1}{W}|2|Instant|11
+Undertow|{2}{U}|3|Enchantment|56
+White Mana Battery|{4}|4|Artifact|4
+Sorrow's Path|1|1|Land|29
+Breeding Pit|{3}{B}|4|Enchantment|28
+Hymn to Tourach|{B}{B}|2|Sorcery|30
+Ring of Renewal|{5}|5|Artifact|43
+Arena|1|1|Land|25
+Valorous Stance|{1}{W}|2|Instant|60
+Call to Arms|{1}{W}|2|Enchantment|12
+Goblin Lyre|{3}|3|Artifact|41
+Hematite Talisman|{2}|2|Artifact|37
+Ice Floe|1|1|Land|4
+Icequake|{1}{B}{B}|3|Sorcery|35
+Nacre Talisman|{2}|2|Artifact|18
+Staff of the Ages|{3}|3|Artifact|7
+Time Bomb|{4}|4|Artifact|37
+Baki's Curse|{2}{U}{U}|4|Sorcery|6
+Didgeridoo|{1}|1|Artifact|27
+Drudge Spell|{B}{B}|2|Enchantment|9
+Dry Spell|{1}{B}|2|Sorcery|39
+Koskun Falls|{2}{B}{B}|4|World Enchantment|21
+Force of Will|{3}{U}{U}|5|Instant|59
+Inheritance|{W}|1|Enchantment|30
+Noble Steeds|{2}{W}|3|Enchantment|37
+Ritual of the Machine|{2}{B}{B}|4|Sorcery|20
+Storm Cauldron|{5}|5|Artifact|30
+Surging Flame|{1}{R}|2|Instant|20
+Amber Prison|{4}|4|Artifact|53
+Blind Fury|{2}{R}{R}|4|Instant|10
+Final Fortune|{R}{R}|2|Instant|10
+Prismatic Boon|{X}{W}{U}|2|Instant|57
+Superior Numbers|{G}{G}|2|Sorcery|47
+Juju Bubble|{1}|1|Artifact|22
+Three Wishes|{1}{U}{U}|3|Instant|43
+Vampiric Tutor|{B}|1|Instant|47
+Warrior's Honor|{2}{W}|3|Instant|50
+Blessed Reversal|{1}{W}|2|Instant|32
+Cruel Fate|{4}{U}|5|Sorcery|33
+Fruition|{G}|1|Sorcery|5
+Natural Spring|{3}{G}{G}|5|Sorcery|25
+Lyzolda, the Blood Witch Avatar|1|1|Vanguard|1
+Raksha Golden Cub Avatar|1|1|Vanguard|54
+Selenia|1|1|Vanguard|58
+Sisay|1|1|Vanguard|17
+Stalking Tiger Avatar|1|1|Vanguard|25
+Angelic Renewal|{1}{W}|2|Enchantment|1
+Desperate Gambit|{R}|1|Instant|22
+Fatal Blow|{B}|1|Instant|31
+Heat Stroke|{2}{R}|3|Enchantment|3
+Serenity|{1}{W}|2|Enchantment|57
+Lotus Bloom|1|1|Artifact|39
+Trail of Mystery|{1}{G}|2|Enchantment|24
+Rally the Ancestors|{X}{W}{W}|2|Instant|3
+Altar of Dementia|{2}|2|Artifact|11
+Gerrard's Battle Cry|{W}|1|Enchantment|21
+Helm of Possession|{4}|4|Artifact|6
+Kindle|{1}{R}|2|Instant|37
+Light of Day|{3}{W}|4|Enchantment|34
+Nature's Revolt|{3}{G}{G}|5|Enchantment|2
+Precognition|{4}{U}|5|Enchantment|48
+Propaganda|{2}{U}|3|Enchantment|49
+Reanimate|{B}|1|Sorcery|45
+Recycle|{4}{G}{G}|6|Enchantment|49
+Invasion Plans|{2}{R}|3|Enchantment|17
+Portcullis|{4}|4|Artifact|35
+Rebound|{1}{U}|2|Instant|58
+Scapegoat|{W}|1|Instant|37
+Harmony of Nature|{2}{G}|3|Sorcery|38
+Rally the Troops|{W}|1|Instant|21
+Equilibrium|{1}{U}{U}|3|Enchantment|56
+Mana Breach|{2}{U}|3|Enchantment|1
+Oath of Scholars|{3}{U}|4|Enchantment|42
+Flowstone Flood|{3}{R}|4|Sorcery|59
+Elven Palisade|{G}|1|Enchantment|43
+Skyshroud Forest|{1}{G}|2|Creature — Beast|41
+Growth Spurt|{1}{G}|2|Instant|35
+Squirrel Farm|{2}{G}|3|Enchantment|56
+Chaos Confetti|{4}|4|Artifact|41
+Giant Fan|{4}|4|Artifact|35
+Jack-in-the-Mox|{0}|0|Artifact|10
+Catalog|{2}{U}|3|Instant|46
+Hibernation|{2}{U}|3|Instant|24
+Telepathy|{U}|1|Enchantment|54
+Yawgmoth's Edict|{1}{B}|2|Enchantment|47
+Brand|{R}|1|Instant|60
+Hidden Ancients|{1}{G}|2|Enchantment|6
+Barrin's Codex|{4}|4|Artifact|47
+Noetic Scales|{4}|4|Artifact|9
+Purging Scythe|{5}|5|Artifact|9
+Hope and Glory|{1}{W}|2|Instant|43
+Planar Collapse|{1}{W}|2|Enchantment|1
+Aura Flux|{2}{U}|3|Enchantment|8
+Impending Disaster|{1}{R}|2|Enchantment|20
+Damping Engine|{4}|4|Artifact|52
+Control of the Court|{1}{R}|2|Sorcery|15
+Spoils of Victory|{2}{G}|3|Sorcery|5
+Scent of Brine|{1}{U}|2|Instant|36
+Flame Jet|{1}{R}|2|Sorcery|55
+Reckless Abandon|{R}|1|Sorcery|16
+Scrying Glass|{2}|2|Artifact|54
+Soothing Balm|{1}{W}|2|Instant|28
+Trade Routes|{1}{U}|2|Enchantment|47
+Cateran Summons|{B}|1|Sorcery|14
+Horn of Plenty|{6}|6|Artifact|34
+Hickory Woodlot|1|1|Land|17
+Terminate|{B}{R}|2|Instant|8
+Pillar of Flame|{R}|1|Sorcery|52
+Encroaching Wastes|1|1|Land|29
+Nissa's Pilgrimage|{2}{G}|3|Sorcery|56
+Sivvi's Valor|{2}{W}|3|Instant|53
+Seal of Removal|{U}|1|Enchantment|52
+Mind Slash|{1}{B}{B}|3|Enchantment|37
+Infernal Genesis|{4}{B}{B}|6|Enchantment|35
+Plague Wind|{7}{B}{B}|9|Sorcery|32
+Protective Sphere|{2}{W}|3|Enchantment|44
+Rout|{3}{W}{W}|5|Sorcery|11
+Samite Ministration|{1}{W}|2|Instant|3
+Crystal Spray|{2}{U}|3|Instant|44
+Desperate Research|{1}{B}|2|Sorcery|38
+Do or Die|{1}{B}|2|Sorcery|21
+Lightning Dart|{1}{R}|2|Instant|33
+Obliterate|{6}{R}{R}|8|Sorcery|12
+Restock|{3}{G}{G}|5|Sorcery|51
+Scouting Trek|{1}{G}|2|Sorcery|43
+Phyrexian Altar|{3}|3|Artifact|43
+Phyrexian Lens|{3}|3|Artifact|43
+Tigereye Cameo|{3}|3|Artifact|52
+March of Souls|{4}{W}|5|Sorcery|58
+Pollen Remedy|{W}|1|Instant|37
+Surprise Deployment|{3}{W}|4|Instant|33
+Shifting Sky|{2}{U}|3|Enchantment|38
+Death Bomb|{3}{B}|4|Instant|22
+Phyrexian Altar|{3}{B}|4|Creature — Zombie|21
+Planeswalker's Fury|{2}{R}|3|Enchantment|48
+Mortify|{1}{W}{B}|3|Instant|31
+Bituminous Blast|{3}{B}{R}|5|Instant|31
+Consume Strength|{1}{B}{G}|3|Instant|25
+Last Stand|{W}{U}{B}{R}{G}|5|Sorcery|13
+Caves of Koilos|1|1|Land|26
+Cease-Fire|{2}{W}|3|Instant|37
+Concentrate|{2}{U}{U}|4|Sorcery|29
+Dematerialize|{3}{U}|4|Sorcery|40
+Think Tank|{2}{U}|3|Enchantment|14
+Execute|{2}{B}|3|Instant|17
+Chance Encounter|{2}{R}{R}|4|Enchantment|40
+Rites of Initiation|{R}|1|Instant|15
+Shower of Coals|{3}{R}{R}|5|Sorcery|40
+Thermal Blast|{4}{R}|5|Instant|34
+Elephant Ambush|{2}{G}{G}|4|Instant|52
+Barbarian Ring|1|1|Land|45
+Skycloud Expanse|1|1|Land|45
+Transcendence|{3}{W}{W}{W}|6|Enchantment|53
+Churning Eddy|{3}{U}|4|Sorcery|20
+Flaming Gambit|{X}{R}|1|Instant|44
+Overmaster|{R}|1|Sorcery|43
+Prismatic Strands|{2}{W}|3|Instant|27
+Spirit Cairn|{2}{W}|3|Enchantment|21
+Swelter|{3}{R}|4|Sorcery|46
+Grizzly Fate|{3}{G}{G}|5|Sorcery|36
+Krosan Reclamation|{1}{G}|2|Instant|44
+Hunting Grounds|{G}{W}|2|Enchantment|41
+Chain of Silence|{1}{W}|2|Instant|36
+Circle of Solace|{3}{W}|4|Enchantment|26
+Inspirit|{2}{W}|3|Instant|47
+Unified Strike|{W}|1|Instant|34
+Cover of Darkness|{1}{B}|2|Enchantment|25
+Cruel Revival|{4}{B}|5|Instant|15
+Death Match|{3}{B}|4|Enchantment|56
+Head Games|{3}{B}{B}|5|Sorcery|60
+Brightstone Ritual|{R}|1|Instant|2
+Mana Echoes|{2}{R}{R}|4|Enchantment|12
+Secluded Steppe|1|1|Land|60
+Wipe Clean|{1}{W}|2|Instant|39
+Enrage|{X}{R}|1|Instant|46
+Spark Spray|{R}|1|Instant|47
+Sulfuric Vortex|{1}{R}{R}|3|Enchantment|48
+Break Asunder|{2}{G}{G}|4|Sorcery|31
+Forge Armor|{4}{R}|5|Instant|18
+Grab the Reins|{3}{R}|4|Instant|44
+Mass Hysteria|{R}|1|Enchantment|56
+Lifespark Spellbomb|{1}|1|Artifact|46
+Psychogenic Probe|{2}|2|Artifact|25
+Blinkmoth Well|1|1|Land|33
+Tree of Tales|1|1|Artifact Land|12
+Soulscour|{7}{W}{W}{W}|10|Sorcery|36
+Murderous Spoils|{5}{B}|6|Instant|19
+Spawning Pit|{2}|2|Artifact|12
+Spectral Shift|{1}{U}|2|Instant|46
+Rain of Rust|{3}{R}{R}|5|Instant|3
+Blasting Station|{3}|3|Artifact|51
+Door to Nothingness|{5}|5|Artifact|9
+Cut the Tethers|{2}{U}{U}|4|Sorcery|60
+Jade Idol|{4}|4|Artifact|33
+Rare-B-Gone|{2}{B}{R}|4|Sorcery|57
+Why|{1}{G}|2|Instant|25
+Minamo's Meddling|{2}{U}{U}|4|Instant|31
+Curtain of Light|{1}{W}|2|Instant|25
+Inner Fire|{3}{R}|4|Sorcery|30
+Dense Canopy|{1}{G}|2|Enchantment|57
+Sasaya's Essence|{1}{G}{G}|3|Legendary Enchantment|60
+Wine of Blood and Iron|{3}|3|Artifact|37
+Mikokoro, Center of the Sea|1|1|Legendary Land|33
+Last Gasp|{1}{B}|2|Instant|29
+Gather Courage|{G}|1|Instant|33
+Clutch of the Undercity|{1}{U}{U}{B}|4|Instant|16
+Rally the Righteous|{1}{R}{W}|3|Instant|25
+Bloodletter Quill|{3}|3|Artifact|49
+To Arms!|{1}{W}|2|Instant|33
+Train of Thought|{1}{U}|2|Sorcery|47
+Predatory Focus|{3}{G}{G}|5|Sorcery|48
+Conjurer's Ban|{W}{B}|2|Sorcery|12
+Leap of Flame|{U}{R}|2|Instant|36
+Steeling Stance|{1}{W}{W}|3|Instant|58
+Govern the Guildless|{5}{U}|6|Sorcery|43
+Overrun|{X}{W}{U}|2|Instant|15
+Bound|{3}{B}{G}|5|Instant|22
+Crime|{3}{W}{B}|5|Sorcery|31
+Rakdos Signet|{2}|2|Artifact|8
+Sun's Bounty|{1}{W}|2|Instant|1
+Bewilder|{2}{U}|3|Instant|36
+Demonic Collusion|{3}{B}{B}|5|Sorcery|53
+Sudden Spoiling|{1}{B}{B}|3|Instant|37
+Ignite Memories|{4}{R}|5|Sorcery|49
+Gemstone Caverns|1|1|Legendary Land|8
+Season's Beatings|{R}{R}{R}{R}|4|Sorcery|37
+Saltblast|{3}{W}{W}|5|Sorcery|19
+Pact of Negation|{0}|0|Instant|23
+Festering March|{3}{B}{B}|5|Sorcery|5
+Killing Wave|{X}{B}|1|Sorcery|26
+Needle Drop|{R}|1|Instant|1
+Rings of Brighthearth|{3}|3|Artifact|3
+Windbrisk Heights|1|1|Land|24
+Dictate of the Twin Gods|{3}{R}{R}|5|Enchantment|40
+Rivals' Duel|{3}{R}|4|Sorcery|25
+Rite of Consumption|{1}{B}|2|Sorcery|56
+Puncture Bolt|{1}{R}|2|Instant|12
+Toil to Renown|{1}{G}|2|Sorcery|25
+Dream Salvage|{U/B}|1|Instant|17
+Trip Noose|{2}|2|Artifact|11
+Sanity Grinding|{U}{U}{U}|3|Sorcery|51
+Crumbling Ashes|{1}{B}|2|Enchantment|2
+Flame Jab|{R}|1|Sorcery|17
+Rise of the Hobgoblins|{R/W}{R/W}|2|Enchantment|41
+Golem's Heart|{2}|2|Artifact|48
+Protomatter Powder|{2}{U}|3|Artifact|45
+Crucible of Fire|{3}{R}|4|Enchantment|43
+Clarion Ultimatum|{G}{G}{W}{W}{W}{U}{U}|7|Sorcery|15
+Grixis Charm|{U}{B}{R}|3|Instant|35
+Drag Down|{2}{B}|3|Instant|56
+Spore Burst|{3}{G}|4|Sorcery|22
+Armillary Sphere|{2}|2|Artifact|38
+Violent Outburst|{1}{R}{G}|3|Instant|58
+Disorient|{3}{U}|4|Instant|53
+Windstorm|{X}{G}|1|Instant|47
+Sadistic Sacrament|{B}{B}{B}|3|Sorcery|7
+Seismic Shudder|{1}{R}|2|Instant|11
+Expedition Map|{1}|1|Artifact|38
+Piranha Marsh|1|1|Land|3
+Turntimber Grove|1|1|Land|57
+Spell Contortion|{2}{U}|3|Instant|40
+Vapor Snag|{4}{U}|5|Enchantment — Aura|14
+Amulet of Vigor|{1}|1|Artifact|56
+Sejiri Steppe|1|1|Land|41
+Near-Death Experience|{2}{W}{W}{W}|5|Enchantment|3
+Lay Bare|{2}{U}{U}|4|Instant|18
+See Beyond|{1}{U}|2|Sorcery|28
+Training Grounds|{U}|1|Enchantment|34
+Consume the Meek|{3}{B}{B}|5|Instant|26
+Corpsehatch|{3}{B}{B}|5|Sorcery|37
+Essence Feed|{5}{B}|6|Sorcery|60
+Might of the Masses|{G}|1|Instant|11
+Behold the Power of Destruction|1|1|Scheme|52
+A Display of My Dark Power|1|1|Scheme|22
+Feed the Machine|1|1|Scheme|54
+Look Skyward and Despair|1|1|Scheme|46
+My Undead Horde Awakens|1|1|Ongoing Scheme|1
+Realms Befitting My Majesty|1|1|Scheme|29
+Which of You Burns Brightest?|1|1|Scheme|15
+Ajani's Mantra|{1}{W}|2|Enchantment|45
+Redirect|{U}{U}|2|Instant|51
+Shape Anew|{3}{U}|4|Sorcery|15
+Blunt the Assault|{3}{G}|4|Instant|8
+Withstand Death|{G}|1|Instant|22
+Horizon Spellbomb|{1}|1|Artifact|17
+Prototype Portal|{4}|4|Artifact|48
+Fuel for the Cause|{2}{U}{U}|4|Instant|53
+Whipflare|{1}{R}|2|Sorcery|33
+Gremlin Mine|{1}|1|Artifact|56
+Shrine of Piercing Vision|{2}|2|Artifact|20
+Phyrexia's Core|1|1|Land|23
+Crescendo of War|{3}{W}|4|Enchantment|6
+Tribute to the Wild|{1}{G}|2|Instant|12
+Guardians' Pledge|{1}{W}{W}|3|Instant|51
+Rebuke|{2}{W}|3|Instant|31
+Corpse Lunge|{2}{B}|3|Instant|30
+Unburial Rites|{4}{B}|5|Sorcery|48
+Travel Preparations|{1}{G}|2|Sorcery|34
+Cellar Door|{2}|2|Artifact|15
+Traveler's Amulet|{1}|1|Artifact|19
+Woodland Cemetery|1|1|Land|20
+Gravepurge|{2}{B}|3|Instant|28
+Undying Evil|{B}|1|Instant|16
+Blood Feud|{4}{R}{R}|6|Sorcery|32
+Wild Hunger|{2}{G}|3|Instant|10
+Death Wind|{X}{B}|1|Instant|12
+Grave Exchange|{4}{B}{B}|6|Sorcery|39
+Human Frailty|{B}|1|Instant|57
+Angel's Tomb|{3}|3|Artifact|25
+Cower in Fear|{1}{B}{B}|3|Instant|60
+Predatory Rampage|{3}{G}{G}|5|Sorcery|58
+Horncaller's Chant|{7}{G}|8|Sorcery|47
+Essence Backlash|{2}{U}{R}|4|Instant|25
+Jarad's Orders|{2}{B}{G}|4|Sorcery|45
+Chromatic Lantern|{3}|3|Artifact|41
+Rapid Hybridization|{U}|1|Instant|3
+Crackling Perimeter|{1}{R}|2|Enchantment|54
+Ooze Flux|{3}{G}|4|Enchantment|20
+Executioner's Swing|{W}{B}|2|Instant|10
+Arrows of Justice|{2}{R/W}|3|Instant|31
+Gruul Keyrune|{3}|3|Artifact|48
+Advent of the Wurm|{1}{G}{G}{W}|4|Instant|32
+Gruul War Chant|{2}{R}{G}|4|Enchantment|52
+Restore the Peace|{1}{W}{U}|3|Instant|33
+Angelic Accord|{3}{W}|4|Enchantment|4
+Dismiss into Dream|{6}{U}|7|Enchantment|8
+Dark Prophecy|{B}{B}{B}|3|Enchantment|44
+Burning Earth|{3}{R}|4|Enchantment|53
+Savage Summoning|{G}|1|Instant|11
+Dark Betrayal|{B}|1|Instant|7
+Read the Bones|{2}{B}|3|Sorcery|35
+Steam Augury|{2}{U}{R}|4|Instant|10
+Toxic Deluge|{2}{B}|3|Sorcery|8
+Sudden Demise|{X}{R}|1|Sorcery|28
+Lightning Volley|{3}{R}|4|Instant|8
+Ritual of the Returned|{3}{B}|4|Instant|45
+Unexpected Potential|1|1|Conspiracy|20
+Plea for Power|{3}{U}|4|Sorcery|27
+Polymorphist's Jest|{1}{U}{U}|3|Instant|21
+Endless Obedience|{4}{B}{B}|6|Sorcery|3
+Feral Incarnation|{8}{G}|9|Sorcery|52
+Hunter's Ambush|{2}{G}|3|Instant|16
+Gleam of Resistance|{1}{W}|2|Instant|37
+Kill Shot|{2}{W}|3|Instant|30
+Burn Away|{4}{R}|5|Instant|4
+Infernal Offering|{4}{B}|5|Sorcery|60
+Spoils of Blood|{B}|1|Instant|7
+Write into Being|{2}{U}|3|Sorcery|11
+Monastery Siege|{2}{U}|3|Enchantment|24
+Break Through the Line|{1}{R}|2|Enchantment|5
+Mob Rule|{4}{R}{R}|6|Sorcery|42
+Profound Journey|{5}{W}{W}|7|Sorcery|44
+Taigam's Strike|{3}{U}|4|Sorcery|8
+Lose Calm|{3}{R}|4|Sorcery|21
+Enshrouding Mist|{W}|1|Instant|13
+The Great Aurora|{6}{G}{G}{G}|9|Sorcery|35
+Coastal Discovery|{3}{U}|4|Sorcery|12
+Blighted Cataract|1|1|Land|52
+Blighted Steppe|1|1|Land|3
+Wretched Confluence|{3}{B}{B}|5|Instant|14
+Awaken the Sky Tyrant|{3}{R}|4|Enchantment|59
+Call the Gatewatch|{2}{W}|3|Sorcery|9
+Elemental Uprising|{1}{G}|2|Instant|19
+Zendikar Resurgent|{5}{G}{G}|7|Enchantment|47
+Mirrorpool|1|1|Land|21
+Declaration in Stone|{1}{W}|2|Sorcery|12
+Ethereal Guidance|{2}{W}|3|Sorcery|19
+Autumnal Gloom|{2}{G}|3|Enchantment|53
+Forsaken Sanctuary|1|1|Land|12
+Scour the Laboratory|{4}{U}{U}|6|Instant|50
+Prying Questions|{2}{B}|3|Sorcery|53
+Ruthless Disposal|{4}{B}|5|Sorcery|1
+Galvanic Bombardment|{R}|1|Instant|36
+Otherworldly Outburst|{R}|1|Instant|14
+Adriana's Valor|1|1|Conspiracy|51
+Garbage Fire|{2}{R}|3|Instant|43
+Tidy Conclusion|{3}{B}{B}|5|Instant|40
+Blossoming Defense|{G}|1|Instant|34
+Take Down|{G}|1|Sorcery|46
+Aetherflux Reservoir|{4}|4|Artifact|25
+Aetherworks Marvel|{4}|4|Legendary Artifact|23
+Ghirapur Orrery|{4}|4|Artifact|24
+Inspiring Vantage|1|1|Land|35
+Sylvan Reclamation|{3}{G}{W}|5|Instant|28
+Reverse Engineer|{3}{U}{U}|5|Sorcery|13
+Whir of Invention|{X}{U}{U}{U}|3|Instant|44
+Fatal Push|{B}|1|Instant|30
+Kari Zev's Expertise|{1}{R}{R}|3|Sorcery|40
+Implement of Malice|{2}|2|Artifact|40
+Universal Solvent|{1}|1|Artifact|14
+Gideon's Intervention|{2}{W}{W}|4|Enchantment|23
+Faith of the Devoted|{2}{B}|3|Enchantment|23
+Final Reward|{4}{B}|5|Instant|26
+Pursue Glory|{3}{R}|4|Instant|18
diff --git a/Aufgabe1/restoreCards.cpp b/Aufgabe1/restoreCards.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..b76d0c794ea5f65d642c71ef229b39b2044c1270
--- /dev/null
+++ b/Aufgabe1/restoreCards.cpp
@@ -0,0 +1,196 @@
+#include <iostream>
+#include <fstream>
+#include <list>
+#include <string>
+#include <fstream>
+#include <cstring>
+#include <assert.h>
+#include "helpMethods.cpp"
+#include "Cards.cpp"
+
+using namespace std;
+
+class restoreCards {
+
+    private:
+
+        const float L_TOLERANCE = 0.2675;
+
+        int totalCardsAmount;
+        int repairedCardsAmount;
+
+        string fileName;
+        string referenceFileName;
+
+
+        list<Cards> cardList;
+        list<string> referenceList;
+        list<Cards> repairedCards;
+
+    public:
+
+
+        restoreCards(string fileName, string referenceFileName) {
+
+            assert(endsWith(fileName, ".txt"));
+            this->fileName = fileName;
+
+
+            this->referenceFileName = referenceFileName;
+        };
+
+        void restore() {
+
+        
+            readScrambled();
+            readReference();
+
+
+            restoreIndividualCards();
+
+
+            writeListToFile(repairedCards, "repairedCards.txt");
+
+            //Aufgabe 4
+            writeListToFile(cardList, "scrambledList.txt");
+
+            printRepairStats();
+
+
+        };
+
+    private:
+
+        int computeLevenshteinDistance(string zeile, string spalte) {
+
+            // Initialise a 2d Matrix with the length of the word
+            int M[zeile.length() + 1][spalte.length() + 1];
+
+            for (int ZEILE = 0; ZEILE < zeile.length() + 1; ZEILE++) {
+                for (int SPALTE = 0; SPALTE < spalte.length() + 1; SPALTE++) {
+
+                    M[ZEILE][SPALTE] = 0;
+
+                    if (ZEILE == 0) {
+                        M[ZEILE][SPALTE] = SPALTE;
+                    }
+
+                    if (SPALTE == 0) {
+                        M[ZEILE][SPALTE] = ZEILE;
+                    }
+                }
+            }
+
+            for (int ZEILE = 1; ZEILE < zeile.length() + 1; ZEILE++) {
+                for (int SPALTE = 1; SPALTE < spalte.length() + 1; SPALTE++) {
+
+                    int c = 1;
+                    if (zeile[ZEILE - 1] == spalte[SPALTE - 1]) {
+                        c = 0;
+                    }
+
+                    int rep = M[ZEILE - 1][SPALTE - 1] + c;
+                    int ins = M[ZEILE][SPALTE - 1] + 1;
+                    int del = M[ZEILE - 1][SPALTE] + 1;
+
+                    M[ZEILE][SPALTE] = min(rep, min(ins, del));
+                }
+            }
+            return M [zeile.length()][spalte.length()];
+
+        }
+
+        void readScrambled() {
+
+            ifstream scrambledFile(fileName);
+            string singleLine;
+
+
+
+                //Aufgabe 3
+            while (getline(scrambledFile, singleLine)) {
+                totalCardsAmount++;
+
+                //string singleLine copied in char Array
+                int n = singleLine.length();
+                char singleLineArray[n + 1];
+                strcpy(singleLineArray, singleLine.c_str());
+
+
+                //singleLineArray split in substrings
+                char *singleLineSubstring = strtok(singleLineArray, "|");
+                string cardInfoArr[5];
+
+                //Logic for seperating the Substrings
+                int j = 0;
+                while (singleLineSubstring) {
+
+                    //Substring (Kartenattribute) werden in cardInfoArrgeschrieben
+                    cardInfoArr[j] = singleLineSubstring;
+                    j++;
+                    singleLineSubstring = strtok(nullptr, "|");
+                }
+
+                //initalising new Card Object
+                Cards newCard;
+
+                //setting Card Attribute
+                newCard.setName(cardInfoArr[0]);
+                newCard.setMana(cardInfoArr[1]);
+                newCard.setCmc(cardInfoArr[2]);
+                newCard.setType(cardInfoArr[3]);
+                newCard.setCount(cardInfoArr[4]);
+
+                //add Card in card List
+                cardList.push_back(newCard);
+            }
+
+        };
+
+        void readReference() {
+            ifstream reference(referenceFileName);
+
+            string singleLine;
+
+            while (getline(reference, singleLine)) {
+                referenceList.push_back(singleLine);
+            }
+            reference.close();
+        }
+
+        void writeListToFile(list<Cards> listToWrite, string destinationFileName) {
+
+            ofstream cardWrite(destinationFileName);
+
+            for(Cards c : listToWrite) {
+                cardWrite << c.getName() << "|" << c.getMana() << "|" << c.getCmc() << "|" << c.getType() << "|" << c.getCount() << "\n";
+            }
+
+            cardWrite.close();
+
+        }
+
+        void restoreIndividualCards() {
+            for (Cards card : cardList) {
+                for (string str : referenceList) {
+                    int l_dist = computeLevenshteinDistance(card.getName(), str);
+
+                    if(l_dist < card.getName().length() * L_TOLERANCE) {
+                        cout << "Repaired card: " << str << endl;
+                        repairedCardsAmount++;
+
+                        card.setName(str);
+                        repairedCards.push_back(card);
+                        break;
+                    }
+                }
+            }
+        }
+
+        void printRepairStats(){
+
+            cout << "scrambled cards: " << totalCardsAmount << endl;
+            cout << "repaired cards: " << repairedCardsAmount << endl;
+        }
+
+};
\ No newline at end of file
diff --git a/Aufgabe1/scrambled.txt b/Aufgabe1/scrambled.txt
new file mode 100644
index 0000000000000000000000000000000000000000..182f23bab929a0d807473dbe46068c769c81b1b2
--- /dev/null
+++ b/Aufgabe1/scrambled.txt
@@ -0,0 +1,1749 @@
+Blue Elem?ntal lBat?|{U}|1|Instant|37
+Clone|{3}{U}|4|Creature — Shapeshifter|15
+Crystal Rdo|{1}|1|Artifact|4
+Darkpac?|{B}{B}{B}|3|Sorcery|1
+Dingus Eg?|{4}|4|Artifact|48
+Darogn Whelp|{2}{R}{R}|4|Creature — Dragon|40
+Dra?n ?ower|{U}{U}|2|Sorcery|37
+Drudg??Skeelon?s|{1}{B}|2|Creature — Skeleton|56
+Funguasur|{3}{G}|4|Creature — Fungus Lizard|42
+Holy Armor|{W}|1|Enchantment — Aura|5
+Howl fr?m Beyond|{X}{B}|1|Instant|21
+Ill?sinoary Mask|{2}|2|Artifact|59
+Inivsbiility|{U}{U}|2|Enchantment — Aura|31
+Ivor? Cup|{1}|1|Artifact|44
+Ja?e Moonlith|{4}|4|Artifact|40
+Lance|{W}|1|Enchantment — Aura|52
+Lifetap|{U}{U}|2|Enchantment|45
+Light?in gBolt|{R}|1|Instant|57
+Lo?d of Atlantis|{U}{U}|2|Creature — Merfolk|51
+Me?a Pe?saus|{1}{W}|2|Creature — Pegasus|45
+Mo?s's Goblin aRide?r|{R}|1|Creature — Goblin|48
+Pahnta?malT er?ani|{U}{U}|2|Enchantment — Aura|8
+Raise Daed|{B}|1|Sorcery|51
+Sa?rifiec|{B}|1|Instant|58
+StoneG iant|{2}{R}{R}|4|Creature — Giant|39
+Stream o fLif?|{X}{G}|1|Sorcery|49
+?Trror|{1}{B}|2|Instant|16
+Time Valut|{2}|2|Artifact|57
+Verduran E?cahntrses|{1}{G}{G}|3|Creature — Human Druid|57
+Veteran Bodygaurd|{3}{W}{W}|5|Creature — Human|38
+Warp ?r?iafct|{B}{B}|2|Enchantment — Aura|23
+Wa?er Elmeentla|{3}{U}{U}|5|Creature — Elemental|9
+Weakenss|{B}|1|Enchantment — Aura|51
+lAi Baba|{R}|1|Creature — Human Rogue|1
+B?azarof? Baghadd|1|1|Land|50
+Cuombajj ?itches|{B}{B}|2|Creature — Human Wizard|17
+Fishilver O?l|{1}{U}|2|Enchantment — Aura|5
+eMrhcan tShip|{U}|1|Creature — Human|60
+Ol? Man of the ?ea|{1}{U}{U}|3|Creature — Djinn|34
+Piety|{2}{W}|3|Instant|25
+Repen?ant? ?a?ksmith|{1}{W}|2|Creature — Human|35
+tSone-Throwign D?vil?|{B}|1|Creature — Devil|22
+Wyluli Wolf|{1}{G}|2|Creature — Wolf|53
+Dwarven?Weaponmstih|{1}{R}|2|Creature — Dwarf Artificer|19
+Phyerx?an Gre??mns|{2}{B}|3|Creature — Gremlin|29
+Triskleoin|{6}|6|Artifact Creature — Construct|39
+XeincP olteregist|{1}{B}{B}|3|Creature — Spirit|36
+Adun Okaenshi?ld|{B}{R}{G}|3|Legendary Creature — Human Knight|19
+??rathi eBrserk?r|{2}{R}{R}{R}|5|Creature — Human Berserker|44
+Beassto f Bogardan|{4}{R}|5|Creature — Beast|44
+B?a?k? ana Bat?ery|{4}|4|Artifact|54
+?lu eanMa Battery|{4}|4|Artifact|17
+Chai?s?ofMe?phisotpheels|{1}{B}|2|Enchantment|17
+Coocon|{G}|1|Enchantment — Aura|49
+riCsonm Kobolds|{0}|0|Creature — Kobold|13
+Eq?in??|{W}|1|Enchantment — Aura|49
+Hype?ion ?lakcsimth|{1}{R}{R}|3|Creature — Human Artificer|40
+Jux?a?soe|{3}{U}|4|Sorcery|17
+K?s?mir th? oLne Wolf|{4}{W}{U}|6|Legendary Creature — Human Warrior|51
+Ko?old Drill?Sergeant|{1}{R}|2|Creature — Kobold Soldier|38
+L?n dTax|{W}|1|Enchantment|58
+arMhalut Elsd?agon|{3}{R}{R}{G}|6|Legendary Creature — Elf Warrior|54
+Moss oMns?tr|{3}{G}{G}|5|Creature — Elemental|41
+N?trh Star|{4}|4|Artifact|40
+??va Pentac?e|{4}|4|Artifact|2
+Pi?ie Queen|{2}{G}{G}|4|Creature — Faerie|7
+Psy?ihc P?rge|{U}|1|Sorcery|47
+Ramie?? ?eiPetro|{3}{U}{B}{B}|6|Legendary Creature — Human Pirate|18
+eRevr?eratino|{2}{U}{U}|4|Instant|17
+Ring of Immotrals|{5}|5|Artifact|38
+S?afarer's Quay|1|1|Land|48
+Shield ?all|{1}{W}|2|Instant|11
+Spinal Villain|{2}{R}|3|Creature — Beast|27
+Takklemaggot|{2}{B}{B}|4|Enchantment — Aura|24
+The W?etch?d|{3}{B}{B}|5|Creature — Demon|47
+Time Ele?ent?l|{2}{U}|3|Creature — Elemental|41
+Tundra ?olves|{W}|1|Creature — Wolf|4
+Undert?w|{2}{U}|3|Enchantment|56
+Utname?W ilds|{2}{G}|3|Sorcery|44
+Wi?te?Mana Battery|{4}|4|Artifact|4
+W?od Elemental|{3}{G}|4|Creature — Elemental|33
+Exorcis?|{W}{W}|2|Creature — Human Cleric|54
+Golbin Cavs?|{1}{R}{R}|3|Enchantment — Aura|2
+Goblin Wizard|{2}{R}{R}|4|Creature — Goblin Wizard|46
+Mars? Viepr|{3}{G}|4|Creature — Snake|51
+aRg Ma?|{2}{B}{B}|4|Creature — Human Minion|36
+So?r?w's Pat?|1|1|Land|29
+Spitting Slug|{1}{G}{G}|3|Creature — Slug|16
+?weo? fo C??eia?l|{2}|2|Artifact|58
+Wormwo?? T?eefol?|{3}{G}{G}|5|Creature — Treefolk|48
+BrssaclawO rcs|{2}{R}|3|Creature — Orc|17
+Bre?ding Pit|{3}{B}|4|Enchantment|28
+De?if's?Coen|{0}|0|Artifact|18
+Farrelite P?iest|{1}{W}{W}|3|Creature — Human Cleric|31
+?ymn ot Tourach|{B}{B}|2|Sorcery|30
+Initiates of?theE bon Hand|{B}|1|Creature — Cleric|5
+Ringo f Renewal|{5}|5|Artifact|43
+S?dn S?lso|1|1|Land|21
+Arena|1|1|Land|25
+Merfolk Me?mei?st|{1}{U}|2|Creature — Merfolk Wizard|40
+Arrest|{2}{W}|3|Enchantment — Aura|14
+oCnsum epS?rit|{X}{1}{B}|2|Sorcery|17
+Dreg?a?ngler|{1}{B}{G}|3|Creature — Plant Zombie|32
+Sca?egnign Ozo?|{1}{G}|2|Creature — Ooze|57
+Mgaister o ?Worth|{4}{W}{B}|6|Creature — Angel|46
+Agneli??Skirmish?r|{4}{W}{W}|6|Creature — Angel|48
+Raks?sa a?izi?r|{2}{B}{G}{U}|5|Creature — Cat Demon|11
+Dragoncsale Gen?ral|{3}{W}|4|Creature — Human Warrior|40
+F?amruesh?Rider|{4}{R}|5|Creature — Human Warrior|31
+lA?hma?rre?t?High ?Abie?r|{5}{U}{U}|7|Legendary Creature — Sphinx|31
+Valrouos Satnce|{1}{W}|2|Instant|60
+Drea ?Defile?|{6}{B}|7|Creature — Eldrazi|4
+Adarka ?rent?nel|{5}|5|Artifact Creature — Soldier|49
+Aegis ?f hteM eek|{3}|3|Artifact|30
+Blniking Spii?t|{3}{W}|4|Creature — Spirit|47
+Bone? hama?|{2}{R}{R}|4|Creature — Giant Shaman|34
+aCll t? Arms|{1}{W}|2|Enchantment|12
+Centaur Arch?r|{1}{R}{G}|3|Creature — Centaur Archer|54
+Di?b?lic V?i?on|{U}{B}|2|Sorcery|8
+F?ameS pirit|{4}{R}|5|Creature — Elemental Spirit|2
+lFare|{2}{R}|3|Instant|21
+Fo?k fo the P?nes|{4}{G}|5|Creature — Dryad|19
+?Gacia ?Creavsses|{2}{R}|3|Enchantment|60
+Goblin L?re|{3}|3|Artifact|41
+Gob?inM ut?nt|{2}{R}{R}|4|Creature — Goblin Mutant|52
+GoblinS ????nm|{3}{R}|4|Creature — Goblin|12
+Hem?tit??Talisman|{2}|2|Artifact|37
+Ice lFoe|1|1|Land|4
+Iceuqake|{1}{B}{B}|3|Sorcery|35
+Krovkian?Fetish|{2}{B}|3|Enchantment — Aura|8
+?roivkan Socreer?|{2}{U}|3|Creature — Human Wizard|32
+Krovi?an? amipre|{3}{B}{B}|5|Creature — Vampire|48
+Lim-ûD?lsCo hotr|{1}{B}{B}|3|Creature — Zombie|26
+?i-mDûls'H ex|{1}{B}|2|Enchantment|13
+oL?t?O?edr ofJ?arkeld|{2}{W}{W}|4|Creature — Human Knight|34
+Malcahie tTalisma?|{2}|2|Artifact|9
+Monsono|{2}{R}{G}|4|Enchantment|54
+uMdsl?de|{2}{R}|3|Enchantment|12
+Msuiican|{2}{U}|3|Creature — Human Wizard|24
+Nacre Tals?man|{2}|2|Artifact|18
+Orcish?Librarian|{1}{R}|2|Creature — Orc|58
+Pola rKrak?n|{8}{U}{U}{U}|11|Creature — Kraken|5
+oPx|{B}{B}{B}|3|Sorcery|45
+Rya of Commadn|{3}{U}|4|Instant|16
+Se?zures|{1}{B}|2|Enchantment — Aura|58
+Snow Fortress|{5}|5|Artifact Creature — Wall|28
+Sn?w? ound|{2}{W}|3|Creature — Hound|40
+Staf? of t?? Ages|{3}|3|Artifact|7
+Stonehands|{2}{R}|3|Enchantment — Aura|27
+Tim eBomb|{4}|4|Artifact|37
+rUza'?B au?le|{0}|0|Artifact|20
+Vl?dt|1|1|Land|53
+Walknig?aWl?|{4}|4|Artifact Creature — Wall|9
+Wh?te Scarba|{W}|1|Enchantment — Aura|57
+Ambush Party|{4}{R}|5|Creature — Human Rogue|25
+A?aba Bodyguadr|{3}{R}|4|Creature — Minotaur|55
+Baki's Cruse|{2}{U}{U}|4|Sorcery|6
+Chian ?tassi|{U}|1|Instant|54
+Didge?idoo|{1}|1|Artifact|27
+Drudge Sp?el|{B}{B}|2|Enchantment|9
+Dry Spell|{1}{B}|2|Sorcery|39
+Fero?'sB an|{6}|6|Artifact|18
+??lk o??An-Hvava|{G}|1|Creature — Human|29
+Koskun aFlls|{2}{B}{B}|4|World Enchantment|21
+?es ?Facoln|{1}{W}|2|Creature — Bird|33
+Orcis? Mnie|{1}{R}{R}|3|Enchantment — Aura|49
+Prmia? Orde?|{2}{G}{G}|4|Enchantment|54
+R??e?al|{2}{G}|3|Sorcery|50
+Trade Caravan|{W}|1|Creature — Human Nomad|50
+Bladuvian Dead|{3}{B}|4|Creature — Zombie|13
+Choas Harleqi?n|{2}{R}{R}|4|Creature — Human|10
+Cnotaigon|{3}{B}{B}|5|Instant|8
+Froce of Will|{3}{U}{U}|5|Instant|59
+eHlm of Oebdi?nce|{4}|4|Artifact|15
+Inhe?itance|{W}|1|Enchantment|30
+Kejlodran Outpsot|1|1|Land|6
+Lirbaryo f Lat-Na?|{4}{U}|5|Sorcery|10
+Nobl? ?teeds|{2}{W}|3|Enchantment|37
+P?y??xina Boon|{2}{B}|3|Enchantment — Aura|5
+Ritu?l of theM achine|{2}{B}{B}|4|Sorcery|20
+Slo?Grail|{3}|3|Artifact|38
+St?rm?Cauldron|{5}|5|Artifact|30
+StormC?row|{1}{U}|2|Creature — Bird|39
+T?o?ado|{4}{G}|5|Enchantment|1
+Wil dAsethi?|{2}{W}|3|Creature — Bird|48
+Yav?maay?Ants|{2}{G}{G}|4|Creature — Insect|28
+Su?por|{2}{B}|3|Sorcery|33
+Dsimiss|{2}{U}{U}|4|Instant|45
+Gaae's B?es?sng|{1}{G}|2|Sorcery|31
+?ana eLak|{1}{U}|2|Instant|26
+Skirk?Marauder|{1}{R}|2|Creature — Goblin|11
+Glacial R?a|{1}{R}|2|Instant — Arcane|45
+Surging Flame|{1}{R}|2|Instant|20
+Shichiu?kuij? Dra?gn|{6}{R}{R}{R}|9|Summon — Dragon|34
+Fra??ranl xaElta?ion|{U}{U}{U}{U}|4|Sorcery|39
+A?a?rm|{1}{W}|2|Instant|11
+Amber Prison|{4}|4|Artifact|53
+uAs?ic?o?s?Ancest?r|{3}{W}|4|Creature — Human Cleric|42
+Blind Fury|{2}{R}{R}|4|Instant|10
+uBildre's Bane|{X}{X}{R}|1|Sorcery|20
+C?ariot oft h? uSn|{3}|3|Artifact|17
+Curse dTotme|{2}|2|Artifact|10
+Di?rwater Wra?hi|{3}{B}|4|Creature — Wraith|13
+?ner?yV ro?tx|{3}{U}{U}|5|Enchantment|25
+Final Fortune|{R}{R}|2|Instant|10
+Gb?ln? Elite Ifnantry|{1}{R}|2|Creature — Goblin Warrior|1
+L?r ?foP rey|{2}{G}{G}|4|Instant|43
+Maro|{2}{G}{G}|4|Creature — Elemental|49
+?elesseS piri?|{3}{W}{W}|5|Creature — Angel Spirit|17
+Pat?gi aGo?em|{4}|4|Artifact Creature — Golem|51
+Pea?r?Drgaon|{4}{W}{W}|6|Creature — Dragon|17
+P?isamtic Boon|{X}{W}{U}|2|Instant|57
+Restless ?ea?|{1}{B}|2|Creature — Skeleton|17
+Shdoaw Guildmag?|{B}|1|Creature — Human Wizard|52
+S??Di?am?nd|{2}|2|Artifact|4
+Superior ?umber?|{G}{G}|2|Sorcery|47
+Talruum ??ontaur|{2}{R}{R}|4|Creature — Minotaur Berserker|15
+Te?eri' sDrake|{2}{U}|3|Creature — Drake|23
+eTlim'oTr'? ?dict|{R}|1|Instant|22
+?rbogr Panthe?|{2}{B}|3|Creature — Nightstalker Cat|21
+a?rd ?o Lights|{W}{W}|2|Enchantment — Aura|34
+Zhalfi?i nCommanedr|{2}{W}|3|Creature — Human Knight|51
+Ovinoma?c?r|{2}{U}|3|Creature — Human Wizard|8
+lBank??tof Nigth|{1}{B}{B}|3|Enchantment|22
+Fierlbsat|{4}{R}{R}|6|Instant|2
+Goblni Recruiter|{1}{R}|2|Creature — Goblin|17
+Gosasme?rCh?ins|{W}{W}|2|Enchantment|47
+Inferna?H arvet?|{1}{B}|2|Sorcery|13
+Juju Bublbe|{1}|1|Artifact|22
+?agm? Mi??|{1}|1|Artifact|58
+Sun Cla?p|{1}{W}|2|Enchantment — Aura|60
+Suq'Ata? nacer|{2}{R}|3|Creature — Human Knight|2
+Thre? Wishse|{1}{U}{U}|3|Instant|43
+?ir?g?le of War|{1}|1|Artifact|11
+?ampiricT utor|{B}|1|Instant|47
+War?ror's Honor|{2}{W}|3|Instant|50
+WatesproutD jinn|{2}{U}{U}|4|Creature — Djinn|21
+Blessed Reversal|{1}{W}|2|Instant|32
+Bu?ni?g Colak|{R}|1|Sorcery|46
+Cr?el Fate|{4}{U}|5|Sorcery|33
+Fruit?o?|{G}|1|Sorcery|5
+H?lkin gGb?lin|{1}{R}|2|Creature — Goblin|23
+Jungle Li?n|{G}|1|Creature — Cat|23
+Natur?l Spring|{3}{G}{G}|5|Sorcery|25
+Rgaing Cougar|{2}{R}|3|Creature — Cat|25
+Willow Dryad|{G}|1|Creature — Dryad|42
+Golbin aWrchief?vAatar|1|1|Vanguard|12
+Lzyo?da, the Blood?Witch Avatar|1|1|Vanguard|1
+?aster?of ?h e?il dHunt?Avatar|1|1|Vanguard|57
+aRshka Gol?dn Cub Avatar|1|1|Vanguard|54
+Selenia|1|1|Vanguard|58
+Sisay|1|1|Vanguard|17
+Sq??e|1|1|Vanguard|16
+Stalki?g Tiger?vAa?ar|1|1|Vanguard|25
+Aboroth|{4}{G}{G}|6|Creature — Elemental|55
+A?gelic Renew?l|{1}{W}|2|Enchantment|1
+Avizoa|{3}{U}|4|Creature — Jellyfish|60
+eBnalish Mis??onary|{W}|1|Creature — Human Cleric|16
+Cirlcnig?Vultures|{B}|1|Creature — Bird|45
+Desperate?a?mbit|{R}|1|Instant|22
+Downr??ft|{2}{G}|3|Enchantment|21
+Ftaal Blow|{B}|1|Instant|31
+eHat Stroke|{2}{R}|3|Enchantment|3
+Hi?den Horrro|{1}{B}{B}|3|Creature — Horror|47
+Lava H?u?ds|{2}{R}{R}|4|Creature — Hound|14
+Marax?s ofK ?ld|{4}{R}{R}|6|Legendary Creature — Human Warrior|43
+Peac?keepe?|{2}{W}|3|Creature — Human|38
+eSrenity|{1}{W}|2|Enchantment|57
+oTlarian ?erpent|{5}{U}{U}|7|Creature — Serpent|9
+Re?e?nnt|{4}{B}|5|Creature — Spirit|36
+L uuB, ?aster-a?A-rms|{5}{R}|6|Legendary Creature — Human Soldier Warrior|1
+Silent Spectre|{4}{B}{B}|6|Creature — Specter|35
+Loust Bloom|1|1|Artifact|39
+Demigdo ofR?evenge|{B/R}{B/R}{B/R}{B/R}{B/R}|5|Creature — Spirit Avatar|32
+Bood??ord of Vaasogth|{3}{B}{B}|5|Creature — Vampire Warrior|49
+Can?ivalHe lsltede|{4}{B}{R}|6|Creature — Nightmare Horse|10
+?reasury T?rlul|{4}{W}{B}|6|Creature — Thrull|7
+Idnule?nt Tormentor|{3}{B}{B}|5|Creature — Demon|16
+Herald ?f Anafenza|{W}|1|Creature — Human Soldier|9
+Kheur Lich ?ord|{3}{B}{G}{U}|6|Creature — Zombie Wizard|47
+Narse,tE?lnightened Msater|{3}{U}{R}{W}|6|Legendary Creature — Human Monk|27
+Teum? As?ednnayc|{G}{U}{R}|3|Enchantment|2
+Trail of Myseryt|{1}{G}|2|Enchantment|24
+Bruta lHordehceif|{3}{B}|4|Creature — Orc Warrior|7
+Ojutai? Sou? of Winter|{5}{W}{U}|7|Legendary Creature — Dragon|28
+Rally?the Ancestosr|{X}{W}{W}|2|Instant|3
+Anfaenza,?Ki-nTree ?pirit|{W}{W}|2|Legendary Creature — Spirit Soldier|56
+Su?scorc??Reg?tn|{3}{W}{W}|5|Creature — Dragon|12
+Li?aina, eH???ic?l Hae?er|{1}{B}{B}|3|Legendary Creature — Human Cleric|31
+Mizzimu Meddler|{2}{U}|3|Creature — Vedalken Wizard|29
+Ta?ent o fth Tee?epath|{2}{U}{U}|4|Sorcery|53
+Traig c?rroganec|{3}{W}{W}|5|Sorcery|13
+Akuom Hellkiet|{4}{R}{R}|6|Creature — Dragon|6
+lBigth Heredr|{5}|5|Creature — Eldrazi Processor|40
+Canopy Vista|1|1|Land — Forest Plains|39
+Kiora, Matser of the epDths|{2}{G}{U}|4|Planeswalker — Kiora|9
+Alt?r of Dementia|{2}|2|Artifact|11
+Blood?Pet|{B}|1|Creature — Thrull|20
+rBoken aFll|{2}{G}|3|Enchantment|53
+CalderaL aek|1|1|Land|32
+C?onw?of Flmaes|{R}|1|Enchantment — Aura|45
+?auth iMind?rpepr|{3}{B}|4|Creature — Dauthi Minion|30
+F?laamrid|{1}{U}{U}|3|Creature — Squid Beast|10
+Gerrard's Batt?e rCy|{W}|1|Enchantment|21
+Helm ofP ossess?on|{4}|4|Artifact|6
+Jackal Pup|{R}|1|Creature — Hound|45
+Kindle|{1}{R}|2|Instant|37
+Ligh tof Day|{3}{W}|4|Enchantment|34
+Marble T?tan|{3}{W}|4|Creature — Giant|21
+Natur'es Reo?lt|{3}{G}{G}|5|Enchantment|2
+Phryxeai? Gri?oire|{3}|3|Artifact|46
+Pnicher Beetl?s|{2}{G}|3|Creature — Insect|38
+Pr?cognition|{4}{U}|5|Enchantment|48
+Propaganda|{2}{U}|3|Enchantment|49
+Raelit ?Ancohr|{1}{G}|2|Instant|17
+Reanimate|{B}|1|Sorcery|45
+Recycle|{4}{G}{G}|6|Enchantment|49
+Rootwat?? Diver|{U}|1|Creature — Merfolk|28
+Scragnoth|{4}{G}|5|Creature — Beast|8
+???shrou dR?ng?r|{G}|1|Creature — Elf|25
+??ltar? Cr?sader|{2}{W}|3|Creature — Soltari Knight|5
+Wall o? ?iffu?ion|{1}{R}|2|Creature — Wall|38
+uDt? Cra?ler|{R}|1|Creature — Insect|17
+nI?ruderA larm|{2}{U}|3|Enchantment|16
+Invasion Plans|{2}{R}|3|Enchantment|17
+oM xDia?ond|{0}|0|Artifact|15
+Po?tcullis|{4}|4|Artifact|35
+Provkoe|{1}{G}|2|Instant|32
+Rebound|{1}{U}|2|Instant|58
+Samite B??ss?ng|{W}|1|Enchantment — Aura|9
+Scapegaot|{W}|1|Instant|37
+Sky?hroud Arhcer|{G}|1|Creature — Elf Archer|39
+Volra?t'sS haepshiftre|{1}{U}{U}|3|Creature — Shapeshifter|46
+Vloarth's ?Srognhlo?|1|1|Legendary Land|42
+bAyssal ?giht?atlker|{3}{B}|4|Creature — Nightstalker|38
+Angleo f Fury|{4}{W}{W}|6|Creature — Angel|10
+rAmored Galleo?|{4}{U}|5|Creature — Human Pirate|34
+Goblin Firset?r?rt|{R}|1|Creature — Goblin|53
+Harmony of N?ture|{2}{G}|3|Sorcery|38
+O?re Taskmatser|{3}{R}|4|Creature — Ogre|18
+?gre War?ior|{3}{R}|4|Creature — Ogre Warrior|49
+Pr?dato?y?Nih?ts?alke?|{3}{B}{B}|5|Creature — Nightstalker|40
+Rall? the Tro?sp|{W}|1|Instant|21
+aRev?ous Rats|{1}{B}|2|Creature — Rat|38
+S?e?m? atapul?|{3}{W}{W}|5|Creature — Human Soldier|51
+y?lvna Bsailisk|{3}{G}{G}|5|Creature — Basilisk|29
+Talas?Explore?|{1}{U}|2|Creature — Human Pirate Scout|7
+iVndciate|{1}{W}{B}|3|Sorcery|44
+Mni'ds Deisre|{4}{U}{U}|6|Sorcery|19
+G?blin?eWled?|{R}|1|Creature — Goblin Artificer|9
+H?nna, Sh?p'?N avig?otr|{1}{W}{U}|3|Legendary Creature — Human Artificer|41
+El?sh N?rn, Garnd?Cenobite|{5}{W}{W}|7|Legendary Creature — Praetor|55
+Du?lcas?er ??ge|{1}{R}{R}|3|Creature — Human Wizard|22
+?quilibrium|{1}{U}{U}|3|Enchantment|56
+Mana B?each|{2}{U}|3|Enchantment|1
+Oath of Scholars|{3}{U}|4|Enchantment|42
+?ay??rd?Suo?|{2}{U}{U}|4|Creature — Spirit|44
+Wh?ptognu eFr?g|{2}{U}|3|Creature — Frog|50
+Anarchits|{4}{R}|5|Creature — Human Wizard|5
+?lowstone Flood|{3}{R}|4|Sorcery|59
+Mogg Assassn?|{2}{R}|3|Creature — Goblin Assassin|1
+Parox?sm|{1}{R}|2|Enchantment — Aura|17
+Sabertooth W?ver?|{4}{R}|5|Creature — Drake|47
+S?l?ding Salamandre|{2}{R}|3|Creature — Salamander|52
+Elve? Palis?d?|{G}|1|Enchantment|43
+Skyshroud War?Beast|{1}{G}|2|Creature — Beast|41
+Mi?ldses Automa?on|{4}|4|Artifact Creature — Construct|9
+W?rkohrse|{6}|6|Artifact Creature — Horse|7
+Lexiv?re|{3}{W}|4|Summon — Beast|54
+SexA ppela|{W}|1|Instant|51
+Cl?m-I-Am|{2}{U}|3|Summon — Clamfolk|9
+Car?bo?r? Car?pa?c|{5}{G}|6|Enchant Creature|14
+Growt?hpSurt|{1}{G}|2|Instant|35
+Squirrel Fram|{2}{G}|3|Enchantment|56
+C?oas Confetti|{4}|4|Artifact|41
+G?ant Fan|{4}|4|Artifact|35
+Jac??in-?he?Mox|{0}|0|Artifact|10
+?Saut?a o?t he Ages|{4}|4|Artifact|37
+Songtsitcher|{W}|1|Creature — Human Cleric|8
+Annlu|{U}|1|Instant|48
+Catalog|{2}{U}|3|Instant|46
+Hibernation|{2}{U}|3|Instant|24
+La?n??|{1}{U}|2|Enchantment — Aura|51
+Lil?nig Re??rin|{1}{U}|2|Enchantment|24
+PnderellD ra?k|{3}{U}|4|Creature — Drake|37
+Tel?eathy|{U}|1|Enchantment|54
+Veil? dSrepent|{2}{U}|3|Enchantment|36
+A??ssal Hroror|{4}{B}{B}|6|Creature — Horror|46
+Be?ulo|{2}{B}{B}|4|Sorcery|56
+Dark ?atchling|{4}{B}{B}|6|Creature — Horror|28
+Looming ?hade|{2}{B}|3|Creature — Shade|28
+Parasitc iBond|{3}{B}|4|Enchantment — Aura|16
+?ec?u?ive Wight|{3}{B}|4|Creature — Zombie Minion|2
+Spi?ndF ulke|{2}{B}|3|Creature — Worm Horror|19
+aVmpirci ?mrbac?|{2}{B}{B}|4|Enchantment — Aura|45
+?ebulid|{B}|1|Creature — Horror|7
+Wicth Engin?|{5}{B}|6|Creature — Horror|42
+Yawgmtoh's dEict|{1}{B}|2|Enchantment|47
+Acdiic?Soil|{2}{R}|3|Sorcery|52
+Brand|{R}|1|Instant|60
+Brava?o|{1}{R}|2|Enchantment — Aura|43
+aF?u Ltin?|{X}{R}{R}|2|Instant|5
+Goblin aWr uBgg?|{1}{R}|2|Creature — Goblin|34
+u?tmaneuve?|{X}{R}|1|Instant|27
+Socrai Wrmu|{4}{R}|5|Creature — Wurm|55
+cSrap|{2}{R}|3|Instant|24
+Shiv' sEmbrace|{2}{R}{R}|4|Enchantment — Aura|56
+Hidden Ancients|{1}{G}|2|Enchantment|6
+Venomuos Fangs|{2}{G}|3|Enchantment — Aura|47
+i?ldDo gs|{G}|1|Creature — Hound|17
+?Brrin's ?odex|{4}|4|Artifact|47
+Lifleien|{5}|5|Artifact|24
+Noetic Sa?els|{4}|4|Artifact|9
+Phyreiax nCo?ossus|{7}|7|Artifact Creature — Golem|31
+Purging cSythe|{5}|5|Artifact|9
+Bru? tof Eneryg|{W}|1|Instant|22
+eDvotu aHrpi?t|{W}|1|Creature — Human|15
+Hope and Glory|{1}{W}|2|Instant|43
+Plnaar Coll?ase|{1}{W}|2|Enchantment|1
+Aura Flxu|{2}{U}|3|Enchantment|8
+Te?he?dr Skirge|{2}{B}|3|Creature — Imp|35
+Im?ending Disaster|{1}{R}|2|Enchantment|20
+Damping E?n?ne|{4}|4|Artifact|52
+Rin go?G ?x|{3}|3|Artifact|38
+Treet? pVlialge|1|1|Land|37
+Eig?tfo?dM a?z|{2}{W}|3|Instant|33
+hSu Foot Slode?rs|{2}{W}|3|Creature — Human Soldier|27
+?u eMgn, Wu General|{3}{U}{U}|5|Legendary Creature — Human Soldier|26
+Sun Ce,Yo ungCo ?querre|{3}{U}{U}|5|Legendary Creature — Human Soldier|25
+Wu Warsh?p|{2}{U}|3|Creature — Human Soldier|42
+Stone Caatpult|{4}{B}|5|Creature — Human Soldier|21
+Wei?Infanrty|{1}{B}|2|Creature — Human Soldier|23
+Wie Night aRider?|{2}{B}{B}|4|Creature — Human Soldier|43
+Young Wei Recruits|{1}{B}|2|Creature — Human Soldier|35
+Zhang Lioa,H ero ?f Hefie|{4}{B}{B}|6|Legendary Creature — Human Soldier|10
+Burnin?F ?el??|{4}{R}|5|Sorcery|13
+Cont??l of th? Cuort|{1}{R}|2|Sorcery|15
+oDng Zhou, the Tyran?|{4}{R}|5|Legendary Creature — Human Soldier|29
+oZdiac Goat|{R}|1|Creature — Goat|40
+S?oils o? ?ictory|{2}{G}|3|Sorcery|5
+Zodi?c Rbabit|{G}|1|Creature — Rabbit|35
+Feldgling Osprey|{U}|1|Creature — Bird|9
+Rayne, Acade?y Ch?ncellr?|{2}{U}|3|Legendary Creature — Human Wizard|47
+Scent of Brine|{1}{U}|2|Instant|36
+eTlepathi? Spie?|{2}{U}|3|Creature — Human Wizard|57
+Treacheyr|{3}{U}{U}|5|Enchantment — Aura|60
+Body Snatcher|{2}{B}{B}|4|Creature — Minion|12
+Ph?rexian ?oniotr|{3}{B}|4|Creature — Skeleton|57
+Soul?eFast|{3}{B}{B}|5|Sorcery|54
+A?eehr Sti?g|{3}{R}|4|Enchantment|27
+Flmae Jet|{1}{R}|2|Sorcery|55
+Reclkess Abandon|{R}|1|Sorcery|16
+Elivsh Lokootu|{G}|1|Creature — Elf|39
+M??tan'isD ecree|{3}{G}|4|Sorcery|42
+?latrops|{3}|3|Artifact|19
+Masticore|{4}|4|Artifact Creature — Masticore|52
+Scryi?g Glass|{2}|2|Artifact|54
+Thran ?y?mao|{4}|4|Artifact|22
+Ro?al Falcon|{1}{W}|2|Creature — Bird|17
+P??de?fo?Lions|{3}{G}{G}|5|Creature — Cat|7
+Charm Peddler|{W}|1|Creature — Human Spellshaper|57
+?rsobsow Inf?ntr?|{1}{W}|2|Creature — Human Soldier Archer|31
+Nigh?wind Glidre|{2}{W}|3|Creature — Human Rebel|33
+Ramosian Commander|{2}{W}{W}|4|Creature — Human Rebel|54
+Ram?isa? eSrgeant|{W}|1|Creature — Human Rebel|46
+Soo?h?ng ?alm|{1}{W}|2|Instant|28
+Cowadric?|{3}{U}{U}|5|Enchantment|50
+De??dration|{3}{U}|4|Enchantment — Aura|58
+Port ?nspcetor|{1}{U}|2|Creature — Human|1
+Trade oRu?es|{1}{U}|2|Enchantment|47
+Alley Gifrters|{1}{B}{B}|3|Creature — Human Mercenary|18
+C?teran Su?mons|{B}|1|Sorcery|14
+Pr?meval Shambelr|{4}{B}|5|Creature — Horror Mercenary|53
+Qu?gmireL amprey|{2}{B}|3|Creature — Fish|31
+Rosue|{1}{B}|2|Instant|55
+SkulikngF?uigtvie|{2}{B}|3|Creature — Horror Mercenary|13
+Blood ouHnd|{2}{R}|3|Creature — Hound|34
+Blodo Oa?h|{3}{R}|4|Instant|44
+Cavern ?rawler|{2}{R}|3|Creature — Insect|51
+Kyren ?lider|{1}{R}|2|Creature — Goblin|17
+Uphlil Btat?e|{2}{R}|3|Enchantment|6
+lCear teh Land|{2}{G}|3|Sorcery|59
+Clo?cetiveU nocnscouis|{4}{G}{G}|6|Sorcery|32
+D?epwood Wlove?ine|{G}|1|Creature — Wolverine|25
+La?d Garnt|{1}{G}|2|Sorcery|9
+Ruhs?oo? Dry?d|{1}{G}|2|Creature — Dryad|54
+Spo?at?eosu ?e?eration|{3}{G}|4|Sorcery|57
+Hor? of Plenty|{6}|6|Artifact|34
+Hcikor yWoodlot|1|1|Land|17
+?a d?untie|{2}{B}|3|Creature — Goblin Shaman|58
+Kr?s? nW?crhief|{2}{G}|3|Creature — Beast|34
+Terminate|{B}{R}|2|Instant|8
+Go?lin Legionn?ir?|{R}{W}|2|Creature — Goblin Soldier|23
+Mgmaa ?et|{1}{R}|2|Instant|9
+Pillar of ?lame|{R}|1|Sorcery|52
+Enr?oa?hing Wastes|1|1|Land|29
+Rosat|{1}{R}|2|Sorcery|1
+Nissa's Pilg?image|{2}{G}|3|Sorcery|56
+Netter en-Dal|{W}|1|Creature — Human Spellshaper|51
+Sivvis' Valor|{2}{W}|3|Instant|53
+Voice of Tr?h?|{3}{W}|4|Creature — Angel|33
+P?a?r?ax Tide|{2}{U}{U}|4|Enchantment|32
+Seal of Removal|{U}|1|Enchantment|52
+M?nd Slash|{1}{B}{B}|3|Enchantment|37
+Mgog Toa?y|{1}{R}|2|Creature — Goblin|39
+H?r?es? Mage|{G}|1|Creature — Human Spellshaper|14
+Saprolign Clsuetr|{1}{G}|2|Enchantment|19
+Skyshroud S?ntin?l|{2}{G}|3|Creature — Elf|28
+Stampede Driver|{G}|1|Creature — Human Spellshaper|22
+Blebe's Armro|{3}|3|Artifact|55
+Bel?e's Por???|{5}|5|Artifact|52
+Rejvuen?toin Cha?emr|{3}|3|Artifact|25
+Mag?ta the Lion|{3}{W}{W}|5|Legendary Creature — Human Spellshaper|42
+Ae?xi? ZephyrM age|{3}{U}{U}|5|Legendary Creature — Human Spellshaper|31
+Mana aVpor?|{1}{U}|2|Sorcery|8
+Grele' Csaress|{1}{B}|2|Enchantment — Aura|1
+Infer?al Gene?is|{4}{B}{B}|6|Enchantment|35
+Palgue Wind|{7}{B}{B}|9|Sorcery|32
+Rebel?Ifnromer|{2}{B}|3|Creature — Human Mercenary Rebel|25
+Latulla,K ?ldon ?vreseer|{3}{R}{R}|5|Legendary Creature — Human Spellshaper|15
+Latull?'? Orders|{1}{R}|2|Enchantment — Aura|6
+Ridglenie ?gR?r|{2}{R}|3|Creature — Beast|14
+?ar?h?Boa|{G}|1|Creature — Snake|10
+Squrire lraWngler|{2}{G}{G}|4|Creature — Human Druid|21
+?rims?n co??y?e|{1}{W}|2|Creature — Human Cleric|58
+Protcteive Sphe??|{2}{W}|3|Enchantment|44
+Rout|{3}{W}{W}|5|Sorcery|11
+Saimte Minitsration|{1}{W}|2|Instant|3
+Sunscape?Apprenti?e|{W}|1|Creature — Human Wizard|51
+Cry?tal Spray|{2}{U}|3|Instant|44
+Dream Thrshu|{1}{U}|2|Creature — Bird|33
+M?tahtra nAersotat|{2}{U}{U}|4|Creature — Metathran|32
+??t|{U}|1|Instant|43
+Raibno wCo?w|{3}{U}|4|Creature — Bird|36
+S? yWe?vre|{1}{U}|2|Creature — Metathran Wizard|21
+?Anhi?iate|{3}{B}{B}|5|Instant|38
+Desp?arte Research|{1}{B}|2|Sorcery|38
+Do orD ie|{1}{B}|2|Sorcery|21
+Mournin?|{1}{B}|2|Enchantment — Aura|32
+Tia?ted?Well|{2}{B}|3|Enchantment — Aura|43
+?i?htning Dart|{1}{R}|2|Instant|33
+Obliter?te|{6}{R}{R}|8|Sorcery|12
+Aggrs??i?e Ureg|{1}{G}|2|Instant|1
+Lln??war Elite|{G}|1|Creature — Elf|23
+MigthW evaer|{1}{G}|2|Creature — Human Wizard|17
+?estock|{3}{G}{G}|5|Sorcery|51
+Sc?uti?g Trek|{1}{G}|2|Sorcery|43
+?erepn?i?e Kvau|{4}{G}|5|Creature — Kavu|21
+tSa?kingA s?as?in|{1}{U}{B}|3|Creature — Human Assassin|39
+lAl?y Glome|{6}|6|Artifact Creature — Golem|31
+Ph?rexianA lt?r|{3}|3|Artifact|43
+Ph?reiaxn Lens|{3}|3|Artifact|43
+S?a?he?lC ameo|{3}|3|Artifact|54
+iTger?ye Cameo|{3}|3|Artifact|52
+Hobble|{2}{W}|3|Enchantment — Aura|51
+?arch of Souls|{4}{W}|5|Sorcery|58
+Pollen Re?edy|{W}|1|Instant|37
+Srpuri???Deployment|{3}{W}|4|Instant|33
+?hitfing Sky|{2}{U}|3|Enchantment|38
+eDath Bomb|{3}{B}|4|Instant|22
+Nighst?ape Battlem?g?|{2}{B}|3|Creature — Zombie Wizard|58
+Noxiou??Vapros|{1}{B}{B}|3|Sorcery|30
+Phyrexian Scuat|{3}{B}|4|Creature — Zombie|21
+Plan?s?akler's F?ry|{2}{R}|3|Enchantment|48
+Gaea' s?erlad|{1}{G}|2|Creature — Elf|24
+Sa??o?th?oLno|{2}{W}{U}|4|Creature — Bird|3
+Shivan Wurm|{3}{R}{G}|5|Creature — Wurm|37
+Sete lLea Pfala?in|{4}{G}{W}|6|Creature — Elf Knight|3
+Dromar's Cave??|1|1|Land — Lair|26
+Mortify|{1}{W}{B}|3|Instant|31
+eNgate|{1}{U}|2|Instant|18
+iBtuminous Blast|{3}{B}{R}|5|Instant|31
+Coalition Flag|{W}|1|Enchantment — Aura|37
+Manac?es of eDcya|{1}{W}|2|Enchantment — Aura|12
+Spcetral Lynx|{1}{W}|2|Creature — Cat Spirit|52
+Grav eDefiler|{3}{B}|4|Creature — Zombie|50
+Lsat C??es?|{2}{B}|3|Sorcery|16
+?esoaltion Ginat|{2}{R}{R}|4|Creature — Giant|36
+Raakv?lver|{2}{R}|3|Creature — Volver|26
+A?a Disciple|{G}|1|Creature — Human Wizard|58
+Bog Gnarr|{4}{G}|5|Creature — Beast|24
+KvauMa ulre|{4}{G}{G}|6|Creature — Kavu|16
+Urbo?g Elf|{1}{G}|2|Creature — Elf Druid|58
+Con?ume Strength|{1}{B}{G}|3|Instant|25
+Last Stand|{W}{U}{B}{R}{G}|5|Sorcery|13
+Prophe?ic oB?t|{3}{U}{R}|5|Instant|39
+uPtrid Warr?or|{W}{B}|2|Creature — Zombie Soldier Warrior|31
+?u?cksi?ev?? agger|{1}{U}{R}|3|Enchantment — Aura|41
+E?blaz?ned oGlem|{2}|2|Artifact Creature — Golem|12
+Caves?of ??ilos|1|1|Land|26
+Ce?se-Fir?|{2}{W}|3|Instant|37
+Ki?tar's rat?W|{4}{W}{W}|6|Sorcery|6
+Mystic?Crusade?|{1}{W}{W}|3|Creature — Human Nomad Mystic|18
+Mystic Zealo?|{3}{W}|4|Creature — Human Nomad Mystic|18
+Pianna,N moad Captain|{1}{W}{W}|3|Legendary Creature — Human Nomad|2
+Pilgrim ofJ ustice|{2}{W}|3|Creature — Human Cleric|55
+Spher?eof T?tuh|{3}{W}|4|Enchantment|47
+Concentra?e|{2}{U}{U}|4|Sorcery|29
+Dematerialize|{3}{U}|4|Sorcery|40
+Thnki Tank|{2}{U}|3|Enchantment|14
+Unif?ingT heryo|{1}{U}|2|Enchantment|38
+B?o?dcurdler|{1}{B}|2|Creature — Horror|7
+Execute|{2}{B}|3|Instant|17
+Gha?lty Demies|{B}|1|Instant|12
+Zom?ie In?e?tatino|{1}{B}|2|Enchantment|29
+C?hnce Encounetr|{2}{R}{R}|4|Enchantment|40
+Dwarv?n Grunt|{R}|1|Creature — Dwarf|41
+Lav aBlistre|{1}{R}|2|Sorcery|18
+Mudhloe|{2}{R}|3|Instant|20
+Rites of nit?iation|{R}|1|Instant|15
+S?vage ?irecat|{3}{R}{R}|5|Creature — Elemental Cat|23
+Seiz? teh Dya|{3}{R}|4|Sorcery|49
+Shower?o fCoals|{3}{R}{R}|5|Sorcery|40
+Therm?l B?ast|{4}{R}|5|Instant|34
+T??mleb|{1}{R}|2|Sorcery|2
+Druid Lyrsit|{G}|1|Creature — Human Druid|1
+Elephnat ?mbush|{2}{G}{G}|4|Instant|52
+G?ioll aTit?a|{3}{G}{G}|5|Creature — Ape|27
+K?osan Beats|{3}{G}|4|Creature — Squirrel Beast|2
+Na??uko Mentor|{2}{G}|3|Creature — Insect Druid|20
+aDrkwtaer Egg|{1}|1|Artifact|56
+Babraria? Ring|1|1|Land|45
+Cetnaru Ga?den|1|1|Land|14
+Sk?cloud Exapnse|1|1|Land|45
+T?anscende?c?|{3}{W}{W}{W}|6|Enchantment|53
+Cephali dSa?e|{3}{U}|4|Creature — Cephalid|42
+Churning Eddy|{3}{U}|4|Sorcery|20
+oCmpuli?on|{1}{U}|2|Enchantment|32
+Go??tlyWi?ngs|{1}{U}|2|Enchantment — Aura|30
+Fcaeless Butcher|{2}{B}{B}|4|Creature — Nightmare Horror|41
+Suo? Scouger|{4}{B}|5|Creature — Nightmare Horror|24
+C??ckling ?lub|{R}|1|Enchantment — Aura|53
+r?aze dFirecta|{5}{R}{R}|7|Creature — Elemental Cat|32
+lFaming Gambit|{X}{R}|1|Instant|44
+L?nhgorn Firbeeast|{2}{R}|3|Creature — Elemental Ox Beast|60
+Overmaster|{R}|1|Sorcery|43
+Nantuko Blighctuttre|{2}{G}|3|Creature — Insect Druid|9
+T?itn?d Fiedl|1|1|Land|56
+Cagemial|{1}{W}|2|Enchantment — Aura|24
+?oma dMyh?maker|{2}{W}|3|Creature — Human Nomad Cleric|10
+rPismatic Str?nds|{2}{W}|3|Instant|27
+Spirit Cainr|{2}{W}|3|Enchantment|21
+Arcan?eTeachings|{2}{R}|3|Enchantment — Aura|17
+nIfectious ?age|{1}{R}|2|Enchantment — Aura|57
+Swelter|{3}{R}|4|Sorcery|46
+S?irilng a?ndstorm|{3}{R}|4|Sorcery|37
+Epi ?S?rug?le|{2}{G}{G}|4|Enchantment|45
+Grizzly Fate|{3}{G}{G}|5|Sorcery|36
+Kros?n Rcelamation|{1}{G}|2|Instant|44
+Krosan Wayfarer|{G}|1|Creature — Human Druid|57
+Hunting Gruonds|{G}{W}|2|Enchantment|41
+Korasn Veger|1|1|Land|27
+uAirficat?no|{2}{W}{W}|4|Enchantment|40
+Cahin of Slience|{1}{W}|2|Instant|36
+Circ?e of Solace|{3}{W}|4|Enchantment|26
+Insp?rit|{2}{W}|3|Instant|47
+Nova?Cleri?|{W}|1|Creature — Human Cleric|48
+Unified ?triek|{W}|1|Instant|34
+Waethere? Wayaref?|{W}|1|Creature — Human Nomad Cleric|15
+?hkoing?Tt?hers|{3}{U}|4|Instant|6
+?Dsruptive Pitmag?|{2}{U}|3|Creature — Human Wizard|18
+Ixd?o? ,Rela?t?yScul?tor|{3}{U}{U}|5|Legendary Creature — Human Wizard|14
+Pe?r ?er?urs?|{3}{U}|4|Sorcery|2
+R???die B?l?ogist|{1}{U}|2|Creature — Human Wizard|13
+Cove r?f Dark?ess|{1}{B}|2|Enchantment|25
+CruelR evival|{4}{B}|5|Instant|15
+Death Match|{3}{B}|4|Enchantment|56
+Dirg? of??rea?|{2}{B}|3|Sorcery|52
+Ebonblade Ra??er|{2}{B}|3|Creature — Human Cleric|29
+Frighthsrodu ?ourier|{2}{B}|3|Creature — Zombie|13
+?ead G?mes|{3}{B}{B}|5|Sorcery|60
+vOresol dCemet?ry|{1}{B}|2|Enchantment|8
+Walking Desceration|{2}{B}|3|Creature — Zombie|23
+Witehri?g ?ex|{B}|1|Enchantment — Aura|28
+Wret?hed A?urd?|{1}{B}|2|Creature — Zombie Frog Beast|48
+Brihgtstone Rtiual|{R}|1|Instant|2
+Buthcre rOgg|{4}{R}{R}{R}|7|Creature — Orgg|46
+Commadno aRid|{2}{R}|3|Instant|44
+?m?ermga??Gobln?|{3}{R}|4|Creature — Goblin Wizard|15
+?Gbl?n Seldder|{R}|1|Creature — Goblin|7
+Mana Echeos|{2}{R}{R}|4|Enchantment|12
+Pin?onit vAa?lnche|{3}{R}{R}|5|Instant|52
+SkirkP ro?pectro|{R}|1|Creature — Goblin|25
+Skittish Valesk|{6}{R}|7|Creature — Beast|47
+irBc?lroe Rangers|{G}|1|Creature — Elf Druid|3
+Elvish ?Pthc?tter|{3}{G}|4|Creature — Elf Scout|48
+E?pols?ve Veegattion|{3}{G}|4|Sorcery|1
+Krosan Gruodnhsaker|{4}{G}{G}{G}|7|Creature — Beast|55
+Lerey ?ogbeast|{2}{G}|3|Creature — Beast|34
+Silo?,s Rogue Elemental|{3}{G}{G}{G}|6|Legendary Creature — Elemental|28
+Snarling nUd?rk?|{2}{G}{G}|4|Creature — Beast|17
+Towreig? Baloth|{6}{G}{G}|8|Creature — Beast|34
+Seclud?d Setppe|1|1|Land|60
+?evn Envy?|{U}|1|Creature — Bird Soldier|6
+Demroplasm|{2}{U}|3|Creature — Shapeshifter|28
+Riptdie ?angler|{1}{U}|2|Creature — Beast|24
+GempalmI nciner?to?|{2}{R}|3|Creature — Goblin|59
+Goblin Firebug|{1}{R}|2|Creature — Goblin|42
+Evli?s Soultl?ler|{3}{G}{G}|5|Creature — Elf Mutant|2
+Quick Sliver|{1}{G}|2|Creature — Sliver|33
+Aevn Farseer|{1}{W}|2|Creature — Bird Soldier|33
+Wipe Cl?an|{1}{W}|2|Instant|39
+?ragon Wnigs|{1}{U}|2|Enchantment — Aura|10
+Detah's-Head Buzz?rd|{1}{B}{B}|3|Creature — Bird|23
+?nrage|{X}{R}|1|Instant|46
+Spark Spray|{R}|1|Instant|47
+Sulfuric orV?ex|{1}{R}{R}|3|Enchantment|48
+Br?ak Asun?er|{2}{G}{G}|4|Sorcery|31
+Dievrget ?Growht|{G}|1|Instant|36
+Tre?top ?cout|{G}|1|Creature — Elf Scout|24
+Wierwood Symbiote|{G}|1|Creature — Insect|5
+Woocdloaker|{5}{G}|6|Creature — Elf|23
+Ghos?-LitR aid?r|{2}{R}|3|Creature — Spirit|24
+Auriok tSeelshape?|{1}{W}|2|Creature — Human Soldier|7
+Aurik ?Transf?xe?|{W}|1|Creature — Human Scout|6
+Lenoni Skyhunter|{W}{W}|2|Creature — Cat Knight|6
+Loxdoon ?uinsher|{3}{W}|4|Creature — Elephant Soldier|1
+Broodstar|{8}{U}{U}|10|Creature — Beast|17
+?oriok Scavenegr|{3}{B}|4|Creature — Human Rogue|19
+p?oi?so ft ?e Vau?t|{B}|1|Instant|16
+Forg eArmor|{4}{R}|5|Instant|18
+Grab hte Reins|{3}{R}|4|Instant|44
+MassH ysteria|{R}|1|Enchantment|56
+Megatog|{4}{R}{R}|6|Creature — Atog|35
+Firesrhiek?r|{3}|3|Artifact — Equipment|12
+Lifespar kSpelb?omb|{1}|1|Artifact|46
+Lox?odn Warhammer|{3}|3|Artifact — Equipment|45
+Malachite Gol?m|{6}|6|Artifact Creature — Golem|44
+?eurok Hove?sail|{1}|1|Artifact — Equipment|21
+Psychogenic Proeb|{2}|2|Artifact|25
+Ru?t Eleme?tal|{4}|4|Artifact Creature — Elemental|43
+??yth? ?o the?Wret?hed|{2}|2|Artifact — Equipment|33
+Spel?we?e?r ?Hlix|{3}|3|Artifact|21
+ySnod ?a?c?um|{1}|1|Artifact|10
+Wiazrd R?plica|{3}|3|Artifact Creature — Wizard|45
+?linkmoth?We?l|1|1|Land|33
+Tr?e of Talse|1|1|Artifact Land|12
+Auiork Glaivemas?e?|{W}|1|Creature — Human Soldier|15
+?oulscour|{7}{W}{W}{W}|10|Sorcery|36
+S?telshaerp Appern?iec|{2}{W}{W}|4|Creature — Human Soldier|45
+Rehsape|{X}{U}{U}|2|Sorcery|35
+Murderuso Spoils|{5}{B}|6|Instant|19
+Shrievlign ?ot|{2}{B}{B}|4|Instant|39
+iVridian Aoclyte|{G}|1|Creature — Elf Shaman|46
+?iridi?? eaZlot|{G}{G}|2|Creature — Elf Warrior|27
+Chim?ircE?gg|{3}|3|Artifact|40
+Darktsele ?ru?e|{2}|2|Artifact|32
+Drill-Skimemr|{4}|4|Artifact Creature — Thopter|31
+My? ?Lndshaper|{3}|3|Artifact Creature — Myr|28
+Spawning Pti|{2}|2|Artifact|12
+Auriok S?lvagers|{3}{W}|4|Creature — Human Soldier|3
+Retlaatie|{2}{W}{W}|4|Instant|2
+Disruption Aur?|{2}{U}|3|Enchantment — Aura|23
+Hoverguard Sweeeprs|{6}{U}{U}|8|Creature — Drone|3
+Sp?ctral Sihft|{1}{U}|2|Instant|46
+Moriok Rigger|{2}{B}|3|Creature — Human Rogue Rigger|39
+Krrak-l?an Orge|{3}{R}{R}|5|Creature — Ogre|18
+Rain of?Ru??|{3}{R}{R}|5|Instant|3
+B??nger? f teh Geren Daw?|{7}{G}{G}|9|Creature — Bringer|21
+TelJ-ilad ?usitce|{1}{G}|2|Instant|50
+Virdiai? Scout|{3}{G}|4|Creature — Elf Warrior Scout|35
+Blastin gSt?aion|{3}|3|Artifact|51
+Door ot Nothingness|{5}|5|Artifact|9
+Ensouled Scimitar|{3}|3|Artifact — Equipment|23
+Grniding ?tatoin|{2}|2|Artifact|18
+Healer's Headderss|{2}|2|Artifact — Equipment|31
+Snucru?he?|{9}|9|Artifact Creature — Construct|56
+Bush?iTen?refoot|{W}|1|Creature — Human Soldier|55
+Ca?lt o Glroy|{1}{W}|2|Instant|3
+Devoted eRat?ner|{W}|1|Creature — Human Samurai|29
+oHl dthe?Line|{1}{W}{W}|3|Instant|3
+Ind?oitable i?ll|{1}{W}|2|Enchantment — Aura|18
+Kami of the Painted Road|{4}{W}|5|Creature — Spirit|35
+Ki?s?ne Blademstaer|{2}{W}|3|Creature — Fox Samurai|40
+Smaurai En?orec??|{4}{W}{W}|6|Creature — Human Samurai|55
+Cut ?he T?thrse|{2}{U}{U}|4|Sorcery|60
+Hisoka's Gu?ad|{1}{U}|2|Creature — Human Wizard|4
+Petal sof I?igsth|{4}{U}|5|Sorcery — Arcane|32
+Reweaev|{5}{U}|6|Instant — Arcane|57
+Sire of the Sotm?|{4}{U}{U}|6|Creature — Spirit|26
+Midn?gt hCovenant|{1}{B}|2|Enchantment — Aura|28
+Nzemui Sohrt?ang|{1}{B}|2|Creature — Rat Rogue|10
+Ember-F?st Zubera|{1}{R}|2|Creature — Zubera Spirit|26
+Hea?th Kami|{1}{R}|2|Creature — Spirit|32
+Hon?en o? ?Ifinite R?eg|{2}{R}|3|Legendary Enchantment — Shrine|39
+Uncontr??albl? Anger|{2}{R}{R}|4|Enchantment — Aura|36
+Buodk aG?adener|{1}{G}|2|Creature — Human Monk|13
+Kashi-?irbe Warroirs|{3}{G}{G}|5|Creature — Snake Warrior|6
+?i??-Strnu?g?oto|{6}|6|Artifact|5
+Jade Idol|{4}|4|Artifact|33
+Konda's Bnane?|{2}|2|Legendary Artifact — Equipment|48
+Long-Fo?g?oten?Go??i|{3}|3|Artifact|31
+aT?s??as?, the Dragon's Fang|{6}|6|Legendary Artifact — Equipment|58
+Tneza, Godo's ??ul|{3}|3|Legendary Artifact — Equipment|14
+Minamo, ?c?ho? at a?te?s' Eged|1|1|Legendary Land|21
+tAinlya Igpya|{5}{W}|6|Eaturecray — Igpay|10
+Emcee|{2}{W}|3|Creature — Human Rogue|60
+Little Girl|{hw}|0.5|Creature — Human Child|37
+Artful Looert|{2}{U}|3|Creature — Human Wizard|7
+Carniv?rous?Deta-hPar?to|{1}{U}|2|Creature — Bird|26
+Bad As?|{2}{B}{B}|4|Creature — Donkey Zombie|3
+F?re?el ltoA r?s|{1}{B}{B}|3|Enchantment|8
+??r?kng ?Siff|{1}{B}|2|Creature — Mummy|30
+Dumb sAs|{2}{R}|3|Creature — Donkey Barbarian|52
+B-I-N?GO-|{1}{G}|2|Creature — Hound|5
+F?t ?ss|{4}{G}|5|Creature — Donkey Shaman|12
+Ou ra?rket???sear?h Shows Tha? Plaer?sL?ike eRal?y Long Car? ?ame sSo WeM dae t?siC a?? ot?Have?the Abso?ute Long?s? CardN ame Ever ?le?entla|{1}{G}{G}|3|Creature — Elemental|14
+Shoe Tree|{4}{G}|5|Creature — Treefolk|60
+Ukta?b Kong|{5}{G}{G}{G}|8|Creature — Ape|23
+Rare?B-Gone|{2}{B}{R}|4|Sorcery|57
+Why|{1}{G}|2|Instant|25
+Urza'sH o Ttub|{2}|2|Artifact|10
+Split?Tali Miok|{1}{W}|2|Creature — Fox Cleric|8
+Call?wJ ushi|{1}{U}{U}|3|Creature — Human Wizard|31
+Jettin? Glaskstie|{4}{U}{U}|6|Creature — Spirit|4
+Minamo'? Me?dling|{2}{U}{U}|4|Instant|31
+Her'os ?e?sie|{1}{B}|2|Instant|12
+Ogre Maaruder|{1}{B}{B}|3|Creature — Ogre Warrior|34
+iSckening Sohal|{X}{B}{B}|2|Instant — Arcane|40
+???kR aidre|{1}{R}|2|Creature — Goblin Warrior|54
+Cu?ni?g Bandt?|{1}{R}{R}|3|Creature — Human Warrior|2
+Azamuik, T?eacheyrI?n?arnate|{1}{R}{R}|3|Legendary Creature — Spirit|24
+Fumiko the??owblood|{2}{R}{R}|4|Legendary Creature — Human Samurai|56
+Ishi-I?hi, Ak?i Cr?cksoht|{1}{R}|2|Legendary Creature — Goblin Warrior|60
+Harbinger ofS pr??n|{4}{G}|5|Creature — Spirit|26
+?urtian of ?ight|{1}{W}|2|Instant|25
+Nikko-Onna|{2}{W}|3|Creature — Spirit|40
+Kiri-Onna|{4}{U}|5|Creature — Spirit|39
+?ec?etekepe?|{3}{U}|4|Creature — Spirit|34
+Death Denie?|{X}{B}{B}|2|Instant — Arcane|5
+Death of a Thousand S?insg|{4}{B}|5|Instant — Arcane|59
+xEl?e into D?r??ess|{4}{B}|5|Sorcery|8
+Hnad?of Cruelty|{B}{B}|2|Creature — Human Samurai|44
+Kuon, Ogre Ascenda?t|{B}{B}{B}|3|Legendary Creature — Ogre Monk|53
+Godo?s Irregulars|{R}|1|Creature — Human Warrior|19
+Inner Fier|{3}{R}|4|Sorcery|30
+Dens? Canoyp|{1}{G}|2|Enchantment|57
+aSsyaa, Or?chi Ascendant|{1}{G}{G}|3|Legendary Creature — Snake Monk|27
+Sasaya?s Essenec|{1}{G}{G}|3|Legendary Enchantment|60
+Sh?ien of?Life's Roar|{1}{G}|2|Creature — Spirit|1
+S?ampe?ing Serow|{2}{G}{G}|4|Creature — Antelope Beast|8
+Wine of Blood and Iron|{3}|3|Artifact|37
+Mikokoro,?Ce?ter?o? the Se?|1|1|Legendary Land|33
+?ourei rHaw?|{1}{W}|2|Creature — Bird|37
+Dr?mad Purebr?d|{4}{W}|5|Creature — Camel Beast|15
+Lea?vN oT raec|{1}{W}|2|Instant|21
+ThreeD ramse|{4}{W}|5|Sorcery|11
+Zephyr Spirit|{5}{U}|6|Creature — Spirit|25
+Cligning Dakrnses|{1}{B}|2|Enchantment — Aura|15
+Helldoz?e|{3}{B}{B}{B}|6|Creature — Zombie Giant|54
+??st Gasp|{1}{B}|2|Instant|29
+?ammefrist ?Gatn|{4}{R}{R}|6|Creature — Giant Warrior|17
+Mn?imoil|{4}{R}|5|Enchantment|16
+?abertoot?A lely C?t|{1}{R}{R}|3|Creature — Cat|60
+War-Torch Gob?in|{R}|1|Creature — Goblin Warrior|27
+Gahtr? Courage|{G}|1|Instant|33
+l?utcho f the?Und?rcity|{1}{U}{U}{B}|4|Instant|16
+Dimir Cutpur??|{1}{U}{B}|3|Creature — Spirit|20
+Midnleech Mass|{5}{U}{B}{B}|8|Creature — Horror|50
+Rally ?heR gihteous|{1}{R}{W}|3|Instant|25
+Bloodle?te? Quill|{3}|3|Artifact|49
+?l?ss?G?lem|{5}|5|Artifact Creature — Golem|11
+?pectral eSacrhlgi?t|{3}|3|Artifact|25
+?rera?ion|{1}|1|Artifact|14
+aClciderm|{2}{W}{W}|4|Creature — Beast|2
+Yixli? Jalier|{1}{B}|2|Creature — Zombie Wizard|16
+To Arms!|{1}{W}|2|Instant|33
+??therplasm|{2}{U}{U}|4|Creature — Illusion|5
+Hatc?ingP la?n|{1}{U}|2|Enchantment|14
+Steamocre W?rid|{3}{U}|4|Creature — Weird|44
+Train ofT hought|{1}{U}|2|Sorcery|47
+Cyrpwt?i?lgn|{3}{B}|4|Enchantment|42
+G?or-Cla ???lodsclae|{3}{R}|4|Creature — Viashino Warrior|27
+Ogre Saavnt|{4}{R}|5|Creature — Ogre Wizard|55
+Predatory F?cus|{3}{G}{G}|5|Sorcery|48
+Conju?r'es Ban|{W}{B}|2|Sorcery|12
+?uen-?rood Nephilim|{B}{R}{G}{W}|4|Creature — Nephilim|16
+G?lectr?de|{1}{U}{R}|3|Creature — Weird|28
+Ink-Trea?er N?phl?im|{R}{G}{W}{U}|4|Creature — Nephilim|5
+eLap of Flame|{U}{R}|2|Instant|36
+O?zhv ?Guild?a?e|{W/B}{W/B}|2|Creature — Human Wizard|12
+P?trah?dro?|{3}{U/R}|4|Creature — Weird|37
+??zzimu Tr?ns?eliqu?a|{3}|3|Artifact|35
+Serra Avenger|{W}{W}|2|Creature — Angel|2
+Steeling Stance|{1}{W}{W}|3|Instant|58
+Govenr?the?Guildless|{5}{U}|6|Sorcery|43
+C?yp? Champion|{3}{B}|4|Creature — Zombie|58
+Drekavac|{1}{B}|2|Creature — Beast|51
+Entropi ??idolon|{3}{B}|4|Creature — Spirit|4
+gnI?ran tBlsis|{1}{R}|2|Instant|25
+Ex?eirm?nt Kraj|{2}{G}{G}{U}{U}|6|Legendary Creature — Ooze Mutant|22
+?obhobble rRats|{B}{R}|2|Creature — Rat|47
+Overru?l|{X}{W}{U}|2|Instant|15
+R?kdos uAgermgea|{B}{B}{R}|3|Creature — Human Wizard|16
+Sky Hussr?|{3}{W}{U}|5|Creature — Human Knight|8
+wTisntrike|{3}{B}{R}|5|Instant|21
+Dvo?scape|{3}{W/U}{W/U}{W/U}|6|Enchantment|1
+Bound|{3}{B}{G}|5|Instant|22
+Crime|{3}{W}{B}|5|Sorcery|31
+Suppyl|{X}{G}{W}|2|Sorcery|2
+Rakdos Sg?net|{2}|2|Artifact|8
+Blood?Crytp|1|1|Land — Swamp Mountain|4
+aHllowed Fonuta??|1|1|Land — Plains Island|17
+Ad?krar Valykrie|{4}{W}{W}|6|Snow Creature — Angel|60
+?ötunO wl Keepre|{2}{W}|3|Creature — Giant|42
+Sun's Bo?nty|{1}{W}|2|Instant|1
+Adarkar W?nfdorm|{4}{U}|5|Snow Creature — Illusion|43
+Rimefeathre Olw|{5}{U}{U}|7|Snow Creature — Bird|44
+Rimeiwnd rCy?mancer|{3}{U}|4|Creature — Human Wizard|45
+Vexing Sph?nx|{1}{U}{U}|3|Creature — Sphinx|19
+Phob?an Phantams|{1}{B}{B}|3|Creature — Illusion|27
+Karplusan ??notaru|{2}{R}{R}|4|Creature — Minotaur Warrior|24
+rBoodn?iS auri?n|{2}{G}{G}|4|Creature — Lizard|11
+Karplu?an?Str?der|{3}{G}|4|Creature — Yeti|25
+Borale Shlef|1|1|Snow Land|27
+?n?ght of the Holy Nimb?s|{W}{W}|2|Creature — Human Rebel Knight|5
+Outrdie? en?Kor|{2}{W}|3|Creature — Kor Rebel Knight|53
+Pentacrh Paladin|{2}{W}{W}{W}|5|Creature — Human Knight|15
+Tempora? Isolat?o?|{1}{W}|2|Enchantment — Aura|42
+Wat?her Sliver|{3}{W}|4|Creature — Sliver|52
+Bewilder|{2}{U}|3|Instant|36
+rDeam Stakler|{1}{U}|2|Creature — Illusion|35
+Praad?x aH?e|{2}{U}|3|Enchantment — Aura|14
+Riftwing Cloudskate|{3}{U}{U}|5|Creature — Illusion|4
+cS?eech?ng Sliver|{U}|1|Creature — Sliver|26
+ThinkT icew|{1}{U}|2|Instant|16
+Basal ??iv?r|{2}{B}|3|Creature — Sliver|36
+Demonic Collus?on|{3}{B}{B}|5|Sorcery|53
+eSngir oNsfeart?|{3}{B}{B}|5|Creature — Vampire|28
+Skitte?in?M ons?rosi?t|{3}{B}{B}|5|Creature — Horror|39
+Skluk?ng Knight|{2}{B}|3|Creature — Zombie Knight|6
+S?dden Sopi?ing|{1}{B}{B}|3|Instant|37
+T?ndril? of Corr??tino|{3}{B}|4|Instant|5
+Bogar?d? Hellkite|{6}{R}{R}|8|Creature — Dragon|27
+Ingite Me?ories|{4}{R}|5|Sorcery|49
+Padirc Dragon|{4}{R}{R}|6|Creature — Dragon|31
+Sedge Slvier|{2}{R}|3|Creature — Sliver|45
+Glas sAsp|{1}{G}{G}|3|Creature — Snake|39
+oMlder|{X}{G}|1|Instant|14
+Primla Forcemage|{2}{G}|3|Creature — Elf Shaman|27
+Scry b?ang?r|{1}{G}|2|Creature — Faerie|40
+Thelon of Hvaewnood|{G}{G}|2|Legendary Creature — Elf Druid|22
+T?elonite Hermit|{3}{G}|4|Creature — Elf Shaman|10
+nUyar? Bese|{G}{G}{G}|3|Creature — Insect|54
+Stonebrwo? Krosa?H ero|{3}{R}{G}|5|Legendary Creature — Centaur Warrior|9
+?locwko?k Hydar|{5}|5|Artifact Creature — Hydra|44
+Hive?toen|{2}|2|Artifact|58
+Gems?one C?verns|1|1|Legendary Land|8
+Frutcikae El?mental|{1}{G}{G}|3|Creature — Elemental|18
+S?ason?s ?eatings|{R}{R}{R}{R}|4|Sorcery|37
+Saltblsat|{3}{W}{W}|5|Sorcery|19
+S?rra's Boon|{2}{W}|3|Enchantment — Aura|33
+?t?nc?ola?re|{2}{W}|3|Creature — Gargoyle|10
+S??pe rarPs?a?e|{1}{U}{U}|3|Creature — Illusion|36
+Dash Hpose|{B}{B}|2|Instant|7
+Timbe?m?re|{3}{G}|4|Creature — Elemental Horse|9
+Ca?tery Sl?ver|{R}{W}|2|Creature — Sliver|29
+Da?kheart Sliver|{B}{G}|2|Creature — Sliver|49
+Marsha?in g?ry|{1}{W}{W}|3|Sorcery|28
+Sam?te?Ce?ser-Beare?|{W}|1|Creature — Human Rebel Cleric|20
+Da?break Croo?et|{W}{W}|2|Enchantment — Aura|43
+Lucent?Liminid|{3}{W}{W}|5|Enchantment Creature — Elemental|59
+Laeden Fists|{2}{U}|3|Enchantment — Aura|24
+Ma?l?trmo Djinn|{7}{U}|8|Creature — Djinn|29
+Pact ofN ?gation|{0}|0|Instant|23
+Ar??num ?insg|{1}{U}|2|Enchantment — Aura|44
+?arcomoe?a|{1}{U}|2|Creature — Illusion|41
+Sracomit? My?|{2}{U}|3|Artifact Creature — Myr|31
+Fetser?ng March|{3}{B}{B}|5|Sorcery|5
+S?imia? Spcet?r|{2}{B}{B}|4|Creature — Specter|49
+Sk?rk Ridge Ehxumer|{1}{B}|2|Creature — Zombie Spellshaper|23
+?o??stalk?e|{6}{B}{B}|8|Creature — Demon|30
+Arc lB?de|{3}{R}{R}|5|Sorcery|5
+??cure gof Khe?Ri??gse|{6}{R}{R}|8|Creature — Dragon|15
+aRv?gin??Ri?twurm|{1}{G}{G}|3|Creature — Wurm|18
+p?rot uSwarm|{1}{G}|2|Instant|57
+Utopia Mcyno|{G}|1|Creature — Fungus|20
+aBru,???st of Krosa|{3}{G}{G}|5|Legendary Creature — Human Druid|26
+Centa?? Omenreader|{3}{G}|4|Snow Creature — Centaur Shaman|46
+M?raga?daP etrogylph?|{3}{G}|4|Enchantment|22
+Nessian Cousrer|{2}{G}|3|Creature — Centaur Warrior|52
+Sliver Leigon|{W}{U}{B}{R}{G}|5|Legendary Creature — Sliver|45
+Dyra?A rbor|1|1|Land Creature — Forest Dryad|58
+r?avne Cairns|1|1|Land|49
+?emnite|{0}|0|Artifact Creature — Construct|47
+iDregraf h?oul|{B}|1|Creature — Zombie|58
+Killin? aWve|{X}{B}|1|Sorcery|26
+Zameck G?i?dmage|{G}{U}|2|Creature — Elf Wizard|39
+Squeclhi?g L?e?ehs|{2}{B}{B}|4|Creature — Leech|57
+Di??tae of ?rupihx|{1}{U}{U}|3|Enchantment|17
+?ori?nE ,Ruin??iver|{1}{U}{R}|3|Legendary Creature — Merfolk Wizard|17
+Btatl? Mas?ery|{2}{W}|3|Enchantment — Aura|43
+?urge of Thougthwef?|{1}{W}|2|Tribal Instant — Kithkin|31
+Benthcioer|{6}{U}|7|Creature — Elemental|42
+Inkafthom Dviesr|{3}{U}{U}|5|Creature — Merfolk Soldier|29
+Sli?erig?l dAept|{1}{U}|2|Creature — Merfolk Wizard|33
+Silvergill Douser|{1}{U}|2|Creature — Merfolk Wizard|29
+?ings ?f Velis Vle|{1}{U}|2|Tribal Instant — Shapeshifter|20
+Ciar nWandeerr|{4}{B}|5|Creature — Shapeshifter|52
+Fina lRveels|{4}{B}|5|Sorcery|7
+Knuckleboen W?tch|{B}|1|Creature — Goblin Shaman|41
+P?owes? of th? Fair|{1}{B}|2|Tribal Enchantment — Elf|30
+Quil?S-linger Boggart|{3}{B}|4|Creature — Goblin Warrior|25
+Wraren Pliferesr|{4}{B}|5|Creature — Goblin Rogue|13
+Inecn?iary Com?nad|{3}{R}{R}|5|Sorcery|9
+Nee??e Drop|{R}|1|Instant|1
+Smokebraiedr|{1}{R}|2|Creature — Elemental Shaman|51
+rBiarhr?n|{3}{G}|4|Creature — Elemental|22
+Ch?g?elni gTitan|{4}{G}|5|Creature — Shapeshifter|6
+Elvish P?om?nade|{3}{G}|4|Tribal Sorcery — Elf|43
+?lyvan Echoe?|{G}|1|Enchantment|53
+?Gdodck? ?eg|{G}{W}|2|Legendary Creature — Kithkin Advisor|7
+Wydwen, the Bitig?Gnlae|{2}{U}{B}|4|Legendary Creature — Faerie Wizard|31
+Rings o ?Brightheart?|{3}|3|Artifact|3
+?Wnd?rer's????g|{1}|1|Artifact|11
+eScl?ded Geln|1|1|Land|39
+Windbrisk ?eights|1|1|Land|24
+Satf ??f Nin|{6}|6|Artifact|12
+Dictate of the Twi nodsG|{3}{R}{R}|5|Enchantment|40
+Preemnient Cpatain|{2}{W}|3|Creature — Kithkin Soldier|52
+Stony?roko?Schoolmastre|{2}{W}|3|Creature — Merfolk Wizard|4
+Wegi?t of Cosnc?ence|{1}{W}|2|Enchantment — Aura|52
+In kDissol?er|{1}{U}|2|Creature — Merfolk Wizard|26
+Inspired Sprite|{3}{U}|4|Creature — Faerie Wizard|59
+Notori?su Thor?g|{3}{U}|4|Tribal Sorcery — Rogue|2
+tSo?ybro?kB?annr?et|{1}{U}|2|Creature — Merfolk Wizard|1
+Thiev?s' Fo?utne|{2}{U}|3|Tribal Instant — Rogue|27
+eFstrecreep|{1}{B}|2|Creature — Elemental|10
+Moresl?T?etf|{2}{B}{B}|4|Tribal Sorcery — Rogue|2
+Night?haed cShemers|{4}{B}|5|Creature — Faerie Wizard|44
+Prickyl Boggart|{B}|1|Creature — Goblin Rogue|42
+?queakign Pei Gurbfello?s|{3}{B}|4|Creature — Goblin Shaman|12
+Wa?ren W?irdi?g|{1}{B}|2|Tribal Sorcery — Goblin|51
+uLnk Er?ant|{5}{R}|6|Creature — Giant Warrior|47
+Rivals' Duel|{3}{R}|4|Sorcery|25
+Vegnf?ul Fi?ebr?nd|{3}{R}|4|Creature — Elemental Warrior|26
+a?r-Spike Changeling|{3}{R}|4|Creature — Shapeshifter|37
+Am?assador Oka|{3}{G}|4|Creature — Treefolk Warrior|4
+Hnu?nig?Tirad|{3}{G}|4|Tribal Sorcery — Elf|18
+Lys Alaa? B?wamtsr?|{2}{G}|3|Creature — Elf Archer|58
+R?is? fo ht Veines?eed|{3}{G}|4|Enchantment — Aura|50
+Winnower P??rol|{2}{G}|3|Creature — Elf Warrior|43
+?loak and Dagger|{2}|2|Tribal Artifact — Rogue Equipment|28
+Resplendent?Mentor|{4}{W}|5|Creature — Kithkin Cleric|42
+tr?ip?Bare|{W}|1|Instant|37
+Twiligh? Shepherd|{3}{W}{W}{W}|6|Creature — Angel|2
+Wo?lee?h?r|{5}{W}|6|Creature — Elemental|43
+Bitign Tteher|{4}{U}|5|Enchantment — Aura|57
+Knacksaw Cliuqe|{3}{U}|4|Creature — Faerie Rogue|13
+Corwd?of Cinde?s|{3}{B}|4|Creature — Elemental|39
+?id?ightB anshee|{3}{B}{B}{B}|6|Creature — Spirit|6
+R?te of Consump??on|{1}{B}|2|Sorcery|56
+iSckle Ripper|{1}{B}|2|Creature — Elemental Warrior|13
+Embre?Gale|{3}{R}|4|Sorcery|15
+?nitmidator Initait?|{R}|1|Creature — Goblin Shaman|57
+Punct?re Bolt|{1}{R}|2|Instant|12
+aRgeR efelction|{4}{R}{R}|6|Enchantment|37
+Toil to Renown|{1}{G}|2|Sorcery|25
+?oodfall P?im?s|{5}{G}{G}{G}|8|Creature — Treefolk Shaman|47
+Thistle?ow nLiege|{1}{W/U}{W/U}{W/U}|4|Creature — Kithkin Knight|24
+Dream Sa?va?e|{U/B}|1|Instant|17
+O?an's aGtewa?den|{U/B}|1|Creature — Faerie Soldier|10
+Embe?strkie Du?|{1}{B/R}|2|Creature — Elemental Warrior Shaman|16
+Manaofrg? inCder|{B/R}|1|Creature — Elemental Shaman|12
+Medicine Runner|{1}{G/W}|2|Creature — Elf Cleric|23
+Rekin?|{1}{G/W}|2|Instant|59
+aSfehold Duo|{3}{G/W}|4|Creature — Elf Warrior Shaman|48
+eSe?cardle Witch|{G/W}|1|Creature — Elf Shaman|11
+?uadrlon of oSlus|{5}|5|Artifact|31
+Heap D???|{1}|1|Artifact Creature — Scarecrow|59
+Trip Noose|{2}|2|Artifact|11
+Re?muenbt ?liss|{2}{W}|3|Enchantment — Aura|51
+Id?igo Faerie|{1}{U}|2|Creature — Faerie Wizard|5
+Sanity Girnding|{U}{U}{U}|3|Sorcery|51
+Crmublin? Ashes|{1}{B}|2|Enchantment|2
+Flame? ab|{R}|1|Sorcery|17
+Dusk?al? Wurm|{5}{G}{G}|7|Creature — Wurm|56
+Marshdrinke rGiant|{3}{G}{G}|5|Creature — Giant Warrior|24
+Reagl o?rce|{4}{G}{G}{G}|7|Creature — Elemental|44
+?vres?rik?|{3}{W/B}{W/B}|5|Creature — Elemental Spirit|29
+Noxios uHat?hl?ng|{3}{B/G}|4|Creature — Elemental|30
+Rise of the?Hobg?bl?ns|{R/W}{R/W}|2|Enchantment|41
+Murkfiedn Lieg?|{2}{G/U}{G/U}{G/U}|5|Creature — Horror|11
+S?arec?one|{3}|3|Artifact Creature — Scarecrow|21
+Maris'is Twincl?ws|{2}{R/W}{G}|4|Creature — Cat Warrior|20
+Naya Sojourners|{2}{R}{G}{W}|5|Creature — Elf Shaman|49
+Gole?'sH eart|{2}|2|Artifact|48
+nIvi?cibel Hymn|{6}{W}{W}|8|Sorcery|55
+Knihgt oft?e hSkyward E?e|{1}{W}|2|Creature — Human Knight|38
+Cahtarti cAdept|{U}|1|Creature — Human Wizard|12
+??n?lcok Ob?|{3}{U}|4|Artifact|3
+Proto?atter Powd?e|{2}{U}|3|Artifact|45
+Drgescae pZombie|{1}{B}|2|Creature — Zombie|8
+Shore S?apper|{2}{B}|3|Creature — Beast|22
+Ske?etal Ka??ari|{4}{B}|5|Creature — Bird Skeleton|35
+C?ucible?of?Fire|{3}{R}|4|Enchantment|43
+T?orn-Thr?sh Viash?n?|{3}{R}|4|Creature — Viashino Warrior|53
+Ba?rhcin goBlt|{1}{R}{G}|3|Instant|44
+C?rri?o T?hash|{2}{B}{R}{G}|5|Creature — Viashino Warrior|35
+Clar?on U?timatum|{G}{G}{W}{W}{W}{U}{U}|7|Sorcery|15
+??ftD?uelist|{W}{U}|2|Creature — Human Rogue|27
+Grixis Charm|{U}{B}{R}|3|Instant|35
+Sedarxis Spectre|{U}{B}{R}|3|Creature — Specter|4
+?ei?e Myst?cs|{4}{W}|5|Creature — Bird Wizard|7
+Sce?e?ro f Dmoniacne|{1}{W}{W}|3|Artifact|38
+Wall?of Rveerence|{3}{W}|4|Creature — Spirit Wall|35
+r?otnline Sage|{2}{U}|3|Creature — Human Wizard|2
+Corrpu?ed Roots|{B}|1|Enchantment — Aura|30
+Drag Down|{2}{B}|3|Instant|56
+Girxis laSvedrvi?r|{5}{B}|6|Creature — Zombie Giant|59
+?alvage Slashre|{1}{B}|2|Artifact Creature — Human Rogue|3
+lBoodhall Ooze|{R}|1|Creature — Ooze|1
+aCnoyn Minotaur|{3}{R}|4|Creature — Minotaur Warrior|12
+V?raciuos? ragon|{3}{R}{R}|5|Creature — Dragon|13
+Gluttonous Slime|{2}{G}|3|Creature — Ooze|1
+Saclelum Ar?hers|{2}{G}|3|Creature — Elf Archer|32
+Sproe Burst|{3}{G}|4|Sorcery|22
+?poc?l?spe Hdyra|{X}{R}{G}|2|Creature — Hydra|9
+Bloo? Tyrant|{4}{U}{B}{R}|7|Creature — Vampire|26
+Gil?spire vAe?ger|{G}{W}{U}|3|Creature — Human Soldier|23
+Sykward?Ey e??ohpet?|{3}{G}{W}{U}|6|Creature — Human Wizard|8
+Arm?llar ?Spher?|{2}|2|Artifact|38
+?emon|1|1|Creature — Demon|44
+Ethersowrn ??eSldmaeg|{1}{W}{U}|3|Artifact Creature — Vedalken Wizard|13
+Mi?t??in Boredrpo?t|{1}{U}{B}|3|Artifact|59
+?emo?spien Whip|{B}{R}|2|Artifact — Equipment|41
+Kathrai Bmober|{1}{B}{R}|3|Creature — Bird Shaman|43
+M?sotrou? Carabid|{3}{B}{R}|5|Creature — Insect|15
+Godt?acke? of Jund|{1}{R}{G}|3|Creature — Elf Shaman|28
+Val?y eRanent|{4}{R}{G}|6|Creature — Beast|54
+Violent Outb?ust|{1}{R}{G}|3|Instant|58
+E?listed Wurm|{4}{G}{W}|6|Creature — Wurm|25
+Knotv?ne ?a?adin|{G}{W}|2|Creature — Human Knight|58
+Le?nin Armo?guard|{2}{G}{W}|4|Creature — Cat Soldier|38
+Skc??lw T?rsa?|{3}{U}{R}|5|Artifact Creature — Viashino Warrior|11
+Putrid ?eech|{B}{G}|2|Creature — Zombie Leech|35
+Unscyhte, i?ller?of Kings|{U}{B}{B}{R}|4|Legendary Artifact — Equipment|34
+Trace of Aubndance|{R/W}{G}|2|Enchantment — Aura|15
+Veetran?Swordsmith|{2}{W}|3|Creature — Human Soldier|5
+iDsorient|{3}{U}|4|Instant|53
+lSeep|{2}{U}{U}|4|Sorcery|4
+?coly?e o? ?athird|{B}|1|Creature — Human Cleric|16
+Child of N?ght|{1}{B}|2|Creature — Vampire|52
+Buri?ng Iqnuir?|{R}|1|Sorcery|56
+Vi?ahin?S pearhunt?r|{2}{R}|3|Creature — Viashino Warrior|47
+??ambleC reeper|{4}{G}|5|Creature — Elemental|25
+Dealdy?Relcuse|{1}{G}|2|Creature — Spider|47
+Windstorm|{X}{G}|1|Instant|47
+?o?tboun ?rCag|1|1|Land|8
+TheEo ? ?og|1|1|Plane — Equilor|53
+The Hipopdrome|1|1|Plane — Segovia|11
+sIle fo Vesu?a|1|1|Plane — Dominaria|7
+L?anwoar|1|1|Plane — Dominaria|48
+Raven' ??un|1|1|Plane — Shadowmoor|26
+Vels Viel|1|1|Plane — Lorwyn|58
+Devout Light?astre|{W}{W}{W}|3|Creature — Kor Cleric|36
+Iona, Sh?eld fo Emeria|{6}{W}{W}{W}|9|Legendary Creature — Angel|27
+Ko? Ho?kmas?er|{2}{W}|3|Creature — Kor Soldier|24
+Steppe Lynx|{W}|1|Creature — Cat|5
+Merfol? Saestalkres|{3}{U}|4|Creature — Merfolk Scout|9
+Sphinx o? Lost rTuths|{3}{U}{U}|5|Creature — Sphinx|59
+Windride? Ee?|{3}{U}|4|Creature — Fish|9
+Klaitas,B lodochief?of Gh?t|{5}{B}{B}|7|Legendary Creature — Vampire Warrior|29
+Sadisti cS?crament|{B}{B}{B}|3|Sorcery|7
+C?andr??Albaze|{4}{R}{R}|6|Planeswalker — Chandra|1
+??blin ??h?tcu?ter|{1}{R}|2|Creature — Goblin Scout|60
+Laabva?l Tra?|{6}{R}{R}|8|Instant — Trap|14
+Molte? Raa?ger|{2}{R}|3|Creature — Elemental|49
+Obisdian Fireheart|{1}{R}{R}{R}|4|Creature — Elemental|52
+Runef?lre Trap|{4}{R}{R}|6|Instant — Trap|47
+Se?smic S?ud?er|{1}{R}|2|Instant|11
+Giagnt?form|{3}{G}{G}|5|Enchantment — Aura|34
+TimbermwaLa rva|{3}{G}|4|Creature — Beast|57
+TurntimberBa sliisk|{1}{G}{G}|3|Creature — Basilisk|34
+?xpedition Map|{1}|1|Artifact|38
+Sotn?wor kPmua|{3}|3|Artifact Creature — Cat Ally|2
+?sit yRainforest|1|1|Land|6
+iPranha Marsh|1|1|Land|3
+Tunrtimber Gro??|1|1|Land|57
+Archon of Redempiton|{3}{W}{W}|5|Creature — Archon|2
+D?ipel|{U}|1|Instant|2
+pSell Contortio?|{2}{U}|3|Instant|40
+Vapor Snare|{4}{U}|5|Enchantment — Aura|14
+Scrib Nibblers|{2}{B}|3|Creature — Rat|13
+Baa?ar Trader|{1}{R}|2|Creature — Goblin|20
+Grotag Thrasher|{4}{R}|5|Creature — Lizard|22
+Tuktuk Scarpepr|{3}{R}|4|Creature — Goblin Artificer Ally|6
+Slingb?wT ?ap|{3}{G}|4|Instant — Trap|51
+Amu?et foV igor|{1}|1|Artifact|56
+Hedron Ro?er|{4}|4|Artifact Creature — Construct|32
+Razor Bo??erang|{3}|3|Artifact — Equipment|18
+rDe? dStatuary|1|1|Land|12
+Sejir iSteppe|1|1|Land|41
+Siktetring Invasio?|{7}|7|Tribal Sorcery — Eldrazi|9
+Hyean U?mra|{W}|1|Enchantment — Aura|28
+Lumio?u? Wkae|{2}{W}|3|Enchantment — Aura|17
+aMmomt? Umbar|{4}{W}|5|Enchantment — Aura|60
+??a?-Death Experience|{2}{W}{W}{W}|5|Enchantment|3
+Champi?n'? rDake|{1}{U}|2|Creature — Drake|57
+Drake Umbr?|{4}{U}|5|Enchantment — Aura|4
+Guard? oma?oa|{2}{U}|3|Creature — Jellyfish|41
+La? Ba?e|{2}{U}{U}|4|Instant|18
+Lighthosue hC?onologist|{1}{U}|2|Creature — Human Wizard|52
+Merfolk Observer|{1}{U}|2|Creature — Merfolk Rogue|40
+Renegaed? opp?lganger|{1}{U}|2|Creature — Shapeshifter|6
+See B?yond|{1}{U}|2|Sorcery|28
+rTaining Grounds|{U}|1|Enchantment|34
+Conuse mthe Meek|{3}{B}{B}|5|Instant|26
+Cropsehatch|{3}{B}{B}|5|Sorcery|37
+Essecen Feed|{5}{B}|6|Sorcery|60
+Grotag Siege-Runenr|{1}{R}|2|Creature — Goblin Rogue|45
+uLstf or War|{2}{R}|3|Enchantment — Aura|59
+Grwoth Spa??|{2}{G}|3|Sorcery|23
+iLving?Dest?ny|{3}{G}|4|Instant|6
+Might of ?he?Mass?s|{G}|1|Instant|11
+Ralem sUncahrted|{2}{G}|3|Instant|7
+Sarkahn t?e Mad|{3}{B}{R}|5|Planeswalker — Sarkhan|31
+??dron ?atrxi|{4}|4|Artifact — Equipment|41
+Behold?the Power of Destruction|1|1|Scheme|52
+A Displa?yof My Dak? owPer|1|1|Scheme|22
+Eevry aLs t?estige?Shall ?ot|1|1|Scheme|36
+Feed the Machine|1|1|Scheme|54
+Look Skywar? a?d Dspeair|1|1|Scheme|46
+?yU ndead Hrode ?wakens|1|1|Ongoing Scheme|1
+Reamls Befittig?nMy Majetsy|1|1|Scheme|29
+Th?V er? Soli ShlalS?hkae|1|1|Ongoing Scheme|53
+W?ic hof Y??uBurns Brightes??|1|1|Scheme|15
+Your?aFte I? Thr?ce Sealde|1|1|Scheme|1
+Ajani'sM an?ra|{1}{W}|2|Enchantment|45
+eAther Adept|{1}{U}{U}|3|Creature — Human Wizard|43
+hPnatom Beast|{3}{U}|4|Creature — Illusion Beast|11
+Redire?t|{U}{U}|2|Instant|51
+N?thr eHorror|{3}{B}|4|Creature — Horror|40
+?hand???s Spitfire|{2}{R}|3|Creature — Elemental|28
+Cyclpos ?alda?tor|{1}{R}{R}{R}|4|Creature — Cyclops Warrior|51
+Fauna Sha??n|{1}{G}|2|Creature — Elf Shaman|50
+Shape Anwe|{3}{U}|4|Sorcery|15
+?onatgious?Nim|{2}{B}|3|Creature — Zombie|15
+Ba?ra?e Ogre|{3}{R}{R}|5|Creature — Ogre Warrior|52
+Fr?orvore|{2}{R}|3|Creature — Beast|43
+Klduotah?Re?irth|{R}|1|Sorcery|36
+Bl?gth Mamba|{1}{G}|2|Creature — Snake|13
+Blunt teh Assalut|{3}{G}|4|Instant|8
+Geenssi W?ae|{X}{G}{G}{G}|3|Sorcery|10
+??i??ian Re??l|{1}{G}{G}|3|Enchantment|51
+iWthstand eDath|{G}|1|Instant|22
+Vens??, the oSjourner|{3}{W}{U}|5|Planeswalker — Venser|35
+Copr?e C?r|{4}|4|Artifact Creature — Hound|32
+Da?ksteel Senti?e?|{6}|6|Artifact Creature — Golem|15
+olGden ?rn|{1}|1|Artifact|56
+Horizon Sp?llbomb|{1}|1|Artifact|17
+Molt?n-Ta?l Mat?icore|{4}|4|Artifact Creature — Masticore|56
+Nim Dea??ma?nel|{2}|2|Artifact — Equipment|42
+Pr?toty?e Portla|{4}|4|Artifact|48
+R??orfiel ?Threhser|{7}|7|Artifact Creature — Construct|2
+V??shok eRlpic?|{3}|3|Artifact Creature — Berserker|44
+Secahrom eoaCs?|1|1|Land|14
+Fuel for the Cuase|{2}{U}{U}|4|Instant|53
+S?ire Serpent|{4}{U}|5|Creature — Serpent|29
+M?rbid Pluned?|{1}{B}{B}|3|Sorcery|29
+Ph?re?axn?Crusader|{1}{B}{B}|3|Creature — Zombie Knight|45
+Gnathoasur|{4}{R}{R}|6|Creature — Lizard|47
+?Tngl Meanits|{2}{G}{G}|4|Creature — Insect|56
+yMr ??rbine|{5}|5|Artifact|3
+?eace Stri?er|{4}|4|Artifact Creature — Construct|12
+piSneo fI sh Sah|{7}|7|Artifact|19
+Tita Fnoreg|{3}|3|Artifact|50
+Wa??epRort|{3}{W}|4|Instant|8
+Mortis Dog?|{3}{B}|4|Creature — Hound|25
+Inva?er?Pa?asite|{3}{R}{R}|5|Creature — Insect|47
+Rgae Extrac?ro|{4}{R/P}|5|Artifact|5
+Whipflare|{1}{R}|2|Sorcery|33
+Meilra, Syvlok?Outcast|{1}{G}|2|Legendary Creature — Human Scout|59
+Gremiln Mine|{1}|1|Artifact|56
+Shr?n?o f Bounldess Grothw|{3}|3|Artifact|31
+Shrin?? f Pierci?g Vision|{2}|2|Artifact|20
+Se?llsikte|{2}|2|Artifact Creature — Horror|44
+Phy?ei?x's Core|1|1|Land|23
+Crescendo of War|{3}{W}|4|Enchantment|6
+Trbiut? ot the Wild|{1}{G}|2|Instant|12
+Nin, th eaPi? rA?sit|{U}{R}|2|Legendary Creature — Vedalken Wizard|8
+Alabaster ?ag?|{1}{W}|2|Creature — Human Wizard|58
+Gaurdians' P?edge|{1}{W}{W}|3|Instant|51
+C?as? Drkae|{4}{U}|5|Creature — Drake|26
+Bl?ordageV ampire|{2}{B}|3|Creature — Vampire|42
+Drifting hSade|{3}{B}|4|Creature — Shade|50
+Ts?te? f Blood|{B}|1|Sorcery|60
+F?ry?orn Hellkite|{4}{R}{R}{R}|7|Creature — Dragon|44
+Gorehor?Mniont?ur?|{2}{R}{R}|4|Creature — Minotaur Warrior|2
+W?l lof T?rches|{1}{R}|2|Creature — Wall|24
+Glae?cove?S?oct?|{G}|1|Creature — Elf Scout|43
+Gho??ly Possessoin|{2}{W}|3|Enchantment — Aura|6
+Rebuke|{2}{W}|3|Instant|31
+Batltegr?und G?ist|{4}{U}|5|Creature — Spirit|19
+nIes?tileA berration|1|1|Creature — Human Insect|4
+Sen?ory Dpreivait?n|{U}|1|Enchantment — Aura|57
+Corpse ?nuge|{2}{B}|3|Instant|30
+Cu?se of Obi?vion|{3}{B}|4|Enchantment — Aura Curse|37
+?ead Weight|{B}|1|Enchantment — Aura|36
+Gr??some Defro?tiy|{B}|1|Enchantment — Aura|22
+Mor?rtu Bnashee|{3}{B}{B}|5|Creature — Spirit|40
+T?phoid?Ra?s|{B}|1|Creature — Rat|5
+Unbur?al iRtes|{4}{B}|5|Sorcery|48
+Waklnig C?rpse|{1}{B}|2|Creature — Zombie|13
+WildbloodP ack|1|4|Creature — Werewolf|43
+Terroro fK ?ui?P ass|1|3|Creature — Werewolf|33
+aRkish Heri|{2}{R}|3|Creature — Vampire|16
+Torme?ted Pa?iah|{3}{R}|4|Creature — Human Warrior Werewolf|26
+Ni?htfla Plre?ator|1|3|Creature — Werewolf|38
+H?llowhegne ?caven???|{3}{G}{G}|5|Creature — Elemental|8
+MoldgrafM ons?rosi?y|{4}{G}{G}{G}|7|Creature — Insect|16
+Spide??Spwainng|{4}{G}|5|Sorcery|30
+Trvael?Preparatinos|{1}{G}|2|Sorcery|34
+Woodl?a? Sletuh|{3}{G}|4|Creature — Human Scout|10
+G?is to Sfaint rT?ft|{1}{W}{U}|3|Legendary Creature — Spirit Cleric|44
+Cellar Door|{2}|2|Artifact|15
+?emonmai lHauebrk|{4}|4|Artifact — Equipment|26
+Geistcatcher? s?ig|{6}|6|Artifact Creature — Construct|54
+hGulocaller'sB?e?l|{1}|1|Artifact|54
+?n??hcanter?s Pike|{2}|2|Artifact — Equipment|30
+Traveler's Amlute|{1}|1|Artifact|19
+I?oltaed? hapel|1|1|Land|28
+Mooranld Hantu|1|1|Land|19
+Woo?land Cmeetery|1|1|Land|20
+Sanctuar yCat|{W}|1|Creature — Cat|7
+Thalia ,Guardian of Thra?en|{1}{W}|2|Legendary Creature — Human Soldier|12
+D?ngeon Geists|{2}{U}{U}|4|Creature — Spirit|9
+raGvepurge|{2}{B}|3|Instant|28
+Skis?dgaF layre|{1}{B}|2|Creature — Human Cleric|59
+U?dyin? Evil|{B}|1|Instant|16
+Werewolf ?nsaacker|1|1|Creature — Werewolf|3
+Blood Feu?|{4}{R}{R}|6|Sorcery|32
+Hc?kln?g?Fie?ds|{2}{R}|3|Creature — Devil|2
+Moonveil Dr?o?n|{3}{R}{R}{R}|6|Creature — Dragon|21
+rWac??with Ma???ss|{3}{R}|4|Sorcery|11
+Lo?s in t?hW ?dos|{3}{G}{G}|5|Enchantment|21
+Monocsar?rd Wer?owfl|1|1|Creature — Werewolf|26
+WildH unger|{2}{G}|3|Instant|10
+Wol?fitet ?Captiv?|{G}|1|Creature — Human Werewolf|53
+Ravgae ro? the Fells|1|1|Creature — Werewolf|53
+M?st?Ra?en|{2}{U}{U}|4|Creature — Bird|38
+Sot?en?Godos|{3}{U}|4|Sorcery|33
+Death Wind|{X}{B}|1|Instant|12
+Grave Excahnge|{4}{B}{B}|6|Sorcery|39
+Human Fr?ilt?|{B}|1|Instant|57
+Pre?ator's Gambit|{B}|1|Enchantment — Aura|31
+Have?gul??ampire|{3}{R}|4|Creature — Vampire|17
+Heirs o? Stromikrk|{2}{R}{R}|4|Creature — Vampire|22
+Hou?d ?f Griseb?rand|{2}{R}{R}|4|Creature — Elemental Hound|38
+??ounded|{1}{G}|2|Enchantment — Aura|28
+Natuarl?En?|{2}{G}|3|Instant|49
+?o??ir?Si?verheart|{3}{G}{G}|5|Creature — Wolf Warrior|31
+Angel's oTmb|{3}|3|Artifact|25
+aH?nted Guardian|{2}|2|Artifact Creature — Construct|35
+?ron's Dominion|1|1|Plane — New Phyrexia|22
+Qui?csilver Sea|1|1|Plane — Mirrodin|54
+Dow?por?|{1}{U}|2|Instant|27
+Coewr?in Fear|{1}{B}{B}|3|Instant|60
+rDagon Htac?lign|{1}{R}|2|Creature — Dragon|57
+Firewing Phoenix|{3}{R}|4|Creature — Phoenix|46
+Preda?ory Rampage|{3}{G}{G}|5|Sorcery|58
+Prc?nit? Capt?in|{W}{W}|2|Creature — Human Soldier|18
+Auuqs Seted|{3}{U}|4|Creature — Beast|35
+Cr??stown ?ourier|{1}{U}|2|Creature — Vedalken|49
+Stab Wound|{2}{B}|3|Enchantment — Aura|6
+Bellow? Lizard|{R}|1|Creature — Lizard|51
+Gute?rsnipe|{2}{R}|3|Creature — Goblin Shaman|20
+Hor?calelr's Cha?t|{7}{G}|8|Sorcery|47
+?enta?r Healer|{1}{G}{W}|3|Creature — Centaur Cleric|42
+Essence ?ackl?sh|{2}{U}{R}|4|Instant|25
+?aard's Orders|{2}{B}{G}|4|Sorcery|45
+Rix Maadi uGildmage|{B}{R}|2|Creature — Human Shaman|16
+Slag?hetr Gmaes|{2}{B}{R}|4|Sorcery|19
+iNvmagusE elmetnal|{U/R}|1|Creature — Elemental|52
+Chr?mati? Lantern|{3}|3|Artifact|41
+zA?ruis ?iuldg?te|1|1|Land — Gate|26
+R?kdos Gu?ldgaet|1|1|Land — Gate|58
+Dutfiul Thrull|{W}|1|Creature — Thrull|5
+Kignht Wathc|{4}{W}|5|Sorcery|43
+Dilu?ian P?imordial|{5}{U}{U}|7|Creature — Avatar|8
+Rapid Hybridizat?on|{U}|1|Instant|3
+Ho?ro??of hte?Dmi|{4}{B}|5|Creature — Horror|52
+eS?ul?rhlaP rimord?al|{5}{B}{B}|7|Creature — Avatar|55
+mS?g Eemletnal|{4}{B}{B}|6|Creature — Elemental|53
+Craklcing Pe?im?eer|{1}{R}|2|Enchantment|54
+Ripsc?le Pe???tor|{4}{R}{R}|6|Creature — Lizard|51
+Aadptvie ?anp?aw|{4}{G}|5|Creature — Lizard Beast|5
+Alpha ?tAho?ity|{1}{G}|2|Enchantment — Aura|8
+Ooz? Fl?x|{3}{G}|4|Enchantment|20
+Execution?r' ?Swing|{W}{B}|2|Instant|10
+G???nd ?ssau?l|{R}{G}|2|Sorcery|51
+Gru?l R?gbeeast|{5}{R}{G}|7|Creature — Beast|28
+iMnd Gridn|{X}{U}{B}|2|Sorcery|1
+Paranoid?elDusio??|{U}{B}|2|Sorcery|59
+Arrowso?f Jusitce|{2}{R/W}|3|Instant|31
+eDta?cult Rogue|{1}{U/B}{U/B}|3|Creature — Human Rogue|24
+rAmore dTra?sport|{3}|3|Artifact Creature — Construct|50
+Gruul Keyr?ne|{3}|3|Artifact|48
+Sun?pire aGte?eeper?|{3}{W}|4|Creature — Human Soldier|51
+Bnae Alley Blackgua?r|{1}{B}|2|Creature — Human Rogue|58
+Cr?? tIncu?sion|{2}{B}|3|Instant|38
+Maze Ab?minatino|{5}{B}|6|Creature — Elemental|57
+Advent of the uWrm|{1}{G}{G}{W}|4|Instant|32
+Darg?ohsift|{1}{U}{R}|3|Instant|19
+Drwno i? ?ilth|{B}{G}|2|Sorcery|18
+Gruul ?a rC?ant|{2}{R}{G}|4|Enchantment|52
+Obzeadts' A?d|{3}{W}{B}|5|Sorcery|7
+R?store the Peace|{1}{W}{U}|3|Instant|33
+Spike eJster|{B}{R}|2|Creature — Goblin Warrior|37
+Dr?ty|{2}{G}|3|Sorcery|12
+?rou?le|{2}{R}|3|Sorcery|43
+?olgrai Cluestoen|{3}|3|Artifact|16
+Angelic Accord|{3}{W}|4|Enchantment|4
+Daw?s?irek Paladni|{3}{W}{W}|5|Creature — Human Knight|60
+?Dv?ut Invocatin?|{6}{W}|7|Sorcery|56
+?ismiss ?nto r?eam|{6}{U}|7|Enchantment|8
+I?lusionray Armor|{4}{U}|5|Enchantment — Aura|10
+Jace's ?i?dseeker|{4}{U}{U}|6|Creature — Fish Illusion|48
+Ti?ebinedr Mage|{U}{U}|2|Creature — Merfolk Wizard|60
+Corpse aHuler|{1}{B}|2|Creature — Human Rogue|9
+Dark Prphoecy|{B}{B}{B}|3|Enchantment|44
+Burning Earth|{3}{R}|4|Enchantment|53
+Cylcops yTra??|{5}{R}|6|Creature — Cyclops|37
+rDgao? Egg|{2}{R}|3|Creature — Dragon|2
+F?lshpu?per ?Gant|{5}{R}{R}|7|Creature — Giant|60
+Savae? Summ?nin?|{G}|1|Instant|11
+Spr?emound|{3}{G}{G}|5|Creature — Fungus|19
+V?racoius Wurm|{1}{G}|2|Creature — Wurm|16
+Guardai nfot h eAgse|{7}|7|Artifact Creature — Golem|37
+Decorated Griff?n|{4}{W}|5|Creature — Griffin|14
+Evangel ?f Helodi|{4}{W}{W}|6|Creature — Human Cleric|41
+Scholar ?f Atr?oes|{2}{W}|3|Creature — Human Cleric|19
+?i?en? Art?san|{3}{W}{W}|5|Creature — Giant|37
+B?eachn?g Hippocamp|{3}{U}|4|Creature — Horse Fish|20
+Dakr ?etrayal|{B}|1|Instant|7
+Felhide Mni?taur|{2}{B}|3|Creature — Minotaur|16
+Read ?he Bones|{2}{B}|3|Sorcery|35
+?it?n ofE t?enal Fri?|{5}{R}|6|Creature — Giant|42
+Satyr Piepr|{2}{G}|3|Creature — Satyr Rogue|16
+KrgaamW arcaller|{3}{B}{R}|5|Creature — Minotaur Warrior|41
+Pharika's Mender|{3}{B}{G}|5|Creature — Gorgon|55
+Poli? Crushe?|{2}{R}{G}|4|Creature — Cyclops|51
+Splelheat rCihmrea|{1}{U}{R}|3|Creature — Chimera|29
+?team Augury|{2}{U}{R}|4|Instant|10
+T?plem o? Sil?nce|1|1|Land|32
+?ivine rSpiri?|{4}{U}|5|Creature — Spirit|10
+?l??iso?ist's Gmaibt|{2}{U}{U}|4|Instant|3
+Toixc Deluge|{2}{B}|3|Sorcery|8
+Sudden Demis?|{X}{R}|1|Sorcery|28
+Brimaz, King of Ore?ko?|{1}{W}{W}|3|Legendary Creature — Cat Soldier|21
+Flitt?rsetp Eidolno|{1}{U}|2|Enchantment Creature — Spirit|48
+FloodtideS ?rpetn|{4}{U}|5|Creature — Serpent|4
+e?eltis Atsronomer|{1}{U}|2|Creature — Human Wizard|22
+Vortex El?m?ntal|{U}|1|Creature — Elemental|53
+Forsaekn Drifters|{3}{B}|4|Creature — Zombie|10
+Archet??p of gAgressio?|{1}{R}{R}|3|Enchantment Creature — Human Warrior|50
+iL?htning Volley|{3}{R}|4|Instant|8
+Phraagax?iG?nt|{4}{R}|5|Creature — Giant|22
+Arhcetyep of Enduarnce|{6}{G}{G}|8|Enchantment Creature — Boar|21
+oCurser of Kruphi?|{1}{G}{G}|3|Enchantment Creature — Centaur|36
+Templ?eofM?ailce|1|1|Land|5
+?empel of Pe?lt?|1|1|Land|18
+?mra?ent of ?yx|{2}{W}|3|Enchantment — Aura|50
+Font o?V gi?r|{1}{W}|2|Enchantment|15
+Nyx-?leece Ram|{1}{W}|2|Enchantment Creature — Sheep|33
+rCys?tlline Nauitlus|{2}{U}|3|Enchantment Creature — Nautilus|54
+War-?ing?Srin?|{2}{U}|3|Creature — Siren Soldier|21
+Gnarled cSarhdie|{B}|1|Enchantment Creature — Minotaur|40
+Ritual of th ?Retrneud|{3}{B}|4|Instant|45
+Eidloon fo?th eGreat?Rveel|{R}{R}|2|Enchantment Creature — Spirit|12
+W?ldfire C?rberus|{4}{R}|5|Creature — Hound|9
+Desce?riotn Plagu?|{3}{G}|4|Sorcery|12
+R?venou?L eurcoocta|{3}{G}|4|Creature — Beast|47
+Disci?le of Dece?t|{U}{B}|2|Creature — Human Rogue|12
+K?ran?s, God o f?So?ms|{3}{U}{R}|5|Legendary Enchantment Creature — God|54
+?Scre tSum?oning|1|1|Conspiracy|19
+Unexp?cte dPotenti?l|1|1|Conspiracy|20
+Marchs?a' sEim?sary|{3}{U}|4|Creature — Human Rogue|41
+Plea fo? Pow??|{3}{U}|4|Sorcery|27
+Dakc Fadyen|{1}{U}{R}|3|Planeswalker — Dack|31
+W?odv?ne Elemental|{4}{G}{W}|6|Creature — Elemental|23
+Cogwork Lirbarain|{4}|4|Artifact Creature — Construct|27
+Dantuless? iver Marshal|{1}{W}|2|Creature — Human Soldier|54
+?rSapho ?f??e Masss?|{5}{W}{W}|7|Creature — Angel|43
+Coral?Barrier|{2}{U}|3|Creature — Wall|36
+DiffusionS liver|{1}{U}|2|Creature — Sliver|23
+Plyoomrphist's? est|{1}{U}{U}|3|Instant|21
+En?l?ss Obedinece|{4}{B}{B}|6|Sorcery|3
+Le?ch?ng lSiver|{1}{B}|2|Creature — Sliver|33
+Necromance'rs As???ta?n|{2}{B}|3|Creature — Zombie|37
+Witc'hs Fmialiar|{2}{B}|3|Creature — Frog|60
+Belligerent Sliver|{2}{R}|3|Creature — Sliver|24
+Brood Keeper|{3}{R}|4|Creature — Human Shaman|24
+uB??ing ?ng?r|{4}{R}|5|Enchantment — Aura|26
+Kird Ciheftain|{3}{R}|4|Creature — Ape|33
+Feral I?cr?aation|{8}{G}|9|Sorcery|52
+Hun?er's Ambush|{2}{G}|3|Instant|16
+V??e?eft|{G}|1|Enchantment — Aura|14
+Y?ian, the?Wa?deerr?Bad?|{2}{G}|3|Legendary Creature — Human Rogue|30
+?live rHivlerod|{W}{U}{B}{R}{G}|5|Legendary Creature — Sliver|36
+?r?afn? Memenot|{1}|1|Artifact|35
+Soul of Ne wPhyrexi?|{6}|6|Artifact Creature — Avatar|21
+ndE ?ostiliitse|{3}{W}{W}|5|Sorcery|49
+?eat of Resist?nce|{1}{W}|2|Instant|37
+Kill Shto|{2}{W}|3|Instant|30
+iSegecr?ft|{3}{W}|4|Enchantment — Aura|7
+Embodimen??f opSrnig|{U}|1|Creature — Elemental|31
+G?ciaal ?t?lker|{5}{U}|6|Creature — Elemental|26
+Sidisi's Pet|{3}{B}|4|Creature — Zombie Ape|13
+Burn??way|{4}{R}|5|Instant|4
+oHotin gMadnrills|{5}{G}|6|Creature — Ape|14
+Sagu ?rcher|{4}{G}|5|Creature — Naga Archer|17
+Abza?nG?ied|{3}{W}{B}{G}|6|Creature — Human Warrior|12
+Bea???C ompani?n|{2}{G}{U}{R}|5|Creature — Human Warrior|49
+eTmru Chamr|{G}{U}{R}|3|Instant|28
+Jzaal o?ldmane|{2}{W}{W}|4|Legendary Creature — Cat Warrior|43
+Stormsurge Kraken|{3}{U}{U}|5|Creature — Kraken|39
+Ghouclaller Gisa|{3}{B}{B}|5|Legendary Creature — Human Wizard|11
+Infe?nal O?feri?g|{4}{B}|5|Sorcery|60
+??oil sof Blood|{B}|1|Instant|7
+Song of the Dryads|{2}{G}|3|Enchantment — Aura|19
+oWlfcaller'sH wo?|{3}{G}|4|Enchantment|53
+Reali?y ?ihft|{1}{U}|2|Instant|50
+Wirte into Being|{2}{U}|3|Sorcery|11
+Arahsi nWa? eaB?t|{5}{G}{G}|7|Creature — Beast|32
+Monaster? Siege|{2}{U}|3|Enchantment|24
+iWllo f the?Naga|{4}{U}{U}|6|Instant|32
+rOc uSreshot|{3}{B}|4|Creature — Orc Archer|53
+Break Throug??te Lhine|{1}{R}|2|Enchantment|5
+Mob Rule|{4}{R}{R}|6|Sorcery|42
+Va?ltberakre|{3}{R}|4|Creature — Orc Rogue|32
+Battlefrn?t?Krsu?ok|{4}{G}|5|Creature — Beast|53
+Profuond Journey|{5}{W}{W}|7|Sorcery|44
+Sandts?rm?hCargr?|{4}{W}|5|Creature — Beast|50
+Palac eFaml?iar|{1}{U}|2|Creature — Bird|60
+Tai?am?s tSrike|{3}{U}|4|Sorcery|8
+Hand of Silumgar|{1}{B}|2|Creature — Human Warrior|2
+?inister of Pain|{2}{B}|3|Creature — Human Shaman|23
+Silumgar Butcher|{4}{B}|5|Creature — Zombie Djinn|8
+?olagha?S torms?gner|{R}|1|Creature — Human Shaman|54
+Lose Cal?|{3}{R}|4|Sorcery|21
+M?gmtaic?h???m|{1}{R}|2|Sorcery|49
+Va??la?ie|{4}{R}|5|Sorcery|60
+D?omok'asG ift|{4}{G}|5|Instant|34
+Cunni?? Breezedanc?e|{4}{W}{U}|6|Creature — Dragon|33
+Endu?ing S?alelord|{4}{G}{W}|6|Creature — Dragon|45
+Gat? Sam?ehr|{3}|3|Artifact — Equipment|44
+?nointer of Champi?ns|{W}|1|Creature — Human Cleric|3
+Cleric of the?Forwa?d?Or?r?|{1}{W}|2|Creature — Human Cleric|9
+Consu'ls Lieutenat?|{W}{W}|2|Creature — Human Soldier|50
+Enshrodunig Mist|{W}|1|Instant|13
+Apsi??ng?Aeron?ut|{3}{U}|4|Creature — Human Artificer|31
+Deadbridg? Sham?n|{2}{B}|3|Creature — Elf Shaman|55
+Tiante?R meedy|{2}{B}|3|Enchantment|49
+Fla???hadow C?nujring|{3}{R}|4|Enchantment|59
+Mamg?ti? Insig?t|{R}|1|Sorcery|1
+?ubterraenan ?octu|{1}{R}|2|Creature — Goblin Scout|43
+nAimist's wAaekn?ng|{X}{G}|1|Sorcery|60
+TheG raet Aurora|{6}{G}{G}{G}|9|Sorcery|35
+Thunde?clap yWvern|{2}{W}{U}|4|Creature — Drake|49
+Th?owi?g Knife|{2}|2|Artifact — Equipment|44
+Reterat to Kazna?u|{2}{G}|3|Enchantment|39
+?EdraziS pawn|1|1| Creature — Eldrazi Spawn|30
+Ban?oef Baal Ged|{7}|7|Creature — Eldrazi|55
+Coastal Discovery|{3}{U}|4|Sorcery|12
+Windrider Partol|{3}{U}{U}|5|Creature — Merfolk Wizard|36
+Silent Ski?m?r|{3}{B}|4|Creature — Eldrazi Drone|8
+Demo'?? Grsap|{4}{B}|5|Sorcery|34
+u?Tn ?gi?n?s|{4}{R}|5|Instant|51
+iFr?m?nlt e?a?e|{2}{R}|3|Creature — Human Shaman Ally|49
+Re?kless Cohort|{1}{R}|2|Creature — Human Warrior Ally|16
+S???terskullR ecruit|{3}{R}{R}|5|Creature — Giant Warrior Ally|12
+?olcanic pUhavea?|{3}{R}|4|Instant|5
+Callt h?S cions|{2}{G}|3|Sorcery|2
+Patlde Crushr?|{4}{G}{G}{G}|7|Creature — Beast|38
+SnappngiGn ?alid|{1}{G}|2|Creature — Beast|6
+Resolute Bl?dema?ter|{3}{R}{W}|5|Creature — Human Soldier Ally|28
+Salb Ha?me?|{2}|2|Artifact — Equipment|59
+?ligh?ed Cata?a?t|1|1|Land|52
+Blighted Stepep|1|1|Land|3
+Sh??lded?yb Faiht|{1}{W}{W}|3|Enchantment — Aura|31
+Giagntoplasm|{3}{U}|4|Creature — Shapeshifter|16
+Corpse Augur|{3}{B}|4|Creature — Zombie Wizard|33
+Wretc?ed ?onflunece|{3}{B}{B}|5|Instant|14
+Awakent?he ?ky Tyra?t|{3}{R}|4|Enchantment|59
+Skullwinder|{2}{G}|3|Creature — Snake|22
+Sa??ston? raOcle|{7}|7|Artifact Creature — Sphinx|22
+Deceivero fF orm|{6}{C}|7|Creature — Eldrazi|38
+Endbringer|{5}{C}|6|Creature — Eldrazi|40
+Ko?ilek,t?he rGet? Ditosriton|{8}{C}{C}|10|Legendary Creature — Eldrazi|50
+a?lker of t?e ?astes|{4}{C}|5|Creature — Eldrazi|19
+Eldrz?i iDsplac?e|{2}{W}|3|Creature — Eldrazi|13
+Cal? the Gatewatch|{2}{W}|3|Sorcery|9
+Wall of Re?urgence|{2}{W}|3|Creature — Wall|22
+Abs?ruseI tnerfernece|{2}{U}|3|Instant|48
+K?zilk?es hSri?ker|{2}{B}|3|Creature — Eldrazi Drone|13
+Drana's Chosen|{3}{B}|4|Creature — Vampire Shaman Ally|10
+Stalking Drnoe|{1}{G}|2|Creature — Eldrazi Drone|17
+El?mental Urpising|{1}{G}|2|Instant|19
+??lvanA dvo?ate|{1}{G}|2|Creature — Elf Druid Ally|14
+Zendikar ?esuregnt|{5}{G}{G}|7|Enchantment|47
+Minmdeltre|{1}{U}{B}|3|Creature — Eldrazi Drone|52
+?tonef??eg Matserwrok|{1}|1|Artifact — Equipment|32
+irrMorpool|1|1|Land|21
+Tim?r? Go?eg|1|1|Land|19
+Por evOer teh Pa?es|{3}{U}{U}|5|Sorcery|9
+Declarati???in Stone|{1}{W}|2|Sorcery|12
+Emissray of?th??S?e?p?ess|{4}{W}|5|Creature — Spirit|10
+Ethereal Gu?dance|{2}{W}|3|Sorcery|19
+Wesvtale Cul? Leader|1|2|Creature — Human Cleric|18
+oHpe Against Hope|{2}{W}|3|Enchantment — Aura|53
+Iqnus?it?'rs ?x|{3}{W}|4|Creature — Ox|21
+Nepahlia Moondr?k?s|{5}{U}{U}|7|Creature — Drake|17
+Silent Obse?v?r|{3}{U}|4|Creature — Spirit|34
+Falke?arht Gorge?|{R}|1|Creature — Vampire Berserker|17
+Geier Reach Bnadi?|{2}{R}|3|Creature — Human Rogue Werewolf|1
+Ravenuos Bl?odseeker|{1}{R}|2|Creature — Vampire Berserker|23
+Ski? Sheddre|1|1|Creature — Insect Horror|39
+Voldaren ?u?list|{3}{R}|4|Creature — Vampire Warrior|11
+u?tumnal Gloom|{2}{G}|3|Enchantment|53
+Clpi Winsg|{1}{G}|2|Instant|30
+Krlal?nho?de Howler|1|2|Creature — Werewolf|37
+?imber S?redd?r|1|2|Creature — Werewolf|43
+W?rewolf of Acinent Hunger|1|5|Creature — Werewolf|25
+?ecn?d ?raves?|{2}{G}{G}|4|Instant|3
+rTavers e?h eUvle?wald|{G}|1|Sorcery|57
+Vetera nCathar|{1}{G}|2|Creature — Human Soldier|8
+Watc?er?i? t? hWeb|{4}{G}|5|Creature — Spider|16
+Ash?mtuh Bl?de|1|1|Artifact — Equipment|27
+Thraebn Gargoyl?|{1}|1|Artifact Creature — Gargoyle|38
+iWcker Wt?ch|{3}|3|Artifact Creature — Scarecrow|26
+Cohkde Et?sary|1|1|Land|17
+Forsaken Snacturay|1|1|Land|12
+Soten Quaryr|1|1|Land|56
+Courageou sOur?ide?|{3}{W}|4|Creature — Human Scout|36
+Ironclad Slayer|{2}{W}|3|Creature — Human Warrior|13
+S?lfle? sSp?rti|{1}{W}|2|Creature — Spirit Cleric|44
+Sigard'a? Adi|{W}|1|Enchantment|11
+Spcerta ?Reserves|{3}{W}|4|Sorcery|26
+Curi?us Houm?ucl?s|{1}{U}|2|Creature — Homunculus|43
+Vroacious Redar?|1|2|Creature — Eldrazi Homunculus|28
+F?tru?es' Favor|{3}{U}|4|Instant|40
+Scour teh Labor?aory|{4}{U}{U}|6|Instant|50
+?aunted Dead|{3}{B}|4|Creature — Zombie|22
+Pr?ign Q?estions|{2}{B}|3|Sorcery|53
+Ruthl?ss Disposla|{4}{B}|5|Sorcery|1
+Conduit fo Stroms|{2}{R}|3|Creature — Werewolf Horror|6
+Galvanic Bomb?rdmnet|{R}|1|Instant|36
+Insaitabl eoGrgers|{2}{R}{R}|4|Creature — Vampire Berserker|56
+Otherworldly Outb?rst|{R}|1|Instant|14
+Erupting Deradwolf|1|4|Creature — Eldrazi Werewolf|36
+T?er?o-Alchemist|{1}{R}|2|Creature — Human Shaman|33
+Gnar?wo?d rDyad|{G}|1|Creature — Dryad Horror|49
+Ishk?nah, Grafwidow|{4}{G}|5|Legendary Creature — Spider|43
+Spiirt of?th eHnut|{1}{G}{G}|3|Creature — Wolf Spirit|59
+aT?gleclaw Werewol?|{2}{G}{G}|4|Creature — Werewolf Horror|13
+Adriaan's Vlaor|1|1|Conspiracy|51
+I?ne?diary Dsisent|1|1|Conspiracy|44
+Messenge? J?as|{4}{U}|5|Creature — Bird|51
+?arrulosu S?co?ahnt|{2}{B}|3|Creature — Human Advisor|41
+aMrhceas's De?eer|{3}{B}|4|Enchantment|29
+Garbage F?re|{2}{R}|3|Instant|43
+Regal Bheemoth|{4}{G}{G}|6|Creature — Lizard|15
+Split?ing lSime|{3}{G}{G}|5|Creature — Ooze|43
+An?e??f oIvneniton|{3}{W}{W}|5|Creature — Angel|25
+Av?ary Mehacnic|{1}{W}|2|Creature — Dwarf Artificer|14
+Trusty ?Cmpanion|{1}{W}|2|Creature — Hyena|23
+Mi?siter o ?Iqnuiries|{U}|1|Creature — Vedalken Advisor|24
+Veadlken Blade?a?ter|{2}{U}|3|Creature — Vedalken Soldier|33
+Dukha?? S?avenger|{5}{B}|6|Creature — Crocodile|37
+Pr?khata Club Security|{3}{B}|4|Creature — Aetherborn Warrior|59
+Tidy Conculsino|{3}{B}{B}|5|Instant|40
+WeaponcraftE?tnhuisats|{2}{B}|3|Creature — Aetherborn Artificer|3
+Chand?a, T?rch? fD?efiance|{2}{R}{R}|4|Planeswalker — Chandra|23
+Comb?s?ible Ge?rhulk|{4}{R}{R}|6|Artifact Creature — Construct|22
+Giant ?pe??acle|{1}{R}|2|Enchantment — Aura|6
+R?ni?us rGemlin|{R}|1|Creature — Gremlin|34
+Ar?hitec? of t?e U?tamed|{2}{G}|3|Creature — Elf Artificer Druid|7
+Bloss?onig Defense|{G}|1|Instant|34
+F?irgro??ds Trupmeter|{2}{G}|3|Creature — Elephant|47
+Tak? Dow?|{G}|1|Sorcery|46
+Cloudbla?e?|{3}{W}{U}|5|Creature — Human Scout|18
+?Atherflux Reservoir|{4}|4|Artifact|25
+Aetherworks Marve?|{4}|4|Legendary Artifact|23
+Bastion Masodton|{5}|5|Artifact Creature — Elephant|32
+Electrosa?tic Pmmueler|{3}|3|Artifact Creature — Construct|23
+Fili?er eFamiliar|{3}|3|Artifact Creature — Fox|49
+Ghirapur Or?rry|{4}|4|Artifact|24
+Inventor's Goggles|{1}|1|Artifact — Equipment|24
+?neegade Freig?ter|{3}|3|Artifact — Vehicle|19
+?nspiring Vant?eg|1|1|Land|35
+?errain Elemetnla|{1}{G}|2|Creature — Elemental|59
+Faerie Artisnas|{3}{U}|4|Creature — Faerie Artificer|11
+Primev?l?Proe?ctor|{10}{G}|11|Creature — Avatar|50
+Stoenhoof Cihetafin|{7}{G}|8|Creature — Centaur Warrior|21
+Akiri, L?n-?elinger|{R}{W}|2|Legendary Creature — Kor Soldier Ally|9
+Brue sTar,l Boor?h? eHrde?|{2}{R}{W}|4|Legendary Creature — Human Ally|34
+Ssaki? ?heU nyie?ding|{B}{R}{G}{W}|4|Legendary Creature — Human Soldier|21
+Sylvan Relcamation|{3}{G}{W}|5|Instant|28
+Ash? arren?|1|1|Land|59
+Aethr?geode Mine?|{1}{W}|2|Creature — Dwarf Scout|48
+Call fo? ?niyt|{3}{W}{W}|5|Enchantment|28
+To?t?er Arres?|{2}{W}|3|Enchantment|17
+R?vesre Engineer|{3}{U}{U}|5|Sorcery|13
+Wi?h ?f Invention|{X}{U}{U}{U}|3|Instant|44
+Faatl Push|{B}|1|Instant|30
+?e?geflu Rbeel|{2}{B}|3|Creature — Aetherborn Warrior|25
+Aehter Ch?ae?|{1}{R}|2|Creature — Human Artificer|42
+Frn?lt?ie Rebel|{2}{R}|3|Creature — Human Warrior|18
+Kari Ze?s'? xp?rtise|{1}{R}{R}|3|Sorcery|40
+Scrappe ?rhamipon|{3}{R}|4|Creature — Human Artificer|30
+eAther Hedrre|{3}{G}|4|Creature — Elf Artificer Druid|34
+Lifercaft Cava?ry|{4}{G}|5|Creature — Elf Warrior|57
+R?negad? R?llie?|{1}{G}{W}|3|Creature — Human Warrior|2
+Crackdow? ?ons??uct|{4}|4|Artifact Creature — Construct|21
+?areed?i? Dragtser|{3}|3|Artifact — Vehicle|29
+??plement of Ma?cie|{2}|2|Artifact|40
+Ir?nt?ead Crsuher|{4}|4|Artifact — Vehicle|37
+Mtea?lci Miimc|{2}|2|Artifact Creature — Shapeshifter|55
+Universal Solvent|{1}|1|Artifact|14
+WatchfluA utomaton|{3}|3|Artifact Creature — Construct|33
+p?ire of In?sdtyr|1|1|Land|57
+T?ezeret, aMstre of Metla|{4}{U}{B}|6|Planeswalker — Tezzeret|56
+Giedon's Int?rven?ion|{2}{W}{W}|4|Enchantment|23
+Regal C?racal|{3}{W}{W}|5|Creature — Cat|29
+Aven Initiat?|{3}{U}|4|Creature — Bird Warrior|57
+Cnesor|{1}{U}|2|Instant|7
+Cr?pticS erepnt|{5}{U}{U}|7|Creature — Serpent|4
+Gal?s?rkie|{2}{U}|3|Instant|4
+Labyri?h? Guar?ina|{1}{U}|2|Creature — Illusion Warrior|3
+Seeke?ro?fIns?gth|{1}{U}|2|Creature — Human Wizard|13
+r?T?l o? nKowledge|{3}{U}|4|Enchantment|16
+Vizier of Tu?bli?g Snads|{2}{U}|3|Creature — Human Cleric|35
+Archfiend ofI fn?i|{3}{B}{B}|5|Creature — Demon|20
+Blg?ht?e Bta|{2}{B}|3|Creature — Zombie Bat|1
+Faith of the Devoted|{2}{B}|3|Enchantment|23
+Final Rewadr|{4}{B}|5|Instant|26
+Minotaur Srueshot|{2}{R}|3|Creature — Minotaur Archer|9
+Pursue ??ory|{3}{R}|4|Instant|18
+Colossapeed|{4}{G}|5|Creature — Insect|42
+?Sed eWknae?s|{G}|1|Instant|28
+?rail o? Strentgh|{2}{G}|3|Enchantment|10
+Decimator Beetle|{3}{B}{G}|5|Creature — Insect|38
+?eave rof Currents|{1}{G}{U}|3|Creature — Naga Druid|35
+Bnotu's Mn???en?|{3}|3|Legendary Artifact|15
+?n?d eKhop???|{1}|1|Artifact — Equipment|2
+uSnc?orc?ed Desert|1|1|Land — Desert|52
+Companion fo the Trials|{2}{W}|3|Creature — Bird Soldier|16
+iLliana,D eath Wileder|{5}{B}{B}|7|Planeswalker — Liliana|18
\ No newline at end of file
diff --git a/Aufgabe1/scrambledList.txt b/Aufgabe1/scrambledList.txt
new file mode 100644
index 0000000000000000000000000000000000000000..34e5f18df43f8ddca5f526d42d9dae3337dbe116
--- /dev/null
+++ b/Aufgabe1/scrambledList.txt
@@ -0,0 +1,1749 @@
+Blue Elem?ntal lBat?|{U}|1|Instant|37
+Clone|{3}{U}|4|Creature — Shapeshifter|15
+Crystal Rdo|{1}|1|Artifact|4
+Darkpac?|{B}{B}{B}|3|Sorcery|1
+Dingus Eg?|{4}|4|Artifact|48
+Darogn Whelp|{2}{R}{R}|4|Creature — Dragon|40
+Dra?n ?ower|{U}{U}|2|Sorcery|37
+Drudg??Skeelon?s|{1}{B}|2|Creature — Skeleton|56
+Funguasur|{3}{G}|4|Creature — Fungus Lizard|42
+Holy Armor|{W}|1|Enchantment — Aura|5
+Howl fr?m Beyond|{X}{B}|1|Instant|21
+Ill?sinoary Mask|{2}|2|Artifact|59
+Inivsbiility|{U}{U}|2|Enchantment — Aura|31
+Ivor? Cup|{1}|1|Artifact|44
+Ja?e Moonlith|{4}|4|Artifact|40
+Lance|{W}|1|Enchantment — Aura|52
+Lifetap|{U}{U}|2|Enchantment|45
+Light?in gBolt|{R}|1|Instant|57
+Lo?d of Atlantis|{U}{U}|2|Creature — Merfolk|51
+Me?a Pe?saus|{1}{W}|2|Creature — Pegasus|45
+Mo?s's Goblin aRide?r|{R}|1|Creature — Goblin|48
+Pahnta?malT er?ani|{U}{U}|2|Enchantment — Aura|8
+Raise Daed|{B}|1|Sorcery|51
+Sa?rifiec|{B}|1|Instant|58
+StoneG iant|{2}{R}{R}|4|Creature — Giant|39
+Stream o fLif?|{X}{G}|1|Sorcery|49
+?Trror|{1}{B}|2|Instant|16
+Time Valut|{2}|2|Artifact|57
+Verduran E?cahntrses|{1}{G}{G}|3|Creature — Human Druid|57
+Veteran Bodygaurd|{3}{W}{W}|5|Creature — Human|38
+Warp ?r?iafct|{B}{B}|2|Enchantment — Aura|23
+Wa?er Elmeentla|{3}{U}{U}|5|Creature — Elemental|9
+Weakenss|{B}|1|Enchantment — Aura|51
+lAi Baba|{R}|1|Creature — Human Rogue|1
+B?azarof? Baghadd|1|1|Land|50
+Cuombajj ?itches|{B}{B}|2|Creature — Human Wizard|17
+Fishilver O?l|{1}{U}|2|Enchantment — Aura|5
+eMrhcan tShip|{U}|1|Creature — Human|60
+Ol? Man of the ?ea|{1}{U}{U}|3|Creature — Djinn|34
+Piety|{2}{W}|3|Instant|25
+Repen?ant? ?a?ksmith|{1}{W}|2|Creature — Human|35
+tSone-Throwign D?vil?|{B}|1|Creature — Devil|22
+Wyluli Wolf|{1}{G}|2|Creature — Wolf|53
+Dwarven?Weaponmstih|{1}{R}|2|Creature — Dwarf Artificer|19
+Phyerx?an Gre??mns|{2}{B}|3|Creature — Gremlin|29
+Triskleoin|{6}|6|Artifact Creature — Construct|39
+XeincP olteregist|{1}{B}{B}|3|Creature — Spirit|36
+Adun Okaenshi?ld|{B}{R}{G}|3|Legendary Creature — Human Knight|19
+??rathi eBrserk?r|{2}{R}{R}{R}|5|Creature — Human Berserker|44
+Beassto f Bogardan|{4}{R}|5|Creature — Beast|44
+B?a?k? ana Bat?ery|{4}|4|Artifact|54
+?lu eanMa Battery|{4}|4|Artifact|17
+Chai?s?ofMe?phisotpheels|{1}{B}|2|Enchantment|17
+Coocon|{G}|1|Enchantment — Aura|49
+riCsonm Kobolds|{0}|0|Creature — Kobold|13
+Eq?in??|{W}|1|Enchantment — Aura|49
+Hype?ion ?lakcsimth|{1}{R}{R}|3|Creature — Human Artificer|40
+Jux?a?soe|{3}{U}|4|Sorcery|17
+K?s?mir th? oLne Wolf|{4}{W}{U}|6|Legendary Creature — Human Warrior|51
+Ko?old Drill?Sergeant|{1}{R}|2|Creature — Kobold Soldier|38
+L?n dTax|{W}|1|Enchantment|58
+arMhalut Elsd?agon|{3}{R}{R}{G}|6|Legendary Creature — Elf Warrior|54
+Moss oMns?tr|{3}{G}{G}|5|Creature — Elemental|41
+N?trh Star|{4}|4|Artifact|40
+??va Pentac?e|{4}|4|Artifact|2
+Pi?ie Queen|{2}{G}{G}|4|Creature — Faerie|7
+Psy?ihc P?rge|{U}|1|Sorcery|47
+Ramie?? ?eiPetro|{3}{U}{B}{B}|6|Legendary Creature — Human Pirate|18
+eRevr?eratino|{2}{U}{U}|4|Instant|17
+Ring of Immotrals|{5}|5|Artifact|38
+S?afarer's Quay|1|1|Land|48
+Shield ?all|{1}{W}|2|Instant|11
+Spinal Villain|{2}{R}|3|Creature — Beast|27
+Takklemaggot|{2}{B}{B}|4|Enchantment — Aura|24
+The W?etch?d|{3}{B}{B}|5|Creature — Demon|47
+Time Ele?ent?l|{2}{U}|3|Creature — Elemental|41
+Tundra ?olves|{W}|1|Creature — Wolf|4
+Undert?w|{2}{U}|3|Enchantment|56
+Utname?W ilds|{2}{G}|3|Sorcery|44
+Wi?te?Mana Battery|{4}|4|Artifact|4
+W?od Elemental|{3}{G}|4|Creature — Elemental|33
+Exorcis?|{W}{W}|2|Creature — Human Cleric|54
+Golbin Cavs?|{1}{R}{R}|3|Enchantment — Aura|2
+Goblin Wizard|{2}{R}{R}|4|Creature — Goblin Wizard|46
+Mars? Viepr|{3}{G}|4|Creature — Snake|51
+aRg Ma?|{2}{B}{B}|4|Creature — Human Minion|36
+So?r?w's Pat?|1|1|Land|29
+Spitting Slug|{1}{G}{G}|3|Creature — Slug|16
+?weo? fo C??eia?l|{2}|2|Artifact|58
+Wormwo?? T?eefol?|{3}{G}{G}|5|Creature — Treefolk|48
+BrssaclawO rcs|{2}{R}|3|Creature — Orc|17
+Bre?ding Pit|{3}{B}|4|Enchantment|28
+De?if's?Coen|{0}|0|Artifact|18
+Farrelite P?iest|{1}{W}{W}|3|Creature — Human Cleric|31
+?ymn ot Tourach|{B}{B}|2|Sorcery|30
+Initiates of?theE bon Hand|{B}|1|Creature — Cleric|5
+Ringo f Renewal|{5}|5|Artifact|43
+S?dn S?lso|1|1|Land|21
+Arena|1|1|Land|25
+Merfolk Me?mei?st|{1}{U}|2|Creature — Merfolk Wizard|40
+Arrest|{2}{W}|3|Enchantment — Aura|14
+oCnsum epS?rit|{X}{1}{B}|2|Sorcery|17
+Dreg?a?ngler|{1}{B}{G}|3|Creature — Plant Zombie|32
+Sca?egnign Ozo?|{1}{G}|2|Creature — Ooze|57
+Mgaister o ?Worth|{4}{W}{B}|6|Creature — Angel|46
+Agneli??Skirmish?r|{4}{W}{W}|6|Creature — Angel|48
+Raks?sa a?izi?r|{2}{B}{G}{U}|5|Creature — Cat Demon|11
+Dragoncsale Gen?ral|{3}{W}|4|Creature — Human Warrior|40
+F?amruesh?Rider|{4}{R}|5|Creature — Human Warrior|31
+lA?hma?rre?t?High ?Abie?r|{5}{U}{U}|7|Legendary Creature — Sphinx|31
+Valrouos Satnce|{1}{W}|2|Instant|60
+Drea ?Defile?|{6}{B}|7|Creature — Eldrazi|4
+Adarka ?rent?nel|{5}|5|Artifact Creature — Soldier|49
+Aegis ?f hteM eek|{3}|3|Artifact|30
+Blniking Spii?t|{3}{W}|4|Creature — Spirit|47
+Bone? hama?|{2}{R}{R}|4|Creature — Giant Shaman|34
+aCll t? Arms|{1}{W}|2|Enchantment|12
+Centaur Arch?r|{1}{R}{G}|3|Creature — Centaur Archer|54
+Di?b?lic V?i?on|{U}{B}|2|Sorcery|8
+F?ameS pirit|{4}{R}|5|Creature — Elemental Spirit|2
+lFare|{2}{R}|3|Instant|21
+Fo?k fo the P?nes|{4}{G}|5|Creature — Dryad|19
+?Gacia ?Creavsses|{2}{R}|3|Enchantment|60
+Goblin L?re|{3}|3|Artifact|41
+Gob?inM ut?nt|{2}{R}{R}|4|Creature — Goblin Mutant|52
+GoblinS ????nm|{3}{R}|4|Creature — Goblin|12
+Hem?tit??Talisman|{2}|2|Artifact|37
+Ice lFoe|1|1|Land|4
+Iceuqake|{1}{B}{B}|3|Sorcery|35
+Krovkian?Fetish|{2}{B}|3|Enchantment — Aura|8
+?roivkan Socreer?|{2}{U}|3|Creature — Human Wizard|32
+Krovi?an? amipre|{3}{B}{B}|5|Creature — Vampire|48
+Lim-ûD?lsCo hotr|{1}{B}{B}|3|Creature — Zombie|26
+?i-mDûls'H ex|{1}{B}|2|Enchantment|13
+oL?t?O?edr ofJ?arkeld|{2}{W}{W}|4|Creature — Human Knight|34
+Malcahie tTalisma?|{2}|2|Artifact|9
+Monsono|{2}{R}{G}|4|Enchantment|54
+uMdsl?de|{2}{R}|3|Enchantment|12
+Msuiican|{2}{U}|3|Creature — Human Wizard|24
+Nacre Tals?man|{2}|2|Artifact|18
+Orcish?Librarian|{1}{R}|2|Creature — Orc|58
+Pola rKrak?n|{8}{U}{U}{U}|11|Creature — Kraken|5
+oPx|{B}{B}{B}|3|Sorcery|45
+Rya of Commadn|{3}{U}|4|Instant|16
+Se?zures|{1}{B}|2|Enchantment — Aura|58
+Snow Fortress|{5}|5|Artifact Creature — Wall|28
+Sn?w? ound|{2}{W}|3|Creature — Hound|40
+Staf? of t?? Ages|{3}|3|Artifact|7
+Stonehands|{2}{R}|3|Enchantment — Aura|27
+Tim eBomb|{4}|4|Artifact|37
+rUza'?B au?le|{0}|0|Artifact|20
+Vl?dt|1|1|Land|53
+Walknig?aWl?|{4}|4|Artifact Creature — Wall|9
+Wh?te Scarba|{W}|1|Enchantment — Aura|57
+Ambush Party|{4}{R}|5|Creature — Human Rogue|25
+A?aba Bodyguadr|{3}{R}|4|Creature — Minotaur|55
+Baki's Cruse|{2}{U}{U}|4|Sorcery|6
+Chian ?tassi|{U}|1|Instant|54
+Didge?idoo|{1}|1|Artifact|27
+Drudge Sp?el|{B}{B}|2|Enchantment|9
+Dry Spell|{1}{B}|2|Sorcery|39
+Fero?'sB an|{6}|6|Artifact|18
+??lk o??An-Hvava|{G}|1|Creature — Human|29
+Koskun aFlls|{2}{B}{B}|4|World Enchantment|21
+?es ?Facoln|{1}{W}|2|Creature — Bird|33
+Orcis? Mnie|{1}{R}{R}|3|Enchantment — Aura|49
+Prmia? Orde?|{2}{G}{G}|4|Enchantment|54
+R??e?al|{2}{G}|3|Sorcery|50
+Trade Caravan|{W}|1|Creature — Human Nomad|50
+Bladuvian Dead|{3}{B}|4|Creature — Zombie|13
+Choas Harleqi?n|{2}{R}{R}|4|Creature — Human|10
+Cnotaigon|{3}{B}{B}|5|Instant|8
+Froce of Will|{3}{U}{U}|5|Instant|59
+eHlm of Oebdi?nce|{4}|4|Artifact|15
+Inhe?itance|{W}|1|Enchantment|30
+Kejlodran Outpsot|1|1|Land|6
+Lirbaryo f Lat-Na?|{4}{U}|5|Sorcery|10
+Nobl? ?teeds|{2}{W}|3|Enchantment|37
+P?y??xina Boon|{2}{B}|3|Enchantment — Aura|5
+Ritu?l of theM achine|{2}{B}{B}|4|Sorcery|20
+Slo?Grail|{3}|3|Artifact|38
+St?rm?Cauldron|{5}|5|Artifact|30
+StormC?row|{1}{U}|2|Creature — Bird|39
+T?o?ado|{4}{G}|5|Enchantment|1
+Wil dAsethi?|{2}{W}|3|Creature — Bird|48
+Yav?maay?Ants|{2}{G}{G}|4|Creature — Insect|28
+Su?por|{2}{B}|3|Sorcery|33
+Dsimiss|{2}{U}{U}|4|Instant|45
+Gaae's B?es?sng|{1}{G}|2|Sorcery|31
+?ana eLak|{1}{U}|2|Instant|26
+Skirk?Marauder|{1}{R}|2|Creature — Goblin|11
+Glacial R?a|{1}{R}|2|Instant — Arcane|45
+Surging Flame|{1}{R}|2|Instant|20
+Shichiu?kuij? Dra?gn|{6}{R}{R}{R}|9|Summon — Dragon|34
+Fra??ranl xaElta?ion|{U}{U}{U}{U}|4|Sorcery|39
+A?a?rm|{1}{W}|2|Instant|11
+Amber Prison|{4}|4|Artifact|53
+uAs?ic?o?s?Ancest?r|{3}{W}|4|Creature — Human Cleric|42
+Blind Fury|{2}{R}{R}|4|Instant|10
+uBildre's Bane|{X}{X}{R}|1|Sorcery|20
+C?ariot oft h? uSn|{3}|3|Artifact|17
+Curse dTotme|{2}|2|Artifact|10
+Di?rwater Wra?hi|{3}{B}|4|Creature — Wraith|13
+?ner?yV ro?tx|{3}{U}{U}|5|Enchantment|25
+Final Fortune|{R}{R}|2|Instant|10
+Gb?ln? Elite Ifnantry|{1}{R}|2|Creature — Goblin Warrior|1
+L?r ?foP rey|{2}{G}{G}|4|Instant|43
+Maro|{2}{G}{G}|4|Creature — Elemental|49
+?elesseS piri?|{3}{W}{W}|5|Creature — Angel Spirit|17
+Pat?gi aGo?em|{4}|4|Artifact Creature — Golem|51
+Pea?r?Drgaon|{4}{W}{W}|6|Creature — Dragon|17
+P?isamtic Boon|{X}{W}{U}|2|Instant|57
+Restless ?ea?|{1}{B}|2|Creature — Skeleton|17
+Shdoaw Guildmag?|{B}|1|Creature — Human Wizard|52
+S??Di?am?nd|{2}|2|Artifact|4
+Superior ?umber?|{G}{G}|2|Sorcery|47
+Talruum ??ontaur|{2}{R}{R}|4|Creature — Minotaur Berserker|15
+Te?eri' sDrake|{2}{U}|3|Creature — Drake|23
+eTlim'oTr'? ?dict|{R}|1|Instant|22
+?rbogr Panthe?|{2}{B}|3|Creature — Nightstalker Cat|21
+a?rd ?o Lights|{W}{W}|2|Enchantment — Aura|34
+Zhalfi?i nCommanedr|{2}{W}|3|Creature — Human Knight|51
+Ovinoma?c?r|{2}{U}|3|Creature — Human Wizard|8
+lBank??tof Nigth|{1}{B}{B}|3|Enchantment|22
+Fierlbsat|{4}{R}{R}|6|Instant|2
+Goblni Recruiter|{1}{R}|2|Creature — Goblin|17
+Gosasme?rCh?ins|{W}{W}|2|Enchantment|47
+Inferna?H arvet?|{1}{B}|2|Sorcery|13
+Juju Bublbe|{1}|1|Artifact|22
+?agm? Mi??|{1}|1|Artifact|58
+Sun Cla?p|{1}{W}|2|Enchantment — Aura|60
+Suq'Ata? nacer|{2}{R}|3|Creature — Human Knight|2
+Thre? Wishse|{1}{U}{U}|3|Instant|43
+?ir?g?le of War|{1}|1|Artifact|11
+?ampiricT utor|{B}|1|Instant|47
+War?ror's Honor|{2}{W}|3|Instant|50
+WatesproutD jinn|{2}{U}{U}|4|Creature — Djinn|21
+Blessed Reversal|{1}{W}|2|Instant|32
+Bu?ni?g Colak|{R}|1|Sorcery|46
+Cr?el Fate|{4}{U}|5|Sorcery|33
+Fruit?o?|{G}|1|Sorcery|5
+H?lkin gGb?lin|{1}{R}|2|Creature — Goblin|23
+Jungle Li?n|{G}|1|Creature — Cat|23
+Natur?l Spring|{3}{G}{G}|5|Sorcery|25
+Rgaing Cougar|{2}{R}|3|Creature — Cat|25
+Willow Dryad|{G}|1|Creature — Dryad|42
+Golbin aWrchief?vAatar|1|1|Vanguard|12
+Lzyo?da, the Blood?Witch Avatar|1|1|Vanguard|1
+?aster?of ?h e?il dHunt?Avatar|1|1|Vanguard|57
+aRshka Gol?dn Cub Avatar|1|1|Vanguard|54
+Selenia|1|1|Vanguard|58
+Sisay|1|1|Vanguard|17
+Sq??e|1|1|Vanguard|16
+Stalki?g Tiger?vAa?ar|1|1|Vanguard|25
+Aboroth|{4}{G}{G}|6|Creature — Elemental|55
+A?gelic Renew?l|{1}{W}|2|Enchantment|1
+Avizoa|{3}{U}|4|Creature — Jellyfish|60
+eBnalish Mis??onary|{W}|1|Creature — Human Cleric|16
+Cirlcnig?Vultures|{B}|1|Creature — Bird|45
+Desperate?a?mbit|{R}|1|Instant|22
+Downr??ft|{2}{G}|3|Enchantment|21
+Ftaal Blow|{B}|1|Instant|31
+eHat Stroke|{2}{R}|3|Enchantment|3
+Hi?den Horrro|{1}{B}{B}|3|Creature — Horror|47
+Lava H?u?ds|{2}{R}{R}|4|Creature — Hound|14
+Marax?s ofK ?ld|{4}{R}{R}|6|Legendary Creature — Human Warrior|43
+Peac?keepe?|{2}{W}|3|Creature — Human|38
+eSrenity|{1}{W}|2|Enchantment|57
+oTlarian ?erpent|{5}{U}{U}|7|Creature — Serpent|9
+Re?e?nnt|{4}{B}|5|Creature — Spirit|36
+L uuB, ?aster-a?A-rms|{5}{R}|6|Legendary Creature — Human Soldier Warrior|1
+Silent Spectre|{4}{B}{B}|6|Creature — Specter|35
+Loust Bloom|1|1|Artifact|39
+Demigdo ofR?evenge|{B/R}{B/R}{B/R}{B/R}{B/R}|5|Creature — Spirit Avatar|32
+Bood??ord of Vaasogth|{3}{B}{B}|5|Creature — Vampire Warrior|49
+Can?ivalHe lsltede|{4}{B}{R}|6|Creature — Nightmare Horse|10
+?reasury T?rlul|{4}{W}{B}|6|Creature — Thrull|7
+Idnule?nt Tormentor|{3}{B}{B}|5|Creature — Demon|16
+Herald ?f Anafenza|{W}|1|Creature — Human Soldier|9
+Kheur Lich ?ord|{3}{B}{G}{U}|6|Creature — Zombie Wizard|47
+Narse,tE?lnightened Msater|{3}{U}{R}{W}|6|Legendary Creature — Human Monk|27
+Teum? As?ednnayc|{G}{U}{R}|3|Enchantment|2
+Trail of Myseryt|{1}{G}|2|Enchantment|24
+Bruta lHordehceif|{3}{B}|4|Creature — Orc Warrior|7
+Ojutai? Sou? of Winter|{5}{W}{U}|7|Legendary Creature — Dragon|28
+Rally?the Ancestosr|{X}{W}{W}|2|Instant|3
+Anfaenza,?Ki-nTree ?pirit|{W}{W}|2|Legendary Creature — Spirit Soldier|56
+Su?scorc??Reg?tn|{3}{W}{W}|5|Creature — Dragon|12
+Li?aina, eH???ic?l Hae?er|{1}{B}{B}|3|Legendary Creature — Human Cleric|31
+Mizzimu Meddler|{2}{U}|3|Creature — Vedalken Wizard|29
+Ta?ent o fth Tee?epath|{2}{U}{U}|4|Sorcery|53
+Traig c?rroganec|{3}{W}{W}|5|Sorcery|13
+Akuom Hellkiet|{4}{R}{R}|6|Creature — Dragon|6
+lBigth Heredr|{5}|5|Creature — Eldrazi Processor|40
+Canopy Vista|1|1|Land — Forest Plains|39
+Kiora, Matser of the epDths|{2}{G}{U}|4|Planeswalker — Kiora|9
+Alt?r of Dementia|{2}|2|Artifact|11
+Blood?Pet|{B}|1|Creature — Thrull|20
+rBoken aFll|{2}{G}|3|Enchantment|53
+CalderaL aek|1|1|Land|32
+C?onw?of Flmaes|{R}|1|Enchantment — Aura|45
+?auth iMind?rpepr|{3}{B}|4|Creature — Dauthi Minion|30
+F?laamrid|{1}{U}{U}|3|Creature — Squid Beast|10
+Gerrard's Batt?e rCy|{W}|1|Enchantment|21
+Helm ofP ossess?on|{4}|4|Artifact|6
+Jackal Pup|{R}|1|Creature — Hound|45
+Kindle|{1}{R}|2|Instant|37
+Ligh tof Day|{3}{W}|4|Enchantment|34
+Marble T?tan|{3}{W}|4|Creature — Giant|21
+Natur'es Reo?lt|{3}{G}{G}|5|Enchantment|2
+Phryxeai? Gri?oire|{3}|3|Artifact|46
+Pnicher Beetl?s|{2}{G}|3|Creature — Insect|38
+Pr?cognition|{4}{U}|5|Enchantment|48
+Propaganda|{2}{U}|3|Enchantment|49
+Raelit ?Ancohr|{1}{G}|2|Instant|17
+Reanimate|{B}|1|Sorcery|45
+Recycle|{4}{G}{G}|6|Enchantment|49
+Rootwat?? Diver|{U}|1|Creature — Merfolk|28
+Scragnoth|{4}{G}|5|Creature — Beast|8
+???shrou dR?ng?r|{G}|1|Creature — Elf|25
+??ltar? Cr?sader|{2}{W}|3|Creature — Soltari Knight|5
+Wall o? ?iffu?ion|{1}{R}|2|Creature — Wall|38
+uDt? Cra?ler|{R}|1|Creature — Insect|17
+nI?ruderA larm|{2}{U}|3|Enchantment|16
+Invasion Plans|{2}{R}|3|Enchantment|17
+oM xDia?ond|{0}|0|Artifact|15
+Po?tcullis|{4}|4|Artifact|35
+Provkoe|{1}{G}|2|Instant|32
+Rebound|{1}{U}|2|Instant|58
+Samite B??ss?ng|{W}|1|Enchantment — Aura|9
+Scapegaot|{W}|1|Instant|37
+Sky?hroud Arhcer|{G}|1|Creature — Elf Archer|39
+Volra?t'sS haepshiftre|{1}{U}{U}|3|Creature — Shapeshifter|46
+Vloarth's ?Srognhlo?|1|1|Legendary Land|42
+bAyssal ?giht?atlker|{3}{B}|4|Creature — Nightstalker|38
+Angleo f Fury|{4}{W}{W}|6|Creature — Angel|10
+rAmored Galleo?|{4}{U}|5|Creature — Human Pirate|34
+Goblin Firset?r?rt|{R}|1|Creature — Goblin|53
+Harmony of N?ture|{2}{G}|3|Sorcery|38
+O?re Taskmatser|{3}{R}|4|Creature — Ogre|18
+?gre War?ior|{3}{R}|4|Creature — Ogre Warrior|49
+Pr?dato?y?Nih?ts?alke?|{3}{B}{B}|5|Creature — Nightstalker|40
+Rall? the Tro?sp|{W}|1|Instant|21
+aRev?ous Rats|{1}{B}|2|Creature — Rat|38
+S?e?m? atapul?|{3}{W}{W}|5|Creature — Human Soldier|51
+y?lvna Bsailisk|{3}{G}{G}|5|Creature — Basilisk|29
+Talas?Explore?|{1}{U}|2|Creature — Human Pirate Scout|7
+iVndciate|{1}{W}{B}|3|Sorcery|44
+Mni'ds Deisre|{4}{U}{U}|6|Sorcery|19
+G?blin?eWled?|{R}|1|Creature — Goblin Artificer|9
+H?nna, Sh?p'?N avig?otr|{1}{W}{U}|3|Legendary Creature — Human Artificer|41
+El?sh N?rn, Garnd?Cenobite|{5}{W}{W}|7|Legendary Creature — Praetor|55
+Du?lcas?er ??ge|{1}{R}{R}|3|Creature — Human Wizard|22
+?quilibrium|{1}{U}{U}|3|Enchantment|56
+Mana B?each|{2}{U}|3|Enchantment|1
+Oath of Scholars|{3}{U}|4|Enchantment|42
+?ay??rd?Suo?|{2}{U}{U}|4|Creature — Spirit|44
+Wh?ptognu eFr?g|{2}{U}|3|Creature — Frog|50
+Anarchits|{4}{R}|5|Creature — Human Wizard|5
+?lowstone Flood|{3}{R}|4|Sorcery|59
+Mogg Assassn?|{2}{R}|3|Creature — Goblin Assassin|1
+Parox?sm|{1}{R}|2|Enchantment — Aura|17
+Sabertooth W?ver?|{4}{R}|5|Creature — Drake|47
+S?l?ding Salamandre|{2}{R}|3|Creature — Salamander|52
+Elve? Palis?d?|{G}|1|Enchantment|43
+Skyshroud War?Beast|{1}{G}|2|Creature — Beast|41
+Mi?ldses Automa?on|{4}|4|Artifact Creature — Construct|9
+W?rkohrse|{6}|6|Artifact Creature — Horse|7
+Lexiv?re|{3}{W}|4|Summon — Beast|54
+SexA ppela|{W}|1|Instant|51
+Cl?m-I-Am|{2}{U}|3|Summon — Clamfolk|9
+Car?bo?r? Car?pa?c|{5}{G}|6|Enchant Creature|14
+Growt?hpSurt|{1}{G}|2|Instant|35
+Squirrel Fram|{2}{G}|3|Enchantment|56
+C?oas Confetti|{4}|4|Artifact|41
+G?ant Fan|{4}|4|Artifact|35
+Jac??in-?he?Mox|{0}|0|Artifact|10
+?Saut?a o?t he Ages|{4}|4|Artifact|37
+Songtsitcher|{W}|1|Creature — Human Cleric|8
+Annlu|{U}|1|Instant|48
+Catalog|{2}{U}|3|Instant|46
+Hibernation|{2}{U}|3|Instant|24
+La?n??|{1}{U}|2|Enchantment — Aura|51
+Lil?nig Re??rin|{1}{U}|2|Enchantment|24
+PnderellD ra?k|{3}{U}|4|Creature — Drake|37
+Tel?eathy|{U}|1|Enchantment|54
+Veil? dSrepent|{2}{U}|3|Enchantment|36
+A??ssal Hroror|{4}{B}{B}|6|Creature — Horror|46
+Be?ulo|{2}{B}{B}|4|Sorcery|56
+Dark ?atchling|{4}{B}{B}|6|Creature — Horror|28
+Looming ?hade|{2}{B}|3|Creature — Shade|28
+Parasitc iBond|{3}{B}|4|Enchantment — Aura|16
+?ec?u?ive Wight|{3}{B}|4|Creature — Zombie Minion|2
+Spi?ndF ulke|{2}{B}|3|Creature — Worm Horror|19
+aVmpirci ?mrbac?|{2}{B}{B}|4|Enchantment — Aura|45
+?ebulid|{B}|1|Creature — Horror|7
+Wicth Engin?|{5}{B}|6|Creature — Horror|42
+Yawgmtoh's dEict|{1}{B}|2|Enchantment|47
+Acdiic?Soil|{2}{R}|3|Sorcery|52
+Brand|{R}|1|Instant|60
+Brava?o|{1}{R}|2|Enchantment — Aura|43
+aF?u Ltin?|{X}{R}{R}|2|Instant|5
+Goblin aWr uBgg?|{1}{R}|2|Creature — Goblin|34
+u?tmaneuve?|{X}{R}|1|Instant|27
+Socrai Wrmu|{4}{R}|5|Creature — Wurm|55
+cSrap|{2}{R}|3|Instant|24
+Shiv' sEmbrace|{2}{R}{R}|4|Enchantment — Aura|56
+Hidden Ancients|{1}{G}|2|Enchantment|6
+Venomuos Fangs|{2}{G}|3|Enchantment — Aura|47
+i?ldDo gs|{G}|1|Creature — Hound|17
+?Brrin's ?odex|{4}|4|Artifact|47
+Lifleien|{5}|5|Artifact|24
+Noetic Sa?els|{4}|4|Artifact|9
+Phyreiax nCo?ossus|{7}|7|Artifact Creature — Golem|31
+Purging cSythe|{5}|5|Artifact|9
+Bru? tof Eneryg|{W}|1|Instant|22
+eDvotu aHrpi?t|{W}|1|Creature — Human|15
+Hope and Glory|{1}{W}|2|Instant|43
+Plnaar Coll?ase|{1}{W}|2|Enchantment|1
+Aura Flxu|{2}{U}|3|Enchantment|8
+Te?he?dr Skirge|{2}{B}|3|Creature — Imp|35
+Im?ending Disaster|{1}{R}|2|Enchantment|20
+Damping E?n?ne|{4}|4|Artifact|52
+Rin go?G ?x|{3}|3|Artifact|38
+Treet? pVlialge|1|1|Land|37
+Eig?tfo?dM a?z|{2}{W}|3|Instant|33
+hSu Foot Slode?rs|{2}{W}|3|Creature — Human Soldier|27
+?u eMgn, Wu General|{3}{U}{U}|5|Legendary Creature — Human Soldier|26
+Sun Ce,Yo ungCo ?querre|{3}{U}{U}|5|Legendary Creature — Human Soldier|25
+Wu Warsh?p|{2}{U}|3|Creature — Human Soldier|42
+Stone Caatpult|{4}{B}|5|Creature — Human Soldier|21
+Wei?Infanrty|{1}{B}|2|Creature — Human Soldier|23
+Wie Night aRider?|{2}{B}{B}|4|Creature — Human Soldier|43
+Young Wei Recruits|{1}{B}|2|Creature — Human Soldier|35
+Zhang Lioa,H ero ?f Hefie|{4}{B}{B}|6|Legendary Creature — Human Soldier|10
+Burnin?F ?el??|{4}{R}|5|Sorcery|13
+Cont??l of th? Cuort|{1}{R}|2|Sorcery|15
+oDng Zhou, the Tyran?|{4}{R}|5|Legendary Creature — Human Soldier|29
+oZdiac Goat|{R}|1|Creature — Goat|40
+S?oils o? ?ictory|{2}{G}|3|Sorcery|5
+Zodi?c Rbabit|{G}|1|Creature — Rabbit|35
+Feldgling Osprey|{U}|1|Creature — Bird|9
+Rayne, Acade?y Ch?ncellr?|{2}{U}|3|Legendary Creature — Human Wizard|47
+Scent of Brine|{1}{U}|2|Instant|36
+eTlepathi? Spie?|{2}{U}|3|Creature — Human Wizard|57
+Treacheyr|{3}{U}{U}|5|Enchantment — Aura|60
+Body Snatcher|{2}{B}{B}|4|Creature — Minion|12
+Ph?rexian ?oniotr|{3}{B}|4|Creature — Skeleton|57
+Soul?eFast|{3}{B}{B}|5|Sorcery|54
+A?eehr Sti?g|{3}{R}|4|Enchantment|27
+Flmae Jet|{1}{R}|2|Sorcery|55
+Reclkess Abandon|{R}|1|Sorcery|16
+Elivsh Lokootu|{G}|1|Creature — Elf|39
+M??tan'isD ecree|{3}{G}|4|Sorcery|42
+?latrops|{3}|3|Artifact|19
+Masticore|{4}|4|Artifact Creature — Masticore|52
+Scryi?g Glass|{2}|2|Artifact|54
+Thran ?y?mao|{4}|4|Artifact|22
+Ro?al Falcon|{1}{W}|2|Creature — Bird|17
+P??de?fo?Lions|{3}{G}{G}|5|Creature — Cat|7
+Charm Peddler|{W}|1|Creature — Human Spellshaper|57
+?rsobsow Inf?ntr?|{1}{W}|2|Creature — Human Soldier Archer|31
+Nigh?wind Glidre|{2}{W}|3|Creature — Human Rebel|33
+Ramosian Commander|{2}{W}{W}|4|Creature — Human Rebel|54
+Ram?isa? eSrgeant|{W}|1|Creature — Human Rebel|46
+Soo?h?ng ?alm|{1}{W}|2|Instant|28
+Cowadric?|{3}{U}{U}|5|Enchantment|50
+De??dration|{3}{U}|4|Enchantment — Aura|58
+Port ?nspcetor|{1}{U}|2|Creature — Human|1
+Trade oRu?es|{1}{U}|2|Enchantment|47
+Alley Gifrters|{1}{B}{B}|3|Creature — Human Mercenary|18
+C?teran Su?mons|{B}|1|Sorcery|14
+Pr?meval Shambelr|{4}{B}|5|Creature — Horror Mercenary|53
+Qu?gmireL amprey|{2}{B}|3|Creature — Fish|31
+Rosue|{1}{B}|2|Instant|55
+SkulikngF?uigtvie|{2}{B}|3|Creature — Horror Mercenary|13
+Blood ouHnd|{2}{R}|3|Creature — Hound|34
+Blodo Oa?h|{3}{R}|4|Instant|44
+Cavern ?rawler|{2}{R}|3|Creature — Insect|51
+Kyren ?lider|{1}{R}|2|Creature — Goblin|17
+Uphlil Btat?e|{2}{R}|3|Enchantment|6
+lCear teh Land|{2}{G}|3|Sorcery|59
+Clo?cetiveU nocnscouis|{4}{G}{G}|6|Sorcery|32
+D?epwood Wlove?ine|{G}|1|Creature — Wolverine|25
+La?d Garnt|{1}{G}|2|Sorcery|9
+Ruhs?oo? Dry?d|{1}{G}|2|Creature — Dryad|54
+Spo?at?eosu ?e?eration|{3}{G}|4|Sorcery|57
+Hor? of Plenty|{6}|6|Artifact|34
+Hcikor yWoodlot|1|1|Land|17
+?a d?untie|{2}{B}|3|Creature — Goblin Shaman|58
+Kr?s? nW?crhief|{2}{G}|3|Creature — Beast|34
+Terminate|{B}{R}|2|Instant|8
+Go?lin Legionn?ir?|{R}{W}|2|Creature — Goblin Soldier|23
+Mgmaa ?et|{1}{R}|2|Instant|9
+Pillar of ?lame|{R}|1|Sorcery|52
+Enr?oa?hing Wastes|1|1|Land|29
+Rosat|{1}{R}|2|Sorcery|1
+Nissa's Pilg?image|{2}{G}|3|Sorcery|56
+Netter en-Dal|{W}|1|Creature — Human Spellshaper|51
+Sivvis' Valor|{2}{W}|3|Instant|53
+Voice of Tr?h?|{3}{W}|4|Creature — Angel|33
+P?a?r?ax Tide|{2}{U}{U}|4|Enchantment|32
+Seal of Removal|{U}|1|Enchantment|52
+M?nd Slash|{1}{B}{B}|3|Enchantment|37
+Mgog Toa?y|{1}{R}|2|Creature — Goblin|39
+H?r?es? Mage|{G}|1|Creature — Human Spellshaper|14
+Saprolign Clsuetr|{1}{G}|2|Enchantment|19
+Skyshroud S?ntin?l|{2}{G}|3|Creature — Elf|28
+Stampede Driver|{G}|1|Creature — Human Spellshaper|22
+Blebe's Armro|{3}|3|Artifact|55
+Bel?e's Por???|{5}|5|Artifact|52
+Rejvuen?toin Cha?emr|{3}|3|Artifact|25
+Mag?ta the Lion|{3}{W}{W}|5|Legendary Creature — Human Spellshaper|42
+Ae?xi? ZephyrM age|{3}{U}{U}|5|Legendary Creature — Human Spellshaper|31
+Mana aVpor?|{1}{U}|2|Sorcery|8
+Grele' Csaress|{1}{B}|2|Enchantment — Aura|1
+Infer?al Gene?is|{4}{B}{B}|6|Enchantment|35
+Palgue Wind|{7}{B}{B}|9|Sorcery|32
+Rebel?Ifnromer|{2}{B}|3|Creature — Human Mercenary Rebel|25
+Latulla,K ?ldon ?vreseer|{3}{R}{R}|5|Legendary Creature — Human Spellshaper|15
+Latull?'? Orders|{1}{R}|2|Enchantment — Aura|6
+Ridglenie ?gR?r|{2}{R}|3|Creature — Beast|14
+?ar?h?Boa|{G}|1|Creature — Snake|10
+Squrire lraWngler|{2}{G}{G}|4|Creature — Human Druid|21
+?rims?n co??y?e|{1}{W}|2|Creature — Human Cleric|58
+Protcteive Sphe??|{2}{W}|3|Enchantment|44
+Rout|{3}{W}{W}|5|Sorcery|11
+Saimte Minitsration|{1}{W}|2|Instant|3
+Sunscape?Apprenti?e|{W}|1|Creature — Human Wizard|51
+Cry?tal Spray|{2}{U}|3|Instant|44
+Dream Thrshu|{1}{U}|2|Creature — Bird|33
+M?tahtra nAersotat|{2}{U}{U}|4|Creature — Metathran|32
+??t|{U}|1|Instant|43
+Raibno wCo?w|{3}{U}|4|Creature — Bird|36
+S? yWe?vre|{1}{U}|2|Creature — Metathran Wizard|21
+?Anhi?iate|{3}{B}{B}|5|Instant|38
+Desp?arte Research|{1}{B}|2|Sorcery|38
+Do orD ie|{1}{B}|2|Sorcery|21
+Mournin?|{1}{B}|2|Enchantment — Aura|32
+Tia?ted?Well|{2}{B}|3|Enchantment — Aura|43
+?i?htning Dart|{1}{R}|2|Instant|33
+Obliter?te|{6}{R}{R}|8|Sorcery|12
+Aggrs??i?e Ureg|{1}{G}|2|Instant|1
+Lln??war Elite|{G}|1|Creature — Elf|23
+MigthW evaer|{1}{G}|2|Creature — Human Wizard|17
+?estock|{3}{G}{G}|5|Sorcery|51
+Sc?uti?g Trek|{1}{G}|2|Sorcery|43
+?erepn?i?e Kvau|{4}{G}|5|Creature — Kavu|21
+tSa?kingA s?as?in|{1}{U}{B}|3|Creature — Human Assassin|39
+lAl?y Glome|{6}|6|Artifact Creature — Golem|31
+Ph?rexianA lt?r|{3}|3|Artifact|43
+Ph?reiaxn Lens|{3}|3|Artifact|43
+S?a?he?lC ameo|{3}|3|Artifact|54
+iTger?ye Cameo|{3}|3|Artifact|52
+Hobble|{2}{W}|3|Enchantment — Aura|51
+?arch of Souls|{4}{W}|5|Sorcery|58
+Pollen Re?edy|{W}|1|Instant|37
+Srpuri???Deployment|{3}{W}|4|Instant|33
+?hitfing Sky|{2}{U}|3|Enchantment|38
+eDath Bomb|{3}{B}|4|Instant|22
+Nighst?ape Battlem?g?|{2}{B}|3|Creature — Zombie Wizard|58
+Noxiou??Vapros|{1}{B}{B}|3|Sorcery|30
+Phyrexian Scuat|{3}{B}|4|Creature — Zombie|21
+Plan?s?akler's F?ry|{2}{R}|3|Enchantment|48
+Gaea' s?erlad|{1}{G}|2|Creature — Elf|24
+Sa??o?th?oLno|{2}{W}{U}|4|Creature — Bird|3
+Shivan Wurm|{3}{R}{G}|5|Creature — Wurm|37
+Sete lLea Pfala?in|{4}{G}{W}|6|Creature — Elf Knight|3
+Dromar's Cave??|1|1|Land — Lair|26
+Mortify|{1}{W}{B}|3|Instant|31
+eNgate|{1}{U}|2|Instant|18
+iBtuminous Blast|{3}{B}{R}|5|Instant|31
+Coalition Flag|{W}|1|Enchantment — Aura|37
+Manac?es of eDcya|{1}{W}|2|Enchantment — Aura|12
+Spcetral Lynx|{1}{W}|2|Creature — Cat Spirit|52
+Grav eDefiler|{3}{B}|4|Creature — Zombie|50
+Lsat C??es?|{2}{B}|3|Sorcery|16
+?esoaltion Ginat|{2}{R}{R}|4|Creature — Giant|36
+Raakv?lver|{2}{R}|3|Creature — Volver|26
+A?a Disciple|{G}|1|Creature — Human Wizard|58
+Bog Gnarr|{4}{G}|5|Creature — Beast|24
+KvauMa ulre|{4}{G}{G}|6|Creature — Kavu|16
+Urbo?g Elf|{1}{G}|2|Creature — Elf Druid|58
+Con?ume Strength|{1}{B}{G}|3|Instant|25
+Last Stand|{W}{U}{B}{R}{G}|5|Sorcery|13
+Prophe?ic oB?t|{3}{U}{R}|5|Instant|39
+uPtrid Warr?or|{W}{B}|2|Creature — Zombie Soldier Warrior|31
+?u?cksi?ev?? agger|{1}{U}{R}|3|Enchantment — Aura|41
+E?blaz?ned oGlem|{2}|2|Artifact Creature — Golem|12
+Caves?of ??ilos|1|1|Land|26
+Ce?se-Fir?|{2}{W}|3|Instant|37
+Ki?tar's rat?W|{4}{W}{W}|6|Sorcery|6
+Mystic?Crusade?|{1}{W}{W}|3|Creature — Human Nomad Mystic|18
+Mystic Zealo?|{3}{W}|4|Creature — Human Nomad Mystic|18
+Pianna,N moad Captain|{1}{W}{W}|3|Legendary Creature — Human Nomad|2
+Pilgrim ofJ ustice|{2}{W}|3|Creature — Human Cleric|55
+Spher?eof T?tuh|{3}{W}|4|Enchantment|47
+Concentra?e|{2}{U}{U}|4|Sorcery|29
+Dematerialize|{3}{U}|4|Sorcery|40
+Thnki Tank|{2}{U}|3|Enchantment|14
+Unif?ingT heryo|{1}{U}|2|Enchantment|38
+B?o?dcurdler|{1}{B}|2|Creature — Horror|7
+Execute|{2}{B}|3|Instant|17
+Gha?lty Demies|{B}|1|Instant|12
+Zom?ie In?e?tatino|{1}{B}|2|Enchantment|29
+C?hnce Encounetr|{2}{R}{R}|4|Enchantment|40
+Dwarv?n Grunt|{R}|1|Creature — Dwarf|41
+Lav aBlistre|{1}{R}|2|Sorcery|18
+Mudhloe|{2}{R}|3|Instant|20
+Rites of nit?iation|{R}|1|Instant|15
+S?vage ?irecat|{3}{R}{R}|5|Creature — Elemental Cat|23
+Seiz? teh Dya|{3}{R}|4|Sorcery|49
+Shower?o fCoals|{3}{R}{R}|5|Sorcery|40
+Therm?l B?ast|{4}{R}|5|Instant|34
+T??mleb|{1}{R}|2|Sorcery|2
+Druid Lyrsit|{G}|1|Creature — Human Druid|1
+Elephnat ?mbush|{2}{G}{G}|4|Instant|52
+G?ioll aTit?a|{3}{G}{G}|5|Creature — Ape|27
+K?osan Beats|{3}{G}|4|Creature — Squirrel Beast|2
+Na??uko Mentor|{2}{G}|3|Creature — Insect Druid|20
+aDrkwtaer Egg|{1}|1|Artifact|56
+Babraria? Ring|1|1|Land|45
+Cetnaru Ga?den|1|1|Land|14
+Sk?cloud Exapnse|1|1|Land|45
+T?anscende?c?|{3}{W}{W}{W}|6|Enchantment|53
+Cephali dSa?e|{3}{U}|4|Creature — Cephalid|42
+Churning Eddy|{3}{U}|4|Sorcery|20
+oCmpuli?on|{1}{U}|2|Enchantment|32
+Go??tlyWi?ngs|{1}{U}|2|Enchantment — Aura|30
+Fcaeless Butcher|{2}{B}{B}|4|Creature — Nightmare Horror|41
+Suo? Scouger|{4}{B}|5|Creature — Nightmare Horror|24
+C??ckling ?lub|{R}|1|Enchantment — Aura|53
+r?aze dFirecta|{5}{R}{R}|7|Creature — Elemental Cat|32
+lFaming Gambit|{X}{R}|1|Instant|44
+L?nhgorn Firbeeast|{2}{R}|3|Creature — Elemental Ox Beast|60
+Overmaster|{R}|1|Sorcery|43
+Nantuko Blighctuttre|{2}{G}|3|Creature — Insect Druid|9
+T?itn?d Fiedl|1|1|Land|56
+Cagemial|{1}{W}|2|Enchantment — Aura|24
+?oma dMyh?maker|{2}{W}|3|Creature — Human Nomad Cleric|10
+rPismatic Str?nds|{2}{W}|3|Instant|27
+Spirit Cainr|{2}{W}|3|Enchantment|21
+Arcan?eTeachings|{2}{R}|3|Enchantment — Aura|17
+nIfectious ?age|{1}{R}|2|Enchantment — Aura|57
+Swelter|{3}{R}|4|Sorcery|46
+S?irilng a?ndstorm|{3}{R}|4|Sorcery|37
+Epi ?S?rug?le|{2}{G}{G}|4|Enchantment|45
+Grizzly Fate|{3}{G}{G}|5|Sorcery|36
+Kros?n Rcelamation|{1}{G}|2|Instant|44
+Krosan Wayfarer|{G}|1|Creature — Human Druid|57
+Hunting Gruonds|{G}{W}|2|Enchantment|41
+Korasn Veger|1|1|Land|27
+uAirficat?no|{2}{W}{W}|4|Enchantment|40
+Cahin of Slience|{1}{W}|2|Instant|36
+Circ?e of Solace|{3}{W}|4|Enchantment|26
+Insp?rit|{2}{W}|3|Instant|47
+Nova?Cleri?|{W}|1|Creature — Human Cleric|48
+Unified ?triek|{W}|1|Instant|34
+Waethere? Wayaref?|{W}|1|Creature — Human Nomad Cleric|15
+?hkoing?Tt?hers|{3}{U}|4|Instant|6
+?Dsruptive Pitmag?|{2}{U}|3|Creature — Human Wizard|18
+Ixd?o? ,Rela?t?yScul?tor|{3}{U}{U}|5|Legendary Creature — Human Wizard|14
+Pe?r ?er?urs?|{3}{U}|4|Sorcery|2
+R???die B?l?ogist|{1}{U}|2|Creature — Human Wizard|13
+Cove r?f Dark?ess|{1}{B}|2|Enchantment|25
+CruelR evival|{4}{B}|5|Instant|15
+Death Match|{3}{B}|4|Enchantment|56
+Dirg? of??rea?|{2}{B}|3|Sorcery|52
+Ebonblade Ra??er|{2}{B}|3|Creature — Human Cleric|29
+Frighthsrodu ?ourier|{2}{B}|3|Creature — Zombie|13
+?ead G?mes|{3}{B}{B}|5|Sorcery|60
+vOresol dCemet?ry|{1}{B}|2|Enchantment|8
+Walking Desceration|{2}{B}|3|Creature — Zombie|23
+Witehri?g ?ex|{B}|1|Enchantment — Aura|28
+Wret?hed A?urd?|{1}{B}|2|Creature — Zombie Frog Beast|48
+Brihgtstone Rtiual|{R}|1|Instant|2
+Buthcre rOgg|{4}{R}{R}{R}|7|Creature — Orgg|46
+Commadno aRid|{2}{R}|3|Instant|44
+?m?ermga??Gobln?|{3}{R}|4|Creature — Goblin Wizard|15
+?Gbl?n Seldder|{R}|1|Creature — Goblin|7
+Mana Echeos|{2}{R}{R}|4|Enchantment|12
+Pin?onit vAa?lnche|{3}{R}{R}|5|Instant|52
+SkirkP ro?pectro|{R}|1|Creature — Goblin|25
+Skittish Valesk|{6}{R}|7|Creature — Beast|47
+irBc?lroe Rangers|{G}|1|Creature — Elf Druid|3
+Elvish ?Pthc?tter|{3}{G}|4|Creature — Elf Scout|48
+E?pols?ve Veegattion|{3}{G}|4|Sorcery|1
+Krosan Gruodnhsaker|{4}{G}{G}{G}|7|Creature — Beast|55
+Lerey ?ogbeast|{2}{G}|3|Creature — Beast|34
+Silo?,s Rogue Elemental|{3}{G}{G}{G}|6|Legendary Creature — Elemental|28
+Snarling nUd?rk?|{2}{G}{G}|4|Creature — Beast|17
+Towreig? Baloth|{6}{G}{G}|8|Creature — Beast|34
+Seclud?d Setppe|1|1|Land|60
+?evn Envy?|{U}|1|Creature — Bird Soldier|6
+Demroplasm|{2}{U}|3|Creature — Shapeshifter|28
+Riptdie ?angler|{1}{U}|2|Creature — Beast|24
+GempalmI nciner?to?|{2}{R}|3|Creature — Goblin|59
+Goblin Firebug|{1}{R}|2|Creature — Goblin|42
+Evli?s Soultl?ler|{3}{G}{G}|5|Creature — Elf Mutant|2
+Quick Sliver|{1}{G}|2|Creature — Sliver|33
+Aevn Farseer|{1}{W}|2|Creature — Bird Soldier|33
+Wipe Cl?an|{1}{W}|2|Instant|39
+?ragon Wnigs|{1}{U}|2|Enchantment — Aura|10
+Detah's-Head Buzz?rd|{1}{B}{B}|3|Creature — Bird|23
+?nrage|{X}{R}|1|Instant|46
+Spark Spray|{R}|1|Instant|47
+Sulfuric orV?ex|{1}{R}{R}|3|Enchantment|48
+Br?ak Asun?er|{2}{G}{G}|4|Sorcery|31
+Dievrget ?Growht|{G}|1|Instant|36
+Tre?top ?cout|{G}|1|Creature — Elf Scout|24
+Wierwood Symbiote|{G}|1|Creature — Insect|5
+Woocdloaker|{5}{G}|6|Creature — Elf|23
+Ghos?-LitR aid?r|{2}{R}|3|Creature — Spirit|24
+Auriok tSeelshape?|{1}{W}|2|Creature — Human Soldier|7
+Aurik ?Transf?xe?|{W}|1|Creature — Human Scout|6
+Lenoni Skyhunter|{W}{W}|2|Creature — Cat Knight|6
+Loxdoon ?uinsher|{3}{W}|4|Creature — Elephant Soldier|1
+Broodstar|{8}{U}{U}|10|Creature — Beast|17
+?oriok Scavenegr|{3}{B}|4|Creature — Human Rogue|19
+p?oi?so ft ?e Vau?t|{B}|1|Instant|16
+Forg eArmor|{4}{R}|5|Instant|18
+Grab hte Reins|{3}{R}|4|Instant|44
+MassH ysteria|{R}|1|Enchantment|56
+Megatog|{4}{R}{R}|6|Creature — Atog|35
+Firesrhiek?r|{3}|3|Artifact — Equipment|12
+Lifespar kSpelb?omb|{1}|1|Artifact|46
+Lox?odn Warhammer|{3}|3|Artifact — Equipment|45
+Malachite Gol?m|{6}|6|Artifact Creature — Golem|44
+?eurok Hove?sail|{1}|1|Artifact — Equipment|21
+Psychogenic Proeb|{2}|2|Artifact|25
+Ru?t Eleme?tal|{4}|4|Artifact Creature — Elemental|43
+??yth? ?o the?Wret?hed|{2}|2|Artifact — Equipment|33
+Spel?we?e?r ?Hlix|{3}|3|Artifact|21
+ySnod ?a?c?um|{1}|1|Artifact|10
+Wiazrd R?plica|{3}|3|Artifact Creature — Wizard|45
+?linkmoth?We?l|1|1|Land|33
+Tr?e of Talse|1|1|Artifact Land|12
+Auiork Glaivemas?e?|{W}|1|Creature — Human Soldier|15
+?oulscour|{7}{W}{W}{W}|10|Sorcery|36
+S?telshaerp Appern?iec|{2}{W}{W}|4|Creature — Human Soldier|45
+Rehsape|{X}{U}{U}|2|Sorcery|35
+Murderuso Spoils|{5}{B}|6|Instant|19
+Shrievlign ?ot|{2}{B}{B}|4|Instant|39
+iVridian Aoclyte|{G}|1|Creature — Elf Shaman|46
+?iridi?? eaZlot|{G}{G}|2|Creature — Elf Warrior|27
+Chim?ircE?gg|{3}|3|Artifact|40
+Darktsele ?ru?e|{2}|2|Artifact|32
+Drill-Skimemr|{4}|4|Artifact Creature — Thopter|31
+My? ?Lndshaper|{3}|3|Artifact Creature — Myr|28
+Spawning Pti|{2}|2|Artifact|12
+Auriok S?lvagers|{3}{W}|4|Creature — Human Soldier|3
+Retlaatie|{2}{W}{W}|4|Instant|2
+Disruption Aur?|{2}{U}|3|Enchantment — Aura|23
+Hoverguard Sweeeprs|{6}{U}{U}|8|Creature — Drone|3
+Sp?ctral Sihft|{1}{U}|2|Instant|46
+Moriok Rigger|{2}{B}|3|Creature — Human Rogue Rigger|39
+Krrak-l?an Orge|{3}{R}{R}|5|Creature — Ogre|18
+Rain of?Ru??|{3}{R}{R}|5|Instant|3
+B??nger? f teh Geren Daw?|{7}{G}{G}|9|Creature — Bringer|21
+TelJ-ilad ?usitce|{1}{G}|2|Instant|50
+Virdiai? Scout|{3}{G}|4|Creature — Elf Warrior Scout|35
+Blastin gSt?aion|{3}|3|Artifact|51
+Door ot Nothingness|{5}|5|Artifact|9
+Ensouled Scimitar|{3}|3|Artifact — Equipment|23
+Grniding ?tatoin|{2}|2|Artifact|18
+Healer's Headderss|{2}|2|Artifact — Equipment|31
+Snucru?he?|{9}|9|Artifact Creature — Construct|56
+Bush?iTen?refoot|{W}|1|Creature — Human Soldier|55
+Ca?lt o Glroy|{1}{W}|2|Instant|3
+Devoted eRat?ner|{W}|1|Creature — Human Samurai|29
+oHl dthe?Line|{1}{W}{W}|3|Instant|3
+Ind?oitable i?ll|{1}{W}|2|Enchantment — Aura|18
+Kami of the Painted Road|{4}{W}|5|Creature — Spirit|35
+Ki?s?ne Blademstaer|{2}{W}|3|Creature — Fox Samurai|40
+Smaurai En?orec??|{4}{W}{W}|6|Creature — Human Samurai|55
+Cut ?he T?thrse|{2}{U}{U}|4|Sorcery|60
+Hisoka's Gu?ad|{1}{U}|2|Creature — Human Wizard|4
+Petal sof I?igsth|{4}{U}|5|Sorcery — Arcane|32
+Reweaev|{5}{U}|6|Instant — Arcane|57
+Sire of the Sotm?|{4}{U}{U}|6|Creature — Spirit|26
+Midn?gt hCovenant|{1}{B}|2|Enchantment — Aura|28
+Nzemui Sohrt?ang|{1}{B}|2|Creature — Rat Rogue|10
+Ember-F?st Zubera|{1}{R}|2|Creature — Zubera Spirit|26
+Hea?th Kami|{1}{R}|2|Creature — Spirit|32
+Hon?en o? ?Ifinite R?eg|{2}{R}|3|Legendary Enchantment — Shrine|39
+Uncontr??albl? Anger|{2}{R}{R}|4|Enchantment — Aura|36
+Buodk aG?adener|{1}{G}|2|Creature — Human Monk|13
+Kashi-?irbe Warroirs|{3}{G}{G}|5|Creature — Snake Warrior|6
+?i??-Strnu?g?oto|{6}|6|Artifact|5
+Jade Idol|{4}|4|Artifact|33
+Konda's Bnane?|{2}|2|Legendary Artifact — Equipment|48
+Long-Fo?g?oten?Go??i|{3}|3|Artifact|31
+aT?s??as?, the Dragon's Fang|{6}|6|Legendary Artifact — Equipment|58
+Tneza, Godo's ??ul|{3}|3|Legendary Artifact — Equipment|14
+Minamo, ?c?ho? at a?te?s' Eged|1|1|Legendary Land|21
+tAinlya Igpya|{5}{W}|6|Eaturecray — Igpay|10
+Emcee|{2}{W}|3|Creature — Human Rogue|60
+Little Girl|{hw}|0.5|Creature — Human Child|37
+Artful Looert|{2}{U}|3|Creature — Human Wizard|7
+Carniv?rous?Deta-hPar?to|{1}{U}|2|Creature — Bird|26
+Bad As?|{2}{B}{B}|4|Creature — Donkey Zombie|3
+F?re?el ltoA r?s|{1}{B}{B}|3|Enchantment|8
+??r?kng ?Siff|{1}{B}|2|Creature — Mummy|30
+Dumb sAs|{2}{R}|3|Creature — Donkey Barbarian|52
+B-I-N?GO-|{1}{G}|2|Creature — Hound|5
+F?t ?ss|{4}{G}|5|Creature — Donkey Shaman|12
+Ou ra?rket???sear?h Shows Tha? Plaer?sL?ike eRal?y Long Car? ?ame sSo WeM dae t?siC a?? ot?Have?the Abso?ute Long?s? CardN ame Ever ?le?entla|{1}{G}{G}|3|Creature — Elemental|14
+Shoe Tree|{4}{G}|5|Creature — Treefolk|60
+Ukta?b Kong|{5}{G}{G}{G}|8|Creature — Ape|23
+Rare?B-Gone|{2}{B}{R}|4|Sorcery|57
+Why|{1}{G}|2|Instant|25
+Urza'sH o Ttub|{2}|2|Artifact|10
+Split?Tali Miok|{1}{W}|2|Creature — Fox Cleric|8
+Call?wJ ushi|{1}{U}{U}|3|Creature — Human Wizard|31
+Jettin? Glaskstie|{4}{U}{U}|6|Creature — Spirit|4
+Minamo'? Me?dling|{2}{U}{U}|4|Instant|31
+Her'os ?e?sie|{1}{B}|2|Instant|12
+Ogre Maaruder|{1}{B}{B}|3|Creature — Ogre Warrior|34
+iSckening Sohal|{X}{B}{B}|2|Instant — Arcane|40
+???kR aidre|{1}{R}|2|Creature — Goblin Warrior|54
+Cu?ni?g Bandt?|{1}{R}{R}|3|Creature — Human Warrior|2
+Azamuik, T?eacheyrI?n?arnate|{1}{R}{R}|3|Legendary Creature — Spirit|24
+Fumiko the??owblood|{2}{R}{R}|4|Legendary Creature — Human Samurai|56
+Ishi-I?hi, Ak?i Cr?cksoht|{1}{R}|2|Legendary Creature — Goblin Warrior|60
+Harbinger ofS pr??n|{4}{G}|5|Creature — Spirit|26
+?urtian of ?ight|{1}{W}|2|Instant|25
+Nikko-Onna|{2}{W}|3|Creature — Spirit|40
+Kiri-Onna|{4}{U}|5|Creature — Spirit|39
+?ec?etekepe?|{3}{U}|4|Creature — Spirit|34
+Death Denie?|{X}{B}{B}|2|Instant — Arcane|5
+Death of a Thousand S?insg|{4}{B}|5|Instant — Arcane|59
+xEl?e into D?r??ess|{4}{B}|5|Sorcery|8
+Hnad?of Cruelty|{B}{B}|2|Creature — Human Samurai|44
+Kuon, Ogre Ascenda?t|{B}{B}{B}|3|Legendary Creature — Ogre Monk|53
+Godo?s Irregulars|{R}|1|Creature — Human Warrior|19
+Inner Fier|{3}{R}|4|Sorcery|30
+Dens? Canoyp|{1}{G}|2|Enchantment|57
+aSsyaa, Or?chi Ascendant|{1}{G}{G}|3|Legendary Creature — Snake Monk|27
+Sasaya?s Essenec|{1}{G}{G}|3|Legendary Enchantment|60
+Sh?ien of?Life's Roar|{1}{G}|2|Creature — Spirit|1
+S?ampe?ing Serow|{2}{G}{G}|4|Creature — Antelope Beast|8
+Wine of Blood and Iron|{3}|3|Artifact|37
+Mikokoro,?Ce?ter?o? the Se?|1|1|Legendary Land|33
+?ourei rHaw?|{1}{W}|2|Creature — Bird|37
+Dr?mad Purebr?d|{4}{W}|5|Creature — Camel Beast|15
+Lea?vN oT raec|{1}{W}|2|Instant|21
+ThreeD ramse|{4}{W}|5|Sorcery|11
+Zephyr Spirit|{5}{U}|6|Creature — Spirit|25
+Cligning Dakrnses|{1}{B}|2|Enchantment — Aura|15
+Helldoz?e|{3}{B}{B}{B}|6|Creature — Zombie Giant|54
+??st Gasp|{1}{B}|2|Instant|29
+?ammefrist ?Gatn|{4}{R}{R}|6|Creature — Giant Warrior|17
+Mn?imoil|{4}{R}|5|Enchantment|16
+?abertoot?A lely C?t|{1}{R}{R}|3|Creature — Cat|60
+War-Torch Gob?in|{R}|1|Creature — Goblin Warrior|27
+Gahtr? Courage|{G}|1|Instant|33
+l?utcho f the?Und?rcity|{1}{U}{U}{B}|4|Instant|16
+Dimir Cutpur??|{1}{U}{B}|3|Creature — Spirit|20
+Midnleech Mass|{5}{U}{B}{B}|8|Creature — Horror|50
+Rally ?heR gihteous|{1}{R}{W}|3|Instant|25
+Bloodle?te? Quill|{3}|3|Artifact|49
+?l?ss?G?lem|{5}|5|Artifact Creature — Golem|11
+?pectral eSacrhlgi?t|{3}|3|Artifact|25
+?rera?ion|{1}|1|Artifact|14
+aClciderm|{2}{W}{W}|4|Creature — Beast|2
+Yixli? Jalier|{1}{B}|2|Creature — Zombie Wizard|16
+To Arms!|{1}{W}|2|Instant|33
+??therplasm|{2}{U}{U}|4|Creature — Illusion|5
+Hatc?ingP la?n|{1}{U}|2|Enchantment|14
+Steamocre W?rid|{3}{U}|4|Creature — Weird|44
+Train ofT hought|{1}{U}|2|Sorcery|47
+Cyrpwt?i?lgn|{3}{B}|4|Enchantment|42
+G?or-Cla ???lodsclae|{3}{R}|4|Creature — Viashino Warrior|27
+Ogre Saavnt|{4}{R}|5|Creature — Ogre Wizard|55
+Predatory F?cus|{3}{G}{G}|5|Sorcery|48
+Conju?r'es Ban|{W}{B}|2|Sorcery|12
+?uen-?rood Nephilim|{B}{R}{G}{W}|4|Creature — Nephilim|16
+G?lectr?de|{1}{U}{R}|3|Creature — Weird|28
+Ink-Trea?er N?phl?im|{R}{G}{W}{U}|4|Creature — Nephilim|5
+eLap of Flame|{U}{R}|2|Instant|36
+O?zhv ?Guild?a?e|{W/B}{W/B}|2|Creature — Human Wizard|12
+P?trah?dro?|{3}{U/R}|4|Creature — Weird|37
+??zzimu Tr?ns?eliqu?a|{3}|3|Artifact|35
+Serra Avenger|{W}{W}|2|Creature — Angel|2
+Steeling Stance|{1}{W}{W}|3|Instant|58
+Govenr?the?Guildless|{5}{U}|6|Sorcery|43
+C?yp? Champion|{3}{B}|4|Creature — Zombie|58
+Drekavac|{1}{B}|2|Creature — Beast|51
+Entropi ??idolon|{3}{B}|4|Creature — Spirit|4
+gnI?ran tBlsis|{1}{R}|2|Instant|25
+Ex?eirm?nt Kraj|{2}{G}{G}{U}{U}|6|Legendary Creature — Ooze Mutant|22
+?obhobble rRats|{B}{R}|2|Creature — Rat|47
+Overru?l|{X}{W}{U}|2|Instant|15
+R?kdos uAgermgea|{B}{B}{R}|3|Creature — Human Wizard|16
+Sky Hussr?|{3}{W}{U}|5|Creature — Human Knight|8
+wTisntrike|{3}{B}{R}|5|Instant|21
+Dvo?scape|{3}{W/U}{W/U}{W/U}|6|Enchantment|1
+Bound|{3}{B}{G}|5|Instant|22
+Crime|{3}{W}{B}|5|Sorcery|31
+Suppyl|{X}{G}{W}|2|Sorcery|2
+Rakdos Sg?net|{2}|2|Artifact|8
+Blood?Crytp|1|1|Land — Swamp Mountain|4
+aHllowed Fonuta??|1|1|Land — Plains Island|17
+Ad?krar Valykrie|{4}{W}{W}|6|Snow Creature — Angel|60
+?ötunO wl Keepre|{2}{W}|3|Creature — Giant|42
+Sun's Bo?nty|{1}{W}|2|Instant|1
+Adarkar W?nfdorm|{4}{U}|5|Snow Creature — Illusion|43
+Rimefeathre Olw|{5}{U}{U}|7|Snow Creature — Bird|44
+Rimeiwnd rCy?mancer|{3}{U}|4|Creature — Human Wizard|45
+Vexing Sph?nx|{1}{U}{U}|3|Creature — Sphinx|19
+Phob?an Phantams|{1}{B}{B}|3|Creature — Illusion|27
+Karplusan ??notaru|{2}{R}{R}|4|Creature — Minotaur Warrior|24
+rBoodn?iS auri?n|{2}{G}{G}|4|Creature — Lizard|11
+Karplu?an?Str?der|{3}{G}|4|Creature — Yeti|25
+Borale Shlef|1|1|Snow Land|27
+?n?ght of the Holy Nimb?s|{W}{W}|2|Creature — Human Rebel Knight|5
+Outrdie? en?Kor|{2}{W}|3|Creature — Kor Rebel Knight|53
+Pentacrh Paladin|{2}{W}{W}{W}|5|Creature — Human Knight|15
+Tempora? Isolat?o?|{1}{W}|2|Enchantment — Aura|42
+Wat?her Sliver|{3}{W}|4|Creature — Sliver|52
+Bewilder|{2}{U}|3|Instant|36
+rDeam Stakler|{1}{U}|2|Creature — Illusion|35
+Praad?x aH?e|{2}{U}|3|Enchantment — Aura|14
+Riftwing Cloudskate|{3}{U}{U}|5|Creature — Illusion|4
+cS?eech?ng Sliver|{U}|1|Creature — Sliver|26
+ThinkT icew|{1}{U}|2|Instant|16
+Basal ??iv?r|{2}{B}|3|Creature — Sliver|36
+Demonic Collus?on|{3}{B}{B}|5|Sorcery|53
+eSngir oNsfeart?|{3}{B}{B}|5|Creature — Vampire|28
+Skitte?in?M ons?rosi?t|{3}{B}{B}|5|Creature — Horror|39
+Skluk?ng Knight|{2}{B}|3|Creature — Zombie Knight|6
+S?dden Sopi?ing|{1}{B}{B}|3|Instant|37
+T?ndril? of Corr??tino|{3}{B}|4|Instant|5
+Bogar?d? Hellkite|{6}{R}{R}|8|Creature — Dragon|27
+Ingite Me?ories|{4}{R}|5|Sorcery|49
+Padirc Dragon|{4}{R}{R}|6|Creature — Dragon|31
+Sedge Slvier|{2}{R}|3|Creature — Sliver|45
+Glas sAsp|{1}{G}{G}|3|Creature — Snake|39
+oMlder|{X}{G}|1|Instant|14
+Primla Forcemage|{2}{G}|3|Creature — Elf Shaman|27
+Scry b?ang?r|{1}{G}|2|Creature — Faerie|40
+Thelon of Hvaewnood|{G}{G}|2|Legendary Creature — Elf Druid|22
+T?elonite Hermit|{3}{G}|4|Creature — Elf Shaman|10
+nUyar? Bese|{G}{G}{G}|3|Creature — Insect|54
+Stonebrwo? Krosa?H ero|{3}{R}{G}|5|Legendary Creature — Centaur Warrior|9
+?locwko?k Hydar|{5}|5|Artifact Creature — Hydra|44
+Hive?toen|{2}|2|Artifact|58
+Gems?one C?verns|1|1|Legendary Land|8
+Frutcikae El?mental|{1}{G}{G}|3|Creature — Elemental|18
+S?ason?s ?eatings|{R}{R}{R}{R}|4|Sorcery|37
+Saltblsat|{3}{W}{W}|5|Sorcery|19
+S?rra's Boon|{2}{W}|3|Enchantment — Aura|33
+?t?nc?ola?re|{2}{W}|3|Creature — Gargoyle|10
+S??pe rarPs?a?e|{1}{U}{U}|3|Creature — Illusion|36
+Dash Hpose|{B}{B}|2|Instant|7
+Timbe?m?re|{3}{G}|4|Creature — Elemental Horse|9
+Ca?tery Sl?ver|{R}{W}|2|Creature — Sliver|29
+Da?kheart Sliver|{B}{G}|2|Creature — Sliver|49
+Marsha?in g?ry|{1}{W}{W}|3|Sorcery|28
+Sam?te?Ce?ser-Beare?|{W}|1|Creature — Human Rebel Cleric|20
+Da?break Croo?et|{W}{W}|2|Enchantment — Aura|43
+Lucent?Liminid|{3}{W}{W}|5|Enchantment Creature — Elemental|59
+Laeden Fists|{2}{U}|3|Enchantment — Aura|24
+Ma?l?trmo Djinn|{7}{U}|8|Creature — Djinn|29
+Pact ofN ?gation|{0}|0|Instant|23
+Ar??num ?insg|{1}{U}|2|Enchantment — Aura|44
+?arcomoe?a|{1}{U}|2|Creature — Illusion|41
+Sracomit? My?|{2}{U}|3|Artifact Creature — Myr|31
+Fetser?ng March|{3}{B}{B}|5|Sorcery|5
+S?imia? Spcet?r|{2}{B}{B}|4|Creature — Specter|49
+Sk?rk Ridge Ehxumer|{1}{B}|2|Creature — Zombie Spellshaper|23
+?o??stalk?e|{6}{B}{B}|8|Creature — Demon|30
+Arc lB?de|{3}{R}{R}|5|Sorcery|5
+??cure gof Khe?Ri??gse|{6}{R}{R}|8|Creature — Dragon|15
+aRv?gin??Ri?twurm|{1}{G}{G}|3|Creature — Wurm|18
+p?rot uSwarm|{1}{G}|2|Instant|57
+Utopia Mcyno|{G}|1|Creature — Fungus|20
+aBru,???st of Krosa|{3}{G}{G}|5|Legendary Creature — Human Druid|26
+Centa?? Omenreader|{3}{G}|4|Snow Creature — Centaur Shaman|46
+M?raga?daP etrogylph?|{3}{G}|4|Enchantment|22
+Nessian Cousrer|{2}{G}|3|Creature — Centaur Warrior|52
+Sliver Leigon|{W}{U}{B}{R}{G}|5|Legendary Creature — Sliver|45
+Dyra?A rbor|1|1|Land Creature — Forest Dryad|58
+r?avne Cairns|1|1|Land|49
+?emnite|{0}|0|Artifact Creature — Construct|47
+iDregraf h?oul|{B}|1|Creature — Zombie|58
+Killin? aWve|{X}{B}|1|Sorcery|26
+Zameck G?i?dmage|{G}{U}|2|Creature — Elf Wizard|39
+Squeclhi?g L?e?ehs|{2}{B}{B}|4|Creature — Leech|57
+Di??tae of ?rupihx|{1}{U}{U}|3|Enchantment|17
+?ori?nE ,Ruin??iver|{1}{U}{R}|3|Legendary Creature — Merfolk Wizard|17
+Btatl? Mas?ery|{2}{W}|3|Enchantment — Aura|43
+?urge of Thougthwef?|{1}{W}|2|Tribal Instant — Kithkin|31
+Benthcioer|{6}{U}|7|Creature — Elemental|42
+Inkafthom Dviesr|{3}{U}{U}|5|Creature — Merfolk Soldier|29
+Sli?erig?l dAept|{1}{U}|2|Creature — Merfolk Wizard|33
+Silvergill Douser|{1}{U}|2|Creature — Merfolk Wizard|29
+?ings ?f Velis Vle|{1}{U}|2|Tribal Instant — Shapeshifter|20
+Ciar nWandeerr|{4}{B}|5|Creature — Shapeshifter|52
+Fina lRveels|{4}{B}|5|Sorcery|7
+Knuckleboen W?tch|{B}|1|Creature — Goblin Shaman|41
+P?owes? of th? Fair|{1}{B}|2|Tribal Enchantment — Elf|30
+Quil?S-linger Boggart|{3}{B}|4|Creature — Goblin Warrior|25
+Wraren Pliferesr|{4}{B}|5|Creature — Goblin Rogue|13
+Inecn?iary Com?nad|{3}{R}{R}|5|Sorcery|9
+Nee??e Drop|{R}|1|Instant|1
+Smokebraiedr|{1}{R}|2|Creature — Elemental Shaman|51
+rBiarhr?n|{3}{G}|4|Creature — Elemental|22
+Ch?g?elni gTitan|{4}{G}|5|Creature — Shapeshifter|6
+Elvish P?om?nade|{3}{G}|4|Tribal Sorcery — Elf|43
+?lyvan Echoe?|{G}|1|Enchantment|53
+?Gdodck? ?eg|{G}{W}|2|Legendary Creature — Kithkin Advisor|7
+Wydwen, the Bitig?Gnlae|{2}{U}{B}|4|Legendary Creature — Faerie Wizard|31
+Rings o ?Brightheart?|{3}|3|Artifact|3
+?Wnd?rer's????g|{1}|1|Artifact|11
+eScl?ded Geln|1|1|Land|39
+Windbrisk ?eights|1|1|Land|24
+Satf ??f Nin|{6}|6|Artifact|12
+Dictate of the Twi nodsG|{3}{R}{R}|5|Enchantment|40
+Preemnient Cpatain|{2}{W}|3|Creature — Kithkin Soldier|52
+Stony?roko?Schoolmastre|{2}{W}|3|Creature — Merfolk Wizard|4
+Wegi?t of Cosnc?ence|{1}{W}|2|Enchantment — Aura|52
+In kDissol?er|{1}{U}|2|Creature — Merfolk Wizard|26
+Inspired Sprite|{3}{U}|4|Creature — Faerie Wizard|59
+Notori?su Thor?g|{3}{U}|4|Tribal Sorcery — Rogue|2
+tSo?ybro?kB?annr?et|{1}{U}|2|Creature — Merfolk Wizard|1
+Thiev?s' Fo?utne|{2}{U}|3|Tribal Instant — Rogue|27
+eFstrecreep|{1}{B}|2|Creature — Elemental|10
+Moresl?T?etf|{2}{B}{B}|4|Tribal Sorcery — Rogue|2
+Night?haed cShemers|{4}{B}|5|Creature — Faerie Wizard|44
+Prickyl Boggart|{B}|1|Creature — Goblin Rogue|42
+?queakign Pei Gurbfello?s|{3}{B}|4|Creature — Goblin Shaman|12
+Wa?ren W?irdi?g|{1}{B}|2|Tribal Sorcery — Goblin|51
+uLnk Er?ant|{5}{R}|6|Creature — Giant Warrior|47
+Rivals' Duel|{3}{R}|4|Sorcery|25
+Vegnf?ul Fi?ebr?nd|{3}{R}|4|Creature — Elemental Warrior|26
+a?r-Spike Changeling|{3}{R}|4|Creature — Shapeshifter|37
+Am?assador Oka|{3}{G}|4|Creature — Treefolk Warrior|4
+Hnu?nig?Tirad|{3}{G}|4|Tribal Sorcery — Elf|18
+Lys Alaa? B?wamtsr?|{2}{G}|3|Creature — Elf Archer|58
+R?is? fo ht Veines?eed|{3}{G}|4|Enchantment — Aura|50
+Winnower P??rol|{2}{G}|3|Creature — Elf Warrior|43
+?loak and Dagger|{2}|2|Tribal Artifact — Rogue Equipment|28
+Resplendent?Mentor|{4}{W}|5|Creature — Kithkin Cleric|42
+tr?ip?Bare|{W}|1|Instant|37
+Twiligh? Shepherd|{3}{W}{W}{W}|6|Creature — Angel|2
+Wo?lee?h?r|{5}{W}|6|Creature — Elemental|43
+Bitign Tteher|{4}{U}|5|Enchantment — Aura|57
+Knacksaw Cliuqe|{3}{U}|4|Creature — Faerie Rogue|13
+Corwd?of Cinde?s|{3}{B}|4|Creature — Elemental|39
+?id?ightB anshee|{3}{B}{B}{B}|6|Creature — Spirit|6
+R?te of Consump??on|{1}{B}|2|Sorcery|56
+iSckle Ripper|{1}{B}|2|Creature — Elemental Warrior|13
+Embre?Gale|{3}{R}|4|Sorcery|15
+?nitmidator Initait?|{R}|1|Creature — Goblin Shaman|57
+Punct?re Bolt|{1}{R}|2|Instant|12
+aRgeR efelction|{4}{R}{R}|6|Enchantment|37
+Toil to Renown|{1}{G}|2|Sorcery|25
+?oodfall P?im?s|{5}{G}{G}{G}|8|Creature — Treefolk Shaman|47
+Thistle?ow nLiege|{1}{W/U}{W/U}{W/U}|4|Creature — Kithkin Knight|24
+Dream Sa?va?e|{U/B}|1|Instant|17
+O?an's aGtewa?den|{U/B}|1|Creature — Faerie Soldier|10
+Embe?strkie Du?|{1}{B/R}|2|Creature — Elemental Warrior Shaman|16
+Manaofrg? inCder|{B/R}|1|Creature — Elemental Shaman|12
+Medicine Runner|{1}{G/W}|2|Creature — Elf Cleric|23
+Rekin?|{1}{G/W}|2|Instant|59
+aSfehold Duo|{3}{G/W}|4|Creature — Elf Warrior Shaman|48
+eSe?cardle Witch|{G/W}|1|Creature — Elf Shaman|11
+?uadrlon of oSlus|{5}|5|Artifact|31
+Heap D???|{1}|1|Artifact Creature — Scarecrow|59
+Trip Noose|{2}|2|Artifact|11
+Re?muenbt ?liss|{2}{W}|3|Enchantment — Aura|51
+Id?igo Faerie|{1}{U}|2|Creature — Faerie Wizard|5
+Sanity Girnding|{U}{U}{U}|3|Sorcery|51
+Crmublin? Ashes|{1}{B}|2|Enchantment|2
+Flame? ab|{R}|1|Sorcery|17
+Dusk?al? Wurm|{5}{G}{G}|7|Creature — Wurm|56
+Marshdrinke rGiant|{3}{G}{G}|5|Creature — Giant Warrior|24
+Reagl o?rce|{4}{G}{G}{G}|7|Creature — Elemental|44
+?vres?rik?|{3}{W/B}{W/B}|5|Creature — Elemental Spirit|29
+Noxios uHat?hl?ng|{3}{B/G}|4|Creature — Elemental|30
+Rise of the?Hobg?bl?ns|{R/W}{R/W}|2|Enchantment|41
+Murkfiedn Lieg?|{2}{G/U}{G/U}{G/U}|5|Creature — Horror|11
+S?arec?one|{3}|3|Artifact Creature — Scarecrow|21
+Maris'is Twincl?ws|{2}{R/W}{G}|4|Creature — Cat Warrior|20
+Naya Sojourners|{2}{R}{G}{W}|5|Creature — Elf Shaman|49
+Gole?'sH eart|{2}|2|Artifact|48
+nIvi?cibel Hymn|{6}{W}{W}|8|Sorcery|55
+Knihgt oft?e hSkyward E?e|{1}{W}|2|Creature — Human Knight|38
+Cahtarti cAdept|{U}|1|Creature — Human Wizard|12
+??n?lcok Ob?|{3}{U}|4|Artifact|3
+Proto?atter Powd?e|{2}{U}|3|Artifact|45
+Drgescae pZombie|{1}{B}|2|Creature — Zombie|8
+Shore S?apper|{2}{B}|3|Creature — Beast|22
+Ske?etal Ka??ari|{4}{B}|5|Creature — Bird Skeleton|35
+C?ucible?of?Fire|{3}{R}|4|Enchantment|43
+T?orn-Thr?sh Viash?n?|{3}{R}|4|Creature — Viashino Warrior|53
+Ba?rhcin goBlt|{1}{R}{G}|3|Instant|44
+C?rri?o T?hash|{2}{B}{R}{G}|5|Creature — Viashino Warrior|35
+Clar?on U?timatum|{G}{G}{W}{W}{W}{U}{U}|7|Sorcery|15
+??ftD?uelist|{W}{U}|2|Creature — Human Rogue|27
+Grixis Charm|{U}{B}{R}|3|Instant|35
+Sedarxis Spectre|{U}{B}{R}|3|Creature — Specter|4
+?ei?e Myst?cs|{4}{W}|5|Creature — Bird Wizard|7
+Sce?e?ro f Dmoniacne|{1}{W}{W}|3|Artifact|38
+Wall?of Rveerence|{3}{W}|4|Creature — Spirit Wall|35
+r?otnline Sage|{2}{U}|3|Creature — Human Wizard|2
+Corrpu?ed Roots|{B}|1|Enchantment — Aura|30
+Drag Down|{2}{B}|3|Instant|56
+Girxis laSvedrvi?r|{5}{B}|6|Creature — Zombie Giant|59
+?alvage Slashre|{1}{B}|2|Artifact Creature — Human Rogue|3
+lBoodhall Ooze|{R}|1|Creature — Ooze|1
+aCnoyn Minotaur|{3}{R}|4|Creature — Minotaur Warrior|12
+V?raciuos? ragon|{3}{R}{R}|5|Creature — Dragon|13
+Gluttonous Slime|{2}{G}|3|Creature — Ooze|1
+Saclelum Ar?hers|{2}{G}|3|Creature — Elf Archer|32
+Sproe Burst|{3}{G}|4|Sorcery|22
+?poc?l?spe Hdyra|{X}{R}{G}|2|Creature — Hydra|9
+Bloo? Tyrant|{4}{U}{B}{R}|7|Creature — Vampire|26
+Gil?spire vAe?ger|{G}{W}{U}|3|Creature — Human Soldier|23
+Sykward?Ey e??ohpet?|{3}{G}{W}{U}|6|Creature — Human Wizard|8
+Arm?llar ?Spher?|{2}|2|Artifact|38
+?emon|1|1|Creature — Demon|44
+Ethersowrn ??eSldmaeg|{1}{W}{U}|3|Artifact Creature — Vedalken Wizard|13
+Mi?t??in Boredrpo?t|{1}{U}{B}|3|Artifact|59
+?emo?spien Whip|{B}{R}|2|Artifact — Equipment|41
+Kathrai Bmober|{1}{B}{R}|3|Creature — Bird Shaman|43
+M?sotrou? Carabid|{3}{B}{R}|5|Creature — Insect|15
+Godt?acke? of Jund|{1}{R}{G}|3|Creature — Elf Shaman|28
+Val?y eRanent|{4}{R}{G}|6|Creature — Beast|54
+Violent Outb?ust|{1}{R}{G}|3|Instant|58
+E?listed Wurm|{4}{G}{W}|6|Creature — Wurm|25
+Knotv?ne ?a?adin|{G}{W}|2|Creature — Human Knight|58
+Le?nin Armo?guard|{2}{G}{W}|4|Creature — Cat Soldier|38
+Skc??lw T?rsa?|{3}{U}{R}|5|Artifact Creature — Viashino Warrior|11
+Putrid ?eech|{B}{G}|2|Creature — Zombie Leech|35
+Unscyhte, i?ller?of Kings|{U}{B}{B}{R}|4|Legendary Artifact — Equipment|34
+Trace of Aubndance|{R/W}{G}|2|Enchantment — Aura|15
+Veetran?Swordsmith|{2}{W}|3|Creature — Human Soldier|5
+iDsorient|{3}{U}|4|Instant|53
+lSeep|{2}{U}{U}|4|Sorcery|4
+?coly?e o? ?athird|{B}|1|Creature — Human Cleric|16
+Child of N?ght|{1}{B}|2|Creature — Vampire|52
+Buri?ng Iqnuir?|{R}|1|Sorcery|56
+Vi?ahin?S pearhunt?r|{2}{R}|3|Creature — Viashino Warrior|47
+??ambleC reeper|{4}{G}|5|Creature — Elemental|25
+Dealdy?Relcuse|{1}{G}|2|Creature — Spider|47
+Windstorm|{X}{G}|1|Instant|47
+?o?tboun ?rCag|1|1|Land|8
+TheEo ? ?og|1|1|Plane — Equilor|53
+The Hipopdrome|1|1|Plane — Segovia|11
+sIle fo Vesu?a|1|1|Plane — Dominaria|7
+L?anwoar|1|1|Plane — Dominaria|48
+Raven' ??un|1|1|Plane — Shadowmoor|26
+Vels Viel|1|1|Plane — Lorwyn|58
+Devout Light?astre|{W}{W}{W}|3|Creature — Kor Cleric|36
+Iona, Sh?eld fo Emeria|{6}{W}{W}{W}|9|Legendary Creature — Angel|27
+Ko? Ho?kmas?er|{2}{W}|3|Creature — Kor Soldier|24
+Steppe Lynx|{W}|1|Creature — Cat|5
+Merfol? Saestalkres|{3}{U}|4|Creature — Merfolk Scout|9
+Sphinx o? Lost rTuths|{3}{U}{U}|5|Creature — Sphinx|59
+Windride? Ee?|{3}{U}|4|Creature — Fish|9
+Klaitas,B lodochief?of Gh?t|{5}{B}{B}|7|Legendary Creature — Vampire Warrior|29
+Sadisti cS?crament|{B}{B}{B}|3|Sorcery|7
+C?andr??Albaze|{4}{R}{R}|6|Planeswalker — Chandra|1
+??blin ??h?tcu?ter|{1}{R}|2|Creature — Goblin Scout|60
+Laabva?l Tra?|{6}{R}{R}|8|Instant — Trap|14
+Molte? Raa?ger|{2}{R}|3|Creature — Elemental|49
+Obisdian Fireheart|{1}{R}{R}{R}|4|Creature — Elemental|52
+Runef?lre Trap|{4}{R}{R}|6|Instant — Trap|47
+Se?smic S?ud?er|{1}{R}|2|Instant|11
+Giagnt?form|{3}{G}{G}|5|Enchantment — Aura|34
+TimbermwaLa rva|{3}{G}|4|Creature — Beast|57
+TurntimberBa sliisk|{1}{G}{G}|3|Creature — Basilisk|34
+?xpedition Map|{1}|1|Artifact|38
+Sotn?wor kPmua|{3}|3|Artifact Creature — Cat Ally|2
+?sit yRainforest|1|1|Land|6
+iPranha Marsh|1|1|Land|3
+Tunrtimber Gro??|1|1|Land|57
+Archon of Redempiton|{3}{W}{W}|5|Creature — Archon|2
+D?ipel|{U}|1|Instant|2
+pSell Contortio?|{2}{U}|3|Instant|40
+Vapor Snare|{4}{U}|5|Enchantment — Aura|14
+Scrib Nibblers|{2}{B}|3|Creature — Rat|13
+Baa?ar Trader|{1}{R}|2|Creature — Goblin|20
+Grotag Thrasher|{4}{R}|5|Creature — Lizard|22
+Tuktuk Scarpepr|{3}{R}|4|Creature — Goblin Artificer Ally|6
+Slingb?wT ?ap|{3}{G}|4|Instant — Trap|51
+Amu?et foV igor|{1}|1|Artifact|56
+Hedron Ro?er|{4}|4|Artifact Creature — Construct|32
+Razor Bo??erang|{3}|3|Artifact — Equipment|18
+rDe? dStatuary|1|1|Land|12
+Sejir iSteppe|1|1|Land|41
+Siktetring Invasio?|{7}|7|Tribal Sorcery — Eldrazi|9
+Hyean U?mra|{W}|1|Enchantment — Aura|28
+Lumio?u? Wkae|{2}{W}|3|Enchantment — Aura|17
+aMmomt? Umbar|{4}{W}|5|Enchantment — Aura|60
+??a?-Death Experience|{2}{W}{W}{W}|5|Enchantment|3
+Champi?n'? rDake|{1}{U}|2|Creature — Drake|57
+Drake Umbr?|{4}{U}|5|Enchantment — Aura|4
+Guard? oma?oa|{2}{U}|3|Creature — Jellyfish|41
+La? Ba?e|{2}{U}{U}|4|Instant|18
+Lighthosue hC?onologist|{1}{U}|2|Creature — Human Wizard|52
+Merfolk Observer|{1}{U}|2|Creature — Merfolk Rogue|40
+Renegaed? opp?lganger|{1}{U}|2|Creature — Shapeshifter|6
+See B?yond|{1}{U}|2|Sorcery|28
+rTaining Grounds|{U}|1|Enchantment|34
+Conuse mthe Meek|{3}{B}{B}|5|Instant|26
+Cropsehatch|{3}{B}{B}|5|Sorcery|37
+Essecen Feed|{5}{B}|6|Sorcery|60
+Grotag Siege-Runenr|{1}{R}|2|Creature — Goblin Rogue|45
+uLstf or War|{2}{R}|3|Enchantment — Aura|59
+Grwoth Spa??|{2}{G}|3|Sorcery|23
+iLving?Dest?ny|{3}{G}|4|Instant|6
+Might of ?he?Mass?s|{G}|1|Instant|11
+Ralem sUncahrted|{2}{G}|3|Instant|7
+Sarkahn t?e Mad|{3}{B}{R}|5|Planeswalker — Sarkhan|31
+??dron ?atrxi|{4}|4|Artifact — Equipment|41
+Behold?the Power of Destruction|1|1|Scheme|52
+A Displa?yof My Dak? owPer|1|1|Scheme|22
+Eevry aLs t?estige?Shall ?ot|1|1|Scheme|36
+Feed the Machine|1|1|Scheme|54
+Look Skywar? a?d Dspeair|1|1|Scheme|46
+?yU ndead Hrode ?wakens|1|1|Ongoing Scheme|1
+Reamls Befittig?nMy Majetsy|1|1|Scheme|29
+Th?V er? Soli ShlalS?hkae|1|1|Ongoing Scheme|53
+W?ic hof Y??uBurns Brightes??|1|1|Scheme|15
+Your?aFte I? Thr?ce Sealde|1|1|Scheme|1
+Ajani'sM an?ra|{1}{W}|2|Enchantment|45
+eAther Adept|{1}{U}{U}|3|Creature — Human Wizard|43
+hPnatom Beast|{3}{U}|4|Creature — Illusion Beast|11
+Redire?t|{U}{U}|2|Instant|51
+N?thr eHorror|{3}{B}|4|Creature — Horror|40
+?hand???s Spitfire|{2}{R}|3|Creature — Elemental|28
+Cyclpos ?alda?tor|{1}{R}{R}{R}|4|Creature — Cyclops Warrior|51
+Fauna Sha??n|{1}{G}|2|Creature — Elf Shaman|50
+Shape Anwe|{3}{U}|4|Sorcery|15
+?onatgious?Nim|{2}{B}|3|Creature — Zombie|15
+Ba?ra?e Ogre|{3}{R}{R}|5|Creature — Ogre Warrior|52
+Fr?orvore|{2}{R}|3|Creature — Beast|43
+Klduotah?Re?irth|{R}|1|Sorcery|36
+Bl?gth Mamba|{1}{G}|2|Creature — Snake|13
+Blunt teh Assalut|{3}{G}|4|Instant|8
+Geenssi W?ae|{X}{G}{G}{G}|3|Sorcery|10
+??i??ian Re??l|{1}{G}{G}|3|Enchantment|51
+iWthstand eDath|{G}|1|Instant|22
+Vens??, the oSjourner|{3}{W}{U}|5|Planeswalker — Venser|35
+Copr?e C?r|{4}|4|Artifact Creature — Hound|32
+Da?ksteel Senti?e?|{6}|6|Artifact Creature — Golem|15
+olGden ?rn|{1}|1|Artifact|56
+Horizon Sp?llbomb|{1}|1|Artifact|17
+Molt?n-Ta?l Mat?icore|{4}|4|Artifact Creature — Masticore|56
+Nim Dea??ma?nel|{2}|2|Artifact — Equipment|42
+Pr?toty?e Portla|{4}|4|Artifact|48
+R??orfiel ?Threhser|{7}|7|Artifact Creature — Construct|2
+V??shok eRlpic?|{3}|3|Artifact Creature — Berserker|44
+Secahrom eoaCs?|1|1|Land|14
+Fuel for the Cuase|{2}{U}{U}|4|Instant|53
+S?ire Serpent|{4}{U}|5|Creature — Serpent|29
+M?rbid Pluned?|{1}{B}{B}|3|Sorcery|29
+Ph?re?axn?Crusader|{1}{B}{B}|3|Creature — Zombie Knight|45
+Gnathoasur|{4}{R}{R}|6|Creature — Lizard|47
+?Tngl Meanits|{2}{G}{G}|4|Creature — Insect|56
+yMr ??rbine|{5}|5|Artifact|3
+?eace Stri?er|{4}|4|Artifact Creature — Construct|12
+piSneo fI sh Sah|{7}|7|Artifact|19
+Tita Fnoreg|{3}|3|Artifact|50
+Wa??epRort|{3}{W}|4|Instant|8
+Mortis Dog?|{3}{B}|4|Creature — Hound|25
+Inva?er?Pa?asite|{3}{R}{R}|5|Creature — Insect|47
+Rgae Extrac?ro|{4}{R/P}|5|Artifact|5
+Whipflare|{1}{R}|2|Sorcery|33
+Meilra, Syvlok?Outcast|{1}{G}|2|Legendary Creature — Human Scout|59
+Gremiln Mine|{1}|1|Artifact|56
+Shr?n?o f Bounldess Grothw|{3}|3|Artifact|31
+Shrin?? f Pierci?g Vision|{2}|2|Artifact|20
+Se?llsikte|{2}|2|Artifact Creature — Horror|44
+Phy?ei?x's Core|1|1|Land|23
+Crescendo of War|{3}{W}|4|Enchantment|6
+Trbiut? ot the Wild|{1}{G}|2|Instant|12
+Nin, th eaPi? rA?sit|{U}{R}|2|Legendary Creature — Vedalken Wizard|8
+Alabaster ?ag?|{1}{W}|2|Creature — Human Wizard|58
+Gaurdians' P?edge|{1}{W}{W}|3|Instant|51
+C?as? Drkae|{4}{U}|5|Creature — Drake|26
+Bl?ordageV ampire|{2}{B}|3|Creature — Vampire|42
+Drifting hSade|{3}{B}|4|Creature — Shade|50
+Ts?te? f Blood|{B}|1|Sorcery|60
+F?ry?orn Hellkite|{4}{R}{R}{R}|7|Creature — Dragon|44
+Gorehor?Mniont?ur?|{2}{R}{R}|4|Creature — Minotaur Warrior|2
+W?l lof T?rches|{1}{R}|2|Creature — Wall|24
+Glae?cove?S?oct?|{G}|1|Creature — Elf Scout|43
+Gho??ly Possessoin|{2}{W}|3|Enchantment — Aura|6
+Rebuke|{2}{W}|3|Instant|31
+Batltegr?und G?ist|{4}{U}|5|Creature — Spirit|19
+nIes?tileA berration|1|1|Creature — Human Insect|4
+Sen?ory Dpreivait?n|{U}|1|Enchantment — Aura|57
+Corpse ?nuge|{2}{B}|3|Instant|30
+Cu?se of Obi?vion|{3}{B}|4|Enchantment — Aura Curse|37
+?ead Weight|{B}|1|Enchantment — Aura|36
+Gr??some Defro?tiy|{B}|1|Enchantment — Aura|22
+Mor?rtu Bnashee|{3}{B}{B}|5|Creature — Spirit|40
+T?phoid?Ra?s|{B}|1|Creature — Rat|5
+Unbur?al iRtes|{4}{B}|5|Sorcery|48
+Waklnig C?rpse|{1}{B}|2|Creature — Zombie|13
+WildbloodP ack|1|4|Creature — Werewolf|43
+Terroro fK ?ui?P ass|1|3|Creature — Werewolf|33
+aRkish Heri|{2}{R}|3|Creature — Vampire|16
+Torme?ted Pa?iah|{3}{R}|4|Creature — Human Warrior Werewolf|26
+Ni?htfla Plre?ator|1|3|Creature — Werewolf|38
+H?llowhegne ?caven???|{3}{G}{G}|5|Creature — Elemental|8
+MoldgrafM ons?rosi?y|{4}{G}{G}{G}|7|Creature — Insect|16
+Spide??Spwainng|{4}{G}|5|Sorcery|30
+Trvael?Preparatinos|{1}{G}|2|Sorcery|34
+Woodl?a? Sletuh|{3}{G}|4|Creature — Human Scout|10
+G?is to Sfaint rT?ft|{1}{W}{U}|3|Legendary Creature — Spirit Cleric|44
+Cellar Door|{2}|2|Artifact|15
+?emonmai lHauebrk|{4}|4|Artifact — Equipment|26
+Geistcatcher? s?ig|{6}|6|Artifact Creature — Construct|54
+hGulocaller'sB?e?l|{1}|1|Artifact|54
+?n??hcanter?s Pike|{2}|2|Artifact — Equipment|30
+Traveler's Amlute|{1}|1|Artifact|19
+I?oltaed? hapel|1|1|Land|28
+Mooranld Hantu|1|1|Land|19
+Woo?land Cmeetery|1|1|Land|20
+Sanctuar yCat|{W}|1|Creature — Cat|7
+Thalia ,Guardian of Thra?en|{1}{W}|2|Legendary Creature — Human Soldier|12
+D?ngeon Geists|{2}{U}{U}|4|Creature — Spirit|9
+raGvepurge|{2}{B}|3|Instant|28
+Skis?dgaF layre|{1}{B}|2|Creature — Human Cleric|59
+U?dyin? Evil|{B}|1|Instant|16
+Werewolf ?nsaacker|1|1|Creature — Werewolf|3
+Blood Feu?|{4}{R}{R}|6|Sorcery|32
+Hc?kln?g?Fie?ds|{2}{R}|3|Creature — Devil|2
+Moonveil Dr?o?n|{3}{R}{R}{R}|6|Creature — Dragon|21
+rWac??with Ma???ss|{3}{R}|4|Sorcery|11
+Lo?s in t?hW ?dos|{3}{G}{G}|5|Enchantment|21
+Monocsar?rd Wer?owfl|1|1|Creature — Werewolf|26
+WildH unger|{2}{G}|3|Instant|10
+Wol?fitet ?Captiv?|{G}|1|Creature — Human Werewolf|53
+Ravgae ro? the Fells|1|1|Creature — Werewolf|53
+M?st?Ra?en|{2}{U}{U}|4|Creature — Bird|38
+Sot?en?Godos|{3}{U}|4|Sorcery|33
+Death Wind|{X}{B}|1|Instant|12
+Grave Excahnge|{4}{B}{B}|6|Sorcery|39
+Human Fr?ilt?|{B}|1|Instant|57
+Pre?ator's Gambit|{B}|1|Enchantment — Aura|31
+Have?gul??ampire|{3}{R}|4|Creature — Vampire|17
+Heirs o? Stromikrk|{2}{R}{R}|4|Creature — Vampire|22
+Hou?d ?f Griseb?rand|{2}{R}{R}|4|Creature — Elemental Hound|38
+??ounded|{1}{G}|2|Enchantment — Aura|28
+Natuarl?En?|{2}{G}|3|Instant|49
+?o??ir?Si?verheart|{3}{G}{G}|5|Creature — Wolf Warrior|31
+Angel's oTmb|{3}|3|Artifact|25
+aH?nted Guardian|{2}|2|Artifact Creature — Construct|35
+?ron's Dominion|1|1|Plane — New Phyrexia|22
+Qui?csilver Sea|1|1|Plane — Mirrodin|54
+Dow?por?|{1}{U}|2|Instant|27
+Coewr?in Fear|{1}{B}{B}|3|Instant|60
+rDagon Htac?lign|{1}{R}|2|Creature — Dragon|57
+Firewing Phoenix|{3}{R}|4|Creature — Phoenix|46
+Preda?ory Rampage|{3}{G}{G}|5|Sorcery|58
+Prc?nit? Capt?in|{W}{W}|2|Creature — Human Soldier|18
+Auuqs Seted|{3}{U}|4|Creature — Beast|35
+Cr??stown ?ourier|{1}{U}|2|Creature — Vedalken|49
+Stab Wound|{2}{B}|3|Enchantment — Aura|6
+Bellow? Lizard|{R}|1|Creature — Lizard|51
+Gute?rsnipe|{2}{R}|3|Creature — Goblin Shaman|20
+Hor?calelr's Cha?t|{7}{G}|8|Sorcery|47
+?enta?r Healer|{1}{G}{W}|3|Creature — Centaur Cleric|42
+Essence ?ackl?sh|{2}{U}{R}|4|Instant|25
+?aard's Orders|{2}{B}{G}|4|Sorcery|45
+Rix Maadi uGildmage|{B}{R}|2|Creature — Human Shaman|16
+Slag?hetr Gmaes|{2}{B}{R}|4|Sorcery|19
+iNvmagusE elmetnal|{U/R}|1|Creature — Elemental|52
+Chr?mati? Lantern|{3}|3|Artifact|41
+zA?ruis ?iuldg?te|1|1|Land — Gate|26
+R?kdos Gu?ldgaet|1|1|Land — Gate|58
+Dutfiul Thrull|{W}|1|Creature — Thrull|5
+Kignht Wathc|{4}{W}|5|Sorcery|43
+Dilu?ian P?imordial|{5}{U}{U}|7|Creature — Avatar|8
+Rapid Hybridizat?on|{U}|1|Instant|3
+Ho?ro??of hte?Dmi|{4}{B}|5|Creature — Horror|52
+eS?ul?rhlaP rimord?al|{5}{B}{B}|7|Creature — Avatar|55
+mS?g Eemletnal|{4}{B}{B}|6|Creature — Elemental|53
+Craklcing Pe?im?eer|{1}{R}|2|Enchantment|54
+Ripsc?le Pe???tor|{4}{R}{R}|6|Creature — Lizard|51
+Aadptvie ?anp?aw|{4}{G}|5|Creature — Lizard Beast|5
+Alpha ?tAho?ity|{1}{G}|2|Enchantment — Aura|8
+Ooz? Fl?x|{3}{G}|4|Enchantment|20
+Execution?r' ?Swing|{W}{B}|2|Instant|10
+G???nd ?ssau?l|{R}{G}|2|Sorcery|51
+Gru?l R?gbeeast|{5}{R}{G}|7|Creature — Beast|28
+iMnd Gridn|{X}{U}{B}|2|Sorcery|1
+Paranoid?elDusio??|{U}{B}|2|Sorcery|59
+Arrowso?f Jusitce|{2}{R/W}|3|Instant|31
+eDta?cult Rogue|{1}{U/B}{U/B}|3|Creature — Human Rogue|24
+rAmore dTra?sport|{3}|3|Artifact Creature — Construct|50
+Gruul Keyr?ne|{3}|3|Artifact|48
+Sun?pire aGte?eeper?|{3}{W}|4|Creature — Human Soldier|51
+Bnae Alley Blackgua?r|{1}{B}|2|Creature — Human Rogue|58
+Cr?? tIncu?sion|{2}{B}|3|Instant|38
+Maze Ab?minatino|{5}{B}|6|Creature — Elemental|57
+Advent of the uWrm|{1}{G}{G}{W}|4|Instant|32
+Darg?ohsift|{1}{U}{R}|3|Instant|19
+Drwno i? ?ilth|{B}{G}|2|Sorcery|18
+Gruul ?a rC?ant|{2}{R}{G}|4|Enchantment|52
+Obzeadts' A?d|{3}{W}{B}|5|Sorcery|7
+R?store the Peace|{1}{W}{U}|3|Instant|33
+Spike eJster|{B}{R}|2|Creature — Goblin Warrior|37
+Dr?ty|{2}{G}|3|Sorcery|12
+?rou?le|{2}{R}|3|Sorcery|43
+?olgrai Cluestoen|{3}|3|Artifact|16
+Angelic Accord|{3}{W}|4|Enchantment|4
+Daw?s?irek Paladni|{3}{W}{W}|5|Creature — Human Knight|60
+?Dv?ut Invocatin?|{6}{W}|7|Sorcery|56
+?ismiss ?nto r?eam|{6}{U}|7|Enchantment|8
+I?lusionray Armor|{4}{U}|5|Enchantment — Aura|10
+Jace's ?i?dseeker|{4}{U}{U}|6|Creature — Fish Illusion|48
+Ti?ebinedr Mage|{U}{U}|2|Creature — Merfolk Wizard|60
+Corpse aHuler|{1}{B}|2|Creature — Human Rogue|9
+Dark Prphoecy|{B}{B}{B}|3|Enchantment|44
+Burning Earth|{3}{R}|4|Enchantment|53
+Cylcops yTra??|{5}{R}|6|Creature — Cyclops|37
+rDgao? Egg|{2}{R}|3|Creature — Dragon|2
+F?lshpu?per ?Gant|{5}{R}{R}|7|Creature — Giant|60
+Savae? Summ?nin?|{G}|1|Instant|11
+Spr?emound|{3}{G}{G}|5|Creature — Fungus|19
+V?racoius Wurm|{1}{G}|2|Creature — Wurm|16
+Guardai nfot h eAgse|{7}|7|Artifact Creature — Golem|37
+Decorated Griff?n|{4}{W}|5|Creature — Griffin|14
+Evangel ?f Helodi|{4}{W}{W}|6|Creature — Human Cleric|41
+Scholar ?f Atr?oes|{2}{W}|3|Creature — Human Cleric|19
+?i?en? Art?san|{3}{W}{W}|5|Creature — Giant|37
+B?eachn?g Hippocamp|{3}{U}|4|Creature — Horse Fish|20
+Dakr ?etrayal|{B}|1|Instant|7
+Felhide Mni?taur|{2}{B}|3|Creature — Minotaur|16
+Read ?he Bones|{2}{B}|3|Sorcery|35
+?it?n ofE t?enal Fri?|{5}{R}|6|Creature — Giant|42
+Satyr Piepr|{2}{G}|3|Creature — Satyr Rogue|16
+KrgaamW arcaller|{3}{B}{R}|5|Creature — Minotaur Warrior|41
+Pharika's Mender|{3}{B}{G}|5|Creature — Gorgon|55
+Poli? Crushe?|{2}{R}{G}|4|Creature — Cyclops|51
+Splelheat rCihmrea|{1}{U}{R}|3|Creature — Chimera|29
+?team Augury|{2}{U}{R}|4|Instant|10
+T?plem o? Sil?nce|1|1|Land|32
+?ivine rSpiri?|{4}{U}|5|Creature — Spirit|10
+?l??iso?ist's Gmaibt|{2}{U}{U}|4|Instant|3
+Toixc Deluge|{2}{B}|3|Sorcery|8
+Sudden Demis?|{X}{R}|1|Sorcery|28
+Brimaz, King of Ore?ko?|{1}{W}{W}|3|Legendary Creature — Cat Soldier|21
+Flitt?rsetp Eidolno|{1}{U}|2|Enchantment Creature — Spirit|48
+FloodtideS ?rpetn|{4}{U}|5|Creature — Serpent|4
+e?eltis Atsronomer|{1}{U}|2|Creature — Human Wizard|22
+Vortex El?m?ntal|{U}|1|Creature — Elemental|53
+Forsaekn Drifters|{3}{B}|4|Creature — Zombie|10
+Archet??p of gAgressio?|{1}{R}{R}|3|Enchantment Creature — Human Warrior|50
+iL?htning Volley|{3}{R}|4|Instant|8
+Phraagax?iG?nt|{4}{R}|5|Creature — Giant|22
+Arhcetyep of Enduarnce|{6}{G}{G}|8|Enchantment Creature — Boar|21
+oCurser of Kruphi?|{1}{G}{G}|3|Enchantment Creature — Centaur|36
+Templ?eofM?ailce|1|1|Land|5
+?empel of Pe?lt?|1|1|Land|18
+?mra?ent of ?yx|{2}{W}|3|Enchantment — Aura|50
+Font o?V gi?r|{1}{W}|2|Enchantment|15
+Nyx-?leece Ram|{1}{W}|2|Enchantment Creature — Sheep|33
+rCys?tlline Nauitlus|{2}{U}|3|Enchantment Creature — Nautilus|54
+War-?ing?Srin?|{2}{U}|3|Creature — Siren Soldier|21
+Gnarled cSarhdie|{B}|1|Enchantment Creature — Minotaur|40
+Ritual of th ?Retrneud|{3}{B}|4|Instant|45
+Eidloon fo?th eGreat?Rveel|{R}{R}|2|Enchantment Creature — Spirit|12
+W?ldfire C?rberus|{4}{R}|5|Creature — Hound|9
+Desce?riotn Plagu?|{3}{G}|4|Sorcery|12
+R?venou?L eurcoocta|{3}{G}|4|Creature — Beast|47
+Disci?le of Dece?t|{U}{B}|2|Creature — Human Rogue|12
+K?ran?s, God o f?So?ms|{3}{U}{R}|5|Legendary Enchantment Creature — God|54
+?Scre tSum?oning|1|1|Conspiracy|19
+Unexp?cte dPotenti?l|1|1|Conspiracy|20
+Marchs?a' sEim?sary|{3}{U}|4|Creature — Human Rogue|41
+Plea fo? Pow??|{3}{U}|4|Sorcery|27
+Dakc Fadyen|{1}{U}{R}|3|Planeswalker — Dack|31
+W?odv?ne Elemental|{4}{G}{W}|6|Creature — Elemental|23
+Cogwork Lirbarain|{4}|4|Artifact Creature — Construct|27
+Dantuless? iver Marshal|{1}{W}|2|Creature — Human Soldier|54
+?rSapho ?f??e Masss?|{5}{W}{W}|7|Creature — Angel|43
+Coral?Barrier|{2}{U}|3|Creature — Wall|36
+DiffusionS liver|{1}{U}|2|Creature — Sliver|23
+Plyoomrphist's? est|{1}{U}{U}|3|Instant|21
+En?l?ss Obedinece|{4}{B}{B}|6|Sorcery|3
+Le?ch?ng lSiver|{1}{B}|2|Creature — Sliver|33
+Necromance'rs As???ta?n|{2}{B}|3|Creature — Zombie|37
+Witc'hs Fmialiar|{2}{B}|3|Creature — Frog|60
+Belligerent Sliver|{2}{R}|3|Creature — Sliver|24
+Brood Keeper|{3}{R}|4|Creature — Human Shaman|24
+uB??ing ?ng?r|{4}{R}|5|Enchantment — Aura|26
+Kird Ciheftain|{3}{R}|4|Creature — Ape|33
+Feral I?cr?aation|{8}{G}|9|Sorcery|52
+Hun?er's Ambush|{2}{G}|3|Instant|16
+V??e?eft|{G}|1|Enchantment — Aura|14
+Y?ian, the?Wa?deerr?Bad?|{2}{G}|3|Legendary Creature — Human Rogue|30
+?live rHivlerod|{W}{U}{B}{R}{G}|5|Legendary Creature — Sliver|36
+?r?afn? Memenot|{1}|1|Artifact|35
+Soul of Ne wPhyrexi?|{6}|6|Artifact Creature — Avatar|21
+ndE ?ostiliitse|{3}{W}{W}|5|Sorcery|49
+?eat of Resist?nce|{1}{W}|2|Instant|37
+Kill Shto|{2}{W}|3|Instant|30
+iSegecr?ft|{3}{W}|4|Enchantment — Aura|7
+Embodimen??f opSrnig|{U}|1|Creature — Elemental|31
+G?ciaal ?t?lker|{5}{U}|6|Creature — Elemental|26
+Sidisi's Pet|{3}{B}|4|Creature — Zombie Ape|13
+Burn??way|{4}{R}|5|Instant|4
+oHotin gMadnrills|{5}{G}|6|Creature — Ape|14
+Sagu ?rcher|{4}{G}|5|Creature — Naga Archer|17
+Abza?nG?ied|{3}{W}{B}{G}|6|Creature — Human Warrior|12
+Bea???C ompani?n|{2}{G}{U}{R}|5|Creature — Human Warrior|49
+eTmru Chamr|{G}{U}{R}|3|Instant|28
+Jzaal o?ldmane|{2}{W}{W}|4|Legendary Creature — Cat Warrior|43
+Stormsurge Kraken|{3}{U}{U}|5|Creature — Kraken|39
+Ghouclaller Gisa|{3}{B}{B}|5|Legendary Creature — Human Wizard|11
+Infe?nal O?feri?g|{4}{B}|5|Sorcery|60
+??oil sof Blood|{B}|1|Instant|7
+Song of the Dryads|{2}{G}|3|Enchantment — Aura|19
+oWlfcaller'sH wo?|{3}{G}|4|Enchantment|53
+Reali?y ?ihft|{1}{U}|2|Instant|50
+Wirte into Being|{2}{U}|3|Sorcery|11
+Arahsi nWa? eaB?t|{5}{G}{G}|7|Creature — Beast|32
+Monaster? Siege|{2}{U}|3|Enchantment|24
+iWllo f the?Naga|{4}{U}{U}|6|Instant|32
+rOc uSreshot|{3}{B}|4|Creature — Orc Archer|53
+Break Throug??te Lhine|{1}{R}|2|Enchantment|5
+Mob Rule|{4}{R}{R}|6|Sorcery|42
+Va?ltberakre|{3}{R}|4|Creature — Orc Rogue|32
+Battlefrn?t?Krsu?ok|{4}{G}|5|Creature — Beast|53
+Profuond Journey|{5}{W}{W}|7|Sorcery|44
+Sandts?rm?hCargr?|{4}{W}|5|Creature — Beast|50
+Palac eFaml?iar|{1}{U}|2|Creature — Bird|60
+Tai?am?s tSrike|{3}{U}|4|Sorcery|8
+Hand of Silumgar|{1}{B}|2|Creature — Human Warrior|2
+?inister of Pain|{2}{B}|3|Creature — Human Shaman|23
+Silumgar Butcher|{4}{B}|5|Creature — Zombie Djinn|8
+?olagha?S torms?gner|{R}|1|Creature — Human Shaman|54
+Lose Cal?|{3}{R}|4|Sorcery|21
+M?gmtaic?h???m|{1}{R}|2|Sorcery|49
+Va??la?ie|{4}{R}|5|Sorcery|60
+D?omok'asG ift|{4}{G}|5|Instant|34
+Cunni?? Breezedanc?e|{4}{W}{U}|6|Creature — Dragon|33
+Endu?ing S?alelord|{4}{G}{W}|6|Creature — Dragon|45
+Gat? Sam?ehr|{3}|3|Artifact — Equipment|44
+?nointer of Champi?ns|{W}|1|Creature — Human Cleric|3
+Cleric of the?Forwa?d?Or?r?|{1}{W}|2|Creature — Human Cleric|9
+Consu'ls Lieutenat?|{W}{W}|2|Creature — Human Soldier|50
+Enshrodunig Mist|{W}|1|Instant|13
+Apsi??ng?Aeron?ut|{3}{U}|4|Creature — Human Artificer|31
+Deadbridg? Sham?n|{2}{B}|3|Creature — Elf Shaman|55
+Tiante?R meedy|{2}{B}|3|Enchantment|49
+Fla???hadow C?nujring|{3}{R}|4|Enchantment|59
+Mamg?ti? Insig?t|{R}|1|Sorcery|1
+?ubterraenan ?octu|{1}{R}|2|Creature — Goblin Scout|43
+nAimist's wAaekn?ng|{X}{G}|1|Sorcery|60
+TheG raet Aurora|{6}{G}{G}{G}|9|Sorcery|35
+Thunde?clap yWvern|{2}{W}{U}|4|Creature — Drake|49
+Th?owi?g Knife|{2}|2|Artifact — Equipment|44
+Reterat to Kazna?u|{2}{G}|3|Enchantment|39
+?EdraziS pawn|1|1| Creature — Eldrazi Spawn|30
+Ban?oef Baal Ged|{7}|7|Creature — Eldrazi|55
+Coastal Discovery|{3}{U}|4|Sorcery|12
+Windrider Partol|{3}{U}{U}|5|Creature — Merfolk Wizard|36
+Silent Ski?m?r|{3}{B}|4|Creature — Eldrazi Drone|8
+Demo'?? Grsap|{4}{B}|5|Sorcery|34
+u?Tn ?gi?n?s|{4}{R}|5|Instant|51
+iFr?m?nlt e?a?e|{2}{R}|3|Creature — Human Shaman Ally|49
+Re?kless Cohort|{1}{R}|2|Creature — Human Warrior Ally|16
+S???terskullR ecruit|{3}{R}{R}|5|Creature — Giant Warrior Ally|12
+?olcanic pUhavea?|{3}{R}|4|Instant|5
+Callt h?S cions|{2}{G}|3|Sorcery|2
+Patlde Crushr?|{4}{G}{G}{G}|7|Creature — Beast|38
+SnappngiGn ?alid|{1}{G}|2|Creature — Beast|6
+Resolute Bl?dema?ter|{3}{R}{W}|5|Creature — Human Soldier Ally|28
+Salb Ha?me?|{2}|2|Artifact — Equipment|59
+?ligh?ed Cata?a?t|1|1|Land|52
+Blighted Stepep|1|1|Land|3
+Sh??lded?yb Faiht|{1}{W}{W}|3|Enchantment — Aura|31
+Giagntoplasm|{3}{U}|4|Creature — Shapeshifter|16
+Corpse Augur|{3}{B}|4|Creature — Zombie Wizard|33
+Wretc?ed ?onflunece|{3}{B}{B}|5|Instant|14
+Awakent?he ?ky Tyra?t|{3}{R}|4|Enchantment|59
+Skullwinder|{2}{G}|3|Creature — Snake|22
+Sa??ston? raOcle|{7}|7|Artifact Creature — Sphinx|22
+Deceivero fF orm|{6}{C}|7|Creature — Eldrazi|38
+Endbringer|{5}{C}|6|Creature — Eldrazi|40
+Ko?ilek,t?he rGet? Ditosriton|{8}{C}{C}|10|Legendary Creature — Eldrazi|50
+a?lker of t?e ?astes|{4}{C}|5|Creature — Eldrazi|19
+Eldrz?i iDsplac?e|{2}{W}|3|Creature — Eldrazi|13
+Cal? the Gatewatch|{2}{W}|3|Sorcery|9
+Wall of Re?urgence|{2}{W}|3|Creature — Wall|22
+Abs?ruseI tnerfernece|{2}{U}|3|Instant|48
+K?zilk?es hSri?ker|{2}{B}|3|Creature — Eldrazi Drone|13
+Drana's Chosen|{3}{B}|4|Creature — Vampire Shaman Ally|10
+Stalking Drnoe|{1}{G}|2|Creature — Eldrazi Drone|17
+El?mental Urpising|{1}{G}|2|Instant|19
+??lvanA dvo?ate|{1}{G}|2|Creature — Elf Druid Ally|14
+Zendikar ?esuregnt|{5}{G}{G}|7|Enchantment|47
+Minmdeltre|{1}{U}{B}|3|Creature — Eldrazi Drone|52
+?tonef??eg Matserwrok|{1}|1|Artifact — Equipment|32
+irrMorpool|1|1|Land|21
+Tim?r? Go?eg|1|1|Land|19
+Por evOer teh Pa?es|{3}{U}{U}|5|Sorcery|9
+Declarati???in Stone|{1}{W}|2|Sorcery|12
+Emissray of?th??S?e?p?ess|{4}{W}|5|Creature — Spirit|10
+Ethereal Gu?dance|{2}{W}|3|Sorcery|19
+Wesvtale Cul? Leader|1|2|Creature — Human Cleric|18
+oHpe Against Hope|{2}{W}|3|Enchantment — Aura|53
+Iqnus?it?'rs ?x|{3}{W}|4|Creature — Ox|21
+Nepahlia Moondr?k?s|{5}{U}{U}|7|Creature — Drake|17
+Silent Obse?v?r|{3}{U}|4|Creature — Spirit|34
+Falke?arht Gorge?|{R}|1|Creature — Vampire Berserker|17
+Geier Reach Bnadi?|{2}{R}|3|Creature — Human Rogue Werewolf|1
+Ravenuos Bl?odseeker|{1}{R}|2|Creature — Vampire Berserker|23
+Ski? Sheddre|1|1|Creature — Insect Horror|39
+Voldaren ?u?list|{3}{R}|4|Creature — Vampire Warrior|11
+u?tumnal Gloom|{2}{G}|3|Enchantment|53
+Clpi Winsg|{1}{G}|2|Instant|30
+Krlal?nho?de Howler|1|2|Creature — Werewolf|37
+?imber S?redd?r|1|2|Creature — Werewolf|43
+W?rewolf of Acinent Hunger|1|5|Creature — Werewolf|25
+?ecn?d ?raves?|{2}{G}{G}|4|Instant|3
+rTavers e?h eUvle?wald|{G}|1|Sorcery|57
+Vetera nCathar|{1}{G}|2|Creature — Human Soldier|8
+Watc?er?i? t? hWeb|{4}{G}|5|Creature — Spider|16
+Ash?mtuh Bl?de|1|1|Artifact — Equipment|27
+Thraebn Gargoyl?|{1}|1|Artifact Creature — Gargoyle|38
+iWcker Wt?ch|{3}|3|Artifact Creature — Scarecrow|26
+Cohkde Et?sary|1|1|Land|17
+Forsaken Snacturay|1|1|Land|12
+Soten Quaryr|1|1|Land|56
+Courageou sOur?ide?|{3}{W}|4|Creature — Human Scout|36
+Ironclad Slayer|{2}{W}|3|Creature — Human Warrior|13
+S?lfle? sSp?rti|{1}{W}|2|Creature — Spirit Cleric|44
+Sigard'a? Adi|{W}|1|Enchantment|11
+Spcerta ?Reserves|{3}{W}|4|Sorcery|26
+Curi?us Houm?ucl?s|{1}{U}|2|Creature — Homunculus|43
+Vroacious Redar?|1|2|Creature — Eldrazi Homunculus|28
+F?tru?es' Favor|{3}{U}|4|Instant|40
+Scour teh Labor?aory|{4}{U}{U}|6|Instant|50
+?aunted Dead|{3}{B}|4|Creature — Zombie|22
+Pr?ign Q?estions|{2}{B}|3|Sorcery|53
+Ruthl?ss Disposla|{4}{B}|5|Sorcery|1
+Conduit fo Stroms|{2}{R}|3|Creature — Werewolf Horror|6
+Galvanic Bomb?rdmnet|{R}|1|Instant|36
+Insaitabl eoGrgers|{2}{R}{R}|4|Creature — Vampire Berserker|56
+Otherworldly Outb?rst|{R}|1|Instant|14
+Erupting Deradwolf|1|4|Creature — Eldrazi Werewolf|36
+T?er?o-Alchemist|{1}{R}|2|Creature — Human Shaman|33
+Gnar?wo?d rDyad|{G}|1|Creature — Dryad Horror|49
+Ishk?nah, Grafwidow|{4}{G}|5|Legendary Creature — Spider|43
+Spiirt of?th eHnut|{1}{G}{G}|3|Creature — Wolf Spirit|59
+aT?gleclaw Werewol?|{2}{G}{G}|4|Creature — Werewolf Horror|13
+Adriaan's Vlaor|1|1|Conspiracy|51
+I?ne?diary Dsisent|1|1|Conspiracy|44
+Messenge? J?as|{4}{U}|5|Creature — Bird|51
+?arrulosu S?co?ahnt|{2}{B}|3|Creature — Human Advisor|41
+aMrhceas's De?eer|{3}{B}|4|Enchantment|29
+Garbage F?re|{2}{R}|3|Instant|43
+Regal Bheemoth|{4}{G}{G}|6|Creature — Lizard|15
+Split?ing lSime|{3}{G}{G}|5|Creature — Ooze|43
+An?e??f oIvneniton|{3}{W}{W}|5|Creature — Angel|25
+Av?ary Mehacnic|{1}{W}|2|Creature — Dwarf Artificer|14
+Trusty ?Cmpanion|{1}{W}|2|Creature — Hyena|23
+Mi?siter o ?Iqnuiries|{U}|1|Creature — Vedalken Advisor|24
+Veadlken Blade?a?ter|{2}{U}|3|Creature — Vedalken Soldier|33
+Dukha?? S?avenger|{5}{B}|6|Creature — Crocodile|37
+Pr?khata Club Security|{3}{B}|4|Creature — Aetherborn Warrior|59
+Tidy Conculsino|{3}{B}{B}|5|Instant|40
+WeaponcraftE?tnhuisats|{2}{B}|3|Creature — Aetherborn Artificer|3
+Chand?a, T?rch? fD?efiance|{2}{R}{R}|4|Planeswalker — Chandra|23
+Comb?s?ible Ge?rhulk|{4}{R}{R}|6|Artifact Creature — Construct|22
+Giant ?pe??acle|{1}{R}|2|Enchantment — Aura|6
+R?ni?us rGemlin|{R}|1|Creature — Gremlin|34
+Ar?hitec? of t?e U?tamed|{2}{G}|3|Creature — Elf Artificer Druid|7
+Bloss?onig Defense|{G}|1|Instant|34
+F?irgro??ds Trupmeter|{2}{G}|3|Creature — Elephant|47
+Tak? Dow?|{G}|1|Sorcery|46
+Cloudbla?e?|{3}{W}{U}|5|Creature — Human Scout|18
+?Atherflux Reservoir|{4}|4|Artifact|25
+Aetherworks Marve?|{4}|4|Legendary Artifact|23
+Bastion Masodton|{5}|5|Artifact Creature — Elephant|32
+Electrosa?tic Pmmueler|{3}|3|Artifact Creature — Construct|23
+Fili?er eFamiliar|{3}|3|Artifact Creature — Fox|49
+Ghirapur Or?rry|{4}|4|Artifact|24
+Inventor's Goggles|{1}|1|Artifact — Equipment|24
+?neegade Freig?ter|{3}|3|Artifact — Vehicle|19
+?nspiring Vant?eg|1|1|Land|35
+?errain Elemetnla|{1}{G}|2|Creature — Elemental|59
+Faerie Artisnas|{3}{U}|4|Creature — Faerie Artificer|11
+Primev?l?Proe?ctor|{10}{G}|11|Creature — Avatar|50
+Stoenhoof Cihetafin|{7}{G}|8|Creature — Centaur Warrior|21
+Akiri, L?n-?elinger|{R}{W}|2|Legendary Creature — Kor Soldier Ally|9
+Brue sTar,l Boor?h? eHrde?|{2}{R}{W}|4|Legendary Creature — Human Ally|34
+Ssaki? ?heU nyie?ding|{B}{R}{G}{W}|4|Legendary Creature — Human Soldier|21
+Sylvan Relcamation|{3}{G}{W}|5|Instant|28
+Ash? arren?|1|1|Land|59
+Aethr?geode Mine?|{1}{W}|2|Creature — Dwarf Scout|48
+Call fo? ?niyt|{3}{W}{W}|5|Enchantment|28
+To?t?er Arres?|{2}{W}|3|Enchantment|17
+R?vesre Engineer|{3}{U}{U}|5|Sorcery|13
+Wi?h ?f Invention|{X}{U}{U}{U}|3|Instant|44
+Faatl Push|{B}|1|Instant|30
+?e?geflu Rbeel|{2}{B}|3|Creature — Aetherborn Warrior|25
+Aehter Ch?ae?|{1}{R}|2|Creature — Human Artificer|42
+Frn?lt?ie Rebel|{2}{R}|3|Creature — Human Warrior|18
+Kari Ze?s'? xp?rtise|{1}{R}{R}|3|Sorcery|40
+Scrappe ?rhamipon|{3}{R}|4|Creature — Human Artificer|30
+eAther Hedrre|{3}{G}|4|Creature — Elf Artificer Druid|34
+Lifercaft Cava?ry|{4}{G}|5|Creature — Elf Warrior|57
+R?negad? R?llie?|{1}{G}{W}|3|Creature — Human Warrior|2
+Crackdow? ?ons??uct|{4}|4|Artifact Creature — Construct|21
+?areed?i? Dragtser|{3}|3|Artifact — Vehicle|29
+??plement of Ma?cie|{2}|2|Artifact|40
+Ir?nt?ead Crsuher|{4}|4|Artifact — Vehicle|37
+Mtea?lci Miimc|{2}|2|Artifact Creature — Shapeshifter|55
+Universal Solvent|{1}|1|Artifact|14
+WatchfluA utomaton|{3}|3|Artifact Creature — Construct|33
+p?ire of In?sdtyr|1|1|Land|57
+T?ezeret, aMstre of Metla|{4}{U}{B}|6|Planeswalker — Tezzeret|56
+Giedon's Int?rven?ion|{2}{W}{W}|4|Enchantment|23
+Regal C?racal|{3}{W}{W}|5|Creature — Cat|29
+Aven Initiat?|{3}{U}|4|Creature — Bird Warrior|57
+Cnesor|{1}{U}|2|Instant|7
+Cr?pticS erepnt|{5}{U}{U}|7|Creature — Serpent|4
+Gal?s?rkie|{2}{U}|3|Instant|4
+Labyri?h? Guar?ina|{1}{U}|2|Creature — Illusion Warrior|3
+Seeke?ro?fIns?gth|{1}{U}|2|Creature — Human Wizard|13
+r?T?l o? nKowledge|{3}{U}|4|Enchantment|16
+Vizier of Tu?bli?g Snads|{2}{U}|3|Creature — Human Cleric|35
+Archfiend ofI fn?i|{3}{B}{B}|5|Creature — Demon|20
+Blg?ht?e Bta|{2}{B}|3|Creature — Zombie Bat|1
+Faith of the Devoted|{2}{B}|3|Enchantment|23
+Final Rewadr|{4}{B}|5|Instant|26
+Minotaur Srueshot|{2}{R}|3|Creature — Minotaur Archer|9
+Pursue ??ory|{3}{R}|4|Instant|18
+Colossapeed|{4}{G}|5|Creature — Insect|42
+?Sed eWknae?s|{G}|1|Instant|28
+?rail o? Strentgh|{2}{G}|3|Enchantment|10
+Decimator Beetle|{3}{B}{G}|5|Creature — Insect|38
+?eave rof Currents|{1}{G}{U}|3|Creature — Naga Druid|35
+Bnotu's Mn???en?|{3}|3|Legendary Artifact|15
+?n?d eKhop???|{1}|1|Artifact — Equipment|2
+uSnc?orc?ed Desert|1|1|Land — Desert|52
+Companion fo the Trials|{2}{W}|3|Creature — Bird Soldier|16
+iLliana,D eath Wileder|{5}{B}{B}|7|Planeswalker — Liliana|18