'+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; })); }); -->

Podcasts:

2002

ALBUMS

  • Anne-Marie - 2002 (Lyrics)

    Anne-Marie - 2002 (Lyrics) ✖ Follow me on Instagram for awesome pictures: https://instagram.com/unique_vibes_official/ ✖ Follow my Spotify playlist: https://open.spotify.com/user/2qbbpjmv4ce9t5etpucu8pbkk/playlist/3RlWZ8rqCBPtWDZ92OFpCh ► Subscribe: https://youtube.com/c/UniqueVibesMusic ► Soundcloud: https://soundcloud.com/unique_vibes ► Instagram: https://instagram.com/unique_vibes_official/ Download: http://au.gt/2002 ► Anne-Marie https://www.facebook.com/iamannemarie/ https://www.instagram.com/annemarieiam/ https://twitter.com/annemarieiam?lang=de [Verse 1] I will always remember the day you kissed me lips Light as a feather And it went just like this No, it's never been better Than the summer of 2002 We were only eleven But acting like grownups Like we are in the present, drinki...

    published: 20 Apr 2018
  • Anne-Marie - 2002 [Official Video]

    The new album 'UNHEALTHY' OUT NOW: https://anne-marie.lnk.to/Unhealthy Listen to 'UNHEALTHY' feat. Shania Twain: https://anne-marie.lnk.to/Unhealthy-Single/ Check out the Anne-Marie – Top Songs Video Playlist! https://lnk.to/AMTopSongs Subscribe to Anne-Marie’s channel for all the latest official music videos, official audio, albums and more! https://lnk.to/AMSubscribe Get your Anne-Marie merchandise here! https://smarturl.it/anne-marie.store Follow Anne-Marie http://iamannemarie.com http://www.facebook.com/iamannemarie http://twitter.com/AnneMarie https://instagram.com/annemarie About Anne-Marie: Anne-Marie has proved to be one of the UK’s most exciting and successful British breakthrough popstars of recent years. A former 3x world karate champion and West End child star-turned ...

    published: 08 May 2018
  • Anne-Marie - 2002 (Lyrics/Vietsub)

    Anne-Marie - 2002 (Lyrics/Vietsub) Anne-Marie - 2002 (Lyrics/Vietsub) Anne-Marie - 2002 (Lyrics/Vietsub) #anne #2002 #annemarie ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 🎹 Mỗi ngày chúng tôi đều cập nhật danh sách phát các bài hát tình yêu lãng mạn, các bài hát disco cho các bạn đăng ký của tôi. 🔔 Mọi người like, subscribe và nhấn chuông thông báo để ủng hộ mình nhé! ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ◢ Để liên hệ và gửi nhạc: ►Tất cả các quyền thuộc về chủ sở hữu tương ứng của họ. ✔ Video này đã được cấp phép đặc biệt trực tiếp từ các nghệ sĩ và chủ sở hữu quyền. ◢ Cảm ơn đã xem 🧡 Đừng quên Đăng ký, Bình luận, Chia sẻ và Thích (Youtube, Facebook, Twitter, v.v.)

    published: 08 Sep 2021
  • Anne-Marie & Ed Sheeran – 2002 [Official Acoustic Video]

    The official acoustic music video for Anne-Marie & @EdSheeran – 2002 watch the official video here - https://www.youtube.com/watch?v=Il-an3K9pjg 2002 is taken from Anne-Marie's debut studio album Speak Your Mind released in 2018, which featured the singles Alarm, Ciao Adios, Heavy, Then, Friends 2002 & Perfect To Me. Subscribe to the Anne-Marie's channel for all the best and latest official music videos, behind the scenes and live performances here - http://bit.ly/1FciNcA Listen to more from the album Speak Your Mind: https://www.youtube.com/playlist?list=OLAK5uy_lluGR30cpjJE51wo0AaYaucx7SHl-Yxp8 Get Speak Your Mind the debut album http://ad.gt/speakyourmind See more official videos from Anne-Marie here: https://www.youtube.com/watch?v=qjQjxpnwVZw&list=PLgzgA64MLAflH_RyIf8Q3CDtIVaX...

    published: 12 Jul 2018
  • Anne-Marie - 2002 (Live At Brighton Music Hall 2018)

    Anne-Marie performing 2002 live At Brighton Music Hall, 2018. watch the official video for 2002 here - https://www.youtube.com/watch?v=Il-an3K9pjg 2002 is taken from Anne-Marie's debut studio album Speak Your Mind released in 2018, which featured the singles Alarm, Ciao Adios, Heavy, Then, Friends 2002 & Perfect To Me. Subscribe to the Anne-Marie's channel for all the best and latest official music videos, behind the scenes and live performances here - http://bit.ly/1FciNcA Listen to more from the album Speak Your Mind: https://www.youtube.com/playlist?list=OLAK5uy_lluGR30cpjJE51wo0AaYaucx7SHl-Yxp8 Get Speak Your Mind the debut album http://ad.gt/speakyourmind See more official videos from Anne-Marie here: https://www.youtube.com/watch?v=qjQjxpnwVZw&list=PLgzgA64MLAflH_RyIf8Q3CDtIV...

    published: 09 Oct 2018
  • Anne Marie - 2002 (Lyrics)

    @annemarie #annemarie #2002 #redwithroselyrics 🎶Anne Marie - 2002 Lyrics 📌Don't Forget to Subscribe For More @REDWITHROSE ⭕Follow Anne Marie ⚫Spotify - https://open.spotify.com/artist/1zNqDE7qDGCsyzJwohVaoX?si=KL1w62MqTdiH_-xbMq1nwQ ⚫IG - https://www.instagram.com/annemarieiam/ ⚫FB - https://www.facebook.com/iamannemarie/ ⚫TW - https://twitter.com/AnneMarie ⭕Stream - https://youtu.be/Il-an3K9pjg?si=Lcuf48htz7IDNo_B ⭕Lyrics - 2002 [Verse 1] I will always remember The day you kissed my lips Light as a feather And it went just like this No, it's never been better than the summer Of 2002 (Ooh) [Verse 2] We were only eleven But acting like grown-ups Like we are in the present Drinking from plastic cups Singing, "Love is forever and ever" Well, I guess that was true (Ooh) [Pre-C...

    published: 19 Dec 2023
  • Anne-Marie's '2002' | Blind Auditions | The Voice UK 2021

    Anne-Marie performs her hit single '2002' in week 1 of The Voice UK 2021 Blind Auditions! Watch Full Episodes on The ITV Hub: http://entslink.itv.com/38Fg5pp Subscribe, like and watch more: http://bit.ly/2jmXcPt Website: http://bit.ly/2hwvvll Facebook: http://bit.ly/2iuiAyQ Twitter: http://bit.ly/2ht0H1r Instagram: http://bit.ly/2iIEy0q Download The Voice UK's free app for exclusive previews and news: iOS: http://apple.co/2hzvKxq Android: https://link.itv.com/android Get all the latest from The Voice UK YouTube channel, news, gossip and videos with superstar Coaches will.i.am, Anne-Marie, Olly Murs and Sir Tom Jones. http://www.itv.com http://www.stv.tv #TheVoiceUK

    published: 02 Jan 2021
  • PCARMARKET Auction: 2002 Porsche 996 Turbo

    Porsche Online Marketplace

    published: 17 Sep 2024
  • Anne-Marie - 2002 (Glastonbury 2019)

    Anne-Marie performs 2002 at Glastonbury 2019. Watch Anne-Marie's 2009 Glastonbury set on demand on BBC iPlayer: https://www.bbc.co.uk/programmes/p07df1h1 Watch Glastonbury performances from throughout the years on BBC iPlayer: https://www.bbc.co.uk/iplayer/episodes/b007r6vx/glastonbury Listen and download your favourite Glastonbury sets on BBC Sounds: https://www.bbc.co.uk/sounds/brand/b007r6vx Dig deep in to performances, articles, photos and more at: https://www.bbc.co.uk/glastonbury Follow all the action via @bbcglasto https://twitter.com/bbcglasto

    published: 29 Jun 2019
Anne-Marie - 2002 (Lyrics)
3:08

Anne-Marie - 2002 (Lyrics)

  • Order:
  • Duration: 3:08
  • Uploaded Date: 20 Apr 2018
  • views: 283479958
Anne-Marie - 2002 (Lyrics) ✖ Follow me on Instagram for awesome pictures: https://instagram.com/unique_vibes_official/ ✖ Follow my Spotify playlist: https://open.spotify.com/user/2qbbpjmv4ce9t5etpucu8pbkk/playlist/3RlWZ8rqCBPtWDZ92OFpCh ► Subscribe: https://youtube.com/c/UniqueVibesMusic ► Soundcloud: https://soundcloud.com/unique_vibes ► Instagram: https://instagram.com/unique_vibes_official/ Download: http://au.gt/2002 ► Anne-Marie https://www.facebook.com/iamannemarie/ https://www.instagram.com/annemarieiam/ https://twitter.com/annemarieiam?lang=de [Verse 1] I will always remember the day you kissed me lips Light as a feather And it went just like this No, it's never been better Than the summer of 2002 We were only eleven But acting like grownups Like we are in the present, drinking from plastic cups Singing love is forever and ever Well, I guess that was true [Pre-Chorus] Dancing on the hood in the middle of the woods Of an old Mustang, where we sang Songs with all our childhoods friends And it went like this, yeah [Chorus] Oops I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time Paint a picture for you and me Of the days when we were young Singing at the top of both our lungs [Verse 2] Now we're under the covers Fast forward to eighteen We are more than lovers Yeah, we are all we need When we're holding each other I'm taken back to 2002 [Pre-Chorus] Dancing on the hood in the middle of the woods Of an old Mustang, where we sang Songs with all our childhoods friends And it went like this, yeah [Chorus] Oops I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time Paint a picture for you and me Of the days when we were young Singing at the top of both our lungs On the day we fell in love On the day we fell in love [Pre-Chorus] Dancing on the hood in the middle of the woods Of an old Mustang, where we sang Songs with all our childhoods friends Oh, now [Chorus] Oops I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time Paint a picture for you and me Of the days when we were young Singing at the top of both our lungs On the day we fell in love On the day we fell in love On the day we fell in love On the day we fell in love, love, love #anne #2002 #annemarie Wallpaper: unsplash.com Art: https://society6.com/uniquevibes I don't own the music in this video. Please contact the artist/label if you want to use it. If you need a song removed from my channel, please contact me here: uniquevibesofficial@gmail.com
https://wn.com/Anne_Marie_2002_(Lyrics)
Anne-Marie - 2002 [Official Video]
3:15

Anne-Marie - 2002 [Official Video]

  • Order:
  • Duration: 3:15
  • Uploaded Date: 08 May 2018
  • views: 953098187
The new album 'UNHEALTHY' OUT NOW: https://anne-marie.lnk.to/Unhealthy Listen to 'UNHEALTHY' feat. Shania Twain: https://anne-marie.lnk.to/Unhealthy-Single/ Check out the Anne-Marie – Top Songs Video Playlist! https://lnk.to/AMTopSongs Subscribe to Anne-Marie’s channel for all the latest official music videos, official audio, albums and more! https://lnk.to/AMSubscribe Get your Anne-Marie merchandise here! https://smarturl.it/anne-marie.store Follow Anne-Marie http://iamannemarie.com http://www.facebook.com/iamannemarie http://twitter.com/AnneMarie https://instagram.com/annemarie About Anne-Marie: Anne-Marie has proved to be one of the UK’s most exciting and successful British breakthrough popstars of recent years. A former 3x world karate champion and West End child star-turned 9x BRIT Award nominee, A-M’s rise has been nothing short of meteoric. In 2018 Anne-Marie released her debut album, ‘Speak Your Mind’ which featured the hit singles 'Alarm', 'Ciao Adios', 'Heavy', 'Friends', '2002' and 'Perfect to Me'. She subsequently ended that year as as the UK’s biggest-selling debut artist, selling out headline shows and playing stadium dates supporting long-time friend and champion Ed Sheeran in the process. She has also sang on and co-written many other hits such as Birthday, Rockabye, Don't Leave Me Alone, To Be Young, f*ck, i'm lonely and Don't Play, collaborating with the likes of Clean Bandit, Marshmello, David Guetta, Lauv, Rudimental, Doja Cat and KSI, as well as starring on The Greatest Showman: Reimagined soundtrack performing Rewrite the stars alongside James Arthur. #AnneMarie #Unhealthy #AM3
https://wn.com/Anne_Marie_2002_Official_Video
Anne-Marie - 2002 (Lyrics/Vietsub)
3:08

Anne-Marie - 2002 (Lyrics/Vietsub)

  • Order:
  • Duration: 3:08
  • Uploaded Date: 08 Sep 2021
  • views: 7255716
Anne-Marie - 2002 (Lyrics/Vietsub) Anne-Marie - 2002 (Lyrics/Vietsub) Anne-Marie - 2002 (Lyrics/Vietsub) #anne #2002 #annemarie ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 🎹 Mỗi ngày chúng tôi đều cập nhật danh sách phát các bài hát tình yêu lãng mạn, các bài hát disco cho các bạn đăng ký của tôi. 🔔 Mọi người like, subscribe và nhấn chuông thông báo để ủng hộ mình nhé! ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ◢ Để liên hệ và gửi nhạc: ►Tất cả các quyền thuộc về chủ sở hữu tương ứng của họ. ✔ Video này đã được cấp phép đặc biệt trực tiếp từ các nghệ sĩ và chủ sở hữu quyền. ◢ Cảm ơn đã xem 🧡 Đừng quên Đăng ký, Bình luận, Chia sẻ và Thích (Youtube, Facebook, Twitter, v.v.)
https://wn.com/Anne_Marie_2002_(Lyrics_Vietsub)
Anne-Marie & Ed Sheeran – 2002 [Official Acoustic Video]
3:26

Anne-Marie & Ed Sheeran – 2002 [Official Acoustic Video]

  • Order:
  • Duration: 3:26
  • Uploaded Date: 12 Jul 2018
  • views: 148884405
The official acoustic music video for Anne-Marie & @EdSheeran – 2002 watch the official video here - https://www.youtube.com/watch?v=Il-an3K9pjg 2002 is taken from Anne-Marie's debut studio album Speak Your Mind released in 2018, which featured the singles Alarm, Ciao Adios, Heavy, Then, Friends 2002 & Perfect To Me. Subscribe to the Anne-Marie's channel for all the best and latest official music videos, behind the scenes and live performances here - http://bit.ly/1FciNcA Listen to more from the album Speak Your Mind: https://www.youtube.com/playlist?list=OLAK5uy_lluGR30cpjJE51wo0AaYaucx7SHl-Yxp8 Get Speak Your Mind the debut album http://ad.gt/speakyourmind See more official videos from Anne-Marie here: https://www.youtube.com/watch?v=qjQjxpnwVZw&list=PLgzgA64MLAflH_RyIf8Q3CDtIVaXUuwS_ Follow Anne-Marie: Official Website- http://iamannemarie.com Facebook- http://www.facebook.com/iamannemarie Twitter- http://twitter.com/AnneMarie Instagram- https://instagram.com/annemarie Video by Will Beach @willbeach__ Lyrics: I will always remember The day you kissed my lips Light as a feather And it went just like this No, it's never been better Than the summer of 2002 (ooh) Uh, we were only 11 But acting like grown-ups Like we are in the present Drinking from plastic cups Singing, "Love is forever and ever" Well, I guess that was true Dancing on the hood in the middle of the woods On an old Mustang, where we sang Songs with all our childhood friends And it went like this, say I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time, uh Paint a picture for you and me On the days when we were young, uh Singing at the top of both our lungs Now we're under the covers Fast forward to eighteen We are more than lovers Yeah, we are all we need When we're holding each other I'm taken back to 2002 (ooh) Yeah Dancing on the hood in the middle of the woods On an old Mustang, where we sang Songs with all our childhood friends And it went like this, say I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time, uh Paint a picture for you and me On the days when we were young, uh Singing at the top of both our lungs On the day we fell in love Ooh ooh, ooh ooh On the day we fell in love Ooh ooh, ooh ooh Dancing on the hood in the middle of the woods On an old Mustang, where we sang Songs with all our childhood friends Oh, now I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time Paint a picture for you and me On the days when we were young, uh Singing at the top of both our lungs On the day we fell in love Ooh ooh, ooh ooh On the day we fell in love Ooh ooh, ooh ooh On the day we fell in love Ooh ooh, ooh ooh On the day we fell in love Ooh ooh, ooh ooh On the day we fell in love, love, love About Anne-Marie: Anne-Marie has proved to be one of the UK’s most exciting and successful British breakthrough popstars of recent years. A former 3x world karate champion and West End child star-turned 9x BRIT Award nominee, A-M’s rise has been nothing short of meteoric. In 2018 Anne-Marie released her debut album, ‘Speak Your Mind’ which featured the hit singles 'Alarm', 'Ciao Adios', 'Heavy', 'Friends', '2002' and 'Perfect to Me'. She subsequently ended that year as as the UK’s biggest-selling debut artist, selling out headline shows and playing stadium dates supporting long-time friend and champion Ed Sheeran in the process. She has also sang on and co-written many other hits such as Birthday, Rockabye, Don't Leave Me Alone, To Be Young, f*ck, i'm lonely and Don't Play, collaborating with the likes of Clean Bandit, Marshmello, David Guetta, Lauv, Rudimental, Doja Cat and KSI, as well as starring on The Greatest Showman: Reimagined soundtrack performing Rewrite the stars alongside James Arthur. #AnneMarie #EdSheeran #2002
https://wn.com/Anne_Marie_Ed_Sheeran_–_2002_Official_Acoustic_Video
Anne-Marie - 2002 (Live At Brighton Music Hall 2018)
3:21

Anne-Marie - 2002 (Live At Brighton Music Hall 2018)

  • Order:
  • Duration: 3:21
  • Uploaded Date: 09 Oct 2018
  • views: 194535106
Anne-Marie performing 2002 live At Brighton Music Hall, 2018. watch the official video for 2002 here - https://www.youtube.com/watch?v=Il-an3K9pjg 2002 is taken from Anne-Marie's debut studio album Speak Your Mind released in 2018, which featured the singles Alarm, Ciao Adios, Heavy, Then, Friends 2002 & Perfect To Me. Subscribe to the Anne-Marie's channel for all the best and latest official music videos, behind the scenes and live performances here - http://bit.ly/1FciNcA Listen to more from the album Speak Your Mind: https://www.youtube.com/playlist?list=OLAK5uy_lluGR30cpjJE51wo0AaYaucx7SHl-Yxp8 Get Speak Your Mind the debut album http://ad.gt/speakyourmind See more official videos from Anne-Marie here: https://www.youtube.com/watch?v=qjQjxpnwVZw&list=PLgzgA64MLAflH_RyIf8Q3CDtIVaXUuwS_ Follow Anne-Marie: Official Website- http://iamannemarie.com Facebook- http://www.facebook.com/iamannemarie Twitter- http://twitter.com/AnneMarie Instagram- https://instagram.com/annemarie About Anne-Marie: Anne-Marie has proved to be one of the UK’s most exciting and successful British breakthrough popstars of recent years. A former 3x world karate champion and West End child star-turned 9x BRIT Award nominee, A-M’s rise has been nothing short of meteoric. In 2018 Anne-Marie released her debut album, ‘Speak Your Mind’ which featured the hit singles 'Alarm', 'Ciao Adios', 'Heavy', 'Friends', '2002' and 'Perfect to Me'. She subsequently ended that year as as the UK’s biggest-selling debut artist, selling out headline shows and playing stadium dates supporting long-time friend and champion Ed Sheeran in the process. She has also sang on and co-written many other hits such as Birthday, Rockabye, Don't Leave Me Alone, To Be Young, f*ck, i'm lonely and Don't Play, collaborating with the likes of Clean Bandit, Marshmello, David Guetta, Lauv, Rudimental, Doja Cat and KSI, as well as starring on The Greatest Showman: Reimagined soundtrack performing Rewrite the stars alongside James Arthur. #AnneMarie #2002 #AnneMarieLive
https://wn.com/Anne_Marie_2002_(Live_At_Brighton_Music_Hall_2018)
Anne Marie - 2002 (Lyrics)
3:09

Anne Marie - 2002 (Lyrics)

  • Order:
  • Duration: 3:09
  • Uploaded Date: 19 Dec 2023
  • views: 1288499
@annemarie #annemarie #2002 #redwithroselyrics 🎶Anne Marie - 2002 Lyrics 📌Don't Forget to Subscribe For More @REDWITHROSE ⭕Follow Anne Marie ⚫Spotify - https://open.spotify.com/artist/1zNqDE7qDGCsyzJwohVaoX?si=KL1w62MqTdiH_-xbMq1nwQ ⚫IG - https://www.instagram.com/annemarieiam/ ⚫FB - https://www.facebook.com/iamannemarie/ ⚫TW - https://twitter.com/AnneMarie ⭕Stream - https://youtu.be/Il-an3K9pjg?si=Lcuf48htz7IDNo_B ⭕Lyrics - 2002 [Verse 1] I will always remember The day you kissed my lips Light as a feather And it went just like this No, it's never been better than the summer Of 2002 (Ooh) [Verse 2] We were only eleven But acting like grown-ups Like we are in the present Drinking from plastic cups Singing, "Love is forever and ever" Well, I guess that was true (Ooh) [Pre-Chorus] Dancin' on the hood in the middle of the woods On an old Mustang where we sang Songs with all our childhood friends And it went like this, say [Chorus] Oops, I got 99 problems, singin' "bye, bye, bye" Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time, uh Paint a picture for you and me On the days when we were young, uh Singin' at the top of both our lungs [Verse 3] Now we're under the covers Fast forward to eighteen We are more than lovers Yeah, we are all we need When we're holdin' each other I'm taken back to 2002 (Ooh) Yeah [Pre-Chorus] Dancin' on the hood in the middle of the woods On an old Mustang where we sang Songs with all our childhood friends And it went like this, say [Chorus] Oops, I got 99 problems, singin' "bye, bye, bye" Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time, uh Paint a picture for you and me On the days when we were young, uh Singin' at the top of both our lungs On the day we fell in love [Post-Chorus] Ooh, ooh On the day we fell in love Ooh, ooh [Bridge] Dancin' on the hood in the middle of the woods On an old Mustang where we sang Songs with all our childhood friends Oh, now [Chorus] Oops, I got 99 problems, singin' "bye, bye, bye" Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time Paint a picture for you and me On the days when we were young Singin' at the top of both our lungs On the day we fell in love [Post-Chorus] Ooh, ooh On the day we fell in love Ooh, ooh On the day we fell in love Ooh, ooh On the day we fell in love Ooh, ooh On the day we fell in love, love, love
https://wn.com/Anne_Marie_2002_(Lyrics)
Anne-Marie's '2002' | Blind Auditions | The Voice UK 2021
2:28

Anne-Marie's '2002' | Blind Auditions | The Voice UK 2021

  • Order:
  • Duration: 2:28
  • Uploaded Date: 02 Jan 2021
  • views: 53362316
Anne-Marie performs her hit single '2002' in week 1 of The Voice UK 2021 Blind Auditions! Watch Full Episodes on The ITV Hub: http://entslink.itv.com/38Fg5pp Subscribe, like and watch more: http://bit.ly/2jmXcPt Website: http://bit.ly/2hwvvll Facebook: http://bit.ly/2iuiAyQ Twitter: http://bit.ly/2ht0H1r Instagram: http://bit.ly/2iIEy0q Download The Voice UK's free app for exclusive previews and news: iOS: http://apple.co/2hzvKxq Android: https://link.itv.com/android Get all the latest from The Voice UK YouTube channel, news, gossip and videos with superstar Coaches will.i.am, Anne-Marie, Olly Murs and Sir Tom Jones. http://www.itv.com http://www.stv.tv #TheVoiceUK
https://wn.com/Anne_Marie's_'2002'_|_Blind_Auditions_|_The_Voice_UK_2021
PCARMARKET Auction: 2002 Porsche 996 Turbo
0:17

PCARMARKET Auction: 2002 Porsche 996 Turbo

  • Order:
  • Duration: 0:17
  • Uploaded Date: 17 Sep 2024
  • views: 516
Porsche Online Marketplace
https://wn.com/Pcarmarket_Auction_2002_Porsche_996_Turbo
Anne-Marie - 2002 (Glastonbury 2019)
3:10

Anne-Marie - 2002 (Glastonbury 2019)

  • Order:
  • Duration: 3:10
  • Uploaded Date: 29 Jun 2019
  • views: 35030054
Anne-Marie performs 2002 at Glastonbury 2019. Watch Anne-Marie's 2009 Glastonbury set on demand on BBC iPlayer: https://www.bbc.co.uk/programmes/p07df1h1 Watch Glastonbury performances from throughout the years on BBC iPlayer: https://www.bbc.co.uk/iplayer/episodes/b007r6vx/glastonbury Listen and download your favourite Glastonbury sets on BBC Sounds: https://www.bbc.co.uk/sounds/brand/b007r6vx Dig deep in to performances, articles, photos and more at: https://www.bbc.co.uk/glastonbury Follow all the action via @bbcglasto https://twitter.com/bbcglasto
https://wn.com/Anne_Marie_2002_(Glastonbury_2019)
PLAYLIST TIME:

Alternative Video Results

see more
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Anne-Marie - 2002 (Lyrics)
    3:08
    Anne-Marie - 2002 (Lyrics)remove from playlist
  • Anne-Marie - 2002 [Official Video]
    3:15
    Anne-Marie - 2002 [Official Video]remove from playlist
  • Anne-Marie - 2002 (Lyrics/Vietsub)
    3:08
    Anne-Marie - 2002 (Lyrics/Vietsub)remove from playlist
  • Anne-Marie & Ed Sheeran – 2002 [Official Acoustic Video]
    3:26
    Anne-Marie & Ed Sheeran – 2002 [Official Acoustic Video]remove from playlist
  • Anne-Marie - 2002 (Live At Brighton Music Hall 2018)
    3:21
    Anne-Marie - 2002 (Live At Brighton Music Hall 2018)remove from playlist
  • Anne Marie - 2002 (Lyrics)
    3:09
    Anne Marie - 2002 (Lyrics)remove from playlist
  • Anne-Marie's '2002' | Blind Auditions | The Voice UK 2021
    2:28
    Anne-Marie's '2002' | Blind Auditions | The Voice UK 2021remove from playlist
  • Anne-Marie - 2002 (Glastonbury 2019)
    3:10
    Anne-Marie - 2002 (Glastonbury 2019)remove from playlist
PLAYLIST TIME: 0:00 / 25:22

Anne-Marie - 2002 (Lyrics)

Anne-Marie - 2002 (Lyrics) ✖ Follow me on Instagram for awesome pictures: https://instagram.com/unique_vibes_official/ ✖ Follow my Spotify playlist: https://open.spotify.com/user/2qbbpjmv4ce9t5etpucu8pbkk/playlist/3RlWZ8rqCBPtWDZ92OFpCh ► Subscribe: https://youtube.com/c/UniqueVibesMusic ► Soundcloud: https://soundcloud.com/unique_vibes ► Instagram: https://instagram.com/unique_vibes_official/ Download: http://au.gt/2002 ► Anne-Marie https://www.facebook.com/iamannemarie/ https://www.instagram.com/annemarieiam/ https://twitter.com/annemarieiam?lang=de [Verse 1] I will always remember the day you kissed me lips Light as a feather And it went just like this No, it's never been better Than the summer of 2002 We were only eleven But acting like grownups Like we are in the present, drinking from plastic cups Singing love is forever and ever Well, I guess that was true [Pre-Chorus] Dancing on the hood in the middle of the woods Of an old Mustang, where we sang Songs with all our childhoods friends And it went like this, yeah [Chorus] Oops I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time Paint a picture for you and me Of the days when we were young Singing at the top of both our lungs [Verse 2] Now we're under the covers Fast forward to eighteen We are more than lovers Yeah, we are all we need When we're holding each other I'm taken back to 2002 [Pre-Chorus] Dancing on the hood in the middle of the woods Of an old Mustang, where we sang Songs with all our childhoods friends And it went like this, yeah [Chorus] Oops I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time Paint a picture for you and me Of the days when we were young Singing at the top of both our lungs On the day we fell in love On the day we fell in love [Pre-Chorus] Dancing on the hood in the middle of the woods Of an old Mustang, where we sang Songs with all our childhoods friends Oh, now [Chorus] Oops I got 99 problems singing bye, bye, bye Hold up, if you wanna go and take a ride with me Better hit me, baby, one more time Paint a picture for you and me Of the days when we were young Singing at the top of both our lungs On the day we fell in love On the day we fell in love On the day we fell in love On the day we fell in love, love, love #anne #2002 #annemarie Wallpaper: unsplash.com Art: https://society6.com/uniquevibes I don't own the music in this video. Please contact the artist/label if you want to use it. If you need a song removed from my channel, please contact me here: uniquevibesofficial@gmail.com

Alternative Video Results

see more
3:08
Anne-Marie - 2002 (Lyrics)
Anne-Marie - 2002 (Lyrics) ✖ Follow me on Instagram for awesome pictures: https://instagra...
published: 20 Apr 2018
Play in Full Screen
3:15
Anne-Marie - 2002 [Official Video]
The new album 'UNHEALTHY' OUT NOW: https://anne-marie.lnk.to/Unhealthy Listen to 'UNHEALTH...
published: 08 May 2018
Play in Full Screen
3:08
Anne-Marie - 2002 (Lyrics/Vietsub)
Anne-Marie - 2002 (Lyrics/Vietsub) Anne-Marie - 2002 (Lyrics/Vietsub) Anne-Marie - 2002 (L...
published: 08 Sep 2021
Play in Full Screen
3:26
Anne-Marie & Ed Sheeran – 2002 [Official Acoustic Video]
The official acoustic music video for Anne-Marie & @EdSheeran – 2002 watch the official v...
published: 12 Jul 2018
Play in Full Screen
3:21
Anne-Marie - 2002 (Live At Brighton Music Hall 2018)
Anne-Marie performing 2002 live At Brighton Music Hall, 2018. watch the official video fo...
published: 09 Oct 2018
Play in Full Screen
3:09
Anne Marie - 2002 (Lyrics)
@annemarie #annemarie #2002 #redwithroselyrics 🎶Anne Marie - 2002 Lyrics 📌Don't Forget ...
published: 19 Dec 2023
Play in Full Screen
2:28
Anne-Marie's '2002' | Blind Auditions | The Voice UK 2021
Anne-Marie performs her hit single '2002' in week 1 of The Voice UK 2021 Blind Auditions! ...
published: 02 Jan 2021
Play in Full Screen
0:17
PCARMARKET Auction: 2002 Porsche 996 Turbo
Porsche Online Marketplace
published: 17 Sep 2024
Play in Full Screen
3:10
Anne-Marie - 2002 (Glastonbury 2019)
Anne-Marie performs 2002 at Glastonbury 2019. Watch Anne-Marie's 2009 Glastonbury set on d...
published: 29 Jun 2019
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: 2002

Edit

Budgam court issues proclamation notice against Hizb chief Salahuddin in 2002 murder case

Hindustan Times 15 Apr 2025
The FIR had been registered in 2002 under Sections 302 (murder), 307 (attempt to murder) and 109 (instigating someone to commit crime) of the Ranbir Penal Code and Sections 7/25 of the Arms Act.
Edit

Kashmir court issues proclamation against PoK based Hizbul chief in 2002 murder case

Deccan Herald 15 Apr 2025
255/2002 registered at Budgam Police Station under Sections 302 (murder), 307 (attempt to murder), 109 RPC (abetment), and 7/25 of the Arms Act.</p>.Centre failed to ensure rehabilitation of PoK-displaced persons.
Edit

'28 Days Later' director shares why he left franchise after 2002 film

The News International 14 Apr 2025
In 2002, the duo came up with 28 Days Later, starring Cillian Murphy, Megan Burns, Brandon Gleeson and Naomie Harris ... The fresh sequel of the 2002 film is coming to theatres featuring Aaron Taylor-Johnson, Jodie Comer, Ralp Fiennes and others. .
Edit

Union Govt revokes age relaxations for kin of 2002 Gujarat riot victims

Madhyamam 14 Apr 2025
The 2002 riots, which erupted following the Godhra train burning, resulted in the deaths of hundreds, with a significant majority of the victims belonging to the Muslim community.
Edit

Age cap in central government jobs for kin of 2002 Gujarat riot victims lifted by MHA

Madhyamam 13 Apr 2025
The Union Home Ministry has decided to revoke a policy that had been in place since 2007, which allowed age relaxation in central government job recruitment for the relatives of those who lost their lives in the 2002 Gujarat riots.
Edit

Bryan Adams and Hans Zimmer - Spirit: Stallion Of The Cimarron (2002) [Complete OST CD] Europe

Bitchute 11 Apr 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

UNBOXING : "RIFLES ON THE DANUBE, Hungarian AK-Pattern Firearms, 1959 – 2002", László Becz, 2004

Bitchute 11 Apr 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Venezuela, 2002: When the people overturned a coup

The Real News Network 11 Apr 2025
These were days of marches. Huge marches. That wrapped themselves around the capital, Caracas ... It was April 2002 ... He’d promised a revolution ... ### ... Some people in Venezuela are still confused about what happened between April 11 and April 13, 2002.
Edit

Bali 2002 | Daily Mail Online

The Daily Mail 10 Apr 2025
True tale of a terrorist bombing in paradise. 2023 ... A sombre but involving four-part dramatisation of the 2002 terrorist bombings in Bali which killed 202 people and injured hundreds more ... .
Edit

🔧 Scrubby Plays Ratchet & Clank (2002) on PS3 – A Classic Revisited!

Bitchute 08 Apr 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Mario Kart's infamous Baby Park was inspired by the 2002 Olympic ice skating track, and ...

Games Radar 08 Apr 2025
It was first introduced in Mario Kart ... "We were designing the courses right at the time the 2002 Salt Lake City Winter Olympics were underway," chief director Kiyoshi Mizuki said ... Watch On ... That was our image for Baby Park." ... Find out where Mario Kart.
×