- published: 07 Mar 2019
- views: 226799675
'+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; })); }); -->
Dream Team may refer to:
The 1992 United States men's Olympic basketball team, nicknamed the "Dream Team", was the first American Olympic team to feature active NBA players. Described by American journalists as the greatest sports team ever assembled, and called by the Naismith Memorial Basketball Hall of Fame "the greatest collection of basketball talent on the planet", it defeated its opponents by an average of 44 points en route to the gold medal against Croatia at the 1992 Summer Olympics held in Barcelona, Spain.Chuck Daly served as coach, assisted by Lenny Wilkens, P. J. Carlesimo, and Mike Krzyzewski.
At the 1988 Summer Olympics in Seoul, the United States national basketball team, made up of college stars, finished in third place. The defeat increased calls for professionals to be allowed to play in the Olympics. Borislav Stanković of FIBA advocated for this for years until the organization agreed in April 1989 despite American and Russian votes against the proposal.USA Basketball asked the NBA to supply players for its 1992 roster; the league was initially unenthusiastic, not foreseeing the cultural phenomenon that the team would become.Sports Illustrated was the first to nickname the forthcoming American roster as the "Dream Team", on the cover of its February 18, 1991 issue. So many corporate sponsors (including McDonald's, Coca-Cola, and Kellogg) wished to use the team to advertise their products that some were rejected.
The Dream Team was an Australian Football League (AFL) representative team created to take part in the AFL Hall of Fame Tribute Match against a Victorian representative team.
Although not officially a State of Origin game, eligibility for the Dream Team was based upon State of Origin rules: players who played their junior football within Victoria were eligible for Victoria, and players who played their junior football outside Victoria (including international players) were eligible for the Dream Team. The "Dream Team" concept was similar to the Allies, a composite State of Origin team representing players from anywhere except for South Australia, Victoria and Western Australia.
The Dream Team wore a predominantly white guernsey, with beige cuffs and collars, and blue numbers and side panels. The names of 1246 community and grass-roots football clubs competing within the Australian states and territories eligible for the Dream Team were also included in beige across the front.
A-Next is the Marvel Comics' MC2 universe version of the Avengers. The team made its first appearance in What If? #105, the first comic featuring Spider-Girl, and the team's origin story was told in the A-Next #1, cover dated October 1998.
The first issue of A-Next paid homage to The Avengers (vol. 1) #1, with an Asgardian menace prompting new superheroes to band together, all of them analogues to the original team. Future stories introduced new heroes and menaces, most of them based on pre-existing Marvel characters. Characters and story elements created by DeFalco in the comic were used in other comics in the MC2 Universe.
A five issue miniseries entitled Avengers Next ran from November 2006 to January 2007, written by Tom DeFalco and with artwork by Ron Lim, that followed on from the events of Last Hero Standing and Last Planet Standing. It reunited the remaining members of A-Next and added new members Sabreclaw, Kate Power (of Power Pack), Thena, the daughter of Thor and a former criminal teleporter called Warp to the team.
Dream Team is a 1999 gay pornographic film, written and directed by Jerry Douglas, starring Tony Donovan, Rick Chase and Kurt Young, and produced by Studio 2000. This movie tells the coming-of-age stories of a group of high school basketball team players who come to terms with their sexualities at a young age in 1957, and later in a 1962 reunion.
NOTE: This film has character names. However, names of real-life performers are used in this article.
The story is set in Herbert Hoover High School in Heartland Heights, Iowa. It features seven former high school basketball players, part of the class of 1957, and it then shows their five-year reunion in 1962. The movie switches scenes between high school and the reunion.
In 1962, Rick Chase is now an actor in California. Aaron Lawrence becomes a reverend primarily to repress his homosexuality and his love for Chase. Tony Donovan is unhappily married with a wife and children, and Kurt Young cruises around with men and women. Scott Lyons has turned to drink. Kristian Brooks and Lucas James are secret lovers.
The eighth series of Dream Team was broadcast on Sky1 from October 2004 to May 2005, covering the 2004-05 English football season. It followed the story of Harchester United attempting to return to the Premier League after relegation the previous season and their first participation in the UEFA Champions League.
Several new faces were brought on board for season eight, mainly within the backroom staff of the club. The most notable of the new signings was former Boyzone singer Shane Lynch, in his first major acting role on television.
Presented by 10 Summers Records TM 'Perfect Ten' out now: http://smartURL.it/PerfectTen Follow Mustard: http://www.instagram.com/Mustard http://www.facebook.com/DJMustardOnTheBeat http://www.twitter.com/Mustard #Mustard #Migos #PureWater #PerfectTen Music video by Mustard, Migos performing Pure Water. © 2019 10 Summers Records, LLC http://vevo.ly/xPmUwi
Individual effort is important, but it's teamwork that makes the dream work. - Inhouse Incorporation Great things in business are never done by one person. They're done by a team of people. Steve Jobs The secret is to work less as individuals and more as a team. As a coach, I play not my eleven best, but my best eleven. Knute Rockne Teamwork divides the task and double the success. Anonymous The most powerful force ever known on this planet is human cooperation - a force for construction and destruction. Jonathan Haidt Individual commitment to a group effort - that is what makes a team work, a company work, a society work, a civilization work. Vince Lombardi Follow Us: Facebook: https://www.facebook.com/Inhouseincorp/ Twitter: hhttps://twitter.com/inhouseincorp Visit Us: http://inhou...
Se trata del Megamix contenido en el recopilatorio compuesto por 2 CDs que BIT MUSIC editó en el 95. http://www.todocoleccion.net/recopilatorio-dream-team-max-music~x38573547 Various -- Dream Team (Megamix) 9:15 Aldus Haza -- Hey-A-Wa 4:38 DJ Tururu -- Countdown 4:29 Piropo -- Our Life Our Nature 5:33 Johnny Kass -- Cada Día La Locura (Always Look On The Bright Side Of Life) 5:12 Farmlopez, The -- Quiero Ser Torero 4:53 Whigfield -- Think Of You 5:19 Double Vision -- All Right 5:55 EX-3 -- Estres 5:02 JP (4) -- I Feel Safe Enough 5:40 Datura & U.S.U.R.A. -- Infinity 5:25 One Nation -- More Than This 6:21 Mark Walker (6) -- Scatman's World 3:41 Dagon -- Boom-Chaka 4:40 Dr. House -- Sex On The Streets 6:10 Chasis -- Simply Destroy 4:31 Fourteen 14 -- Goodby...
Stream/Download: https://tommyboyrecords.lnk.to/CoolioGangstasParadiseWE ************************************ Tommy Boy Records is a legendary Hip Hop & Electronic record label founded in New York City in 1981. The label is credited with launching the careers of notable legends Queen Latifah, House of Pain, Coolio and Naughty By Nature. Tune in to our Tommy Boy Radio 24/7: https://tommyboyrecords.lnk.to/tommyboyradio ************************************ Follow Tommy Boy Records: https://tommyboyrecords.lnk.to/instagram https://tommyboyrecords.lnk.to/Twitter https://tommyboyrecords.lnk.to/TikTok https://tommyboyrecords.lnk.to/Facebook https://tommyboyrecords.lnk.to/Spotify https://tommyboyrecords.lnk.to/Soundcloud Subscribe to the mailing list: https://tommyboy-records.com/us/sign-u...
Deep in a forest in North Carolina lies a community of people who've left their jobs, given up their cell phones, and seceded. A former cybersecurity official, an engineer, a woman and her wild blue-eyed eight-year-old...the inhabitants of Wild Roots, as they call this place, are disillusioned with the ways of the modern world and react by living with, and off, the earth. Living off the grid, they pickle bear meat, harvest chestnuts, and, during the summer, bathe naked in a nearby stream. And yet, every so often, they venture into town to check in. Are they happy with their forest life? Are they lonely? And, are we living in the real world, or are they? SUBSCRIBE: http://nbcnews.to/2rAQzwx FOLLOW NBC LEFT FIELD: Facebook: http://nbcnews.to/2rACLSM Instagram: http://nbcnews.to/2rAsQwp Tw...
FKJ playing an exclusive live set in the world's largest salt flat Salar de Uyuni, Bolivia for Cercle. ☞ Support us and get access to exclusive videos & perks: https://Cercle.lnk.to/Patreon ☞ Listen to our playlists, tracks & sets: https://Cercle.lnk.to/Playlists ☞ Subscribe to our newsletter to know about our next shows: https://Cercle.lnk.to/Members ☞ Subscribe to our YouTube channel: https://Cercle.lnk.to/ytcercle ☞ FKJ FKJ, or French Kiwi Juice, is a self-taught multi-instrumentalist from France. The world's largest salt flat serves as a direct source of inspiration and experimentation for his live loop performance, as he weaves his signature blend of electronic, jazz, and R&B music into the vast, reflective expanse. He tells us during the interview: "I didn't want the location to...
After documenting and researching over 50,000 coaching interactions in the workplace, Bill Eckstrom shares life-altering, personal and professional development ideas through the introduction of the “Growth Rings.” The rings illustrate how dangerous it can be to remain in a state of comfort and how being in discomfort is the only way to sustain growth. You’ll be amazed at the world-changing outcomes discomfort can have on your life and the lives of others. Bill Eckstrom is an entrepreneur, author, speaker, outdoorsman and father of three. With a passion deeply rooted in growth and development, Bill has always been fascinated by the role a coach has on the performance of individuals and teams. As a result, he founded the EcSell Institute whose sole focus is to educate, track and measure coa...
Dream Team may refer to:
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
The other day a friend gave me a call
He said that the dream team was playin' basketball
Was so excited I had a get a witness
The first time the NBA was in the 'lympics
I tuned in because I was hella psyched
To see Magic Johnson on the same team with Mike
Gettin' crazy and havin' lots of fun
We were makin' sure that they got the job done
The fans were wavin' the red white end blue
It seemed strange to me was it strange to you?
The brotha's on the street and everyone is scared a ya
So how could ten Africans represent America?
Bullshit it didn't mean a thing 'cause in the same year
We saw Rodney King
So I thought that I would put a team together
A team that I have been waitin' for forever
Well some of you may know exactly who I mean
But if you don't then let me introduce you to
My dream team
Spearhead in the area
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Well chuck D's announcin' flava's, flava's doin' color
And halftime entertainment is by Dre and Ed Lover
Malcolm X is the coach he's drawin' up the strategy
We're choppin' appart all America's anatomy
'Cause they're the ones we're up against of course
Our general manager is chief crazy horse
Huey Newton 'cause he was extra hard
He's the one who would be playin' at the shootin' guard
I dreamed Charles Barkley would be played by Marcus Garvey
He'd be throwin' people off his back and makin'
Sure they never got a rebound rebound and he'd throw it to the outlet
Nat Turner 'cause he can turn the corner when he's out there
He be flyin' through the air and throwin' passes like he really doesn't care
Behind the back and in between the legs
He's handlin' the rock as gently as an egg
He's throwin' it into Angela Davis's neighborhood
She's postin' up down in the extra hard wood
When she grabs the pill and then she puts her shoulder down
Get out the way because she's gonna throw down now
Boom oh my God, I just can't believe it
Well get another backboard or better yet leave it
We always play for fun, we always play for keeps
The game is over and the loser's gotta sweep
Up the glass that we busted in the ass
Set the record straight about America's past
This is my dream team
Spearhead in the area
Dream team's in the house
Dream team's in the house
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Well after doin' that we be headin' for the ceremony
And on the heart is a bunch of baloney
The spirit of the '68 Olympics
Black power people can I get a witness
Fist in the air this is the proper manners
While Jimi Hendrix is fuckin' up the spangled banner
Up into the sky miles Davis blows a horn
Look into the bleachers, it's Bill Clinton sellin' popcorn
So now we jump and we have a celebration
Shaquille 0'neal would provide the entertainment
To some of you this is a far fetched scheme
But to me, I'll tell you what it is
This is my dream team
Spearhead in the area
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green