- published: 06 Aug 2019
- views: 526664
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Plague or The Plague may refer to:
Coordinates: 40°43′48″N 73°59′42″W / 40.73000°N 73.99500°W / 40.73000; -73.99500
New York University (NYU) is a private, nonsectarian American research university based in New York City. Founded in 1831, NYU is one of the largest private non-profit institutions of American higher education. University rankings compiled in 2015 by U.S. News and World Report, Times Higher Education and the Academic Ranking of World Universities all ranked NYU among the 34 most reputable universities in the world. NYU is organized into more than twenty schools, colleges, and institutes, located in six centers throughout Manhattan and Downtown Brooklyn. NYU's main campus is located at Greenwich Village in Lower Manhattan with institutes and centers on the Upper East Side, academic buildings and dorms down on Wall Street, and the Brooklyn campus located at MetroTech Center in Downtown Brooklyn. The University also established NYU Abu Dhabi, NYU Shanghai and maintains 11 other Global Academic Centers in Accra, Berlin, Buenos Aires, Florence, London, Madrid, Paris, Prague, Sydney, Tel Aviv and Washington, D.C.
The Plague are an English punk rock band. Formed in South East London during 1976, the band were initially in existence until 1981. They reformed in 2005. Their original line-up was:
The Plague are notable as a band who played London venue The Roxy many times, as well as many more shows all over the country. They also scored a minor hit with their 1978 single "In Love", which received Radio 1 airplay and became a favourite of the late John Peel, a long-time champion of underground music.
After meeting at college Gareth, Graham and Marc noted a shared interest in bands such as The Damned, The Who and The Sex Pistols, and formed The Plague in the autumn of 1976. Drummer Greg Horton completed the line-up, and the band began playing together at a rehearsal space attached to a church in Bromley.
By early 1977 The Plague were playing locally, soon securing a regular slot at the Battersea Arts Centre - initially as support to musical-play "The Food Show". They were the first punk rock band to play at the venue, playing a twenty-minute set to open the show as well as providing a contemporary soundtrack to The Food Show in return for rehearsal space. As The Food Show was put on by the Inner London Education Authority (ILEA), the unlikely pairing played other ILEA venues together. However this was a short-lived arrangement after the band played soon-to-be fan-favourite "1, 2, Fuck You!" one night at a school. Despite requesting a punk show, school staff in the audience went berserk, almost leading to a fight between the school's PE teacher and the band/manager. The headmaster demanded an apology from The Plague, which was unforthcoming, so from that point onward they were banned from all ILEA venues - rather a fitting and appropriate state of affairs for a hungry teenage punk band in 1977.
Evangelos Odysseas Papathanassiou (Greek: Ευάγγελος Οδυσσέας Παπαθανασίου [evˈaɲɟelos oðiˈseas papaθanaˈsiu]; born 29 March 1943), known professionally as Vangelis (Greek: Βαγγέλης [vaɲˈɟelis]; English pronunciation: /væŋˈɡɛlᵻs/), is a Greek composer of electronic, progressive, ambient, jazz, pop rock, and orchestral music. He is best known for his Academy Award–winning score for the film Chariots of Fire, composing scores for the films Antarctica, Blade Runner, Missing, 1492: Conquest of Paradise, and Alexander, and the use of his music in the PBS documentary Cosmos: A Personal Voyage by Carl Sagan.
After having taking piano lessons from renowned Greek composer Aristotelis Koundouroff, Vangelis began his professional musical career working with several popular bands of the 1960s such as The Forminx and Aphrodite's Child, with the latter's album 666 going on to be recognized as a psychedelic classic. Throughout the 1970s, Vangelis composed music scores for several animal documentaries, including L'Apocalypse Des Animaux, La Fête sauvage and Opéra sauvage; the success of these scores brought him into the film scoring mainstream. In the early 1980s, Vangelis formed a musical partnership with Jon Anderson, the lead singer of progressive rock band Yes, and the duo went on to release several albums together as Jon & Vangelis.
Vangelis is a common Greek name, deriving from Evángelos (Ευάγγελος).
It may refer to:
Vangelis, sometimes spelled Vangellys (born September 7, 1981) is the ring name of a Mexican luchador, or masked professional wrestler, currently working for the Mexican professional wrestling promotion Consejo Mundial de Lucha Libre (CMLL) portraying a rudo ("bad guy") wrestling character. He has formerly worked for Asistencia Asesoría y Administración (AAA) in Mexico and Dragon Gate in Japan. Also, Vangelis is the winner of the 2013 En Busca de un Ídolo tournament.
Vangelis trained under El Torero, Dick Angelo and Huracán González before making his professional wrestling debut in 1999
He quickly began working for Asistencia Asesoría y Administración (AAA), training at their school while only occasionally wrestling on their television shows. Vangelis was teamed up with Jimmy Boy and Billy to form a boy band inspired group called Los Spice Boys. At Triplemanía VII Jimmy Boy, Billy and Vangelis defeated Los Payasos (Coco Amarillo, Coco Rojo and Coco Verde) in one of the undercard matches. At the 2000 Guerra de Titanes event Los Spice Boys lost to Los Vatos Locos (Espiritu, Nygma, Picudo and Silver Cat). In 2001 Vangelis was given a new ring character, that of a Nazi soldier, complete with swastika armband and the Nazi salute that naturally made him a rudo, a heel or bad guy character. Vangelis formed a group known as Los Warriors along with Kevin (a sailor), Brandon (Aztec Warrior) and Uri (Viking) although Uri only worked with the group for a few months. Los Warriors had a long running storyline feud against Los Barrio Boys, former partners Billy Boy and Alan (Jimmy Boy using a new name) as well as Decnis. The feud between the two factions saw Vangelis win his first ever Luchas de Apuestas, or bet match, when he defeated Alan in a Steel cage match that involved all members of Los Warriors and Los Barrio Boys.
New York University (NYU) is the university in the heart of downtown Manhattan. Have you ever wanted to visit New York City? If yes, this is the NYU campus tour for you. Buy the LIMITED Edition "Hafu University" Hoodie ➤ Only 1 Left! http://bit.ly/limitedhafuhoodie 🔴SUBSCRIBE for More College Vlogs➤ https://www.youtube.com/channel/UCXMV... ↪ Harvard Campus Tour ➤ https://youtu.be/bO4RoQL9H8I Follow Me for Behind the Scenes! INSTAGRAM ➤ http://www.instagram.com/hafuguo WEIBO 微博 (有中文视频) ➤ @郭哈福 CAMPUS CRAWL is a new series where I take you to tour the top universities around the world. So you can eliminate the fear of going to college and decide where you want to go. Or just get a wider perspective on college life. Today we went on an NYU campus tour. We visited all the buildings and le...
https://crmsn.tv/FreeConsultation
This is how NYU decides who to reject in 30 seconds. For those of you who don't know, NYU is a prestigious private school located in the east coast. Just like the temperature there, NYU's acceptance rate is in the negatives. If you're reading this, hi! I'm ShivVZG, a sophomore at the University of Southern California. I'm on a journey to critique every single aspect of the educational system in a satirical and playful manner. If you want to join me on this journey, subscribe! : D ----------» https://www.youtube.com/c/ShivVZG ----------» https://www.twitch.tv/shivvzg ----------» https://www.instagram.com/shivvzg/ ----------» https://twitter.com/ShivVZG_YT ShivVZG's School Survival Guide Playlist: https://www.youtube.com/playlist?list=PLy1zrd-logLveHcPVr-M4wMawvp9hPjba How Colleges Deci...
New York University, also known as NYU, is a private university founded in 1831. The famous people went to NYU include Lady Gaga, Angelina Jolie, and Anne Hathaway etc. While it has campuses all over the world, the historic campus is in Greenwich Village near Washington Square Park. The university has around 50,000 students enrolled with a highly selective admissions process. It is a competitive school to get into with the average GPA needed at 3.69. *NOTE: Enjoy this Columbia University campus tour video in the best quality by setting the VIDEO QUALITY to the possible highest resolution!* To subscribe: https://www.youtube.com/c/NYCscooting?sub_confirmation=1 What is NYU most known for? NYU is most known for its popular majors including visual and performing arts, social sciences, busi...
📸 Instagram : https://www.instagram.com/roger.yoo/ 인스타그램을 열심히 해보려고합니다! 팔로우 해주실분? "Will anyone want to follow my Instagram?" 0:00 ♫ "Flower" by Johnny Stimson 3:33 ♫ "Silent" by Sam Ock 8:01 ♫ "Talking to myself" by Brb. 11:23 ♫ "Vacation" by Johnny Stimson 14:44 ♫ "Sunflower" by Miller Blue 18:26 ♫ "Pleasure" by Sarah Kang 21:18 ♫ "About Time" by Sarah Kang 24:31 ♫ "Smile" by Johnny Stimson 27:13 ♫ "Hard to Say Goodbye" by Johnny Stimson 29:50 ♫ "Old Boyfriends" by Phillip Vo 33:10. ♫ Replay (반복재생) ------------------------------------------------------------------------------------- 🐕진돗개 햇살 (My doggy channel) : https://www.youtube.com/@JindoHaetSsal 🎧 뉴욕 ASMR (New Yortk ASMR) : www.youtube.com/@ASMR-ed7uw ❤🩹 반고흐가 되고싶어 본캐 : https://www.youtube.com/@Vincent-fe...
Enjoy a campus tour of NYU (New York University) in this video! Whether a current or prospective student at NYU, this campus tour will help make the University of New York Experience more friendly. Visit the campus grounds, lecture halls, local restaurants of NYU in this virtual campus tour. Experience the authentic student experience at NYU in this New York University Campus Tour while becoming familiar NYU located in New York, New York. About NYU Since its founding in 1831, NYU has been an innovator in higher education, reaching out to an emerging middle class, embracing an urban identity and professional focus, and promoting a global vision that informs its 20 schools and colleges. Today, that trailblazing spirit makes NYU one of the most prominent and respected research universities...
NYU students find out Barron Trump is their PEER #shorts #barrontrump #newyorkuniversity Daily Mail Website: https://www.dailymail.co.uk Daily Mail Facebook: https://facebook.com/dailymail Daily Mail IG: https://instagram.com/dailymail Daily Mail Snap: https://snapchat.com/discover/Daily-Ma... Daily Mail Twitter: https://twitter.com/MailOnline Daily Mail Pinterest: https://pinterest.co.uk/dailymail Get the free Daily Mail mobile app: https://dailymail.co.uk/mobile
Hey what's up guys - Today, I asked NYU Students how they got into NYU. We find out what their GPA, SAT/ACT, extracurriculars are. Also, we dive into why they think they got into NYU and any advice they would give for prospective students and for students at NYU. We interviewed students in many different majors and schools at NYU so hopefully you resonate with one or many of them. I hope this provides you with good college insight and hopefully this can help you with your applications or help you in some other form! If you're new to the channel, I’m Ryan and I'm a sophomore at NYU studying media, culture, and communications. I will be making new videos every week about college in the city, vlogs, gym, soccer, and whatever else. I hope you guys enjoy :) 0:00 - 0:13 Intro 0:13 - 0:40 Nam...
hey everyone! i had so much fun pulling together this vlog taking you along with me during my first semester at NYU film school! it's been such a blast and I can't wait to share more about my experience in the future!
Due to popular request! #collegeapplications #collegeadmissions #ivyleague #essaywriting #collegeessays #nyu #newyorkuniversity ABOUT US Hi! We're Kevin and Jeffrey, two Yalies who want to help you get into your dream school! About Kevin Zhen: Exeter '16, Yale '20 (East Asian Studies) Since 2016, Kevin has personally helped more than 30+ students gain acceptances into every Ivy League University, as well as top tech schools such as Stanford and Georgia Tech. He also loves teaching creative nonfiction, flash fiction and poetry. In total, his students have won more than 75+ Scholastic Writing awards. About Jeffrey Yu: Yale '23 (Computer Science and East Asian Studies) Jeff is a senior at Yale double majoring in Computer Science and East Asian Studies with a concentration on China. His...
Plague or The Plague may refer to:
I wear the mark defining time
Earth shook many a times as I've lived
Forever I have walked this path of mine
Many times I have questioned existence
Whenever Death is called upon
I'm the one to carry out his will
I'm the plague
Harvesting lives while I'm grinning in vain
Counting my causes on fingers decayed
I'm the plague
I am the plague but I have many names
Mankind has feared me for as long as fear has been
I am one with many a names but you can call me The Plague
I'm the plague
So many lives I've extinguished
While humanity seeks a cure
I'm the plague
For every disease where one survives
I evolve to disrupt by killing two more
I'm the plague
I am the plague but I have many names
Mankind has feared me for as long as fear has been
I am one with many a names but you can call me The Plague
I'm the plague
I'm the plague
I wear the scar, marked by him
Earth shook many a time as I've lived
Forever I have walked this path of mine
Forever I have questioned existence
... welcome to my quarters son, enjoy my hospitality
You see, I only fulfill his will, feel the pain...
Fire shall swallow the earth
Illness will conquer birth
Sole with my illwill, I'm blessed with its' curse
Damnation's the price for all in my way
I'm the plague
Daily I'm roaming my lane of death
Accomplishing mission: Evilution, for HIM
I'm the plague
I am the plague but I have many names
Mankind has feared me for as long as fear has been
I am one with many a names but you can call me The Plague
I'm the plague
I'm the plague
I'm the plague