- published: 19 Jul 2019
- views: 3572331
'+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; })); }); -->
Toys in the Attic is the third studio album by American rock band Aerosmith, released in April 1975 by Columbia Records. Its first single release, "Sweet Emotion", was released a month later on May 19 and "Walk This Way" was later released on August 28 in the same year. The album is their most commercially successful studio LP in the US, with eight million copies sold, according to the RIAA.
Steven Tyler said that his original idea for the album cover was a teddy bear sitting in the attic with its wrist cut and stuffing spread across the floor. They decided, in the end, to put all of the animals in instead.
The album was ranked #229 on Rolling Stone's list of The 500 Greatest Albums of All Time. "Walk This Way" and the album's title track are part of The Rock and Roll Hall of Fame's 500 Songs that Shaped Rock and Roll list.
For Aerosmith's previous album, 1974's Get Your Wings, the band began working with record producer Jack Douglas, who co-produced the album with Ray Colcord. In the liner notes to the 1993 reissue of Greatest Hits it was said by an unnamed member of the group that they "nailed" the album. At the beginning of 1975 the band started working at The Record Plant in New York City for the album that became Toys in the Attic. The sessions for Toys were produced by Douglas without Colcord - the album was engineered by Jay Messina with assistant engineers Rod O'Brien, Corky Stasiak and Dave Thoener. The songs for Toys were recorded with a Spectrasonics mixing board and a 16-track tape recorder. By this point, Aerosmith had fully matured as a band and Steven Tyler made sex the primary focus of his songwriting on the album.
Adam's Apple (foaled 1924 in Great Britain) was a thoroughbred racehorse best known for winning a British Classic, the 2000 Guineas Stakes. Sired by Pommern, the 1915 English Triple Crown champion, he was out of the mare, Mount Whistle. His damsire, William the Third, was a good runner who numbered among his wins the 1902 Ascot Gold Cup.
At age two, Adam's Apple won the Soltykoff Stakes at Newmarket Racecourse. He ran third in the 1926 Criterion Stakes at Newmarket Racecourse and third again in the New Stakes at Ascot Racecourse behind Sickle and the winner, Damon. He made four starts as a three-year-old, finishing off the board in three; however, he was ridden to victory by jockey Jack Leach in the 1927 2000 Guineas Stakes, defeating runner-up Call Boy (later the Epsom Derby winner), with Sickle third.
After his retirement from racing, Adam's Apple was sold to Argentine breeders. There he met with some success, siring the filly Chimentera, winner of the Las Oaks at Santiago Chile's Club Hipico de Santiago, and the very good filly La Bastille, likewise a winner of the Oaks but who also defeated her male counterparts in winning the El Derby at the Valparaiso Sporting Club racetrack at Vina del Mar, Chile.
Adam's Apple is the tenth album by post-bop jazz artist Wayne Shorter. Released in 1967, it included the first recording of his composition "Footprints", later recorded by the Miles Davis Quintet on the album Miles Smiles. The CD release includes the bonus track "The Collector", written by Herbie Hancock.
The Allmusic review by Stacia Proefrock states "it really does rank with the best of his output from this incredibly fertile period. From the first moments when Shorter's sax soars out in the eponymous opening track, with its warmth and roundness and power, it is hard not to like this album. It might not be turning as sharp of a corner stylistically as some of his earlier works, like Speak No Evil, but its impact is only dulled by the fact that Shorter has already arrived at the peak of his powers. Taken in isolation, this is one of the great works of mid-'60s jazz, but when Shorter has already achieved a unique performance style, compositional excellence, and a perfectly balanced relationship with his sidemen, it is hard to be impressed by the fact that he manages to continue to do these things album after album. But Shorter does shine here, while allowing strong players like Herbie Hancock to also have their place in the sun".
Roger Adam was a French aircraft designer and manufacturer who produced light aircraft in kit from 1948 to 1955. He established the firm Etablissements Aeronautiques R. Adam.
Adam is a fictional character; from the Ravenloft campaign setting for the Dungeons & Dragons fantasy role-playing game.
Adam was a major character in the 1994 novel, Mordenheim, written by Chet Williamson.
Adam is the darklord of Lamordia. Known as Mordenheim's Monster or the Creature, he is an extremely intelligent and nimble dread flesh golem, based on Mary Shelley's Frankenstein. Adam is the most successful creation of Dr. Victor Mordenheim in his research into the creation of life, albeit the one that causes him grief unmeasured. Adam reduced the doctor's wife Elise to a vegetative state and apparently murdered their adopted daughter Eva.
The two are inextricably bound together: Dr. Mordenheim has Adam's immortality, and in return Adam shares the doctor's anguish.
Usually hidden from sight, Adam is believed to spend most of his time on the Isle of Agony, part of the archipelago known as the Finger.
"Adam" is the fifth episode of the second series of British science fiction television series Torchwood, which was broadcast by BBC Two on 13 February 2008.
Torchwood encounter an alien, Adam, who has the ability of memory manipulation. By implanting false memories into each team member, making them believe they have known him for three years, Adam's manipulation changes the team dramatically: Gwen loses all memory of Rhys, Jack is haunted by memories of his lost brother Gray, from whom he was separated as a child on the Boeshane Peninsula, Toshiko has become more confident and believes that she and Adam are in love, and Owen has been manipulated into thinking he is more or less a geek in comparison to his actual self, and madly in love with Toshiko.
After reading his diary, Ianto becomes disturbed when he notices there is no mention of Adam. Adam confronts him and implants false memories into Ianto’s mind, leading Ianto to believe he is a serial killer. Jack returns to find Ianto deeply upset but refuses to believe that Ianto is a killer. The pair search Torchwood's files, discovering the truth after seeing footage of Adam implanting the memories into the team. Jack discovers that the team needs to take amnesia pills, to erase their memories of the past forty-eight hours. He gathers the team and asks each person to try to recall who they really are. Each member takes their pill, Owen looking at Tosh and giving a small smile.
Buy AumSum Merchandise: http://bit.ly/3srNDiG Website: https://www.aumsum.com Adam’s apple is basically a protruding chunk of thyroid cartilage that surrounds our larynx or voice box. It is more prominent in men because during puberty, the larynx tends to grow more in males, than it does in females, causing the cartilage to project outwards, thus creating Adam’s apple. Note that, this increase in size of larynx is what makes the men’s voice deeper!! But, what’s the need of deeper voices? In a research, it was found that during prehistoric times males had to fight for females. So, deeper voices allowed them to appear more intimidating and dominant, thus scaring their opponent away. Now, let’s see how this deep voice is produced. As the size of larynx is increased in males, the vocal fol...
The Adam's Apple is actually your thyroid cartilage. Everyone has one, but some have a more prominent notch than others. First Physicians Group Laryngologist Candace Hrelec, MD talks about the Adam's Apple and its purpose. To learn more visit smh.com/blog
The thyroid cartilage is commonly known as the adam’s apple. It is typically larger and more prominent in those born male as the angle between the ala of the cartilage is more acute. Many of those seeking gender affirming care inquire as to reducing the size of the adam’s apple. This goes by many names, including thyroid cartilage reduction, tracheal shave, and chondrolaryngoplasty, and may be performed by a facial plastic surgeon or a laryngologist (Dr. Courey, Mori, Kirke, Rosenberg, Gray, Sands). This is a relatively simple procedure whereby a small incision is made on the neck and the upper aspect of the thyroid ala removed on both sides. The procedure is typically outpatient, meaning patients go home the same day. When performed correctly, this procedure does not alter the pitch of th...
Experiencing pain over the Adam's Apple can be uncomfortable and concerning. In this video, we discuss the possible causes of this pain, including acute thyroiditis and epiglottitis, and when you should seek immediate medical attention. Get a deeper understanding of the symptoms and conditions related to the pain around your Adam's Apple and learn to recognize when professional care is necessary. For more detailed information, check out our guide at: https://www.buoyhealth.com/learn/pain-over-the-adams-apple To find out what might be causing this, take our Quiz at: https://www.buoyhealth.com/symptom-checker?symptom=adam%27s%20apple%20pain 🔔 Subscribe for tips, tricks, and peace of mind when it comes to your well-being: https://www.youtube.com/@buoyhealth?sub_confirmation=1 ✅ For Busin...
Full Playlist: https://www.youtube.com/playlist?list=PL8B23D9E681844EED - - Watch more How to Survive Puberty videos: http://www.howcast.com/videos/499545-How-Does-an-Adams-Apple-Develop-Puberty Have you noticed a lump in the middle of your throat growing during puberty? This is known as your Adam's apple, and if you want to feel it, you can take three fingers and put it on your middle of your throat and start to talk. When you feel something moving up and down and a little bit of vibrations, you've located your voice box, which is protected by growing cartilage, which forms your Adam's apple. This is more prominent in boys usually, but girls can experience it too. You may notice it, and you may not. The cartilage actually grows during puberty when the hormones get released in your bo...
Chondrolaryngoplasty, or Adam's Apple Removal, is an important step in the transition from Male to Female Gender. In this procedure, the prominence of the thyroid cartilage is carefully removed.
GET THE EP HERE - http://bit.ly/DISSTRACKTIONSITUNES Twitter: https://twitter.com/KSIOlajidebt Instagram: https://www.instagram.com/ksi Beat by: https://twitter.com/_ZAzad Directed and Edited by: @PimpJuiceK
=͟͟͞♡ — benefits ◉ 📌 ─────────────────────────────────────── ⠀ ⠀੭﹕𝙞𝙡𝙚𝙩𝙞𝙨𝙞𝙢 ̊ ̟ ꒷꒦ 💬 instagram: felic1tysub gmail: [email protected] 🗳️ Öneri Kutusu | Suggestion Box https://surveyheart.com/form/660023fac542af6405b20294 🔗 Diğer Kanallar ➜ Carbon Copy https://youtube.com/@felic1tycopies?si=F8OnW45OrpXwux7G ➜ V u c u t https://youtube.com/@felic1ty-figure?feature=shared ⊂⊃ Subliminaller Hakkında https://docs.google.com/document/d/1YWqWLJDxv1a6T82_A3fp7n3rsohqnlYBVPvzXmcICPA/edit?usp=drivesdk ─────────────────────────────────────── by felic1ty 𝘵𝘢𝘨𝘴 | ignore #subliminal #777 #felic1ty
Find out why men have Adam's Apples and women don't.
Toys in the Attic is the third studio album by American rock band Aerosmith, released in April 1975 by Columbia Records. Its first single release, "Sweet Emotion", was released a month later on May 19 and "Walk This Way" was later released on August 28 in the same year. The album is their most commercially successful studio LP in the US, with eight million copies sold, according to the RIAA.
Steven Tyler said that his original idea for the album cover was a teddy bear sitting in the attic with its wrist cut and stuffing spread across the floor. They decided, in the end, to put all of the animals in instead.
The album was ranked #229 on Rolling Stone's list of The 500 Greatest Albums of All Time. "Walk This Way" and the album's title track are part of The Rock and Roll Hall of Fame's 500 Songs that Shaped Rock and Roll list.
For Aerosmith's previous album, 1974's Get Your Wings, the band began working with record producer Jack Douglas, who co-produced the album with Ray Colcord. In the liner notes to the 1993 reissue of Greatest Hits it was said by an unnamed member of the group that they "nailed" the album. At the beginning of 1975 the band started working at The Record Plant in New York City for the album that became Toys in the Attic. The sessions for Toys were produced by Douglas without Colcord - the album was engineered by Jay Messina with assistant engineers Rod O'Brien, Corky Stasiak and Dave Thoener. The songs for Toys were recorded with a Spectrasonics mixing board and a 16-track tape recorder. By this point, Aerosmith had fully matured as a band and Steven Tyler made sex the primary focus of his songwriting on the album.
back when Cain was able
way before the stable
lighting struck right down from the sky
a mother ship with fate said let's give it a try
conscience was related
man he was created
lady luck took him by surprise
a sweet and bitter fruit
it surely opened his eyes
well she ate it
lordy it was love at first bite
well she ate it
never knowin wrong from right
even Eve in Eden
voices tried deceiving
with lies that showed the lady the way
at first she stopped turned and tried to walk away
man he was believer
lady was deceiver
so the story goes but you see
that snake was he
she just climbed right up his tree
evil came like rainin'
who knows who's to blamin'
something tried to lay her to waste