- published: 27 Dec 2012
- views: 7828212
'+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; })); }); -->
Kaori Asada (浅田 香織, Asada Kaori, born 16 April 1973), known by her stage name Bonnie Pink, is a Japanese singer-songwriter and musician. She speaks English, Japanese, Korean and Chinese (many of her songs are entirely in Japanese). She writes and composes all her songs, and plays guitar and piano. Asada has said that the name Bonnie Pink is random and has no special meaning; she chose it because it was easy to remember and because she thought the words were cute together.
Bonnie Pink debuted in 1995 with the single "Orenji", under her real name, Asada Kaori. Her first album, Blue Jam, was released that same year under the Pony Canyon record label. She described it as a "mixture of bitter honey, blues music, momentary silence, irresistible madness, teardrops, sour grapes, hopeful bombs, big big love, and a few green apples" in the jacket. It introduced her unique style of music that has been defined as an off-beat mix between jazz, blues, pop, and rock. The next year she met Tore Johansson, Swedish producer for The Cardigans, who became her good friend and produced much of her work. The song "It's Gonna Rain!" was the fifth ending of the popular Rurouni Kenshin anime. She wrote her third album, Evil & Flowers (1998), while in isolation in the Swedish countryside. She hoped to find inspiration there, but became depressed. She put her feelings of frustration into the songs. She went to New York alone to take a vacation and to study music after having released her third album in 1998. She went back in 1999 and contracted with Warner Music Japan.
Rise and Shine may refer to:
Raffi Cavoukian, CM OBC (Armenian: Րաֆֆի, born 8 July 1948), better known by his mononym Raffi, is an Egyptian-born Canadian singer-songwriter and author best known for his children's music. He has developed his career as a "global troubadour", to become a music producer, author, entrepreneur, and founder of the Centre for Child Honouring, a vision for global restoration.
Born in Cairo, Egypt, to Armenian parents, he spent his early years in Egypt before immigrating with his family to Canada in 1958, eventually settling in Toronto, Ontario. His mother named him after the Armenian poet Raffi. His father Arto Cavoukian was a well-known portrait photographer with a studio on Bloor Street in Toronto. His older brother Onnig Cavoukian, known as "Cavouk", is also a famous portrait photographer. His younger sister is Ann Cavoukian, Ontario's former Information and Privacy Commissioner. His parents died within 12 hours of each other, his mother dying first, of abdominal cancer.
Rise and Shine is the sixth studio album by The Adicts. It was originally released by Captain Oi! Records on March 25, 2002, and was their first album released in over 10n years. It was reissued by SOS Records in 2006 with two new bonus tracks.
All songs by The Adicts unless otherwise noted
Thanks for the amazing amount of veiws. I have written some words and posted my favorite comments from the last two years her: http://evenodegard.com/blog/riseandshine/ The clips are from variouse videos I have found on internet. The London ones are from a nike comercial for London Olympics. Voice and soundtrack is made by www.redproductions.com, check them out. Have a great day A motivational video. Be the best you you can be.
Provided to YouTube by Universal Music Group Rise and Shine · J. Cole Cole World: The Sideline Story ℗ 2011 Cole World/Interscope Records Released on: 2011-09-27 Producer: J. Cole Composer Lyricist: Jermaine Cole Composer Lyricist: Greg Dykes Auto-generated by YouTube.
Want inspiration check out this incredible swimming magazine https://swimswam.com/magazine/ Inspirational Swimming Video Featuring Michael Phelps, Ryan Lochte, Ian Thorpe, Cesar Cielo, Alain Bernard, James Magnusson, Nathan Adrian. I hated every minute of training, but I said, "Don't quit. Suffer now and live the rest of your life as a champion." "Rise and shine. 6am and your hand can't make it to the alarm clock before the voices in your head start telling you that it's too early, too dark, and too cold to get out of a bed. Aching muscles lie still in rebellion, pretending not to hear your brain commanding them to move A legion of voices are shouting their unanimous permission for you to hit the snooze button and go back to dreamland, but you didn't ask their opinion. The voice y...
Upload by RasDashanSound www.youtube.com/user/RasDashanSound
Deorro - Rise and Shine (Official Video) Deorro - Rise and Shine From Ultra Music on Deorro's Debut Album "Good Evening"! http://smarturl.it/Good.Evening Written and composed by Erick Orrosquieta Vocals by Rue Bradley Produced by Deorro Follow Us: https://www.youtube.com/user/UltraRecords/?sub_confirmation=1 https://www.ultramusic.com https://www.twitter.com/ultrarecords https://www.facebook.com/ultramusic https://www.youtube.com/ultratv https://instagram.com/ultrarecords https://soundcloud.com/ultrarecords https://open.spotify.com/user/ultramusicofficial Ultra Music is an American independent electronic music record label based in New York City. Ultra's current roster includes Benny Benassi, Steve Aoki, Kygo, OMI, Deorro, The Bloody Beetroots, Lil Jon, Above & Beyond, Hot Since 82, Pa...
Checkout 👓 20/20 Vision Mastermind - https://iam.addicted2success.com/2020Vision Join The VIP Waitlist To Be A Pilot Member! - LAUNCHING IN JANUARY 2020 "Rise and shine. 6am and your hand can't make it to the alarm clock before the voices in your head start telling you that it's too early, too dark, and too cold to get out of a bed. Aching muscles lie still in rebellion, pretending not to hear your brain commanding them to move A legion of voices are shouting their unanimous permission for you to hit the snooze button and go back to dreamland, but you didn't ask their opinion. The voice you've chosen to listen to is one of defiance. A voice that's says there was a reason you set that alarm in the first place. So sit up, put your feet on the floor, and don't look back because we've go...
Song: Deorro - Rise And Shine https://youtu.be/qQOwu2UTX5Y Original Meme: https://youtu.be/G1Ml0L_8PkQ My Discord Server: https://discord.gg/GCJhezM All credit goes to the original owners! When you decide to use this song give credit to the original owner(s)! Any copyright issues? Let me know in the comments! And I'll try to remove as quick as possible! Wanna be featured in next video? Leave a suggestion in the comments and you might be shout outed in my next video! Program(s) used: Avee Player YouTube Converter Thanks for watching and enjoy your day! ©️ Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copy...
This video was requested recently by a fan of Dr. Jean. Let us know if you have a favorite Dr. Jean song we might convert to a YouTube video. Dr. Jean has more than 400 songs on iTunes and Amazon. Here is a link to the CD All Day Long which contains the Rise and Shine song along with many other Dr. Jean favorites. How much fun can you have singing songs and moving with the music? Give it a try and find out. Learning that involves repetition and rhythm may help improve literacy, too. Dr. Jean also sings, "The Banana Dance," a popular YouTube song about avocados, oranges and guacamole. Has anyone ever told you that you “can’t sing”? I’ve been told that myself many times. That’s the great thing about children. They don’t know you can’t sing if you put a smile on your face and act enth...
The More We Get Together, You Gotta Sing, Six Little Ducks, Bumpin' Up And Down, Baa Baa Black Sheep, I've Been Working On the Railroad, Peanut Butter Sandwich, Brush Your Teeth, Y A Un Rat, Mr. Sun, Wheels On the Bush, Corner Grocery Store, Something In
Subscribe: Rans Animation Studio: https://www.youtube.com/channel/UCve6h-PGCFKAMh1oGuzJS3Q Rans FC: https://www.youtube.com/channel/UCPV5QenBD86klGZgOjWrZPA Rans Music: https://www.youtube.com/channel/UCJDPkq7IJcjEODge3vMcNng PowerRansger: https://www.youtube.com/channel/UCCFiS17fEvt7UmAV6okAmfA RANS di Vidio : https://www.vidio.com/@rans.entertainment Social Media : Twitter : https://twitter.com/raffi_nagita17 Instagram : https://www.instagram.com/raffinagita1717/ Youtube : https://www.youtube.com/channel/UCvA9_f5Lwk-poMynabtrZPg LINE : Raffi Ahmad Official Account Facebook : https://www.facebook.com/RaffiAhmadLagi/ Tiktok : https://www.tiktok.com/@raffi_nagita ——————————————————————— Contact : [email protected] ————————————————————————
The classic 1988 live performance of "Baby Beluga," from the DVD 'Raffi in Concert with the Rise & Shine Band.' Buy it on Amazon: http://smarturl.it/RaffiInConcertDVD https://www.raffinews.com/
FOLLOW INSTAGRAM TAULANY TV : https://www.instagram.com/taulany_tv/ taulany tv adalah channel yang sangat menghibur, serta ada berbagai karakter yang di mainkan oleh komedian ternama Andre Taulany,...yuk di tonton videonya sampai habis...sama sama bangun channel ini untuk menjadi channel yang bisa menghibur serta membuat kehidupan ini jauh lebih kocak... jangan lupa di like subscribe dan comment,...share juga kepada orang terdekat kalian.
Tonton full episode sinetron SCTV klik http://bit.ly/fullepsSCTV Raffi Ahmad dan Rizky Billar Tanding Pimpong! Siapa Yang Menang? | Hot Shot Follow media sosial SCTV lainnya! Instagram : https://www.instagram.com/sctv Facebook : https://www.facebook.com/SCTV Twitter : https://twitter.com/SCTV
RAFFI AND MAHEENA | INTERVIEW | CHOYCH CHOYCH POWAM | GINGER MEDIA English cafe ,WhatsApp ലൂടെ ഇംഗ്ലീഷ് പഠിക്കാം ,കൂടുതൽ വിവരങ്ങൾക് ഇവിടെ click ചെയ്യൂ https://wa.me/917736603851 Connect with us on: ♦ YouTube : http://bit.ly/3sCc3oP ♦ Facebook : http://bit.ly/3dWdfzj This Video is Copyright Protected. * ANTI-PIRACY WARNING * This content is Copyright to GingerMedia Entertainments Pvt Ltd India. Any unauthorized reproduction, redistribution or re-upload is strictly prohibited of this material. Legal action will be taken against those who violate the copyright of the following material presented!
Kaori Asada (浅田 香織, Asada Kaori, born 16 April 1973), known by her stage name Bonnie Pink, is a Japanese singer-songwriter and musician. She speaks English, Japanese, Korean and Chinese (many of her songs are entirely in Japanese). She writes and composes all her songs, and plays guitar and piano. Asada has said that the name Bonnie Pink is random and has no special meaning; she chose it because it was easy to remember and because she thought the words were cute together.
Bonnie Pink debuted in 1995 with the single "Orenji", under her real name, Asada Kaori. Her first album, Blue Jam, was released that same year under the Pony Canyon record label. She described it as a "mixture of bitter honey, blues music, momentary silence, irresistible madness, teardrops, sour grapes, hopeful bombs, big big love, and a few green apples" in the jacket. It introduced her unique style of music that has been defined as an off-beat mix between jazz, blues, pop, and rock. The next year she met Tore Johansson, Swedish producer for The Cardigans, who became her good friend and produced much of her work. The song "It's Gonna Rain!" was the fifth ending of the popular Rurouni Kenshin anime. She wrote her third album, Evil & Flowers (1998), while in isolation in the Swedish countryside. She hoped to find inspiration there, but became depressed. She put her feelings of frustration into the songs. She went to New York alone to take a vacation and to study music after having released her third album in 1998. She went back in 1999 and contracted with Warner Music Japan.
Aijou kata no kimi no mikeneko
Mado garasu ni motarete
Hateshinaku hiroi sekai wo
Shiru sube mo nai tte sa
Koko ni iru yo
Koko ni iru yo
Koko ni iru yo
I'm here sakenda tte
Arasoi wa taenai rashii
Hey, I'm going back to sleep
Warubirete abita osake ni
Sukuwareru wake wa naku
Jikoken'o no asa wo mukaete nao
Watashi no kami wo nadeta
Machigatte iru yo
Machigatte iru yo
Machigatte iru yo
You're wrong nageita tte
Isakai wa taenai rashii
Hey, let's go back to sleep
Sleep, baby
Toru ni tayoranai chiisai koto mo
Te ni oenai ookina koto mo
Naru you ni shika naranai no sa
Asu wo yume miru tame ni nemurou
Nemuranakya negaeri wa utenai yo
Hontou ni yuruganai hidamari ni kaerou